@bzbs/react-api-client 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1977,7 +1977,11 @@ declare class ProfileApi extends BaseService {
1977
1977
  * @returns A promise that resolves to a ServiceResponse containing the updated profile.
1978
1978
  */
1979
1979
  updateProfile(params: {
1980
- profileImage?: File;
1980
+ profileImage?: File | {
1981
+ uri: string;
1982
+ name: string;
1983
+ type: string;
1984
+ };
1981
1985
  firstName?: string;
1982
1986
  lastName?: string;
1983
1987
  contactNumber?: string;
package/dist/index.d.ts CHANGED
@@ -1977,7 +1977,11 @@ declare class ProfileApi extends BaseService {
1977
1977
  * @returns A promise that resolves to a ServiceResponse containing the updated profile.
1978
1978
  */
1979
1979
  updateProfile(params: {
1980
- profileImage?: File;
1980
+ profileImage?: File | {
1981
+ uri: string;
1982
+ name: string;
1983
+ type: string;
1984
+ };
1981
1985
  firstName?: string;
1982
1986
  lastName?: string;
1983
1987
  contactNumber?: string;