@gooday_corp/gooday-api-client 1.7.1 → 1.7.6
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/.openapi-generator/FILES +1 -0
- package/api.ts +54 -41
- package/docs/CreateBookingPayload.md +2 -2
- package/docs/IntegrationApi.md +26 -10
- package/docs/IntegrationEntity.md +2 -0
- package/docs/IntegrationRevokePayload.md +20 -0
- package/docs/OnBoardingDTO.md +2 -2
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/UserPermissionDTO.md +6 -14
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -189,6 +189,7 @@ docs/HomeFeedListResponseDTO.md
|
|
|
189
189
|
docs/IntegrationApi.md
|
|
190
190
|
docs/IntegrationEntity.md
|
|
191
191
|
docs/IntegrationResponse.md
|
|
192
|
+
docs/IntegrationRevokePayload.md
|
|
192
193
|
docs/IntegrationRevokeResponse.md
|
|
193
194
|
docs/IntegrationsResponse.md
|
|
194
195
|
docs/LeaveBookingDTO.md
|
package/api.ts
CHANGED
|
@@ -5605,6 +5605,12 @@ export interface IntegrationEntity {
|
|
|
5605
5605
|
* @memberof IntegrationEntity
|
|
5606
5606
|
*/
|
|
5607
5607
|
'token': string;
|
|
5608
|
+
/**
|
|
5609
|
+
* Email
|
|
5610
|
+
* @type {string}
|
|
5611
|
+
* @memberof IntegrationEntity
|
|
5612
|
+
*/
|
|
5613
|
+
'email': string;
|
|
5608
5614
|
/**
|
|
5609
5615
|
* Unique identifier for the user
|
|
5610
5616
|
* @type {string}
|
|
@@ -5640,6 +5646,19 @@ export interface IntegrationResponse {
|
|
|
5640
5646
|
*/
|
|
5641
5647
|
'data': IntegrationEntity;
|
|
5642
5648
|
}
|
|
5649
|
+
/**
|
|
5650
|
+
*
|
|
5651
|
+
* @export
|
|
5652
|
+
* @interface IntegrationRevokePayload
|
|
5653
|
+
*/
|
|
5654
|
+
export interface IntegrationRevokePayload {
|
|
5655
|
+
/**
|
|
5656
|
+
*
|
|
5657
|
+
* @type {string}
|
|
5658
|
+
* @memberof IntegrationRevokePayload
|
|
5659
|
+
*/
|
|
5660
|
+
'id': string;
|
|
5661
|
+
}
|
|
5643
5662
|
/**
|
|
5644
5663
|
*
|
|
5645
5664
|
* @export
|
|
@@ -6339,13 +6358,13 @@ export interface OnBoardingDTO {
|
|
|
6339
6358
|
* @type {string}
|
|
6340
6359
|
* @memberof OnBoardingDTO
|
|
6341
6360
|
*/
|
|
6342
|
-
'firstName'
|
|
6361
|
+
'firstName'?: string;
|
|
6343
6362
|
/**
|
|
6344
6363
|
* The last name of the user
|
|
6345
6364
|
* @type {string}
|
|
6346
6365
|
* @memberof OnBoardingDTO
|
|
6347
6366
|
*/
|
|
6348
|
-
'lastName'
|
|
6367
|
+
'lastName'?: string;
|
|
6349
6368
|
/**
|
|
6350
6369
|
* Contact Number For User
|
|
6351
6370
|
* @type {string}
|
|
@@ -8839,42 +8858,18 @@ export interface UserPermissionDTO {
|
|
|
8839
8858
|
* @memberof UserPermissionDTO
|
|
8840
8859
|
*/
|
|
8841
8860
|
'timezone'?: boolean;
|
|
8842
|
-
/**
|
|
8843
|
-
* Specifies if the user has granted calendar access permission.
|
|
8844
|
-
* @type {boolean}
|
|
8845
|
-
* @memberof UserPermissionDTO
|
|
8846
|
-
*/
|
|
8847
|
-
'calendar'?: boolean;
|
|
8848
8861
|
/**
|
|
8849
8862
|
* Specifies if the user has granted access to tasks.
|
|
8850
8863
|
* @type {boolean}
|
|
8851
8864
|
* @memberof UserPermissionDTO
|
|
8852
8865
|
*/
|
|
8853
|
-
'
|
|
8866
|
+
'contacts'?: boolean;
|
|
8854
8867
|
/**
|
|
8855
8868
|
* Specifies if the user has granted access to reminders.
|
|
8856
8869
|
* @type {boolean}
|
|
8857
8870
|
* @memberof UserPermissionDTO
|
|
8858
8871
|
*/
|
|
8859
8872
|
'reminders'?: boolean;
|
|
8860
|
-
/**
|
|
8861
|
-
* Specifies if the user has granted access to the waitlist feature.
|
|
8862
|
-
* @type {boolean}
|
|
8863
|
-
* @memberof UserPermissionDTO
|
|
8864
|
-
*/
|
|
8865
|
-
'waitlist'?: boolean;
|
|
8866
|
-
/**
|
|
8867
|
-
* Specifies if the user has granted access to the booking feature.
|
|
8868
|
-
* @type {boolean}
|
|
8869
|
-
* @memberof UserPermissionDTO
|
|
8870
|
-
*/
|
|
8871
|
-
'booking'?: boolean;
|
|
8872
|
-
/**
|
|
8873
|
-
* Specifies if the user has granted access to the invites feature.
|
|
8874
|
-
* @type {boolean}
|
|
8875
|
-
* @memberof UserPermissionDTO
|
|
8876
|
-
*/
|
|
8877
|
-
'invites'?: boolean;
|
|
8878
8873
|
}
|
|
8879
8874
|
/**
|
|
8880
8875
|
*
|
|
@@ -19111,10 +19106,13 @@ export const IntegrationApiAxiosParamCreator = function (configuration?: Configu
|
|
|
19111
19106
|
},
|
|
19112
19107
|
/**
|
|
19113
19108
|
*
|
|
19109
|
+
* @param {IntegrationRevokePayload} integrationRevokePayload
|
|
19114
19110
|
* @param {*} [options] Override http request option.
|
|
19115
19111
|
* @throws {RequiredError}
|
|
19116
19112
|
*/
|
|
19117
|
-
integrationControllerRevokeGoogleToken: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19113
|
+
integrationControllerRevokeGoogleToken: async (integrationRevokePayload: IntegrationRevokePayload, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19114
|
+
// verify required parameter 'integrationRevokePayload' is not null or undefined
|
|
19115
|
+
assertParamExists('integrationControllerRevokeGoogleToken', 'integrationRevokePayload', integrationRevokePayload)
|
|
19118
19116
|
const localVarPath = `/v1/integration/google/revoke/token`;
|
|
19119
19117
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
19120
19118
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -19133,9 +19131,12 @@ export const IntegrationApiAxiosParamCreator = function (configuration?: Configu
|
|
|
19133
19131
|
|
|
19134
19132
|
|
|
19135
19133
|
|
|
19134
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
19135
|
+
|
|
19136
19136
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
19137
19137
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
19138
19138
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
19139
|
+
localVarRequestOptions.data = serializeDataIfNeeded(integrationRevokePayload, localVarRequestOptions, configuration)
|
|
19139
19140
|
|
|
19140
19141
|
return {
|
|
19141
19142
|
url: toPathString(localVarUrlObj),
|
|
@@ -19144,10 +19145,13 @@ export const IntegrationApiAxiosParamCreator = function (configuration?: Configu
|
|
|
19144
19145
|
},
|
|
19145
19146
|
/**
|
|
19146
19147
|
*
|
|
19148
|
+
* @param {IntegrationRevokePayload} integrationRevokePayload
|
|
19147
19149
|
* @param {*} [options] Override http request option.
|
|
19148
19150
|
* @throws {RequiredError}
|
|
19149
19151
|
*/
|
|
19150
|
-
integrationControllerRevokeMicrosoftToken: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19152
|
+
integrationControllerRevokeMicrosoftToken: async (integrationRevokePayload: IntegrationRevokePayload, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19153
|
+
// verify required parameter 'integrationRevokePayload' is not null or undefined
|
|
19154
|
+
assertParamExists('integrationControllerRevokeMicrosoftToken', 'integrationRevokePayload', integrationRevokePayload)
|
|
19151
19155
|
const localVarPath = `/v1/integration/microsoft/revoke/token`;
|
|
19152
19156
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
19153
19157
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -19166,9 +19170,12 @@ export const IntegrationApiAxiosParamCreator = function (configuration?: Configu
|
|
|
19166
19170
|
|
|
19167
19171
|
|
|
19168
19172
|
|
|
19173
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
19174
|
+
|
|
19169
19175
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
19170
19176
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
19171
19177
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
19178
|
+
localVarRequestOptions.data = serializeDataIfNeeded(integrationRevokePayload, localVarRequestOptions, configuration)
|
|
19172
19179
|
|
|
19173
19180
|
return {
|
|
19174
19181
|
url: toPathString(localVarUrlObj),
|
|
@@ -19222,22 +19229,24 @@ export const IntegrationApiFp = function(configuration?: Configuration) {
|
|
|
19222
19229
|
},
|
|
19223
19230
|
/**
|
|
19224
19231
|
*
|
|
19232
|
+
* @param {IntegrationRevokePayload} integrationRevokePayload
|
|
19225
19233
|
* @param {*} [options] Override http request option.
|
|
19226
19234
|
* @throws {RequiredError}
|
|
19227
19235
|
*/
|
|
19228
|
-
async integrationControllerRevokeGoogleToken(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationRevokeResponse>> {
|
|
19229
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationControllerRevokeGoogleToken(options);
|
|
19236
|
+
async integrationControllerRevokeGoogleToken(integrationRevokePayload: IntegrationRevokePayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationRevokeResponse>> {
|
|
19237
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationControllerRevokeGoogleToken(integrationRevokePayload, options);
|
|
19230
19238
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19231
19239
|
const localVarOperationServerBasePath = operationServerMap['IntegrationApi.integrationControllerRevokeGoogleToken']?.[localVarOperationServerIndex]?.url;
|
|
19232
19240
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
19233
19241
|
},
|
|
19234
19242
|
/**
|
|
19235
19243
|
*
|
|
19244
|
+
* @param {IntegrationRevokePayload} integrationRevokePayload
|
|
19236
19245
|
* @param {*} [options] Override http request option.
|
|
19237
19246
|
* @throws {RequiredError}
|
|
19238
19247
|
*/
|
|
19239
|
-
async integrationControllerRevokeMicrosoftToken(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationRevokeResponse>> {
|
|
19240
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationControllerRevokeMicrosoftToken(options);
|
|
19248
|
+
async integrationControllerRevokeMicrosoftToken(integrationRevokePayload: IntegrationRevokePayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IntegrationRevokeResponse>> {
|
|
19249
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.integrationControllerRevokeMicrosoftToken(integrationRevokePayload, options);
|
|
19241
19250
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19242
19251
|
const localVarOperationServerBasePath = operationServerMap['IntegrationApi.integrationControllerRevokeMicrosoftToken']?.[localVarOperationServerIndex]?.url;
|
|
19243
19252
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -19280,19 +19289,21 @@ export const IntegrationApiFactory = function (configuration?: Configuration, ba
|
|
|
19280
19289
|
},
|
|
19281
19290
|
/**
|
|
19282
19291
|
*
|
|
19292
|
+
* @param {IntegrationRevokePayload} integrationRevokePayload
|
|
19283
19293
|
* @param {*} [options] Override http request option.
|
|
19284
19294
|
* @throws {RequiredError}
|
|
19285
19295
|
*/
|
|
19286
|
-
integrationControllerRevokeGoogleToken(options?: RawAxiosRequestConfig): AxiosPromise<IntegrationRevokeResponse> {
|
|
19287
|
-
return localVarFp.integrationControllerRevokeGoogleToken(options).then((request) => request(axios, basePath));
|
|
19296
|
+
integrationControllerRevokeGoogleToken(integrationRevokePayload: IntegrationRevokePayload, options?: RawAxiosRequestConfig): AxiosPromise<IntegrationRevokeResponse> {
|
|
19297
|
+
return localVarFp.integrationControllerRevokeGoogleToken(integrationRevokePayload, options).then((request) => request(axios, basePath));
|
|
19288
19298
|
},
|
|
19289
19299
|
/**
|
|
19290
19300
|
*
|
|
19301
|
+
* @param {IntegrationRevokePayload} integrationRevokePayload
|
|
19291
19302
|
* @param {*} [options] Override http request option.
|
|
19292
19303
|
* @throws {RequiredError}
|
|
19293
19304
|
*/
|
|
19294
|
-
integrationControllerRevokeMicrosoftToken(options?: RawAxiosRequestConfig): AxiosPromise<IntegrationRevokeResponse> {
|
|
19295
|
-
return localVarFp.integrationControllerRevokeMicrosoftToken(options).then((request) => request(axios, basePath));
|
|
19305
|
+
integrationControllerRevokeMicrosoftToken(integrationRevokePayload: IntegrationRevokePayload, options?: RawAxiosRequestConfig): AxiosPromise<IntegrationRevokeResponse> {
|
|
19306
|
+
return localVarFp.integrationControllerRevokeMicrosoftToken(integrationRevokePayload, options).then((request) => request(axios, basePath));
|
|
19296
19307
|
},
|
|
19297
19308
|
};
|
|
19298
19309
|
};
|
|
@@ -19338,22 +19349,24 @@ export class IntegrationApi extends BaseAPI {
|
|
|
19338
19349
|
|
|
19339
19350
|
/**
|
|
19340
19351
|
*
|
|
19352
|
+
* @param {IntegrationRevokePayload} integrationRevokePayload
|
|
19341
19353
|
* @param {*} [options] Override http request option.
|
|
19342
19354
|
* @throws {RequiredError}
|
|
19343
19355
|
* @memberof IntegrationApi
|
|
19344
19356
|
*/
|
|
19345
|
-
public integrationControllerRevokeGoogleToken(options?: RawAxiosRequestConfig) {
|
|
19346
|
-
return IntegrationApiFp(this.configuration).integrationControllerRevokeGoogleToken(options).then((request) => request(this.axios, this.basePath));
|
|
19357
|
+
public integrationControllerRevokeGoogleToken(integrationRevokePayload: IntegrationRevokePayload, options?: RawAxiosRequestConfig) {
|
|
19358
|
+
return IntegrationApiFp(this.configuration).integrationControllerRevokeGoogleToken(integrationRevokePayload, options).then((request) => request(this.axios, this.basePath));
|
|
19347
19359
|
}
|
|
19348
19360
|
|
|
19349
19361
|
/**
|
|
19350
19362
|
*
|
|
19363
|
+
* @param {IntegrationRevokePayload} integrationRevokePayload
|
|
19351
19364
|
* @param {*} [options] Override http request option.
|
|
19352
19365
|
* @throws {RequiredError}
|
|
19353
19366
|
* @memberof IntegrationApi
|
|
19354
19367
|
*/
|
|
19355
|
-
public integrationControllerRevokeMicrosoftToken(options?: RawAxiosRequestConfig) {
|
|
19356
|
-
return IntegrationApiFp(this.configuration).integrationControllerRevokeMicrosoftToken(options).then((request) => request(this.axios, this.basePath));
|
|
19368
|
+
public integrationControllerRevokeMicrosoftToken(integrationRevokePayload: IntegrationRevokePayload, options?: RawAxiosRequestConfig) {
|
|
19369
|
+
return IntegrationApiFp(this.configuration).integrationControllerRevokeMicrosoftToken(integrationRevokePayload, options).then((request) => request(this.axios, this.basePath));
|
|
19357
19370
|
}
|
|
19358
19371
|
}
|
|
19359
19372
|
|
|
@@ -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-
|
|
10
|
-
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-08-01T09:16:05Z]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-08-01T09:16:05Z]
|
|
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]
|
package/docs/IntegrationApi.md
CHANGED
|
@@ -158,7 +158,7 @@ const { status, data } = await apiInstance.integrationControllerMicrosoftCalenda
|
|
|
158
158
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
159
159
|
|
|
160
160
|
# **integrationControllerRevokeGoogleToken**
|
|
161
|
-
> IntegrationRevokeResponse integrationControllerRevokeGoogleToken()
|
|
161
|
+
> IntegrationRevokeResponse integrationControllerRevokeGoogleToken(integrationRevokePayload)
|
|
162
162
|
|
|
163
163
|
|
|
164
164
|
### Example
|
|
@@ -166,17 +166,25 @@ const { status, data } = await apiInstance.integrationControllerMicrosoftCalenda
|
|
|
166
166
|
```typescript
|
|
167
167
|
import {
|
|
168
168
|
IntegrationApi,
|
|
169
|
-
Configuration
|
|
169
|
+
Configuration,
|
|
170
|
+
IntegrationRevokePayload
|
|
170
171
|
} from './api';
|
|
171
172
|
|
|
172
173
|
const configuration = new Configuration();
|
|
173
174
|
const apiInstance = new IntegrationApi(configuration);
|
|
174
175
|
|
|
175
|
-
|
|
176
|
+
let integrationRevokePayload: IntegrationRevokePayload; //
|
|
177
|
+
|
|
178
|
+
const { status, data } = await apiInstance.integrationControllerRevokeGoogleToken(
|
|
179
|
+
integrationRevokePayload
|
|
180
|
+
);
|
|
176
181
|
```
|
|
177
182
|
|
|
178
183
|
### Parameters
|
|
179
|
-
|
|
184
|
+
|
|
185
|
+
|Name | Type | Description | Notes|
|
|
186
|
+
|------------- | ------------- | ------------- | -------------|
|
|
187
|
+
| **integrationRevokePayload** | **IntegrationRevokePayload**| | |
|
|
180
188
|
|
|
181
189
|
|
|
182
190
|
### Return type
|
|
@@ -189,7 +197,7 @@ This endpoint does not have any parameters.
|
|
|
189
197
|
|
|
190
198
|
### HTTP request headers
|
|
191
199
|
|
|
192
|
-
- **Content-Type**:
|
|
200
|
+
- **Content-Type**: application/json
|
|
193
201
|
- **Accept**: application/json
|
|
194
202
|
|
|
195
203
|
|
|
@@ -201,7 +209,7 @@ This endpoint does not have any parameters.
|
|
|
201
209
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
202
210
|
|
|
203
211
|
# **integrationControllerRevokeMicrosoftToken**
|
|
204
|
-
> IntegrationRevokeResponse integrationControllerRevokeMicrosoftToken()
|
|
212
|
+
> IntegrationRevokeResponse integrationControllerRevokeMicrosoftToken(integrationRevokePayload)
|
|
205
213
|
|
|
206
214
|
|
|
207
215
|
### Example
|
|
@@ -209,17 +217,25 @@ This endpoint does not have any parameters.
|
|
|
209
217
|
```typescript
|
|
210
218
|
import {
|
|
211
219
|
IntegrationApi,
|
|
212
|
-
Configuration
|
|
220
|
+
Configuration,
|
|
221
|
+
IntegrationRevokePayload
|
|
213
222
|
} from './api';
|
|
214
223
|
|
|
215
224
|
const configuration = new Configuration();
|
|
216
225
|
const apiInstance = new IntegrationApi(configuration);
|
|
217
226
|
|
|
218
|
-
|
|
227
|
+
let integrationRevokePayload: IntegrationRevokePayload; //
|
|
228
|
+
|
|
229
|
+
const { status, data } = await apiInstance.integrationControllerRevokeMicrosoftToken(
|
|
230
|
+
integrationRevokePayload
|
|
231
|
+
);
|
|
219
232
|
```
|
|
220
233
|
|
|
221
234
|
### Parameters
|
|
222
|
-
|
|
235
|
+
|
|
236
|
+
|Name | Type | Description | Notes|
|
|
237
|
+
|------------- | ------------- | ------------- | -------------|
|
|
238
|
+
| **integrationRevokePayload** | **IntegrationRevokePayload**| | |
|
|
223
239
|
|
|
224
240
|
|
|
225
241
|
### Return type
|
|
@@ -232,7 +248,7 @@ This endpoint does not have any parameters.
|
|
|
232
248
|
|
|
233
249
|
### HTTP request headers
|
|
234
250
|
|
|
235
|
-
- **Content-Type**:
|
|
251
|
+
- **Content-Type**: application/json
|
|
236
252
|
- **Accept**: application/json
|
|
237
253
|
|
|
238
254
|
|
|
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**expiryTime** | **number** | Expiry time of token | [default to undefined]
|
|
11
11
|
**refreshToken** | **string** | refreshToken | [default to undefined]
|
|
12
12
|
**token** | **string** | Token | [default to undefined]
|
|
13
|
+
**email** | **string** | Email | [default to undefined]
|
|
13
14
|
**integrationType** | **string** | Unique identifier for the user | [default to undefined]
|
|
14
15
|
|
|
15
16
|
## Example
|
|
@@ -23,6 +24,7 @@ const instance: IntegrationEntity = {
|
|
|
23
24
|
expiryTime,
|
|
24
25
|
refreshToken,
|
|
25
26
|
token,
|
|
27
|
+
email,
|
|
26
28
|
integrationType,
|
|
27
29
|
};
|
|
28
30
|
```
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# IntegrationRevokePayload
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { IntegrationRevokePayload } from './api';
|
|
14
|
+
|
|
15
|
+
const instance: IntegrationRevokePayload = {
|
|
16
|
+
id,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/OnBoardingDTO.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**firstName** | **string** | The first name of the user | [default to undefined]
|
|
9
|
-
**lastName** | **string** | The last name of the user | [default to undefined]
|
|
8
|
+
**firstName** | **string** | The first name of the user | [optional] [default to undefined]
|
|
9
|
+
**lastName** | **string** | The last name of the user | [optional] [default to undefined]
|
|
10
10
|
**mobileNumber** | **string** | Contact Number For User | [optional] [default to undefined]
|
|
11
11
|
**gender** | **string** | User gender | [optional] [default to undefined]
|
|
12
12
|
**nickname** | **string** | nickname | [optional] [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-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-08-01T09:16:05Z]
|
|
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,15 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**locationAccessPermission** | **boolean** | Specifies if the user has granted location access permission. | [optional] [default to
|
|
9
|
-
**deviceTimezone** | **boolean** | Specifies if the user has granted access to the device timezone. | [optional] [default to
|
|
10
|
-
**timezone** | **boolean** | Specifies if the user has granted permission for timezone settings. | [optional] [default to
|
|
11
|
-
**
|
|
12
|
-
**
|
|
13
|
-
**reminders** | **boolean** | Specifies if the user has granted access to reminders. | [optional] [default to true]
|
|
14
|
-
**waitlist** | **boolean** | Specifies if the user has granted access to the waitlist feature. | [optional] [default to true]
|
|
15
|
-
**booking** | **boolean** | Specifies if the user has granted access to the booking feature. | [optional] [default to true]
|
|
16
|
-
**invites** | **boolean** | Specifies if the user has granted access to the invites feature. | [optional] [default to true]
|
|
8
|
+
**locationAccessPermission** | **boolean** | Specifies if the user has granted location access permission. | [optional] [default to undefined]
|
|
9
|
+
**deviceTimezone** | **boolean** | Specifies if the user has granted access to the device timezone. | [optional] [default to undefined]
|
|
10
|
+
**timezone** | **boolean** | Specifies if the user has granted permission for timezone settings. | [optional] [default to undefined]
|
|
11
|
+
**contacts** | **boolean** | Specifies if the user has granted access to tasks. | [optional] [default to undefined]
|
|
12
|
+
**reminders** | **boolean** | Specifies if the user has granted access to reminders. | [optional] [default to undefined]
|
|
17
13
|
|
|
18
14
|
## Example
|
|
19
15
|
|
|
@@ -24,12 +20,8 @@ const instance: UserPermissionDTO = {
|
|
|
24
20
|
locationAccessPermission,
|
|
25
21
|
deviceTimezone,
|
|
26
22
|
timezone,
|
|
27
|
-
|
|
28
|
-
tasks,
|
|
23
|
+
contacts,
|
|
29
24
|
reminders,
|
|
30
|
-
waitlist,
|
|
31
|
-
booking,
|
|
32
|
-
invites,
|
|
33
25
|
};
|
|
34
26
|
```
|
|
35
27
|
|
|
@@ -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-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2025-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2025-08-01T09:16:05Z]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-08-01T10:16:05Z]
|
|
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]
|