@gooday_corp/gooday-api-client 4.5.80 → 4.5.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/.openapi-generator/VERSION +1 -1
- package/api.ts +66 -64
- 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/RSVPEventEntity.md +2 -0
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.21.0
|
package/api.ts
CHANGED
|
@@ -119,7 +119,7 @@ export interface AppEntity {
|
|
|
119
119
|
|
|
120
120
|
export const AppEntityTypeEnum = {
|
|
121
121
|
HelpCenter: 'HELP_CENTER',
|
|
122
|
-
Feedback: 'FEEDBACK'
|
|
122
|
+
Feedback: 'FEEDBACK',
|
|
123
123
|
} as const;
|
|
124
124
|
|
|
125
125
|
export type AppEntityTypeEnum = typeof AppEntityTypeEnum[keyof typeof AppEntityTypeEnum];
|
|
@@ -320,7 +320,7 @@ export const BlockoutEntityRepeatEnum = {
|
|
|
320
320
|
Daily: 'DAILY',
|
|
321
321
|
Weekly: 'WEEKLY',
|
|
322
322
|
Monthly: 'MONTHLY',
|
|
323
|
-
Year: 'YEAR'
|
|
323
|
+
Year: 'YEAR',
|
|
324
324
|
} as const;
|
|
325
325
|
|
|
326
326
|
export type BlockoutEntityRepeatEnum = typeof BlockoutEntityRepeatEnum[keyof typeof BlockoutEntityRepeatEnum];
|
|
@@ -366,7 +366,7 @@ export const BlockoutPayloadDTORepeatEnum = {
|
|
|
366
366
|
Daily: 'DAILY',
|
|
367
367
|
Weekly: 'WEEKLY',
|
|
368
368
|
Monthly: 'MONTHLY',
|
|
369
|
-
Year: 'YEAR'
|
|
369
|
+
Year: 'YEAR',
|
|
370
370
|
} as const;
|
|
371
371
|
|
|
372
372
|
export type BlockoutPayloadDTORepeatEnum = typeof BlockoutPayloadDTORepeatEnum[keyof typeof BlockoutPayloadDTORepeatEnum];
|
|
@@ -404,7 +404,7 @@ export const BookingConfirmPayloadStatusEnum = {
|
|
|
404
404
|
NoShow: 'NO_SHOW',
|
|
405
405
|
Rejected: 'REJECTED',
|
|
406
406
|
Pending: 'PENDING',
|
|
407
|
-
Cancelled: 'CANCELLED'
|
|
407
|
+
Cancelled: 'CANCELLED',
|
|
408
408
|
} as const;
|
|
409
409
|
|
|
410
410
|
export type BookingConfirmPayloadStatusEnum = typeof BookingConfirmPayloadStatusEnum[keyof typeof BookingConfirmPayloadStatusEnum];
|
|
@@ -543,7 +543,7 @@ export const BookingEntityStatusEnum = {
|
|
|
543
543
|
NoShow: 'NO_SHOW',
|
|
544
544
|
Rejected: 'REJECTED',
|
|
545
545
|
Pending: 'PENDING',
|
|
546
|
-
Cancelled: 'CANCELLED'
|
|
546
|
+
Cancelled: 'CANCELLED',
|
|
547
547
|
} as const;
|
|
548
548
|
|
|
549
549
|
export type BookingEntityStatusEnum = typeof BookingEntityStatusEnum[keyof typeof BookingEntityStatusEnum];
|
|
@@ -552,7 +552,7 @@ export const BookingEntityMethodEnum = {
|
|
|
552
552
|
InPerson: 'IN_PERSON',
|
|
553
553
|
App: 'APP',
|
|
554
554
|
WalkIn: 'WALK_IN',
|
|
555
|
-
Web: 'WEB'
|
|
555
|
+
Web: 'WEB',
|
|
556
556
|
} as const;
|
|
557
557
|
|
|
558
558
|
export type BookingEntityMethodEnum = typeof BookingEntityMethodEnum[keyof typeof BookingEntityMethodEnum];
|
|
@@ -718,7 +718,7 @@ export const BookingResponseMethodEnum = {
|
|
|
718
718
|
InPerson: 'IN_PERSON',
|
|
719
719
|
App: 'APP',
|
|
720
720
|
WalkIn: 'WALK_IN',
|
|
721
|
-
Web: 'WEB'
|
|
721
|
+
Web: 'WEB',
|
|
722
722
|
} as const;
|
|
723
723
|
|
|
724
724
|
export type BookingResponseMethodEnum = typeof BookingResponseMethodEnum[keyof typeof BookingResponseMethodEnum];
|
|
@@ -730,7 +730,7 @@ export const BookingResponseStatusEnum = {
|
|
|
730
730
|
NoShow: 'NO_SHOW',
|
|
731
731
|
Rejected: 'REJECTED',
|
|
732
732
|
Pending: 'PENDING',
|
|
733
|
-
Cancelled: 'CANCELLED'
|
|
733
|
+
Cancelled: 'CANCELLED',
|
|
734
734
|
} as const;
|
|
735
735
|
|
|
736
736
|
export type BookingResponseStatusEnum = typeof BookingResponseStatusEnum[keyof typeof BookingResponseStatusEnum];
|
|
@@ -789,7 +789,7 @@ export interface BusinessConnectedAccount {
|
|
|
789
789
|
export const BusinessConnectedAccountStatusEnum = {
|
|
790
790
|
Pending: 'PENDING',
|
|
791
791
|
VerificationRequired: 'VERIFICATION_REQUIRED',
|
|
792
|
-
Connected: 'CONNECTED'
|
|
792
|
+
Connected: 'CONNECTED',
|
|
793
793
|
} as const;
|
|
794
794
|
|
|
795
795
|
export type BusinessConnectedAccountStatusEnum = typeof BusinessConnectedAccountStatusEnum[keyof typeof BusinessConnectedAccountStatusEnum];
|
|
@@ -908,7 +908,7 @@ export const BusinessEntityStatusEnum = {
|
|
|
908
908
|
Verified: 'VERIFIED',
|
|
909
909
|
InProgress: 'IN_PROGRESS',
|
|
910
910
|
Pending: 'PENDING',
|
|
911
|
-
QuoteRequested: 'QUOTE_REQUESTED'
|
|
911
|
+
QuoteRequested: 'QUOTE_REQUESTED',
|
|
912
912
|
} as const;
|
|
913
913
|
|
|
914
914
|
export type BusinessEntityStatusEnum = typeof BusinessEntityStatusEnum[keyof typeof BusinessEntityStatusEnum];
|
|
@@ -1536,7 +1536,7 @@ export interface CalendarEventsListPayload {
|
|
|
1536
1536
|
export const CalendarEventsListPayloadViewEnum = {
|
|
1537
1537
|
Daily: 'daily',
|
|
1538
1538
|
Weekly: 'weekly',
|
|
1539
|
-
Monthly: 'monthly'
|
|
1539
|
+
Monthly: 'monthly',
|
|
1540
1540
|
} as const;
|
|
1541
1541
|
|
|
1542
1542
|
export type CalendarEventsListPayloadViewEnum = typeof CalendarEventsListPayloadViewEnum[keyof typeof CalendarEventsListPayloadViewEnum];
|
|
@@ -1572,7 +1572,7 @@ export interface CalendarListResponse {
|
|
|
1572
1572
|
|
|
1573
1573
|
export const CalendarListResponseMethodEnum = {
|
|
1574
1574
|
Shared: 'SHARED',
|
|
1575
|
-
Personal: 'PERSONAL'
|
|
1575
|
+
Personal: 'PERSONAL',
|
|
1576
1576
|
} as const;
|
|
1577
1577
|
|
|
1578
1578
|
export type CalendarListResponseMethodEnum = typeof CalendarListResponseMethodEnum[keyof typeof CalendarListResponseMethodEnum];
|
|
@@ -1703,7 +1703,7 @@ export interface CategoryEntity {
|
|
|
1703
1703
|
|
|
1704
1704
|
export const CategoryEntityVariantEnum = {
|
|
1705
1705
|
Dark: 'dark',
|
|
1706
|
-
Light: 'light'
|
|
1706
|
+
Light: 'light',
|
|
1707
1707
|
} as const;
|
|
1708
1708
|
|
|
1709
1709
|
export type CategoryEntityVariantEnum = typeof CategoryEntityVariantEnum[keyof typeof CategoryEntityVariantEnum];
|
|
@@ -1964,7 +1964,7 @@ export interface CreateEventCollaboratorPayload {
|
|
|
1964
1964
|
export const CreateEventCollaboratorPayloadStatusEnum = {
|
|
1965
1965
|
Confirmed: 'CONFIRMED',
|
|
1966
1966
|
Unconfirmed: 'UNCONFIRMED',
|
|
1967
|
-
Rejected: 'REJECTED'
|
|
1967
|
+
Rejected: 'REJECTED',
|
|
1968
1968
|
} as const;
|
|
1969
1969
|
|
|
1970
1970
|
export type CreateEventCollaboratorPayloadStatusEnum = typeof CreateEventCollaboratorPayloadStatusEnum[keyof typeof CreateEventCollaboratorPayloadStatusEnum];
|
|
@@ -2027,7 +2027,7 @@ export const CreateEventPayloadDTORepeatEnum = {
|
|
|
2027
2027
|
Daily: 'DAILY',
|
|
2028
2028
|
Weekly: 'WEEKLY',
|
|
2029
2029
|
Monthly: 'MONTHLY',
|
|
2030
|
-
Year: 'YEAR'
|
|
2030
|
+
Year: 'YEAR',
|
|
2031
2031
|
} as const;
|
|
2032
2032
|
|
|
2033
2033
|
export type CreateEventPayloadDTORepeatEnum = typeof CreateEventPayloadDTORepeatEnum[keyof typeof CreateEventPayloadDTORepeatEnum];
|
|
@@ -2126,7 +2126,7 @@ export const CreateRSVPEventBookingPayloadStatusEnum = {
|
|
|
2126
2126
|
NoShow: 'NO_SHOW',
|
|
2127
2127
|
Rejected: 'REJECTED',
|
|
2128
2128
|
Pending: 'PENDING',
|
|
2129
|
-
Cancelled: 'CANCELLED'
|
|
2129
|
+
Cancelled: 'CANCELLED',
|
|
2130
2130
|
} as const;
|
|
2131
2131
|
|
|
2132
2132
|
export type CreateRSVPEventBookingPayloadStatusEnum = typeof CreateRSVPEventBookingPayloadStatusEnum[keyof typeof CreateRSVPEventBookingPayloadStatusEnum];
|
|
@@ -2182,7 +2182,7 @@ export const CreateWaitlistBookingCollaboratorPayloadStatusEnum = {
|
|
|
2182
2182
|
NoShow: 'NO_SHOW',
|
|
2183
2183
|
Rejected: 'REJECTED',
|
|
2184
2184
|
Pending: 'PENDING',
|
|
2185
|
-
Cancelled: 'CANCELLED'
|
|
2185
|
+
Cancelled: 'CANCELLED',
|
|
2186
2186
|
} as const;
|
|
2187
2187
|
|
|
2188
2188
|
export type CreateWaitlistBookingCollaboratorPayloadStatusEnum = typeof CreateWaitlistBookingCollaboratorPayloadStatusEnum[keyof typeof CreateWaitlistBookingCollaboratorPayloadStatusEnum];
|
|
@@ -2468,14 +2468,14 @@ export const EventResponseRepeatEnum = {
|
|
|
2468
2468
|
Daily: 'DAILY',
|
|
2469
2469
|
Weekly: 'WEEKLY',
|
|
2470
2470
|
Monthly: 'MONTHLY',
|
|
2471
|
-
Year: 'YEAR'
|
|
2471
|
+
Year: 'YEAR',
|
|
2472
2472
|
} as const;
|
|
2473
2473
|
|
|
2474
2474
|
export type EventResponseRepeatEnum = typeof EventResponseRepeatEnum[keyof typeof EventResponseRepeatEnum];
|
|
2475
2475
|
export const EventResponseStatusEnum = {
|
|
2476
2476
|
Confirmed: 'CONFIRMED',
|
|
2477
2477
|
Unconfirmed: 'UNCONFIRMED',
|
|
2478
|
-
Rejected: 'REJECTED'
|
|
2478
|
+
Rejected: 'REJECTED',
|
|
2479
2479
|
} as const;
|
|
2480
2480
|
|
|
2481
2481
|
export type EventResponseStatusEnum = typeof EventResponseStatusEnum[keyof typeof EventResponseStatusEnum];
|
|
@@ -2575,7 +2575,7 @@ export interface FindBookingPayload {
|
|
|
2575
2575
|
export const FindBookingPayloadViewEnum = {
|
|
2576
2576
|
Daily: 'daily',
|
|
2577
2577
|
Weekly: 'weekly',
|
|
2578
|
-
Monthly: 'monthly'
|
|
2578
|
+
Monthly: 'monthly',
|
|
2579
2579
|
} as const;
|
|
2580
2580
|
|
|
2581
2581
|
export type FindBookingPayloadViewEnum = typeof FindBookingPayloadViewEnum[keyof typeof FindBookingPayloadViewEnum];
|
|
@@ -2587,7 +2587,7 @@ export const FindBookingPayloadStatusEnum = {
|
|
|
2587
2587
|
NoShow: 'NO_SHOW',
|
|
2588
2588
|
Rejected: 'REJECTED',
|
|
2589
2589
|
Pending: 'PENDING',
|
|
2590
|
-
Cancelled: 'CANCELLED'
|
|
2590
|
+
Cancelled: 'CANCELLED',
|
|
2591
2591
|
} as const;
|
|
2592
2592
|
|
|
2593
2593
|
export type FindBookingPayloadStatusEnum = typeof FindBookingPayloadStatusEnum[keyof typeof FindBookingPayloadStatusEnum];
|
|
@@ -2694,7 +2694,7 @@ export interface FindWhatsOnAndPrepaidService {
|
|
|
2694
2694
|
export const FindWhatsOnAndPrepaidServiceViewEnum = {
|
|
2695
2695
|
Daily: 'daily',
|
|
2696
2696
|
Weekly: 'weekly',
|
|
2697
|
-
Monthly: 'monthly'
|
|
2697
|
+
Monthly: 'monthly',
|
|
2698
2698
|
} as const;
|
|
2699
2699
|
|
|
2700
2700
|
export type FindWhatsOnAndPrepaidServiceViewEnum = typeof FindWhatsOnAndPrepaidServiceViewEnum[keyof typeof FindWhatsOnAndPrepaidServiceViewEnum];
|
|
@@ -2806,7 +2806,7 @@ export const FriendshipStatusDTOSuccessEnum = {
|
|
|
2806
2806
|
Confirmed: 'CONFIRMED',
|
|
2807
2807
|
Rejected: 'REJECTED',
|
|
2808
2808
|
Cancelled: 'CANCELLED',
|
|
2809
|
-
Unknown: 'UNKNOWN'
|
|
2809
|
+
Unknown: 'UNKNOWN',
|
|
2810
2810
|
} as const;
|
|
2811
2811
|
|
|
2812
2812
|
export type FriendshipStatusDTOSuccessEnum = typeof FriendshipStatusDTOSuccessEnum[keyof typeof FriendshipStatusDTOSuccessEnum];
|
|
@@ -2932,7 +2932,7 @@ export interface HashtagPayloadDTO {
|
|
|
2932
2932
|
}
|
|
2933
2933
|
|
|
2934
2934
|
export const HashtagPayloadDTOCategoryEnum = {
|
|
2935
|
-
Rsvp: 'RSVP'
|
|
2935
|
+
Rsvp: 'RSVP',
|
|
2936
2936
|
} as const;
|
|
2937
2937
|
|
|
2938
2938
|
export type HashtagPayloadDTOCategoryEnum = typeof HashtagPayloadDTOCategoryEnum[keyof typeof HashtagPayloadDTOCategoryEnum];
|
|
@@ -2960,7 +2960,7 @@ export interface HashtagUpdatePayloadDTO {
|
|
|
2960
2960
|
}
|
|
2961
2961
|
|
|
2962
2962
|
export const HashtagUpdatePayloadDTOCategoryEnum = {
|
|
2963
|
-
Rsvp: 'RSVP'
|
|
2963
|
+
Rsvp: 'RSVP',
|
|
2964
2964
|
} as const;
|
|
2965
2965
|
|
|
2966
2966
|
export type HashtagUpdatePayloadDTOCategoryEnum = typeof HashtagUpdatePayloadDTOCategoryEnum[keyof typeof HashtagUpdatePayloadDTOCategoryEnum];
|
|
@@ -2981,7 +2981,7 @@ export interface HashtagsResponse {
|
|
|
2981
2981
|
}
|
|
2982
2982
|
|
|
2983
2983
|
export const HashtagsResponseCategoryEnum = {
|
|
2984
|
-
Rsvp: 'RSVP'
|
|
2984
|
+
Rsvp: 'RSVP',
|
|
2985
2985
|
} as const;
|
|
2986
2986
|
|
|
2987
2987
|
export type HashtagsResponseCategoryEnum = typeof HashtagsResponseCategoryEnum[keyof typeof HashtagsResponseCategoryEnum];
|
|
@@ -3025,7 +3025,7 @@ export interface HistoryEntity {
|
|
|
3025
3025
|
|
|
3026
3026
|
export const HistoryEntityModalNameEnum = {
|
|
3027
3027
|
Booking: 'booking',
|
|
3028
|
-
Waitlist: 'waitlist'
|
|
3028
|
+
Waitlist: 'waitlist',
|
|
3029
3029
|
} as const;
|
|
3030
3030
|
|
|
3031
3031
|
export type HistoryEntityModalNameEnum = typeof HistoryEntityModalNameEnum[keyof typeof HistoryEntityModalNameEnum];
|
|
@@ -3042,7 +3042,7 @@ export interface HistoryPayloadDTO {
|
|
|
3042
3042
|
|
|
3043
3043
|
export const HistoryPayloadDTOModalNameEnum = {
|
|
3044
3044
|
Booking: 'booking',
|
|
3045
|
-
Waitlist: 'waitlist'
|
|
3045
|
+
Waitlist: 'waitlist',
|
|
3046
3046
|
} as const;
|
|
3047
3047
|
|
|
3048
3048
|
export type HistoryPayloadDTOModalNameEnum = typeof HistoryPayloadDTOModalNameEnum[keyof typeof HistoryPayloadDTOModalNameEnum];
|
|
@@ -3111,7 +3111,7 @@ export interface IntegrationEntity {
|
|
|
3111
3111
|
export const IntegrationEntityIntegrationTypeEnum = {
|
|
3112
3112
|
Google: 'google',
|
|
3113
3113
|
Microsoft: 'microsoft',
|
|
3114
|
-
Apple: 'apple'
|
|
3114
|
+
Apple: 'apple',
|
|
3115
3115
|
} as const;
|
|
3116
3116
|
|
|
3117
3117
|
export type IntegrationEntityIntegrationTypeEnum = typeof IntegrationEntityIntegrationTypeEnum[keyof typeof IntegrationEntityIntegrationTypeEnum];
|
|
@@ -3183,7 +3183,7 @@ export interface ListTaskListPayload {
|
|
|
3183
3183
|
export const ListTaskListPayloadStatusEnum = {
|
|
3184
3184
|
Pending: 'PENDING',
|
|
3185
3185
|
Completed: 'COMPLETED',
|
|
3186
|
-
Deleted: 'DELETED'
|
|
3186
|
+
Deleted: 'DELETED',
|
|
3187
3187
|
} as const;
|
|
3188
3188
|
|
|
3189
3189
|
export type ListTaskListPayloadStatusEnum = typeof ListTaskListPayloadStatusEnum[keyof typeof ListTaskListPayloadStatusEnum];
|
|
@@ -3224,7 +3224,7 @@ export interface LocationDTO {
|
|
|
3224
3224
|
}
|
|
3225
3225
|
|
|
3226
3226
|
export const LocationDTOTypeEnum = {
|
|
3227
|
-
Point: 'Point'
|
|
3227
|
+
Point: 'Point',
|
|
3228
3228
|
} as const;
|
|
3229
3229
|
|
|
3230
3230
|
export type LocationDTOTypeEnum = typeof LocationDTOTypeEnum[keyof typeof LocationDTOTypeEnum];
|
|
@@ -3370,7 +3370,7 @@ export const NotificationCountDTOCategoryEnum = {
|
|
|
3370
3370
|
Waitlist: 'WAITLIST',
|
|
3371
3371
|
Booking: 'BOOKING',
|
|
3372
3372
|
Invites: 'INVITES',
|
|
3373
|
-
General: 'GENERAL'
|
|
3373
|
+
General: 'GENERAL',
|
|
3374
3374
|
} as const;
|
|
3375
3375
|
|
|
3376
3376
|
export type NotificationCountDTOCategoryEnum = typeof NotificationCountDTOCategoryEnum[keyof typeof NotificationCountDTOCategoryEnum];
|
|
@@ -3471,7 +3471,7 @@ export const NotificationEntityTypeEnum = {
|
|
|
3471
3471
|
DailyBriefing: 'DAILY_BRIEFING',
|
|
3472
3472
|
Reminders: 'REMINDERS',
|
|
3473
3473
|
CollaboratorAddedCalendar: 'COLLABORATOR_ADDED_CALENDAR',
|
|
3474
|
-
CollaboratorAddedEvent: 'COLLABORATOR_ADDED_EVENT'
|
|
3474
|
+
CollaboratorAddedEvent: 'COLLABORATOR_ADDED_EVENT',
|
|
3475
3475
|
} as const;
|
|
3476
3476
|
|
|
3477
3477
|
export type NotificationEntityTypeEnum = typeof NotificationEntityTypeEnum[keyof typeof NotificationEntityTypeEnum];
|
|
@@ -3780,7 +3780,7 @@ export const PrepaidServiceEntityRepeatEnum = {
|
|
|
3780
3780
|
Daily: 'DAILY',
|
|
3781
3781
|
Weekly: 'WEEKLY',
|
|
3782
3782
|
Monthly: 'MONTHLY',
|
|
3783
|
-
Year: 'YEAR'
|
|
3783
|
+
Year: 'YEAR',
|
|
3784
3784
|
} as const;
|
|
3785
3785
|
|
|
3786
3786
|
export type PrepaidServiceEntityRepeatEnum = typeof PrepaidServiceEntityRepeatEnum[keyof typeof PrepaidServiceEntityRepeatEnum];
|
|
@@ -3857,7 +3857,7 @@ export const PrepaidServicePayloadDTORepeatEnum = {
|
|
|
3857
3857
|
Daily: 'DAILY',
|
|
3858
3858
|
Weekly: 'WEEKLY',
|
|
3859
3859
|
Monthly: 'MONTHLY',
|
|
3860
|
-
Year: 'YEAR'
|
|
3860
|
+
Year: 'YEAR',
|
|
3861
3861
|
} as const;
|
|
3862
3862
|
|
|
3863
3863
|
export type PrepaidServicePayloadDTORepeatEnum = typeof PrepaidServicePayloadDTORepeatEnum[keyof typeof PrepaidServicePayloadDTORepeatEnum];
|
|
@@ -3897,7 +3897,7 @@ export const PriceEntityIntervalEnum = {
|
|
|
3897
3897
|
Day: 'day',
|
|
3898
3898
|
Month: 'month',
|
|
3899
3899
|
Week: 'week',
|
|
3900
|
-
Year: 'year'
|
|
3900
|
+
Year: 'year',
|
|
3901
3901
|
} as const;
|
|
3902
3902
|
|
|
3903
3903
|
export type PriceEntityIntervalEnum = typeof PriceEntityIntervalEnum[keyof typeof PriceEntityIntervalEnum];
|
|
@@ -4025,6 +4025,7 @@ export interface RSVPEvenPayloadDTO {
|
|
|
4025
4025
|
'collaboratorUsers'?: Array<CreateRSVPCollaboratorPayload>;
|
|
4026
4026
|
'calendars'?: Array<string>;
|
|
4027
4027
|
'theme'?: string;
|
|
4028
|
+
'hideGuestCount'?: boolean;
|
|
4028
4029
|
}
|
|
4029
4030
|
|
|
4030
4031
|
export const RSVPEvenPayloadDTORepeatEnum = {
|
|
@@ -4032,13 +4033,13 @@ export const RSVPEvenPayloadDTORepeatEnum = {
|
|
|
4032
4033
|
Daily: 'DAILY',
|
|
4033
4034
|
Weekly: 'WEEKLY',
|
|
4034
4035
|
Monthly: 'MONTHLY',
|
|
4035
|
-
Year: 'YEAR'
|
|
4036
|
+
Year: 'YEAR',
|
|
4036
4037
|
} as const;
|
|
4037
4038
|
|
|
4038
4039
|
export type RSVPEvenPayloadDTORepeatEnum = typeof RSVPEvenPayloadDTORepeatEnum[keyof typeof RSVPEvenPayloadDTORepeatEnum];
|
|
4039
4040
|
export const RSVPEvenPayloadDTOTypeEnum = {
|
|
4040
4041
|
Public: 'PUBLIC',
|
|
4041
|
-
Private: 'PRIVATE'
|
|
4042
|
+
Private: 'PRIVATE',
|
|
4042
4043
|
} as const;
|
|
4043
4044
|
|
|
4044
4045
|
export type RSVPEvenPayloadDTOTypeEnum = typeof RSVPEvenPayloadDTOTypeEnum[keyof typeof RSVPEvenPayloadDTOTypeEnum];
|
|
@@ -4133,6 +4134,7 @@ export interface RSVPEventEntity {
|
|
|
4133
4134
|
*/
|
|
4134
4135
|
'collaborators'?: Array<CreateRSVPCollaboratorPayload>;
|
|
4135
4136
|
'theme'?: string;
|
|
4137
|
+
'hideGuestCount'?: boolean;
|
|
4136
4138
|
}
|
|
4137
4139
|
|
|
4138
4140
|
export const RSVPEventEntityRepeatEnum = {
|
|
@@ -4140,13 +4142,13 @@ export const RSVPEventEntityRepeatEnum = {
|
|
|
4140
4142
|
Daily: 'DAILY',
|
|
4141
4143
|
Weekly: 'WEEKLY',
|
|
4142
4144
|
Monthly: 'MONTHLY',
|
|
4143
|
-
Year: 'YEAR'
|
|
4145
|
+
Year: 'YEAR',
|
|
4144
4146
|
} as const;
|
|
4145
4147
|
|
|
4146
4148
|
export type RSVPEventEntityRepeatEnum = typeof RSVPEventEntityRepeatEnum[keyof typeof RSVPEventEntityRepeatEnum];
|
|
4147
4149
|
export const RSVPEventEntityTypeEnum = {
|
|
4148
4150
|
Public: 'PUBLIC',
|
|
4149
|
-
Private: 'PRIVATE'
|
|
4151
|
+
Private: 'PRIVATE',
|
|
4150
4152
|
} as const;
|
|
4151
4153
|
|
|
4152
4154
|
export type RSVPEventEntityTypeEnum = typeof RSVPEventEntityTypeEnum[keyof typeof RSVPEventEntityTypeEnum];
|
|
@@ -4186,7 +4188,7 @@ export interface RSVPEventFindDTO {
|
|
|
4186
4188
|
|
|
4187
4189
|
export const RSVPEventFindDTOTypeEnum = {
|
|
4188
4190
|
Public: 'PUBLIC',
|
|
4189
|
-
Private: 'PRIVATE'
|
|
4191
|
+
Private: 'PRIVATE',
|
|
4190
4192
|
} as const;
|
|
4191
4193
|
|
|
4192
4194
|
export type RSVPEventFindDTOTypeEnum = typeof RSVPEventFindDTOTypeEnum[keyof typeof RSVPEventFindDTOTypeEnum];
|
|
@@ -4205,7 +4207,7 @@ export interface RSVPEventLocationDTO {
|
|
|
4205
4207
|
}
|
|
4206
4208
|
|
|
4207
4209
|
export const RSVPEventLocationDTOTypeEnum = {
|
|
4208
|
-
Point: 'Point'
|
|
4210
|
+
Point: 'Point',
|
|
4209
4211
|
} as const;
|
|
4210
4212
|
|
|
4211
4213
|
export type RSVPEventLocationDTOTypeEnum = typeof RSVPEventLocationDTOTypeEnum[keyof typeof RSVPEventLocationDTOTypeEnum];
|
|
@@ -4357,7 +4359,7 @@ export interface SearchHistoryEntity {
|
|
|
4357
4359
|
|
|
4358
4360
|
export const SearchHistoryEntityTypeEnum = {
|
|
4359
4361
|
Person: 'PERSON',
|
|
4360
|
-
Place: 'PLACE'
|
|
4362
|
+
Place: 'PLACE',
|
|
4361
4363
|
} as const;
|
|
4362
4364
|
|
|
4363
4365
|
export type SearchHistoryEntityTypeEnum = typeof SearchHistoryEntityTypeEnum[keyof typeof SearchHistoryEntityTypeEnum];
|
|
@@ -4369,7 +4371,7 @@ export interface SearchHistoryFilter {
|
|
|
4369
4371
|
|
|
4370
4372
|
export const SearchHistoryFilterTypeEnum = {
|
|
4371
4373
|
Person: 'PERSON',
|
|
4372
|
-
Place: 'PLACE'
|
|
4374
|
+
Place: 'PLACE',
|
|
4373
4375
|
} as const;
|
|
4374
4376
|
|
|
4375
4377
|
export type SearchHistoryFilterTypeEnum = typeof SearchHistoryFilterTypeEnum[keyof typeof SearchHistoryFilterTypeEnum];
|
|
@@ -4386,7 +4388,7 @@ export interface SearchHistoryPayload {
|
|
|
4386
4388
|
|
|
4387
4389
|
export const SearchHistoryPayloadTypeEnum = {
|
|
4388
4390
|
Person: 'PERSON',
|
|
4389
|
-
Place: 'PLACE'
|
|
4391
|
+
Place: 'PLACE',
|
|
4390
4392
|
} as const;
|
|
4391
4393
|
|
|
4392
4394
|
export type SearchHistoryPayloadTypeEnum = typeof SearchHistoryPayloadTypeEnum[keyof typeof SearchHistoryPayloadTypeEnum];
|
|
@@ -4612,7 +4614,7 @@ export const TagPayloadDTOCategoryEnum = {
|
|
|
4612
4614
|
Booking: 'BOOKING',
|
|
4613
4615
|
Customer: 'CUSTOMER',
|
|
4614
4616
|
Gooday: 'GOODAY',
|
|
4615
|
-
Web: 'WEB'
|
|
4617
|
+
Web: 'WEB',
|
|
4616
4618
|
} as const;
|
|
4617
4619
|
|
|
4618
4620
|
export type TagPayloadDTOCategoryEnum = typeof TagPayloadDTOCategoryEnum[keyof typeof TagPayloadDTOCategoryEnum];
|
|
@@ -4652,7 +4654,7 @@ export const TagUpdatePayloadDTOCategoryEnum = {
|
|
|
4652
4654
|
Booking: 'BOOKING',
|
|
4653
4655
|
Customer: 'CUSTOMER',
|
|
4654
4656
|
Gooday: 'GOODAY',
|
|
4655
|
-
Web: 'WEB'
|
|
4657
|
+
Web: 'WEB',
|
|
4656
4658
|
} as const;
|
|
4657
4659
|
|
|
4658
4660
|
export type TagUpdatePayloadDTOCategoryEnum = typeof TagUpdatePayloadDTOCategoryEnum[keyof typeof TagUpdatePayloadDTOCategoryEnum];
|
|
@@ -4685,7 +4687,7 @@ export const TagsResponseCategoryEnum = {
|
|
|
4685
4687
|
Booking: 'BOOKING',
|
|
4686
4688
|
Customer: 'CUSTOMER',
|
|
4687
4689
|
Gooday: 'GOODAY',
|
|
4688
|
-
Web: 'WEB'
|
|
4690
|
+
Web: 'WEB',
|
|
4689
4691
|
} as const;
|
|
4690
4692
|
|
|
4691
4693
|
export type TagsResponseCategoryEnum = typeof TagsResponseCategoryEnum[keyof typeof TagsResponseCategoryEnum];
|
|
@@ -4848,7 +4850,7 @@ export interface UndoPayloadDTO {
|
|
|
4848
4850
|
export const UndoPayloadDTOActionEnum = {
|
|
4849
4851
|
Update: 'UPDATE',
|
|
4850
4852
|
Create: 'CREATE',
|
|
4851
|
-
Delete: 'DELETE'
|
|
4853
|
+
Delete: 'DELETE',
|
|
4852
4854
|
} as const;
|
|
4853
4855
|
|
|
4854
4856
|
export type UndoPayloadDTOActionEnum = typeof UndoPayloadDTOActionEnum[keyof typeof UndoPayloadDTOActionEnum];
|
|
@@ -4997,7 +4999,7 @@ export interface UserEntity {
|
|
|
4997
4999
|
export const UserEntityRoleEnum = {
|
|
4998
5000
|
Business: 'business',
|
|
4999
5001
|
User: 'user',
|
|
5000
|
-
Admin: 'admin'
|
|
5002
|
+
Admin: 'admin',
|
|
5001
5003
|
} as const;
|
|
5002
5004
|
|
|
5003
5005
|
export type UserEntityRoleEnum = typeof UserEntityRoleEnum[keyof typeof UserEntityRoleEnum];
|
|
@@ -5050,7 +5052,7 @@ export interface UserPlanDTO {
|
|
|
5050
5052
|
|
|
5051
5053
|
export const UserPlanDTONameEnum = {
|
|
5052
5054
|
Free: 'Free',
|
|
5053
|
-
Pro: 'Pro'
|
|
5055
|
+
Pro: 'Pro',
|
|
5054
5056
|
} as const;
|
|
5055
5057
|
|
|
5056
5058
|
export type UserPlanDTONameEnum = typeof UserPlanDTONameEnum[keyof typeof UserPlanDTONameEnum];
|
|
@@ -5203,7 +5205,7 @@ export const WaitlistEntityMethodEnum = {
|
|
|
5203
5205
|
InPerson: 'IN_PERSON',
|
|
5204
5206
|
App: 'APP',
|
|
5205
5207
|
WalkIn: 'WALK_IN',
|
|
5206
|
-
Web: 'WEB'
|
|
5208
|
+
Web: 'WEB',
|
|
5207
5209
|
} as const;
|
|
5208
5210
|
|
|
5209
5211
|
export type WaitlistEntityMethodEnum = typeof WaitlistEntityMethodEnum[keyof typeof WaitlistEntityMethodEnum];
|
|
@@ -5211,7 +5213,7 @@ export const WaitlistEntityStatusEnum = {
|
|
|
5211
5213
|
Pending: 'PENDING',
|
|
5212
5214
|
Confirm: 'CONFIRM',
|
|
5213
5215
|
ConnectedNoAnswer: 'CONNECTED_NO_ANSWER',
|
|
5214
|
-
Withdraw: 'WITHDRAW'
|
|
5216
|
+
Withdraw: 'WITHDRAW',
|
|
5215
5217
|
} as const;
|
|
5216
5218
|
|
|
5217
5219
|
export type WaitlistEntityStatusEnum = typeof WaitlistEntityStatusEnum[keyof typeof WaitlistEntityStatusEnum];
|
|
@@ -5274,7 +5276,7 @@ export const WaitlistStaffStatusEnum = {
|
|
|
5274
5276
|
Pending: 'PENDING',
|
|
5275
5277
|
Confirm: 'CONFIRM',
|
|
5276
5278
|
ConnectedNoAnswer: 'CONNECTED_NO_ANSWER',
|
|
5277
|
-
Withdraw: 'WITHDRAW'
|
|
5279
|
+
Withdraw: 'WITHDRAW',
|
|
5278
5280
|
} as const;
|
|
5279
5281
|
|
|
5280
5282
|
export type WaitlistStaffStatusEnum = typeof WaitlistStaffStatusEnum[keyof typeof WaitlistStaffStatusEnum];
|
|
@@ -5406,7 +5408,7 @@ export const WhatsOnEntityRepeatEnum = {
|
|
|
5406
5408
|
Daily: 'DAILY',
|
|
5407
5409
|
Weekly: 'WEEKLY',
|
|
5408
5410
|
Monthly: 'MONTHLY',
|
|
5409
|
-
Year: 'YEAR'
|
|
5411
|
+
Year: 'YEAR',
|
|
5410
5412
|
} as const;
|
|
5411
5413
|
|
|
5412
5414
|
export type WhatsOnEntityRepeatEnum = typeof WhatsOnEntityRepeatEnum[keyof typeof WhatsOnEntityRepeatEnum];
|
|
@@ -5512,7 +5514,7 @@ export interface WhatsOnLocationDTO {
|
|
|
5512
5514
|
}
|
|
5513
5515
|
|
|
5514
5516
|
export const WhatsOnLocationDTOTypeEnum = {
|
|
5515
|
-
Point: 'Point'
|
|
5517
|
+
Point: 'Point',
|
|
5516
5518
|
} as const;
|
|
5517
5519
|
|
|
5518
5520
|
export type WhatsOnLocationDTOTypeEnum = typeof WhatsOnLocationDTOTypeEnum[keyof typeof WhatsOnLocationDTOTypeEnum];
|
|
@@ -5578,7 +5580,7 @@ export const WhatsOnPayloadDTORepeatEnum = {
|
|
|
5578
5580
|
Daily: 'DAILY',
|
|
5579
5581
|
Weekly: 'WEEKLY',
|
|
5580
5582
|
Monthly: 'MONTHLY',
|
|
5581
|
-
Year: 'YEAR'
|
|
5583
|
+
Year: 'YEAR',
|
|
5582
5584
|
} as const;
|
|
5583
5585
|
|
|
5584
5586
|
export type WhatsOnPayloadDTORepeatEnum = typeof WhatsOnPayloadDTORepeatEnum[keyof typeof WhatsOnPayloadDTORepeatEnum];
|
|
@@ -11379,7 +11381,7 @@ export const BusinessVerificationControllerABNVerificationTypeEnum = {
|
|
|
11379
11381
|
Abn: 'ABN',
|
|
11380
11382
|
Nzbn: 'NZBN',
|
|
11381
11383
|
Crn: 'CRN',
|
|
11382
|
-
Ein: 'EIN'
|
|
11384
|
+
Ein: 'EIN',
|
|
11383
11385
|
} as const;
|
|
11384
11386
|
export type BusinessVerificationControllerABNVerificationTypeEnum = typeof BusinessVerificationControllerABNVerificationTypeEnum[keyof typeof BusinessVerificationControllerABNVerificationTypeEnum];
|
|
11385
11387
|
|
|
@@ -16065,11 +16067,11 @@ export class HashtagsApi extends BaseAPI {
|
|
|
16065
16067
|
}
|
|
16066
16068
|
|
|
16067
16069
|
export const HashtagsControllerFindHashtagsCategoryEnum = {
|
|
16068
|
-
Rsvp: 'RSVP'
|
|
16070
|
+
Rsvp: 'RSVP',
|
|
16069
16071
|
} as const;
|
|
16070
16072
|
export type HashtagsControllerFindHashtagsCategoryEnum = typeof HashtagsControllerFindHashtagsCategoryEnum[keyof typeof HashtagsControllerFindHashtagsCategoryEnum];
|
|
16071
16073
|
export const HashtagsControllerGetHashtagsCategoryEnum = {
|
|
16072
|
-
Rsvp: 'RSVP'
|
|
16074
|
+
Rsvp: 'RSVP',
|
|
16073
16075
|
} as const;
|
|
16074
16076
|
export type HashtagsControllerGetHashtagsCategoryEnum = typeof HashtagsControllerGetHashtagsCategoryEnum[keyof typeof HashtagsControllerGetHashtagsCategoryEnum];
|
|
16075
16077
|
|
|
@@ -17377,7 +17379,7 @@ export const NotificationControllerGetNotificationCategoryEnum = {
|
|
|
17377
17379
|
Waitlist: 'WAITLIST',
|
|
17378
17380
|
Booking: 'BOOKING',
|
|
17379
17381
|
Invites: 'INVITES',
|
|
17380
|
-
General: 'GENERAL'
|
|
17382
|
+
General: 'GENERAL',
|
|
17381
17383
|
} as const;
|
|
17382
17384
|
export type NotificationControllerGetNotificationCategoryEnum = typeof NotificationControllerGetNotificationCategoryEnum[keyof typeof NotificationControllerGetNotificationCategoryEnum];
|
|
17383
17385
|
|
|
@@ -20669,7 +20671,7 @@ export class SearchHistoryApi extends BaseAPI {
|
|
|
20669
20671
|
|
|
20670
20672
|
export const SearchControllerRecentSearchHistoryTypeEnum = {
|
|
20671
20673
|
Person: 'PERSON',
|
|
20672
|
-
Place: 'PLACE'
|
|
20674
|
+
Place: 'PLACE',
|
|
20673
20675
|
} as const;
|
|
20674
20676
|
export type SearchControllerRecentSearchHistoryTypeEnum = typeof SearchControllerRecentSearchHistoryTypeEnum[keyof typeof SearchControllerRecentSearchHistoryTypeEnum];
|
|
20675
20677
|
|
|
@@ -21173,14 +21175,14 @@ export const TagsControllerFindTagsCategoryEnum = {
|
|
|
21173
21175
|
Booking: 'BOOKING',
|
|
21174
21176
|
Customer: 'CUSTOMER',
|
|
21175
21177
|
Gooday: 'GOODAY',
|
|
21176
|
-
Web: 'WEB'
|
|
21178
|
+
Web: 'WEB',
|
|
21177
21179
|
} as const;
|
|
21178
21180
|
export type TagsControllerFindTagsCategoryEnum = typeof TagsControllerFindTagsCategoryEnum[keyof typeof TagsControllerFindTagsCategoryEnum];
|
|
21179
21181
|
export const TagsControllerGetTagsCategoryEnum = {
|
|
21180
21182
|
Booking: 'BOOKING',
|
|
21181
21183
|
Customer: 'CUSTOMER',
|
|
21182
21184
|
Gooday: 'GOODAY',
|
|
21183
|
-
Web: 'WEB'
|
|
21185
|
+
Web: 'WEB',
|
|
21184
21186
|
} as const;
|
|
21185
21187
|
export type TagsControllerGetTagsCategoryEnum = typeof TagsControllerGetTagsCategoryEnum[keyof typeof TagsControllerGetTagsCategoryEnum];
|
|
21186
21188
|
|
|
@@ -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-27T13:46:57Z]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-03-27T13:46:57Z]
|
|
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-27T13:46:57Z]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2026-03-27T13:46:57Z]
|
|
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-27T13:46:57Z]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2026-03-27T13:46:57Z]
|
|
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-27T13:46:55Z]
|
|
12
|
+
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-03-27T13:46:55Z]
|
|
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]
|
|
@@ -40,6 +40,7 @@ Name | Type | Description | Notes
|
|
|
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
42
|
**theme** | **string** | | [optional] [default to undefined]
|
|
43
|
+
**hideGuestCount** | **boolean** | | [optional] [default to undefined]
|
|
43
44
|
|
|
44
45
|
## Example
|
|
45
46
|
|
|
@@ -82,6 +83,7 @@ const instance: RSVPEvenPayloadDTO = {
|
|
|
82
83
|
collaboratorUsers,
|
|
83
84
|
calendars,
|
|
84
85
|
theme,
|
|
86
|
+
hideGuestCount,
|
|
85
87
|
};
|
|
86
88
|
```
|
|
87
89
|
|
package/docs/RSVPEventEntity.md
CHANGED
|
@@ -42,6 +42,7 @@ Name | Type | Description | Notes
|
|
|
42
42
|
**calendar** | **boolean** | | [optional] [default to undefined]
|
|
43
43
|
**collaborators** | [**Array<CreateRSVPCollaboratorPayload>**](CreateRSVPCollaboratorPayload.md) | The list of collaborators associated with the booking | [optional] [default to undefined]
|
|
44
44
|
**theme** | **string** | | [optional] [default to undefined]
|
|
45
|
+
**hideGuestCount** | **boolean** | | [optional] [default to undefined]
|
|
45
46
|
|
|
46
47
|
## Example
|
|
47
48
|
|
|
@@ -86,6 +87,7 @@ const instance: RSVPEventEntity = {
|
|
|
86
87
|
calendar,
|
|
87
88
|
collaborators,
|
|
88
89
|
theme,
|
|
90
|
+
hideGuestCount,
|
|
89
91
|
};
|
|
90
92
|
```
|
|
91
93
|
|
|
@@ -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-27T13:46:57Z]
|
|
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-27T13:46:57Z]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2026-03-27T14:46:57Z]
|
|
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]
|