@emilgroup/claim-sdk-node 1.41.0 → 1.41.1-beta.0

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 (49) hide show
  1. package/README.md +2 -2
  2. package/api/claim-limit-usages-api.ts +45 -53
  3. package/api/claim-partner-roles-api.ts +107 -127
  4. package/api/claim-partners-api.ts +87 -103
  5. package/api/claim-positions-api.ts +153 -181
  6. package/api/claim-regulations-api.ts +108 -128
  7. package/api/claim-statuses-api.ts +129 -153
  8. package/api/claims-api.ts +149 -177
  9. package/api/health-check-api.ts +137 -17
  10. package/api/settlements-api.ts +107 -127
  11. package/dist/api/claim-limit-usages-api.d.ts +34 -42
  12. package/dist/api/claim-limit-usages-api.js +29 -37
  13. package/dist/api/claim-partner-roles-api.d.ts +77 -97
  14. package/dist/api/claim-partner-roles-api.js +75 -95
  15. package/dist/api/claim-partners-api.d.ts +63 -79
  16. package/dist/api/claim-partners-api.js +60 -76
  17. package/dist/api/claim-positions-api.d.ts +108 -136
  18. package/dist/api/claim-positions-api.js +108 -136
  19. package/dist/api/claim-regulations-api.d.ts +78 -98
  20. package/dist/api/claim-regulations-api.js +75 -95
  21. package/dist/api/claim-statuses-api.d.ts +92 -116
  22. package/dist/api/claim-statuses-api.js +91 -115
  23. package/dist/api/claims-api.d.ts +106 -134
  24. package/dist/api/claims-api.js +106 -134
  25. package/dist/api/health-check-api.d.ts +66 -12
  26. package/dist/api/health-check-api.js +151 -17
  27. package/dist/api/settlements-api.d.ts +77 -97
  28. package/dist/api/settlements-api.js +75 -95
  29. package/dist/models/calculation-step-result-class.d.ts +3 -3
  30. package/dist/models/list-claim-limit-usages-response-class.d.ts +6 -6
  31. package/dist/models/list-claim-partner-roles-response-class.d.ts +6 -6
  32. package/dist/models/list-claim-partners-response-class.d.ts +6 -6
  33. package/dist/models/list-claim-positions-response-class.d.ts +6 -6
  34. package/dist/models/list-claim-statuses-response-class.d.ts +6 -6
  35. package/dist/models/list-claims-response-class.d.ts +6 -6
  36. package/dist/models/list-regulations-response-class.d.ts +6 -6
  37. package/dist/models/list-settlements-response-class.d.ts +18 -6
  38. package/dist/models/payout-details-class.d.ts +4 -2
  39. package/models/calculation-step-result-class.ts +3 -3
  40. package/models/list-claim-limit-usages-response-class.ts +6 -6
  41. package/models/list-claim-partner-roles-response-class.ts +6 -6
  42. package/models/list-claim-partners-response-class.ts +6 -6
  43. package/models/list-claim-positions-response-class.ts +6 -6
  44. package/models/list-claim-statuses-response-class.ts +6 -6
  45. package/models/list-claims-response-class.ts +6 -6
  46. package/models/list-regulations-response-class.ts +6 -6
  47. package/models/list-settlements-response-class.ts +18 -6
  48. package/models/payout-details-class.ts +2 -2
  49. package/package.json +1 -1
