@emilgroup/task-sdk-node 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.
@@ -97,7 +97,7 @@ var AssigneesApiAxiosParamCreator = function (configuration) {
97
97
  var _this = this;
98
98
  return {
99
99
  /**
100
- * Retrieves a list of distinct assignees from tasks.
100
+ * Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
101
101
  * @summary List assignees
102
102
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
103
103
  * @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/>
@@ -155,7 +155,7 @@ var AssigneesApiFp = function (configuration) {
155
155
  var localVarAxiosParamCreator = (0, exports.AssigneesApiAxiosParamCreator)(configuration);
156
156
  return {
157
157
  /**
158
- * Retrieves a list of distinct assignees from tasks.
158
+ * Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
159
159
  * @summary List assignees
160
160
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
161
161
  * @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/>
@@ -186,7 +186,7 @@ var AssigneesApiFactory = function (configuration, basePath, axios) {
186
186
  var localVarFp = (0, exports.AssigneesApiFp)(configuration);
187
187
  return {
188
188
  /**
189
- * Retrieves a list of distinct assignees from tasks.
189
+ * Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
190
190
  * @summary List assignees
191
191
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
192
192
  * @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/>
@@ -211,7 +211,7 @@ var AssigneesApi = /** @class */ (function (_super) {
211
211
  return _super !== null && _super.apply(this, arguments) || this;
212
212
  }
213
213
  /**
214
- * Retrieves a list of distinct assignees from tasks.
214
+ * Retrieves a list of distinct assignees from tasks. **Required Permissions** \"task-management.tasks.view\"
215
215
  * @summary List assignees
216
216
  * @param {AssigneesApiListAssigneesRequest} requestParameters Request parameters.
217
217
  * @param {*} [options] Override http request option.
@@ -24,7 +24,7 @@ import { PatchCategoryResponseClass } from '../models';
24
24
  */
25
25
  export declare const CategoriesApiAxiosParamCreator: (configuration?: Configuration) => {
26
26
  /**
27
- * This will create a category.
27
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
28
28
  * @summary Create the category
29
29
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
30
30
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -33,7 +33,7 @@ export declare const CategoriesApiAxiosParamCreator: (configuration?: Configurat
33
33
  */
34
34
  createCategory: (createCategoryRequestDto: CreateCategoryRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
35
35
  /**
36
- * This will delete a task category by code.
36
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
37
37
  * @summary Delete the category
38
38
  * @param {string} code Unique identifier for the object.
39
39
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -42,7 +42,7 @@ export declare const CategoriesApiAxiosParamCreator: (configuration?: Configurat
42
42
  */
43
43
  deleteCategory: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
44
44
  /**
45
- * Get category by code.
45
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
46
46
  * @summary Retrieve the category
47
47
  * @param {string} code
48
48
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -52,7 +52,7 @@ export declare const CategoriesApiAxiosParamCreator: (configuration?: Configurat
52
52
  */
53
53
  getCategory: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
54
54
  /**
55
- * Retrieves a list of categories.
55
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
56
56
  * @summary List categories
57
57
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
58
58
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -67,7 +67,7 @@ export declare const CategoriesApiAxiosParamCreator: (configuration?: Configurat
67
67
  */
68
68
  listCategories: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
69
69
  /**
70
- * This will partially update a category by code with the provided fields.
70
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
71
71
  * @summary Update the category
72
72
  * @param {string} code
73
73
  * @param {PatchCategoryRequestDto} patchCategoryRequestDto
@@ -83,7 +83,7 @@ export declare const CategoriesApiAxiosParamCreator: (configuration?: Configurat
83
83
  */
84
84
  export declare const CategoriesApiFp: (configuration?: Configuration) => {
85
85
  /**
86
- * This will create a category.
86
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
87
87
  * @summary Create the category
88
88
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
89
89
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -92,7 +92,7 @@ export declare const CategoriesApiFp: (configuration?: Configuration) => {
92
92
  */
93
93
  createCategory(createCategoryRequestDto: CreateCategoryRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateCategoryResponseClass>>;
94
94
  /**
95
- * This will delete a task category by code.
95
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
96
96
  * @summary Delete the category
97
97
  * @param {string} code Unique identifier for the object.
98
98
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -101,7 +101,7 @@ export declare const CategoriesApiFp: (configuration?: Configuration) => {
101
101
  */
102
102
  deleteCategory(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
103
103
  /**
104
- * Get category by code.
104
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
105
105
  * @summary Retrieve the category
106
106
  * @param {string} code
107
107
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -111,7 +111,7 @@ export declare const CategoriesApiFp: (configuration?: Configuration) => {
111
111
  */
112
112
  getCategory(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCategoryResponseClass>>;
113
113
  /**
114
- * Retrieves a list of categories.
114
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
115
115
  * @summary List categories
116
116
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
117
117
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -126,7 +126,7 @@ export declare const CategoriesApiFp: (configuration?: Configuration) => {
126
126
  */
127
127
  listCategories(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCategoriesResponseClass>>;
128
128
  /**
129
- * This will partially update a category by code with the provided fields.
129
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
130
130
  * @summary Update the category
131
131
  * @param {string} code
132
132
  * @param {PatchCategoryRequestDto} patchCategoryRequestDto
@@ -142,7 +142,7 @@ export declare const CategoriesApiFp: (configuration?: Configuration) => {
142
142
  */
143
143
  export declare const CategoriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
144
144
  /**
145
- * This will create a category.
145
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
146
146
  * @summary Create the category
147
147
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
148
148
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -151,7 +151,7 @@ export declare const CategoriesApiFactory: (configuration?: Configuration, baseP
151
151
  */
152
152
  createCategory(createCategoryRequestDto: CreateCategoryRequestDto, authorization?: string, options?: any): AxiosPromise<CreateCategoryResponseClass>;
153
153
  /**
154
- * This will delete a task category by code.
154
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
155
155
  * @summary Delete the category
156
156
  * @param {string} code Unique identifier for the object.
157
157
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -160,7 +160,7 @@ export declare const CategoriesApiFactory: (configuration?: Configuration, baseP
160
160
  */
161
161
  deleteCategory(code: string, authorization?: string, options?: any): AxiosPromise<void>;
162
162
  /**
163
- * Get category by code.
163
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
164
164
  * @summary Retrieve the category
165
165
  * @param {string} code
166
166
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -170,7 +170,7 @@ export declare const CategoriesApiFactory: (configuration?: Configuration, baseP
170
170
  */
171
171
  getCategory(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetCategoryResponseClass>;
172
172
  /**
173
- * Retrieves a list of categories.
173
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
174
174
  * @summary List categories
175
175
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
176
176
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -185,7 +185,7 @@ export declare const CategoriesApiFactory: (configuration?: Configuration, baseP
185
185
  */
186
186
  listCategories(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListCategoriesResponseClass>;
187
187
  /**
188
- * This will partially update a category by code with the provided fields.
188
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
189
189
  * @summary Update the category
190
190
  * @param {string} code
191
191
  * @param {PatchCategoryRequestDto} patchCategoryRequestDto
@@ -346,7 +346,7 @@ export interface CategoriesApiPatchCategoryRequest {
346
346
  */
347
347
  export declare class CategoriesApi extends BaseAPI {
348
348
  /**
349
- * This will create a category.
349
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
350
350
  * @summary Create the category
351
351
  * @param {CategoriesApiCreateCategoryRequest} requestParameters Request parameters.
352
352
  * @param {*} [options] Override http request option.
@@ -355,7 +355,7 @@ export declare class CategoriesApi extends BaseAPI {
355
355
  */
356
356
  createCategory(requestParameters: CategoriesApiCreateCategoryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCategoryResponseClass, any, {}>>;
357
357
  /**
358
- * This will delete a task category by code.
358
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
359
359
  * @summary Delete the category
360
360
  * @param {CategoriesApiDeleteCategoryRequest} requestParameters Request parameters.
361
361
  * @param {*} [options] Override http request option.
@@ -364,7 +364,7 @@ export declare class CategoriesApi extends BaseAPI {
364
364
  */
365
365
  deleteCategory(requestParameters: CategoriesApiDeleteCategoryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
366
366
  /**
367
- * Get category by code.
367
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
368
368
  * @summary Retrieve the category
369
369
  * @param {CategoriesApiGetCategoryRequest} requestParameters Request parameters.
370
370
  * @param {*} [options] Override http request option.
@@ -373,7 +373,7 @@ export declare class CategoriesApi extends BaseAPI {
373
373
  */
374
374
  getCategory(requestParameters: CategoriesApiGetCategoryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCategoryResponseClass, any, {}>>;
375
375
  /**
376
- * Retrieves a list of categories.
376
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
377
377
  * @summary List categories
378
378
  * @param {CategoriesApiListCategoriesRequest} requestParameters Request parameters.
379
379
  * @param {*} [options] Override http request option.
@@ -382,7 +382,7 @@ export declare class CategoriesApi extends BaseAPI {
382
382
  */
383
383
  listCategories(requestParameters?: CategoriesApiListCategoriesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCategoriesResponseClass, any, {}>>;
384
384
  /**
385
- * This will partially update a category by code with the provided fields.
385
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
386
386
  * @summary Update the category
387
387
  * @param {CategoriesApiPatchCategoryRequest} requestParameters Request parameters.
388
388
  * @param {*} [options] Override http request option.
@@ -97,7 +97,7 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
97
97
  var _this = this;
98
98
  return {
99
99
  /**
100
- * This will create a category.
100
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
101
101
  * @summary Create the category
102
102
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
103
103
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -146,7 +146,7 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
146
146
  });
147
147
  },
148
148
  /**
149
- * This will delete a task category by code.
149
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
150
150
  * @summary Delete the category
151
151
  * @param {string} code Unique identifier for the object.
152
152
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -194,7 +194,7 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
194
194
  });
195
195
  },
196
196
  /**
197
- * Get category by code.
197
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
198
198
  * @summary Retrieve the category
199
199
  * @param {string} code
200
200
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -246,7 +246,7 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
246
246
  });
247
247
  },
248
248
  /**
249
- * Retrieves a list of categories.
249
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
250
250
  * @summary List categories
251
251
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
252
252
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -318,7 +318,7 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
318
318
  });
319
319
  },
320
320
  /**
321
- * This will partially update a category by code with the provided fields.
321
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
322
322
  * @summary Update the category
323
323
  * @param {string} code
324
324
  * @param {PatchCategoryRequestDto} patchCategoryRequestDto
@@ -381,7 +381,7 @@ var CategoriesApiFp = function (configuration) {
381
381
  var localVarAxiosParamCreator = (0, exports.CategoriesApiAxiosParamCreator)(configuration);
382
382
  return {
383
383
  /**
384
- * This will create a category.
384
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
385
385
  * @summary Create the category
386
386
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
387
387
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -402,7 +402,7 @@ var CategoriesApiFp = function (configuration) {
402
402
  });
403
403
  },
404
404
  /**
405
- * This will delete a task category by code.
405
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
406
406
  * @summary Delete the category
407
407
  * @param {string} code Unique identifier for the object.
408
408
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -423,7 +423,7 @@ var CategoriesApiFp = function (configuration) {
423
423
  });
424
424
  },
425
425
  /**
426
- * Get category by code.
426
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
427
427
  * @summary Retrieve the category
428
428
  * @param {string} code
429
429
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -445,7 +445,7 @@ var CategoriesApiFp = function (configuration) {
445
445
  });
446
446
  },
447
447
  /**
448
- * Retrieves a list of categories.
448
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
449
449
  * @summary List categories
450
450
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
451
451
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -472,7 +472,7 @@ var CategoriesApiFp = function (configuration) {
472
472
  });
473
473
  },
474
474
  /**
475
- * This will partially update a category by code with the provided fields.
475
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
476
476
  * @summary Update the category
477
477
  * @param {string} code
478
478
  * @param {PatchCategoryRequestDto} patchCategoryRequestDto
@@ -504,7 +504,7 @@ var CategoriesApiFactory = function (configuration, basePath, axios) {
504
504
  var localVarFp = (0, exports.CategoriesApiFp)(configuration);
505
505
  return {
506
506
  /**
507
- * This will create a category.
507
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
508
508
  * @summary Create the category
509
509
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
510
510
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -515,7 +515,7 @@ var CategoriesApiFactory = function (configuration, basePath, axios) {
515
515
  return localVarFp.createCategory(createCategoryRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
516
516
  },
517
517
  /**
518
- * This will delete a task category by code.
518
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
519
519
  * @summary Delete the category
520
520
  * @param {string} code Unique identifier for the object.
521
521
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -526,7 +526,7 @@ var CategoriesApiFactory = function (configuration, basePath, axios) {
526
526
  return localVarFp.deleteCategory(code, authorization, options).then(function (request) { return request(axios, basePath); });
527
527
  },
528
528
  /**
529
- * Get category by code.
529
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
530
530
  * @summary Retrieve the category
531
531
  * @param {string} code
532
532
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -538,7 +538,7 @@ var CategoriesApiFactory = function (configuration, basePath, axios) {
538
538
  return localVarFp.getCategory(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
539
539
  },
540
540
  /**
541
- * Retrieves a list of categories.
541
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
542
542
  * @summary List categories
543
543
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
544
544
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -555,7 +555,7 @@ var CategoriesApiFactory = function (configuration, basePath, axios) {
555
555
  return localVarFp.listCategories(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
556
556
  },
557
557
  /**
558
- * This will partially update a category by code with the provided fields.
558
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
559
559
  * @summary Update the category
560
560
  * @param {string} code
561
561
  * @param {PatchCategoryRequestDto} patchCategoryRequestDto
@@ -581,7 +581,7 @@ var CategoriesApi = /** @class */ (function (_super) {
581
581
  return _super !== null && _super.apply(this, arguments) || this;
582
582
  }
583
583
  /**
584
- * This will create a category.
584
+ * This will create a category. **Required Permissions** \"task-management.tasks.create\"
585
585
  * @summary Create the category
586
586
  * @param {CategoriesApiCreateCategoryRequest} requestParameters Request parameters.
587
587
  * @param {*} [options] Override http request option.
@@ -593,7 +593,7 @@ var CategoriesApi = /** @class */ (function (_super) {
593
593
  return (0, exports.CategoriesApiFp)(this.configuration).createCategory(requestParameters.createCategoryRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
594
594
  };
595
595
  /**
596
- * This will delete a task category by code.
596
+ * This will delete a task category by code. **Required Permissions** \"task-management.tasks.delete\"
597
597
  * @summary Delete the category
598
598
  * @param {CategoriesApiDeleteCategoryRequest} requestParameters Request parameters.
599
599
  * @param {*} [options] Override http request option.
@@ -605,7 +605,7 @@ var CategoriesApi = /** @class */ (function (_super) {
605
605
  return (0, exports.CategoriesApiFp)(this.configuration).deleteCategory(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
606
606
  };
607
607
  /**
608
- * Get category by code.
608
+ * Get category by code. **Required Permissions** \"task-management.tasks.view\"
609
609
  * @summary Retrieve the category
610
610
  * @param {CategoriesApiGetCategoryRequest} requestParameters Request parameters.
611
611
  * @param {*} [options] Override http request option.
@@ -617,7 +617,7 @@ var CategoriesApi = /** @class */ (function (_super) {
617
617
  return (0, exports.CategoriesApiFp)(this.configuration).getCategory(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
618
618
  };
619
619
  /**
620
- * Retrieves a list of categories.
620
+ * Retrieves a list of categories. **Required Permissions** \"task-management.tasks.view\"
621
621
  * @summary List categories
622
622
  * @param {CategoriesApiListCategoriesRequest} requestParameters Request parameters.
623
623
  * @param {*} [options] Override http request option.
@@ -630,7 +630,7 @@ var CategoriesApi = /** @class */ (function (_super) {
630
630
  return (0, exports.CategoriesApiFp)(this.configuration).listCategories(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
631
631
  };
632
632
  /**
633
- * This will partially update a category by code with the provided fields.
633
+ * This will partially update a category by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
634
634
  * @summary Update the category
635
635
  * @param {CategoriesApiPatchCategoryRequest} requestParameters Request parameters.
636
636
  * @param {*} [options] Override http request option.
@@ -20,7 +20,7 @@ import { CreateHubSpotTicketResponseClass } from '../models';
20
20
  */
21
21
  export declare const HubSpotApiAxiosParamCreator: (configuration?: Configuration) => {
22
22
  /**
23
- * This will create hub spot ticket.
23
+ * This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
24
24
  * @summary Create the hub spot ticket
25
25
  * @param {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
26
26
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -35,7 +35,7 @@ export declare const HubSpotApiAxiosParamCreator: (configuration?: Configuration
35
35
  */
36
36
  export declare const HubSpotApiFp: (configuration?: Configuration) => {
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.
@@ -50,7 +50,7 @@ export declare const HubSpotApiFp: (configuration?: Configuration) => {
50
50
  */
51
51
  export declare const HubSpotApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
52
52
  /**
53
- * This will create hub spot ticket.
53
+ * This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
54
54
  * @summary Create the hub spot ticket
55
55
  * @param {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
56
56
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -86,7 +86,7 @@ export interface HubSpotApiCreateHubSpotTicketRequest {
86
86
  */
87
87
  export declare class HubSpotApi extends BaseAPI {
88
88
  /**
89
- * This will create hub spot ticket.
89
+ * This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
90
90
  * @summary Create the hub spot ticket
91
91
  * @param {HubSpotApiCreateHubSpotTicketRequest} requestParameters Request parameters.
92
92
  * @param {*} [options] Override http request option.
@@ -97,7 +97,7 @@ var HubSpotApiAxiosParamCreator = function (configuration) {
97
97
  var _this = this;
98
98
  return {
99
99
  /**
100
- * This will create hub spot ticket.
100
+ * This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
101
101
  * @summary Create the hub spot ticket
102
102
  * @param {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
103
103
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -156,7 +156,7 @@ var HubSpotApiFp = function (configuration) {
156
156
  var localVarAxiosParamCreator = (0, exports.HubSpotApiAxiosParamCreator)(configuration);
157
157
  return {
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 {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
162
162
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -187,7 +187,7 @@ var HubSpotApiFactory = function (configuration, basePath, axios) {
187
187
  var localVarFp = (0, exports.HubSpotApiFp)(configuration);
188
188
  return {
189
189
  /**
190
- * This will create hub spot ticket.
190
+ * This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
191
191
  * @summary Create the hub spot ticket
192
192
  * @param {CreateHubSpotTicketRequestDto} createHubSpotTicketRequestDto
193
193
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -212,7 +212,7 @@ var HubSpotApi = /** @class */ (function (_super) {
212
212
  return _super !== null && _super.apply(this, arguments) || this;
213
213
  }
214
214
  /**
215
- * This will create hub spot ticket.
215
+ * This will create hub spot ticket. **Required Permissions** \"task-management.tasks.create\"
216
216
  * @summary Create the hub spot ticket
217
217
  * @param {HubSpotApiCreateHubSpotTicketRequest} requestParameters Request parameters.
218
218
  * @param {*} [options] Override http request option.
@@ -24,7 +24,7 @@ import { PatchStatusResponseClass } from '../models';
24
24
  */
25
25
  export declare const StatusesApiAxiosParamCreator: (configuration?: Configuration) => {
26
26
  /**
27
- * This will create a status.
27
+ * This will create a status. **Required Permissions** \"task-management.tasks.create\"
28
28
  * @summary Create the status
29
29
  * @param {CreateStatusRequestDto} createStatusRequestDto
30
30
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -33,7 +33,7 @@ export declare const StatusesApiAxiosParamCreator: (configuration?: Configuratio
33
33
  */
34
34
  createStatus: (createStatusRequestDto: CreateStatusRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
35
35
  /**
36
- * This will delete status.
36
+ * This will delete status. **Required Permissions** \"task-management.tasks.delete\"
37
37
  * @summary Delete the status
38
38
  * @param {string} code Unique identifier for the object.
39
39
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -42,7 +42,7 @@ export declare const StatusesApiAxiosParamCreator: (configuration?: Configuratio
42
42
  */
43
43
  deleteStatus: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
44
44
  /**
45
- * Get status by code.
45
+ * Get status by code. **Required Permissions** \"task-management.tasks.view\"
46
46
  * @summary Retrieve the status
47
47
  * @param {string} code
48
48
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -52,7 +52,7 @@ export declare const StatusesApiAxiosParamCreator: (configuration?: Configuratio
52
52
  */
53
53
  getStatus: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
54
54
  /**
55
- * Retrieves a list of statuses.
55
+ * Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
56
56
  * @summary List statuses
57
57
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
58
58
  * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, slug, name, createdAt, updatedAt&lt;/i&gt;
@@ -65,7 +65,7 @@ export declare const StatusesApiAxiosParamCreator: (configuration?: Configuratio
65
65
  */
66
66
  listStatuses: (authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
67
67
  /**
68
- * This will partially update a status by code with the provided fields.
68
+ * This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
69
69
  * @summary Update the status
70
70
  * @param {string} code
71
71
  * @param {PatchStatusRequestDto} patchStatusRequestDto
@@ -81,7 +81,7 @@ export declare const StatusesApiAxiosParamCreator: (configuration?: Configuratio
81
81
  */
82
82
  export declare const StatusesApiFp: (configuration?: Configuration) => {
83
83
  /**
84
- * This will create a status.
84
+ * This will create a status. **Required Permissions** \"task-management.tasks.create\"
85
85
  * @summary Create the status
86
86
  * @param {CreateStatusRequestDto} createStatusRequestDto
87
87
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -90,7 +90,7 @@ export declare const StatusesApiFp: (configuration?: Configuration) => {
90
90
  */
91
91
  createStatus(createStatusRequestDto: CreateStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateStatusResponseClass>>;
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.
@@ -99,7 +99,7 @@ export declare const StatusesApiFp: (configuration?: Configuration) => {
99
99
  */
100
100
  deleteStatus(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
101
101
  /**
102
- * Get status by code.
102
+ * Get status by code. **Required Permissions** \"task-management.tasks.view\"
103
103
  * @summary Retrieve the status
104
104
  * @param {string} code
105
105
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -109,7 +109,7 @@ export declare const StatusesApiFp: (configuration?: Configuration) => {
109
109
  */
110
110
  getStatus(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetStatusResponseClass>>;
111
111
  /**
112
- * Retrieves a list of statuses.
112
+ * Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
113
113
  * @summary List statuses
114
114
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
115
115
  * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, slug, name, createdAt, updatedAt&lt;/i&gt;
@@ -122,7 +122,7 @@ export declare const StatusesApiFp: (configuration?: Configuration) => {
122
122
  */
123
123
  listStatuses(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListStatusesResponseClass>>;
124
124
  /**
125
- * This will partially update a status by code with the provided fields.
125
+ * This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
126
126
  * @summary Update the status
127
127
  * @param {string} code
128
128
  * @param {PatchStatusRequestDto} patchStatusRequestDto
@@ -138,7 +138,7 @@ export declare const StatusesApiFp: (configuration?: Configuration) => {
138
138
  */
139
139
  export declare const StatusesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
140
140
  /**
141
- * This will create a status.
141
+ * This will create a status. **Required Permissions** \"task-management.tasks.create\"
142
142
  * @summary Create the status
143
143
  * @param {CreateStatusRequestDto} createStatusRequestDto
144
144
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -147,7 +147,7 @@ export declare const StatusesApiFactory: (configuration?: Configuration, basePat
147
147
  */
148
148
  createStatus(createStatusRequestDto: CreateStatusRequestDto, authorization?: string, options?: any): AxiosPromise<CreateStatusResponseClass>;
149
149
  /**
150
- * This will delete status.
150
+ * This will delete status. **Required Permissions** \"task-management.tasks.delete\"
151
151
  * @summary Delete the status
152
152
  * @param {string} code Unique identifier for the object.
153
153
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -156,7 +156,7 @@ export declare const StatusesApiFactory: (configuration?: Configuration, basePat
156
156
  */
157
157
  deleteStatus(code: string, authorization?: string, options?: any): AxiosPromise<void>;
158
158
  /**
159
- * Get status by code.
159
+ * Get status by code. **Required Permissions** \"task-management.tasks.view\"
160
160
  * @summary Retrieve the status
161
161
  * @param {string} code
162
162
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -166,7 +166,7 @@ export declare const StatusesApiFactory: (configuration?: Configuration, basePat
166
166
  */
167
167
  getStatus(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetStatusResponseClass>;
168
168
  /**
169
- * Retrieves a list of statuses.
169
+ * Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
170
170
  * @summary List statuses
171
171
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
172
172
  * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, slug, name, createdAt, updatedAt&lt;/i&gt;
@@ -179,7 +179,7 @@ export declare const StatusesApiFactory: (configuration?: Configuration, basePat
179
179
  */
180
180
  listStatuses(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListStatusesResponseClass>;
181
181
  /**
182
- * This will partially update a status by code with the provided fields.
182
+ * This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
183
183
  * @summary Update the status
184
184
  * @param {string} code
185
185
  * @param {PatchStatusRequestDto} patchStatusRequestDto
@@ -328,7 +328,7 @@ export interface StatusesApiPatchStatusRequest {
328
328
  */
329
329
  export declare class StatusesApi extends BaseAPI {
330
330
  /**
331
- * This will create a status.
331
+ * This will create a status. **Required Permissions** \"task-management.tasks.create\"
332
332
  * @summary Create the status
333
333
  * @param {StatusesApiCreateStatusRequest} requestParameters Request parameters.
334
334
  * @param {*} [options] Override http request option.
@@ -337,7 +337,7 @@ export declare class StatusesApi extends BaseAPI {
337
337
  */
338
338
  createStatus(requestParameters: StatusesApiCreateStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateStatusResponseClass, any, {}>>;
339
339
  /**
340
- * This will delete status.
340
+ * This will delete status. **Required Permissions** \"task-management.tasks.delete\"
341
341
  * @summary Delete the status
342
342
  * @param {StatusesApiDeleteStatusRequest} requestParameters Request parameters.
343
343
  * @param {*} [options] Override http request option.
@@ -346,7 +346,7 @@ export declare class StatusesApi extends BaseAPI {
346
346
  */
347
347
  deleteStatus(requestParameters: StatusesApiDeleteStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
348
348
  /**
349
- * Get status by code.
349
+ * Get status by code. **Required Permissions** \"task-management.tasks.view\"
350
350
  * @summary Retrieve the status
351
351
  * @param {StatusesApiGetStatusRequest} requestParameters Request parameters.
352
352
  * @param {*} [options] Override http request option.
@@ -355,7 +355,7 @@ export declare class StatusesApi extends BaseAPI {
355
355
  */
356
356
  getStatus(requestParameters: StatusesApiGetStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetStatusResponseClass, any, {}>>;
357
357
  /**
358
- * Retrieves a list of statuses.
358
+ * Retrieves a list of statuses. **Required Permissions** \"task-management.tasks.view\"
359
359
  * @summary List statuses
360
360
  * @param {StatusesApiListStatusesRequest} requestParameters Request parameters.
361
361
  * @param {*} [options] Override http request option.
@@ -364,7 +364,7 @@ export declare class StatusesApi extends BaseAPI {
364
364
  */
365
365
  listStatuses(requestParameters?: StatusesApiListStatusesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListStatusesResponseClass, any, {}>>;
366
366
  /**
367
- * This will partially update a status by code with the provided fields.
367
+ * This will partially update a status by code with the provided fields. **Required Permissions** \"task-management.tasks.update\"
368
368
  * @summary Update the status
369
369
  * @param {StatusesApiPatchStatusRequest} requestParameters Request parameters.
370
370
  * @param {*} [options] Override http request option.