@gooday_corp/gooday-api-client 1.2.16 → 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.
- package/api.ts +15 -0
- 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
|