@emilgroup/task-sdk-node 1.0.1-beta.14 → 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 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.14 --save
20
+ npm install @emilgroup/task-sdk-node@1.0.1-beta.16 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/task-sdk-node@1.0.1-beta.14
24
+ yarn add @emilgroup/task-sdk-node@1.0.1-beta.16
25
25
  ```
26
26
 
27
27
  And then you can import `TasksApi`.
@@ -33,7 +33,7 @@ const FormData = require('form-data');
33
33
  export const AssigneesApiAxiosParamCreator = function (configuration?: Configuration) {
34
34
  return {
35
35
  /**
36
- * Retrieves a list of distinct assignees from tasks.
36
+ * Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
37
37
  * @summary List assignees
38
38
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
39
39
  * @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/>
@@ -89,7 +89,7 @@ export const AssigneesApiFp = function(configuration?: Configuration) {
89
89
  const localVarAxiosParamCreator = AssigneesApiAxiosParamCreator(configuration)
90
90
  return {
91
91
  /**
92
- * Retrieves a list of distinct assignees from tasks.
92
+ * Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
93
93
  * @summary List assignees
94
94
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
95
95
  * @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/>
@@ -111,7 +111,7 @@ export const AssigneesApiFactory = function (configuration?: Configuration, base
111
111
  const localVarFp = AssigneesApiFp(configuration)
112
112
  return {
113
113
  /**
114
- * Retrieves a list of distinct assignees from tasks.
114
+ * Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
115
115
  * @summary List assignees
116
116
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
117
117
  * @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/>
@@ -153,7 +153,7 @@ export interface AssigneesApiListAssigneesRequest {
153
153
  */
154
154
  export class AssigneesApi extends BaseAPI {
155
155
  /**
156
- * Retrieves a list of distinct assignees from tasks.
156
+ * Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
157
157
  * @summary List assignees
158
158
  * @param {AssigneesApiListAssigneesRequest} requestParameters Request parameters.
159
159
  * @param {*} [options] Override http request option.
@@ -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 a category.
46
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
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 a task category by code.
93
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
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
- * Get category by code.
138
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
139
139
  * @summary Retrieve the category
140
140
  * @param {string} code
141
141
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -185,7 +185,7 @@ export const CategoriesApiAxiosParamCreator = function (configuration?: Configur
185
185
  };
186
186
  },
187
187
  /**
188
- * Retrieves a list of categories.
188
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
189
189
  * @summary List categories
190
190
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
191
191
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -261,7 +261,7 @@ export const CategoriesApiAxiosParamCreator = function (configuration?: Configur
261
261
  };
262
262
  },
263
263
  /**
264
- * This will partially update a category by code with the provided fields.
264
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
265
265
  * @summary Update the category
266
266
  * @param {string} code
267
267
  * @param {PatchCategoryRequestDto} patchCategoryRequestDto
@@ -322,7 +322,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
322
322
  const localVarAxiosParamCreator = CategoriesApiAxiosParamCreator(configuration)
323
323
  return {
324
324
  /**
325
- * This will create a category.
325
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
326
326
  * @summary Create the category
327
327
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
328
328
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -334,7 +334,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
334
334
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
335
335
  },
336
336
  /**
337
- * This will delete a task category by code.
337
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
338
338
  * @summary Delete the category
339
339
  * @param {string} code Unique identifier for the object.
340
340
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -346,7 +346,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
346
346
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
347
347
  },
348
348
  /**
349
- * Get category by code.
349
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
350
350
  * @summary Retrieve the category
351
351
  * @param {string} code
352
352
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -359,7 +359,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
359
359
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
360
360
  },
361
361
  /**
362
- * Retrieves a list of categories.
362
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
363
363
  * @summary List categories
364
364
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
365
365
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -377,7 +377,7 @@ export const CategoriesApiFp = function(configuration?: Configuration) {
377
377
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
378
378
  },
379
379
  /**
380
- * This will partially update a category by code with the provided fields.
380
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
381
381
  * @summary Update the category
382
382
  * @param {string} code
383
383
  * @param {PatchCategoryRequestDto} patchCategoryRequestDto
@@ -400,7 +400,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
400
400
  const localVarFp = CategoriesApiFp(configuration)
401
401
  return {
402
402
  /**
403
- * This will create a category.
403
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
404
404
  * @summary Create the category
405
405
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
406
406
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -411,7 +411,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
411
411
  return localVarFp.createCategory(createCategoryRequestDto, authorization, options).then((request) => request(axios, basePath));
412
412
  },
413
413
  /**
414
- * This will delete a task category by code.
414
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
415
415
  * @summary Delete the category
416
416
  * @param {string} code Unique identifier for the object.
417
417
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -422,7 +422,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
422
422
  return localVarFp.deleteCategory(code, authorization, options).then((request) => request(axios, basePath));
423
423
  },
424
424
  /**
425
- * Get category by code.
425
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
426
426
  * @summary Retrieve the category
427
427
  * @param {string} code
428
428
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -434,7 +434,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
434
434
  return localVarFp.getCategory(code, authorization, expand, options).then((request) => request(axios, basePath));
435
435
  },
436
436
  /**
437
- * Retrieves a list of categories.
437
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
438
438
  * @summary List categories
439
439
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
440
440
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -451,7 +451,7 @@ export const CategoriesApiFactory = function (configuration?: Configuration, bas
451
451
  return localVarFp.listCategories(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
452
452
  },
453
453
  /**
454
- * This will partially update a category by code with the provided fields.
454
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
455
455
  * @summary Update the category
456
456
  * @param {string} code
457
457
  * @param {PatchCategoryRequestDto} patchCategoryRequestDto
@@ -634,7 +634,7 @@ export interface CategoriesApiPatchCategoryRequest {
634
634
  */
635
635
  export class CategoriesApi extends BaseAPI {
636
636
  /**
637
- * This will create a category.
637
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
638
638
  * @summary Create the category
639
639
  * @param {CategoriesApiCreateCategoryRequest} requestParameters Request parameters.
640
640
  * @param {*} [options] Override http request option.
@@ -646,7 +646,7 @@ export class CategoriesApi extends BaseAPI {
646
646
  }
647
647
 
648
648
  /**
649
- * This will delete a task category by code.
649
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
650
650
  * @summary Delete the category
651
651
  * @param {CategoriesApiDeleteCategoryRequest} requestParameters Request parameters.
652
652
  * @param {*} [options] Override http request option.
@@ -658,7 +658,7 @@ export class CategoriesApi extends BaseAPI {
658
658
  }
659
659
 
660
660
  /**
661
- * Get category by code.
661
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
662
662
  * @summary Retrieve the category
663
663
  * @param {CategoriesApiGetCategoryRequest} requestParameters Request parameters.
664
664
  * @param {*} [options] Override http request option.
@@ -670,7 +670,7 @@ export class CategoriesApi extends BaseAPI {
670
670
  }
671
671
 
672
672
  /**
673
- * Retrieves a list of categories.
673
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
674
674
  * @summary List categories
675
675
  * @param {CategoriesApiListCategoriesRequest} requestParameters Request parameters.
676
676
  * @param {*} [options] Override http request option.
@@ -682,7 +682,7 @@ export class CategoriesApi extends BaseAPI {
682
682
  }
683
683
 
684
684
  /**
685
- * This will partially update a category by code with the provided fields.
685
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
686
686
  * @summary Update the category
687
687
  * @param {CategoriesApiPatchCategoryRequest} requestParameters Request parameters.
688
688
  * @param {*} [options] Override http request option.
@@ -35,7 +35,7 @@ const FormData = require('form-data');
35
35
  export const HubSpotApiAxiosParamCreator = function (configuration?: Configuration) {
36
36
  return {
37
37
  /**
38
- * This will create hub spot ticket.
38
+ * This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
39
39
  * @summary Create the hub spot ticket
40
40
  * @param {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
41
41
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -92,7 +92,7 @@ export const HubSpotApiFp = function(configuration?: Configuration) {
92
92
  const localVarAxiosParamCreator = HubSpotApiAxiosParamCreator(configuration)
93
93
  return {
94
94
  /**
95
- * This will create hub spot ticket.
95
+ * This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
96
96
  * @summary Create the hub spot ticket
97
97
  * @param {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
98
98
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -114,7 +114,7 @@ export const HubSpotApiFactory = function (configuration?: Configuration, basePa
114
114
  const localVarFp = HubSpotApiFp(configuration)
115
115
  return {
116
116
  /**
117
- * This will create hub spot ticket.
117
+ * This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
118
118
  * @summary Create the hub spot ticket
119
119
  * @param {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
120
120
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -156,7 +156,7 @@ export interface HubSpotApiCreateHubSpotTicketRequest {
156
156
  */
157
157
  export class HubSpotApi extends BaseAPI {
158
158
  /**
159
- * This will create hub spot ticket.
159
+ * This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
160
160
  * @summary Create the hub spot ticket
161
161
  * @param {HubSpotApiCreateHubSpotTicketRequest} requestParameters Request parameters.
162
162
  * @param {*} [options] Override http request option.
@@ -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 a status.
46
+ * This will create a status. **Required Permissions** \"task-management.tasks.create\"
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.
@@ -90,7 +90,7 @@ export const StatusesApiAxiosParamCreator = function (configuration?: Configurat
90
90
  };
91
91
  },
92
92
  /**
93
- * This will delete status.
93
+ * This will delete status. **Required Permissions** \"task-management.tasks.delete\"
94
94
  * @summary Delete the status
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 StatusesApiAxiosParamCreator = function (configuration?: Configurat
135
135
  };
136
136
  },
137
137
  /**
138
- * Get status by code.
138
+ * Get status by code. **Required Permissions** \"task-management.tasks.view\"
139
139
  * @summary Retrieve the status
140
140
  * @param {string} code
141
141
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -185,7 +185,7 @@ export const StatusesApiAxiosParamCreator = function (configuration?: Configurat
185
185
  };
186
186
  },
187
187
  /**
188
- * Retrieves a list of statuses.
188
+ * Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
189
189
  * @summary List statuses
190
190
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
191
191
  * @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>
@@ -251,7 +251,7 @@ export const StatusesApiAxiosParamCreator = function (configuration?: Configurat
251
251
  };
252
252
  },
253
253
  /**
254
- * This will partially update a status by code with the provided fields.
254
+ * This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
255
255
  * @summary Update the status
256
256
  * @param {string} code
257
257
  * @param {PatchStatusRequestDto} patchStatusRequestDto
@@ -312,7 +312,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
312
312
  const localVarAxiosParamCreator = StatusesApiAxiosParamCreator(configuration)
313
313
  return {
314
314
  /**
315
- * This will create a status.
315
+ * This will create a status. **Required Permissions** \"task-management.tasks.create\"
316
316
  * @summary Create the status
317
317
  * @param {CreateStatusRequestDto} createStatusRequestDto
318
318
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -324,7 +324,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
324
324
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
325
325
  },
326
326
  /**
327
- * This will delete status.
327
+ * This will delete status. **Required Permissions** \"task-management.tasks.delete\"
328
328
  * @summary Delete the status
329
329
  * @param {string} code Unique identifier for the object.
330
330
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -336,7 +336,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
336
336
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
337
337
  },
338
338
  /**
339
- * Get status by code.
339
+ * Get status by code. **Required Permissions** \"task-management.tasks.view\"
340
340
  * @summary Retrieve the status
341
341
  * @param {string} code
342
342
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -349,7 +349,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
349
349
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
350
350
  },
351
351
  /**
352
- * Retrieves a list of statuses.
352
+ * Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
353
353
  * @summary List statuses
354
354
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
355
355
  * @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>
@@ -365,7 +365,7 @@ export const StatusesApiFp = function(configuration?: Configuration) {
365
365
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
366
366
  },
367
367
  /**
368
- * This will partially update a status by code with the provided fields.
368
+ * This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
369
369
  * @summary Update the status
370
370
  * @param {string} code
371
371
  * @param {PatchStatusRequestDto} patchStatusRequestDto
@@ -388,7 +388,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
388
388
  const localVarFp = StatusesApiFp(configuration)
389
389
  return {
390
390
  /**
391
- * This will create a status.
391
+ * This will create a status. **Required Permissions** \"task-management.tasks.create\"
392
392
  * @summary Create the status
393
393
  * @param {CreateStatusRequestDto} createStatusRequestDto
394
394
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -399,7 +399,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
399
399
  return localVarFp.createStatus(createStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
400
400
  },
401
401
  /**
402
- * This will delete status.
402
+ * This will delete status. **Required Permissions** \"task-management.tasks.delete\"
403
403
  * @summary Delete the status
404
404
  * @param {string} code Unique identifier for the object.
405
405
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -410,7 +410,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
410
410
  return localVarFp.deleteStatus(code, authorization, options).then((request) => request(axios, basePath));
411
411
  },
412
412
  /**
413
- * Get status by code.
413
+ * Get status by code. **Required Permissions** \"task-management.tasks.view\"
414
414
  * @summary Retrieve the status
415
415
  * @param {string} code
416
416
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -422,7 +422,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
422
422
  return localVarFp.getStatus(code, authorization, expand, options).then((request) => request(axios, basePath));
423
423
  },
424
424
  /**
425
- * Retrieves a list of statuses.
425
+ * Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
426
426
  * @summary List statuses
427
427
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
428
428
  * @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>
@@ -437,7 +437,7 @@ export const StatusesApiFactory = function (configuration?: Configuration, baseP
437
437
  return localVarFp.listStatuses(authorization, filter, filters, search, order, expand, options).then((request) => request(axios, basePath));
438
438
  },
439
439
  /**
440
- * This will partially update a status by code with the provided fields.
440
+ * This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
441
441
  * @summary Update the status
442
442
  * @param {string} code
443
443
  * @param {PatchStatusRequestDto} patchStatusRequestDto
@@ -606,7 +606,7 @@ export interface StatusesApiPatchStatusRequest {
606
606
  */
607
607
  export class StatusesApi extends BaseAPI {
608
608
  /**
609
- * This will create a status.
609
+ * This will create a status. **Required Permissions** \"task-management.tasks.create\"
610
610
  * @summary Create the status
611
611
  * @param {StatusesApiCreateStatusRequest} requestParameters Request parameters.
612
612
  * @param {*} [options] Override http request option.
@@ -618,7 +618,7 @@ export class StatusesApi extends BaseAPI {
618
618
  }
619
619
 
620
620
  /**
621
- * This will delete status.
621
+ * This will delete status. **Required Permissions** \"task-management.tasks.delete\"
622
622
  * @summary Delete the status
623
623
  * @param {StatusesApiDeleteStatusRequest} requestParameters Request parameters.
624
624
  * @param {*} [options] Override http request option.
@@ -630,7 +630,7 @@ export class StatusesApi extends BaseAPI {
630
630
  }
631
631
 
632
632
  /**
633
- * Get status by code.
633
+ * Get status by code. **Required Permissions** \"task-management.tasks.view\"
634
634
  * @summary Retrieve the status
635
635
  * @param {StatusesApiGetStatusRequest} requestParameters Request parameters.
636
636
  * @param {*} [options] Override http request option.
@@ -642,7 +642,7 @@ export class StatusesApi extends BaseAPI {
642
642
  }
643
643
 
644
644
  /**
645
- * Retrieves a list of statuses.
645
+ * Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
646
646
  * @summary List statuses
647
647
  * @param {StatusesApiListStatusesRequest} requestParameters Request parameters.
648
648
  * @param {*} [options] Override http request option.
@@ -654,7 +654,7 @@ export class StatusesApi extends BaseAPI {
654
654
  }
655
655
 
656
656
  /**
657
- * This will partially update a status by code with the provided fields.
657
+ * This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
658
658
  * @summary Update the status
659
659
  * @param {StatusesApiPatchStatusRequest} requestParameters Request parameters.
660
660
  * @param {*} [options] Override http request option.