@rivascva/dt-idl 1.1.30 → 1.1.31
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.ts
CHANGED
|
@@ -700,7 +700,7 @@ interface components {
|
|
|
700
700
|
/** @example USA */
|
|
701
701
|
country: string;
|
|
702
702
|
/** @example https://www.assets.com/image.png */
|
|
703
|
-
imageUrl
|
|
703
|
+
imageUrl?: string;
|
|
704
704
|
};
|
|
705
705
|
/** @description Payload to update an existing user */
|
|
706
706
|
UpdateUserPayload: components["schemas"]["AddUserPayload"];
|
package/package.json
CHANGED
|
@@ -88,7 +88,7 @@ export interface components {
|
|
|
88
88
|
/** @example USA */
|
|
89
89
|
country: string;
|
|
90
90
|
/** @example https://www.assets.com/image.png */
|
|
91
|
-
imageUrl
|
|
91
|
+
imageUrl?: string;
|
|
92
92
|
};
|
|
93
93
|
/** @description Payload to update an existing user */
|
|
94
94
|
UpdateUserPayload: components["schemas"]["AddUserPayload"];
|