@gooday_corp/gooday-api-client 4.5.100 → 4.5.102
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 +84 -0
- package/docs/CreateBookingPayload.md +2 -2
- package/docs/CreateRSVPEventBookingPayload.md +2 -2
- package/docs/CreateRSVPEventV2DTO.md +14 -0
- package/docs/CreateWalkInBookingPayload.md +2 -2
- package/docs/PaymentDetailsPayload.md +2 -2
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/UpdateRSVPEventV2DTO.md +14 -0
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4645,6 +4645,48 @@ export interface CreateRSVPEventV2DTO {
|
|
|
4645
4645
|
* @memberof CreateRSVPEventV2DTO
|
|
4646
4646
|
*/
|
|
4647
4647
|
'discounts'?: Array<DiscountV2DTO>;
|
|
4648
|
+
/**
|
|
4649
|
+
*
|
|
4650
|
+
* @type {string}
|
|
4651
|
+
* @memberof CreateRSVPEventV2DTO
|
|
4652
|
+
*/
|
|
4653
|
+
'firstName'?: string;
|
|
4654
|
+
/**
|
|
4655
|
+
*
|
|
4656
|
+
* @type {string}
|
|
4657
|
+
* @memberof CreateRSVPEventV2DTO
|
|
4658
|
+
*/
|
|
4659
|
+
'lastName'?: string;
|
|
4660
|
+
/**
|
|
4661
|
+
*
|
|
4662
|
+
* @type {string}
|
|
4663
|
+
* @memberof CreateRSVPEventV2DTO
|
|
4664
|
+
*/
|
|
4665
|
+
'email'?: string;
|
|
4666
|
+
/**
|
|
4667
|
+
*
|
|
4668
|
+
* @type {string}
|
|
4669
|
+
* @memberof CreateRSVPEventV2DTO
|
|
4670
|
+
*/
|
|
4671
|
+
'mobileNumber'?: string;
|
|
4672
|
+
/**
|
|
4673
|
+
*
|
|
4674
|
+
* @type {string}
|
|
4675
|
+
* @memberof CreateRSVPEventV2DTO
|
|
4676
|
+
*/
|
|
4677
|
+
'countryCode'?: string;
|
|
4678
|
+
/**
|
|
4679
|
+
*
|
|
4680
|
+
* @type {string}
|
|
4681
|
+
* @memberof CreateRSVPEventV2DTO
|
|
4682
|
+
*/
|
|
4683
|
+
'hostBy'?: string;
|
|
4684
|
+
/**
|
|
4685
|
+
*
|
|
4686
|
+
* @type {string}
|
|
4687
|
+
* @memberof CreateRSVPEventV2DTO
|
|
4688
|
+
*/
|
|
4689
|
+
'hostImage'?: string;
|
|
4648
4690
|
}
|
|
4649
4691
|
|
|
4650
4692
|
export const CreateRSVPEventV2DTOTypeEnum = {
|
|
@@ -11292,6 +11334,48 @@ export interface UpdateRSVPEventV2DTO {
|
|
|
11292
11334
|
* @memberof UpdateRSVPEventV2DTO
|
|
11293
11335
|
*/
|
|
11294
11336
|
'discounts'?: Array<DiscountV2DTO>;
|
|
11337
|
+
/**
|
|
11338
|
+
*
|
|
11339
|
+
* @type {string}
|
|
11340
|
+
* @memberof UpdateRSVPEventV2DTO
|
|
11341
|
+
*/
|
|
11342
|
+
'firstName'?: string;
|
|
11343
|
+
/**
|
|
11344
|
+
*
|
|
11345
|
+
* @type {string}
|
|
11346
|
+
* @memberof UpdateRSVPEventV2DTO
|
|
11347
|
+
*/
|
|
11348
|
+
'lastName'?: string;
|
|
11349
|
+
/**
|
|
11350
|
+
*
|
|
11351
|
+
* @type {string}
|
|
11352
|
+
* @memberof UpdateRSVPEventV2DTO
|
|
11353
|
+
*/
|
|
11354
|
+
'email'?: string;
|
|
11355
|
+
/**
|
|
11356
|
+
*
|
|
11357
|
+
* @type {string}
|
|
11358
|
+
* @memberof UpdateRSVPEventV2DTO
|
|
11359
|
+
*/
|
|
11360
|
+
'mobileNumber'?: string;
|
|
11361
|
+
/**
|
|
11362
|
+
*
|
|
11363
|
+
* @type {string}
|
|
11364
|
+
* @memberof UpdateRSVPEventV2DTO
|
|
11365
|
+
*/
|
|
11366
|
+
'countryCode'?: string;
|
|
11367
|
+
/**
|
|
11368
|
+
*
|
|
11369
|
+
* @type {string}
|
|
11370
|
+
* @memberof UpdateRSVPEventV2DTO
|
|
11371
|
+
*/
|
|
11372
|
+
'hostBy'?: string;
|
|
11373
|
+
/**
|
|
11374
|
+
*
|
|
11375
|
+
* @type {string}
|
|
11376
|
+
* @memberof UpdateRSVPEventV2DTO
|
|
11377
|
+
*/
|
|
11378
|
+
'hostImage'?: string;
|
|
11295
11379
|
}
|
|
11296
11380
|
|
|
11297
11381
|
export const UpdateRSVPEventV2DTOTypeEnum = {
|
|
@@ -6,8 +6,8 @@
|
|
|
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 2026-04-
|
|
10
|
-
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-04-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2026-04-09T09:31:01Z]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-04-09T09:31:01Z]
|
|
11
11
|
**from** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**to** | **string** | | [optional] [default to undefined]
|
|
13
13
|
**venue** | **string** | The venue of the booking | [default to undefined]
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**title** | **string** | The title of the booking | [default to 'Default Booking Title']
|
|
9
|
-
**startDate** | **string** | The start date of the booking | [default to 2026-04-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2026-04-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2026-04-09T09:31:01Z]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2026-04-09T09:31:01Z]
|
|
11
11
|
**note** | **string** | Notes attached with booking | [optional] [default to undefined]
|
|
12
12
|
**occasion** | **string** | Occasion id | [optional] [default to undefined]
|
|
13
13
|
**calendar** | **Array<string>** | Calendar attached with booking | [optional] [default to undefined]
|
|
@@ -36,6 +36,13 @@ Name | Type | Description | Notes
|
|
|
36
36
|
**hosts** | [**Array<HostV2DTO>**](HostV2DTO.md) | | [optional] [default to undefined]
|
|
37
37
|
**invites** | [**Array<InviteRSVPDTO>**](InviteRSVPDTO.md) | | [optional] [default to undefined]
|
|
38
38
|
**discounts** | [**Array<DiscountV2DTO>**](DiscountV2DTO.md) | | [optional] [default to undefined]
|
|
39
|
+
**firstName** | **string** | | [optional] [default to undefined]
|
|
40
|
+
**lastName** | **string** | | [optional] [default to undefined]
|
|
41
|
+
**email** | **string** | | [optional] [default to undefined]
|
|
42
|
+
**mobileNumber** | **string** | | [optional] [default to undefined]
|
|
43
|
+
**countryCode** | **string** | | [optional] [default to undefined]
|
|
44
|
+
**hostBy** | **string** | | [optional] [default to undefined]
|
|
45
|
+
**hostImage** | **string** | | [optional] [default to undefined]
|
|
39
46
|
|
|
40
47
|
## Example
|
|
41
48
|
|
|
@@ -74,6 +81,13 @@ const instance: CreateRSVPEventV2DTO = {
|
|
|
74
81
|
hosts,
|
|
75
82
|
invites,
|
|
76
83
|
discounts,
|
|
84
|
+
firstName,
|
|
85
|
+
lastName,
|
|
86
|
+
email,
|
|
87
|
+
mobileNumber,
|
|
88
|
+
countryCode,
|
|
89
|
+
hostBy,
|
|
90
|
+
hostImage,
|
|
77
91
|
};
|
|
78
92
|
```
|
|
79
93
|
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**title** | **string** | The title of the booking | [default to 'Default Booking Title']
|
|
9
|
-
**startDate** | **string** | The start date of the booking | [default to 2026-04-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2026-04-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2026-04-09T09:31:01Z]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2026-04-09T09:31:01Z]
|
|
11
11
|
**note** | **string** | Notes attached with booking | [optional] [default to undefined]
|
|
12
12
|
**occasion** | **string** | Occasion id | [optional] [default to undefined]
|
|
13
13
|
**calendar** | **Array<string>** | Calendar attached with booking | [optional] [default to undefined]
|
|
@@ -8,8 +8,8 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**whatsOnId** | **string** | Event ID | [optional] [default to undefined]
|
|
9
9
|
**serviceId** | **string** | Service ID | [optional] [default to undefined]
|
|
10
10
|
**rsvpId** | **string** | RSVP ID | [optional] [default to undefined]
|
|
11
|
-
**startDate** | **string** | The start date of the booking | [optional] [default to 2026-04-
|
|
12
|
-
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-04-
|
|
11
|
+
**startDate** | **string** | The start date of the booking | [optional] [default to 2026-04-09T09:30:59Z]
|
|
12
|
+
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-04-09T09:30:59Z]
|
|
13
13
|
**discountId** | **string** | Discount ID | [optional] [default to undefined]
|
|
14
14
|
**selectedStaff** | **string** | Staff ID | [optional] [default to undefined]
|
|
15
15
|
**quantity** | **number** | | [optional] [default to 0]
|
|
@@ -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 2026-04-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2026-04-09T09:31:01Z]
|
|
9
9
|
**from** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**to** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**notes** | **string** | | [optional] [default to undefined]
|
|
@@ -36,6 +36,13 @@ Name | Type | Description | Notes
|
|
|
36
36
|
**hosts** | [**Array<HostV2DTO>**](HostV2DTO.md) | | [optional] [default to undefined]
|
|
37
37
|
**invites** | [**Array<InviteRSVPDTO>**](InviteRSVPDTO.md) | | [optional] [default to undefined]
|
|
38
38
|
**discounts** | [**Array<DiscountV2DTO>**](DiscountV2DTO.md) | | [optional] [default to undefined]
|
|
39
|
+
**firstName** | **string** | | [optional] [default to undefined]
|
|
40
|
+
**lastName** | **string** | | [optional] [default to undefined]
|
|
41
|
+
**email** | **string** | | [optional] [default to undefined]
|
|
42
|
+
**mobileNumber** | **string** | | [optional] [default to undefined]
|
|
43
|
+
**countryCode** | **string** | | [optional] [default to undefined]
|
|
44
|
+
**hostBy** | **string** | | [optional] [default to undefined]
|
|
45
|
+
**hostImage** | **string** | | [optional] [default to undefined]
|
|
39
46
|
|
|
40
47
|
## Example
|
|
41
48
|
|
|
@@ -74,6 +81,13 @@ const instance: UpdateRSVPEventV2DTO = {
|
|
|
74
81
|
hosts,
|
|
75
82
|
invites,
|
|
76
83
|
discounts,
|
|
84
|
+
firstName,
|
|
85
|
+
lastName,
|
|
86
|
+
email,
|
|
87
|
+
mobileNumber,
|
|
88
|
+
countryCode,
|
|
89
|
+
hostBy,
|
|
90
|
+
hostImage,
|
|
77
91
|
};
|
|
78
92
|
```
|
|
79
93
|
|
|
@@ -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 2026-04-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2026-04-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2026-04-09T09:31:01Z]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2026-04-09T10:31:01Z]
|
|
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<CreateWaitlistBookingCollaboratorPayload>**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
|