@gooday_corp/gooday-api-client 2.1.3 → 2.2.1
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
|
@@ -8147,7 +8147,13 @@ export interface SendCollaborateInvitePayload {
|
|
|
8147
8147
|
* @type {Array<string>}
|
|
8148
8148
|
* @memberof SendCollaborateInvitePayload
|
|
8149
8149
|
*/
|
|
8150
|
-
'collaborator'
|
|
8150
|
+
'collaborator'?: Array<string>;
|
|
8151
|
+
/**
|
|
8152
|
+
*
|
|
8153
|
+
* @type {string}
|
|
8154
|
+
* @memberof SendCollaborateInvitePayload
|
|
8155
|
+
*/
|
|
8156
|
+
'mobileNumber'?: string;
|
|
8151
8157
|
/**
|
|
8152
8158
|
* The calendar identifier
|
|
8153
8159
|
* @type {string}
|
|
@@ -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-09T15:03:08+05:30]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-09-09T15:03:08+05:30]
|
|
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]
|
|
@@ -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-09T15:03:08+05:30]
|
|
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,7 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**collaborator** | **Array<string>** | identifier of the collaborator | [default to undefined]
|
|
8
|
+
**collaborator** | **Array<string>** | identifier of the collaborator | [optional] [default to undefined]
|
|
9
|
+
**mobileNumber** | **string** | | [optional] [default to undefined]
|
|
9
10
|
**calendar** | **string** | The calendar identifier | [default to undefined]
|
|
10
11
|
|
|
11
12
|
## Example
|
|
@@ -15,6 +16,7 @@ import { SendCollaborateInvitePayload } from './api';
|
|
|
15
16
|
|
|
16
17
|
const instance: SendCollaborateInvitePayload = {
|
|
17
18
|
collaborator,
|
|
19
|
+
mobileNumber,
|
|
18
20
|
calendar,
|
|
19
21
|
};
|
|
20
22
|
```
|
|
@@ -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-09T15:03:08+05:30]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-09-09T16:03:08+05:30]
|
|
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]
|