@emilgroup/task-sdk 1.0.1-beta.15 → 1.0.1-beta.16
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/README.md +2 -2
- package/api/assignees-api.ts +4 -4
- package/api/categories-api.ts +20 -20
- package/api/hub-spot-api.ts +4 -4
- package/api/statuses-api.ts +20 -20
- package/api/tasks-api.ts +20 -20
- package/dist/api/assignees-api.d.ts +4 -4
- package/dist/api/assignees-api.js +4 -4
- package/dist/api/categories-api.d.ts +20 -20
- package/dist/api/categories-api.js +20 -20
- package/dist/api/hub-spot-api.d.ts +4 -4
- package/dist/api/hub-spot-api.js +4 -4
- package/dist/api/statuses-api.d.ts +20 -20
- package/dist/api/statuses-api.js +20 -20
- package/dist/api/tasks-api.d.ts +20 -20
- package/dist/api/tasks-api.js +20 -20
- package/package.json +1 -1
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@1.0.1-beta.
|
|
20
|
+
npm install @emilgroup/task-sdk@1.0.1-beta.16 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/task-sdk@1.0.1-beta.
|
|
24
|
+
yarn add @emilgroup/task-sdk@1.0.1-beta.16
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `TasksApi`.
|
package/api/assignees-api.ts
CHANGED
|
@@ -29,7 +29,7 @@ import { ListAssigneesResponseClass } from '../models';
|
|
|
29
29
|
export const AssigneesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
30
30
|
return {
|
|
31
31
|
/**
|
|
32
|
-
* Retrieves a list of distinct assignees from tasks.
|
|
32
|
+
* Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
33
33
|
* @summary List assignees
|
|
34
34
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
35
35
|
* @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/>
|
|
@@ -85,7 +85,7 @@ export const AssigneesApiFp = function(configuration?: Configuration) {
|
|
|
85
85
|
const localVarAxiosParamCreator = AssigneesApiAxiosParamCreator(configuration)
|
|
86
86
|
return {
|
|
87
87
|
/**
|
|
88
|
-
* Retrieves a list of distinct assignees from tasks.
|
|
88
|
+
* Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
89
89
|
* @summary List assignees
|
|
90
90
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
91
91
|
* @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/>
|
|
@@ -107,7 +107,7 @@ export const AssigneesApiFactory = function (configuration?: Configuration, base
|
|
|
107
107
|
const localVarFp = AssigneesApiFp(configuration)
|
|
108
108
|
return {
|
|
109
109
|
/**
|
|
110
|
-
* Retrieves a list of distinct assignees from tasks.
|
|
110
|
+
* Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
111
111
|
* @summary List assignees
|
|
112
112
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
113
113
|
* @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/>
|
|
@@ -149,7 +149,7 @@ export interface AssigneesApiListAssigneesRequest {
|
|
|
149
149
|
*/
|
|
150
150
|
export class AssigneesApi extends BaseAPI {
|
|
151
151
|
/**
|
|
152
|
-
* Retrieves a list of distinct assignees from tasks.
|
|
152
|
+
* Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
153
153
|
* @summary List assignees
|
|
154
154
|
* @param {AssigneesApiListAssigneesRequest} requestParameters Request parameters.
|
|
155
155
|
* @param {*} [options] Override http request option.
|
package/api/categories-api.ts
CHANGED
|
@@ -39,7 +39,7 @@ import { PatchCategoryResponseClass } from '../models';
|
|
|
39
39
|
export const CategoriesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
40
40
|
return {
|
|
41
41
|
/**
|
|
42
|
-
* This will create a category.
|
|
42
|
+
* This will create a category. **Required Permissions** \"task-management.tasks.create\"
|
|
43
43
|
* @summary Create the category
|
|
44
44
|
* @param {CreateCategoryRequestDto} createCategoryRequestDto
|
|
45
45
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -86,7 +86,7 @@ export const CategoriesApiAxiosParamCreator = function (configuration?: Configur
|
|
|
86
86
|
};
|
|
87
87
|
},
|
|
88
88
|
/**
|
|
89
|
-
* This will delete a task category by code.
|
|
89
|
+
* This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
|
|
90
90
|
* @summary Delete the category
|
|
91
91
|
* @param {string} code Unique identifier for the object.
|
|
92
92
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -131,7 +131,7 @@ export const CategoriesApiAxiosParamCreator = function (configuration?: Configur
|
|
|
131
131
|
};
|
|
132
132
|
},
|
|
133
133
|
/**
|
|
134
|
-
* Get category by code.
|
|
134
|
+
* Get category by code. **Required Permissions** \"task-management.tasks.view\"
|
|
135
135
|
* @summary Retrieve the category
|
|
136
136
|
* @param {string} code
|
|
137
137
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -181,7 +181,7 @@ export const CategoriesApiAxiosParamCreator = function (configuration?: Configur
|
|
|
181
181
|
};
|
|
182
182
|
},
|
|
183
183
|
/**
|
|
184
|
-
* Retrieves a list of categories.
|
|
184
|
+
* Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
|
|
185
185
|
* @summary List categories
|
|
186
186
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
187
187
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -257,7 +257,7 @@ export const CategoriesApiAxiosParamCreator = function (configuration?: Configur
|
|
|
257
257
|
};
|
|
258
258
|
},
|
|
259
259
|
/**
|
|
260
|
-
* This will partially update a category by code with the provided fields.
|
|
260
|
+
* This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
261
261
|
* @summary Update the category
|
|
262
262
|
* @param {string} code
|
|
263
263
|
* @param {PatchCategoryRequestDto} patchCategoryRequestDto
|
|
@@ -318,7 +318,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
|
|
|
318
318
|
const localVarAxiosParamCreator = CategoriesApiAxiosParamCreator(configuration)
|
|
319
319
|
return {
|
|
320
320
|
/**
|
|
321
|
-
* This will create a category.
|
|
321
|
+
* This will create a category. **Required Permissions** \"task-management.tasks.create\"
|
|
322
322
|
* @summary Create the category
|
|
323
323
|
* @param {CreateCategoryRequestDto} createCategoryRequestDto
|
|
324
324
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -330,7 +330,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
|
|
|
330
330
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
331
331
|
},
|
|
332
332
|
/**
|
|
333
|
-
* This will delete a task category by code.
|
|
333
|
+
* This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
|
|
334
334
|
* @summary Delete the category
|
|
335
335
|
* @param {string} code Unique identifier for the object.
|
|
336
336
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -342,7 +342,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
|
|
|
342
342
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
343
343
|
},
|
|
344
344
|
/**
|
|
345
|
-
* Get category by code.
|
|
345
|
+
* Get category by code. **Required Permissions** \"task-management.tasks.view\"
|
|
346
346
|
* @summary Retrieve the category
|
|
347
347
|
* @param {string} code
|
|
348
348
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -355,7 +355,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
|
|
|
355
355
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
356
356
|
},
|
|
357
357
|
/**
|
|
358
|
-
* Retrieves a list of categories.
|
|
358
|
+
* Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
|
|
359
359
|
* @summary List categories
|
|
360
360
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
361
361
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -373,7 +373,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
|
|
|
373
373
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
374
374
|
},
|
|
375
375
|
/**
|
|
376
|
-
* This will partially update a category by code with the provided fields.
|
|
376
|
+
* This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
377
377
|
* @summary Update the category
|
|
378
378
|
* @param {string} code
|
|
379
379
|
* @param {PatchCategoryRequestDto} patchCategoryRequestDto
|
|
@@ -396,7 +396,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
|
|
|
396
396
|
const localVarFp = CategoriesApiFp(configuration)
|
|
397
397
|
return {
|
|
398
398
|
/**
|
|
399
|
-
* This will create a category.
|
|
399
|
+
* This will create a category. **Required Permissions** \"task-management.tasks.create\"
|
|
400
400
|
* @summary Create the category
|
|
401
401
|
* @param {CreateCategoryRequestDto} createCategoryRequestDto
|
|
402
402
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -407,7 +407,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
|
|
|
407
407
|
return localVarFp.createCategory(createCategoryRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
408
408
|
},
|
|
409
409
|
/**
|
|
410
|
-
* This will delete a task category by code.
|
|
410
|
+
* This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
|
|
411
411
|
* @summary Delete the category
|
|
412
412
|
* @param {string} code Unique identifier for the object.
|
|
413
413
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -418,7 +418,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
|
|
|
418
418
|
return localVarFp.deleteCategory(code, authorization, options).then((request) => request(axios, basePath));
|
|
419
419
|
},
|
|
420
420
|
/**
|
|
421
|
-
* Get category by code.
|
|
421
|
+
* Get category by code. **Required Permissions** \"task-management.tasks.view\"
|
|
422
422
|
* @summary Retrieve the category
|
|
423
423
|
* @param {string} code
|
|
424
424
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -430,7 +430,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
|
|
|
430
430
|
return localVarFp.getCategory(code, authorization, expand, options).then((request) => request(axios, basePath));
|
|
431
431
|
},
|
|
432
432
|
/**
|
|
433
|
-
* Retrieves a list of categories.
|
|
433
|
+
* Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
|
|
434
434
|
* @summary List categories
|
|
435
435
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
436
436
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -447,7 +447,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
|
|
|
447
447
|
return localVarFp.listCategories(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
448
448
|
},
|
|
449
449
|
/**
|
|
450
|
-
* This will partially update a category by code with the provided fields.
|
|
450
|
+
* This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
451
451
|
* @summary Update the category
|
|
452
452
|
* @param {string} code
|
|
453
453
|
* @param {PatchCategoryRequestDto} patchCategoryRequestDto
|
|
@@ -630,7 +630,7 @@ export interface CategoriesApiPatchCategoryRequest {
|
|
|
630
630
|
*/
|
|
631
631
|
export class CategoriesApi extends BaseAPI {
|
|
632
632
|
/**
|
|
633
|
-
* This will create a category.
|
|
633
|
+
* This will create a category. **Required Permissions** \"task-management.tasks.create\"
|
|
634
634
|
* @summary Create the category
|
|
635
635
|
* @param {CategoriesApiCreateCategoryRequest} requestParameters Request parameters.
|
|
636
636
|
* @param {*} [options] Override http request option.
|
|
@@ -642,7 +642,7 @@ export class CategoriesApi extends BaseAPI {
|
|
|
642
642
|
}
|
|
643
643
|
|
|
644
644
|
/**
|
|
645
|
-
* This will delete a task category by code.
|
|
645
|
+
* This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
|
|
646
646
|
* @summary Delete the category
|
|
647
647
|
* @param {CategoriesApiDeleteCategoryRequest} requestParameters Request parameters.
|
|
648
648
|
* @param {*} [options] Override http request option.
|
|
@@ -654,7 +654,7 @@ export class CategoriesApi extends BaseAPI {
|
|
|
654
654
|
}
|
|
655
655
|
|
|
656
656
|
/**
|
|
657
|
-
* Get category by code.
|
|
657
|
+
* Get category by code. **Required Permissions** \"task-management.tasks.view\"
|
|
658
658
|
* @summary Retrieve the category
|
|
659
659
|
* @param {CategoriesApiGetCategoryRequest} requestParameters Request parameters.
|
|
660
660
|
* @param {*} [options] Override http request option.
|
|
@@ -666,7 +666,7 @@ export class CategoriesApi extends BaseAPI {
|
|
|
666
666
|
}
|
|
667
667
|
|
|
668
668
|
/**
|
|
669
|
-
* Retrieves a list of categories.
|
|
669
|
+
* Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
|
|
670
670
|
* @summary List categories
|
|
671
671
|
* @param {CategoriesApiListCategoriesRequest} requestParameters Request parameters.
|
|
672
672
|
* @param {*} [options] Override http request option.
|
|
@@ -678,7 +678,7 @@ export class CategoriesApi extends BaseAPI {
|
|
|
678
678
|
}
|
|
679
679
|
|
|
680
680
|
/**
|
|
681
|
-
* This will partially update a category by code with the provided fields.
|
|
681
|
+
* This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
682
682
|
* @summary Update the category
|
|
683
683
|
* @param {CategoriesApiPatchCategoryRequest} requestParameters Request parameters.
|
|
684
684
|
* @param {*} [options] Override http request option.
|
package/api/hub-spot-api.ts
CHANGED
|
@@ -31,7 +31,7 @@ import { CreateHubSpotTicketResponseClass } from '../models';
|
|
|
31
31
|
export const HubSpotApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32
32
|
return {
|
|
33
33
|
/**
|
|
34
|
-
* This will create hub spot ticket.
|
|
34
|
+
* This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
|
|
35
35
|
* @summary Create the hub spot ticket
|
|
36
36
|
* @param {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
|
|
37
37
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -88,7 +88,7 @@ export const HubSpotApiFp = function(configuration?: Configuration) {
|
|
|
88
88
|
const localVarAxiosParamCreator = HubSpotApiAxiosParamCreator(configuration)
|
|
89
89
|
return {
|
|
90
90
|
/**
|
|
91
|
-
* This will create hub spot ticket.
|
|
91
|
+
* This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
|
|
92
92
|
* @summary Create the hub spot ticket
|
|
93
93
|
* @param {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
|
|
94
94
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -110,7 +110,7 @@ export const HubSpotApiFactory = function (configuration?: Configuration, basePa
|
|
|
110
110
|
const localVarFp = HubSpotApiFp(configuration)
|
|
111
111
|
return {
|
|
112
112
|
/**
|
|
113
|
-
* This will create hub spot ticket.
|
|
113
|
+
* This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
|
|
114
114
|
* @summary Create the hub spot ticket
|
|
115
115
|
* @param {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
|
|
116
116
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -152,7 +152,7 @@ export interface HubSpotApiCreateHubSpotTicketRequest {
|
|
|
152
152
|
*/
|
|
153
153
|
export class HubSpotApi extends BaseAPI {
|
|
154
154
|
/**
|
|
155
|
-
* This will create hub spot ticket.
|
|
155
|
+
* This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
|
|
156
156
|
* @summary Create the hub spot ticket
|
|
157
157
|
* @param {HubSpotApiCreateHubSpotTicketRequest} requestParameters Request parameters.
|
|
158
158
|
* @param {*} [options] Override http request option.
|
package/api/statuses-api.ts
CHANGED
|
@@ -39,7 +39,7 @@ import { PatchStatusResponseClass } from '../models';
|
|
|
39
39
|
export const StatusesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
40
40
|
return {
|
|
41
41
|
/**
|
|
42
|
-
* This will create a status.
|
|
42
|
+
* This will create a status. **Required Permissions** \"task-management.tasks.create\"
|
|
43
43
|
* @summary Create the status
|
|
44
44
|
* @param {CreateStatusRequestDto} createStatusRequestDto
|
|
45
45
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -86,7 +86,7 @@ export const StatusesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
86
86
|
};
|
|
87
87
|
},
|
|
88
88
|
/**
|
|
89
|
-
* This will delete status.
|
|
89
|
+
* This will delete status. **Required Permissions** \"task-management.tasks.delete\"
|
|
90
90
|
* @summary Delete the status
|
|
91
91
|
* @param {string} code Unique identifier for the object.
|
|
92
92
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -131,7 +131,7 @@ export const StatusesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
131
131
|
};
|
|
132
132
|
},
|
|
133
133
|
/**
|
|
134
|
-
* Get status by code.
|
|
134
|
+
* Get status by code. **Required Permissions** \"task-management.tasks.view\"
|
|
135
135
|
* @summary Retrieve the status
|
|
136
136
|
* @param {string} code
|
|
137
137
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -181,7 +181,7 @@ export const StatusesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
181
181
|
};
|
|
182
182
|
},
|
|
183
183
|
/**
|
|
184
|
-
* Retrieves a list of statuses.
|
|
184
|
+
* Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
|
|
185
185
|
* @summary List statuses
|
|
186
186
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
187
187
|
* @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>
|
|
@@ -247,7 +247,7 @@ export const StatusesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
247
247
|
};
|
|
248
248
|
},
|
|
249
249
|
/**
|
|
250
|
-
* This will partially update a status by code with the provided fields.
|
|
250
|
+
* This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
251
251
|
* @summary Update the status
|
|
252
252
|
* @param {string} code
|
|
253
253
|
* @param {PatchStatusRequestDto} patchStatusRequestDto
|
|
@@ -308,7 +308,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
|
|
|
308
308
|
const localVarAxiosParamCreator = StatusesApiAxiosParamCreator(configuration)
|
|
309
309
|
return {
|
|
310
310
|
/**
|
|
311
|
-
* This will create a status.
|
|
311
|
+
* This will create a status. **Required Permissions** \"task-management.tasks.create\"
|
|
312
312
|
* @summary Create the status
|
|
313
313
|
* @param {CreateStatusRequestDto} createStatusRequestDto
|
|
314
314
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -320,7 +320,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
|
|
|
320
320
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
321
321
|
},
|
|
322
322
|
/**
|
|
323
|
-
* This will delete status.
|
|
323
|
+
* This will delete status. **Required Permissions** \"task-management.tasks.delete\"
|
|
324
324
|
* @summary Delete the status
|
|
325
325
|
* @param {string} code Unique identifier for the object.
|
|
326
326
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -332,7 +332,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
|
|
|
332
332
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
333
333
|
},
|
|
334
334
|
/**
|
|
335
|
-
* Get status by code.
|
|
335
|
+
* Get status by code. **Required Permissions** \"task-management.tasks.view\"
|
|
336
336
|
* @summary Retrieve the status
|
|
337
337
|
* @param {string} code
|
|
338
338
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -345,7 +345,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
|
|
|
345
345
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
346
346
|
},
|
|
347
347
|
/**
|
|
348
|
-
* Retrieves a list of statuses.
|
|
348
|
+
* Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
|
|
349
349
|
* @summary List statuses
|
|
350
350
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
351
351
|
* @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>
|
|
@@ -361,7 +361,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
|
|
|
361
361
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
362
362
|
},
|
|
363
363
|
/**
|
|
364
|
-
* This will partially update a status by code with the provided fields.
|
|
364
|
+
* This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
365
365
|
* @summary Update the status
|
|
366
366
|
* @param {string} code
|
|
367
367
|
* @param {PatchStatusRequestDto} patchStatusRequestDto
|
|
@@ -384,7 +384,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
|
|
|
384
384
|
const localVarFp = StatusesApiFp(configuration)
|
|
385
385
|
return {
|
|
386
386
|
/**
|
|
387
|
-
* This will create a status.
|
|
387
|
+
* This will create a status. **Required Permissions** \"task-management.tasks.create\"
|
|
388
388
|
* @summary Create the status
|
|
389
389
|
* @param {CreateStatusRequestDto} createStatusRequestDto
|
|
390
390
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -395,7 +395,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
|
|
|
395
395
|
return localVarFp.createStatus(createStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
396
396
|
},
|
|
397
397
|
/**
|
|
398
|
-
* This will delete status.
|
|
398
|
+
* This will delete status. **Required Permissions** \"task-management.tasks.delete\"
|
|
399
399
|
* @summary Delete the status
|
|
400
400
|
* @param {string} code Unique identifier for the object.
|
|
401
401
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -406,7 +406,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
|
|
|
406
406
|
return localVarFp.deleteStatus(code, authorization, options).then((request) => request(axios, basePath));
|
|
407
407
|
},
|
|
408
408
|
/**
|
|
409
|
-
* Get status by code.
|
|
409
|
+
* Get status by code. **Required Permissions** \"task-management.tasks.view\"
|
|
410
410
|
* @summary Retrieve the status
|
|
411
411
|
* @param {string} code
|
|
412
412
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -418,7 +418,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
|
|
|
418
418
|
return localVarFp.getStatus(code, authorization, expand, options).then((request) => request(axios, basePath));
|
|
419
419
|
},
|
|
420
420
|
/**
|
|
421
|
-
* Retrieves a list of statuses.
|
|
421
|
+
* Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
|
|
422
422
|
* @summary List statuses
|
|
423
423
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
424
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, slug, name, createdAt, updatedAt</i>
|
|
@@ -433,7 +433,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
|
|
|
433
433
|
return localVarFp.listStatuses(authorization, filter, filters, search, order, expand, options).then((request) => request(axios, basePath));
|
|
434
434
|
},
|
|
435
435
|
/**
|
|
436
|
-
* This will partially update a status by code with the provided fields.
|
|
436
|
+
* This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
437
437
|
* @summary Update the status
|
|
438
438
|
* @param {string} code
|
|
439
439
|
* @param {PatchStatusRequestDto} patchStatusRequestDto
|
|
@@ -602,7 +602,7 @@ export interface StatusesApiPatchStatusRequest {
|
|
|
602
602
|
*/
|
|
603
603
|
export class StatusesApi extends BaseAPI {
|
|
604
604
|
/**
|
|
605
|
-
* This will create a status.
|
|
605
|
+
* This will create a status. **Required Permissions** \"task-management.tasks.create\"
|
|
606
606
|
* @summary Create the status
|
|
607
607
|
* @param {StatusesApiCreateStatusRequest} requestParameters Request parameters.
|
|
608
608
|
* @param {*} [options] Override http request option.
|
|
@@ -614,7 +614,7 @@ export class StatusesApi extends BaseAPI {
|
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
/**
|
|
617
|
-
* This will delete status.
|
|
617
|
+
* This will delete status. **Required Permissions** \"task-management.tasks.delete\"
|
|
618
618
|
* @summary Delete the status
|
|
619
619
|
* @param {StatusesApiDeleteStatusRequest} requestParameters Request parameters.
|
|
620
620
|
* @param {*} [options] Override http request option.
|
|
@@ -626,7 +626,7 @@ export class StatusesApi extends BaseAPI {
|
|
|
626
626
|
}
|
|
627
627
|
|
|
628
628
|
/**
|
|
629
|
-
* Get status by code.
|
|
629
|
+
* Get status by code. **Required Permissions** \"task-management.tasks.view\"
|
|
630
630
|
* @summary Retrieve the status
|
|
631
631
|
* @param {StatusesApiGetStatusRequest} requestParameters Request parameters.
|
|
632
632
|
* @param {*} [options] Override http request option.
|
|
@@ -638,7 +638,7 @@ export class StatusesApi extends BaseAPI {
|
|
|
638
638
|
}
|
|
639
639
|
|
|
640
640
|
/**
|
|
641
|
-
* Retrieves a list of statuses.
|
|
641
|
+
* Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
|
|
642
642
|
* @summary List statuses
|
|
643
643
|
* @param {StatusesApiListStatusesRequest} requestParameters Request parameters.
|
|
644
644
|
* @param {*} [options] Override http request option.
|
|
@@ -650,7 +650,7 @@ export class StatusesApi extends BaseAPI {
|
|
|
650
650
|
}
|
|
651
651
|
|
|
652
652
|
/**
|
|
653
|
-
* This will partially update a status by code with the provided fields.
|
|
653
|
+
* This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
654
654
|
* @summary Update the status
|
|
655
655
|
* @param {StatusesApiPatchStatusRequest} requestParameters Request parameters.
|
|
656
656
|
* @param {*} [options] Override http request option.
|
package/api/tasks-api.ts
CHANGED
|
@@ -39,7 +39,7 @@ import { PatchTaskResponseClass } from '../models';
|
|
|
39
39
|
export const TasksApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
40
40
|
return {
|
|
41
41
|
/**
|
|
42
|
-
* This will create task.
|
|
42
|
+
* This will create a task. **Required Permissions** \"task-management.tasks.create\"
|
|
43
43
|
* @summary Create the task
|
|
44
44
|
* @param {CreateTaskRequestDto} createTaskRequestDto
|
|
45
45
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -86,7 +86,7 @@ export const TasksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
86
86
|
};
|
|
87
87
|
},
|
|
88
88
|
/**
|
|
89
|
-
* This will delete a task by code.
|
|
89
|
+
* This will delete a task by code. **Required Permissions** \"task-management.tasks.delete\"
|
|
90
90
|
* @summary Delete the task
|
|
91
91
|
* @param {string} code Unique identifier for the object.
|
|
92
92
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -131,7 +131,7 @@ export const TasksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
131
131
|
};
|
|
132
132
|
},
|
|
133
133
|
/**
|
|
134
|
-
* This will get a task by code.
|
|
134
|
+
* This will get a task by code. **Required Permissions** \"task-management.tasks.view\"
|
|
135
135
|
* @summary Retrieve the task
|
|
136
136
|
* @param {string} code
|
|
137
137
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -181,7 +181,7 @@ export const TasksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
181
181
|
};
|
|
182
182
|
},
|
|
183
183
|
/**
|
|
184
|
-
* Retrieves a list of tasks.
|
|
184
|
+
* Retrieves a list of tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
185
185
|
* @summary List tasks
|
|
186
186
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
187
187
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -257,7 +257,7 @@ export const TasksApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
257
257
|
};
|
|
258
258
|
},
|
|
259
259
|
/**
|
|
260
|
-
* This will partially update a task by code with the provided fields.
|
|
260
|
+
* This will partially update a task by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
261
261
|
* @summary Update the task
|
|
262
262
|
* @param {string} code
|
|
263
263
|
* @param {PatchTaskRequestDto} patchTaskRequestDto
|
|
@@ -318,7 +318,7 @@ export const TasksApiFp = function(configuration?: Configuration) {
|
|
|
318
318
|
const localVarAxiosParamCreator = TasksApiAxiosParamCreator(configuration)
|
|
319
319
|
return {
|
|
320
320
|
/**
|
|
321
|
-
* This will create task.
|
|
321
|
+
* This will create a task. **Required Permissions** \"task-management.tasks.create\"
|
|
322
322
|
* @summary Create the task
|
|
323
323
|
* @param {CreateTaskRequestDto} createTaskRequestDto
|
|
324
324
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -330,7 +330,7 @@ export const TasksApiFp = function(configuration?: Configuration) {
|
|
|
330
330
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
331
331
|
},
|
|
332
332
|
/**
|
|
333
|
-
* This will delete a task by code.
|
|
333
|
+
* This will delete a task by code. **Required Permissions** \"task-management.tasks.delete\"
|
|
334
334
|
* @summary Delete the task
|
|
335
335
|
* @param {string} code Unique identifier for the object.
|
|
336
336
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -342,7 +342,7 @@ export const TasksApiFp = function(configuration?: Configuration) {
|
|
|
342
342
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
343
343
|
},
|
|
344
344
|
/**
|
|
345
|
-
* This will get a task by code.
|
|
345
|
+
* This will get a task by code. **Required Permissions** \"task-management.tasks.view\"
|
|
346
346
|
* @summary Retrieve the task
|
|
347
347
|
* @param {string} code
|
|
348
348
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -355,7 +355,7 @@ export const TasksApiFp = function(configuration?: Configuration) {
|
|
|
355
355
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
356
356
|
},
|
|
357
357
|
/**
|
|
358
|
-
* Retrieves a list of tasks.
|
|
358
|
+
* Retrieves a list of tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
359
359
|
* @summary List tasks
|
|
360
360
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
361
361
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -373,7 +373,7 @@ export const TasksApiFp = function(configuration?: Configuration) {
|
|
|
373
373
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
374
374
|
},
|
|
375
375
|
/**
|
|
376
|
-
* This will partially update a task by code with the provided fields.
|
|
376
|
+
* This will partially update a task by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
377
377
|
* @summary Update the task
|
|
378
378
|
* @param {string} code
|
|
379
379
|
* @param {PatchTaskRequestDto} patchTaskRequestDto
|
|
@@ -396,7 +396,7 @@ export const TasksApiFactory = function (configuration?: Configuration, basePath
|
|
|
396
396
|
const localVarFp = TasksApiFp(configuration)
|
|
397
397
|
return {
|
|
398
398
|
/**
|
|
399
|
-
* This will create task.
|
|
399
|
+
* This will create a task. **Required Permissions** \"task-management.tasks.create\"
|
|
400
400
|
* @summary Create the task
|
|
401
401
|
* @param {CreateTaskRequestDto} createTaskRequestDto
|
|
402
402
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -407,7 +407,7 @@ export const TasksApiFactory = function (configuration?: Configuration, basePath
|
|
|
407
407
|
return localVarFp.createTask(createTaskRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
408
408
|
},
|
|
409
409
|
/**
|
|
410
|
-
* This will delete a task by code.
|
|
410
|
+
* This will delete a task by code. **Required Permissions** \"task-management.tasks.delete\"
|
|
411
411
|
* @summary Delete the task
|
|
412
412
|
* @param {string} code Unique identifier for the object.
|
|
413
413
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -418,7 +418,7 @@ export const TasksApiFactory = function (configuration?: Configuration, basePath
|
|
|
418
418
|
return localVarFp.deleteTask(code, authorization, options).then((request) => request(axios, basePath));
|
|
419
419
|
},
|
|
420
420
|
/**
|
|
421
|
-
* This will get a task by code.
|
|
421
|
+
* This will get a task by code. **Required Permissions** \"task-management.tasks.view\"
|
|
422
422
|
* @summary Retrieve the task
|
|
423
423
|
* @param {string} code
|
|
424
424
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -430,7 +430,7 @@ export const TasksApiFactory = function (configuration?: Configuration, basePath
|
|
|
430
430
|
return localVarFp.getTask(code, authorization, expand, options).then((request) => request(axios, basePath));
|
|
431
431
|
},
|
|
432
432
|
/**
|
|
433
|
-
* Retrieves a list of tasks.
|
|
433
|
+
* Retrieves a list of tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
434
434
|
* @summary List tasks
|
|
435
435
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
436
436
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -447,7 +447,7 @@ export const TasksApiFactory = function (configuration?: Configuration, basePath
|
|
|
447
447
|
return localVarFp.listTasks(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
448
448
|
},
|
|
449
449
|
/**
|
|
450
|
-
* This will partially update a task by code with the provided fields.
|
|
450
|
+
* This will partially update a task by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
451
451
|
* @summary Update the task
|
|
452
452
|
* @param {string} code
|
|
453
453
|
* @param {PatchTaskRequestDto} patchTaskRequestDto
|
|
@@ -630,7 +630,7 @@ export interface TasksApiPatchTaskRequest {
|
|
|
630
630
|
*/
|
|
631
631
|
export class TasksApi extends BaseAPI {
|
|
632
632
|
/**
|
|
633
|
-
* This will create task.
|
|
633
|
+
* This will create a task. **Required Permissions** \"task-management.tasks.create\"
|
|
634
634
|
* @summary Create the task
|
|
635
635
|
* @param {TasksApiCreateTaskRequest} requestParameters Request parameters.
|
|
636
636
|
* @param {*} [options] Override http request option.
|
|
@@ -642,7 +642,7 @@ export class TasksApi extends BaseAPI {
|
|
|
642
642
|
}
|
|
643
643
|
|
|
644
644
|
/**
|
|
645
|
-
* This will delete a task by code.
|
|
645
|
+
* This will delete a task by code. **Required Permissions** \"task-management.tasks.delete\"
|
|
646
646
|
* @summary Delete the task
|
|
647
647
|
* @param {TasksApiDeleteTaskRequest} requestParameters Request parameters.
|
|
648
648
|
* @param {*} [options] Override http request option.
|
|
@@ -654,7 +654,7 @@ export class TasksApi extends BaseAPI {
|
|
|
654
654
|
}
|
|
655
655
|
|
|
656
656
|
/**
|
|
657
|
-
* This will get a task by code.
|
|
657
|
+
* This will get a task by code. **Required Permissions** \"task-management.tasks.view\"
|
|
658
658
|
* @summary Retrieve the task
|
|
659
659
|
* @param {TasksApiGetTaskRequest} requestParameters Request parameters.
|
|
660
660
|
* @param {*} [options] Override http request option.
|
|
@@ -666,7 +666,7 @@ export class TasksApi extends BaseAPI {
|
|
|
666
666
|
}
|
|
667
667
|
|
|
668
668
|
/**
|
|
669
|
-
* Retrieves a list of tasks.
|
|
669
|
+
* Retrieves a list of tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
670
670
|
* @summary List tasks
|
|
671
671
|
* @param {TasksApiListTasksRequest} requestParameters Request parameters.
|
|
672
672
|
* @param {*} [options] Override http request option.
|
|
@@ -678,7 +678,7 @@ export class TasksApi extends BaseAPI {
|
|
|
678
678
|
}
|
|
679
679
|
|
|
680
680
|
/**
|
|
681
|
-
* This will partially update a task by code with the provided fields.
|
|
681
|
+
* This will partially update a task by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
|
|
682
682
|
* @summary Update the task
|
|
683
683
|
* @param {TasksApiPatchTaskRequest} requestParameters Request parameters.
|
|
684
684
|
* @param {*} [options] Override http request option.
|
|
@@ -19,7 +19,7 @@ import { ListAssigneesResponseClass } from '../models';
|
|
|
19
19
|
*/
|
|
20
20
|
export declare const AssigneesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
21
|
/**
|
|
22
|
-
* Retrieves a list of distinct assignees from tasks.
|
|
22
|
+
* Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
23
23
|
* @summary List assignees
|
|
24
24
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
25
25
|
* @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/>
|
|
@@ -34,7 +34,7 @@ export declare const AssigneesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
34
34
|
*/
|
|
35
35
|
export declare const AssigneesApiFp: (configuration?: Configuration) => {
|
|
36
36
|
/**
|
|
37
|
-
* Retrieves a list of distinct assignees from tasks.
|
|
37
|
+
* Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
38
38
|
* @summary List assignees
|
|
39
39
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
40
40
|
* @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/>
|
|
@@ -49,7 +49,7 @@ export declare const AssigneesApiFp: (configuration?: Configuration) => {
|
|
|
49
49
|
*/
|
|
50
50
|
export declare const AssigneesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
51
51
|
/**
|
|
52
|
-
* Retrieves a list of distinct assignees from tasks.
|
|
52
|
+
* Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
53
53
|
* @summary List assignees
|
|
54
54
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
55
55
|
* @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/>
|
|
@@ -85,7 +85,7 @@ export interface AssigneesApiListAssigneesRequest {
|
|
|
85
85
|
*/
|
|
86
86
|
export declare class AssigneesApi extends BaseAPI {
|
|
87
87
|
/**
|
|
88
|
-
* Retrieves a list of distinct assignees from tasks.
|
|
88
|
+
* Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
|
|
89
89
|
* @summary List assignees
|
|
90
90
|
* @param {AssigneesApiListAssigneesRequest} requestParameters Request parameters.
|
|
91
91
|
* @param {*} [options] Override http request option.
|