@emilgroup/claim-sdk 1.40.1-beta.8 → 1.41.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.
- package/.openapi-generator/FILES +0 -10
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +0 -627
- package/api/claim-partners-api.ts +0 -520
- package/api/claim-regulations-api.ts +5 -646
- package/api/claim-statuses-api.ts +6 -753
- package/api/claims-api.ts +6 -858
- package/api/health-check-api.ts +0 -66
- package/api/settlements-api.ts +0 -627
- package/api.ts +0 -2
- package/dist/api/claim-partner-roles-api.d.ts +0 -358
- package/dist/api/claim-partner-roles-api.js +0 -525
- package/dist/api/claim-partners-api.d.ts +0 -299
- package/dist/api/claim-partners-api.js +0 -428
- package/dist/api/claim-regulations-api.d.ts +0 -367
- package/dist/api/claim-regulations-api.js +0 -531
- package/dist/api/claim-statuses-api.d.ts +0 -426
- package/dist/api/claim-statuses-api.js +14 -642
- package/dist/api/claims-api.d.ts +0 -485
- package/dist/api/claims-api.js +1 -725
- package/dist/api/health-check-api.d.ts +0 -33
- package/dist/api/health-check-api.js +0 -73
- package/dist/api/settlements-api.d.ts +0 -358
- package/dist/api/settlements-api.js +0 -525
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/models/claim-class.d.ts +0 -6
- package/dist/models/index.d.ts +0 -9
- package/dist/models/index.js +0 -9
- package/dist/models/list-claim-partner-roles-response-class.d.ts +0 -12
- package/dist/models/list-claim-partners-response-class.d.ts +0 -12
- package/dist/models/list-claim-statuses-response-class.d.ts +1 -13
- package/dist/models/list-claims-response-class.d.ts +0 -12
- package/dist/models/list-regulations-response-class.d.ts +0 -12
- package/models/claim-class.ts +0 -6
- package/models/index.ts +0 -9
- package/models/list-claim-partner-roles-response-class.ts +0 -12
- package/models/list-claim-partners-response-class.ts +0 -12
- package/models/list-claim-statuses-response-class.ts +1 -13
- package/models/list-claims-response-class.ts +0 -12
- package/models/list-regulations-response-class.ts +0 -12
- package/package.json +1 -1
- package/api/claim-positions-api.ts +0 -1336
- package/dist/api/claim-positions-api.d.ts +0 -760
- package/dist/api/claim-positions-api.js +0 -1177
- package/dist/models/claim-position-class.d.ts +0 -121
- package/dist/models/claim-position-class.js +0 -15
- package/dist/models/coverage-class.d.ts +0 -72
- package/dist/models/coverage-class.js +0 -21
- package/dist/models/coverage-request-dto.d.ts +0 -41
- package/dist/models/coverage-request-dto.js +0 -20
- package/dist/models/create-claim-position-request-dto.d.ts +0 -73
- package/dist/models/create-claim-position-request-dto.js +0 -15
- package/dist/models/create-claim-position-response-class.d.ts +0 -25
- package/dist/models/create-claim-position-response-class.js +0 -15
- package/dist/models/get-claim-position-response-class.d.ts +0 -25
- package/dist/models/get-claim-position-response-class.js +0 -15
- package/dist/models/list-claim-positions-response-class.d.ts +0 -43
- package/dist/models/list-claim-positions-response-class.js +0 -15
- package/dist/models/update-claim-position-request-dto.d.ts +0 -73
- package/dist/models/update-claim-position-request-dto.js +0 -15
- package/dist/models/update-claim-position-response-class.d.ts +0 -25
- package/dist/models/update-claim-position-response-class.js +0 -15
- package/models/claim-position-class.ts +0 -127
- package/models/coverage-class.ts +0 -81
- package/models/coverage-request-dto.ts +0 -50
- package/models/create-claim-position-request-dto.ts +0 -79
- package/models/create-claim-position-response-class.ts +0 -31
- package/models/get-claim-position-response-class.ts +0 -31
- package/models/list-claim-positions-response-class.ts +0 -49
- package/models/update-claim-position-request-dto.ts +0 -79
- package/models/update-claim-position-response-class.ts +0 -31
|
@@ -53,54 +53,6 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
53
53
|
createClaimStatus: async (createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
54
54
|
// verify required parameter 'createClaimStatusRequestDto' is not null or undefined
|
|
55
55
|
assertParamExists('createClaimStatus', 'createClaimStatusRequestDto', createClaimStatusRequestDto)
|
|
56
|
-
const localVarPath = `/claimservice/v1/claim-statuses`;
|
|
57
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
58
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
59
|
-
let baseOptions;
|
|
60
|
-
let baseAccessToken;
|
|
61
|
-
if (configuration) {
|
|
62
|
-
baseOptions = configuration.baseOptions;
|
|
63
|
-
baseAccessToken = configuration.accessToken;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
67
|
-
const localVarHeaderParameter = {} as any;
|
|
68
|
-
const localVarQueryParameter = {} as any;
|
|
69
|
-
|
|
70
|
-
// authentication bearer required
|
|
71
|
-
// http bearer authentication required
|
|
72
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
73
|
-
|
|
74
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
75
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
81
|
-
|
|
82
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
83
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
84
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
85
|
-
localVarRequestOptions.data = serializeDataIfNeeded(createClaimStatusRequestDto, localVarRequestOptions, configuration)
|
|
86
|
-
|
|
87
|
-
return {
|
|
88
|
-
url: toPathString(localVarUrlObj),
|
|
89
|
-
options: localVarRequestOptions,
|
|
90
|
-
};
|
|
91
|
-
},
|
|
92
|
-
/**
|
|
93
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
94
|
-
* @summary Create the claim status
|
|
95
|
-
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
96
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
97
|
-
* @param {*} [options] Override http request option.
|
|
98
|
-
* @deprecated
|
|
99
|
-
* @throws {RequiredError}
|
|
100
|
-
*/
|
|
101
|
-
createClaimStatus1: async (createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
102
|
-
// verify required parameter 'createClaimStatusRequestDto' is not null or undefined
|
|
103
|
-
assertParamExists('createClaimStatus1', 'createClaimStatusRequestDto', createClaimStatusRequestDto)
|
|
104
56
|
const localVarPath = `/v1/claim-statuses`;
|
|
105
57
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
106
58
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -148,52 +100,6 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
148
100
|
deleteClaimStatus: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
149
101
|
// verify required parameter 'id' is not null or undefined
|
|
150
102
|
assertParamExists('deleteClaimStatus', 'id', id)
|
|
151
|
-
const localVarPath = `/claimservice/v1/claim-statuses/{id}`
|
|
152
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
153
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
154
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
155
|
-
let baseOptions;
|
|
156
|
-
let baseAccessToken;
|
|
157
|
-
if (configuration) {
|
|
158
|
-
baseOptions = configuration.baseOptions;
|
|
159
|
-
baseAccessToken = configuration.accessToken;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
163
|
-
const localVarHeaderParameter = {} as any;
|
|
164
|
-
const localVarQueryParameter = {} as any;
|
|
165
|
-
|
|
166
|
-
// authentication bearer required
|
|
167
|
-
// http bearer authentication required
|
|
168
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
169
|
-
|
|
170
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
171
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
177
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
178
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
179
|
-
|
|
180
|
-
return {
|
|
181
|
-
url: toPathString(localVarUrlObj),
|
|
182
|
-
options: localVarRequestOptions,
|
|
183
|
-
};
|
|
184
|
-
},
|
|
185
|
-
/**
|
|
186
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
187
|
-
* @summary Delete the claim status
|
|
188
|
-
* @param {number} id
|
|
189
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
190
|
-
* @param {*} [options] Override http request option.
|
|
191
|
-
* @deprecated
|
|
192
|
-
* @throws {RequiredError}
|
|
193
|
-
*/
|
|
194
|
-
deleteClaimStatus1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
195
|
-
// verify required parameter 'id' is not null or undefined
|
|
196
|
-
assertParamExists('deleteClaimStatus1', 'id', id)
|
|
197
103
|
const localVarPath = `/v1/claim-statuses/{id}`
|
|
198
104
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
199
105
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -239,52 +145,6 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
239
145
|
getClaimStatus: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
240
146
|
// verify required parameter 'id' is not null or undefined
|
|
241
147
|
assertParamExists('getClaimStatus', 'id', id)
|
|
242
|
-
const localVarPath = `/claimservice/v1/claim-statuses/{id}`
|
|
243
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
244
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
245
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
246
|
-
let baseOptions;
|
|
247
|
-
let baseAccessToken;
|
|
248
|
-
if (configuration) {
|
|
249
|
-
baseOptions = configuration.baseOptions;
|
|
250
|
-
baseAccessToken = configuration.accessToken;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
254
|
-
const localVarHeaderParameter = {} as any;
|
|
255
|
-
const localVarQueryParameter = {} as any;
|
|
256
|
-
|
|
257
|
-
// authentication bearer required
|
|
258
|
-
// http bearer authentication required
|
|
259
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
260
|
-
|
|
261
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
262
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
268
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
269
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
270
|
-
|
|
271
|
-
return {
|
|
272
|
-
url: toPathString(localVarUrlObj),
|
|
273
|
-
options: localVarRequestOptions,
|
|
274
|
-
};
|
|
275
|
-
},
|
|
276
|
-
/**
|
|
277
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
278
|
-
* @summary Retrieve the claim status
|
|
279
|
-
* @param {number} id
|
|
280
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
281
|
-
* @param {*} [options] Override http request option.
|
|
282
|
-
* @deprecated
|
|
283
|
-
* @throws {RequiredError}
|
|
284
|
-
*/
|
|
285
|
-
getClaimStatus1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
286
|
-
// verify required parameter 'id' is not null or undefined
|
|
287
|
-
assertParamExists('getClaimStatus1', 'id', id)
|
|
288
148
|
const localVarPath = `/v1/claim-statuses/{id}`
|
|
289
149
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
290
150
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -334,83 +194,6 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
334
194
|
* @throws {RequiredError}
|
|
335
195
|
*/
|
|
336
196
|
listClaimStatuses: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
337
|
-
const localVarPath = `/claimservice/v1/claim-statuses`;
|
|
338
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
339
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
340
|
-
let baseOptions;
|
|
341
|
-
let baseAccessToken;
|
|
342
|
-
if (configuration) {
|
|
343
|
-
baseOptions = configuration.baseOptions;
|
|
344
|
-
baseAccessToken = configuration.accessToken;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
348
|
-
const localVarHeaderParameter = {} as any;
|
|
349
|
-
const localVarQueryParameter = {} as any;
|
|
350
|
-
|
|
351
|
-
// authentication bearer required
|
|
352
|
-
// http bearer authentication required
|
|
353
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
354
|
-
|
|
355
|
-
if (pageSize !== undefined) {
|
|
356
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
if (pageToken !== undefined) {
|
|
360
|
-
localVarQueryParameter['pageToken'] = pageToken;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
if (filter !== undefined) {
|
|
364
|
-
localVarQueryParameter['filter'] = filter;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
if (search !== undefined) {
|
|
368
|
-
localVarQueryParameter['search'] = search;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
if (order !== undefined) {
|
|
372
|
-
localVarQueryParameter['order'] = order;
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
if (expand !== undefined) {
|
|
376
|
-
localVarQueryParameter['expand'] = expand;
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
if (filters !== undefined) {
|
|
380
|
-
localVarQueryParameter['filters'] = filters;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
384
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
390
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
391
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
392
|
-
|
|
393
|
-
return {
|
|
394
|
-
url: toPathString(localVarUrlObj),
|
|
395
|
-
options: localVarRequestOptions,
|
|
396
|
-
};
|
|
397
|
-
},
|
|
398
|
-
/**
|
|
399
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
400
|
-
* @summary List claim statuses
|
|
401
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
402
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
403
|
-
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
404
|
-
* @param {string} [filter] 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, name, productSlug</i>
|
|
405
|
-
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
406
|
-
* @param {string} [order] 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</i>
|
|
407
|
-
* @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/>
|
|
408
|
-
* @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, name, productSlug</i>
|
|
409
|
-
* @param {*} [options] Override http request option.
|
|
410
|
-
* @deprecated
|
|
411
|
-
* @throws {RequiredError}
|
|
412
|
-
*/
|
|
413
|
-
listClaimStatuses1: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
414
197
|
const localVarPath = `/v1/claim-statuses`;
|
|
415
198
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
416
199
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -486,58 +269,6 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
486
269
|
assertParamExists('patchClaimStatus', 'id', id)
|
|
487
270
|
// verify required parameter 'patchClaimStatusRequestDto' is not null or undefined
|
|
488
271
|
assertParamExists('patchClaimStatus', 'patchClaimStatusRequestDto', patchClaimStatusRequestDto)
|
|
489
|
-
const localVarPath = `/claimservice/v1/claim-statuses/{id}`
|
|
490
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
491
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
492
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
493
|
-
let baseOptions;
|
|
494
|
-
let baseAccessToken;
|
|
495
|
-
if (configuration) {
|
|
496
|
-
baseOptions = configuration.baseOptions;
|
|
497
|
-
baseAccessToken = configuration.accessToken;
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
501
|
-
const localVarHeaderParameter = {} as any;
|
|
502
|
-
const localVarQueryParameter = {} as any;
|
|
503
|
-
|
|
504
|
-
// authentication bearer required
|
|
505
|
-
// http bearer authentication required
|
|
506
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
507
|
-
|
|
508
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
509
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
515
|
-
|
|
516
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
517
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
518
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
519
|
-
localVarRequestOptions.data = serializeDataIfNeeded(patchClaimStatusRequestDto, localVarRequestOptions, configuration)
|
|
520
|
-
|
|
521
|
-
return {
|
|
522
|
-
url: toPathString(localVarUrlObj),
|
|
523
|
-
options: localVarRequestOptions,
|
|
524
|
-
};
|
|
525
|
-
},
|
|
526
|
-
/**
|
|
527
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
528
|
-
* @summary Patch claim status
|
|
529
|
-
* @param {number} id
|
|
530
|
-
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
531
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
532
|
-
* @param {*} [options] Override http request option.
|
|
533
|
-
* @deprecated
|
|
534
|
-
* @throws {RequiredError}
|
|
535
|
-
*/
|
|
536
|
-
patchClaimStatus1: async (id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
537
|
-
// verify required parameter 'id' is not null or undefined
|
|
538
|
-
assertParamExists('patchClaimStatus1', 'id', id)
|
|
539
|
-
// verify required parameter 'patchClaimStatusRequestDto' is not null or undefined
|
|
540
|
-
assertParamExists('patchClaimStatus1', 'patchClaimStatusRequestDto', patchClaimStatusRequestDto)
|
|
541
272
|
const localVarPath = `/v1/claim-statuses/{id}`
|
|
542
273
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
543
274
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -589,58 +320,6 @@ export const ClaimStatusesApiAxiosParamCreator = function (configuration?: Confi
|
|
|
589
320
|
assertParamExists('updateClaimStatus', 'id', id)
|
|
590
321
|
// verify required parameter 'updateClaimStatusRequestDto' is not null or undefined
|
|
591
322
|
assertParamExists('updateClaimStatus', 'updateClaimStatusRequestDto', updateClaimStatusRequestDto)
|
|
592
|
-
const localVarPath = `/claimservice/v1/claim-statuses/{id}`
|
|
593
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
594
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
595
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
596
|
-
let baseOptions;
|
|
597
|
-
let baseAccessToken;
|
|
598
|
-
if (configuration) {
|
|
599
|
-
baseOptions = configuration.baseOptions;
|
|
600
|
-
baseAccessToken = configuration.accessToken;
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
604
|
-
const localVarHeaderParameter = {} as any;
|
|
605
|
-
const localVarQueryParameter = {} as any;
|
|
606
|
-
|
|
607
|
-
// authentication bearer required
|
|
608
|
-
// http bearer authentication required
|
|
609
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
610
|
-
|
|
611
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
612
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
618
|
-
|
|
619
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
620
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
621
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
622
|
-
localVarRequestOptions.data = serializeDataIfNeeded(updateClaimStatusRequestDto, localVarRequestOptions, configuration)
|
|
623
|
-
|
|
624
|
-
return {
|
|
625
|
-
url: toPathString(localVarUrlObj),
|
|
626
|
-
options: localVarRequestOptions,
|
|
627
|
-
};
|
|
628
|
-
},
|
|
629
|
-
/**
|
|
630
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
631
|
-
* @summary Update the claim status
|
|
632
|
-
* @param {number} id
|
|
633
|
-
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
634
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
635
|
-
* @param {*} [options] Override http request option.
|
|
636
|
-
* @deprecated
|
|
637
|
-
* @throws {RequiredError}
|
|
638
|
-
*/
|
|
639
|
-
updateClaimStatus1: async (id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
640
|
-
// verify required parameter 'id' is not null or undefined
|
|
641
|
-
assertParamExists('updateClaimStatus1', 'id', id)
|
|
642
|
-
// verify required parameter 'updateClaimStatusRequestDto' is not null or undefined
|
|
643
|
-
assertParamExists('updateClaimStatus1', 'updateClaimStatusRequestDto', updateClaimStatusRequestDto)
|
|
644
323
|
const localVarPath = `/v1/claim-statuses/{id}`
|
|
645
324
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
646
325
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -700,19 +379,6 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
700
379
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimStatus(createClaimStatusRequestDto, authorization, options);
|
|
701
380
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
702
381
|
},
|
|
703
|
-
/**
|
|
704
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
705
|
-
* @summary Create the claim status
|
|
706
|
-
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
707
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
708
|
-
* @param {*} [options] Override http request option.
|
|
709
|
-
* @deprecated
|
|
710
|
-
* @throws {RequiredError}
|
|
711
|
-
*/
|
|
712
|
-
async createClaimStatus1(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimStatusResponseClass>> {
|
|
713
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimStatus1(createClaimStatusRequestDto, authorization, options);
|
|
714
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
715
|
-
},
|
|
716
382
|
/**
|
|
717
383
|
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
718
384
|
* @summary Delete the claim status
|
|
@@ -725,19 +391,6 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
725
391
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimStatus(id, authorization, options);
|
|
726
392
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
727
393
|
},
|
|
728
|
-
/**
|
|
729
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
730
|
-
* @summary Delete the claim status
|
|
731
|
-
* @param {number} id
|
|
732
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
733
|
-
* @param {*} [options] Override http request option.
|
|
734
|
-
* @deprecated
|
|
735
|
-
* @throws {RequiredError}
|
|
736
|
-
*/
|
|
737
|
-
async deleteClaimStatus1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
738
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimStatus1(id, authorization, options);
|
|
739
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
740
|
-
},
|
|
741
394
|
/**
|
|
742
395
|
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
743
396
|
* @summary Retrieve the claim status
|
|
@@ -750,19 +403,6 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
750
403
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimStatus(id, authorization, options);
|
|
751
404
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
752
405
|
},
|
|
753
|
-
/**
|
|
754
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
755
|
-
* @summary Retrieve the claim status
|
|
756
|
-
* @param {number} id
|
|
757
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
758
|
-
* @param {*} [options] Override http request option.
|
|
759
|
-
* @deprecated
|
|
760
|
-
* @throws {RequiredError}
|
|
761
|
-
*/
|
|
762
|
-
async getClaimStatus1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimStatusResponseClass>> {
|
|
763
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimStatus1(id, authorization, options);
|
|
764
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
765
|
-
},
|
|
766
406
|
/**
|
|
767
407
|
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
768
408
|
* @summary List claim statuses
|
|
@@ -781,77 +421,30 @@ export const ClaimStatusesApiFp = function(configuration?: Configuration) {
|
|
|
781
421
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimStatuses(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
782
422
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
783
423
|
},
|
|
784
|
-
/**
|
|
785
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
786
|
-
* @summary List claim statuses
|
|
787
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
788
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
789
|
-
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
790
|
-
* @param {string} [filter] 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, name, productSlug</i>
|
|
791
|
-
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
792
|
-
* @param {string} [order] 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</i>
|
|
793
|
-
* @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/>
|
|
794
|
-
* @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, name, productSlug</i>
|
|
795
|
-
* @param {*} [options] Override http request option.
|
|
796
|
-
* @deprecated
|
|
797
|
-
* @throws {RequiredError}
|
|
798
|
-
*/
|
|
799
|
-
async listClaimStatuses1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimStatusesResponseClass>> {
|
|
800
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimStatuses1(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
801
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
802
|
-
},
|
|
803
424
|
/**
|
|
804
425
|
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
805
426
|
* @summary Patch claim status
|
|
806
427
|
* @param {number} id
|
|
807
|
-
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
808
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
809
|
-
* @param {*} [options] Override http request option.
|
|
810
|
-
* @throws {RequiredError}
|
|
811
|
-
*/
|
|
812
|
-
async patchClaimStatus(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimStatusResponseClass>> {
|
|
813
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchClaimStatus(id, patchClaimStatusRequestDto, authorization, options);
|
|
814
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
815
|
-
},
|
|
816
|
-
/**
|
|
817
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
818
|
-
* @summary Patch claim status
|
|
819
|
-
* @param {number} id
|
|
820
|
-
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
821
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
822
|
-
* @param {*} [options] Override http request option.
|
|
823
|
-
* @deprecated
|
|
824
|
-
* @throws {RequiredError}
|
|
825
|
-
*/
|
|
826
|
-
async patchClaimStatus1(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimStatusResponseClass>> {
|
|
827
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchClaimStatus1(id, patchClaimStatusRequestDto, authorization, options);
|
|
828
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
829
|
-
},
|
|
830
|
-
/**
|
|
831
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
832
|
-
* @summary Update the claim status
|
|
833
|
-
* @param {number} id
|
|
834
|
-
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
428
|
+
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
835
429
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
836
430
|
* @param {*} [options] Override http request option.
|
|
837
431
|
* @throws {RequiredError}
|
|
838
432
|
*/
|
|
839
|
-
async
|
|
840
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
433
|
+
async patchClaimStatus(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimStatusResponseClass>> {
|
|
434
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchClaimStatus(id, patchClaimStatusRequestDto, authorization, options);
|
|
841
435
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
842
436
|
},
|
|
843
437
|
/**
|
|
844
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
438
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
845
439
|
* @summary Update the claim status
|
|
846
440
|
* @param {number} id
|
|
847
441
|
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
848
442
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
849
443
|
* @param {*} [options] Override http request option.
|
|
850
|
-
* @deprecated
|
|
851
444
|
* @throws {RequiredError}
|
|
852
445
|
*/
|
|
853
|
-
async
|
|
854
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
446
|
+
async updateClaimStatus(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimStatusResponseClass>> {
|
|
447
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateClaimStatus(id, updateClaimStatusRequestDto, authorization, options);
|
|
855
448
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
856
449
|
},
|
|
857
450
|
}
|
|
@@ -875,18 +468,6 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
875
468
|
createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimStatusResponseClass> {
|
|
876
469
|
return localVarFp.createClaimStatus(createClaimStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
877
470
|
},
|
|
878
|
-
/**
|
|
879
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
880
|
-
* @summary Create the claim status
|
|
881
|
-
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
882
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
883
|
-
* @param {*} [options] Override http request option.
|
|
884
|
-
* @deprecated
|
|
885
|
-
* @throws {RequiredError}
|
|
886
|
-
*/
|
|
887
|
-
createClaimStatus1(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimStatusResponseClass> {
|
|
888
|
-
return localVarFp.createClaimStatus1(createClaimStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
889
|
-
},
|
|
890
471
|
/**
|
|
891
472
|
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
892
473
|
* @summary Delete the claim status
|
|
@@ -898,18 +479,6 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
898
479
|
deleteClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
899
480
|
return localVarFp.deleteClaimStatus(id, authorization, options).then((request) => request(axios, basePath));
|
|
900
481
|
},
|
|
901
|
-
/**
|
|
902
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
903
|
-
* @summary Delete the claim status
|
|
904
|
-
* @param {number} id
|
|
905
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
906
|
-
* @param {*} [options] Override http request option.
|
|
907
|
-
* @deprecated
|
|
908
|
-
* @throws {RequiredError}
|
|
909
|
-
*/
|
|
910
|
-
deleteClaimStatus1(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
911
|
-
return localVarFp.deleteClaimStatus1(id, authorization, options).then((request) => request(axios, basePath));
|
|
912
|
-
},
|
|
913
482
|
/**
|
|
914
483
|
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
915
484
|
* @summary Retrieve the claim status
|
|
@@ -921,18 +490,6 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
921
490
|
getClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimStatusResponseClass> {
|
|
922
491
|
return localVarFp.getClaimStatus(id, authorization, options).then((request) => request(axios, basePath));
|
|
923
492
|
},
|
|
924
|
-
/**
|
|
925
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
926
|
-
* @summary Retrieve the claim status
|
|
927
|
-
* @param {number} id
|
|
928
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
929
|
-
* @param {*} [options] Override http request option.
|
|
930
|
-
* @deprecated
|
|
931
|
-
* @throws {RequiredError}
|
|
932
|
-
*/
|
|
933
|
-
getClaimStatus1(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimStatusResponseClass> {
|
|
934
|
-
return localVarFp.getClaimStatus1(id, authorization, options).then((request) => request(axios, basePath));
|
|
935
|
-
},
|
|
936
493
|
/**
|
|
937
494
|
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
938
495
|
* @summary List claim statuses
|
|
@@ -950,24 +507,6 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
950
507
|
listClaimStatuses(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimStatusesResponseClass> {
|
|
951
508
|
return localVarFp.listClaimStatuses(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
952
509
|
},
|
|
953
|
-
/**
|
|
954
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
955
|
-
* @summary List claim statuses
|
|
956
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
957
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
958
|
-
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
959
|
-
* @param {string} [filter] 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, name, productSlug</i>
|
|
960
|
-
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
961
|
-
* @param {string} [order] 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</i>
|
|
962
|
-
* @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/>
|
|
963
|
-
* @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, name, productSlug</i>
|
|
964
|
-
* @param {*} [options] Override http request option.
|
|
965
|
-
* @deprecated
|
|
966
|
-
* @throws {RequiredError}
|
|
967
|
-
*/
|
|
968
|
-
listClaimStatuses1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimStatusesResponseClass> {
|
|
969
|
-
return localVarFp.listClaimStatuses1(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
970
|
-
},
|
|
971
510
|
/**
|
|
972
511
|
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
973
512
|
* @summary Patch claim status
|
|
@@ -980,19 +519,6 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
980
519
|
patchClaimStatus(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimStatusResponseClass> {
|
|
981
520
|
return localVarFp.patchClaimStatus(id, patchClaimStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
982
521
|
},
|
|
983
|
-
/**
|
|
984
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
985
|
-
* @summary Patch claim status
|
|
986
|
-
* @param {number} id
|
|
987
|
-
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
988
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
989
|
-
* @param {*} [options] Override http request option.
|
|
990
|
-
* @deprecated
|
|
991
|
-
* @throws {RequiredError}
|
|
992
|
-
*/
|
|
993
|
-
patchClaimStatus1(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimStatusResponseClass> {
|
|
994
|
-
return localVarFp.patchClaimStatus1(id, patchClaimStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
995
|
-
},
|
|
996
522
|
/**
|
|
997
523
|
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
998
524
|
* @summary Update the claim status
|
|
@@ -1005,19 +531,6 @@ export const ClaimStatusesApiFactory = function (configuration?: Configuration,
|
|
|
1005
531
|
updateClaimStatus(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimStatusResponseClass> {
|
|
1006
532
|
return localVarFp.updateClaimStatus(id, updateClaimStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
1007
533
|
},
|
|
1008
|
-
/**
|
|
1009
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1010
|
-
* @summary Update the claim status
|
|
1011
|
-
* @param {number} id
|
|
1012
|
-
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
1013
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1014
|
-
* @param {*} [options] Override http request option.
|
|
1015
|
-
* @deprecated
|
|
1016
|
-
* @throws {RequiredError}
|
|
1017
|
-
*/
|
|
1018
|
-
updateClaimStatus1(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimStatusResponseClass> {
|
|
1019
|
-
return localVarFp.updateClaimStatus1(id, updateClaimStatusRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
1020
|
-
},
|
|
1021
534
|
};
|
|
1022
535
|
};
|
|
1023
536
|
|
|
@@ -1042,27 +555,6 @@ export interface ClaimStatusesApiCreateClaimStatusRequest {
|
|
|
1042
555
|
readonly authorization?: string
|
|
1043
556
|
}
|
|
1044
557
|
|
|
1045
|
-
/**
|
|
1046
|
-
* Request parameters for createClaimStatus1 operation in ClaimStatusesApi.
|
|
1047
|
-
* @export
|
|
1048
|
-
* @interface ClaimStatusesApiCreateClaimStatus1Request
|
|
1049
|
-
*/
|
|
1050
|
-
export interface ClaimStatusesApiCreateClaimStatus1Request {
|
|
1051
|
-
/**
|
|
1052
|
-
*
|
|
1053
|
-
* @type {CreateClaimStatusRequestDto}
|
|
1054
|
-
* @memberof ClaimStatusesApiCreateClaimStatus1
|
|
1055
|
-
*/
|
|
1056
|
-
readonly createClaimStatusRequestDto: CreateClaimStatusRequestDto
|
|
1057
|
-
|
|
1058
|
-
/**
|
|
1059
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1060
|
-
* @type {string}
|
|
1061
|
-
* @memberof ClaimStatusesApiCreateClaimStatus1
|
|
1062
|
-
*/
|
|
1063
|
-
readonly authorization?: string
|
|
1064
|
-
}
|
|
1065
|
-
|
|
1066
558
|
/**
|
|
1067
559
|
* Request parameters for deleteClaimStatus operation in ClaimStatusesApi.
|
|
1068
560
|
* @export
|
|
@@ -1084,27 +576,6 @@ export interface ClaimStatusesApiDeleteClaimStatusRequest {
|
|
|
1084
576
|
readonly authorization?: string
|
|
1085
577
|
}
|
|
1086
578
|
|
|
1087
|
-
/**
|
|
1088
|
-
* Request parameters for deleteClaimStatus1 operation in ClaimStatusesApi.
|
|
1089
|
-
* @export
|
|
1090
|
-
* @interface ClaimStatusesApiDeleteClaimStatus1Request
|
|
1091
|
-
*/
|
|
1092
|
-
export interface ClaimStatusesApiDeleteClaimStatus1Request {
|
|
1093
|
-
/**
|
|
1094
|
-
*
|
|
1095
|
-
* @type {number}
|
|
1096
|
-
* @memberof ClaimStatusesApiDeleteClaimStatus1
|
|
1097
|
-
*/
|
|
1098
|
-
readonly id: number
|
|
1099
|
-
|
|
1100
|
-
/**
|
|
1101
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1102
|
-
* @type {string}
|
|
1103
|
-
* @memberof ClaimStatusesApiDeleteClaimStatus1
|
|
1104
|
-
*/
|
|
1105
|
-
readonly authorization?: string
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
579
|
/**
|
|
1109
580
|
* Request parameters for getClaimStatus operation in ClaimStatusesApi.
|
|
1110
581
|
* @export
|
|
@@ -1126,27 +597,6 @@ export interface ClaimStatusesApiGetClaimStatusRequest {
|
|
|
1126
597
|
readonly authorization?: string
|
|
1127
598
|
}
|
|
1128
599
|
|
|
1129
|
-
/**
|
|
1130
|
-
* Request parameters for getClaimStatus1 operation in ClaimStatusesApi.
|
|
1131
|
-
* @export
|
|
1132
|
-
* @interface ClaimStatusesApiGetClaimStatus1Request
|
|
1133
|
-
*/
|
|
1134
|
-
export interface ClaimStatusesApiGetClaimStatus1Request {
|
|
1135
|
-
/**
|
|
1136
|
-
*
|
|
1137
|
-
* @type {number}
|
|
1138
|
-
* @memberof ClaimStatusesApiGetClaimStatus1
|
|
1139
|
-
*/
|
|
1140
|
-
readonly id: number
|
|
1141
|
-
|
|
1142
|
-
/**
|
|
1143
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1144
|
-
* @type {string}
|
|
1145
|
-
* @memberof ClaimStatusesApiGetClaimStatus1
|
|
1146
|
-
*/
|
|
1147
|
-
readonly authorization?: string
|
|
1148
|
-
}
|
|
1149
|
-
|
|
1150
600
|
/**
|
|
1151
601
|
* Request parameters for listClaimStatuses operation in ClaimStatusesApi.
|
|
1152
602
|
* @export
|
|
@@ -1210,69 +660,6 @@ export interface ClaimStatusesApiListClaimStatusesRequest {
|
|
|
1210
660
|
readonly filters?: string
|
|
1211
661
|
}
|
|
1212
662
|
|
|
1213
|
-
/**
|
|
1214
|
-
* Request parameters for listClaimStatuses1 operation in ClaimStatusesApi.
|
|
1215
|
-
* @export
|
|
1216
|
-
* @interface ClaimStatusesApiListClaimStatuses1Request
|
|
1217
|
-
*/
|
|
1218
|
-
export interface ClaimStatusesApiListClaimStatuses1Request {
|
|
1219
|
-
/**
|
|
1220
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1221
|
-
* @type {string}
|
|
1222
|
-
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
1223
|
-
*/
|
|
1224
|
-
readonly authorization?: string
|
|
1225
|
-
|
|
1226
|
-
/**
|
|
1227
|
-
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
1228
|
-
* @type {number}
|
|
1229
|
-
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
1230
|
-
*/
|
|
1231
|
-
readonly pageSize?: number
|
|
1232
|
-
|
|
1233
|
-
/**
|
|
1234
|
-
* 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.
|
|
1235
|
-
* @type {string}
|
|
1236
|
-
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
1237
|
-
*/
|
|
1238
|
-
readonly pageToken?: string
|
|
1239
|
-
|
|
1240
|
-
/**
|
|
1241
|
-
* 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, name, productSlug</i>
|
|
1242
|
-
* @type {string}
|
|
1243
|
-
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
1244
|
-
*/
|
|
1245
|
-
readonly filter?: string
|
|
1246
|
-
|
|
1247
|
-
/**
|
|
1248
|
-
* To search the list by any field, pass search=xxx to fetch the result.
|
|
1249
|
-
* @type {string}
|
|
1250
|
-
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
1251
|
-
*/
|
|
1252
|
-
readonly search?: string
|
|
1253
|
-
|
|
1254
|
-
/**
|
|
1255
|
-
* 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</i>
|
|
1256
|
-
* @type {string}
|
|
1257
|
-
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
1258
|
-
*/
|
|
1259
|
-
readonly order?: string
|
|
1260
|
-
|
|
1261
|
-
/**
|
|
1262
|
-
* 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/>
|
|
1263
|
-
* @type {string}
|
|
1264
|
-
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
1265
|
-
*/
|
|
1266
|
-
readonly expand?: string
|
|
1267
|
-
|
|
1268
|
-
/**
|
|
1269
|
-
* 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, name, productSlug</i>
|
|
1270
|
-
* @type {string}
|
|
1271
|
-
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
1272
|
-
*/
|
|
1273
|
-
readonly filters?: string
|
|
1274
|
-
}
|
|
1275
|
-
|
|
1276
663
|
/**
|
|
1277
664
|
* Request parameters for patchClaimStatus operation in ClaimStatusesApi.
|
|
1278
665
|
* @export
|
|
@@ -1301,34 +688,6 @@ export interface ClaimStatusesApiPatchClaimStatusRequest {
|
|
|
1301
688
|
readonly authorization?: string
|
|
1302
689
|
}
|
|
1303
690
|
|
|
1304
|
-
/**
|
|
1305
|
-
* Request parameters for patchClaimStatus1 operation in ClaimStatusesApi.
|
|
1306
|
-
* @export
|
|
1307
|
-
* @interface ClaimStatusesApiPatchClaimStatus1Request
|
|
1308
|
-
*/
|
|
1309
|
-
export interface ClaimStatusesApiPatchClaimStatus1Request {
|
|
1310
|
-
/**
|
|
1311
|
-
*
|
|
1312
|
-
* @type {number}
|
|
1313
|
-
* @memberof ClaimStatusesApiPatchClaimStatus1
|
|
1314
|
-
*/
|
|
1315
|
-
readonly id: number
|
|
1316
|
-
|
|
1317
|
-
/**
|
|
1318
|
-
*
|
|
1319
|
-
* @type {PatchClaimStatusRequestDto}
|
|
1320
|
-
* @memberof ClaimStatusesApiPatchClaimStatus1
|
|
1321
|
-
*/
|
|
1322
|
-
readonly patchClaimStatusRequestDto: PatchClaimStatusRequestDto
|
|
1323
|
-
|
|
1324
|
-
/**
|
|
1325
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1326
|
-
* @type {string}
|
|
1327
|
-
* @memberof ClaimStatusesApiPatchClaimStatus1
|
|
1328
|
-
*/
|
|
1329
|
-
readonly authorization?: string
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
691
|
/**
|
|
1333
692
|
* Request parameters for updateClaimStatus operation in ClaimStatusesApi.
|
|
1334
693
|
* @export
|
|
@@ -1357,34 +716,6 @@ export interface ClaimStatusesApiUpdateClaimStatusRequest {
|
|
|
1357
716
|
readonly authorization?: string
|
|
1358
717
|
}
|
|
1359
718
|
|
|
1360
|
-
/**
|
|
1361
|
-
* Request parameters for updateClaimStatus1 operation in ClaimStatusesApi.
|
|
1362
|
-
* @export
|
|
1363
|
-
* @interface ClaimStatusesApiUpdateClaimStatus1Request
|
|
1364
|
-
*/
|
|
1365
|
-
export interface ClaimStatusesApiUpdateClaimStatus1Request {
|
|
1366
|
-
/**
|
|
1367
|
-
*
|
|
1368
|
-
* @type {number}
|
|
1369
|
-
* @memberof ClaimStatusesApiUpdateClaimStatus1
|
|
1370
|
-
*/
|
|
1371
|
-
readonly id: number
|
|
1372
|
-
|
|
1373
|
-
/**
|
|
1374
|
-
*
|
|
1375
|
-
* @type {UpdateClaimStatusRequestDto}
|
|
1376
|
-
* @memberof ClaimStatusesApiUpdateClaimStatus1
|
|
1377
|
-
*/
|
|
1378
|
-
readonly updateClaimStatusRequestDto: UpdateClaimStatusRequestDto
|
|
1379
|
-
|
|
1380
|
-
/**
|
|
1381
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
1382
|
-
* @type {string}
|
|
1383
|
-
* @memberof ClaimStatusesApiUpdateClaimStatus1
|
|
1384
|
-
*/
|
|
1385
|
-
readonly authorization?: string
|
|
1386
|
-
}
|
|
1387
|
-
|
|
1388
719
|
/**
|
|
1389
720
|
* ClaimStatusesApi - object-oriented interface
|
|
1390
721
|
* @export
|
|
@@ -1404,19 +735,6 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1404
735
|
return ClaimStatusesApiFp(this.configuration).createClaimStatus(requestParameters.createClaimStatusRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1405
736
|
}
|
|
1406
737
|
|
|
1407
|
-
/**
|
|
1408
|
-
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1409
|
-
* @summary Create the claim status
|
|
1410
|
-
* @param {ClaimStatusesApiCreateClaimStatus1Request} requestParameters Request parameters.
|
|
1411
|
-
* @param {*} [options] Override http request option.
|
|
1412
|
-
* @deprecated
|
|
1413
|
-
* @throws {RequiredError}
|
|
1414
|
-
* @memberof ClaimStatusesApi
|
|
1415
|
-
*/
|
|
1416
|
-
public createClaimStatus1(requestParameters: ClaimStatusesApiCreateClaimStatus1Request, options?: AxiosRequestConfig) {
|
|
1417
|
-
return ClaimStatusesApiFp(this.configuration).createClaimStatus1(requestParameters.createClaimStatusRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1418
|
-
}
|
|
1419
|
-
|
|
1420
738
|
/**
|
|
1421
739
|
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
1422
740
|
* @summary Delete the claim status
|
|
@@ -1429,19 +747,6 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1429
747
|
return ClaimStatusesApiFp(this.configuration).deleteClaimStatus(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1430
748
|
}
|
|
1431
749
|
|
|
1432
|
-
/**
|
|
1433
|
-
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1434
|
-
* @summary Delete the claim status
|
|
1435
|
-
* @param {ClaimStatusesApiDeleteClaimStatus1Request} requestParameters Request parameters.
|
|
1436
|
-
* @param {*} [options] Override http request option.
|
|
1437
|
-
* @deprecated
|
|
1438
|
-
* @throws {RequiredError}
|
|
1439
|
-
* @memberof ClaimStatusesApi
|
|
1440
|
-
*/
|
|
1441
|
-
public deleteClaimStatus1(requestParameters: ClaimStatusesApiDeleteClaimStatus1Request, options?: AxiosRequestConfig) {
|
|
1442
|
-
return ClaimStatusesApiFp(this.configuration).deleteClaimStatus1(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1443
|
-
}
|
|
1444
|
-
|
|
1445
750
|
/**
|
|
1446
751
|
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
1447
752
|
* @summary Retrieve the claim status
|
|
@@ -1454,19 +759,6 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1454
759
|
return ClaimStatusesApiFp(this.configuration).getClaimStatus(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1455
760
|
}
|
|
1456
761
|
|
|
1457
|
-
/**
|
|
1458
|
-
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1459
|
-
* @summary Retrieve the claim status
|
|
1460
|
-
* @param {ClaimStatusesApiGetClaimStatus1Request} requestParameters Request parameters.
|
|
1461
|
-
* @param {*} [options] Override http request option.
|
|
1462
|
-
* @deprecated
|
|
1463
|
-
* @throws {RequiredError}
|
|
1464
|
-
* @memberof ClaimStatusesApi
|
|
1465
|
-
*/
|
|
1466
|
-
public getClaimStatus1(requestParameters: ClaimStatusesApiGetClaimStatus1Request, options?: AxiosRequestConfig) {
|
|
1467
|
-
return ClaimStatusesApiFp(this.configuration).getClaimStatus1(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1468
|
-
}
|
|
1469
|
-
|
|
1470
762
|
/**
|
|
1471
763
|
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
1472
764
|
* @summary List claim statuses
|
|
@@ -1479,19 +771,6 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1479
771
|
return ClaimStatusesApiFp(this.configuration).listClaimStatuses(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
|
|
1480
772
|
}
|
|
1481
773
|
|
|
1482
|
-
/**
|
|
1483
|
-
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1484
|
-
* @summary List claim statuses
|
|
1485
|
-
* @param {ClaimStatusesApiListClaimStatuses1Request} requestParameters Request parameters.
|
|
1486
|
-
* @param {*} [options] Override http request option.
|
|
1487
|
-
* @deprecated
|
|
1488
|
-
* @throws {RequiredError}
|
|
1489
|
-
* @memberof ClaimStatusesApi
|
|
1490
|
-
*/
|
|
1491
|
-
public listClaimStatuses1(requestParameters: ClaimStatusesApiListClaimStatuses1Request = {}, options?: AxiosRequestConfig) {
|
|
1492
|
-
return ClaimStatusesApiFp(this.configuration).listClaimStatuses1(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
774
|
/**
|
|
1496
775
|
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1497
776
|
* @summary Patch claim status
|
|
@@ -1504,19 +783,6 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1504
783
|
return ClaimStatusesApiFp(this.configuration).patchClaimStatus(requestParameters.id, requestParameters.patchClaimStatusRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1505
784
|
}
|
|
1506
785
|
|
|
1507
|
-
/**
|
|
1508
|
-
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1509
|
-
* @summary Patch claim status
|
|
1510
|
-
* @param {ClaimStatusesApiPatchClaimStatus1Request} requestParameters Request parameters.
|
|
1511
|
-
* @param {*} [options] Override http request option.
|
|
1512
|
-
* @deprecated
|
|
1513
|
-
* @throws {RequiredError}
|
|
1514
|
-
* @memberof ClaimStatusesApi
|
|
1515
|
-
*/
|
|
1516
|
-
public patchClaimStatus1(requestParameters: ClaimStatusesApiPatchClaimStatus1Request, options?: AxiosRequestConfig) {
|
|
1517
|
-
return ClaimStatusesApiFp(this.configuration).patchClaimStatus1(requestParameters.id, requestParameters.patchClaimStatusRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1518
|
-
}
|
|
1519
|
-
|
|
1520
786
|
/**
|
|
1521
787
|
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
1522
788
|
* @summary Update the claim status
|
|
@@ -1528,17 +794,4 @@ export class ClaimStatusesApi extends BaseAPI {
|
|
|
1528
794
|
public updateClaimStatus(requestParameters: ClaimStatusesApiUpdateClaimStatusRequest, options?: AxiosRequestConfig) {
|
|
1529
795
|
return ClaimStatusesApiFp(this.configuration).updateClaimStatus(requestParameters.id, requestParameters.updateClaimStatusRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1530
796
|
}
|
|
1531
|
-
|
|
1532
|
-
/**
|
|
1533
|
-
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
1534
|
-
* @summary Update the claim status
|
|
1535
|
-
* @param {ClaimStatusesApiUpdateClaimStatus1Request} requestParameters Request parameters.
|
|
1536
|
-
* @param {*} [options] Override http request option.
|
|
1537
|
-
* @deprecated
|
|
1538
|
-
* @throws {RequiredError}
|
|
1539
|
-
* @memberof ClaimStatusesApi
|
|
1540
|
-
*/
|
|
1541
|
-
public updateClaimStatus1(requestParameters: ClaimStatusesApiUpdateClaimStatus1Request, options?: AxiosRequestConfig) {
|
|
1542
|
-
return ClaimStatusesApiFp(this.configuration).updateClaimStatus1(requestParameters.id, requestParameters.updateClaimStatusRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1543
|
-
}
|
|
1544
797
|
}
|