@gooday_corp/gooday-api-client 2.1.8 → 2.1.10
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
CHANGED
|
@@ -6413,6 +6413,12 @@ export interface MicrosoftCalendarAccessDTO {
|
|
|
6413
6413
|
* @memberof MicrosoftCalendarAccessDTO
|
|
6414
6414
|
*/
|
|
6415
6415
|
'refreshToken': string;
|
|
6416
|
+
/**
|
|
6417
|
+
* refreshToken
|
|
6418
|
+
* @type {string}
|
|
6419
|
+
* @memberof MicrosoftCalendarAccessDTO
|
|
6420
|
+
*/
|
|
6421
|
+
'expiryTime'?: string;
|
|
6416
6422
|
}
|
|
6417
6423
|
/**
|
|
6418
6424
|
*
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**title** | **string** | The title of the booking | [default to 'Default Booking Title']
|
|
9
|
-
**date** | **string** | The start date of the booking | [default to 2025-09-
|
|
10
|
-
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-09-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-09-30T11:50:12Z]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-09-30T11:50:12Z]
|
|
11
11
|
**from** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**to** | **string** | | [optional] [default to undefined]
|
|
13
13
|
**venue** | **string** | The venue of the booking | [default to undefined]
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**title** | **string** | The title of the booking | [default to 'Default Booking Title']
|
|
9
|
-
**startDate** | **string** | The start date of the booking | [default to 2025-09-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2025-09-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2025-09-30T11:50:12Z]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2025-09-30T11:50:12Z]
|
|
11
11
|
**note** | **string** | Notes attached with booking | [optional] [default to undefined]
|
|
12
12
|
**occasion** | **string** | Occasion id | [optional] [default to undefined]
|
|
13
13
|
**calendar** | **Array<string>** | Calendar attached with booking | [optional] [default to undefined]
|
|
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**accessToken** | **string** | accessToken | [default to undefined]
|
|
9
9
|
**refreshToken** | **string** | refreshToken | [default to undefined]
|
|
10
|
+
**expiryTime** | **string** | refreshToken | [optional] [default to undefined]
|
|
10
11
|
|
|
11
12
|
## Example
|
|
12
13
|
|
|
@@ -16,6 +17,7 @@ import { MicrosoftCalendarAccessDTO } from './api';
|
|
|
16
17
|
const instance: MicrosoftCalendarAccessDTO = {
|
|
17
18
|
accessToken,
|
|
18
19
|
refreshToken,
|
|
20
|
+
expiryTime,
|
|
19
21
|
};
|
|
20
22
|
```
|
|
21
23
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**date** | **string** | The start date of the booking | [default to 2025-09-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-09-30T11:50:12Z]
|
|
9
9
|
**from** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**to** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**notes** | **string** | | [optional] [default to undefined]
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**startDate** | **string** | The start date of the waitlist | [default to 2025-09-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2025-09-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2025-09-30T11:50:12Z]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-09-30T12:50:12Z]
|
|
10
10
|
**venue** | **string** | The venue of the waitlist | [default to undefined]
|
|
11
11
|
**business** | **string** | The business associated with the waitlist | [default to undefined]
|
|
12
12
|
**collaborators** | [**Array<CreateWaitlistBookingCollaboratorPayload>**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
|