@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: string;
703
+ imageUrl?: string;
704
704
  };
705
705
  /** @description Payload to update an existing user */
706
706
  UpdateUserPayload: components["schemas"]["AddUserPayload"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.30",
3
+ "version": "1.1.31",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -209,7 +209,6 @@ components:
209
209
  - email
210
210
  - name
211
211
  - country
212
- - imageUrl
213
212
 
214
213
  UpdateUserPayload:
215
214
  description: Payload to update an existing user
@@ -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: string;
91
+ imageUrl?: string;
92
92
  };
93
93
  /** @description Payload to update an existing user */
94
94
  UpdateUserPayload: components["schemas"]["AddUserPayload"];