@emilgroup/claim-sdk 1.40.1-beta.7 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +0 -10
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +6 -613
- package/api/claim-partners-api.ts +0 -504
- package/api/claim-regulations-api.ts +3 -624
- package/api/claim-statuses-api.ts +5 -728
- package/api/claims-api.ts +4 -828
- package/api/health-check-api.ts +0 -62
- package/api/settlements-api.ts +6 -613
- package/api.ts +0 -2
- package/dist/api/claim-partner-roles-api.d.ts +0 -338
- package/dist/api/claim-partner-roles-api.js +0 -505
- package/dist/api/claim-partners-api.d.ts +0 -283
- package/dist/api/claim-partners-api.js +0 -412
- package/dist/api/claim-regulations-api.d.ts +0 -347
- package/dist/api/claim-regulations-api.js +0 -511
- package/dist/api/claim-statuses-api.d.ts +0 -402
- package/dist/api/claim-statuses-api.js +11 -615
- package/dist/api/claims-api.d.ts +0 -457
- package/dist/api/claims-api.js +30 -726
- package/dist/api/health-check-api.d.ts +0 -29
- package/dist/api/health-check-api.js +0 -69
- package/dist/api/settlements-api.d.ts +0 -338
- package/dist/api/settlements-api.js +0 -505
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/models/claim-class.d.ts +0 -6
- package/dist/models/index.d.ts +0 -9
- package/dist/models/index.js +0 -9
- package/dist/models/list-claim-partner-roles-response-class.d.ts +0 -12
- package/dist/models/list-claim-partners-response-class.d.ts +0 -12
- package/dist/models/list-claim-statuses-response-class.d.ts +1 -13
- package/dist/models/list-claims-response-class.d.ts +0 -12
- package/dist/models/list-regulations-response-class.d.ts +0 -12
- package/models/claim-class.ts +0 -6
- package/models/index.ts +0 -9
- package/models/list-claim-partner-roles-response-class.ts +0 -12
- package/models/list-claim-partners-response-class.ts +0 -12
- package/models/list-claim-statuses-response-class.ts +1 -13
- package/models/list-claims-response-class.ts +0 -12
- package/models/list-regulations-response-class.ts +0 -12
- package/package.json +1 -1
- package/api/claim-positions-api.ts +0 -1316
- package/dist/api/claim-positions-api.d.ts +0 -740
- package/dist/api/claim-positions-api.js +0 -1157
- package/dist/models/claim-position-class.d.ts +0 -121
- package/dist/models/claim-position-class.js +0 -15
- package/dist/models/coverage-class.d.ts +0 -72
- package/dist/models/coverage-class.js +0 -21
- package/dist/models/coverage-request-dto.d.ts +0 -41
- package/dist/models/coverage-request-dto.js +0 -20
- package/dist/models/create-claim-position-request-dto.d.ts +0 -73
- package/dist/models/create-claim-position-request-dto.js +0 -15
- package/dist/models/create-claim-position-response-class.d.ts +0 -25
- package/dist/models/create-claim-position-response-class.js +0 -15
- package/dist/models/get-claim-position-response-class.d.ts +0 -25
- package/dist/models/get-claim-position-response-class.js +0 -15
- package/dist/models/list-claim-positions-response-class.d.ts +0 -43
- package/dist/models/list-claim-positions-response-class.js +0 -15
- package/dist/models/update-claim-position-request-dto.d.ts +0 -73
- package/dist/models/update-claim-position-request-dto.js +0 -15
- package/dist/models/update-claim-position-response-class.d.ts +0 -25
- package/dist/models/update-claim-position-response-class.js +0 -15
- package/models/claim-position-class.ts +0 -127
- package/models/coverage-class.ts +0 -81
- package/models/coverage-request-dto.ts +0 -50
- package/models/create-claim-position-request-dto.ts +0 -79
- package/models/create-claim-position-response-class.ts +0 -31
- package/models/get-claim-position-response-class.ts +0 -31
- package/models/list-claim-positions-response-class.ts +0 -49
- package/models/update-claim-position-request-dto.ts +0 -79
- package/models/update-claim-position-response-class.ts +0 -31
|
@@ -30,15 +30,6 @@ 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\"
|
|
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
|
-
* @throws {RequiredError}
|
|
40
|
-
*/
|
|
41
|
-
createClaimRegulation1: (createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
33
|
/**
|
|
43
34
|
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
44
35
|
* @summary Delete the claim regulation item
|
|
@@ -48,15 +39,6 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
48
39
|
* @throws {RequiredError}
|
|
49
40
|
*/
|
|
50
41
|
deleteClaimRegulations: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
51
|
-
/**
|
|
52
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
53
|
-
* @summary Delete the claim regulation item
|
|
54
|
-
* @param {string} code Unique identifier for the object.
|
|
55
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
56
|
-
* @param {*} [options] Override http request option.
|
|
57
|
-
* @throws {RequiredError}
|
|
58
|
-
*/
|
|
59
|
-
deleteClaimRegulations1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
60
42
|
/**
|
|
61
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. **Required Permissions** \"claim-management.regulations.view\"
|
|
62
44
|
* @summary Retrieve the claim regulation item
|
|
@@ -67,16 +49,6 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
67
49
|
* @throws {RequiredError}
|
|
68
50
|
*/
|
|
69
51
|
getClaimRegulation: (code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
|
-
/**
|
|
71
|
-
* 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\"
|
|
72
|
-
* @summary Retrieve the claim regulation item
|
|
73
|
-
* @param {string} code
|
|
74
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
75
|
-
* @param {'claim'} [expand]
|
|
76
|
-
* @param {*} [options] Override http request option.
|
|
77
|
-
* @throws {RequiredError}
|
|
78
|
-
*/
|
|
79
|
-
getClaimRegulation1: (code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
80
52
|
/**
|
|
81
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. **Required Permissions** \"claim-management.regulations.view\"
|
|
82
54
|
* @summary List claim regulation items
|
|
@@ -92,21 +64,6 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
92
64
|
* @throws {RequiredError}
|
|
93
65
|
*/
|
|
94
66
|
listClaimRegulations: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
95
|
-
/**
|
|
96
|
-
* 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\"
|
|
97
|
-
* @summary List claim regulation items
|
|
98
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
99
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
100
|
-
* @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.
|
|
101
|
-
* @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>
|
|
102
|
-
* @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>
|
|
103
|
-
* @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>
|
|
104
|
-
* @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>
|
|
105
|
-
* @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>
|
|
106
|
-
* @param {*} [options] Override http request option.
|
|
107
|
-
* @throws {RequiredError}
|
|
108
|
-
*/
|
|
109
|
-
listClaimRegulations1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
110
67
|
/**
|
|
111
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. **Required Permissions** \"claim-management.regulations.update\"
|
|
112
69
|
* @summary Update the claim regulation item
|
|
@@ -117,16 +74,6 @@ export declare const ClaimRegulationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
117
74
|
* @throws {RequiredError}
|
|
118
75
|
*/
|
|
119
76
|
updateClaimRegulation: (code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
120
|
-
/**
|
|
121
|
-
* 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\"
|
|
122
|
-
* @summary Update the claim regulation item
|
|
123
|
-
* @param {string} code Unique identifier for the object.
|
|
124
|
-
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
125
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
126
|
-
* @param {*} [options] Override http request option.
|
|
127
|
-
* @throws {RequiredError}
|
|
128
|
-
*/
|
|
129
|
-
updateClaimRegulation1: (code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
130
77
|
};
|
|
131
78
|
/**
|
|
132
79
|
* ClaimRegulationsApi - functional programming interface
|
|
@@ -142,15 +89,6 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
142
89
|
* @throws {RequiredError}
|
|
143
90
|
*/
|
|
144
91
|
createClaimRegulation(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
145
|
-
/**
|
|
146
|
-
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
147
|
-
* @summary Create the claim regulation item
|
|
148
|
-
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
149
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
150
|
-
* @param {*} [options] Override http request option.
|
|
151
|
-
* @throws {RequiredError}
|
|
152
|
-
*/
|
|
153
|
-
createClaimRegulation1(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
154
92
|
/**
|
|
155
93
|
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
156
94
|
* @summary Delete the claim regulation item
|
|
@@ -160,15 +98,6 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
160
98
|
* @throws {RequiredError}
|
|
161
99
|
*/
|
|
162
100
|
deleteClaimRegulations(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
163
|
-
/**
|
|
164
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
165
|
-
* @summary Delete the claim regulation item
|
|
166
|
-
* @param {string} code Unique identifier for the object.
|
|
167
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
168
|
-
* @param {*} [options] Override http request option.
|
|
169
|
-
* @throws {RequiredError}
|
|
170
|
-
*/
|
|
171
|
-
deleteClaimRegulations1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
172
101
|
/**
|
|
173
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. **Required Permissions** \"claim-management.regulations.view\"
|
|
174
103
|
* @summary Retrieve the claim regulation item
|
|
@@ -179,16 +108,6 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
179
108
|
* @throws {RequiredError}
|
|
180
109
|
*/
|
|
181
110
|
getClaimRegulation(code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
182
|
-
/**
|
|
183
|
-
* 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\"
|
|
184
|
-
* @summary Retrieve the claim regulation item
|
|
185
|
-
* @param {string} code
|
|
186
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
187
|
-
* @param {'claim'} [expand]
|
|
188
|
-
* @param {*} [options] Override http request option.
|
|
189
|
-
* @throws {RequiredError}
|
|
190
|
-
*/
|
|
191
|
-
getClaimRegulation1(code: string, authorization?: string, expand?: 'claim', options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
192
111
|
/**
|
|
193
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. **Required Permissions** \"claim-management.regulations.view\"
|
|
194
113
|
* @summary List claim regulation items
|
|
@@ -204,21 +123,6 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
204
123
|
* @throws {RequiredError}
|
|
205
124
|
*/
|
|
206
125
|
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>>;
|
|
207
|
-
/**
|
|
208
|
-
* 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\"
|
|
209
|
-
* @summary List claim regulation items
|
|
210
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
211
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
212
|
-
* @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.
|
|
213
|
-
* @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>
|
|
214
|
-
* @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>
|
|
215
|
-
* @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>
|
|
216
|
-
* @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>
|
|
217
|
-
* @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>
|
|
218
|
-
* @param {*} [options] Override http request option.
|
|
219
|
-
* @throws {RequiredError}
|
|
220
|
-
*/
|
|
221
|
-
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>>;
|
|
222
126
|
/**
|
|
223
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. **Required Permissions** \"claim-management.regulations.update\"
|
|
224
128
|
* @summary Update the claim regulation item
|
|
@@ -229,16 +133,6 @@ export declare const ClaimRegulationsApiFp: (configuration?: Configuration) => {
|
|
|
229
133
|
* @throws {RequiredError}
|
|
230
134
|
*/
|
|
231
135
|
updateClaimRegulation(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
232
|
-
/**
|
|
233
|
-
* 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\"
|
|
234
|
-
* @summary Update the claim regulation item
|
|
235
|
-
* @param {string} code Unique identifier for the object.
|
|
236
|
-
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
237
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
238
|
-
* @param {*} [options] Override http request option.
|
|
239
|
-
* @throws {RequiredError}
|
|
240
|
-
*/
|
|
241
|
-
updateClaimRegulation1(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegulationItemResponseClass>>;
|
|
242
136
|
};
|
|
243
137
|
/**
|
|
244
138
|
* ClaimRegulationsApi - factory interface
|
|
@@ -254,15 +148,6 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
254
148
|
* @throws {RequiredError}
|
|
255
149
|
*/
|
|
256
150
|
createClaimRegulation(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
257
|
-
/**
|
|
258
|
-
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
259
|
-
* @summary Create the claim regulation item
|
|
260
|
-
* @param {CreateRegulationItemRequestDto} createRegulationItemRequestDto
|
|
261
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
262
|
-
* @param {*} [options] Override http request option.
|
|
263
|
-
* @throws {RequiredError}
|
|
264
|
-
*/
|
|
265
|
-
createClaimRegulation1(createRegulationItemRequestDto: CreateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
266
151
|
/**
|
|
267
152
|
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
268
153
|
* @summary Delete the claim regulation item
|
|
@@ -272,15 +157,6 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
272
157
|
* @throws {RequiredError}
|
|
273
158
|
*/
|
|
274
159
|
deleteClaimRegulations(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
275
|
-
/**
|
|
276
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
277
|
-
* @summary Delete the claim regulation item
|
|
278
|
-
* @param {string} code Unique identifier for the object.
|
|
279
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
280
|
-
* @param {*} [options] Override http request option.
|
|
281
|
-
* @throws {RequiredError}
|
|
282
|
-
*/
|
|
283
|
-
deleteClaimRegulations1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
284
160
|
/**
|
|
285
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. **Required Permissions** \"claim-management.regulations.view\"
|
|
286
162
|
* @summary Retrieve the claim regulation item
|
|
@@ -291,16 +167,6 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
291
167
|
* @throws {RequiredError}
|
|
292
168
|
*/
|
|
293
169
|
getClaimRegulation(code: string, authorization?: string, expand?: 'claim', options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
294
|
-
/**
|
|
295
|
-
* 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\"
|
|
296
|
-
* @summary Retrieve the claim regulation item
|
|
297
|
-
* @param {string} code
|
|
298
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
299
|
-
* @param {'claim'} [expand]
|
|
300
|
-
* @param {*} [options] Override http request option.
|
|
301
|
-
* @throws {RequiredError}
|
|
302
|
-
*/
|
|
303
|
-
getClaimRegulation1(code: string, authorization?: string, expand?: 'claim', options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
304
170
|
/**
|
|
305
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. **Required Permissions** \"claim-management.regulations.view\"
|
|
306
172
|
* @summary List claim regulation items
|
|
@@ -316,21 +182,6 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
316
182
|
* @throws {RequiredError}
|
|
317
183
|
*/
|
|
318
184
|
listClaimRegulations(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
|
|
319
|
-
/**
|
|
320
|
-
* 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\"
|
|
321
|
-
* @summary List claim regulation items
|
|
322
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
323
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
324
|
-
* @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.
|
|
325
|
-
* @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>
|
|
326
|
-
* @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>
|
|
327
|
-
* @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>
|
|
328
|
-
* @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>
|
|
329
|
-
* @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>
|
|
330
|
-
* @param {*} [options] Override http request option.
|
|
331
|
-
* @throws {RequiredError}
|
|
332
|
-
*/
|
|
333
|
-
listClaimRegulations1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListRegulationsResponseClass>;
|
|
334
185
|
/**
|
|
335
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. **Required Permissions** \"claim-management.regulations.update\"
|
|
336
187
|
* @summary Update the claim regulation item
|
|
@@ -341,16 +192,6 @@ export declare const ClaimRegulationsApiFactory: (configuration?: Configuration,
|
|
|
341
192
|
* @throws {RequiredError}
|
|
342
193
|
*/
|
|
343
194
|
updateClaimRegulation(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
344
|
-
/**
|
|
345
|
-
* 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\"
|
|
346
|
-
* @summary Update the claim regulation item
|
|
347
|
-
* @param {string} code Unique identifier for the object.
|
|
348
|
-
* @param {UpdateRegulationItemRequestDto} updateRegulationItemRequestDto
|
|
349
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
350
|
-
* @param {*} [options] Override http request option.
|
|
351
|
-
* @throws {RequiredError}
|
|
352
|
-
*/
|
|
353
|
-
updateClaimRegulation1(code: string, updateRegulationItemRequestDto: UpdateRegulationItemRequestDto, authorization?: string, options?: any): AxiosPromise<RegulationItemResponseClass>;
|
|
354
195
|
};
|
|
355
196
|
/**
|
|
356
197
|
* Request parameters for createClaimRegulation operation in ClaimRegulationsApi.
|
|
@@ -371,25 +212,6 @@ export interface ClaimRegulationsApiCreateClaimRegulationRequest {
|
|
|
371
212
|
*/
|
|
372
213
|
readonly authorization?: string;
|
|
373
214
|
}
|
|
374
|
-
/**
|
|
375
|
-
* Request parameters for createClaimRegulation1 operation in ClaimRegulationsApi.
|
|
376
|
-
* @export
|
|
377
|
-
* @interface ClaimRegulationsApiCreateClaimRegulation1Request
|
|
378
|
-
*/
|
|
379
|
-
export interface ClaimRegulationsApiCreateClaimRegulation1Request {
|
|
380
|
-
/**
|
|
381
|
-
*
|
|
382
|
-
* @type {CreateRegulationItemRequestDto}
|
|
383
|
-
* @memberof ClaimRegulationsApiCreateClaimRegulation1
|
|
384
|
-
*/
|
|
385
|
-
readonly createRegulationItemRequestDto: CreateRegulationItemRequestDto;
|
|
386
|
-
/**
|
|
387
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
388
|
-
* @type {string}
|
|
389
|
-
* @memberof ClaimRegulationsApiCreateClaimRegulation1
|
|
390
|
-
*/
|
|
391
|
-
readonly authorization?: string;
|
|
392
|
-
}
|
|
393
215
|
/**
|
|
394
216
|
* Request parameters for deleteClaimRegulations operation in ClaimRegulationsApi.
|
|
395
217
|
* @export
|
|
@@ -409,25 +231,6 @@ export interface ClaimRegulationsApiDeleteClaimRegulationsRequest {
|
|
|
409
231
|
*/
|
|
410
232
|
readonly authorization?: string;
|
|
411
233
|
}
|
|
412
|
-
/**
|
|
413
|
-
* Request parameters for deleteClaimRegulations1 operation in ClaimRegulationsApi.
|
|
414
|
-
* @export
|
|
415
|
-
* @interface ClaimRegulationsApiDeleteClaimRegulations1Request
|
|
416
|
-
*/
|
|
417
|
-
export interface ClaimRegulationsApiDeleteClaimRegulations1Request {
|
|
418
|
-
/**
|
|
419
|
-
* Unique identifier for the object.
|
|
420
|
-
* @type {string}
|
|
421
|
-
* @memberof ClaimRegulationsApiDeleteClaimRegulations1
|
|
422
|
-
*/
|
|
423
|
-
readonly code: string;
|
|
424
|
-
/**
|
|
425
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
426
|
-
* @type {string}
|
|
427
|
-
* @memberof ClaimRegulationsApiDeleteClaimRegulations1
|
|
428
|
-
*/
|
|
429
|
-
readonly authorization?: string;
|
|
430
|
-
}
|
|
431
234
|
/**
|
|
432
235
|
* Request parameters for getClaimRegulation operation in ClaimRegulationsApi.
|
|
433
236
|
* @export
|
|
@@ -453,31 +256,6 @@ export interface ClaimRegulationsApiGetClaimRegulationRequest {
|
|
|
453
256
|
*/
|
|
454
257
|
readonly expand?: 'claim';
|
|
455
258
|
}
|
|
456
|
-
/**
|
|
457
|
-
* Request parameters for getClaimRegulation1 operation in ClaimRegulationsApi.
|
|
458
|
-
* @export
|
|
459
|
-
* @interface ClaimRegulationsApiGetClaimRegulation1Request
|
|
460
|
-
*/
|
|
461
|
-
export interface ClaimRegulationsApiGetClaimRegulation1Request {
|
|
462
|
-
/**
|
|
463
|
-
*
|
|
464
|
-
* @type {string}
|
|
465
|
-
* @memberof ClaimRegulationsApiGetClaimRegulation1
|
|
466
|
-
*/
|
|
467
|
-
readonly code: string;
|
|
468
|
-
/**
|
|
469
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
470
|
-
* @type {string}
|
|
471
|
-
* @memberof ClaimRegulationsApiGetClaimRegulation1
|
|
472
|
-
*/
|
|
473
|
-
readonly authorization?: string;
|
|
474
|
-
/**
|
|
475
|
-
*
|
|
476
|
-
* @type {'claim'}
|
|
477
|
-
* @memberof ClaimRegulationsApiGetClaimRegulation1
|
|
478
|
-
*/
|
|
479
|
-
readonly expand?: 'claim';
|
|
480
|
-
}
|
|
481
259
|
/**
|
|
482
260
|
* Request parameters for listClaimRegulations operation in ClaimRegulationsApi.
|
|
483
261
|
* @export
|
|
@@ -533,61 +311,6 @@ export interface ClaimRegulationsApiListClaimRegulationsRequest {
|
|
|
533
311
|
*/
|
|
534
312
|
readonly filters?: string;
|
|
535
313
|
}
|
|
536
|
-
/**
|
|
537
|
-
* Request parameters for listClaimRegulations1 operation in ClaimRegulationsApi.
|
|
538
|
-
* @export
|
|
539
|
-
* @interface ClaimRegulationsApiListClaimRegulations1Request
|
|
540
|
-
*/
|
|
541
|
-
export interface ClaimRegulationsApiListClaimRegulations1Request {
|
|
542
|
-
/**
|
|
543
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
544
|
-
* @type {string}
|
|
545
|
-
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
546
|
-
*/
|
|
547
|
-
readonly authorization?: string;
|
|
548
|
-
/**
|
|
549
|
-
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
550
|
-
* @type {number}
|
|
551
|
-
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
552
|
-
*/
|
|
553
|
-
readonly pageSize?: number;
|
|
554
|
-
/**
|
|
555
|
-
* 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.
|
|
556
|
-
* @type {string}
|
|
557
|
-
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
558
|
-
*/
|
|
559
|
-
readonly pageToken?: string;
|
|
560
|
-
/**
|
|
561
|
-
* 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>
|
|
562
|
-
* @type {string}
|
|
563
|
-
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
564
|
-
*/
|
|
565
|
-
readonly filter?: string;
|
|
566
|
-
/**
|
|
567
|
-
* 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>
|
|
568
|
-
* @type {string}
|
|
569
|
-
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
570
|
-
*/
|
|
571
|
-
readonly search?: string;
|
|
572
|
-
/**
|
|
573
|
-
* 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>
|
|
574
|
-
* @type {string}
|
|
575
|
-
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
576
|
-
*/
|
|
577
|
-
readonly order?: string;
|
|
578
|
-
/**
|
|
579
|
-
* 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>
|
|
580
|
-
* @type {string}
|
|
581
|
-
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
582
|
-
*/
|
|
583
|
-
readonly expand?: string;
|
|
584
|
-
/**
|
|
585
|
-
* 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>
|
|
586
|
-
* @type {string}
|
|
587
|
-
* @memberof ClaimRegulationsApiListClaimRegulations1
|
|
588
|
-
*/
|
|
589
|
-
readonly filters?: string;
|
|
590
|
-
}
|
|
591
314
|
/**
|
|
592
315
|
* Request parameters for updateClaimRegulation operation in ClaimRegulationsApi.
|
|
593
316
|
* @export
|
|
@@ -613,31 +336,6 @@ export interface ClaimRegulationsApiUpdateClaimRegulationRequest {
|
|
|
613
336
|
*/
|
|
614
337
|
readonly authorization?: string;
|
|
615
338
|
}
|
|
616
|
-
/**
|
|
617
|
-
* Request parameters for updateClaimRegulation1 operation in ClaimRegulationsApi.
|
|
618
|
-
* @export
|
|
619
|
-
* @interface ClaimRegulationsApiUpdateClaimRegulation1Request
|
|
620
|
-
*/
|
|
621
|
-
export interface ClaimRegulationsApiUpdateClaimRegulation1Request {
|
|
622
|
-
/**
|
|
623
|
-
* Unique identifier for the object.
|
|
624
|
-
* @type {string}
|
|
625
|
-
* @memberof ClaimRegulationsApiUpdateClaimRegulation1
|
|
626
|
-
*/
|
|
627
|
-
readonly code: string;
|
|
628
|
-
/**
|
|
629
|
-
*
|
|
630
|
-
* @type {UpdateRegulationItemRequestDto}
|
|
631
|
-
* @memberof ClaimRegulationsApiUpdateClaimRegulation1
|
|
632
|
-
*/
|
|
633
|
-
readonly updateRegulationItemRequestDto: UpdateRegulationItemRequestDto;
|
|
634
|
-
/**
|
|
635
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
636
|
-
* @type {string}
|
|
637
|
-
* @memberof ClaimRegulationsApiUpdateClaimRegulation1
|
|
638
|
-
*/
|
|
639
|
-
readonly authorization?: string;
|
|
640
|
-
}
|
|
641
339
|
/**
|
|
642
340
|
* ClaimRegulationsApi - object-oriented interface
|
|
643
341
|
* @export
|
|
@@ -654,15 +352,6 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
654
352
|
* @memberof ClaimRegulationsApi
|
|
655
353
|
*/
|
|
656
354
|
createClaimRegulation(requestParameters: ClaimRegulationsApiCreateClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
657
|
-
/**
|
|
658
|
-
* This endpoint will create a new regulation item for a claim **Required Permissions** \"claim-management.regulations.create\"
|
|
659
|
-
* @summary Create the claim regulation item
|
|
660
|
-
* @param {ClaimRegulationsApiCreateClaimRegulation1Request} requestParameters Request parameters.
|
|
661
|
-
* @param {*} [options] Override http request option.
|
|
662
|
-
* @throws {RequiredError}
|
|
663
|
-
* @memberof ClaimRegulationsApi
|
|
664
|
-
*/
|
|
665
|
-
createClaimRegulation1(requestParameters: ClaimRegulationsApiCreateClaimRegulation1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
666
355
|
/**
|
|
667
356
|
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
668
357
|
* @summary Delete the claim regulation item
|
|
@@ -672,15 +361,6 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
672
361
|
* @memberof ClaimRegulationsApi
|
|
673
362
|
*/
|
|
674
363
|
deleteClaimRegulations(requestParameters: ClaimRegulationsApiDeleteClaimRegulationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
675
|
-
/**
|
|
676
|
-
* This will delete the regulation item identified by the code. **Required Permissions** \"claim-management.regulations.delete\"
|
|
677
|
-
* @summary Delete the claim regulation item
|
|
678
|
-
* @param {ClaimRegulationsApiDeleteClaimRegulations1Request} requestParameters Request parameters.
|
|
679
|
-
* @param {*} [options] Override http request option.
|
|
680
|
-
* @throws {RequiredError}
|
|
681
|
-
* @memberof ClaimRegulationsApi
|
|
682
|
-
*/
|
|
683
|
-
deleteClaimRegulations1(requestParameters: ClaimRegulationsApiDeleteClaimRegulations1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
684
364
|
/**
|
|
685
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. **Required Permissions** \"claim-management.regulations.view\"
|
|
686
366
|
* @summary Retrieve the claim regulation item
|
|
@@ -690,15 +370,6 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
690
370
|
* @memberof ClaimRegulationsApi
|
|
691
371
|
*/
|
|
692
372
|
getClaimRegulation(requestParameters: ClaimRegulationsApiGetClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
693
|
-
/**
|
|
694
|
-
* 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\"
|
|
695
|
-
* @summary Retrieve the claim regulation item
|
|
696
|
-
* @param {ClaimRegulationsApiGetClaimRegulation1Request} requestParameters Request parameters.
|
|
697
|
-
* @param {*} [options] Override http request option.
|
|
698
|
-
* @throws {RequiredError}
|
|
699
|
-
* @memberof ClaimRegulationsApi
|
|
700
|
-
*/
|
|
701
|
-
getClaimRegulation1(requestParameters: ClaimRegulationsApiGetClaimRegulation1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
702
373
|
/**
|
|
703
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. **Required Permissions** \"claim-management.regulations.view\"
|
|
704
375
|
* @summary List claim regulation items
|
|
@@ -708,15 +379,6 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
708
379
|
* @memberof ClaimRegulationsApi
|
|
709
380
|
*/
|
|
710
381
|
listClaimRegulations(requestParameters?: ClaimRegulationsApiListClaimRegulationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRegulationsResponseClass, any, {}>>;
|
|
711
|
-
/**
|
|
712
|
-
* 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\"
|
|
713
|
-
* @summary List claim regulation items
|
|
714
|
-
* @param {ClaimRegulationsApiListClaimRegulations1Request} requestParameters Request parameters.
|
|
715
|
-
* @param {*} [options] Override http request option.
|
|
716
|
-
* @throws {RequiredError}
|
|
717
|
-
* @memberof ClaimRegulationsApi
|
|
718
|
-
*/
|
|
719
|
-
listClaimRegulations1(requestParameters?: ClaimRegulationsApiListClaimRegulations1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListRegulationsResponseClass, any, {}>>;
|
|
720
382
|
/**
|
|
721
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. **Required Permissions** \"claim-management.regulations.update\"
|
|
722
384
|
* @summary Update the claim regulation item
|
|
@@ -726,13 +388,4 @@ export declare class ClaimRegulationsApi extends BaseAPI {
|
|
|
726
388
|
* @memberof ClaimRegulationsApi
|
|
727
389
|
*/
|
|
728
390
|
updateClaimRegulation(requestParameters: ClaimRegulationsApiUpdateClaimRegulationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
729
|
-
/**
|
|
730
|
-
* 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\"
|
|
731
|
-
* @summary Update the claim regulation item
|
|
732
|
-
* @param {ClaimRegulationsApiUpdateClaimRegulation1Request} requestParameters Request parameters.
|
|
733
|
-
* @param {*} [options] Override http request option.
|
|
734
|
-
* @throws {RequiredError}
|
|
735
|
-
* @memberof ClaimRegulationsApi
|
|
736
|
-
*/
|
|
737
|
-
updateClaimRegulation1(requestParameters: ClaimRegulationsApiUpdateClaimRegulation1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RegulationItemResponseClass, any, {}>>;
|
|
738
391
|
}
|