@@ -27,14 +27,13 @@ export declare const ClaimLimitUsagesApiAxiosParamCreator: (configuration?: Conf
27
27
  * @param {*} [options] Override http request option.
28
28
  * @throws {RequiredError}
29
29
  */
30
- getClaimLimitUsage: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
30
+ getClaimLimitUsage0: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
31
31
  /**
32
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
32
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
33
33
  * @summary Retrieve the claim limit usage
34
34
  * @param {string} code
35
35
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
36
36
  * @param {*} [options] Override http request option.
37
- * @deprecated
38
37
  * @throws {RequiredError}
39
38
  */
40
39
  getClaimLimitUsage1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -52,9 +51,9 @@ export declare const ClaimLimitUsagesApiAxiosParamCreator: (configuration?: Conf
52
51
  * @param {*} [options] Override http request option.
53
52
  * @throws {RequiredError}
54
53
  */
55
- listClaimLimitUsages: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
54
+ listClaimLimitUsages0: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
56
55
  /**
57
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
56
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
58
57
  * @summary List claim limit usages
59
58
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
60
59
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -65,7 +64,6 @@ export declare const ClaimLimitUsagesApiAxiosParamCreator: (configuration?: Conf
65
64
  * @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;
66
65
  * @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, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
67
66
  * @param {*} [options] Override http request option.
68
- * @deprecated
69
67
  * @throws {RequiredError}
70
68
  */
71
69
  listClaimLimitUsages1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
@@ -83,14 +81,13 @@ export declare const ClaimLimitUsagesApiFp: (configuration?: Configuration) => {
83
81
  * @param {*} [options] Override http request option.
84
82
  * @throws {RequiredError}
85
83
  */
86
- getClaimLimitUsage(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>>;
84
+ getClaimLimitUsage0(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>>;
87
85
  /**
88
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
86
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
89
87
  * @summary Retrieve the claim limit usage
90
88
  * @param {string} code
91
89
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
92
90
  * @param {*} [options] Override http request option.
93
- * @deprecated
94
91
  * @throws {RequiredError}
95
92
  */
96
93
  getClaimLimitUsage1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>>;
@@ -108,9 +105,9 @@ export declare const ClaimLimitUsagesApiFp: (configuration?: Configuration) => {
108
105
  * @param {*} [options] Override http request option.
109
106
  * @throws {RequiredError}
110
107
  */
111
- listClaimLimitUsages(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimLimitUsagesResponseClass>>;
108
+ listClaimLimitUsages0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimLimitUsagesResponseClass>>;
112
109
  /**
113
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
110
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
114
111
  * @summary List claim limit usages
115
112
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
116
113
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -121,7 +118,6 @@ export declare const ClaimLimitUsagesApiFp: (configuration?: Configuration) => {
121
118
  * @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;
122
119
  * @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, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
123
120
  * @param {*} [options] Override http request option.
124
- * @deprecated
125
121
  * @throws {RequiredError}
126
122
  */
127
123
  listClaimLimitUsages1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimLimitUsagesResponseClass>>;
@@ -139,14 +135,13 @@ export declare const ClaimLimitUsagesApiFactory: (configuration?: Configuration,
139
135
  * @param {*} [options] Override http request option.
140
136
  * @throws {RequiredError}
141
137
  */
142
- getClaimLimitUsage(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass>;
138
+ getClaimLimitUsage0(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass>;
143
139
  /**
144
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
140
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
145
141
  * @summary Retrieve the claim limit usage
146
142
  * @param {string} code
147
143
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
148
144
  * @param {*} [options] Override http request option.
149
- * @deprecated
150
145
  * @throws {RequiredError}
151
146
  */
152
147
  getClaimLimitUsage1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass>;
@@ -164,9 +159,9 @@ export declare const ClaimLimitUsagesApiFactory: (configuration?: Configuration,
164
159
  * @param {*} [options] Override http request option.
165
160
  * @throws {RequiredError}
166
161
  */
167
- listClaimLimitUsages(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass>;
162
+ listClaimLimitUsages0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass>;
168
163
  /**
169
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
164
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
170
165
  * @summary List claim limit usages
171
166
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
172
167
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -177,27 +172,26 @@ export declare const ClaimLimitUsagesApiFactory: (configuration?: Configuration,
177
172
  * @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;
178
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, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
179
174
  * @param {*} [options] Override http request option.
180
- * @deprecated
181
175
  * @throws {RequiredError}
182
176
  */
183
177
  listClaimLimitUsages1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass>;
184
178
  };
185
179
  /**
186
- * Request parameters for getClaimLimitUsage operation in ClaimLimitUsagesApi.
180
+ * Request parameters for getClaimLimitUsage0 operation in ClaimLimitUsagesApi.
187
181
  * @export
188
- * @interface ClaimLimitUsagesApiGetClaimLimitUsageRequest
182
+ * @interface ClaimLimitUsagesApiGetClaimLimitUsage0Request
189
183
  */
190
- export interface ClaimLimitUsagesApiGetClaimLimitUsageRequest {
184
+ export interface ClaimLimitUsagesApiGetClaimLimitUsage0Request {
191
185
  /**
192
186
  *
193
187
  * @type {string}
194
- * @memberof ClaimLimitUsagesApiGetClaimLimitUsage
188
+ * @memberof ClaimLimitUsagesApiGetClaimLimitUsage0
195
189
  */
196
190
  readonly code: string;
197
191
  /**
198
192
  * Bearer Token: provided by the login endpoint under the name accessToken.
199
193
  * @type {string}
200
- * @memberof ClaimLimitUsagesApiGetClaimLimitUsage
194
+ * @memberof ClaimLimitUsagesApiGetClaimLimitUsage0
201
195
  */
202
196
  readonly authorization?: string;
203
197
  }
@@ -221,57 +215,57 @@ export interface ClaimLimitUsagesApiGetClaimLimitUsage1Request {
221
215
  readonly authorization?: string;
222
216
  }
223
217
  /**
224
- * Request parameters for listClaimLimitUsages operation in ClaimLimitUsagesApi.
218
+ * Request parameters for listClaimLimitUsages0 operation in ClaimLimitUsagesApi.
225
219
  * @export
226
- * @interface ClaimLimitUsagesApiListClaimLimitUsagesRequest
220
+ * @interface ClaimLimitUsagesApiListClaimLimitUsages0Request
227
221
  */
228
- export interface ClaimLimitUsagesApiListClaimLimitUsagesRequest {
222
+ export interface ClaimLimitUsagesApiListClaimLimitUsages0Request {
229
223
  /**
230
224
  * Bearer Token: provided by the login endpoint under the name accessToken.
231
225
  * @type {string}
232
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages
226
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
233
227
  */
234
228
  readonly authorization?: string;
235
229
  /**
236
230
  * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
237
231
  * @type {number}
238
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages
232
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
239
233
  */
240
234
  readonly pageSize?: number;
241
235
  /**
242
236
  * 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.
243
237
  * @type {string}
244
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages
238
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
245
239
  */
246
240
  readonly pageToken?: string;
247
241
  /**
248
242
  * 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, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
249
243
  * @type {string}
250
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages
244
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
251
245
  */
252
246
  readonly filter?: string;
253
247
  /**
254
248
  * To search the list by any field, pass search&#x3D;xxx to fetch the result.
255
249
  * @type {string}
256
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages
250
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
257
251
  */
258
252
  readonly search?: string;
259
253
  /**
260
254
  * 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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount, initialAmount&lt;/i&gt;
261
255
  * @type {string}
262
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages
256
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
263
257
  */
264
258
  readonly order?: string;
265
259
  /**
266
260
  * 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;
267
261
  * @type {string}
268
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages
262
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
269
263
  */
270
264
  readonly expand?: string;
271
265
  /**
272
266
  * 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, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
273
267
  * @type {string}
274
- * @memberof ClaimLimitUsagesApiListClaimLimitUsages
268
+ * @memberof ClaimLimitUsagesApiListClaimLimitUsages0
275
269
  */
276
270
  readonly filters?: string;
277
271
  }
@@ -340,18 +334,17 @@ export declare class ClaimLimitUsagesApi extends BaseAPI {
340
334
  /**
341
335
  * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
342
336
  * @summary Retrieve the claim limit usage
343
- * @param {ClaimLimitUsagesApiGetClaimLimitUsageRequest} requestParameters Request parameters.
337
+ * @param {ClaimLimitUsagesApiGetClaimLimitUsage0Request} requestParameters Request parameters.
344
338
  * @param {*} [options] Override http request option.
345
339
  * @throws {RequiredError}
346
340
  * @memberof ClaimLimitUsagesApi
347
341
  */
348
- getClaimLimitUsage(requestParameters: ClaimLimitUsagesApiGetClaimLimitUsageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimLimitUsageResponseClass, any, {}>>;
342
+ getClaimLimitUsage0(requestParameters: ClaimLimitUsagesApiGetClaimLimitUsage0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimLimitUsageResponseClass, any, {}>>;
349
343
  /**
350
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
344
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
351
345
  * @summary Retrieve the claim limit usage
352
346
  * @param {ClaimLimitUsagesApiGetClaimLimitUsage1Request} requestParameters Request parameters.
353
347
  * @param {*} [options] Override http request option.
354
- * @deprecated
355
348
  * @throws {RequiredError}
356
349
  * @memberof ClaimLimitUsagesApi
357
350
  */
@@ -359,18 +352,17 @@ export declare class ClaimLimitUsagesApi extends BaseAPI {
359
352
  /**
360
353
  * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
361
354
  * @summary List claim limit usages
362
- * @param {ClaimLimitUsagesApiListClaimLimitUsagesRequest} requestParameters Request parameters.
355
+ * @param {ClaimLimitUsagesApiListClaimLimitUsages0Request} requestParameters Request parameters.
363
356
  * @param {*} [options] Override http request option.
364
357
  * @throws {RequiredError}
365
358
  * @memberof ClaimLimitUsagesApi
366
359
  */
367
- listClaimLimitUsages(requestParameters?: ClaimLimitUsagesApiListClaimLimitUsagesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimLimitUsagesResponseClass, any, {}>>;
360
+ listClaimLimitUsages0(requestParameters?: ClaimLimitUsagesApiListClaimLimitUsages0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimLimitUsagesResponseClass, any, {}>>;
368
361
  /**
369
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
362
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
370
363
  * @summary List claim limit usages
371
364
  * @param {ClaimLimitUsagesApiListClaimLimitUsages1Request} requestParameters Request parameters.
372
365
  * @param {*} [options] Override http request option.
373
- * @deprecated
374
366
  * @throws {RequiredError}
375
367
  * @memberof ClaimLimitUsagesApi
376
368
  */
@@ -104,7 +104,7 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
104
104
  * @param {*} [options] Override http request option.
105
105
  * @throws {RequiredError}
106
106
  */
107
- getClaimLimitUsage: function (code, authorization, options) {
107
+ getClaimLimitUsage0: function (code, authorization, options) {
108
108
  if (options === void 0) { options = {}; }
109
109
  return __awaiter(_this, void 0, void 0, function () {
110
110
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -112,8 +112,8 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
112
112
  switch (_a.label) {
113
113
  case 0:
114
114
  // verify required parameter 'code' is not null or undefined
115
- (0, common_1.assertParamExists)('getClaimLimitUsage', 'code', code);
116
- localVarPath = "/claimservice/v1/claim-limit-usages/{code}"
115
+ (0, common_1.assertParamExists)('getClaimLimitUsage0', 'code', code);
116
+ localVarPath = "/v1/claim-limit-usages/{code}"
117
117
  .replace("{".concat("code", "}"), encodeURIComponent(String(code)));
118
118
  localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
119
119
  if (configuration) {
@@ -145,12 +145,11 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
145
145
  });
146
146
  },
147
147
  /**
148
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
148
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
149
149
  * @summary Retrieve the claim limit usage
150
150
  * @param {string} code
151
151
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
152
152
  * @param {*} [options] Override http request option.
153
- * @deprecated
154
153
  * @throws {RequiredError}
155
154
  */
156
155
  getClaimLimitUsage1: function (code, authorization, options) {
@@ -162,7 +161,7 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
162
161
  case 0:
163
162
  // verify required parameter 'code' is not null or undefined
164
163
  (0, common_1.assertParamExists)('getClaimLimitUsage1', 'code', code);
165
- localVarPath = "/v1/claim-limit-usages/{code}"
164
+ localVarPath = "/claimservice/v1/claim-limit-usages/{code}"
166
165
  .replace("{".concat("code", "}"), encodeURIComponent(String(code)));
167
166
  localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
168
167
  if (configuration) {
@@ -207,14 +206,14 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
207
206
  * @param {*} [options] Override http request option.
208
207
  * @throws {RequiredError}
209
208
  */
210
- listClaimLimitUsages: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
209
+ listClaimLimitUsages0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
211
210
  if (options === void 0) { options = {}; }
212
211
  return __awaiter(_this, void 0, void 0, function () {
213
212
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
214
213
  return __generator(this, function (_a) {
215
214
  switch (_a.label) {
216
215
  case 0:
217
- localVarPath = "/claimservice/v1/claim-limit-usages";
216
+ localVarPath = "/v1/claim-limit-usages";
218
217
  localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
219
218
  if (configuration) {
220
219
  baseOptions = configuration.baseOptions;
@@ -266,7 +265,7 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
266
265
  });
267
266
  },
268
267
  /**
269
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
268
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
270
269
  * @summary List claim limit usages
271
270
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
272
271
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -277,7 +276,6 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
277
276
  * @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;
278
277
  * @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, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
279
278
  * @param {*} [options] Override http request option.
280
- * @deprecated
281
279
  * @throws {RequiredError}
282
280
  */
283
281
  listClaimLimitUsages1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
@@ -287,7 +285,7 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
287
285
  return __generator(this, function (_a) {
288
286
  switch (_a.label) {
289
287
  case 0:
290
- localVarPath = "/v1/claim-limit-usages";
288
+ localVarPath = "/claimservice/v1/claim-limit-usages";
291
289
  localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
292
290
  if (configuration) {
293
291
  baseOptions = configuration.baseOptions;
@@ -356,12 +354,12 @@ var ClaimLimitUsagesApiFp = function (configuration) {
356
354
  * @param {*} [options] Override http request option.
357
355
  * @throws {RequiredError}
358
356
  */
359
- getClaimLimitUsage: function (code, authorization, options) {
357
+ getClaimLimitUsage0: function (code, authorization, options) {
360
358
  return __awaiter(this, void 0, void 0, function () {
361
359
  var localVarAxiosArgs;
362
360
  return __generator(this, function (_a) {
363
361
  switch (_a.label) {
364
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.getClaimLimitUsage(code, authorization, options)];
362
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getClaimLimitUsage0(code, authorization, options)];
365
363
  case 1:
366
364
  localVarAxiosArgs = _a.sent();
367
365
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -370,12 +368,11 @@ var ClaimLimitUsagesApiFp = function (configuration) {
370
368
  });
371
369
  },
372
370
  /**
373
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
371
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
374
372
  * @summary Retrieve the claim limit usage
375
373
  * @param {string} code
376
374
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
377
375
  * @param {*} [options] Override http request option.
378
- * @deprecated
379
376
  * @throws {RequiredError}
380
377
  */
381
378
  getClaimLimitUsage1: function (code, authorization, options) {
@@ -405,12 +402,12 @@ var ClaimLimitUsagesApiFp = function (configuration) {
405
402
  * @param {*} [options] Override http request option.
406
403
  * @throws {RequiredError}
407
404
  */
408
- listClaimLimitUsages: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
405
+ listClaimLimitUsages0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
409
406
  return __awaiter(this, void 0, void 0, function () {
410
407
  var localVarAxiosArgs;
411
408
  return __generator(this, function (_a) {
412
409
  switch (_a.label) {
413
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listClaimLimitUsages(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
410
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listClaimLimitUsages0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
414
411
  case 1:
415
412
  localVarAxiosArgs = _a.sent();
416
413
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -419,7 +416,7 @@ var ClaimLimitUsagesApiFp = function (configuration) {
419
416
  });
420
417
  },
421
418
  /**
422
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
419
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
423
420
  * @summary List claim limit usages
424
421
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
425
422
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -430,7 +427,6 @@ var ClaimLimitUsagesApiFp = function (configuration) {
430
427
  * @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;
431
428
  * @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, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
432
429
  * @param {*} [options] Override http request option.
433
- * @deprecated
434
430
  * @throws {RequiredError}
435
431
  */
436
432
  listClaimLimitUsages1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
@@ -464,16 +460,15 @@ var ClaimLimitUsagesApiFactory = function (configuration, basePath, axios) {
464
460
  * @param {*} [options] Override http request option.
465
461
  * @throws {RequiredError}
466
462
  */
467
- getClaimLimitUsage: function (code, authorization, options) {
468
- return localVarFp.getClaimLimitUsage(code, authorization, options).then(function (request) { return request(axios, basePath); });
463
+ getClaimLimitUsage0: function (code, authorization, options) {
464
+ return localVarFp.getClaimLimitUsage0(code, authorization, options).then(function (request) { return request(axios, basePath); });
469
465
  },
470
466
  /**
471
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
467
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
472
468
  * @summary Retrieve the claim limit usage
473
469
  * @param {string} code
474
470
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
475
471
  * @param {*} [options] Override http request option.
476
- * @deprecated
477
472
  * @throws {RequiredError}
478
473
  */
479
474
  getClaimLimitUsage1: function (code, authorization, options) {
@@ -493,11 +488,11 @@ var ClaimLimitUsagesApiFactory = function (configuration, basePath, axios) {
493
488
  * @param {*} [options] Override http request option.
494
489
  * @throws {RequiredError}
495
490
  */
496
- listClaimLimitUsages: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
497
- return localVarFp.listClaimLimitUsages(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
491
+ listClaimLimitUsages0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
492
+ return localVarFp.listClaimLimitUsages0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
498
493
  },
499
494
  /**
500
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
495
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
501
496
  * @summary List claim limit usages
502
497
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
503
498
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -508,7 +503,6 @@ var ClaimLimitUsagesApiFactory = function (configuration, basePath, axios) {
508
503
  * @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;
509
504
  * @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, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt&lt;/i&gt;
510
505
  * @param {*} [options] Override http request option.
511
- * @deprecated
512
506
  * @throws {RequiredError}
513
507
  */
514
508
  listClaimLimitUsages1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
@@ -531,21 +525,20 @@ var ClaimLimitUsagesApi = /** @class */ (function (_super) {
531
525
  /**
532
526
  * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
533
527
  * @summary Retrieve the claim limit usage
534
- * @param {ClaimLimitUsagesApiGetClaimLimitUsageRequest} requestParameters Request parameters.
528
+ * @param {ClaimLimitUsagesApiGetClaimLimitUsage0Request} requestParameters Request parameters.
535
529
  * @param {*} [options] Override http request option.
536
530
  * @throws {RequiredError}
537
531
  * @memberof ClaimLimitUsagesApi
538
532
  */
539
- ClaimLimitUsagesApi.prototype.getClaimLimitUsage = function (requestParameters, options) {
533
+ ClaimLimitUsagesApi.prototype.getClaimLimitUsage0 = function (requestParameters, options) {
540
534
  var _this = this;
541
- return (0, exports.ClaimLimitUsagesApiFp)(this.configuration).getClaimLimitUsage(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
535
+ return (0, exports.ClaimLimitUsagesApiFp)(this.configuration).getClaimLimitUsage0(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
542
536
  };
543
537
  /**
544
- * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
538
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
545
539
  * @summary Retrieve the claim limit usage
546
540
  * @param {ClaimLimitUsagesApiGetClaimLimitUsage1Request} requestParameters Request parameters.
547
541
  * @param {*} [options] Override http request option.
548
- * @deprecated
549
542
  * @throws {RequiredError}
550
543
  * @memberof ClaimLimitUsagesApi
551
544
  */
@@ -556,22 +549,21 @@ var ClaimLimitUsagesApi = /** @class */ (function (_super) {
556
549
  /**
557
550
  * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
558
551
  * @summary List claim limit usages
559
- * @param {ClaimLimitUsagesApiListClaimLimitUsagesRequest} requestParameters Request parameters.
552
+ * @param {ClaimLimitUsagesApiListClaimLimitUsages0Request} requestParameters Request parameters.
560
553
  * @param {*} [options] Override http request option.
561
554
  * @throws {RequiredError}
562
555
  * @memberof ClaimLimitUsagesApi
563
556
  */
564
- ClaimLimitUsagesApi.prototype.listClaimLimitUsages = function (requestParameters, options) {
557
+ ClaimLimitUsagesApi.prototype.listClaimLimitUsages0 = function (requestParameters, options) {
565
558
  var _this = this;
566
559
  if (requestParameters === void 0) { requestParameters = {}; }
567
- return (0, exports.ClaimLimitUsagesApiFp)(this.configuration).listClaimLimitUsages(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
560
+ return (0, exports.ClaimLimitUsagesApiFp)(this.configuration).listClaimLimitUsages0(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
568
561
  };
569
562
  /**
570
- * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
563
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
571
564
  * @summary List claim limit usages
572
565
  * @param {ClaimLimitUsagesApiListClaimLimitUsages1Request} requestParameters Request parameters.
573
566
  * @param {*} [options] Override http request option.
574
- * @deprecated
575
567
  * @throws {RequiredError}
576
568
  * @memberof ClaimLimitUsagesApi
577
569
  */