@gooday_corp/gooday-api-client 1.2.15 → 1.2.17

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 +15 -0
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -343,7 +343,22 @@ export interface AvailableSlotsPayload {
343
343
  * @memberof AvailableSlotsPayload
344
344
  */
345
345
  'collaborators': Array<string>;
346
+ /**
347
+ * View
348
+ * @type {string}
349
+ * @memberof AvailableSlotsPayload
350
+ */
351
+ 'view': AvailableSlotsPayloadViewEnum;
346
352
  }
353
+
354
+ export const AvailableSlotsPayloadViewEnum = {
355
+ Daily: 'daily',
356
+ Weekly: 'weekly',
357
+ Monthly: 'monthly'
358
+ } as const;
359
+
360
+ export type AvailableSlotsPayloadViewEnum = typeof AvailableSlotsPayloadViewEnum[keyof typeof AvailableSlotsPayloadViewEnum];
361
+
347
362
  /**
348
363
  *
349
364
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "1.2.15",
3
+ "version": "1.2.17",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},