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