@gooday_corp/gooday-api-client 1.1.35 → 1.1.38
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 +18 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1431,7 +1431,22 @@ export interface CreateEventCustomerPayload {
|
|
|
1431
1431
|
* @memberof CreateEventCustomerPayload
|
|
1432
1432
|
*/
|
|
1433
1433
|
'goodayId'?: string;
|
|
1434
|
+
/**
|
|
1435
|
+
*
|
|
1436
|
+
* @type {string}
|
|
1437
|
+
* @memberof CreateEventCustomerPayload
|
|
1438
|
+
*/
|
|
1439
|
+
'status'?: CreateEventCustomerPayloadStatusEnum;
|
|
1434
1440
|
}
|
|
1441
|
+
|
|
1442
|
+
export const CreateEventCustomerPayloadStatusEnum = {
|
|
1443
|
+
Confirmed: 'CONFIRMED',
|
|
1444
|
+
Unconfirmed: 'UNCONFIRMED',
|
|
1445
|
+
Rejected: 'REJECTED'
|
|
1446
|
+
} as const;
|
|
1447
|
+
|
|
1448
|
+
export type CreateEventCustomerPayloadStatusEnum = typeof CreateEventCustomerPayloadStatusEnum[keyof typeof CreateEventCustomerPayloadStatusEnum];
|
|
1449
|
+
|
|
1435
1450
|
/**
|
|
1436
1451
|
*
|
|
1437
1452
|
* @export
|
|
@@ -2572,7 +2587,9 @@ export const NotificationEntityTypeEnum = {
|
|
|
2572
2587
|
BookingReject: 'BOOKING_REJECT',
|
|
2573
2588
|
EventInvite: 'EVENT_INVITE',
|
|
2574
2589
|
EventInviteReject: 'EVENT_INVITE_REJECT',
|
|
2575
|
-
EventInviteAccept: 'EVENT_INVITE_ACCEPT'
|
|
2590
|
+
EventInviteAccept: 'EVENT_INVITE_ACCEPT',
|
|
2591
|
+
EventUserRemoved: 'EVENT_USER_REMOVED',
|
|
2592
|
+
EventUserLeft: 'EVENT_USER_LEFT'
|
|
2576
2593
|
} as const;
|
|
2577
2594
|
|
|
2578
2595
|
export type NotificationEntityTypeEnum = typeof NotificationEntityTypeEnum[keyof typeof NotificationEntityTypeEnum];
|