@gooday_corp/gooday-api-client 4.5.74 → 4.5.76
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 +7 -6
- package/docs/CreateBookingPayload.md +2 -2
- package/docs/CreateRSVPEventBookingPayload.md +2 -2
- package/docs/CreateWalkInBookingPayload.md +2 -2
- package/docs/PaymentDetailsPayload.md +2 -2
- package/docs/RSVPEvenPayloadDTO.md +2 -0
- package/docs/RSVPEventLocationDTO.md +1 -1
- package/docs/RSVPEventMetaDTO.md +1 -1
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/docs/WhatsOnLocationDTO.md +3 -3
- package/docs/WhatsOnLocationMetaDTO.md +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3951,6 +3951,7 @@ export interface RSVPEvenPayloadDTO {
|
|
|
3951
3951
|
*/
|
|
3952
3952
|
'collaboratorUsers'?: Array<CreateRSVPCollaboratorPayload>;
|
|
3953
3953
|
'calendars'?: Array<string>;
|
|
3954
|
+
'theme'?: string;
|
|
3954
3955
|
}
|
|
3955
3956
|
|
|
3956
3957
|
export const RSVPEvenPayloadDTORepeatEnum = {
|
|
@@ -4117,7 +4118,7 @@ export const RSVPEventFindDTOTypeEnum = {
|
|
|
4117
4118
|
export type RSVPEventFindDTOTypeEnum = typeof RSVPEventFindDTOTypeEnum[keyof typeof RSVPEventFindDTOTypeEnum];
|
|
4118
4119
|
|
|
4119
4120
|
export interface RSVPEventLocationDTO {
|
|
4120
|
-
'type'
|
|
4121
|
+
'type'?: RSVPEventLocationDTOTypeEnum;
|
|
4121
4122
|
'coordinates'?: Array<number>;
|
|
4122
4123
|
/**
|
|
4123
4124
|
* Optional distance from a reference point.
|
|
@@ -4137,7 +4138,7 @@ export type RSVPEventLocationDTOTypeEnum = typeof RSVPEventLocationDTOTypeEnum[k
|
|
|
4137
4138
|
|
|
4138
4139
|
export interface RSVPEventMetaDTO {
|
|
4139
4140
|
'formattedAddress'?: string;
|
|
4140
|
-
'shortFormattedAddress'
|
|
4141
|
+
'shortFormattedAddress'?: string;
|
|
4141
4142
|
}
|
|
4142
4143
|
export interface RSVPEventMetaDataDTO {
|
|
4143
4144
|
'email'?: string;
|
|
@@ -5424,8 +5425,8 @@ export interface WhatsOnFindDTO {
|
|
|
5424
5425
|
'category'?: string;
|
|
5425
5426
|
}
|
|
5426
5427
|
export interface WhatsOnLocationDTO {
|
|
5427
|
-
'type'
|
|
5428
|
-
'coordinates'
|
|
5428
|
+
'type'?: WhatsOnLocationDTOTypeEnum;
|
|
5429
|
+
'coordinates'?: Array<number>;
|
|
5429
5430
|
/**
|
|
5430
5431
|
* Optional distance from a reference point.
|
|
5431
5432
|
*/
|
|
@@ -5433,7 +5434,7 @@ export interface WhatsOnLocationDTO {
|
|
|
5433
5434
|
/**
|
|
5434
5435
|
* Meta information about the location.
|
|
5435
5436
|
*/
|
|
5436
|
-
'meta'
|
|
5437
|
+
'meta'?: WhatsOnLocationMetaDTO;
|
|
5437
5438
|
}
|
|
5438
5439
|
|
|
5439
5440
|
export const WhatsOnLocationDTOTypeEnum = {
|
|
@@ -5444,7 +5445,7 @@ export type WhatsOnLocationDTOTypeEnum = typeof WhatsOnLocationDTOTypeEnum[keyof
|
|
|
5444
5445
|
|
|
5445
5446
|
export interface WhatsOnLocationMetaDTO {
|
|
5446
5447
|
'formattedAddress'?: string;
|
|
5447
|
-
'shortFormattedAddress'
|
|
5448
|
+
'shortFormattedAddress'?: string;
|
|
5448
5449
|
}
|
|
5449
5450
|
export interface WhatsOnPayloadDTO {
|
|
5450
5451
|
/**
|
|
@@ -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-03-
|
|
10
|
-
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-03-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2026-03-17T14:50:25Z]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-03-17T14:50:25Z]
|
|
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-03-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2026-03-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2026-03-17T14:50:25Z]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2026-03-17T14:50:25Z]
|
|
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]
|
|
@@ -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-03-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2026-03-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2026-03-17T14:50:25Z]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2026-03-17T14:50:25Z]
|
|
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-03-
|
|
12
|
-
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-03-
|
|
11
|
+
**startDate** | **string** | The start date of the booking | [optional] [default to 2026-03-17T14:50:22Z]
|
|
12
|
+
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-03-17T14:50:22Z]
|
|
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]
|
|
@@ -39,6 +39,7 @@ Name | Type | Description | Notes
|
|
|
39
39
|
**stripeProduct** | **string** | | [optional] [default to undefined]
|
|
40
40
|
**collaboratorUsers** | [**Array<CreateRSVPCollaboratorPayload>**](CreateRSVPCollaboratorPayload.md) | The list of collaborators associated with the booking | [optional] [default to undefined]
|
|
41
41
|
**calendars** | **Array<string>** | | [optional] [default to undefined]
|
|
42
|
+
**theme** | **string** | | [optional] [default to undefined]
|
|
42
43
|
|
|
43
44
|
## Example
|
|
44
45
|
|
|
@@ -80,6 +81,7 @@ const instance: RSVPEvenPayloadDTO = {
|
|
|
80
81
|
stripeProduct,
|
|
81
82
|
collaboratorUsers,
|
|
82
83
|
calendars,
|
|
84
|
+
theme,
|
|
83
85
|
};
|
|
84
86
|
```
|
|
85
87
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**type** | **string** | | [default to undefined]
|
|
8
|
+
**type** | **string** | | [optional] [default to undefined]
|
|
9
9
|
**coordinates** | **Array<number>** | | [optional] [default to undefined]
|
|
10
10
|
**distance** | **string** | Optional distance from a reference point. | [optional] [default to undefined]
|
|
11
11
|
**meta** | [**RSVPEventMetaDTO**](RSVPEventMetaDTO.md) | Meta information about the location. | [optional] [default to undefined]
|
package/docs/RSVPEventMetaDTO.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**formattedAddress** | **string** | | [optional] [default to undefined]
|
|
9
|
-
**shortFormattedAddress** | **string** | | [default to undefined]
|
|
9
|
+
**shortFormattedAddress** | **string** | | [optional] [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 2026-03-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2026-03-17T14:50:25Z]
|
|
9
9
|
**from** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**to** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**notes** | **string** | | [optional] [default to undefined]
|
|
@@ -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-03-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2026-03-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2026-03-17T14:50:25Z]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2026-03-17T15:50:25Z]
|
|
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]
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**type** | **string** | | [default to undefined]
|
|
9
|
-
**coordinates** | **Array<number>** | | [default to undefined]
|
|
8
|
+
**type** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**coordinates** | **Array<number>** | | [optional] [default to undefined]
|
|
10
10
|
**distance** | **string** | Optional distance from a reference point. | [optional] [default to undefined]
|
|
11
|
-
**meta** | [**WhatsOnLocationMetaDTO**](WhatsOnLocationMetaDTO.md) | Meta information about the location. | [default to undefined]
|
|
11
|
+
**meta** | [**WhatsOnLocationMetaDTO**](WhatsOnLocationMetaDTO.md) | Meta information about the location. | [optional] [default to undefined]
|
|
12
12
|
|
|
13
13
|
## Example
|
|
14
14
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**formattedAddress** | **string** | | [optional] [default to undefined]
|
|
9
|
-
**shortFormattedAddress** | **string** | | [default to undefined]
|
|
9
|
+
**shortFormattedAddress** | **string** | | [optional] [default to undefined]
|
|
10
10
|
|
|
11
11
|
## Example
|
|
12
12
|
|