@gooday_corp/gooday-api-client 1.2.16 → 1.2.18
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 +21 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -99,6 +99,12 @@ export interface ActivityResponse {
|
|
|
99
99
|
* @memberof ActivityResponse
|
|
100
100
|
*/
|
|
101
101
|
'value': string;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof ActivityResponse
|
|
106
|
+
*/
|
|
107
|
+
'image': string;
|
|
102
108
|
}
|
|
103
109
|
/**
|
|
104
110
|
*
|
|
@@ -343,7 +349,22 @@ export interface AvailableSlotsPayload {
|
|
|
343
349
|
* @memberof AvailableSlotsPayload
|
|
344
350
|
*/
|
|
345
351
|
'collaborators': Array<string>;
|
|
352
|
+
/**
|
|
353
|
+
* View
|
|
354
|
+
* @type {string}
|
|
355
|
+
* @memberof AvailableSlotsPayload
|
|
356
|
+
*/
|
|
357
|
+
'view': AvailableSlotsPayloadViewEnum;
|
|
346
358
|
}
|
|
359
|
+
|
|
360
|
+
export const AvailableSlotsPayloadViewEnum = {
|
|
361
|
+
Daily: 'daily',
|
|
362
|
+
Weekly: 'weekly',
|
|
363
|
+
Monthly: 'monthly'
|
|
364
|
+
} as const;
|
|
365
|
+
|
|
366
|
+
export type AvailableSlotsPayloadViewEnum = typeof AvailableSlotsPayloadViewEnum[keyof typeof AvailableSlotsPayloadViewEnum];
|
|
367
|
+
|
|
347
368
|
/**
|
|
348
369
|
*
|
|
349
370
|
* @export
|