@emilgroup/task-sdk-node 1.0.1-beta.1 → 1.0.1-beta.10

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.
Files changed (68) hide show
  1. package/.openapi-generator/FILES +6 -11
  2. package/README.md +2 -2
  3. package/api/categories-api.ts +74 -60
  4. package/api/statuses-api.ts +70 -56
  5. package/api/tasks-api.ts +105 -63
  6. package/api.ts +0 -2
  7. package/dist/api/categories-api.d.ts +58 -49
  8. package/dist/api/categories-api.js +53 -47
  9. package/dist/api/statuses-api.d.ts +54 -45
  10. package/dist/api/statuses-api.js +49 -43
  11. package/dist/api/tasks-api.d.ts +77 -50
  12. package/dist/api/tasks-api.js +66 -48
  13. package/dist/api.d.ts +0 -1
  14. package/dist/api.js +0 -1
  15. package/dist/models/category-class.d.ts +6 -0
  16. package/dist/models/create-category-request-dto.d.ts +7 -1
  17. package/dist/models/create-status-request-dto.d.ts +7 -1
  18. package/dist/models/create-task-request-dto.d.ts +31 -13
  19. package/dist/models/create-task-request-dto.js +6 -0
  20. package/dist/models/index.d.ts +6 -10
  21. package/dist/models/index.js +6 -10
  22. package/dist/models/patch-category-request-dto.d.ts +36 -0
  23. package/dist/models/{update-category-response-class.d.ts → patch-category-response-class.d.ts} +3 -3
  24. package/dist/models/{update-status-request-dto.d.ts → patch-status-request-dto.d.ts} +13 -7
  25. package/dist/models/{update-status-response-class.d.ts → patch-status-response-class.d.ts} +3 -3
  26. package/dist/models/patch-task-request-dto.d.ts +108 -0
  27. package/dist/models/{update-task-response-class.d.ts → patch-task-response-class.d.ts} +3 -3
  28. package/dist/models/status-class.d.ts +6 -0
  29. package/dist/models/task-class.d.ts +25 -8
  30. package/dist/models/task-class.js +6 -0
  31. package/models/category-class.ts +6 -0
  32. package/models/create-category-request-dto.ts +7 -1
  33. package/models/create-status-request-dto.ts +7 -1
  34. package/models/create-task-request-dto.ts +34 -13
  35. package/models/index.ts +6 -10
  36. package/models/{update-category-request-dto.ts → patch-category-request-dto.ts} +13 -7
  37. package/models/{update-category-response-class.ts → patch-category-response-class.ts} +3 -3
  38. package/models/{update-status-request-dto.ts → patch-status-request-dto.ts} +13 -7
  39. package/models/{update-status-response-class.ts → patch-status-response-class.ts} +3 -3
  40. package/models/patch-task-request-dto.ts +114 -0
  41. package/models/{update-task-response-class.ts → patch-task-response-class.ts} +3 -3
  42. package/models/status-class.ts +6 -0
  43. package/models/task-class.ts +28 -8
  44. package/package.json +1 -1
  45. package/api/priorities-api.ts +0 -288
  46. package/dist/api/priorities-api.d.ts +0 -162
  47. package/dist/api/priorities-api.js +0 -328
  48. package/dist/models/create-priority-request-dto.d.ts +0 -24
  49. package/dist/models/create-priority-response-class.d.ts +0 -25
  50. package/dist/models/get-priority-response-class.d.ts +0 -25
  51. package/dist/models/priority-class.d.ts +0 -60
  52. package/dist/models/update-category-request-dto.d.ts +0 -30
  53. package/dist/models/update-status-request-dto.js +0 -15
  54. package/dist/models/update-status-response-class.js +0 -15
  55. package/dist/models/update-task-request-dto.d.ts +0 -60
  56. package/dist/models/update-task-request-dto.js +0 -15
  57. package/dist/models/update-task-response-class.js +0 -15
  58. package/models/create-priority-request-dto.ts +0 -30
  59. package/models/create-priority-response-class.ts +0 -31
  60. package/models/get-priority-response-class.ts +0 -31
  61. package/models/priority-class.ts +0 -66
  62. package/models/update-task-request-dto.ts +0 -66
  63. /package/dist/models/{create-priority-request-dto.js → patch-category-request-dto.js} +0 -0
  64. /package/dist/models/{create-priority-response-class.js → patch-category-response-class.js} +0 -0
  65. /package/dist/models/{get-priority-response-class.js → patch-status-request-dto.js} +0 -0
  66. /package/dist/models/{priority-class.js → patch-status-response-class.js} +0 -0
  67. /package/dist/models/{update-category-request-dto.js → patch-task-request-dto.js} +0 -0
  68. /package/dist/models/{update-category-response-class.js → patch-task-response-class.js} +0 -0
