@gooday_corp/gooday-api-client 1.3.81 → 1.3.82

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
@@ -4784,7 +4784,7 @@ export interface FriendshipEntity {
4784
4784
  * @type {string}
4785
4785
  * @memberof FriendshipEntity
4786
4786
  */
4787
- '_id': string;
4787
+ '_id'?: string;
4788
4788
  /**
4789
4789
  *
4790
4790
  * @type {string}
@@ -4884,11 +4884,11 @@ export interface GetAllVenueDto {
4884
4884
  */
4885
4885
  'people'?: number;
4886
4886
  /**
4887
- *
4887
+ * Coordinates in the format [longitude, latitude]
4888
4888
  * @type {Array<number>}
4889
4889
  * @memberof GetAllVenueDto
4890
4890
  */
4891
- 'coordinates': Array<number>;
4891
+ 'coordinates'?: Array<number>;
4892
4892
  }
4893
4893
  /**
4894
4894
  *
@@ -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-26T19:58:59+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-05-28T05:19:38Z]
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]
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **_id** | **string** | Unique identifier for the user | [default to undefined]
8
+ **_id** | **string** | Unique identifier for the user | [optional] [default to undefined]
9
9
  **from** | **string** | | [default to undefined]
10
10
  **to** | **string** | | [default to undefined]
11
11
  **status** | **string** | | [default to undefined]
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
9
9
  **page** | **number** | Page number for pagination | [optional] [default to undefined]
10
10
  **limit** | **number** | Number of items per page for pagination | [optional] [default to undefined]
11
11
  **people** | **number** | | [optional] [default to undefined]
12
- **coordinates** | **Array&lt;number&gt;** | | [default to undefined]
12
+ **coordinates** | **Array&lt;number&gt;** | Coordinates in the format [longitude, latitude] | [optional] [default to undefined]
13
13
 
14
14
  ## Example
15
15
 
@@ -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-26T19:58:59+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-05-28T05:19:38Z]
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-26T19:58:59+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-05-26T20:58:59+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-05-28T05:19:38Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-05-28T06:19:38Z]
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.81",
3
+ "version": "1.3.82",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},