@emilgroup/task-sdk-node 1.0.1-beta.1 → 1.0.1-beta.3
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 +0 -5
- package/README.md +2 -2
- package/api/categories-api.ts +44 -30
- package/api/statuses-api.ts +40 -26
- package/api/tasks-api.ts +48 -34
- package/api.ts +0 -2
- package/dist/api/categories-api.d.ts +36 -27
- package/dist/api/categories-api.js +33 -27
- package/dist/api/statuses-api.d.ts +32 -23
- package/dist/api/statuses-api.js +29 -23
- package/dist/api/tasks-api.d.ts +40 -31
- package/dist/api/tasks-api.js +36 -30
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/models/category-class.d.ts +6 -0
- package/dist/models/create-category-request-dto.d.ts +7 -1
- package/dist/models/create-status-request-dto.d.ts +7 -1
- package/dist/models/create-task-request-dto.d.ts +31 -13
- package/dist/models/create-task-request-dto.js +6 -0
- package/dist/models/index.d.ts +0 -4
- package/dist/models/index.js +0 -4
- package/dist/models/status-class.d.ts +6 -0
- package/dist/models/task-class.d.ts +22 -5
- package/dist/models/task-class.js +6 -0
- package/dist/models/update-category-request-dto.d.ts +8 -2
- package/dist/models/update-status-request-dto.d.ts +8 -2
- package/dist/models/update-task-request-dto.d.ts +26 -14
- package/models/category-class.ts +6 -0
- package/models/create-category-request-dto.ts +7 -1
- package/models/create-status-request-dto.ts +7 -1
- package/models/create-task-request-dto.ts +34 -13
- package/models/index.ts +0 -4
- package/models/status-class.ts +6 -0
- package/models/task-class.ts +25 -5
- package/models/update-category-request-dto.ts +8 -2
- package/models/update-status-request-dto.ts +8 -2
- package/models/update-task-request-dto.ts +26 -14
- package/package.json +1 -1
- package/api/priorities-api.ts +0 -288
- package/dist/api/priorities-api.d.ts +0 -162
- package/dist/api/priorities-api.js +0 -328
- package/dist/models/create-priority-request-dto.d.ts +0 -24
- package/dist/models/create-priority-request-dto.js +0 -15
- package/dist/models/create-priority-response-class.d.ts +0 -25
- package/dist/models/create-priority-response-class.js +0 -15
- package/dist/models/get-priority-response-class.d.ts +0 -25
- package/dist/models/get-priority-response-class.js +0 -15
- package/dist/models/priority-class.d.ts +0 -60
- package/dist/models/priority-class.js +0 -15
- package/models/create-priority-request-dto.ts +0 -30
- package/models/create-priority-response-class.ts +0 -31
- package/models/get-priority-response-class.ts +0 -31
- package/models/priority-class.ts +0 -66
package/.openapi-generator/FILES
CHANGED
|
@@ -6,7 +6,6 @@ api.ts
|
|
|
6
6
|
api/categories-api.ts
|
|
7
7
|
api/default-api.ts
|
|
8
8
|
api/hub-spot-api.ts
|
|
9
|
-
api/priorities-api.ts
|
|
10
9
|
api/statuses-api.ts
|
|
11
10
|
api/tasks-api.ts
|
|
12
11
|
base.ts
|
|
@@ -19,14 +18,11 @@ models/create-category-request-dto.ts
|
|
|
19
18
|
models/create-category-response-class.ts
|
|
20
19
|
models/create-hub-spot-ticket-request-dto.ts
|
|
21
20
|
models/create-hub-spot-ticket-response-class.ts
|
|
22
|
-
models/create-priority-request-dto.ts
|
|
23
|
-
models/create-priority-response-class.ts
|
|
24
21
|
models/create-status-request-dto.ts
|
|
25
22
|
models/create-status-response-class.ts
|
|
26
23
|
models/create-task-request-dto.ts
|
|
27
24
|
models/create-task-response-class.ts
|
|
28
25
|
models/get-category-response-class.ts
|
|
29
|
-
models/get-priority-response-class.ts
|
|
30
26
|
models/get-status-response-class.ts
|
|
31
27
|
models/get-task-response-class.ts
|
|
32
28
|
models/hub-spot-ticket-class.ts
|
|
@@ -38,7 +34,6 @@ models/inline-response503.ts
|
|
|
38
34
|
models/list-categories-response-class.ts
|
|
39
35
|
models/list-statuses-response-class.ts
|
|
40
36
|
models/list-tasks-response-class.ts
|
|
41
|
-
models/priority-class.ts
|
|
42
37
|
models/status-class.ts
|
|
43
38
|
models/task-class.ts
|
|
44
39
|
models/update-category-request-dto.ts
|
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/task-sdk-node@1.0.1-beta.
|
|
20
|
+
npm install @emilgroup/task-sdk-node@1.0.1-beta.3 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/task-sdk-node@1.0.1-beta.
|
|
24
|
+
yarn add @emilgroup/task-sdk-node@1.0.1-beta.3
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `TasksApi`.
|
package/api/categories-api.ts
CHANGED
|
@@ -43,7 +43,7 @@ const FormData = require('form-data');
|
|
|
43
43
|
export const CategoriesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
44
44
|
return {
|
|
45
45
|
/**
|
|
46
|
-
* This will create category.
|
|
46
|
+
* This will create a category.
|
|
47
47
|
* @summary Create the category
|
|
48
48
|
* @param {CreateCategoryRequestDto} createCategoryRequestDto
|
|
49
49
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -90,7 +90,7 @@ export const CategoriesApiAxiosParamCreator = function (configuration?: Configur
|
|
|
90
90
|
};
|
|
91
91
|
},
|
|
92
92
|
/**
|
|
93
|
-
* This will delete category.
|
|
93
|
+
* This will delete a task category by code.
|
|
94
94
|
* @summary Delete the category
|
|
95
95
|
* @param {string} code Unique identifier for the object.
|
|
96
96
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -135,7 +135,7 @@ export const CategoriesApiAxiosParamCreator = function (configuration?: Configur
|
|
|
135
135
|
};
|
|
136
136
|
},
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* Get category by code.
|
|
139
139
|
* @summary Retrieve the category
|
|
140
140
|
* @param {string} code
|
|
141
141
|
* @param {string} expand
|
|
@@ -190,14 +190,15 @@ export const CategoriesApiAxiosParamCreator = function (configuration?: Configur
|
|
|
190
190
|
* Retrieves a list of categories.
|
|
191
191
|
* @summary List categories
|
|
192
192
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
193
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
194
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
195
|
-
* @param {string} [
|
|
193
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
194
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
195
|
+
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i>
|
|
196
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i>
|
|
196
197
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
197
198
|
* @param {*} [options] Override http request option.
|
|
198
199
|
* @throws {RequiredError}
|
|
199
200
|
*/
|
|
200
|
-
listCategories: async (authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
201
|
+
listCategories: async (authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
201
202
|
const localVarPath = `/taskservice/v1/categories`;
|
|
202
203
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
203
204
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -224,6 +225,10 @@ export const CategoriesApiAxiosParamCreator = function (configuration?: Configur
|
|
|
224
225
|
localVarQueryParameter['filters'] = filters;
|
|
225
226
|
}
|
|
226
227
|
|
|
228
|
+
if (search !== undefined) {
|
|
229
|
+
localVarQueryParameter['search'] = search;
|
|
230
|
+
}
|
|
231
|
+
|
|
227
232
|
if (order !== undefined) {
|
|
228
233
|
localVarQueryParameter['order'] = order;
|
|
229
234
|
}
|
|
@@ -309,7 +314,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
|
|
|
309
314
|
const localVarAxiosParamCreator = CategoriesApiAxiosParamCreator(configuration)
|
|
310
315
|
return {
|
|
311
316
|
/**
|
|
312
|
-
* This will create category.
|
|
317
|
+
* This will create a category.
|
|
313
318
|
* @summary Create the category
|
|
314
319
|
* @param {CreateCategoryRequestDto} createCategoryRequestDto
|
|
315
320
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -321,7 +326,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
|
|
|
321
326
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
322
327
|
},
|
|
323
328
|
/**
|
|
324
|
-
* This will delete category.
|
|
329
|
+
* This will delete a task category by code.
|
|
325
330
|
* @summary Delete the category
|
|
326
331
|
* @param {string} code Unique identifier for the object.
|
|
327
332
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -333,7 +338,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
|
|
|
333
338
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
334
339
|
},
|
|
335
340
|
/**
|
|
336
|
-
*
|
|
341
|
+
* Get category by code.
|
|
337
342
|
* @summary Retrieve the category
|
|
338
343
|
* @param {string} code
|
|
339
344
|
* @param {string} expand
|
|
@@ -349,15 +354,16 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
|
|
|
349
354
|
* Retrieves a list of categories.
|
|
350
355
|
* @summary List categories
|
|
351
356
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
352
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
353
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
354
|
-
* @param {string} [
|
|
357
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
358
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
359
|
+
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i>
|
|
360
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i>
|
|
355
361
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
356
362
|
* @param {*} [options] Override http request option.
|
|
357
363
|
* @throws {RequiredError}
|
|
358
364
|
*/
|
|
359
|
-
async listCategories(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCategoriesResponseClass>> {
|
|
360
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listCategories(authorization, filter, filters, order, expand, options);
|
|
365
|
+
async listCategories(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCategoriesResponseClass>> {
|
|
366
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listCategories(authorization, filter, filters, search, order, expand, options);
|
|
361
367
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
362
368
|
},
|
|
363
369
|
/**
|
|
@@ -384,7 +390,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
|
|
|
384
390
|
const localVarFp = CategoriesApiFp(configuration)
|
|
385
391
|
return {
|
|
386
392
|
/**
|
|
387
|
-
* This will create category.
|
|
393
|
+
* This will create a category.
|
|
388
394
|
* @summary Create the category
|
|
389
395
|
* @param {CreateCategoryRequestDto} createCategoryRequestDto
|
|
390
396
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -395,7 +401,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
|
|
|
395
401
|
return localVarFp.createCategory(createCategoryRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
396
402
|
},
|
|
397
403
|
/**
|
|
398
|
-
* This will delete category.
|
|
404
|
+
* This will delete a task category by code.
|
|
399
405
|
* @summary Delete the category
|
|
400
406
|
* @param {string} code Unique identifier for the object.
|
|
401
407
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -406,7 +412,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
|
|
|
406
412
|
return localVarFp.deleteCategory(code, authorization, options).then((request) => request(axios, basePath));
|
|
407
413
|
},
|
|
408
414
|
/**
|
|
409
|
-
*
|
|
415
|
+
* Get category by code.
|
|
410
416
|
* @summary Retrieve the category
|
|
411
417
|
* @param {string} code
|
|
412
418
|
* @param {string} expand
|
|
@@ -421,15 +427,16 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
|
|
|
421
427
|
* Retrieves a list of categories.
|
|
422
428
|
* @summary List categories
|
|
423
429
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
424
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
425
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
426
|
-
* @param {string} [
|
|
430
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
431
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
432
|
+
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i>
|
|
433
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i>
|
|
427
434
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
428
435
|
* @param {*} [options] Override http request option.
|
|
429
436
|
* @throws {RequiredError}
|
|
430
437
|
*/
|
|
431
|
-
listCategories(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListCategoriesResponseClass> {
|
|
432
|
-
return localVarFp.listCategories(authorization, filter, filters, order, expand, options).then((request) => request(axios, basePath));
|
|
438
|
+
listCategories(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListCategoriesResponseClass> {
|
|
439
|
+
return localVarFp.listCategories(authorization, filter, filters, search, order, expand, options).then((request) => request(axios, basePath));
|
|
433
440
|
},
|
|
434
441
|
/**
|
|
435
442
|
* This will update category.
|
|
@@ -530,21 +537,28 @@ export interface CategoriesApiListCategoriesRequest {
|
|
|
530
537
|
readonly authorization?: string
|
|
531
538
|
|
|
532
539
|
/**
|
|
533
|
-
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
540
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
534
541
|
* @type {string}
|
|
535
542
|
* @memberof CategoriesApiListCategories
|
|
536
543
|
*/
|
|
537
544
|
readonly filter?: string
|
|
538
545
|
|
|
539
546
|
/**
|
|
540
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
547
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
541
548
|
* @type {string}
|
|
542
549
|
* @memberof CategoriesApiListCategories
|
|
543
550
|
*/
|
|
544
551
|
readonly filters?: string
|
|
545
552
|
|
|
546
553
|
/**
|
|
547
|
-
*
|
|
554
|
+
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i>
|
|
555
|
+
* @type {string}
|
|
556
|
+
* @memberof CategoriesApiListCategories
|
|
557
|
+
*/
|
|
558
|
+
readonly search?: string
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i>
|
|
548
562
|
* @type {string}
|
|
549
563
|
* @memberof CategoriesApiListCategories
|
|
550
564
|
*/
|
|
@@ -594,7 +608,7 @@ export interface CategoriesApiUpdateCategoryRequest {
|
|
|
594
608
|
*/
|
|
595
609
|
export class CategoriesApi extends BaseAPI {
|
|
596
610
|
/**
|
|
597
|
-
* This will create category.
|
|
611
|
+
* This will create a category.
|
|
598
612
|
* @summary Create the category
|
|
599
613
|
* @param {CategoriesApiCreateCategoryRequest} requestParameters Request parameters.
|
|
600
614
|
* @param {*} [options] Override http request option.
|
|
@@ -606,7 +620,7 @@ export class CategoriesApi extends BaseAPI {
|
|
|
606
620
|
}
|
|
607
621
|
|
|
608
622
|
/**
|
|
609
|
-
* This will delete category.
|
|
623
|
+
* This will delete a task category by code.
|
|
610
624
|
* @summary Delete the category
|
|
611
625
|
* @param {CategoriesApiDeleteCategoryRequest} requestParameters Request parameters.
|
|
612
626
|
* @param {*} [options] Override http request option.
|
|
@@ -618,7 +632,7 @@ export class CategoriesApi extends BaseAPI {
|
|
|
618
632
|
}
|
|
619
633
|
|
|
620
634
|
/**
|
|
621
|
-
*
|
|
635
|
+
* Get category by code.
|
|
622
636
|
* @summary Retrieve the category
|
|
623
637
|
* @param {CategoriesApiGetCategoryRequest} requestParameters Request parameters.
|
|
624
638
|
* @param {*} [options] Override http request option.
|
|
@@ -638,7 +652,7 @@ export class CategoriesApi extends BaseAPI {
|
|
|
638
652
|
* @memberof CategoriesApi
|
|
639
653
|
*/
|
|
640
654
|
public listCategories(requestParameters: CategoriesApiListCategoriesRequest = {}, options?: AxiosRequestConfig) {
|
|
641
|
-
return CategoriesApiFp(this.configuration).listCategories(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.order, requestParameters.expand, options).then((request) => request(this.axios, this.basePath));
|
|
655
|
+
return CategoriesApiFp(this.configuration).listCategories(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.search, requestParameters.order, requestParameters.expand, options).then((request) => request(this.axios, this.basePath));
|
|
642
656
|
}
|
|
643
657
|
|
|
644
658
|
/**
|
package/api/statuses-api.ts
CHANGED
|
@@ -43,7 +43,7 @@ const FormData = require('form-data');
|
|
|
43
43
|
export const StatusesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
44
44
|
return {
|
|
45
45
|
/**
|
|
46
|
-
* This will create status.
|
|
46
|
+
* This will create a status.
|
|
47
47
|
* @summary Create the status
|
|
48
48
|
* @param {CreateStatusRequestDto} createStatusRequestDto
|
|
49
49
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -135,7 +135,7 @@ export const StatusesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
135
135
|
};
|
|
136
136
|
},
|
|
137
137
|
/**
|
|
138
|
-
*
|
|
138
|
+
* Get status by code.
|
|
139
139
|
* @summary Retrieve the status
|
|
140
140
|
* @param {string} code
|
|
141
141
|
* @param {string} expand
|
|
@@ -190,14 +190,15 @@ export const StatusesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
190
190
|
* Retrieves a list of statuses.
|
|
191
191
|
* @summary List statuses
|
|
192
192
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
193
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
194
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
195
|
-
* @param {string} [
|
|
193
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
194
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
195
|
+
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i>
|
|
196
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i>
|
|
196
197
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
197
198
|
* @param {*} [options] Override http request option.
|
|
198
199
|
* @throws {RequiredError}
|
|
199
200
|
*/
|
|
200
|
-
listStatuses: async (authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
201
|
+
listStatuses: async (authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
201
202
|
const localVarPath = `/taskservice/v1/statuses`;
|
|
202
203
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
203
204
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -224,6 +225,10 @@ export const StatusesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
224
225
|
localVarQueryParameter['filters'] = filters;
|
|
225
226
|
}
|
|
226
227
|
|
|
228
|
+
if (search !== undefined) {
|
|
229
|
+
localVarQueryParameter['search'] = search;
|
|
230
|
+
}
|
|
231
|
+
|
|
227
232
|
if (order !== undefined) {
|
|
228
233
|
localVarQueryParameter['order'] = order;
|
|
229
234
|
}
|
|
@@ -309,7 +314,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
|
|
|
309
314
|
const localVarAxiosParamCreator = StatusesApiAxiosParamCreator(configuration)
|
|
310
315
|
return {
|
|
311
316
|
/**
|
|
312
|
-
* This will create status.
|
|
317
|
+
* This will create a status.
|
|
313
318
|
* @summary Create the status
|
|
314
319
|
* @param {CreateStatusRequestDto} createStatusRequestDto
|
|
315
320
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -333,7 +338,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
|
|
|
333
338
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
334
339
|
},
|
|
335
340
|
/**
|
|
336
|
-
*
|
|
341
|
+
* Get status by code.
|
|
337
342
|
* @summary Retrieve the status
|
|
338
343
|
* @param {string} code
|
|
339
344
|
* @param {string} expand
|
|
@@ -349,15 +354,16 @@ export const StatusesApiFp = function(configuration?: Configuration) {
|
|
|
349
354
|
* Retrieves a list of statuses.
|
|
350
355
|
* @summary List statuses
|
|
351
356
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
352
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
353
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
354
|
-
* @param {string} [
|
|
357
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
358
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
359
|
+
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i>
|
|
360
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i>
|
|
355
361
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
356
362
|
* @param {*} [options] Override http request option.
|
|
357
363
|
* @throws {RequiredError}
|
|
358
364
|
*/
|
|
359
|
-
async listStatuses(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListStatusesResponseClass>> {
|
|
360
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listStatuses(authorization, filter, filters, order, expand, options);
|
|
365
|
+
async listStatuses(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListStatusesResponseClass>> {
|
|
366
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listStatuses(authorization, filter, filters, search, order, expand, options);
|
|
361
367
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
362
368
|
},
|
|
363
369
|
/**
|
|
@@ -384,7 +390,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
|
|
|
384
390
|
const localVarFp = StatusesApiFp(configuration)
|
|
385
391
|
return {
|
|
386
392
|
/**
|
|
387
|
-
* This will create status.
|
|
393
|
+
* This will create a status.
|
|
388
394
|
* @summary Create the status
|
|
389
395
|
* @param {CreateStatusRequestDto} createStatusRequestDto
|
|
390
396
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -406,7 +412,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
|
|
|
406
412
|
return localVarFp.deleteStatus(code, authorization, options).then((request) => request(axios, basePath));
|
|
407
413
|
},
|
|
408
414
|
/**
|
|
409
|
-
*
|
|
415
|
+
* Get status by code.
|
|
410
416
|
* @summary Retrieve the status
|
|
411
417
|
* @param {string} code
|
|
412
418
|
* @param {string} expand
|
|
@@ -421,15 +427,16 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
|
|
|
421
427
|
* Retrieves a list of statuses.
|
|
422
428
|
* @summary List statuses
|
|
423
429
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
424
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
425
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
426
|
-
* @param {string} [
|
|
430
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
431
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
432
|
+
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i>
|
|
433
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i>
|
|
427
434
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
428
435
|
* @param {*} [options] Override http request option.
|
|
429
436
|
* @throws {RequiredError}
|
|
430
437
|
*/
|
|
431
|
-
listStatuses(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListStatusesResponseClass> {
|
|
432
|
-
return localVarFp.listStatuses(authorization, filter, filters, order, expand, options).then((request) => request(axios, basePath));
|
|
438
|
+
listStatuses(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListStatusesResponseClass> {
|
|
439
|
+
return localVarFp.listStatuses(authorization, filter, filters, search, order, expand, options).then((request) => request(axios, basePath));
|
|
433
440
|
},
|
|
434
441
|
/**
|
|
435
442
|
* This will update status.
|
|
@@ -530,21 +537,28 @@ export interface StatusesApiListStatusesRequest {
|
|
|
530
537
|
readonly authorization?: string
|
|
531
538
|
|
|
532
539
|
/**
|
|
533
|
-
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
540
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
534
541
|
* @type {string}
|
|
535
542
|
* @memberof StatusesApiListStatuses
|
|
536
543
|
*/
|
|
537
544
|
readonly filter?: string
|
|
538
545
|
|
|
539
546
|
/**
|
|
540
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, createdAt</i>
|
|
547
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, slug, name, createdAt, updatedAt</i>
|
|
541
548
|
* @type {string}
|
|
542
549
|
* @memberof StatusesApiListStatuses
|
|
543
550
|
*/
|
|
544
551
|
readonly filters?: string
|
|
545
552
|
|
|
546
553
|
/**
|
|
547
|
-
*
|
|
554
|
+
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, code, name, slug</i>
|
|
555
|
+
* @type {string}
|
|
556
|
+
* @memberof StatusesApiListStatuses
|
|
557
|
+
*/
|
|
558
|
+
readonly search?: string
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt, name, slug</i>
|
|
548
562
|
* @type {string}
|
|
549
563
|
* @memberof StatusesApiListStatuses
|
|
550
564
|
*/
|
|
@@ -594,7 +608,7 @@ export interface StatusesApiUpdateStatusRequest {
|
|
|
594
608
|
*/
|
|
595
609
|
export class StatusesApi extends BaseAPI {
|
|
596
610
|
/**
|
|
597
|
-
* This will create status.
|
|
611
|
+
* This will create a status.
|
|
598
612
|
* @summary Create the status
|
|
599
613
|
* @param {StatusesApiCreateStatusRequest} requestParameters Request parameters.
|
|
600
614
|
* @param {*} [options] Override http request option.
|
|
@@ -618,7 +632,7 @@ export class StatusesApi extends BaseAPI {
|
|
|
618
632
|
}
|
|
619
633
|
|
|
620
634
|
/**
|
|
621
|
-
*
|
|
635
|
+
* Get status by code.
|
|
622
636
|
* @summary Retrieve the status
|
|
623
637
|
* @param {StatusesApiGetStatusRequest} requestParameters Request parameters.
|
|
624
638
|
* @param {*} [options] Override http request option.
|
|
@@ -638,7 +652,7 @@ export class StatusesApi extends BaseAPI {
|
|
|
638
652
|
* @memberof StatusesApi
|
|
639
653
|
*/
|
|
640
654
|
public listStatuses(requestParameters: StatusesApiListStatusesRequest = {}, options?: AxiosRequestConfig) {
|
|
641
|
-
return StatusesApiFp(this.configuration).listStatuses(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.order, requestParameters.expand, options).then((request) => request(this.axios, this.basePath));
|
|
655
|
+
return StatusesApiFp(this.configuration).listStatuses(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.search, requestParameters.order, requestParameters.expand, options).then((request) => request(this.axios, this.basePath));
|
|
642
656
|
}
|
|
643
657
|
|
|
644
658
|
/**
|