@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.
- package/api.ts +8 -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'
|
|
227
|
+
'email'?: string;
|
|
228
228
|
/**
|
|
229
229
|
* The user\'s phone number.
|
|
230
230
|
* @type {string}
|
|
231
231
|
* @memberof CreateUserDto
|
|
232
232
|
*/
|
|
233
|
-
'phone'
|
|
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}
|