@ahomevilla-hotel/node-sdk 1.0.2 → 1.0.4

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.
Files changed (2) hide show
  1. package/api.ts +8 -2
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -224,13 +224,13 @@ export interface CreateUserDto {
224
224
  * @type {string}
225
225
  * @memberof CreateUserDto
226
226
  */
227
- 'email': string;
227
+ 'email'?: string;
228
228
  /**
229
229
  * The user\'s phone number.
230
230
  * @type {string}
231
231
  * @memberof CreateUserDto
232
232
  */
233
- 'phone': string;
233
+ 'phone'?: string;
234
234
  /**
235
235
  * The user\'s password.
236
236
  * @type {string}
@@ -516,6 +516,12 @@ export interface RegisterResponseDto {
516
516
  * @memberof RegisterResponseDto
517
517
  */
518
518
  'phone'?: string;
519
+ /**
520
+ * The user\'s ID
521
+ * @type {string}
522
+ * @memberof RegisterResponseDto
523
+ */
524
+ 'id': string;
519
525
  /**
520
526
  * The type of identifier used for registration
521
527
  * @type {string}
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "openapi-client",
11
11
  "openapi-generator"
12
12
  ],
13
- "version": "1.0.2",
13
+ "version": "1.0.4",
14
14
  "main": "index.js",
15
15
  "scripts": {
16
16
  "test": "echo \"Error: no test specified\" && exit 1"