@gooday_corp/gooday-api-client 1.2.49 → 1.2.50
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 +90 -149
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -488,6 +488,12 @@ export interface BookingEntity {
|
|
|
488
488
|
* @memberof BookingEntity
|
|
489
489
|
*/
|
|
490
490
|
'collaborators': Array<object>;
|
|
491
|
+
/**
|
|
492
|
+
* List of customers in the booking
|
|
493
|
+
* @type {Array<CustomerEntity>}
|
|
494
|
+
* @memberof BookingEntity
|
|
495
|
+
*/
|
|
496
|
+
'customers': Array<CustomerEntity>;
|
|
491
497
|
/**
|
|
492
498
|
* Users associated with the booking
|
|
493
499
|
* @type {Array<string>}
|
|
@@ -2200,6 +2206,12 @@ export interface CreateBookingPayload {
|
|
|
2200
2206
|
* @memberof CreateBookingPayload
|
|
2201
2207
|
*/
|
|
2202
2208
|
'collaborators': Array<CreateBookingCollaboratorPayload>;
|
|
2209
|
+
/**
|
|
2210
|
+
* The list of customers associated with the booking
|
|
2211
|
+
* @type {Array<string>}
|
|
2212
|
+
* @memberof CreateBookingPayload
|
|
2213
|
+
*/
|
|
2214
|
+
'customers': Array<string>;
|
|
2203
2215
|
/**
|
|
2204
2216
|
* Booking method
|
|
2205
2217
|
* @type {string}
|
|
@@ -7673,45 +7685,6 @@ export const BookingApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
7673
7685
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
7674
7686
|
localVarRequestOptions.data = serializeDataIfNeeded(rejectBookingInvitePayload, localVarRequestOptions, configuration)
|
|
7675
7687
|
|
|
7676
|
-
return {
|
|
7677
|
-
url: toPathString(localVarUrlObj),
|
|
7678
|
-
options: localVarRequestOptions,
|
|
7679
|
-
};
|
|
7680
|
-
},
|
|
7681
|
-
/**
|
|
7682
|
-
*
|
|
7683
|
-
* @param {CreateBookingPayload} createBookingPayload
|
|
7684
|
-
* @param {*} [options] Override http request option.
|
|
7685
|
-
* @throws {RequiredError}
|
|
7686
|
-
*/
|
|
7687
|
-
bookingVersion2ControllerCreateBooking: async (createBookingPayload: CreateBookingPayload, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7688
|
-
// verify required parameter 'createBookingPayload' is not null or undefined
|
|
7689
|
-
assertParamExists('bookingVersion2ControllerCreateBooking', 'createBookingPayload', createBookingPayload)
|
|
7690
|
-
const localVarPath = `/v2/booking`;
|
|
7691
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7692
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7693
|
-
let baseOptions;
|
|
7694
|
-
if (configuration) {
|
|
7695
|
-
baseOptions = configuration.baseOptions;
|
|
7696
|
-
}
|
|
7697
|
-
|
|
7698
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
7699
|
-
const localVarHeaderParameter = {} as any;
|
|
7700
|
-
const localVarQueryParameter = {} as any;
|
|
7701
|
-
|
|
7702
|
-
// authentication bearer required
|
|
7703
|
-
// http bearer authentication required
|
|
7704
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
7705
|
-
|
|
7706
|
-
|
|
7707
|
-
|
|
7708
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7709
|
-
|
|
7710
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7711
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7712
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
7713
|
-
localVarRequestOptions.data = serializeDataIfNeeded(createBookingPayload, localVarRequestOptions, configuration)
|
|
7714
|
-
|
|
7715
7688
|
return {
|
|
7716
7689
|
url: toPathString(localVarUrlObj),
|
|
7717
7690
|
options: localVarRequestOptions,
|
|
@@ -7811,18 +7784,6 @@ export const BookingApiFp = function(configuration?: Configuration) {
|
|
|
7811
7784
|
const localVarOperationServerBasePath = operationServerMap['BookingApi.bookingControllerRejectBookingInvite']?.[localVarOperationServerIndex]?.url;
|
|
7812
7785
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
7813
7786
|
},
|
|
7814
|
-
/**
|
|
7815
|
-
*
|
|
7816
|
-
* @param {CreateBookingPayload} createBookingPayload
|
|
7817
|
-
* @param {*} [options] Override http request option.
|
|
7818
|
-
* @throws {RequiredError}
|
|
7819
|
-
*/
|
|
7820
|
-
async bookingVersion2ControllerCreateBooking(createBookingPayload: CreateBookingPayload, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingResponseDTO>> {
|
|
7821
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.bookingVersion2ControllerCreateBooking(createBookingPayload, options);
|
|
7822
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7823
|
-
const localVarOperationServerBasePath = operationServerMap['BookingApi.bookingVersion2ControllerCreateBooking']?.[localVarOperationServerIndex]?.url;
|
|
7824
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
7825
|
-
},
|
|
7826
7787
|
}
|
|
7827
7788
|
};
|
|
7828
7789
|
|
|
@@ -7896,15 +7857,6 @@ export const BookingApiFactory = function (configuration?: Configuration, basePa
|
|
|
7896
7857
|
bookingControllerRejectBookingInvite(rejectBookingInvitePayload: RejectBookingInvitePayload, options?: RawAxiosRequestConfig): AxiosPromise<BookingRequestResponseDTO> {
|
|
7897
7858
|
return localVarFp.bookingControllerRejectBookingInvite(rejectBookingInvitePayload, options).then((request) => request(axios, basePath));
|
|
7898
7859
|
},
|
|
7899
|
-
/**
|
|
7900
|
-
*
|
|
7901
|
-
* @param {CreateBookingPayload} createBookingPayload
|
|
7902
|
-
* @param {*} [options] Override http request option.
|
|
7903
|
-
* @throws {RequiredError}
|
|
7904
|
-
*/
|
|
7905
|
-
bookingVersion2ControllerCreateBooking(createBookingPayload: CreateBookingPayload, options?: RawAxiosRequestConfig): AxiosPromise<BookingResponseDTO> {
|
|
7906
|
-
return localVarFp.bookingVersion2ControllerCreateBooking(createBookingPayload, options).then((request) => request(axios, basePath));
|
|
7907
|
-
},
|
|
7908
7860
|
};
|
|
7909
7861
|
};
|
|
7910
7862
|
|
|
@@ -7991,17 +7943,6 @@ export class BookingApi extends BaseAPI {
|
|
|
7991
7943
|
public bookingControllerRejectBookingInvite(rejectBookingInvitePayload: RejectBookingInvitePayload, options?: RawAxiosRequestConfig) {
|
|
7992
7944
|
return BookingApiFp(this.configuration).bookingControllerRejectBookingInvite(rejectBookingInvitePayload, options).then((request) => request(this.axios, this.basePath));
|
|
7993
7945
|
}
|
|
7994
|
-
|
|
7995
|
-
/**
|
|
7996
|
-
*
|
|
7997
|
-
* @param {CreateBookingPayload} createBookingPayload
|
|
7998
|
-
* @param {*} [options] Override http request option.
|
|
7999
|
-
* @throws {RequiredError}
|
|
8000
|
-
* @memberof BookingApi
|
|
8001
|
-
*/
|
|
8002
|
-
public bookingVersion2ControllerCreateBooking(createBookingPayload: CreateBookingPayload, options?: RawAxiosRequestConfig) {
|
|
8003
|
-
return BookingApiFp(this.configuration).bookingVersion2ControllerCreateBooking(createBookingPayload, options).then((request) => request(this.axios, this.basePath));
|
|
8004
|
-
}
|
|
8005
7946
|
}
|
|
8006
7947
|
|
|
8007
7948
|
|
|
@@ -14564,43 +14505,6 @@ export const TodoApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
14564
14505
|
options: localVarRequestOptions,
|
|
14565
14506
|
};
|
|
14566
14507
|
},
|
|
14567
|
-
/**
|
|
14568
|
-
*
|
|
14569
|
-
* @param {string} id
|
|
14570
|
-
* @param {*} [options] Override http request option.
|
|
14571
|
-
* @throws {RequiredError}
|
|
14572
|
-
*/
|
|
14573
|
-
todoControllerDeleteTask: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14574
|
-
// verify required parameter 'id' is not null or undefined
|
|
14575
|
-
assertParamExists('todoControllerDeleteTask', 'id', id)
|
|
14576
|
-
const localVarPath = `/v1/todo/remove/task/{id}`
|
|
14577
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
14578
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14579
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14580
|
-
let baseOptions;
|
|
14581
|
-
if (configuration) {
|
|
14582
|
-
baseOptions = configuration.baseOptions;
|
|
14583
|
-
}
|
|
14584
|
-
|
|
14585
|
-
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
14586
|
-
const localVarHeaderParameter = {} as any;
|
|
14587
|
-
const localVarQueryParameter = {} as any;
|
|
14588
|
-
|
|
14589
|
-
// authentication bearer required
|
|
14590
|
-
// http bearer authentication required
|
|
14591
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
14592
|
-
|
|
14593
|
-
|
|
14594
|
-
|
|
14595
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
14596
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
14597
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
14598
|
-
|
|
14599
|
-
return {
|
|
14600
|
-
url: toPathString(localVarUrlObj),
|
|
14601
|
-
options: localVarRequestOptions,
|
|
14602
|
-
};
|
|
14603
|
-
},
|
|
14604
14508
|
/**
|
|
14605
14509
|
*
|
|
14606
14510
|
* @param {string} id
|
|
@@ -14825,9 +14729,9 @@ export const TodoApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
14825
14729
|
* @param {*} [options] Override http request option.
|
|
14826
14730
|
* @throws {RequiredError}
|
|
14827
14731
|
*/
|
|
14828
|
-
|
|
14732
|
+
todoControllerPermanentDeleteTask: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14829
14733
|
// verify required parameter 'id' is not null or undefined
|
|
14830
|
-
assertParamExists('
|
|
14734
|
+
assertParamExists('todoControllerPermanentDeleteTask', 'id', id)
|
|
14831
14735
|
const localVarPath = `/v1/todo/task/{id}`
|
|
14832
14736
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
14833
14737
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -14880,6 +14784,43 @@ export const TodoApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
14880
14784
|
|
|
14881
14785
|
|
|
14882
14786
|
|
|
14787
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
14788
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
14789
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
14790
|
+
|
|
14791
|
+
return {
|
|
14792
|
+
url: toPathString(localVarUrlObj),
|
|
14793
|
+
options: localVarRequestOptions,
|
|
14794
|
+
};
|
|
14795
|
+
},
|
|
14796
|
+
/**
|
|
14797
|
+
*
|
|
14798
|
+
* @param {string} id
|
|
14799
|
+
* @param {*} [options] Override http request option.
|
|
14800
|
+
* @throws {RequiredError}
|
|
14801
|
+
*/
|
|
14802
|
+
todoControllerRemoveTask: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14803
|
+
// verify required parameter 'id' is not null or undefined
|
|
14804
|
+
assertParamExists('todoControllerRemoveTask', 'id', id)
|
|
14805
|
+
const localVarPath = `/v1/todo/remove/task/{id}`
|
|
14806
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
14807
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14808
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14809
|
+
let baseOptions;
|
|
14810
|
+
if (configuration) {
|
|
14811
|
+
baseOptions = configuration.baseOptions;
|
|
14812
|
+
}
|
|
14813
|
+
|
|
14814
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
14815
|
+
const localVarHeaderParameter = {} as any;
|
|
14816
|
+
const localVarQueryParameter = {} as any;
|
|
14817
|
+
|
|
14818
|
+
// authentication bearer required
|
|
14819
|
+
// http bearer authentication required
|
|
14820
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
14821
|
+
|
|
14822
|
+
|
|
14823
|
+
|
|
14883
14824
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
14884
14825
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
14885
14826
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -15149,18 +15090,6 @@ export const TodoApiFp = function(configuration?: Configuration) {
|
|
|
15149
15090
|
const localVarOperationServerBasePath = operationServerMap['TodoApi.todoControllerCreateTodo']?.[localVarOperationServerIndex]?.url;
|
|
15150
15091
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15151
15092
|
},
|
|
15152
|
-
/**
|
|
15153
|
-
*
|
|
15154
|
-
* @param {string} id
|
|
15155
|
-
* @param {*} [options] Override http request option.
|
|
15156
|
-
* @throws {RequiredError}
|
|
15157
|
-
*/
|
|
15158
|
-
async todoControllerDeleteTask(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
15159
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.todoControllerDeleteTask(id, options);
|
|
15160
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15161
|
-
const localVarOperationServerBasePath = operationServerMap['TodoApi.todoControllerDeleteTask']?.[localVarOperationServerIndex]?.url;
|
|
15162
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15163
|
-
},
|
|
15164
15093
|
/**
|
|
15165
15094
|
*
|
|
15166
15095
|
* @param {string} id
|
|
@@ -15237,10 +15166,10 @@ export const TodoApiFp = function(configuration?: Configuration) {
|
|
|
15237
15166
|
* @param {*} [options] Override http request option.
|
|
15238
15167
|
* @throws {RequiredError}
|
|
15239
15168
|
*/
|
|
15240
|
-
async
|
|
15241
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
15169
|
+
async todoControllerPermanentDeleteTask(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
15170
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.todoControllerPermanentDeleteTask(id, options);
|
|
15242
15171
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15243
|
-
const localVarOperationServerBasePath = operationServerMap['TodoApi.
|
|
15172
|
+
const localVarOperationServerBasePath = operationServerMap['TodoApi.todoControllerPermanentDeleteTask']?.[localVarOperationServerIndex]?.url;
|
|
15244
15173
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15245
15174
|
},
|
|
15246
15175
|
/**
|
|
@@ -15255,6 +15184,18 @@ export const TodoApiFp = function(configuration?: Configuration) {
|
|
|
15255
15184
|
const localVarOperationServerBasePath = operationServerMap['TodoApi.todoControllerRejectTodo']?.[localVarOperationServerIndex]?.url;
|
|
15256
15185
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15257
15186
|
},
|
|
15187
|
+
/**
|
|
15188
|
+
*
|
|
15189
|
+
* @param {string} id
|
|
15190
|
+
* @param {*} [options] Override http request option.
|
|
15191
|
+
* @throws {RequiredError}
|
|
15192
|
+
*/
|
|
15193
|
+
async todoControllerRemoveTask(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
15194
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.todoControllerRemoveTask(id, options);
|
|
15195
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15196
|
+
const localVarOperationServerBasePath = operationServerMap['TodoApi.todoControllerRemoveTask']?.[localVarOperationServerIndex]?.url;
|
|
15197
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15198
|
+
},
|
|
15258
15199
|
/**
|
|
15259
15200
|
*
|
|
15260
15201
|
* @param {TaskListReorderPayloadDTO} taskListReorderPayloadDTO
|
|
@@ -15364,15 +15305,6 @@ export const TodoApiFactory = function (configuration?: Configuration, basePath?
|
|
|
15364
15305
|
todoControllerCreateTodo(createTodoPayload: CreateTodoPayload, options?: RawAxiosRequestConfig): AxiosPromise<TodoDetailResponseDTO> {
|
|
15365
15306
|
return localVarFp.todoControllerCreateTodo(createTodoPayload, options).then((request) => request(axios, basePath));
|
|
15366
15307
|
},
|
|
15367
|
-
/**
|
|
15368
|
-
*
|
|
15369
|
-
* @param {string} id
|
|
15370
|
-
* @param {*} [options] Override http request option.
|
|
15371
|
-
* @throws {RequiredError}
|
|
15372
|
-
*/
|
|
15373
|
-
todoControllerDeleteTask(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
15374
|
-
return localVarFp.todoControllerDeleteTask(id, options).then((request) => request(axios, basePath));
|
|
15375
|
-
},
|
|
15376
15308
|
/**
|
|
15377
15309
|
*
|
|
15378
15310
|
* @param {string} id
|
|
@@ -15431,8 +15363,8 @@ export const TodoApiFactory = function (configuration?: Configuration, basePath?
|
|
|
15431
15363
|
* @param {*} [options] Override http request option.
|
|
15432
15364
|
* @throws {RequiredError}
|
|
15433
15365
|
*/
|
|
15434
|
-
|
|
15435
|
-
return localVarFp.
|
|
15366
|
+
todoControllerPermanentDeleteTask(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
15367
|
+
return localVarFp.todoControllerPermanentDeleteTask(id, options).then((request) => request(axios, basePath));
|
|
15436
15368
|
},
|
|
15437
15369
|
/**
|
|
15438
15370
|
*
|
|
@@ -15443,6 +15375,15 @@ export const TodoApiFactory = function (configuration?: Configuration, basePath?
|
|
|
15443
15375
|
todoControllerRejectTodo(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
15444
15376
|
return localVarFp.todoControllerRejectTodo(id, options).then((request) => request(axios, basePath));
|
|
15445
15377
|
},
|
|
15378
|
+
/**
|
|
15379
|
+
*
|
|
15380
|
+
* @param {string} id
|
|
15381
|
+
* @param {*} [options] Override http request option.
|
|
15382
|
+
* @throws {RequiredError}
|
|
15383
|
+
*/
|
|
15384
|
+
todoControllerRemoveTask(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
15385
|
+
return localVarFp.todoControllerRemoveTask(id, options).then((request) => request(axios, basePath));
|
|
15386
|
+
},
|
|
15446
15387
|
/**
|
|
15447
15388
|
*
|
|
15448
15389
|
* @param {TaskListReorderPayloadDTO} taskListReorderPayloadDTO
|
|
@@ -15545,17 +15486,6 @@ export class TodoApi extends BaseAPI {
|
|
|
15545
15486
|
return TodoApiFp(this.configuration).todoControllerCreateTodo(createTodoPayload, options).then((request) => request(this.axios, this.basePath));
|
|
15546
15487
|
}
|
|
15547
15488
|
|
|
15548
|
-
/**
|
|
15549
|
-
*
|
|
15550
|
-
* @param {string} id
|
|
15551
|
-
* @param {*} [options] Override http request option.
|
|
15552
|
-
* @throws {RequiredError}
|
|
15553
|
-
* @memberof TodoApi
|
|
15554
|
-
*/
|
|
15555
|
-
public todoControllerDeleteTask(id: string, options?: RawAxiosRequestConfig) {
|
|
15556
|
-
return TodoApiFp(this.configuration).todoControllerDeleteTask(id, options).then((request) => request(this.axios, this.basePath));
|
|
15557
|
-
}
|
|
15558
|
-
|
|
15559
15489
|
/**
|
|
15560
15490
|
*
|
|
15561
15491
|
* @param {string} id
|
|
@@ -15627,8 +15557,8 @@ export class TodoApi extends BaseAPI {
|
|
|
15627
15557
|
* @throws {RequiredError}
|
|
15628
15558
|
* @memberof TodoApi
|
|
15629
15559
|
*/
|
|
15630
|
-
public
|
|
15631
|
-
return TodoApiFp(this.configuration).
|
|
15560
|
+
public todoControllerPermanentDeleteTask(id: string, options?: RawAxiosRequestConfig) {
|
|
15561
|
+
return TodoApiFp(this.configuration).todoControllerPermanentDeleteTask(id, options).then((request) => request(this.axios, this.basePath));
|
|
15632
15562
|
}
|
|
15633
15563
|
|
|
15634
15564
|
/**
|
|
@@ -15642,6 +15572,17 @@ export class TodoApi extends BaseAPI {
|
|
|
15642
15572
|
return TodoApiFp(this.configuration).todoControllerRejectTodo(id, options).then((request) => request(this.axios, this.basePath));
|
|
15643
15573
|
}
|
|
15644
15574
|
|
|
15575
|
+
/**
|
|
15576
|
+
*
|
|
15577
|
+
* @param {string} id
|
|
15578
|
+
* @param {*} [options] Override http request option.
|
|
15579
|
+
* @throws {RequiredError}
|
|
15580
|
+
* @memberof TodoApi
|
|
15581
|
+
*/
|
|
15582
|
+
public todoControllerRemoveTask(id: string, options?: RawAxiosRequestConfig) {
|
|
15583
|
+
return TodoApiFp(this.configuration).todoControllerRemoveTask(id, options).then((request) => request(this.axios, this.basePath));
|
|
15584
|
+
}
|
|
15585
|
+
|
|
15645
15586
|
/**
|
|
15646
15587
|
*
|
|
15647
15588
|
* @param {TaskListReorderPayloadDTO} taskListReorderPayloadDTO
|