@emilgroup/claim-sdk-node 1.39.0 → 1.39.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +15 -0
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +648 -0
- package/api/claim-partner-roles-api.ts +627 -0
- package/api/claim-partners-api.ts +520 -0
- package/api/claim-positions-api.ts +1340 -0
- package/api/claim-regulations-api.ts +644 -3
- package/api/claim-statuses-api.ts +752 -5
- package/api/claims-api.ts +863 -11
- package/api/health-check-api.ts +66 -0
- package/api/settlements-api.ts +627 -0
- package/api.ts +4 -0
- package/dist/api/claim-limit-usages-api.d.ts +378 -0
- package/dist/api/claim-limit-usages-api.js +585 -0
- package/dist/api/claim-partner-roles-api.d.ts +358 -0
- package/dist/api/claim-partner-roles-api.js +525 -0
- package/dist/api/claim-partners-api.d.ts +299 -0
- package/dist/api/claim-partners-api.js +428 -0
- package/dist/api/claim-positions-api.d.ts +760 -0
- package/dist/api/claim-positions-api.js +1181 -0
- package/dist/api/claim-regulations-api.d.ts +367 -0
- package/dist/api/claim-regulations-api.js +531 -0
- package/dist/api/claim-statuses-api.d.ts +426 -0
- package/dist/api/claim-statuses-api.js +642 -14
- package/dist/api/claims-api.d.ts +493 -8
- package/dist/api/claims-api.js +734 -10
- package/dist/api/health-check-api.d.ts +33 -0
- package/dist/api/health-check-api.js +73 -0
- package/dist/api/settlements-api.d.ts +358 -0
- package/dist/api/settlements-api.js +525 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/calculation-step-result-class.d.ts +72 -0
- package/dist/models/calculation-step-result-class.js +21 -0
- package/dist/models/claim-applied-deductible-class.d.ts +95 -0
- package/dist/models/claim-applied-deductible-class.js +20 -0
- package/dist/models/claim-class.d.ts +25 -0
- package/dist/models/claim-limit-usage-class.d.ts +143 -0
- package/dist/models/claim-limit-usage-class.js +30 -0
- package/dist/models/claim-limit-usage-result-class.d.ts +48 -0
- package/dist/models/claim-limit-usage-result-class.js +21 -0
- package/dist/models/claim-position-class.d.ts +151 -0
- package/dist/models/claim-position-class.js +20 -0
- package/dist/models/create-claim-position-request-dto.d.ts +66 -0
- package/dist/models/create-claim-position-request-dto.js +15 -0
- package/dist/models/create-claim-position-response-class.d.ts +25 -0
- package/dist/models/create-claim-position-response-class.js +15 -0
- package/dist/models/create-claim-request-dto.d.ts +6 -0
- package/dist/models/create-regulation-item-request-dto.d.ts +26 -3
- package/dist/models/create-regulation-item-request-dto.js +5 -1
- package/dist/models/get-claim-limit-usage-response-class.d.ts +25 -0
- package/dist/models/get-claim-limit-usage-response-class.js +15 -0
- package/dist/models/get-claim-position-response-class.d.ts +25 -0
- package/dist/models/get-claim-position-response-class.js +15 -0
- package/dist/models/index.d.ts +13 -0
- package/dist/models/index.js +13 -0
- package/dist/models/list-claim-limit-usages-response-class.d.ts +43 -0
- package/dist/models/list-claim-limit-usages-response-class.js +15 -0
- package/dist/models/list-claim-partner-roles-response-class.d.ts +12 -0
- package/dist/models/list-claim-partners-response-class.d.ts +12 -0
- package/dist/models/list-claim-positions-response-class.d.ts +43 -0
- package/dist/models/list-claim-positions-response-class.js +15 -0
- package/dist/models/list-claim-statuses-response-class.d.ts +13 -1
- package/dist/models/list-claims-response-class.d.ts +12 -0
- package/dist/models/list-regulations-response-class.d.ts +12 -0
- package/dist/models/patch-claim-request-dto.d.ts +39 -33
- package/dist/models/regulation-item-class.d.ts +35 -0
- package/dist/models/regulation-item-class.js +10 -1
- package/dist/models/update-claim-position-request-dto.d.ts +60 -0
- package/dist/models/update-claim-position-request-dto.js +15 -0
- package/dist/models/update-claim-position-response-class.d.ts +25 -0
- package/dist/models/update-claim-position-response-class.js +15 -0
- package/dist/models/update-claim-request-dto.d.ts +39 -33
- package/dist/models/update-regulation-item-request-dto.d.ts +12 -0
- package/dist/models/update-regulation-item-request-dto.js +6 -1
- package/models/calculation-step-result-class.ts +81 -0
- package/models/claim-applied-deductible-class.ts +104 -0
- package/models/claim-class.ts +25 -0
- package/models/claim-limit-usage-class.ts +154 -0
- package/models/claim-limit-usage-result-class.ts +57 -0
- package/models/claim-position-class.ts +160 -0
- package/models/create-claim-position-request-dto.ts +72 -0
- package/models/create-claim-position-response-class.ts +31 -0
- package/models/create-claim-request-dto.ts +6 -0
- package/models/create-regulation-item-request-dto.ts +27 -3
- package/models/get-claim-limit-usage-response-class.ts +31 -0
- package/models/get-claim-position-response-class.ts +31 -0
- package/models/index.ts +13 -0
- package/models/list-claim-limit-usages-response-class.ts +49 -0
- package/models/list-claim-partner-roles-response-class.ts +12 -0
- package/models/list-claim-partners-response-class.ts +12 -0
- package/models/list-claim-positions-response-class.ts +49 -0
- package/models/list-claim-statuses-response-class.ts +13 -1
- package/models/list-claims-response-class.ts +12 -0
- package/models/list-regulations-response-class.ts +12 -0
- package/models/patch-claim-request-dto.ts +39 -33
- package/models/regulation-item-class.ts +37 -0
- package/models/update-claim-position-request-dto.ts +66 -0
- package/models/update-claim-position-response-class.ts +31 -0
- package/models/update-claim-request-dto.ts +39 -33
- package/models/update-regulation-item-request-dto.ts +13 -0
- package/package.json +1 -1
|
@@ -30,6 +30,16 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
30
30
|
* @throws {RequiredError}
|
|
31
31
|
*/
|
|
32
32
|
createClaimRegulation: (createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33
|
+
/**
|
|
34
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
35
|
+
* @summary Create the claim regulation item
|
|
36
|
+
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
37
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
38
|
+
* @param {*} [options] Override http request option.
|
|
39
|
+
* @deprecated
|
|
40
|
+
* @throws {RequiredError}
|
|
41
|
+
*/
|
|
42
|
+
createClaimRegulation1: (createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33
43
|
/**
|
|
34
44
|
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
35
45
|
* @summary Delete the claim regulation item
|
|
@@ -39,6 +49,16 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
39
49
|
* @throws {RequiredError}
|
|
40
50
|
*/
|
|
41
51
|
deleteClaimRegulations: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
|
+
/**
|
|
53
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
54
|
+
* @summary Delete the claim regulation item
|
|
55
|
+
* @param {string} code Unique identifier for the object.
|
|
56
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
57
|
+
* @param {*} [options] Override http request option.
|
|
58
|
+
* @deprecated
|
|
59
|
+
* @throws {RequiredError}
|
|
60
|
+
*/
|
|
61
|
+
deleteClaimRegulations1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
62
|
/**
|
|
43
63
|
* 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. **Required Permissions** \"claim-management.regulations.view\"
|
|
44
64
|
* @summary Retrieve the claim regulation item
|
|
@@ -49,6 +69,17 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
49
69
|
* @throws {RequiredError}
|
|
50
70
|
*/
|
|
51
71
|
getClaimRegulation: (code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
|
+
/**
|
|
73
|
+
* 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. **Required Permissions** \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
74
|
+
* @summary Retrieve the claim regulation item
|
|
75
|
+
* @param {string} code
|
|
76
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
77
|
+
* @param {'claim'} [expand]
|
|
78
|
+
* @param {*} [options] Override http request option.
|
|
79
|
+
* @deprecated
|
|
80
|
+
* @throws {RequiredError}
|
|
81
|
+
*/
|
|
82
|
+
getClaimRegulation1: (code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
83
|
/**
|
|
53
84
|
* 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. **Required Permissions** \"claim-management.regulations.view\"
|
|
54
85
|
* @summary List claim regulation items
|
|
@@ -64,6 +95,22 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
64
95
|
* @throws {RequiredError}
|
|
65
96
|
*/
|
|
66
97
|
listClaimRegulations: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
98
|
+
/**
|
|
99
|
+
* 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. **Required Permissions** \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
100
|
+
* @summary List claim regulation items
|
|
101
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
102
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
103
|
+
* @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.
|
|
104
|
+
* @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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
105
|
+
* @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: code, claimCode, currency</i>
|
|
106
|
+
* @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: amount, bookingDate, createdAt, updatedAt</i>
|
|
107
|
+
* @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: claim<i>
|
|
108
|
+
* @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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
109
|
+
* @param {*} [options] Override http request option.
|
|
110
|
+
* @deprecated
|
|
111
|
+
* @throws {RequiredError}
|
|
112
|
+
*/
|
|
113
|
+
listClaimRegulations1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
114
|
/**
|
|
68
115
|
* 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. **Required Permissions** \"claim-management.regulations.update\"
|
|
69
116
|
* @summary Update the claim regulation item
|
|
@@ -74,6 +121,17 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
74
121
|
* @throws {RequiredError}
|
|
75
122
|
*/
|
|
76
123
|
updateClaimRegulation: (code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
124
|
+
/**
|
|
125
|
+
* 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. **Required Permissions** \"claim-management.regulations.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
126
|
+
* @summary Update the claim regulation item
|
|
127
|
+
* @param {string} code Unique identifier for the object.
|
|
128
|
+
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
129
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
130
|
+
* @param {*} [options] Override http request option.
|
|
131
|
+
* @deprecated
|
|
132
|
+
* @throws {RequiredError}
|
|
133
|
+
*/
|
|
134
|
+
updateClaimRegulation1: (code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
77
135
|
};
|
|
78
136
|
/**
|
|
79
137
|
* ClaimRegulationsApi - functional programming interface
|
|
@@ -89,6 +147,16 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
89
147
|
* @throws {RequiredError}
|
|
90
148
|
*/
|
|
91
149
|
createClaimRegulation(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
150
|
+
/**
|
|
151
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
152
|
+
* @summary Create the claim regulation item
|
|
153
|
+
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
154
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
155
|
+
* @param {*} [options] Override http request option.
|
|
156
|
+
* @deprecated
|
|
157
|
+
* @throws {RequiredError}
|
|
158
|
+
*/
|
|
159
|
+
createClaimRegulation1(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
92
160
|
/**
|
|
93
161
|
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
94
162
|
* @summary Delete the claim regulation item
|
|
@@ -98,6 +166,16 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
98
166
|
* @throws {RequiredError}
|
|
99
167
|
*/
|
|
100
168
|
deleteClaimRegulations(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
169
|
+
/**
|
|
170
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
171
|
+
* @summary Delete the claim regulation item
|
|
172
|
+
* @param {string} code Unique identifier for the object.
|
|
173
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
174
|
+
* @param {*} [options] Override http request option.
|
|
175
|
+
* @deprecated
|
|
176
|
+
* @throws {RequiredError}
|
|
177
|
+
*/
|
|
178
|
+
deleteClaimRegulations1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
101
179
|
/**
|
|
102
180
|
* 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. **Required Permissions** \"claim-management.regulations.view\"
|
|
103
181
|
* @summary Retrieve the claim regulation item
|
|
@@ -108,6 +186,17 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
108
186
|
* @throws {RequiredError}
|
|
109
187
|
*/
|
|
110
188
|
getClaimRegulation(code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
189
|
+
/**
|
|
190
|
+
* 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. **Required Permissions** \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
191
|
+
* @summary Retrieve the claim regulation item
|
|
192
|
+
* @param {string} code
|
|
193
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
194
|
+
* @param {'claim'} [expand]
|
|
195
|
+
* @param {*} [options] Override http request option.
|
|
196
|
+
* @deprecated
|
|
197
|
+
* @throws {RequiredError}
|
|
198
|
+
*/
|
|
199
|
+
getClaimRegulation1(code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
111
200
|
/**
|
|
112
201
|
* 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. **Required Permissions** \"claim-management.regulations.view\"
|
|
113
202
|
* @summary List claim regulation items
|
|
@@ -123,6 +212,22 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
123
212
|
* @throws {RequiredError}
|
|
124
213
|
*/
|
|
125
214
|
listClaimRegulations(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRegulationsResponseClass>>;
|
|
215
|
+
/**
|
|
216
|
+
* 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. **Required Permissions** \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
217
|
+
* @summary List claim regulation items
|
|
218
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
219
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
220
|
+
* @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.
|
|
221
|
+
* @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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
222
|
+
* @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: code, claimCode, currency</i>
|
|
223
|
+
* @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: amount, bookingDate, createdAt, updatedAt</i>
|
|
224
|
+
* @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: claim<i>
|
|
225
|
+
* @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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
226
|
+
* @param {*} [options] Override http request option.
|
|
227
|
+
* @deprecated
|
|
228
|
+
* @throws {RequiredError}
|
|
229
|
+
*/
|
|
230
|
+
listClaimRegulations1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListRegulationsResponseClass>>;
|
|
126
231
|
/**
|
|
127
232
|
* 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. **Required Permissions** \"claim-management.regulations.update\"
|
|
128
233
|
* @summary Update the claim regulation item
|
|
@@ -133,6 +238,17 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
133
238
|
* @throws {RequiredError}
|
|
134
239
|
*/
|
|
135
240
|
updateClaimRegulation(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
241
|
+
/**
|
|
242
|
+
* 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. **Required Permissions** \"claim-management.regulations.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
243
|
+
* @summary Update the claim regulation item
|
|
244
|
+
* @param {string} code Unique identifier for the object.
|
|
245
|
+
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
246
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
247
|
+
* @param {*} [options] Override http request option.
|
|
248
|
+
* @deprecated
|
|
249
|
+
* @throws {RequiredError}
|
|
250
|
+
*/
|
|
251
|
+
updateClaimRegulation1(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
136
252
|
};
|
|
137
253
|
/**
|
|
138
254
|
* ClaimRegulationsApi - factory interface
|
|
@@ -148,6 +264,16 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
148
264
|
* @throws {RequiredError}
|
|
149
265
|
*/
|
|
150
266
|
createClaimRegulation(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
267
|
+
/**
|
|
268
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
269
|
+
* @summary Create the claim regulation item
|
|
270
|
+
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
271
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
272
|
+
* @param {*} [options] Override http request option.
|
|
273
|
+
* @deprecated
|
|
274
|
+
* @throws {RequiredError}
|
|
275
|
+
*/
|
|
276
|
+
createClaimRegulation1(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
151
277
|
/**
|
|
152
278
|
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
153
279
|
* @summary Delete the claim regulation item
|
|
@@ -157,6 +283,16 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
157
283
|
* @throws {RequiredError}
|
|
158
284
|
*/
|
|
159
285
|
deleteClaimRegulations(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
286
|
+
/**
|
|
287
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
288
|
+
* @summary Delete the claim regulation item
|
|
289
|
+
* @param {string} code Unique identifier for the object.
|
|
290
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
291
|
+
* @param {*} [options] Override http request option.
|
|
292
|
+
* @deprecated
|
|
293
|
+
* @throws {RequiredError}
|
|
294
|
+
*/
|
|
295
|
+
deleteClaimRegulations1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
160
296
|
/**
|
|
161
297
|
* 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. **Required Permissions** \"claim-management.regulations.view\"
|
|
162
298
|
* @summary Retrieve the claim regulation item
|
|
@@ -167,6 +303,17 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
167
303
|
* @throws {RequiredError}
|
|
168
304
|
*/
|
|
169
305
|
getClaimRegulation(code: string, authorization?: string, expand?: 'claim', options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
306
|
+
/**
|
|
307
|
+
* 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. **Required Permissions** \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
308
|
+
* @summary Retrieve the claim regulation item
|
|
309
|
+
* @param {string} code
|
|
310
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
311
|
+
* @param {'claim'} [expand]
|
|
312
|
+
* @param {*} [options] Override http request option.
|
|
313
|
+
* @deprecated
|
|
314
|
+
* @throws {RequiredError}
|
|
315
|
+
*/
|
|
316
|
+
getClaimRegulation1(code: string, authorization?: string, expand?: 'claim', options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
170
317
|
/**
|
|
171
318
|
* 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. **Required Permissions** \"claim-management.regulations.view\"
|
|
172
319
|
* @summary List claim regulation items
|
|
@@ -182,6 +329,22 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
182
329
|
* @throws {RequiredError}
|
|
183
330
|
*/
|
|
184
331
|
listClaimRegulations(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
|
|
332
|
+
/**
|
|
333
|
+
* 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. **Required Permissions** \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
334
|
+
* @summary List claim regulation items
|
|
335
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
336
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
337
|
+
* @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.
|
|
338
|
+
* @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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
339
|
+
* @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: code, claimCode, currency</i>
|
|
340
|
+
* @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: amount, bookingDate, createdAt, updatedAt</i>
|
|
341
|
+
* @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: claim<i>
|
|
342
|
+
* @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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
343
|
+
* @param {*} [options] Override http request option.
|
|
344
|
+
* @deprecated
|
|
345
|
+
* @throws {RequiredError}
|
|
346
|
+
*/
|
|
347
|
+
listClaimRegulations1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
|
|
185
348
|
/**
|
|
186
349
|
* 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. **Required Permissions** \"claim-management.regulations.update\"
|
|
187
350
|
* @summary Update the claim regulation item
|
|
@@ -192,6 +355,17 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
192
355
|
* @throws {RequiredError}
|
|
193
356
|
*/
|
|
194
357
|
updateClaimRegulation(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
358
|
+
/**
|
|
359
|
+
* 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. **Required Permissions** \"claim-management.regulations.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
360
|
+
* @summary Update the claim regulation item
|
|
361
|
+
* @param {string} code Unique identifier for the object.
|
|
362
|
+
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
363
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
364
|
+
* @param {*} [options] Override http request option.
|
|
365
|
+
* @deprecated
|
|
366
|
+
* @throws {RequiredError}
|
|
367
|
+
*/
|
|
368
|
+
updateClaimRegulation1(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
195
369
|
};
|
|
196
370
|
/**
|
|
197
371
|
* Request parameters for createClaimRegulation operation in ClaimRegulationsApi.
|
|
@@ -212,6 +386,25 @@ export interface ClaimRegulationsApiCreateClaimRegulationRequest {
|
|
|
212
386
|
*/
|
|
213
387
|
readonly authorization?: string;
|
|
214
388
|
}
|
|
389
|
+
/**
|
|
390
|
+
* Request parameters for createClaimRegulation1 operation in ClaimRegulationsApi.
|
|
391
|
+
* @export
|
|
392
|
+
* @interface ClaimRegulationsApiCreateClaimRegulation1Request
|
|
393
|
+
*/
|
|
394
|
+
export interface ClaimRegulationsApiCreateClaimRegulation1Request {
|
|
395
|
+
/**
|
|
396
|
+
*
|
|
397
|
+
* @type {CreateRegulationItemRequestDto}
|
|
398
|
+
* @memberof ClaimRegulationsApiCreateClaimRegulation1
|
|
399
|
+
*/
|
|
400
|
+
readonly createRegulationItemRequestDto: CreateRegulationItemRequestDto;
|
|
401
|
+
/**
|
|
402
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
403
|
+
* @type {string}
|
|
404
|
+
* @memberof ClaimRegulationsApiCreateClaimRegulation1
|
|
405
|
+
*/
|
|
406
|
+
readonly authorization?: string;
|
|
407
|
+
}
|
|
215
408
|
/**
|
|
216
409
|
* Request parameters for deleteClaimRegulations operation in ClaimRegulationsApi.
|
|
217
410
|
* @export
|
|
@@ -231,6 +424,25 @@ export interface ClaimRegulationsApiDeleteClaimRegulationsRequest {
|
|
|
231
424
|
*/
|
|
232
425
|
readonly authorization?: string;
|
|
233
426
|
}
|
|
427
|
+
/**
|
|
428
|
+
* Request parameters for deleteClaimRegulations1 operation in ClaimRegulationsApi.
|
|
429
|
+
* @export
|
|
430
|
+
* @interface ClaimRegulationsApiDeleteClaimRegulations1Request
|
|
431
|
+
*/
|
|
432
|
+
export interface ClaimRegulationsApiDeleteClaimRegulations1Request {
|
|
433
|
+
/**
|
|
434
|
+
* Unique identifier for the object.
|
|
435
|
+
* @type {string}
|
|
436
|
+
* @memberof ClaimRegulationsApiDeleteClaimRegulations1
|
|
437
|
+
*/
|
|
438
|
+
readonly code: string;
|
|
439
|
+
/**
|
|
440
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
441
|
+
* @type {string}
|
|
442
|
+
* @memberof ClaimRegulationsApiDeleteClaimRegulations1
|
|
443
|
+
*/
|
|
444
|
+
readonly authorization?: string;
|
|
445
|
+
}
|
|
234
446
|
/**
|
|
235
447
|
* Request parameters for getClaimRegulation operation in ClaimRegulationsApi.
|
|
236
448
|
* @export
|
|
@@ -256,6 +468,31 @@ export interface ClaimRegulationsApiGetClaimRegulationRequest {
|
|
|
256
468
|
*/
|
|
257
469
|
readonly expand?: 'claim';
|
|
258
470
|
}
|
|
471
|
+
/**
|
|
472
|
+
* Request parameters for getClaimRegulation1 operation in ClaimRegulationsApi.
|
|
473
|
+
* @export
|
|
474
|
+
* @interface ClaimRegulationsApiGetClaimRegulation1Request
|
|
475
|
+
*/
|
|
476
|
+
export interface ClaimRegulationsApiGetClaimRegulation1Request {
|
|
477
|
+
/**
|
|
478
|
+
*
|
|
479
|
+
* @type {string}
|
|
480
|
+
* @memberof ClaimRegulationsApiGetClaimRegulation1
|
|
481
|
+
*/
|
|
482
|
+
readonly code: string;
|
|
483
|
+
/**
|
|
484
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
485
|
+
* @type {string}
|
|
486
|
+
* @memberof ClaimRegulationsApiGetClaimRegulation1
|
|
487
|
+
*/
|
|
488
|
+
readonly authorization?: string;
|
|
489
|
+
/**
|
|
490
|
+
*
|
|
491
|
+
* @type {'claim'}
|
|
492
|
+
* @memberof ClaimRegulationsApiGetClaimRegulation1
|
|
493
|
+
*/
|
|
494
|
+
readonly expand?: 'claim';
|
|
495
|
+
}
|
|
259
496
|
/**
|
|
260
497
|
* Request parameters for listClaimRegulations operation in ClaimRegulationsApi.
|
|
261
498
|
* @export
|
|
@@ -311,6 +548,61 @@ export interface ClaimRegulationsApiListClaimRegulationsRequest {
|
|
|
311
548
|
*/
|
|
312
549
|
readonly filters?: string;
|
|
313
550
|
}
|
|
551
|
+
/**
|
|
552
|
+
* Request parameters for listClaimRegulations1 operation in ClaimRegulationsApi.
|
|
553
|
+
* @export
|
|
554
|
+
* @interface ClaimRegulationsApiListClaimRegulations1Request
|
|
555
|
+
*/
|
|
556
|
+
export interface ClaimRegulationsApiListClaimRegulations1Request {
|
|
557
|
+
/**
|
|
558
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
559
|
+
* @type {string}
|
|
560
|
+
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
561
|
+
*/
|
|
562
|
+
readonly authorization?: string;
|
|
563
|
+
/**
|
|
564
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
565
|
+
* @type {number}
|
|
566
|
+
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
567
|
+
*/
|
|
568
|
+
readonly pageSize?: number;
|
|
569
|
+
/**
|
|
570
|
+
* 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.
|
|
571
|
+
* @type {string}
|
|
572
|
+
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
573
|
+
*/
|
|
574
|
+
readonly pageToken?: string;
|
|
575
|
+
/**
|
|
576
|
+
* 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: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
577
|
+
* @type {string}
|
|
578
|
+
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
579
|
+
*/
|
|
580
|
+
readonly filter?: string;
|
|
581
|
+
/**
|
|
582
|
+
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: code, claimCode, currency</i>
|
|
583
|
+
* @type {string}
|
|
584
|
+
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
585
|
+
*/
|
|
586
|
+
readonly search?: string;
|
|
587
|
+
/**
|
|
588
|
+
* 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: amount, bookingDate, createdAt, updatedAt</i>
|
|
589
|
+
* @type {string}
|
|
590
|
+
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
591
|
+
*/
|
|
592
|
+
readonly order?: string;
|
|
593
|
+
/**
|
|
594
|
+
* 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: claim<i>
|
|
595
|
+
* @type {string}
|
|
596
|
+
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
597
|
+
*/
|
|
598
|
+
readonly expand?: string;
|
|
599
|
+
/**
|
|
600
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: code, claimCode, amount, bookingDate, currency, regulationItemType, payoutDetails.payoutType, payoutDetails.payoutStatus, regressDetails.recoveryType, regressDetails.recoveryStatus, reserveDetails.reserveType</i>
|
|
601
|
+
* @type {string}
|
|
602
|
+
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
603
|
+
*/
|
|
604
|
+
readonly filters?: string;
|
|
605
|
+
}
|
|
314
606
|
/**
|
|
315
607
|
* Request parameters for updateClaimRegulation operation in ClaimRegulationsApi.
|
|
316
608
|
* @export
|
|
@@ -336,6 +628,31 @@ export interface ClaimRegulationsApiUpdateClaimRegulationRequest {
|
|
|
336
628
|
*/
|
|
337
629
|
readonly authorization?: string;
|
|
338
630
|
}
|
|
631
|
+
/**
|
|
632
|
+
* Request parameters for updateClaimRegulation1 operation in ClaimRegulationsApi.
|
|
633
|
+
* @export
|
|
634
|
+
* @interface ClaimRegulationsApiUpdateClaimRegulation1Request
|
|
635
|
+
*/
|
|
636
|
+
export interface ClaimRegulationsApiUpdateClaimRegulation1Request {
|
|
637
|
+
/**
|
|
638
|
+
* Unique identifier for the object.
|
|
639
|
+
* @type {string}
|
|
640
|
+
* @memberof ClaimRegulationsApiUpdateClaimRegulation1
|
|
641
|
+
*/
|
|
642
|
+
readonly code: string;
|
|
643
|
+
/**
|
|
644
|
+
*
|
|
645
|
+
* @type {UpdateRegulationItemRequestDto}
|
|
646
|
+
* @memberof ClaimRegulationsApiUpdateClaimRegulation1
|
|
647
|
+
*/
|
|
648
|
+
readonly updateRegulationItemRequestDto: UpdateRegulationItemRequestDto;
|
|
649
|
+
/**
|
|
650
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
651
|
+
* @type {string}
|
|
652
|
+
* @memberof ClaimRegulationsApiUpdateClaimRegulation1
|
|
653
|
+
*/
|
|
654
|
+
readonly authorization?: string;
|
|
655
|
+
}
|
|
339
656
|
/**
|
|
340
657
|
* ClaimRegulationsApi - object-oriented interface
|
|
341
658
|
* @export
|
|
@@ -352,6 +669,16 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
352
669
|
* @memberof ClaimRegulationsApi
|
|
353
670
|
*/
|
|
354
671
|
createClaimRegulation(requestParameters: ClaimRegulationsApiCreateClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
672
|
+
/**
|
|
673
|
+
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
674
|
+
* @summary Create the claim regulation item
|
|
675
|
+
* @param {ClaimRegulationsApiCreateClaimRegulation1Request} requestParameters Request parameters.
|
|
676
|
+
* @param {*} [options] Override http request option.
|
|
677
|
+
* @deprecated
|
|
678
|
+
* @throws {RequiredError}
|
|
679
|
+
* @memberof ClaimRegulationsApi
|
|
680
|
+
*/
|
|
681
|
+
createClaimRegulation1(requestParameters: ClaimRegulationsApiCreateClaimRegulation1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
355
682
|
/**
|
|
356
683
|
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
357
684
|
* @summary Delete the claim regulation item
|
|
@@ -361,6 +688,16 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
361
688
|
* @memberof ClaimRegulationsApi
|
|
362
689
|
*/
|
|
363
690
|
deleteClaimRegulations(requestParameters: ClaimRegulationsApiDeleteClaimRegulationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
691
|
+
/**
|
|
692
|
+
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
693
|
+
* @summary Delete the claim regulation item
|
|
694
|
+
* @param {ClaimRegulationsApiDeleteClaimRegulations1Request} requestParameters Request parameters.
|
|
695
|
+
* @param {*} [options] Override http request option.
|
|
696
|
+
* @deprecated
|
|
697
|
+
* @throws {RequiredError}
|
|
698
|
+
* @memberof ClaimRegulationsApi
|
|
699
|
+
*/
|
|
700
|
+
deleteClaimRegulations1(requestParameters: ClaimRegulationsApiDeleteClaimRegulations1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
364
701
|
/**
|
|
365
702
|
* 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. **Required Permissions** \"claim-management.regulations.view\"
|
|
366
703
|
* @summary Retrieve the claim regulation item
|
|
@@ -370,6 +707,16 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
370
707
|
* @memberof ClaimRegulationsApi
|
|
371
708
|
*/
|
|
372
709
|
getClaimRegulation(requestParameters: ClaimRegulationsApiGetClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
710
|
+
/**
|
|
711
|
+
* 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. **Required Permissions** \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
712
|
+
* @summary Retrieve the claim regulation item
|
|
713
|
+
* @param {ClaimRegulationsApiGetClaimRegulation1Request} requestParameters Request parameters.
|
|
714
|
+
* @param {*} [options] Override http request option.
|
|
715
|
+
* @deprecated
|
|
716
|
+
* @throws {RequiredError}
|
|
717
|
+
* @memberof ClaimRegulationsApi
|
|
718
|
+
*/
|
|
719
|
+
getClaimRegulation1(requestParameters: ClaimRegulationsApiGetClaimRegulation1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
373
720
|
/**
|
|
374
721
|
* 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. **Required Permissions** \"claim-management.regulations.view\"
|
|
375
722
|
* @summary List claim regulation items
|
|
@@ -379,6 +726,16 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
379
726
|
* @memberof ClaimRegulationsApi
|
|
380
727
|
*/
|
|
381
728
|
listClaimRegulations(requestParameters?: ClaimRegulationsApiListClaimRegulationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRegulationsResponseClass, any, {}>>;
|
|
729
|
+
/**
|
|
730
|
+
* 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. **Required Permissions** \"claim-management.regulations.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
731
|
+
* @summary List claim regulation items
|
|
732
|
+
* @param {ClaimRegulationsApiListClaimRegulations1Request} requestParameters Request parameters.
|
|
733
|
+
* @param {*} [options] Override http request option.
|
|
734
|
+
* @deprecated
|
|
735
|
+
* @throws {RequiredError}
|
|
736
|
+
* @memberof ClaimRegulationsApi
|
|
737
|
+
*/
|
|
738
|
+
listClaimRegulations1(requestParameters?: ClaimRegulationsApiListClaimRegulations1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRegulationsResponseClass, any, {}>>;
|
|
382
739
|
/**
|
|
383
740
|
* 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. **Required Permissions** \"claim-management.regulations.update\"
|
|
384
741
|
* @summary Update the claim regulation item
|
|
@@ -388,4 +745,14 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
388
745
|
* @memberof ClaimRegulationsApi
|
|
389
746
|
*/
|
|
390
747
|
updateClaimRegulation(requestParameters: ClaimRegulationsApiUpdateClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
748
|
+
/**
|
|
749
|
+
* 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. **Required Permissions** \"claim-management.regulations.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
750
|
+
* @summary Update the claim regulation item
|
|
751
|
+
* @param {ClaimRegulationsApiUpdateClaimRegulation1Request} requestParameters Request parameters.
|
|
752
|
+
* @param {*} [options] Override http request option.
|
|
753
|
+
* @deprecated
|
|
754
|
+
* @throws {RequiredError}
|
|
755
|
+
* @memberof ClaimRegulationsApi
|
|
756
|
+
*/
|
|
757
|
+
updateClaimRegulation1(requestParameters: ClaimRegulationsApiUpdateClaimRegulation1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
391
758
|
}
|