@emilgroup/claim-sdk 1.33.1-beta.4 → 1.34.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/README.md +2 -2
- package/api/claim-partner-roles-api.ts +20 -20
- package/api/claim-partners-api.ts +16 -16
- package/api/claim-regulations-api.ts +20 -20
- package/api/claim-statuses-api.ts +16 -16
- package/api/claims-api.ts +28 -28
- package/api/settlements-api.ts +20 -20
- package/common.ts +2 -2
- package/configuration.ts +9 -0
- package/dist/api/claim-partner-roles-api.d.ts +20 -20
- package/dist/api/claim-partner-roles-api.js +20 -20
- package/dist/api/claim-partners-api.d.ts +16 -16
- package/dist/api/claim-partners-api.js +16 -16
- package/dist/api/claim-regulations-api.d.ts +20 -20
- package/dist/api/claim-regulations-api.js +20 -20
- package/dist/api/claim-statuses-api.d.ts +16 -16
- package/dist/api/claim-statuses-api.js +16 -16
- package/dist/api/claims-api.d.ts +28 -28
- package/dist/api/claims-api.js +28 -28
- package/dist/api/settlements-api.d.ts +20 -20
- package/dist/api/settlements-api.js +20 -20
- package/dist/common.js +2 -2
- package/dist/configuration.d.ts +6 -0
- package/dist/configuration.js +8 -0
- package/package.json +1 -1
|
@@ -93,7 +93,7 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
|
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
* This will create a claim partner.
|
|
96
|
+
* This will create a claim partner.
|
|
97
97
|
* @summary Create the claim partner
|
|
98
98
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
99
99
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -146,7 +146,7 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
});
|
|
147
147
|
},
|
|
148
148
|
/**
|
|
149
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
149
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
150
150
|
* @summary Delete the claim partner
|
|
151
151
|
* @param {number} id
|
|
152
152
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -194,7 +194,7 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
|
|
|
194
194
|
});
|
|
195
195
|
},
|
|
196
196
|
/**
|
|
197
|
-
* 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.
|
|
197
|
+
* 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.
|
|
198
198
|
* @summary Retrieve the claim partner
|
|
199
199
|
* @param {number} id
|
|
200
200
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -242,7 +242,7 @@ var ClaimPartnersApiAxiosParamCreator = function (configuration) {
|
|
|
242
242
|
});
|
|
243
243
|
},
|
|
244
244
|
/**
|
|
245
|
-
* 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.
|
|
245
|
+
* 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.
|
|
246
246
|
* @summary List claim partners
|
|
247
247
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
248
248
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -324,7 +324,7 @@ var ClaimPartnersApiFp = function (configuration) {
|
|
|
324
324
|
var localVarAxiosParamCreator = (0, exports.ClaimPartnersApiAxiosParamCreator)(configuration);
|
|
325
325
|
return {
|
|
326
326
|
/**
|
|
327
|
-
* This will create a claim partner.
|
|
327
|
+
* This will create a claim partner.
|
|
328
328
|
* @summary Create the claim partner
|
|
329
329
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
330
330
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -346,7 +346,7 @@ var ClaimPartnersApiFp = function (configuration) {
|
|
|
346
346
|
});
|
|
347
347
|
},
|
|
348
348
|
/**
|
|
349
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
349
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
350
350
|
* @summary Delete the claim partner
|
|
351
351
|
* @param {number} id
|
|
352
352
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -367,7 +367,7 @@ var ClaimPartnersApiFp = function (configuration) {
|
|
|
367
367
|
});
|
|
368
368
|
},
|
|
369
369
|
/**
|
|
370
|
-
* 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.
|
|
370
|
+
* 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.
|
|
371
371
|
* @summary Retrieve the claim partner
|
|
372
372
|
* @param {number} id
|
|
373
373
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -388,7 +388,7 @@ var ClaimPartnersApiFp = function (configuration) {
|
|
|
388
388
|
});
|
|
389
389
|
},
|
|
390
390
|
/**
|
|
391
|
-
* 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.
|
|
391
|
+
* 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.
|
|
392
392
|
* @summary List claim partners
|
|
393
393
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
394
394
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -425,7 +425,7 @@ var ClaimPartnersApiFactory = function (configuration, basePath, axios) {
|
|
|
425
425
|
var localVarFp = (0, exports.ClaimPartnersApiFp)(configuration);
|
|
426
426
|
return {
|
|
427
427
|
/**
|
|
428
|
-
* This will create a claim partner.
|
|
428
|
+
* This will create a claim partner.
|
|
429
429
|
* @summary Create the claim partner
|
|
430
430
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
431
431
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -437,7 +437,7 @@ var ClaimPartnersApiFactory = function (configuration, basePath, axios) {
|
|
|
437
437
|
return localVarFp.createClaimPartner(claimCode, createClaimPartnerRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
438
438
|
},
|
|
439
439
|
/**
|
|
440
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
440
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
441
441
|
* @summary Delete the claim partner
|
|
442
442
|
* @param {number} id
|
|
443
443
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -448,7 +448,7 @@ var ClaimPartnersApiFactory = function (configuration, basePath, axios) {
|
|
|
448
448
|
return localVarFp.deleteClaimPartner(id, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
449
449
|
},
|
|
450
450
|
/**
|
|
451
|
-
* 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.
|
|
451
|
+
* 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.
|
|
452
452
|
* @summary Retrieve the claim partner
|
|
453
453
|
* @param {number} id
|
|
454
454
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -459,7 +459,7 @@ var ClaimPartnersApiFactory = function (configuration, basePath, axios) {
|
|
|
459
459
|
return localVarFp.getClaimPartner(id, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
460
460
|
},
|
|
461
461
|
/**
|
|
462
|
-
* 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.
|
|
462
|
+
* 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.
|
|
463
463
|
* @summary List claim partners
|
|
464
464
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
465
465
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -490,7 +490,7 @@ var ClaimPartnersApi = /** @class */ (function (_super) {
|
|
|
490
490
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
491
491
|
}
|
|
492
492
|
/**
|
|
493
|
-
* This will create a claim partner.
|
|
493
|
+
* This will create a claim partner.
|
|
494
494
|
* @summary Create the claim partner
|
|
495
495
|
* @param {ClaimPartnersApiCreateClaimPartnerRequest} requestParameters Request parameters.
|
|
496
496
|
* @param {*} [options] Override http request option.
|
|
@@ -502,7 +502,7 @@ var ClaimPartnersApi = /** @class */ (function (_super) {
|
|
|
502
502
|
return (0, exports.ClaimPartnersApiFp)(this.configuration).createClaimPartner(requestParameters.claimCode, requestParameters.createClaimPartnerRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
503
503
|
};
|
|
504
504
|
/**
|
|
505
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
505
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
506
506
|
* @summary Delete the claim partner
|
|
507
507
|
* @param {ClaimPartnersApiDeleteClaimPartnerRequest} requestParameters Request parameters.
|
|
508
508
|
* @param {*} [options] Override http request option.
|
|
@@ -514,7 +514,7 @@ var ClaimPartnersApi = /** @class */ (function (_super) {
|
|
|
514
514
|
return (0, exports.ClaimPartnersApiFp)(this.configuration).deleteClaimPartner(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
515
515
|
};
|
|
516
516
|
/**
|
|
517
|
-
* 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.
|
|
517
|
+
* 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.
|
|
518
518
|
* @summary Retrieve the claim partner
|
|
519
519
|
* @param {ClaimPartnersApiGetClaimPartnerRequest} requestParameters Request parameters.
|
|
520
520
|
* @param {*} [options] Override http request option.
|
|
@@ -526,7 +526,7 @@ var ClaimPartnersApi = /** @class */ (function (_super) {
|
|
|
526
526
|
return (0, exports.ClaimPartnersApiFp)(this.configuration).getClaimPartner(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
527
527
|
};
|
|
528
528
|
/**
|
|
529
|
-
* 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.
|
|
529
|
+
* 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.
|
|
530
530
|
* @summary List claim partners
|
|
531
531
|
* @param {ClaimPartnersApiListClaimPartnersRequest} requestParameters Request parameters.
|
|
532
532
|
* @param {*} [options] Override http request option.
|
|
@@ -22,7 +22,7 @@ import { UpdateRegulationItemRequestDtoRest } from '../models';
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
24
|
/**
|
|
25
|
-
* This endpoint will create a new regulation item for a claim
|
|
25
|
+
* This endpoint will create a new regulation item for a claim
|
|
26
26
|
* @summary Create the claim regulation item
|
|
27
27
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
28
28
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -31,7 +31,7 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
31
31
|
*/
|
|
32
32
|
createClaimRegulation: (createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33
33
|
/**
|
|
34
|
-
* This will delete the regulation item identified by the code.
|
|
34
|
+
* This will delete the regulation item identified by the code.
|
|
35
35
|
* @summary Delete the claim regulation item
|
|
36
36
|
* @param {string} code Unique identifier for the object.
|
|
37
37
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -40,7 +40,7 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
40
40
|
*/
|
|
41
41
|
deleteClaimRegulations: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
42
|
/**
|
|
43
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
43
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
44
44
|
* @summary Retrieve the claim regulation item
|
|
45
45
|
* @param {string} code
|
|
46
46
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -50,7 +50,7 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
50
50
|
*/
|
|
51
51
|
getClaimRegulation: (code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
52
|
/**
|
|
53
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
53
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
54
54
|
* @summary List claim regulation items
|
|
55
55
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
56
56
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -65,7 +65,7 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
65
65
|
*/
|
|
66
66
|
listClaimRegulations: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
67
|
/**
|
|
68
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
68
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
69
69
|
* @summary Update the claim regulation item
|
|
70
70
|
* @param {string} code Unique identifier for the object.
|
|
71
71
|
* @param {UpdateRegulationItemRequestDtoRest} updateRegulationItemRequestDtoRest
|
|
@@ -81,7 +81,7 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
81
81
|
*/
|
|
82
82
|
export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
83
83
|
/**
|
|
84
|
-
* This endpoint will create a new regulation item for a claim
|
|
84
|
+
* This endpoint will create a new regulation item for a claim
|
|
85
85
|
* @summary Create the claim regulation item
|
|
86
86
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
87
87
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -90,7 +90,7 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
90
90
|
*/
|
|
91
91
|
createClaimRegulation(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
92
92
|
/**
|
|
93
|
-
* This will delete the regulation item identified by the code.
|
|
93
|
+
* This will delete the regulation item identified by the code.
|
|
94
94
|
* @summary Delete the claim regulation item
|
|
95
95
|
* @param {string} code Unique identifier for the object.
|
|
96
96
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -99,7 +99,7 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
99
99
|
*/
|
|
100
100
|
deleteClaimRegulations(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
101
101
|
/**
|
|
102
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
102
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
103
103
|
* @summary Retrieve the claim regulation item
|
|
104
104
|
* @param {string} code
|
|
105
105
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -109,7 +109,7 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
109
109
|
*/
|
|
110
110
|
getClaimRegulation(code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
111
111
|
/**
|
|
112
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
112
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
113
113
|
* @summary List claim regulation items
|
|
114
114
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
115
115
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -124,7 +124,7 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
124
124
|
*/
|
|
125
125
|
listClaimRegulations(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRegulationsResponseClass>>;
|
|
126
126
|
/**
|
|
127
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
127
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
128
128
|
* @summary Update the claim regulation item
|
|
129
129
|
* @param {string} code Unique identifier for the object.
|
|
130
130
|
* @param {UpdateRegulationItemRequestDtoRest} updateRegulationItemRequestDtoRest
|
|
@@ -140,7 +140,7 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
140
140
|
*/
|
|
141
141
|
export declare const ClaimRegulationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
142
142
|
/**
|
|
143
|
-
* This endpoint will create a new regulation item for a claim
|
|
143
|
+
* This endpoint will create a new regulation item for a claim
|
|
144
144
|
* @summary Create the claim regulation item
|
|
145
145
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
146
146
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -149,7 +149,7 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
149
149
|
*/
|
|
150
150
|
createClaimRegulation(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
151
151
|
/**
|
|
152
|
-
* This will delete the regulation item identified by the code.
|
|
152
|
+
* This will delete the regulation item identified by the code.
|
|
153
153
|
* @summary Delete the claim regulation item
|
|
154
154
|
* @param {string} code Unique identifier for the object.
|
|
155
155
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -158,7 +158,7 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
158
158
|
*/
|
|
159
159
|
deleteClaimRegulations(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
160
160
|
/**
|
|
161
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
161
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
162
162
|
* @summary Retrieve the claim regulation item
|
|
163
163
|
* @param {string} code
|
|
164
164
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -168,7 +168,7 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
168
168
|
*/
|
|
169
169
|
getClaimRegulation(code: string, authorization?: string, expand?: 'claim', options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
170
170
|
/**
|
|
171
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
171
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
172
172
|
* @summary List claim regulation items
|
|
173
173
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
174
174
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -183,7 +183,7 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
183
183
|
*/
|
|
184
184
|
listClaimRegulations(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
|
|
185
185
|
/**
|
|
186
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
186
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
187
187
|
* @summary Update the claim regulation item
|
|
188
188
|
* @param {string} code Unique identifier for the object.
|
|
189
189
|
* @param {UpdateRegulationItemRequestDtoRest} updateRegulationItemRequestDtoRest
|
|
@@ -344,7 +344,7 @@ export interface ClaimRegulationsApiUpdateClaimRegulationRequest {
|
|
|
344
344
|
*/
|
|
345
345
|
export declare class ClaimRegulationsApi extends BaseAPI {
|
|
346
346
|
/**
|
|
347
|
-
* This endpoint will create a new regulation item for a claim
|
|
347
|
+
* This endpoint will create a new regulation item for a claim
|
|
348
348
|
* @summary Create the claim regulation item
|
|
349
349
|
* @param {ClaimRegulationsApiCreateClaimRegulationRequest} requestParameters Request parameters.
|
|
350
350
|
* @param {*} [options] Override http request option.
|
|
@@ -353,7 +353,7 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
353
353
|
*/
|
|
354
354
|
createClaimRegulation(requestParameters: ClaimRegulationsApiCreateClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any>>;
|
|
355
355
|
/**
|
|
356
|
-
* This will delete the regulation item identified by the code.
|
|
356
|
+
* This will delete the regulation item identified by the code.
|
|
357
357
|
* @summary Delete the claim regulation item
|
|
358
358
|
* @param {ClaimRegulationsApiDeleteClaimRegulationsRequest} requestParameters Request parameters.
|
|
359
359
|
* @param {*} [options] Override http request option.
|
|
@@ -362,7 +362,7 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
362
362
|
*/
|
|
363
363
|
deleteClaimRegulations(requestParameters: ClaimRegulationsApiDeleteClaimRegulationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
364
364
|
/**
|
|
365
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
365
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
366
366
|
* @summary Retrieve the claim regulation item
|
|
367
367
|
* @param {ClaimRegulationsApiGetClaimRegulationRequest} requestParameters Request parameters.
|
|
368
368
|
* @param {*} [options] Override http request option.
|
|
@@ -371,7 +371,7 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
371
371
|
*/
|
|
372
372
|
getClaimRegulation(requestParameters: ClaimRegulationsApiGetClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any>>;
|
|
373
373
|
/**
|
|
374
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
374
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
375
375
|
* @summary List claim regulation items
|
|
376
376
|
* @param {ClaimRegulationsApiListClaimRegulationsRequest} requestParameters Request parameters.
|
|
377
377
|
* @param {*} [options] Override http request option.
|
|
@@ -380,7 +380,7 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
380
380
|
*/
|
|
381
381
|
listClaimRegulations(requestParameters?: ClaimRegulationsApiListClaimRegulationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRegulationsResponseClass, any>>;
|
|
382
382
|
/**
|
|
383
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
383
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
384
384
|
* @summary Update the claim regulation item
|
|
385
385
|
* @param {ClaimRegulationsApiUpdateClaimRegulationRequest} requestParameters Request parameters.
|
|
386
386
|
* @param {*} [options] Override http request option.
|
|
@@ -93,7 +93,7 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
|
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
* This endpoint will create a new regulation item for a claim
|
|
96
|
+
* This endpoint will create a new regulation item for a claim
|
|
97
97
|
* @summary Create the claim regulation item
|
|
98
98
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
99
99
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -142,7 +142,7 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
|
|
|
142
142
|
});
|
|
143
143
|
},
|
|
144
144
|
/**
|
|
145
|
-
* This will delete the regulation item identified by the code.
|
|
145
|
+
* This will delete the regulation item identified by the code.
|
|
146
146
|
* @summary Delete the claim regulation item
|
|
147
147
|
* @param {string} code Unique identifier for the object.
|
|
148
148
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -190,7 +190,7 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
|
|
|
190
190
|
});
|
|
191
191
|
},
|
|
192
192
|
/**
|
|
193
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
193
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
194
194
|
* @summary Retrieve the claim regulation item
|
|
195
195
|
* @param {string} code
|
|
196
196
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -242,7 +242,7 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
|
|
|
242
242
|
});
|
|
243
243
|
},
|
|
244
244
|
/**
|
|
245
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
245
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
246
246
|
* @summary List claim regulation items
|
|
247
247
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
248
248
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -314,7 +314,7 @@ var ClaimRegulationsApiAxiosParamCreator = function (configuration) {
|
|
|
314
314
|
});
|
|
315
315
|
},
|
|
316
316
|
/**
|
|
317
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
317
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
318
318
|
* @summary Update the claim regulation item
|
|
319
319
|
* @param {string} code Unique identifier for the object.
|
|
320
320
|
* @param {UpdateRegulationItemRequestDtoRest} updateRegulationItemRequestDtoRest
|
|
@@ -377,7 +377,7 @@ var ClaimRegulationsApiFp = function (configuration) {
|
|
|
377
377
|
var localVarAxiosParamCreator = (0, exports.ClaimRegulationsApiAxiosParamCreator)(configuration);
|
|
378
378
|
return {
|
|
379
379
|
/**
|
|
380
|
-
* This endpoint will create a new regulation item for a claim
|
|
380
|
+
* This endpoint will create a new regulation item for a claim
|
|
381
381
|
* @summary Create the claim regulation item
|
|
382
382
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
383
383
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -398,7 +398,7 @@ var ClaimRegulationsApiFp = function (configuration) {
|
|
|
398
398
|
});
|
|
399
399
|
},
|
|
400
400
|
/**
|
|
401
|
-
* This will delete the regulation item identified by the code.
|
|
401
|
+
* This will delete the regulation item identified by the code.
|
|
402
402
|
* @summary Delete the claim regulation item
|
|
403
403
|
* @param {string} code Unique identifier for the object.
|
|
404
404
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -419,7 +419,7 @@ var ClaimRegulationsApiFp = function (configuration) {
|
|
|
419
419
|
});
|
|
420
420
|
},
|
|
421
421
|
/**
|
|
422
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
422
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
423
423
|
* @summary Retrieve the claim regulation item
|
|
424
424
|
* @param {string} code
|
|
425
425
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -441,7 +441,7 @@ var ClaimRegulationsApiFp = function (configuration) {
|
|
|
441
441
|
});
|
|
442
442
|
},
|
|
443
443
|
/**
|
|
444
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
444
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
445
445
|
* @summary List claim regulation items
|
|
446
446
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
447
447
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -468,7 +468,7 @@ var ClaimRegulationsApiFp = function (configuration) {
|
|
|
468
468
|
});
|
|
469
469
|
},
|
|
470
470
|
/**
|
|
471
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
471
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
472
472
|
* @summary Update the claim regulation item
|
|
473
473
|
* @param {string} code Unique identifier for the object.
|
|
474
474
|
* @param {UpdateRegulationItemRequestDtoRest} updateRegulationItemRequestDtoRest
|
|
@@ -500,7 +500,7 @@ var ClaimRegulationsApiFactory = function (configuration, basePath, axios) {
|
|
|
500
500
|
var localVarFp = (0, exports.ClaimRegulationsApiFp)(configuration);
|
|
501
501
|
return {
|
|
502
502
|
/**
|
|
503
|
-
* This endpoint will create a new regulation item for a claim
|
|
503
|
+
* This endpoint will create a new regulation item for a claim
|
|
504
504
|
* @summary Create the claim regulation item
|
|
505
505
|
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
506
506
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -511,7 +511,7 @@ var ClaimRegulationsApiFactory = function (configuration, basePath, axios) {
|
|
|
511
511
|
return localVarFp.createClaimRegulation(createRegulationItemRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
512
512
|
},
|
|
513
513
|
/**
|
|
514
|
-
* This will delete the regulation item identified by the code.
|
|
514
|
+
* This will delete the regulation item identified by the code.
|
|
515
515
|
* @summary Delete the claim regulation item
|
|
516
516
|
* @param {string} code Unique identifier for the object.
|
|
517
517
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -522,7 +522,7 @@ var ClaimRegulationsApiFactory = function (configuration, basePath, axios) {
|
|
|
522
522
|
return localVarFp.deleteClaimRegulations(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
523
523
|
},
|
|
524
524
|
/**
|
|
525
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
525
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
526
526
|
* @summary Retrieve the claim regulation item
|
|
527
527
|
* @param {string} code
|
|
528
528
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -534,7 +534,7 @@ var ClaimRegulationsApiFactory = function (configuration, basePath, axios) {
|
|
|
534
534
|
return localVarFp.getClaimRegulation(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
535
535
|
},
|
|
536
536
|
/**
|
|
537
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
537
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
538
538
|
* @summary List claim regulation items
|
|
539
539
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
540
540
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -551,7 +551,7 @@ var ClaimRegulationsApiFactory = function (configuration, basePath, axios) {
|
|
|
551
551
|
return localVarFp.listClaimRegulations(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
552
552
|
},
|
|
553
553
|
/**
|
|
554
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
554
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
555
555
|
* @summary Update the claim regulation item
|
|
556
556
|
* @param {string} code Unique identifier for the object.
|
|
557
557
|
* @param {UpdateRegulationItemRequestDtoRest} updateRegulationItemRequestDtoRest
|
|
@@ -577,7 +577,7 @@ var ClaimRegulationsApi = /** @class */ (function (_super) {
|
|
|
577
577
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
578
578
|
}
|
|
579
579
|
/**
|
|
580
|
-
* This endpoint will create a new regulation item for a claim
|
|
580
|
+
* This endpoint will create a new regulation item for a claim
|
|
581
581
|
* @summary Create the claim regulation item
|
|
582
582
|
* @param {ClaimRegulationsApiCreateClaimRegulationRequest} requestParameters Request parameters.
|
|
583
583
|
* @param {*} [options] Override http request option.
|
|
@@ -589,7 +589,7 @@ var ClaimRegulationsApi = /** @class */ (function (_super) {
|
|
|
589
589
|
return (0, exports.ClaimRegulationsApiFp)(this.configuration).createClaimRegulation(requestParameters.createRegulationItemRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
590
590
|
};
|
|
591
591
|
/**
|
|
592
|
-
* This will delete the regulation item identified by the code.
|
|
592
|
+
* This will delete the regulation item identified by the code.
|
|
593
593
|
* @summary Delete the claim regulation item
|
|
594
594
|
* @param {ClaimRegulationsApiDeleteClaimRegulationsRequest} requestParameters Request parameters.
|
|
595
595
|
* @param {*} [options] Override http request option.
|
|
@@ -601,7 +601,7 @@ var ClaimRegulationsApi = /** @class */ (function (_super) {
|
|
|
601
601
|
return (0, exports.ClaimRegulationsApiFp)(this.configuration).deleteClaimRegulations(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
602
602
|
};
|
|
603
603
|
/**
|
|
604
|
-
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
604
|
+
* Retrieves the details of the claim regulation item that was previously created. Supply the unique claim regulation item code that was returned when you created it and Emil Api will return the corresponding claim regulation item information.
|
|
605
605
|
* @summary Retrieve the claim regulation item
|
|
606
606
|
* @param {ClaimRegulationsApiGetClaimRegulationRequest} requestParameters Request parameters.
|
|
607
607
|
* @param {*} [options] Override http request option.
|
|
@@ -613,7 +613,7 @@ var ClaimRegulationsApi = /** @class */ (function (_super) {
|
|
|
613
613
|
return (0, exports.ClaimRegulationsApiFp)(this.configuration).getClaimRegulation(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
614
614
|
};
|
|
615
615
|
/**
|
|
616
|
-
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
616
|
+
* Returns a list of claim regulation items you have previously created. The claim regulation items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
617
617
|
* @summary List claim regulation items
|
|
618
618
|
* @param {ClaimRegulationsApiListClaimRegulationsRequest} requestParameters Request parameters.
|
|
619
619
|
* @param {*} [options] Override http request option.
|
|
@@ -626,7 +626,7 @@ var ClaimRegulationsApi = /** @class */ (function (_super) {
|
|
|
626
626
|
return (0, exports.ClaimRegulationsApiFp)(this.configuration).listClaimRegulations(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
627
627
|
};
|
|
628
628
|
/**
|
|
629
|
-
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
629
|
+
* Update a regulation item status and some other fields identified by it\'s code. A Regulation item type cannot be changed once created e.g. to change a regulation from PAYOUT to RESERVE. In case of mistakes the current regulation item should be deleted and another item should be created.
|
|
630
630
|
* @summary Update the claim regulation item
|
|
631
631
|
* @param {ClaimRegulationsApiUpdateClaimRegulationRequest} requestParameters Request parameters.
|
|
632
632
|
* @param {*} [options] Override http request option.
|