@emilgroup/claim-sdk 1.34.0 → 1.34.1-beta.1

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.
@@ -22,7 +22,7 @@ import { ListClaimStatusesResponseClass } from '../models';
22
22
  */
23
23
  export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configuration) => {
24
24
  /**
25
- * This creates a claim status in the database
25
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
26
26
  * @summary Create the claim status
27
27
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
28
28
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -31,7 +31,7 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
31
31
  */
32
32
  createClaimStatus: (createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
33
33
  /**
34
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
34
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
35
35
  * @summary Delete the claim status
36
36
  * @param {number} id
37
37
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -40,7 +40,7 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
40
40
  */
41
41
  deleteClaimStatus: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
42
42
  /**
43
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
43
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
44
44
  * @summary Retrieve the claim status
45
45
  * @param {number} id
46
46
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -49,20 +49,20 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
49
49
  */
50
50
  getClaimStatus: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
51
51
  /**
52
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
52
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
53
53
  * @summary List claim statuses
54
54
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
55
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
56
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
55
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
56
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
57
57
  * @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, name, productSlug&lt;/i&gt;
58
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
58
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
59
59
  * @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&lt;/i&gt;
60
60
  * @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; &lt;i&gt;Allowed values: &lt;i&gt;
61
61
  * @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, name, productSlug&lt;/i&gt;
62
62
  * @param {*} [options] Override http request option.
63
63
  * @throws {RequiredError}
64
64
  */
65
- listClaimStatuses: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
65
+ listClaimStatuses: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
66
66
  };
67
67
  /**
68
68
  * ClaimStatusesApi - functional programming interface
@@ -70,7 +70,7 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
70
70
  */
71
71
  export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
72
72
  /**
73
- * This creates a claim status in the database
73
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
74
74
  * @summary Create the claim status
75
75
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
76
76
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -79,7 +79,7 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
79
79
  */
80
80
  createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimStatusResponseClass>>;
81
81
  /**
82
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
82
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
83
83
  * @summary Delete the claim status
84
84
  * @param {number} id
85
85
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -88,7 +88,7 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
88
88
  */
89
89
  deleteClaimStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
90
90
  /**
91
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
91
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
92
92
  * @summary Retrieve the claim status
93
93
  * @param {number} id
94
94
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -97,20 +97,20 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
97
97
  */
98
98
  getClaimStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimStatusResponseClass>>;
99
99
  /**
100
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
100
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
101
101
  * @summary List claim statuses
102
102
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
103
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
104
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
103
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
104
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
105
105
  * @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, name, productSlug&lt;/i&gt;
106
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
106
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
107
107
  * @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&lt;/i&gt;
108
108
  * @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; &lt;i&gt;Allowed values: &lt;i&gt;
109
109
  * @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, name, productSlug&lt;/i&gt;
110
110
  * @param {*} [options] Override http request option.
111
111
  * @throws {RequiredError}
112
112
  */
113
- listClaimStatuses(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimStatusesResponseClass>>;
113
+ listClaimStatuses(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimStatusesResponseClass>>;
114
114
  };
115
115
  /**
116
116
  * ClaimStatusesApi - factory interface
@@ -118,7 +118,7 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
118
118
  */
119
119
  export declare const ClaimStatusesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
120
120
  /**
121
- * This creates a claim status in the database
121
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
122
122
  * @summary Create the claim status
123
123
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
124
124
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -127,7 +127,7 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
127
127
  */
128
128
  createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimStatusResponseClass>;
129
129
  /**
130
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
130
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
131
131
  * @summary Delete the claim status
132
132
  * @param {number} id
133
133
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -136,7 +136,7 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
136
136
  */
137
137
  deleteClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<void>;
138
138
  /**
139
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
139
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
140
140
  * @summary Retrieve the claim status
141
141
  * @param {number} id
142
142
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -145,20 +145,20 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
145
145
  */
146
146
  getClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimStatusResponseClass>;
147
147
  /**
148
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
148
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
149
149
  * @summary List claim statuses
150
150
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
151
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
152
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
151
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
152
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
153
153
  * @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, name, productSlug&lt;/i&gt;
154
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
154
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
155
155
  * @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&lt;/i&gt;
156
156
  * @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; &lt;i&gt;Allowed values: &lt;i&gt;
157
157
  * @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, name, productSlug&lt;/i&gt;
158
158
  * @param {*} [options] Override http request option.
159
159
  * @throws {RequiredError}
160
160
  */
161
- listClaimStatuses(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimStatusesResponseClass>;
161
+ listClaimStatuses(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimStatusesResponseClass>;
162
162
  };
163
163
  /**
164
164
  * Request parameters for createClaimStatus operation in ClaimStatusesApi.
@@ -231,16 +231,16 @@ export interface ClaimStatusesApiListClaimStatusesRequest {
231
231
  readonly authorization?: string;
232
232
  /**
233
233
  * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
234
- * @type {any}
234
+ * @type {number}
235
235
  * @memberof ClaimStatusesApiListClaimStatuses
236
236
  */
237
- readonly pageSize?: any;
237
+ readonly pageSize?: number;
238
238
  /**
239
- * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
240
- * @type {any}
239
+ * A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
240
+ * @type {string}
241
241
  * @memberof ClaimStatusesApiListClaimStatuses
242
242
  */
243
- readonly pageToken?: any;
243
+ readonly pageToken?: string;
244
244
  /**
245
245
  * 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, name, productSlug&lt;/i&gt;
246
246
  * @type {string}
@@ -249,10 +249,10 @@ export interface ClaimStatusesApiListClaimStatusesRequest {
249
249
  readonly filter?: string;
250
250
  /**
251
251
  * To search the list by any field, pass search&#x3D;xxx to fetch the result.
252
- * @type {any}
252
+ * @type {string}
253
253
  * @memberof ClaimStatusesApiListClaimStatuses
254
254
  */
255
- readonly search?: any;
255
+ readonly search?: string;
256
256
  /**
257
257
  * 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&lt;/i&gt;
258
258
  * @type {string}
@@ -280,7 +280,7 @@ export interface ClaimStatusesApiListClaimStatusesRequest {
280
280
  */
281
281
  export declare class ClaimStatusesApi extends BaseAPI {
282
282
  /**
283
- * This creates a claim status in the database
283
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
284
284
  * @summary Create the claim status
285
285
  * @param {ClaimStatusesApiCreateClaimStatusRequest} requestParameters Request parameters.
286
286
  * @param {*} [options] Override http request option.
@@ -289,7 +289,7 @@ export declare class ClaimStatusesApi extends BaseAPI {
289
289
  */
290
290
  createClaimStatus(requestParameters: ClaimStatusesApiCreateClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimStatusResponseClass, any>>;
291
291
  /**
292
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
292
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
293
293
  * @summary Delete the claim status
294
294
  * @param {ClaimStatusesApiDeleteClaimStatusRequest} requestParameters Request parameters.
295
295
  * @param {*} [options] Override http request option.
@@ -298,7 +298,7 @@ export declare class ClaimStatusesApi extends BaseAPI {
298
298
  */
299
299
  deleteClaimStatus(requestParameters: ClaimStatusesApiDeleteClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
300
300
  /**
301
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
301
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
302
302
  * @summary Retrieve the claim status
303
303
  * @param {ClaimStatusesApiGetClaimStatusRequest} requestParameters Request parameters.
304
304
  * @param {*} [options] Override http request option.
@@ -307,7 +307,7 @@ export declare class ClaimStatusesApi extends BaseAPI {
307
307
  */
308
308
  getClaimStatus(requestParameters: ClaimStatusesApiGetClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimStatusResponseClass, any>>;
309
309
  /**
310
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
310
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
311
311
  * @summary List claim statuses
312
312
  * @param {ClaimStatusesApiListClaimStatusesRequest} requestParameters Request parameters.
313
313
  * @param {*} [options] Override http request option.
@@ -93,7 +93,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
93
93
  var _this = this;
94
94
  return {
95
95
  /**
96
- * This creates a claim status in the database
96
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
97
97
  * @summary Create the claim status
98
98
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
99
99
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -142,7 +142,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
142
142
  });
143
143
  },
144
144
  /**
145
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
145
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
146
146
  * @summary Delete the claim status
147
147
  * @param {number} id
148
148
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -190,7 +190,7 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
190
190
  });
191
191
  },
192
192
  /**
193
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
193
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
194
194
  * @summary Retrieve the claim status
195
195
  * @param {number} id
196
196
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -238,13 +238,13 @@ var ClaimStatusesApiAxiosParamCreator = function (configuration) {
238
238
  });
239
239
  },
240
240
  /**
241
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
241
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
242
242
  * @summary List claim statuses
243
243
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
244
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
245
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
244
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
245
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
246
246
  * @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, name, productSlug&lt;/i&gt;
247
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
247
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
248
248
  * @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&lt;/i&gt;
249
249
  * @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; &lt;i&gt;Allowed values: &lt;i&gt;
250
250
  * @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, name, productSlug&lt;/i&gt;
@@ -320,7 +320,7 @@ var ClaimStatusesApiFp = function (configuration) {
320
320
  var localVarAxiosParamCreator = (0, exports.ClaimStatusesApiAxiosParamCreator)(configuration);
321
321
  return {
322
322
  /**
323
- * This creates a claim status in the database
323
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
324
324
  * @summary Create the claim status
325
325
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
326
326
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -341,7 +341,7 @@ var ClaimStatusesApiFp = function (configuration) {
341
341
  });
342
342
  },
343
343
  /**
344
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
344
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
345
345
  * @summary Delete the claim status
346
346
  * @param {number} id
347
347
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -362,7 +362,7 @@ var ClaimStatusesApiFp = function (configuration) {
362
362
  });
363
363
  },
364
364
  /**
365
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
365
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
366
366
  * @summary Retrieve the claim status
367
367
  * @param {number} id
368
368
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -383,13 +383,13 @@ var ClaimStatusesApiFp = function (configuration) {
383
383
  });
384
384
  },
385
385
  /**
386
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
386
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
387
387
  * @summary List claim statuses
388
388
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
389
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
390
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
389
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
390
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
391
391
  * @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, name, productSlug&lt;/i&gt;
392
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
392
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
393
393
  * @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&lt;/i&gt;
394
394
  * @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; &lt;i&gt;Allowed values: &lt;i&gt;
395
395
  * @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, name, productSlug&lt;/i&gt;
@@ -420,7 +420,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
420
420
  var localVarFp = (0, exports.ClaimStatusesApiFp)(configuration);
421
421
  return {
422
422
  /**
423
- * This creates a claim status in the database
423
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
424
424
  * @summary Create the claim status
425
425
  * @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
426
426
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -431,7 +431,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
431
431
  return localVarFp.createClaimStatus(createClaimStatusRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
432
432
  },
433
433
  /**
434
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
434
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
435
435
  * @summary Delete the claim status
436
436
  * @param {number} id
437
437
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -442,7 +442,7 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
442
442
  return localVarFp.deleteClaimStatus(id, authorization, options).then(function (request) { return request(axios, basePath); });
443
443
  },
444
444
  /**
445
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
445
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
446
446
  * @summary Retrieve the claim status
447
447
  * @param {number} id
448
448
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
@@ -453,13 +453,13 @@ var ClaimStatusesApiFactory = function (configuration, basePath, axios) {
453
453
  return localVarFp.getClaimStatus(id, authorization, options).then(function (request) { return request(axios, basePath); });
454
454
  },
455
455
  /**
456
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
456
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
457
457
  * @summary List claim statuses
458
458
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
459
- * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
460
- * @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
459
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
460
+ * @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
461
461
  * @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, name, productSlug&lt;/i&gt;
462
- * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
462
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
463
463
  * @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&lt;/i&gt;
464
464
  * @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; &lt;i&gt;Allowed values: &lt;i&gt;
465
465
  * @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, name, productSlug&lt;/i&gt;
@@ -484,7 +484,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
484
484
  return _super !== null && _super.apply(this, arguments) || this;
485
485
  }
486
486
  /**
487
- * This creates a claim status in the database
487
+ * This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\"
488
488
  * @summary Create the claim status
489
489
  * @param {ClaimStatusesApiCreateClaimStatusRequest} requestParameters Request parameters.
490
490
  * @param {*} [options] Override http request option.
@@ -496,7 +496,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
496
496
  return (0, exports.ClaimStatusesApiFp)(this.configuration).createClaimStatus(requestParameters.createClaimStatusRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
497
497
  };
498
498
  /**
499
- * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it.
499
+ * Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
500
500
  * @summary Delete the claim status
501
501
  * @param {ClaimStatusesApiDeleteClaimStatusRequest} requestParameters Request parameters.
502
502
  * @param {*} [options] Override http request option.
@@ -508,7 +508,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
508
508
  return (0, exports.ClaimStatusesApiFp)(this.configuration).deleteClaimStatus(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
509
509
  };
510
510
  /**
511
- * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information.
511
+ * Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
512
512
  * @summary Retrieve the claim status
513
513
  * @param {ClaimStatusesApiGetClaimStatusRequest} requestParameters Request parameters.
514
514
  * @param {*} [options] Override http request option.
@@ -520,7 +520,7 @@ var ClaimStatusesApi = /** @class */ (function (_super) {
520
520
  return (0, exports.ClaimStatusesApiFp)(this.configuration).getClaimStatus(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
521
521
  };
522
522
  /**
523
- * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
523
+ * Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
524
524
  * @summary List claim statuses
525
525
  * @param {ClaimStatusesApiListClaimStatusesRequest} requestParameters Request parameters.
526
526
  * @param {*} [options] Override http request option.