@gooday_corp/gooday-api-client 1.3.78 → 1.3.80

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 CHANGED
@@ -5769,7 +5769,7 @@ export interface NewPasswordPayloadDTO {
5769
5769
  */
5770
5770
  'email': string;
5771
5771
  /**
5772
- * New password User
5772
+ * New password for the user
5773
5773
  * @type {string}
5774
5774
  * @memberof NewPasswordPayloadDTO
5775
5775
  */
@@ -7410,6 +7410,12 @@ export interface SignupDto {
7410
7410
  * @memberof SignupDto
7411
7411
  */
7412
7412
  'password': string;
7413
+ /**
7414
+ *
7415
+ * @type {string}
7416
+ * @memberof SignupDto
7417
+ */
7418
+ 'planId'?: string;
7413
7419
  }
7414
7420
  /**
7415
7421
  *
@@ -8291,6 +8297,12 @@ export interface UserEntity {
8291
8297
  * @memberof UserEntity
8292
8298
  */
8293
8299
  'hangout': boolean;
8300
+ /**
8301
+ *
8302
+ * @type {string}
8303
+ * @memberof UserEntity
8304
+ */
8305
+ 'planId': string;
8294
8306
  /**
8295
8307
  *
8296
8308
  * @type {Array<string>}
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **title** | **string** | The title of the booking | [default to 'Default Booking Title']
9
- **date** | **string** | The start date of the booking | [default to 2025-05-27T03:55:14Z]
9
+ **date** | **string** | The start date of the booking | [default to 2025-05-28T04:32:52Z]
10
10
  **from** | **string** | | [optional] [default to undefined]
11
11
  **to** | **string** | | [optional] [default to undefined]
12
12
  **venue** | **string** | The venue of the booking | [default to undefined]
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **email** | **string** | email | [default to undefined]
9
- **password** | **string** | New password User | [default to undefined]
9
+ **password** | **string** | New password for the user | [default to undefined]
10
10
 
11
11
  ## Example
12
12
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **date** | **string** | The start date of the booking | [default to 2025-05-27T03:55:14Z]
8
+ **date** | **string** | The start date of the booking | [default to 2025-05-28T04:32:52Z]
9
9
  **from** | **string** | | [optional] [default to undefined]
10
10
  **to** | **string** | | [optional] [default to undefined]
11
11
 
package/docs/SignupDto.md CHANGED
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
  **gender** | **string** | User gender | [optional] [default to undefined]
12
12
  **email** | **string** | The email of the user | [default to undefined]
13
13
  **password** | **string** | User Profile Name | [default to undefined]
14
+ **planId** | **string** | | [optional] [default to undefined]
14
15
 
15
16
  ## Example
16
17
 
@@ -24,6 +25,7 @@ const instance: SignupDto = {
24
25
  gender,
25
26
  email,
26
27
  password,
28
+ planId,
27
29
  };
28
30
  ```
29
31
 
@@ -31,6 +31,7 @@ Name | Type | Description | Notes
31
31
  **streak** | **number** | User daily streak | [default to undefined]
32
32
  **pendingAction** | **Array&lt;string&gt;** | Action user has to perform | [optional] [default to undefined]
33
33
  **hangout** | **boolean** | | [default to false]
34
+ **planId** | **string** | | [default to undefined]
34
35
  **friends** | **Array&lt;string&gt;** | | [default to undefined]
35
36
 
36
37
  ## Example
@@ -65,6 +66,7 @@ const instance: UserEntity = {
65
66
  streak,
66
67
  pendingAction,
67
68
  hangout,
69
+ planId,
68
70
  friends,
69
71
  };
70
72
  ```
@@ -5,8 +5,8 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **startDate** | **string** | The start date of the waitlist | [default to 2025-05-27T03:55:14Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-05-27T04:55:14Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-05-28T04:32:52Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-05-28T05:32:52Z]
10
10
  **venue** | **string** | The venue of the waitlist | [default to undefined]
11
11
  **business** | **string** | The business associated with the waitlist | [default to undefined]
12
12
  **collaborators** | [**Array&lt;CreateWaitlistBookingCollaboratorPayload&gt;**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.3.78",
3
+ "version": "1.3.80",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},