@emilgroup/claim-sdk 1.40.1-beta.7 → 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 +6 -613
- package/api/claim-partners-api.ts +0 -504
- package/api/claim-regulations-api.ts +3 -624
- package/api/claim-statuses-api.ts +5 -728
- package/api/claims-api.ts +4 -828
- package/api/health-check-api.ts +0 -62
- package/api/settlements-api.ts +6 -613
- package/api.ts +0 -2
- package/dist/api/claim-partner-roles-api.d.ts +0 -338
- package/dist/api/claim-partner-roles-api.js +0 -505
- package/dist/api/claim-partners-api.d.ts +0 -283
- package/dist/api/claim-partners-api.js +0 -412
- package/dist/api/claim-regulations-api.d.ts +0 -347
- package/dist/api/claim-regulations-api.js +0 -511
- package/dist/api/claim-statuses-api.d.ts +0 -402
- package/dist/api/claim-statuses-api.js +11 -615
- package/dist/api/claims-api.d.ts +0 -457
- package/dist/api/claims-api.js +30 -726
- package/dist/api/health-check-api.d.ts +0 -29
- package/dist/api/health-check-api.js +0 -69
- package/dist/api/settlements-api.d.ts +0 -338
- package/dist/api/settlements-api.js +0 -505
- 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 -1316
- package/dist/api/claim-positions-api.d.ts +0 -740
- package/dist/api/claim-positions-api.js +0 -1157
- 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
|
@@ -73,57 +73,6 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
77
|
-
|
|
78
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
79
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
80
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
81
|
-
localVarRequestOptions.data = serializeDataIfNeeded(createClaimPartnerRequestDto, localVarRequestOptions, configuration)
|
|
82
|
-
|
|
83
|
-
return {
|
|
84
|
-
url: toPathString(localVarUrlObj),
|
|
85
|
-
options: localVarRequestOptions,
|
|
86
|
-
};
|
|
87
|
-
},
|
|
88
|
-
/**
|
|
89
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
90
|
-
* @summary Create the claim partner
|
|
91
|
-
* @param {string} claimCode Unique identifier for the claim object.
|
|
92
|
-
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
93
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
94
|
-
* @param {*} [options] Override http request option.
|
|
95
|
-
* @throws {RequiredError}
|
|
96
|
-
*/
|
|
97
|
-
createClaimPartner1: async (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98
|
-
// verify required parameter 'claimCode' is not null or undefined
|
|
99
|
-
assertParamExists('createClaimPartner1', 'claimCode', claimCode)
|
|
100
|
-
// verify required parameter 'createClaimPartnerRequestDto' is not null or undefined
|
|
101
|
-
assertParamExists('createClaimPartner1', 'createClaimPartnerRequestDto', createClaimPartnerRequestDto)
|
|
102
|
-
const localVarPath = `/claimservice/v1/claims/{claimCode}/partner`
|
|
103
|
-
.replace(`{${"claimCode"}}`, encodeURIComponent(String(claimCode)));
|
|
104
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
105
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
106
|
-
let baseOptions;
|
|
107
|
-
let baseAccessToken;
|
|
108
|
-
if (configuration) {
|
|
109
|
-
baseOptions = configuration.baseOptions;
|
|
110
|
-
baseAccessToken = configuration.accessToken;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
114
|
-
const localVarHeaderParameter = {} as any;
|
|
115
|
-
const localVarQueryParameter = {} as any;
|
|
116
|
-
|
|
117
|
-
// authentication bearer required
|
|
118
|
-
// http bearer authentication required
|
|
119
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
120
|
-
|
|
121
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
122
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
76
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
128
77
|
|
|
129
78
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -172,51 +121,6 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
172
121
|
|
|
173
122
|
|
|
174
123
|
|
|
175
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
176
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
177
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
178
|
-
|
|
179
|
-
return {
|
|
180
|
-
url: toPathString(localVarUrlObj),
|
|
181
|
-
options: localVarRequestOptions,
|
|
182
|
-
};
|
|
183
|
-
},
|
|
184
|
-
/**
|
|
185
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
186
|
-
* @summary Delete the claim partner
|
|
187
|
-
* @param {number} id
|
|
188
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
189
|
-
* @param {*} [options] Override http request option.
|
|
190
|
-
* @throws {RequiredError}
|
|
191
|
-
*/
|
|
192
|
-
deleteClaimPartner1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
193
|
-
// verify required parameter 'id' is not null or undefined
|
|
194
|
-
assertParamExists('deleteClaimPartner1', 'id', id)
|
|
195
|
-
const localVarPath = `/claimservice/v1/claim-partners/{id}`
|
|
196
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
197
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
198
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
199
|
-
let baseOptions;
|
|
200
|
-
let baseAccessToken;
|
|
201
|
-
if (configuration) {
|
|
202
|
-
baseOptions = configuration.baseOptions;
|
|
203
|
-
baseAccessToken = configuration.accessToken;
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
207
|
-
const localVarHeaderParameter = {} as any;
|
|
208
|
-
const localVarQueryParameter = {} as any;
|
|
209
|
-
|
|
210
|
-
// authentication bearer required
|
|
211
|
-
// http bearer authentication required
|
|
212
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
213
|
-
|
|
214
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
215
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
124
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
221
125
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
222
126
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -262,51 +166,6 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
262
166
|
|
|
263
167
|
|
|
264
168
|
|
|
265
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
266
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
267
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
268
|
-
|
|
269
|
-
return {
|
|
270
|
-
url: toPathString(localVarUrlObj),
|
|
271
|
-
options: localVarRequestOptions,
|
|
272
|
-
};
|
|
273
|
-
},
|
|
274
|
-
/**
|
|
275
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
276
|
-
* @summary Retrieve the claim partner
|
|
277
|
-
* @param {number} id
|
|
278
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
279
|
-
* @param {*} [options] Override http request option.
|
|
280
|
-
* @throws {RequiredError}
|
|
281
|
-
*/
|
|
282
|
-
getClaimPartner1: async (id: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
283
|
-
// verify required parameter 'id' is not null or undefined
|
|
284
|
-
assertParamExists('getClaimPartner1', 'id', id)
|
|
285
|
-
const localVarPath = `/claimservice/v1/claim-partners/{id}`
|
|
286
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
287
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
288
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
289
|
-
let baseOptions;
|
|
290
|
-
let baseAccessToken;
|
|
291
|
-
if (configuration) {
|
|
292
|
-
baseOptions = configuration.baseOptions;
|
|
293
|
-
baseAccessToken = configuration.accessToken;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
297
|
-
const localVarHeaderParameter = {} as any;
|
|
298
|
-
const localVarQueryParameter = {} as any;
|
|
299
|
-
|
|
300
|
-
// authentication bearer required
|
|
301
|
-
// http bearer authentication required
|
|
302
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
303
|
-
|
|
304
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
305
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
169
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
311
170
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
312
171
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -383,82 +242,6 @@ export const ClaimPartnersApiAxiosParamCreator = function (configuration?: Confi
|
|
|
383
242
|
|
|
384
243
|
|
|
385
244
|
|
|
386
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
387
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
388
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
389
|
-
|
|
390
|
-
return {
|
|
391
|
-
url: toPathString(localVarUrlObj),
|
|
392
|
-
options: localVarRequestOptions,
|
|
393
|
-
};
|
|
394
|
-
},
|
|
395
|
-
/**
|
|
396
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
397
|
-
* @summary List claim partners
|
|
398
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
399
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
400
|
-
* @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.
|
|
401
|
-
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
402
|
-
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
403
|
-
* @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, createdAt, updatedAt</i>
|
|
404
|
-
* @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/> <i>Allowed values: role, partner<i>
|
|
405
|
-
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
406
|
-
* @param {*} [options] Override http request option.
|
|
407
|
-
* @throws {RequiredError}
|
|
408
|
-
*/
|
|
409
|
-
listClaimPartners1: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
410
|
-
const localVarPath = `/claimservice/v1/claim-partners`;
|
|
411
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
412
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
413
|
-
let baseOptions;
|
|
414
|
-
let baseAccessToken;
|
|
415
|
-
if (configuration) {
|
|
416
|
-
baseOptions = configuration.baseOptions;
|
|
417
|
-
baseAccessToken = configuration.accessToken;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
421
|
-
const localVarHeaderParameter = {} as any;
|
|
422
|
-
const localVarQueryParameter = {} as any;
|
|
423
|
-
|
|
424
|
-
// authentication bearer required
|
|
425
|
-
// http bearer authentication required
|
|
426
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
427
|
-
|
|
428
|
-
if (pageSize !== undefined) {
|
|
429
|
-
localVarQueryParameter['pageSize'] = pageSize;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
if (pageToken !== undefined) {
|
|
433
|
-
localVarQueryParameter['pageToken'] = pageToken;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
if (filter !== undefined) {
|
|
437
|
-
localVarQueryParameter['filter'] = filter;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
if (search !== undefined) {
|
|
441
|
-
localVarQueryParameter['search'] = search;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
if (order !== undefined) {
|
|
445
|
-
localVarQueryParameter['order'] = order;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
if (expand !== undefined) {
|
|
449
|
-
localVarQueryParameter['expand'] = expand;
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
if (filters !== undefined) {
|
|
453
|
-
localVarQueryParameter['filters'] = filters;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
457
|
-
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
245
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
463
246
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
464
247
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -491,19 +274,6 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
491
274
|
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPartner(claimCode, createClaimPartnerRequestDto, authorization, options);
|
|
492
275
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
493
276
|
},
|
|
494
|
-
/**
|
|
495
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
496
|
-
* @summary Create the claim partner
|
|
497
|
-
* @param {string} claimCode Unique identifier for the claim object.
|
|
498
|
-
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
499
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
500
|
-
* @param {*} [options] Override http request option.
|
|
501
|
-
* @throws {RequiredError}
|
|
502
|
-
*/
|
|
503
|
-
async createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>> {
|
|
504
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createClaimPartner1(claimCode, createClaimPartnerRequestDto, authorization, options);
|
|
505
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
506
|
-
},
|
|
507
277
|
/**
|
|
508
278
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
509
279
|
* @summary Delete the claim partner
|
|
@@ -516,18 +286,6 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
516
286
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPartner(id, authorization, options);
|
|
517
287
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
518
288
|
},
|
|
519
|
-
/**
|
|
520
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
521
|
-
* @summary Delete the claim partner
|
|
522
|
-
* @param {number} id
|
|
523
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
524
|
-
* @param {*} [options] Override http request option.
|
|
525
|
-
* @throws {RequiredError}
|
|
526
|
-
*/
|
|
527
|
-
async deleteClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
528
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteClaimPartner1(id, authorization, options);
|
|
529
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
530
|
-
},
|
|
531
289
|
/**
|
|
532
290
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
533
291
|
* @summary Retrieve the claim partner
|
|
@@ -540,18 +298,6 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
540
298
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPartner(id, authorization, options);
|
|
541
299
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
542
300
|
},
|
|
543
|
-
/**
|
|
544
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
545
|
-
* @summary Retrieve the claim partner
|
|
546
|
-
* @param {number} id
|
|
547
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
548
|
-
* @param {*} [options] Override http request option.
|
|
549
|
-
* @throws {RequiredError}
|
|
550
|
-
*/
|
|
551
|
-
async getClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>> {
|
|
552
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getClaimPartner1(id, authorization, options);
|
|
553
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
554
|
-
},
|
|
555
301
|
/**
|
|
556
302
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
557
303
|
* @summary List claim partners
|
|
@@ -570,24 +316,6 @@ export const ClaimPartnersApiFp = function(configuration?: Configuration) {
|
|
|
570
316
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPartners(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
571
317
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
572
318
|
},
|
|
573
|
-
/**
|
|
574
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
575
|
-
* @summary List claim partners
|
|
576
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
577
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
578
|
-
* @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.
|
|
579
|
-
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
580
|
-
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
581
|
-
* @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, createdAt, updatedAt</i>
|
|
582
|
-
* @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/> <i>Allowed values: role, partner<i>
|
|
583
|
-
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
584
|
-
* @param {*} [options] Override http request option.
|
|
585
|
-
* @throws {RequiredError}
|
|
586
|
-
*/
|
|
587
|
-
async listClaimPartners1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnersResponseClass>> {
|
|
588
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listClaimPartners1(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
|
|
589
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
590
|
-
},
|
|
591
319
|
}
|
|
592
320
|
};
|
|
593
321
|
|
|
@@ -610,18 +338,6 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
610
338
|
createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass> {
|
|
611
339
|
return localVarFp.createClaimPartner(claimCode, createClaimPartnerRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
612
340
|
},
|
|
613
|
-
/**
|
|
614
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
615
|
-
* @summary Create the claim partner
|
|
616
|
-
* @param {string} claimCode Unique identifier for the claim object.
|
|
617
|
-
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
618
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
619
|
-
* @param {*} [options] Override http request option.
|
|
620
|
-
* @throws {RequiredError}
|
|
621
|
-
*/
|
|
622
|
-
createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass> {
|
|
623
|
-
return localVarFp.createClaimPartner1(claimCode, createClaimPartnerRequestDto, authorization, options).then((request) => request(axios, basePath));
|
|
624
|
-
},
|
|
625
341
|
/**
|
|
626
342
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
627
343
|
* @summary Delete the claim partner
|
|
@@ -633,17 +349,6 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
633
349
|
deleteClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
634
350
|
return localVarFp.deleteClaimPartner(id, authorization, options).then((request) => request(axios, basePath));
|
|
635
351
|
},
|
|
636
|
-
/**
|
|
637
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
638
|
-
* @summary Delete the claim partner
|
|
639
|
-
* @param {number} id
|
|
640
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
641
|
-
* @param {*} [options] Override http request option.
|
|
642
|
-
* @throws {RequiredError}
|
|
643
|
-
*/
|
|
644
|
-
deleteClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<void> {
|
|
645
|
-
return localVarFp.deleteClaimPartner1(id, authorization, options).then((request) => request(axios, basePath));
|
|
646
|
-
},
|
|
647
352
|
/**
|
|
648
353
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
649
354
|
* @summary Retrieve the claim partner
|
|
@@ -655,17 +360,6 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
655
360
|
getClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass> {
|
|
656
361
|
return localVarFp.getClaimPartner(id, authorization, options).then((request) => request(axios, basePath));
|
|
657
362
|
},
|
|
658
|
-
/**
|
|
659
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
660
|
-
* @summary Retrieve the claim partner
|
|
661
|
-
* @param {number} id
|
|
662
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
663
|
-
* @param {*} [options] Override http request option.
|
|
664
|
-
* @throws {RequiredError}
|
|
665
|
-
*/
|
|
666
|
-
getClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass> {
|
|
667
|
-
return localVarFp.getClaimPartner1(id, authorization, options).then((request) => request(axios, basePath));
|
|
668
|
-
},
|
|
669
363
|
/**
|
|
670
364
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
671
365
|
* @summary List claim partners
|
|
@@ -683,23 +377,6 @@ export const ClaimPartnersApiFactory = function (configuration?: Configuration,
|
|
|
683
377
|
listClaimPartners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass> {
|
|
684
378
|
return localVarFp.listClaimPartners(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
685
379
|
},
|
|
686
|
-
/**
|
|
687
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
688
|
-
* @summary List claim partners
|
|
689
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
690
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
691
|
-
* @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.
|
|
692
|
-
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
693
|
-
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
694
|
-
* @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, createdAt, updatedAt</i>
|
|
695
|
-
* @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/> <i>Allowed values: role, partner<i>
|
|
696
|
-
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
697
|
-
* @param {*} [options] Override http request option.
|
|
698
|
-
* @throws {RequiredError}
|
|
699
|
-
*/
|
|
700
|
-
listClaimPartners1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass> {
|
|
701
|
-
return localVarFp.listClaimPartners1(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
702
|
-
},
|
|
703
380
|
};
|
|
704
381
|
};
|
|
705
382
|
|
|
@@ -731,34 +408,6 @@ export interface ClaimPartnersApiCreateClaimPartnerRequest {
|
|
|
731
408
|
readonly authorization?: string
|
|
732
409
|
}
|
|
733
410
|
|
|
734
|
-
/**
|
|
735
|
-
* Request parameters for createClaimPartner1 operation in ClaimPartnersApi.
|
|
736
|
-
* @export
|
|
737
|
-
* @interface ClaimPartnersApiCreateClaimPartner1Request
|
|
738
|
-
*/
|
|
739
|
-
export interface ClaimPartnersApiCreateClaimPartner1Request {
|
|
740
|
-
/**
|
|
741
|
-
* Unique identifier for the claim object.
|
|
742
|
-
* @type {string}
|
|
743
|
-
* @memberof ClaimPartnersApiCreateClaimPartner1
|
|
744
|
-
*/
|
|
745
|
-
readonly claimCode: string
|
|
746
|
-
|
|
747
|
-
/**
|
|
748
|
-
*
|
|
749
|
-
* @type {CreateClaimPartnerRequestDto}
|
|
750
|
-
* @memberof ClaimPartnersApiCreateClaimPartner1
|
|
751
|
-
*/
|
|
752
|
-
readonly createClaimPartnerRequestDto: CreateClaimPartnerRequestDto
|
|
753
|
-
|
|
754
|
-
/**
|
|
755
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
756
|
-
* @type {string}
|
|
757
|
-
* @memberof ClaimPartnersApiCreateClaimPartner1
|
|
758
|
-
*/
|
|
759
|
-
readonly authorization?: string
|
|
760
|
-
}
|
|
761
|
-
|
|
762
411
|
/**
|
|
763
412
|
* Request parameters for deleteClaimPartner operation in ClaimPartnersApi.
|
|
764
413
|
* @export
|
|
@@ -780,27 +429,6 @@ export interface ClaimPartnersApiDeleteClaimPartnerRequest {
|
|
|
780
429
|
readonly authorization?: string
|
|
781
430
|
}
|
|
782
431
|
|
|
783
|
-
/**
|
|
784
|
-
* Request parameters for deleteClaimPartner1 operation in ClaimPartnersApi.
|
|
785
|
-
* @export
|
|
786
|
-
* @interface ClaimPartnersApiDeleteClaimPartner1Request
|
|
787
|
-
*/
|
|
788
|
-
export interface ClaimPartnersApiDeleteClaimPartner1Request {
|
|
789
|
-
/**
|
|
790
|
-
*
|
|
791
|
-
* @type {number}
|
|
792
|
-
* @memberof ClaimPartnersApiDeleteClaimPartner1
|
|
793
|
-
*/
|
|
794
|
-
readonly id: number
|
|
795
|
-
|
|
796
|
-
/**
|
|
797
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
798
|
-
* @type {string}
|
|
799
|
-
* @memberof ClaimPartnersApiDeleteClaimPartner1
|
|
800
|
-
*/
|
|
801
|
-
readonly authorization?: string
|
|
802
|
-
}
|
|
803
|
-
|
|
804
432
|
/**
|
|
805
433
|
* Request parameters for getClaimPartner operation in ClaimPartnersApi.
|
|
806
434
|
* @export
|
|
@@ -822,27 +450,6 @@ export interface ClaimPartnersApiGetClaimPartnerRequest {
|
|
|
822
450
|
readonly authorization?: string
|
|
823
451
|
}
|
|
824
452
|
|
|
825
|
-
/**
|
|
826
|
-
* Request parameters for getClaimPartner1 operation in ClaimPartnersApi.
|
|
827
|
-
* @export
|
|
828
|
-
* @interface ClaimPartnersApiGetClaimPartner1Request
|
|
829
|
-
*/
|
|
830
|
-
export interface ClaimPartnersApiGetClaimPartner1Request {
|
|
831
|
-
/**
|
|
832
|
-
*
|
|
833
|
-
* @type {number}
|
|
834
|
-
* @memberof ClaimPartnersApiGetClaimPartner1
|
|
835
|
-
*/
|
|
836
|
-
readonly id: number
|
|
837
|
-
|
|
838
|
-
/**
|
|
839
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
840
|
-
* @type {string}
|
|
841
|
-
* @memberof ClaimPartnersApiGetClaimPartner1
|
|
842
|
-
*/
|
|
843
|
-
readonly authorization?: string
|
|
844
|
-
}
|
|
845
|
-
|
|
846
453
|
/**
|
|
847
454
|
* Request parameters for listClaimPartners operation in ClaimPartnersApi.
|
|
848
455
|
* @export
|
|
@@ -906,69 +513,6 @@ export interface ClaimPartnersApiListClaimPartnersRequest {
|
|
|
906
513
|
readonly filters?: string
|
|
907
514
|
}
|
|
908
515
|
|
|
909
|
-
/**
|
|
910
|
-
* Request parameters for listClaimPartners1 operation in ClaimPartnersApi.
|
|
911
|
-
* @export
|
|
912
|
-
* @interface ClaimPartnersApiListClaimPartners1Request
|
|
913
|
-
*/
|
|
914
|
-
export interface ClaimPartnersApiListClaimPartners1Request {
|
|
915
|
-
/**
|
|
916
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
917
|
-
* @type {string}
|
|
918
|
-
* @memberof ClaimPartnersApiListClaimPartners1
|
|
919
|
-
*/
|
|
920
|
-
readonly authorization?: string
|
|
921
|
-
|
|
922
|
-
/**
|
|
923
|
-
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
924
|
-
* @type {number}
|
|
925
|
-
* @memberof ClaimPartnersApiListClaimPartners1
|
|
926
|
-
*/
|
|
927
|
-
readonly pageSize?: number
|
|
928
|
-
|
|
929
|
-
/**
|
|
930
|
-
* 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.
|
|
931
|
-
* @type {string}
|
|
932
|
-
* @memberof ClaimPartnersApiListClaimPartners1
|
|
933
|
-
*/
|
|
934
|
-
readonly pageToken?: string
|
|
935
|
-
|
|
936
|
-
/**
|
|
937
|
-
* 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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
938
|
-
* @type {string}
|
|
939
|
-
* @memberof ClaimPartnersApiListClaimPartners1
|
|
940
|
-
*/
|
|
941
|
-
readonly filter?: string
|
|
942
|
-
|
|
943
|
-
/**
|
|
944
|
-
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
945
|
-
* @type {string}
|
|
946
|
-
* @memberof ClaimPartnersApiListClaimPartners1
|
|
947
|
-
*/
|
|
948
|
-
readonly search?: string
|
|
949
|
-
|
|
950
|
-
/**
|
|
951
|
-
* 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, createdAt, updatedAt</i>
|
|
952
|
-
* @type {string}
|
|
953
|
-
* @memberof ClaimPartnersApiListClaimPartners1
|
|
954
|
-
*/
|
|
955
|
-
readonly order?: string
|
|
956
|
-
|
|
957
|
-
/**
|
|
958
|
-
* 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/> <i>Allowed values: role, partner<i>
|
|
959
|
-
* @type {string}
|
|
960
|
-
* @memberof ClaimPartnersApiListClaimPartners1
|
|
961
|
-
*/
|
|
962
|
-
readonly expand?: string
|
|
963
|
-
|
|
964
|
-
/**
|
|
965
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
966
|
-
* @type {string}
|
|
967
|
-
* @memberof ClaimPartnersApiListClaimPartners1
|
|
968
|
-
*/
|
|
969
|
-
readonly filters?: string
|
|
970
|
-
}
|
|
971
|
-
|
|
972
516
|
/**
|
|
973
517
|
* ClaimPartnersApi - object-oriented interface
|
|
974
518
|
* @export
|
|
@@ -988,18 +532,6 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
988
532
|
return ClaimPartnersApiFp(this.configuration).createClaimPartner(requestParameters.claimCode, requestParameters.createClaimPartnerRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
989
533
|
}
|
|
990
534
|
|
|
991
|
-
/**
|
|
992
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
993
|
-
* @summary Create the claim partner
|
|
994
|
-
* @param {ClaimPartnersApiCreateClaimPartner1Request} requestParameters Request parameters.
|
|
995
|
-
* @param {*} [options] Override http request option.
|
|
996
|
-
* @throws {RequiredError}
|
|
997
|
-
* @memberof ClaimPartnersApi
|
|
998
|
-
*/
|
|
999
|
-
public createClaimPartner1(requestParameters: ClaimPartnersApiCreateClaimPartner1Request, options?: AxiosRequestConfig) {
|
|
1000
|
-
return ClaimPartnersApiFp(this.configuration).createClaimPartner1(requestParameters.claimCode, requestParameters.createClaimPartnerRequestDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
535
|
/**
|
|
1004
536
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
1005
537
|
* @summary Delete the claim partner
|
|
@@ -1012,18 +544,6 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1012
544
|
return ClaimPartnersApiFp(this.configuration).deleteClaimPartner(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1013
545
|
}
|
|
1014
546
|
|
|
1015
|
-
/**
|
|
1016
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
1017
|
-
* @summary Delete the claim partner
|
|
1018
|
-
* @param {ClaimPartnersApiDeleteClaimPartner1Request} requestParameters Request parameters.
|
|
1019
|
-
* @param {*} [options] Override http request option.
|
|
1020
|
-
* @throws {RequiredError}
|
|
1021
|
-
* @memberof ClaimPartnersApi
|
|
1022
|
-
*/
|
|
1023
|
-
public deleteClaimPartner1(requestParameters: ClaimPartnersApiDeleteClaimPartner1Request, options?: AxiosRequestConfig) {
|
|
1024
|
-
return ClaimPartnersApiFp(this.configuration).deleteClaimPartner1(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1025
|
-
}
|
|
1026
|
-
|
|
1027
547
|
/**
|
|
1028
548
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
1029
549
|
* @summary Retrieve the claim partner
|
|
@@ -1036,18 +556,6 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1036
556
|
return ClaimPartnersApiFp(this.configuration).getClaimPartner(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1037
557
|
}
|
|
1038
558
|
|
|
1039
|
-
/**
|
|
1040
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
1041
|
-
* @summary Retrieve the claim partner
|
|
1042
|
-
* @param {ClaimPartnersApiGetClaimPartner1Request} requestParameters Request parameters.
|
|
1043
|
-
* @param {*} [options] Override http request option.
|
|
1044
|
-
* @throws {RequiredError}
|
|
1045
|
-
* @memberof ClaimPartnersApi
|
|
1046
|
-
*/
|
|
1047
|
-
public getClaimPartner1(requestParameters: ClaimPartnersApiGetClaimPartner1Request, options?: AxiosRequestConfig) {
|
|
1048
|
-
return ClaimPartnersApiFp(this.configuration).getClaimPartner1(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1051
559
|
/**
|
|
1052
560
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
1053
561
|
* @summary List claim partners
|
|
@@ -1059,16 +567,4 @@ export class ClaimPartnersApi extends BaseAPI {
|
|
|
1059
567
|
public listClaimPartners(requestParameters: ClaimPartnersApiListClaimPartnersRequest = {}, options?: AxiosRequestConfig) {
|
|
1060
568
|
return ClaimPartnersApiFp(this.configuration).listClaimPartners(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
|
|
1061
569
|
}
|
|
1062
|
-
|
|
1063
|
-
/**
|
|
1064
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
1065
|
-
* @summary List claim partners
|
|
1066
|
-
* @param {ClaimPartnersApiListClaimPartners1Request} requestParameters Request parameters.
|
|
1067
|
-
* @param {*} [options] Override http request option.
|
|
1068
|
-
* @throws {RequiredError}
|
|
1069
|
-
* @memberof ClaimPartnersApi
|
|
1070
|
-
*/
|
|
1071
|
-
public listClaimPartners1(requestParameters: ClaimPartnersApiListClaimPartners1Request = {}, options?: AxiosRequestConfig) {
|
|
1072
|
-
return ClaimPartnersApiFp(this.configuration).listClaimPartners1(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
|
|
1073
|
-
}
|
|
1074
570
|
}
|