@gooday_corp/gooday-api-client 1.1.35 → 1.1.39
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 +29 -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
|
|
@@ -2568,11 +2583,24 @@ export const NotificationEntityTypeEnum = {
|
|
|
2568
2583
|
BusinessBookingCreate: 'BUSINESS_BOOKING_CREATE',
|
|
2569
2584
|
BookingCreate: 'BOOKING_CREATE',
|
|
2570
2585
|
BookingCreateForUser: 'BOOKING_CREATE_FOR_USER',
|
|
2586
|
+
BookingCancel: 'BOOKING_CANCEL',
|
|
2587
|
+
BusinessBookingCancelBusiness: 'BUSINESS_BOOKING_CANCEL_BUSINESS',
|
|
2588
|
+
BusinessBookingCancelUserToBusinesss: 'BUSINESS_BOOKING_CANCEL_USER_TO_BUSINESSS',
|
|
2571
2589
|
BokingAccept: 'BOKING_ACCEPT',
|
|
2572
2590
|
BookingReject: 'BOOKING_REJECT',
|
|
2591
|
+
InviteTodo: 'INVITE_TODO',
|
|
2592
|
+
TodoReject: 'TODO_REJECT',
|
|
2593
|
+
TodoInviteApproved: 'TODO_INVITE_APPROVED',
|
|
2594
|
+
TodoDeleted: 'TODO_DELETED',
|
|
2595
|
+
TodoTaskDelete: 'TODO_TASK_DELETE',
|
|
2596
|
+
TodoTaskAssign: 'TODO_TASK_ASSIGN',
|
|
2597
|
+
TodoTaskUpdated: 'TODO_TASK_UPDATED',
|
|
2598
|
+
TodoUpdated: 'TODO_UPDATED',
|
|
2573
2599
|
EventInvite: 'EVENT_INVITE',
|
|
2574
2600
|
EventInviteReject: 'EVENT_INVITE_REJECT',
|
|
2575
|
-
EventInviteAccept: 'EVENT_INVITE_ACCEPT'
|
|
2601
|
+
EventInviteAccept: 'EVENT_INVITE_ACCEPT',
|
|
2602
|
+
EventUserRemoved: 'EVENT_USER_REMOVED',
|
|
2603
|
+
EventUserLeft: 'EVENT_USER_LEFT'
|
|
2576
2604
|
} as const;
|
|
2577
2605
|
|
|
2578
2606
|
export type NotificationEntityTypeEnum = typeof NotificationEntityTypeEnum[keyof typeof NotificationEntityTypeEnum];
|