@emilgroup/claim-sdk 1.43.0 → 1.43.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
  */
@@ -100,7 +100,7 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
100
100
  * @param {*} [options] Override http request option.
101
101
  * @throws {RequiredError}
102
102
  */
103
- getClaimLimitUsage: function (code, authorization, options) {
103
+ getClaimLimitUsage0: function (code, authorization, options) {
104
104
  if (options === void 0) { options = {}; }
105
105
  return __awaiter(_this, void 0, void 0, function () {
106
106
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -108,8 +108,8 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
108
108
  switch (_a.label) {
109
109
  case 0:
110
110
  // verify required parameter 'code' is not null or undefined
111
- (0, common_1.assertParamExists)('getClaimLimitUsage', 'code', code);
112
- localVarPath = "/claimservice/v1/claim-limit-usages/{code}"
111
+ (0, common_1.assertParamExists)('getClaimLimitUsage0', 'code', code);
112
+ localVarPath = "/v1/claim-limit-usages/{code}"
113
113
  .replace("{".concat("code", "}"), encodeURIComponent(String(code)));
114
114
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
115
115
  if (configuration) {
@@ -141,12 +141,11 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
141
141
  });
142
142
  },
143
143
  /**
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.
144
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
145
145
  * @summary Retrieve the claim limit usage
146
146
  * @param {string} code
147
147
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
148
148
  * @param {*} [options] Override http request option.
149
- * @deprecated
150
149
  * @throws {RequiredError}
151
150
  */
152
151
  getClaimLimitUsage1: function (code, authorization, options) {
@@ -158,7 +157,7 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
158
157
  case 0:
159
158
  // verify required parameter 'code' is not null or undefined
160
159
  (0, common_1.assertParamExists)('getClaimLimitUsage1', 'code', code);
161
- localVarPath = "/v1/claim-limit-usages/{code}"
160
+ localVarPath = "/claimservice/v1/claim-limit-usages/{code}"
162
161
  .replace("{".concat("code", "}"), encodeURIComponent(String(code)));
163
162
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
164
163
  if (configuration) {
@@ -203,14 +202,14 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
203
202
  * @param {*} [options] Override http request option.
204
203
  * @throws {RequiredError}
205
204
  */
206
- listClaimLimitUsages: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
205
+ listClaimLimitUsages0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
207
206
  if (options === void 0) { options = {}; }
208
207
  return __awaiter(_this, void 0, void 0, function () {
209
208
  var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
210
209
  return __generator(this, function (_a) {
211
210
  switch (_a.label) {
212
211
  case 0:
213
- localVarPath = "/claimservice/v1/claim-limit-usages";
212
+ localVarPath = "/v1/claim-limit-usages";
214
213
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
215
214
  if (configuration) {
216
215
  baseOptions = configuration.baseOptions;
@@ -262,7 +261,7 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
262
261
  });
263
262
  },
264
263
  /**
265
- * 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.
264
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
266
265
  * @summary List claim limit usages
267
266
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
268
267
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -273,7 +272,6 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
273
272
  * @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;
274
273
  * @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;
275
274
  * @param {*} [options] Override http request option.
276
- * @deprecated
277
275
  * @throws {RequiredError}
278
276
  */
279
277
  listClaimLimitUsages1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
@@ -283,7 +281,7 @@ var ClaimLimitUsagesApiAxiosParamCreator = function (configuration) {
283
281
  return __generator(this, function (_a) {
284
282
  switch (_a.label) {
285
283
  case 0:
286
- localVarPath = "/v1/claim-limit-usages";
284
+ localVarPath = "/claimservice/v1/claim-limit-usages";
287
285
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
288
286
  if (configuration) {
289
287
  baseOptions = configuration.baseOptions;
@@ -352,12 +350,12 @@ var ClaimLimitUsagesApiFp = function (configuration) {
352
350
  * @param {*} [options] Override http request option.
353
351
  * @throws {RequiredError}
354
352
  */
355
- getClaimLimitUsage: function (code, authorization, options) {
353
+ getClaimLimitUsage0: function (code, authorization, options) {
356
354
  return __awaiter(this, void 0, void 0, function () {
357
355
  var localVarAxiosArgs;
358
356
  return __generator(this, function (_a) {
359
357
  switch (_a.label) {
360
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.getClaimLimitUsage(code, authorization, options)];
358
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.getClaimLimitUsage0(code, authorization, options)];
361
359
  case 1:
362
360
  localVarAxiosArgs = _a.sent();
363
361
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -366,12 +364,11 @@ var ClaimLimitUsagesApiFp = function (configuration) {
366
364
  });
367
365
  },
368
366
  /**
369
- * 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.
367
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
370
368
  * @summary Retrieve the claim limit usage
371
369
  * @param {string} code
372
370
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
373
371
  * @param {*} [options] Override http request option.
374
- * @deprecated
375
372
  * @throws {RequiredError}
376
373
  */
377
374
  getClaimLimitUsage1: function (code, authorization, options) {
@@ -401,12 +398,12 @@ var ClaimLimitUsagesApiFp = function (configuration) {
401
398
  * @param {*} [options] Override http request option.
402
399
  * @throws {RequiredError}
403
400
  */
404
- listClaimLimitUsages: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
401
+ listClaimLimitUsages0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
405
402
  return __awaiter(this, void 0, void 0, function () {
406
403
  var localVarAxiosArgs;
407
404
  return __generator(this, function (_a) {
408
405
  switch (_a.label) {
409
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listClaimLimitUsages(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
406
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listClaimLimitUsages0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options)];
410
407
  case 1:
411
408
  localVarAxiosArgs = _a.sent();
412
409
  return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
@@ -415,7 +412,7 @@ var ClaimLimitUsagesApiFp = function (configuration) {
415
412
  });
416
413
  },
417
414
  /**
418
- * 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.
415
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
419
416
  * @summary List claim limit usages
420
417
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
421
418
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -426,7 +423,6 @@ var ClaimLimitUsagesApiFp = function (configuration) {
426
423
  * @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;
427
424
  * @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;
428
425
  * @param {*} [options] Override http request option.
429
- * @deprecated
430
426
  * @throws {RequiredError}
431
427
  */
432
428
  listClaimLimitUsages1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
@@ -460,16 +456,15 @@ var ClaimLimitUsagesApiFactory = function (configuration, basePath, axios) {
460
456
  * @param {*} [options] Override http request option.
461
457
  * @throws {RequiredError}
462
458
  */
463
- getClaimLimitUsage: function (code, authorization, options) {
464
- return localVarFp.getClaimLimitUsage(code, authorization, options).then(function (request) { return request(axios, basePath); });
459
+ getClaimLimitUsage0: function (code, authorization, options) {
460
+ return localVarFp.getClaimLimitUsage0(code, authorization, options).then(function (request) { return request(axios, basePath); });
465
461
  },
466
462
  /**
467
- * 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.
463
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
468
464
  * @summary Retrieve the claim limit usage
469
465
  * @param {string} code
470
466
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
471
467
  * @param {*} [options] Override http request option.
472
- * @deprecated
473
468
  * @throws {RequiredError}
474
469
  */
475
470
  getClaimLimitUsage1: function (code, authorization, options) {
@@ -489,11 +484,11 @@ var ClaimLimitUsagesApiFactory = function (configuration, basePath, axios) {
489
484
  * @param {*} [options] Override http request option.
490
485
  * @throws {RequiredError}
491
486
  */
492
- listClaimLimitUsages: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
493
- return localVarFp.listClaimLimitUsages(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
487
+ listClaimLimitUsages0: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
488
+ return localVarFp.listClaimLimitUsages0(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
494
489
  },
495
490
  /**
496
- * 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.
491
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
497
492
  * @summary List claim limit usages
498
493
  * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
499
494
  * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
@@ -504,7 +499,6 @@ var ClaimLimitUsagesApiFactory = function (configuration, basePath, axios) {
504
499
  * @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;
505
500
  * @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;
506
501
  * @param {*} [options] Override http request option.
507
- * @deprecated
508
502
  * @throws {RequiredError}
509
503
  */
510
504
  listClaimLimitUsages1: function (authorization, pageSize, pageToken, filter, search, order, expand, filters, options) {
@@ -527,21 +521,20 @@ var ClaimLimitUsagesApi = /** @class */ (function (_super) {
527
521
  /**
528
522
  * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
529
523
  * @summary Retrieve the claim limit usage
530
- * @param {ClaimLimitUsagesApiGetClaimLimitUsageRequest} requestParameters Request parameters.
524
+ * @param {ClaimLimitUsagesApiGetClaimLimitUsage0Request} requestParameters Request parameters.
531
525
  * @param {*} [options] Override http request option.
532
526
  * @throws {RequiredError}
533
527
  * @memberof ClaimLimitUsagesApi
534
528
  */
535
- ClaimLimitUsagesApi.prototype.getClaimLimitUsage = function (requestParameters, options) {
529
+ ClaimLimitUsagesApi.prototype.getClaimLimitUsage0 = function (requestParameters, options) {
536
530
  var _this = this;
537
- return (0, exports.ClaimLimitUsagesApiFp)(this.configuration).getClaimLimitUsage(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
531
+ return (0, exports.ClaimLimitUsagesApiFp)(this.configuration).getClaimLimitUsage0(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
538
532
  };
539
533
  /**
540
- * 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.
534
+ * This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
541
535
  * @summary Retrieve the claim limit usage
542
536
  * @param {ClaimLimitUsagesApiGetClaimLimitUsage1Request} requestParameters Request parameters.
543
537
  * @param {*} [options] Override http request option.
544
- * @deprecated
545
538
  * @throws {RequiredError}
546
539
  * @memberof ClaimLimitUsagesApi
547
540
  */
@@ -552,22 +545,21 @@ var ClaimLimitUsagesApi = /** @class */ (function (_super) {
552
545
  /**
553
546
  * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
554
547
  * @summary List claim limit usages
555
- * @param {ClaimLimitUsagesApiListClaimLimitUsagesRequest} requestParameters Request parameters.
548
+ * @param {ClaimLimitUsagesApiListClaimLimitUsages0Request} requestParameters Request parameters.
556
549
  * @param {*} [options] Override http request option.
557
550
  * @throws {RequiredError}
558
551
  * @memberof ClaimLimitUsagesApi
559
552
  */
560
- ClaimLimitUsagesApi.prototype.listClaimLimitUsages = function (requestParameters, options) {
553
+ ClaimLimitUsagesApi.prototype.listClaimLimitUsages0 = function (requestParameters, options) {
561
554
  var _this = this;
562
555
  if (requestParameters === void 0) { requestParameters = {}; }
563
- 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); });
556
+ 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); });
564
557
  };
565
558
  /**
566
- * 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.
559
+ * Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
567
560
  * @summary List claim limit usages
568
561
  * @param {ClaimLimitUsagesApiListClaimLimitUsages1Request} requestParameters Request parameters.
569
562
  * @param {*} [options] Override http request option.
570
- * @deprecated
571
563
  * @throws {RequiredError}
572
564
  * @memberof ClaimLimitUsagesApi
573
565
  */