@gooday_corp/gooday-api-client 1.1.34 → 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.
Files changed (2) hide show
  1. package/api.ts +26 -3
  2. 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];
@@ -3330,12 +3347,18 @@ export interface TaskEntity {
3330
3347
  * @memberof TaskEntity
3331
3348
  */
3332
3349
  'createdBy': string;
3350
+ /**
3351
+ * Assignee note
3352
+ * @type {string}
3353
+ * @memberof TaskEntity
3354
+ */
3355
+ 'note': string;
3333
3356
  /**
3334
3357
  * Assigned to
3335
- * @type {Array<string>}
3358
+ * @type {Array<UserEntity>}
3336
3359
  * @memberof TaskEntity
3337
3360
  */
3338
- 'assignedTo': Array<string>;
3361
+ 'assignedTo': Array<UserEntity>;
3339
3362
  /**
3340
3363
  * Status
3341
3364
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.1.34",
3
+ "version": "1.1.38",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},