@rivascva/dt-idl 1.1.116 → 1.1.117

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
@@ -1197,6 +1197,7 @@ interface components$1 {
1197
1197
  LoginWithFirebasePayload: {
1198
1198
  /** @example ABCD.1234.abcd */
1199
1199
  idToken: string;
1200
+ newUserDetails?: components$1["schemas"]["AddUserPayload"];
1200
1201
  };
1201
1202
  /** @description Payload to log out a user */
1202
1203
  LogoutPayload: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivascva/dt-idl",
3
- "version": "1.1.116",
3
+ "version": "1.1.117",
4
4
  "description": "Dream Trade - Interface Definition Language",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -220,6 +220,9 @@ components:
220
220
  idToken:
221
221
  type: string
222
222
  example: ABCD.1234.abcd
223
+ newUserDetails:
224
+ allOf:
225
+ - $ref: '#/components/schemas/AddUserPayload'
223
226
  required:
224
227
  - idToken
225
228
 
@@ -123,6 +123,7 @@ export interface components {
123
123
  LoginWithFirebasePayload: {
124
124
  /** @example ABCD.1234.abcd */
125
125
  idToken: string;
126
+ newUserDetails?: components["schemas"]["AddUserPayload"];
126
127
  };
127
128
  /** @description Payload to log out a user */
128
129
  LogoutPayload: {