@@ -16,15 +16,15 @@ import { CreateCategoryRequestDto } from '../models';
16
16
  import { CreateCategoryResponseClass } from '../models';
17
17
  import { GetCategoryResponseClass } from '../models';
18
18
  import { ListCategoriesResponseClass } from '../models';
19
- import { UpdateCategoryRequestDto } from '../models';
20
- import { UpdateCategoryResponseClass } from '../models';
19
+ import { PatchCategoryRequestDto } from '../models';
20
+ import { PatchCategoryResponseClass } from '../models';
21
21
  /**
22
22
  * CategoriesApi - axios parameter creator
23
23
  * @export
24
24
  */
25
25
  export declare const CategoriesApiAxiosParamCreator: (configuration?: Configuration) => {
26
26
  /**
27
- * This will create category.
27
+ * This will create a category.
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 category.
36
+ * This will delete a task category by code.
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
- * This will get category.
45
+ * Get category by code.
46
46
  * @summary Retrieve the category
47
47
  * @param {string} code
48
48
  * @param {string} expand
@@ -55,24 +55,25 @@ export declare const CategoriesApiAxiosParamCreator: (configuration?: Configurat
55
55
  * Retrieves a list of categories.
56
56
  * @summary List categories
57
57
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
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, createdAt&lt;/i&gt;
59
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, createdAt&lt;/i&gt;
60
- * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt&lt;/i&gt;
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;
59
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, slug, name, createdAt, updatedAt&lt;/i&gt;
60
+ * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, code, name, slug&lt;/i&gt;
61
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt, name, slug&lt;/i&gt;
61
62
  * @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.&lt;br/&gt; &lt;br/&gt;
62
63
  * @param {*} [options] Override http request option.
63
64
  * @throws {RequiredError}
64
65
  */
65
- listCategories: (authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
66
+ listCategories: (authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
66
67
  /**
67
- * This will update category.
68
+ * This will partially update a category by code with the provided fields.
68
69
  * @summary Update the category
69
70
  * @param {string} code
70
- * @param {UpdateCategoryRequestDto} updateCategoryRequestDto
71
+ * @param {PatchCategoryRequestDto} patchCategoryRequestDto
71
72
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
72
73
  * @param {*} [options] Override http request option.
73
74
  * @throws {RequiredError}
74
75
  */
75
- updateCategory: (code: string, updateCategoryRequestDto: UpdateCategoryRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
76
+ patchCategory: (code: string, patchCategoryRequestDto: PatchCategoryRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
76
77
  };
77
78
  /**
78
79
  * CategoriesApi - functional programming interface
@@ -80,7 +81,7 @@ export declare const CategoriesApiAxiosParamCreator: (configuration?: Configurat
80
81
  */
81
82
  export declare const CategoriesApiFp: (configuration?: Configuration) => {
82
83
  /**
83
- * This will create category.
84
+ * This will create a category.
84
85
  * @summary Create the category
85
86
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
86
87
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -89,7 +90,7 @@ export declare const CategoriesApiFp: (configuration?: Configuration) => {
89
90
  */
90
91
  createCategory(createCategoryRequestDto: CreateCategoryRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateCategoryResponseClass>>;
91
92
  /**
92
- * This will delete category.
93
+ * This will delete a task category by code.
93
94
  * @summary Delete the category
94
95
  * @param {string} code Unique identifier for the object.
95
96
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -98,7 +99,7 @@ export declare const CategoriesApiFp: (configuration?: Configuration) => {
98
99
  */
99
100
  deleteCategory(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
100
101
  /**
101
- * This will get category.
102
+ * Get category by code.
102
103
  * @summary Retrieve the category
103
104
  * @param {string} code
104
105
  * @param {string} expand
@@ -111,24 +112,25 @@ export declare const CategoriesApiFp: (configuration?: Configuration) => {
111
112
  * Retrieves a list of categories.
112
113
  * @summary List categories
113
114
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
114
- * @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, createdAt&lt;/i&gt;
115
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, createdAt&lt;/i&gt;
116
- * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt&lt;/i&gt;
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;
116
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, slug, name, createdAt, updatedAt&lt;/i&gt;
117
+ * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, code, name, slug&lt;/i&gt;
118
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt, name, slug&lt;/i&gt;
117
119
  * @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.&lt;br/&gt; &lt;br/&gt;
118
120
  * @param {*} [options] Override http request option.
119
121
  * @throws {RequiredError}
120
122
  */
121
- listCategories(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCategoriesResponseClass>>;
123
+ listCategories(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCategoriesResponseClass>>;
122
124
  /**
123
- * This will update category.
125
+ * This will partially update a category by code with the provided fields.
124
126
  * @summary Update the category
125
127
  * @param {string} code
126
- * @param {UpdateCategoryRequestDto} updateCategoryRequestDto
128
+ * @param {PatchCategoryRequestDto} patchCategoryRequestDto
127
129
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
128
130
  * @param {*} [options] Override http request option.
129
131
  * @throws {RequiredError}
130
132
  */
131
- updateCategory(code: string, updateCategoryRequestDto: UpdateCategoryRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateCategoryResponseClass>>;
133
+ patchCategory(code: string, patchCategoryRequestDto: PatchCategoryRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchCategoryResponseClass>>;
132
134
  };
133
135
  /**
134
136
  * CategoriesApi - factory interface
@@ -136,7 +138,7 @@ export declare const CategoriesApiFp: (configuration?: Configuration) => {
136
138
  */
137
139
  export declare const CategoriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
138
140
  /**
139
- * This will create category.
141
+ * This will create a category.
140
142
  * @summary Create the category
141
143
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
142
144
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -145,7 +147,7 @@ export declare const CategoriesApiFactory: (configuration?: Configuration, baseP
145
147
  */
146
148
  createCategory(createCategoryRequestDto: CreateCategoryRequestDto, authorization?: string, options?: any): AxiosPromise<CreateCategoryResponseClass>;
147
149
  /**
148
- * This will delete category.
150
+ * This will delete a task category by code.
149
151
  * @summary Delete the category
150
152
  * @param {string} code Unique identifier for the object.
151
153
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -154,7 +156,7 @@ export declare const CategoriesApiFactory: (configuration?: Configuration, baseP
154
156
  */
155
157
  deleteCategory(code: string, authorization?: string, options?: any): AxiosPromise<void>;
156
158
  /**
157
- * This will get category.
159
+ * Get category by code.
158
160
  * @summary Retrieve the category
159
161
  * @param {string} code
160
162
  * @param {string} expand
@@ -167,24 +169,25 @@ export declare const CategoriesApiFactory: (configuration?: Configuration, baseP
167
169
  * Retrieves a list of categories.
168
170
  * @summary List categories
169
171
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
170
- * @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, createdAt&lt;/i&gt;
171
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, createdAt&lt;/i&gt;
172
- * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt&lt;/i&gt;
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;
173
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, slug, name, createdAt, updatedAt&lt;/i&gt;
174
+ * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, code, name, slug&lt;/i&gt;
175
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt, name, slug&lt;/i&gt;
173
176
  * @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.&lt;br/&gt; &lt;br/&gt;
174
177
  * @param {*} [options] Override http request option.
175
178
  * @throws {RequiredError}
176
179
  */
177
- listCategories(authorization?: string, filter?: string, filters?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListCategoriesResponseClass>;
180
+ listCategories(authorization?: string, filter?: string, filters?: string, search?: string, order?: string, expand?: string, options?: any): AxiosPromise<ListCategoriesResponseClass>;
178
181
  /**
179
- * This will update category.
182
+ * This will partially update a category by code with the provided fields.
180
183
  * @summary Update the category
181
184
  * @param {string} code
182
- * @param {UpdateCategoryRequestDto} updateCategoryRequestDto
185
+ * @param {PatchCategoryRequestDto} patchCategoryRequestDto
183
186
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
184
187
  * @param {*} [options] Override http request option.
185
188
  * @throws {RequiredError}
186
189
  */
187
- updateCategory(code: string, updateCategoryRequestDto: UpdateCategoryRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateCategoryResponseClass>;
190
+ patchCategory(code: string, patchCategoryRequestDto: PatchCategoryRequestDto, authorization?: string, options?: any): AxiosPromise<PatchCategoryResponseClass>;
188
191
  };
189
192
  /**
190
193
  * Request parameters for createCategory operation in CategoriesApi.
@@ -262,19 +265,25 @@ export interface CategoriesApiListCategoriesRequest {
262
265
  */
263
266
  readonly authorization?: string;
264
267
  /**
265
- * 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, createdAt&lt;/i&gt;
268
+ * 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;
266
269
  * @type {string}
267
270
  * @memberof CategoriesApiListCategories
268
271
  */
269
272
  readonly filter?: string;
270
273
  /**
271
- * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, createdAt&lt;/i&gt;
274
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, slug, name, createdAt, updatedAt&lt;/i&gt;
272
275
  * @type {string}
273
276
  * @memberof CategoriesApiListCategories
274
277
  */
275
278
  readonly filters?: string;
276
279
  /**
277
- * Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt&lt;/i&gt;
280
+ * Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, code, name, slug&lt;/i&gt;
281
+ * @type {string}
282
+ * @memberof CategoriesApiListCategories
283
+ */
284
+ readonly search?: string;
285
+ /**
286
+ * Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt, name, slug&lt;/i&gt;
278
287
  * @type {string}
279
288
  * @memberof CategoriesApiListCategories
280
289
  */
@@ -287,27 +296,27 @@ export interface CategoriesApiListCategoriesRequest {
287
296
  readonly expand?: string;
288
297
  }
289
298
  /**
290
- * Request parameters for updateCategory operation in CategoriesApi.
299
+ * Request parameters for patchCategory operation in CategoriesApi.
291
300
  * @export
292
- * @interface CategoriesApiUpdateCategoryRequest
301
+ * @interface CategoriesApiPatchCategoryRequest
293
302
  */
294
- export interface CategoriesApiUpdateCategoryRequest {
303
+ export interface CategoriesApiPatchCategoryRequest {
295
304
  /**
296
305
  *
297
306
  * @type {string}
298
- * @memberof CategoriesApiUpdateCategory
307
+ * @memberof CategoriesApiPatchCategory
299
308
  */
300
309
  readonly code: string;
301
310
  /**
302
311
  *
303
- * @type {UpdateCategoryRequestDto}
304
- * @memberof CategoriesApiUpdateCategory
312
+ * @type {PatchCategoryRequestDto}
313
+ * @memberof CategoriesApiPatchCategory
305
314
  */
306
- readonly updateCategoryRequestDto: UpdateCategoryRequestDto;
315
+ readonly patchCategoryRequestDto: PatchCategoryRequestDto;
307
316
  /**
308
317
  * Bearer Token: provided by the login endpoint under the name accessToken.
309
318
  * @type {string}
310
- * @memberof CategoriesApiUpdateCategory
319
+ * @memberof CategoriesApiPatchCategory
311
320
  */
312
321
  readonly authorization?: string;
313
322
  }
@@ -319,7 +328,7 @@ export interface CategoriesApiUpdateCategoryRequest {
319
328
  */
320
329
  export declare class CategoriesApi extends BaseAPI {
321
330
  /**
322
- * This will create category.
331
+ * This will create a category.
323
332
  * @summary Create the category
324
333
  * @param {CategoriesApiCreateCategoryRequest} requestParameters Request parameters.
325
334
  * @param {*} [options] Override http request option.
@@ -328,7 +337,7 @@ export declare class CategoriesApi extends BaseAPI {
328
337
  */
329
338
  createCategory(requestParameters: CategoriesApiCreateCategoryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCategoryResponseClass, any, {}>>;
330
339
  /**
331
- * This will delete category.
340
+ * This will delete a task category by code.
332
341
  * @summary Delete the category
333
342
  * @param {CategoriesApiDeleteCategoryRequest} requestParameters Request parameters.
334
343
  * @param {*} [options] Override http request option.
@@ -337,7 +346,7 @@ export declare class CategoriesApi extends BaseAPI {
337
346
  */
338
347
  deleteCategory(requestParameters: CategoriesApiDeleteCategoryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
339
348
  /**
340
- * This will get category.
349
+ * Get category by code.
341
350
  * @summary Retrieve the category
342
351
  * @param {CategoriesApiGetCategoryRequest} requestParameters Request parameters.
343
352
  * @param {*} [options] Override http request option.
@@ -355,12 +364,12 @@ export declare class CategoriesApi extends BaseAPI {
355
364
  */
356
365
  listCategories(requestParameters?: CategoriesApiListCategoriesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCategoriesResponseClass, any, {}>>;
357
366
  /**
358
- * This will update category.
367
+ * This will partially update a category by code with the provided fields.
359
368
  * @summary Update the category
360
- * @param {CategoriesApiUpdateCategoryRequest} requestParameters Request parameters.
369
+ * @param {CategoriesApiPatchCategoryRequest} requestParameters Request parameters.
361
370
  * @param {*} [options] Override http request option.
362
371
  * @throws {RequiredError}
363
372
  * @memberof CategoriesApi
364
373
  */
365
- updateCategory(requestParameters: CategoriesApiUpdateCategoryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateCategoryResponseClass, any, {}>>;
374
+ patchCategory(requestParameters: CategoriesApiPatchCategoryRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchCategoryResponseClass, any, {}>>;
366
375
  }
@@ -97,7 +97,7 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
97
97
  var _this = this;
98
98
  return {
99
99
  /**
100
- * This will create category.
100
+ * This will create a category.
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 category.
149
+ * This will delete a task category by code.
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
- * This will get category.
197
+ * Get category by code.
198
198
  * @summary Retrieve the category
199
199
  * @param {string} code
200
200
  * @param {string} expand
@@ -251,14 +251,15 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
251
251
  * Retrieves a list of categories.
252
252
  * @summary List categories
253
253
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
254
- * @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, createdAt&lt;/i&gt;
255
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, createdAt&lt;/i&gt;
256
- * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt&lt;/i&gt;
254
+ * @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;
255
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, slug, name, createdAt, updatedAt&lt;/i&gt;
256
+ * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, code, name, slug&lt;/i&gt;
257
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt, name, slug&lt;/i&gt;
257
258
  * @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.&lt;br/&gt; &lt;br/&gt;
258
259
  * @param {*} [options] Override http request option.
259
260
  * @throws {RequiredError}
260
261
  */
261
- listCategories: function (authorization, filter, filters, order, expand, options) {
262
+ listCategories: function (authorization, filter, filters, search, order, expand, options) {
262
263
  if (options === void 0) { options = {}; }
263
264
  return __awaiter(_this, void 0, void 0, function () {
264
265
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -287,6 +288,9 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
287
288
  if (filters !== undefined) {
288
289
  localVarQueryParameter['filters'] = filters;
289
290
  }
291
+ if (search !== undefined) {
292
+ localVarQueryParameter['search'] = search;
293
+ }
290
294
  if (order !== undefined) {
291
295
  localVarQueryParameter['order'] = order;
292
296
  }
@@ -308,15 +312,15 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
308
312
  });
309
313
  },
310
314
  /**
311
- * This will update category.
315
+ * This will partially update a category by code with the provided fields.
312
316
  * @summary Update the category
313
317
  * @param {string} code
314
- * @param {UpdateCategoryRequestDto} updateCategoryRequestDto
318
+ * @param {PatchCategoryRequestDto} patchCategoryRequestDto
315
319
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
316
320
  * @param {*} [options] Override http request option.
317
321
  * @throws {RequiredError}
318
322
  */
319
- updateCategory: function (code, updateCategoryRequestDto, authorization, options) {
323
+ patchCategory: function (code, patchCategoryRequestDto, authorization, options) {
320
324
  if (options === void 0) { options = {}; }
321
325
  return __awaiter(_this, void 0, void 0, function () {
322
326
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -324,9 +328,9 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
324
328
  switch (_a.label) {
325
329
  case 0:
326
330
  // verify required parameter 'code' is not null or undefined
327
- (0, common_1.assertParamExists)('updateCategory', 'code', code);
328
- // verify required parameter 'updateCategoryRequestDto' is not null or undefined
329
- (0, common_1.assertParamExists)('updateCategory', 'updateCategoryRequestDto', updateCategoryRequestDto);
331
+ (0, common_1.assertParamExists)('patchCategory', 'code', code);
332
+ // verify required parameter 'patchCategoryRequestDto' is not null or undefined
333
+ (0, common_1.assertParamExists)('patchCategory', 'patchCategoryRequestDto', patchCategoryRequestDto);
330
334
  localVarPath = "/taskservice/v1/categories/{code}"
331
335
  .replace("{".concat("code", "}"), encodeURIComponent(String(code)));
332
336
  localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -334,7 +338,7 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
334
338
  baseOptions = configuration.baseOptions;
335
339
  baseAccessToken = configuration.accessToken;
336
340
  }
337
- localVarRequestOptions = __assign(__assign({ method: 'PUT' }, baseOptions), options);
341
+ localVarRequestOptions = __assign(__assign({ method: 'PATCH' }, baseOptions), options);
338
342
  localVarHeaderParameter = {};
339
343
  localVarQueryParameter = {};
340
344
  // authentication bearer required
@@ -351,7 +355,7 @@ var CategoriesApiAxiosParamCreator = function (configuration) {
351
355
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
352
356
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
353
357
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
354
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(updateCategoryRequestDto, localVarRequestOptions, configuration);
358
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(patchCategoryRequestDto, localVarRequestOptions, configuration);
355
359
  return [2 /*return*/, {
356
360
  url: (0, common_1.toPathString)(localVarUrlObj),
357
361
  options: localVarRequestOptions,
@@ -371,7 +375,7 @@ var CategoriesApiFp = function (configuration) {
371
375
  var localVarAxiosParamCreator = (0, exports.CategoriesApiAxiosParamCreator)(configuration);
372
376
  return {
373
377
  /**
374
- * This will create category.
378
+ * This will create a category.
375
379
  * @summary Create the category
376
380
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
377
381
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -392,7 +396,7 @@ var CategoriesApiFp = function (configuration) {
392
396
  });
393
397
  },
394
398
  /**
395
- * This will delete category.
399
+ * This will delete a task category by code.
396
400
  * @summary Delete the category
397
401
  * @param {string} code Unique identifier for the object.
398
402
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -413,7 +417,7 @@ var CategoriesApiFp = function (configuration) {
413
417
  });
414
418
  },
415
419
  /**
416
- * This will get category.
420
+ * Get category by code.
417
421
  * @summary Retrieve the category
418
422
  * @param {string} code
419
423
  * @param {string} expand
@@ -438,19 +442,20 @@ var CategoriesApiFp = function (configuration) {
438
442
  * Retrieves a list of categories.
439
443
  * @summary List categories
440
444
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
441
- * @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, createdAt&lt;/i&gt;
442
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, createdAt&lt;/i&gt;
443
- * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt&lt;/i&gt;
445
+ * @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;
446
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, slug, name, createdAt, updatedAt&lt;/i&gt;
447
+ * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, code, name, slug&lt;/i&gt;
448
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt, name, slug&lt;/i&gt;
444
449
  * @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.&lt;br/&gt; &lt;br/&gt;
445
450
  * @param {*} [options] Override http request option.
446
451
  * @throws {RequiredError}
447
452
  */
448
- listCategories: function (authorization, filter, filters, order, expand, options) {
453
+ listCategories: function (authorization, filter, filters, search, order, expand, options) {
449
454
  return __awaiter(this, void 0, void 0, function () {
450
455
  var localVarAxiosArgs;
451
456
  return __generator(this, function (_a) {
452
457
  switch (_a.label) {
453
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listCategories(authorization, filter, filters, order, expand, options)];
458
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listCategories(authorization, filter, filters, search, order, expand, options)];
454
459
  case 1:
455
460
  localVarAxiosArgs = _a.sent();
456
461
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -459,20 +464,20 @@ var CategoriesApiFp = function (configuration) {
459
464
  });
460
465
  },
461
466
  /**
462
- * This will update category.
467
+ * This will partially update a category by code with the provided fields.
463
468
  * @summary Update the category
464
469
  * @param {string} code
465
- * @param {UpdateCategoryRequestDto} updateCategoryRequestDto
470
+ * @param {PatchCategoryRequestDto} patchCategoryRequestDto
466
471
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
467
472
  * @param {*} [options] Override http request option.
468
473
  * @throws {RequiredError}
469
474
  */
470
- updateCategory: function (code, updateCategoryRequestDto, authorization, options) {
475
+ patchCategory: function (code, patchCategoryRequestDto, authorization, options) {
471
476
  return __awaiter(this, void 0, void 0, function () {
472
477
  var localVarAxiosArgs;
473
478
  return __generator(this, function (_a) {
474
479
  switch (_a.label) {
475
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateCategory(code, updateCategoryRequestDto, authorization, options)];
480
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.patchCategory(code, patchCategoryRequestDto, authorization, options)];
476
481
  case 1:
477
482
  localVarAxiosArgs = _a.sent();
478
483
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -491,7 +496,7 @@ var CategoriesApiFactory = function (configuration, basePath, axios) {
491
496
  var localVarFp = (0, exports.CategoriesApiFp)(configuration);
492
497
  return {
493
498
  /**
494
- * This will create category.
499
+ * This will create a category.
495
500
  * @summary Create the category
496
501
  * @param {CreateCategoryRequestDto} createCategoryRequestDto
497
502
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -502,7 +507,7 @@ var CategoriesApiFactory = function (configuration, basePath, axios) {
502
507
  return localVarFp.createCategory(createCategoryRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
503
508
  },
504
509
  /**
505
- * This will delete category.
510
+ * This will delete a task category by code.
506
511
  * @summary Delete the category
507
512
  * @param {string} code Unique identifier for the object.
508
513
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -513,7 +518,7 @@ var CategoriesApiFactory = function (configuration, basePath, axios) {
513
518
  return localVarFp.deleteCategory(code, authorization, options).then(function (request) { return request(axios, basePath); });
514
519
  },
515
520
  /**
516
- * This will get category.
521
+ * Get category by code.
517
522
  * @summary Retrieve the category
518
523
  * @param {string} code
519
524
  * @param {string} expand
@@ -528,27 +533,28 @@ var CategoriesApiFactory = function (configuration, basePath, axios) {
528
533
  * Retrieves a list of categories.
529
534
  * @summary List categories
530
535
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
531
- * @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, createdAt&lt;/i&gt;
532
- * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, createdAt&lt;/i&gt;
533
- * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt&lt;/i&gt;
536
+ * @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;
537
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, slug, name, createdAt, updatedAt&lt;/i&gt;
538
+ * @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Searchable fields: id, code, name, slug&lt;/i&gt;
539
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, updatedAt, name, slug&lt;/i&gt;
534
540
  * @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.&lt;br/&gt; &lt;br/&gt;
535
541
  * @param {*} [options] Override http request option.
536
542
  * @throws {RequiredError}
537
543
  */
538
- listCategories: function (authorization, filter, filters, order, expand, options) {
539
- return localVarFp.listCategories(authorization, filter, filters, order, expand, options).then(function (request) { return request(axios, basePath); });
544
+ listCategories: function (authorization, filter, filters, search, order, expand, options) {
545
+ return localVarFp.listCategories(authorization, filter, filters, search, order, expand, options).then(function (request) { return request(axios, basePath); });
540
546
  },
541
547
  /**
542
- * This will update category.
548
+ * This will partially update a category by code with the provided fields.
543
549
  * @summary Update the category
544
550
  * @param {string} code
545
- * @param {UpdateCategoryRequestDto} updateCategoryRequestDto
551
+ * @param {PatchCategoryRequestDto} patchCategoryRequestDto
546
552
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
547
553
  * @param {*} [options] Override http request option.
548
554
  * @throws {RequiredError}
549
555
  */
550
- updateCategory: function (code, updateCategoryRequestDto, authorization, options) {
551
- return localVarFp.updateCategory(code, updateCategoryRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
556
+ patchCategory: function (code, patchCategoryRequestDto, authorization, options) {
557
+ return localVarFp.patchCategory(code, patchCategoryRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
552
558
  },
553
559
  };
554
560
  };
@@ -565,7 +571,7 @@ var CategoriesApi = /** @class */ (function (_super) {
565
571
  return _super !== null && _super.apply(this, arguments) || this;
566
572
  }
567
573
  /**
568
- * This will create category.
574
+ * This will create a category.
569
575
  * @summary Create the category
570
576
  * @param {CategoriesApiCreateCategoryRequest} requestParameters Request parameters.
571
577
  * @param {*} [options] Override http request option.
@@ -577,7 +583,7 @@ var CategoriesApi = /** @class */ (function (_super) {
577
583
  return (0, exports.CategoriesApiFp)(this.configuration).createCategory(requestParameters.createCategoryRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
578
584
  };
579
585
  /**
580
- * This will delete category.
586
+ * This will delete a task category by code.
581
587
  * @summary Delete the category
582
588
  * @param {CategoriesApiDeleteCategoryRequest} requestParameters Request parameters.
583
589
  * @param {*} [options] Override http request option.
@@ -589,7 +595,7 @@ var CategoriesApi = /** @class */ (function (_super) {
589
595
  return (0, exports.CategoriesApiFp)(this.configuration).deleteCategory(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
590
596
  };
591
597
  /**
592
- * This will get category.
598
+ * Get category by code.
593
599
  * @summary Retrieve the category
594
600
  * @param {CategoriesApiGetCategoryRequest} requestParameters Request parameters.
595
601
  * @param {*} [options] Override http request option.
@@ -611,19 +617,19 @@ var CategoriesApi = /** @class */ (function (_super) {
611
617
  CategoriesApi.prototype.listCategories = function (requestParameters, options) {
612
618
  var _this = this;
613
619
  if (requestParameters === void 0) { requestParameters = {}; }
614
- return (0, exports.CategoriesApiFp)(this.configuration).listCategories(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
620
+ return (0, exports.CategoriesApiFp)(this.configuration).listCategories(requestParameters.authorization, requestParameters.filter, requestParameters.filters, requestParameters.search, requestParameters.order, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
615
621
  };
616
622
  /**
617
- * This will update category.
623
+ * This will partially update a category by code with the provided fields.
618
624
  * @summary Update the category
619
- * @param {CategoriesApiUpdateCategoryRequest} requestParameters Request parameters.
625
+ * @param {CategoriesApiPatchCategoryRequest} requestParameters Request parameters.
620
626
  * @param {*} [options] Override http request option.
621
627
  * @throws {RequiredError}
622
628
  * @memberof CategoriesApi
623
629
  */
624
- CategoriesApi.prototype.updateCategory = function (requestParameters, options) {
630
+ CategoriesApi.prototype.patchCategory = function (requestParameters, options) {
625
631
  var _this = this;
626
- return (0, exports.CategoriesApiFp)(this.configuration).updateCategory(requestParameters.code, requestParameters.updateCategoryRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
632
+ return (0, exports.CategoriesApiFp)(this.configuration).patchCategory(requestParameters.code, requestParameters.patchCategoryRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
627
633
  };
628
634
  return CategoriesApi;
629
635
  }(base_1.BaseAPI));