@emilgroup/claim-sdk-node 1.40.1-beta.4 → 1.41.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +45 -53
- package/api/claim-partner-roles-api.ts +107 -127
- package/api/claim-partners-api.ts +87 -103
- package/api/claim-positions-api.ts +153 -181
- package/api/claim-regulations-api.ts +108 -128
- package/api/claim-statuses-api.ts +129 -153
- package/api/claims-api.ts +149 -177
- package/api/health-check-api.ts +137 -17
- package/api/settlements-api.ts +107 -127
- package/dist/api/claim-limit-usages-api.d.ts +34 -42
- package/dist/api/claim-limit-usages-api.js +29 -37
- package/dist/api/claim-partner-roles-api.d.ts +77 -97
- package/dist/api/claim-partner-roles-api.js +75 -95
- package/dist/api/claim-partners-api.d.ts +63 -79
- package/dist/api/claim-partners-api.js +60 -76
- package/dist/api/claim-positions-api.d.ts +108 -136
- package/dist/api/claim-positions-api.js +108 -136
- package/dist/api/claim-regulations-api.d.ts +78 -98
- package/dist/api/claim-regulations-api.js +75 -95
- package/dist/api/claim-statuses-api.d.ts +92 -116
- package/dist/api/claim-statuses-api.js +91 -115
- package/dist/api/claims-api.d.ts +106 -134
- package/dist/api/claims-api.js +106 -134
- package/dist/api/health-check-api.d.ts +66 -12
- package/dist/api/health-check-api.js +151 -17
- package/dist/api/settlements-api.d.ts +77 -97
- package/dist/api/settlements-api.js +75 -95
- package/dist/models/calculation-step-result-class.d.ts +3 -3
- package/dist/models/list-claim-limit-usages-response-class.d.ts +6 -6
- package/dist/models/list-claim-partner-roles-response-class.d.ts +6 -6
- package/dist/models/list-claim-partners-response-class.d.ts +6 -6
- package/dist/models/list-claim-positions-response-class.d.ts +6 -6
- package/dist/models/list-claim-statuses-response-class.d.ts +6 -6
- package/dist/models/list-claims-response-class.d.ts +6 -6
- package/dist/models/list-regulations-response-class.d.ts +6 -6
- package/dist/models/list-settlements-response-class.d.ts +18 -6
- package/dist/models/payout-details-class.d.ts +4 -2
- package/models/calculation-step-result-class.ts +3 -3
- package/models/list-claim-limit-usages-response-class.ts +6 -6
- package/models/list-claim-partner-roles-response-class.ts +6 -6
- package/models/list-claim-partners-response-class.ts +6 -6
- package/models/list-claim-positions-response-class.ts +6 -6
- package/models/list-claim-statuses-response-class.ts +6 -6
- package/models/list-claims-response-class.ts +6 -6
- package/models/list-regulations-response-class.ts +6 -6
- package/models/list-settlements-response-class.ts +18 -6
- package/models/payout-details-class.ts +2 -2
- package/package.json +1 -1
|
@@ -30,15 +30,14 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
30
30
|
* @param {*} [options] Override http request option.
|
|
31
31
|
* @throws {RequiredError}
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
createClaimPartner0: (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34
34
|
/**
|
|
35
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
35
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
36
36
|
* @summary Create the claim partner
|
|
37
37
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
38
38
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
39
39
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
40
40
|
* @param {*} [options] Override http request option.
|
|
41
|
-
* @deprecated
|
|
42
41
|
* @throws {RequiredError}
|
|
43
42
|
*/
|
|
44
43
|
createClaimPartner1: (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50,14 +49,13 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
50
49
|
* @param {*} [options] Override http request option.
|
|
51
50
|
* @throws {RequiredError}
|
|
52
51
|
*/
|
|
53
|
-
|
|
52
|
+
deleteClaimPartner0: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54
53
|
/**
|
|
55
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
54
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
56
55
|
* @summary Delete the claim partner
|
|
57
56
|
* @param {number} id
|
|
58
57
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
59
58
|
* @param {*} [options] Override http request option.
|
|
60
|
-
* @deprecated
|
|
61
59
|
* @throws {RequiredError}
|
|
62
60
|
*/
|
|
63
61
|
deleteClaimPartner1: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -69,14 +67,13 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
69
67
|
* @param {*} [options] Override http request option.
|
|
70
68
|
* @throws {RequiredError}
|
|
71
69
|
*/
|
|
72
|
-
|
|
70
|
+
getClaimPartner0: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
73
71
|
/**
|
|
74
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
72
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
75
73
|
* @summary Retrieve the claim partner
|
|
76
74
|
* @param {number} id
|
|
77
75
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
78
76
|
* @param {*} [options] Override http request option.
|
|
79
|
-
* @deprecated
|
|
80
77
|
* @throws {RequiredError}
|
|
81
78
|
*/
|
|
82
79
|
getClaimPartner1: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -94,9 +91,9 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
94
91
|
* @param {*} [options] Override http request option.
|
|
95
92
|
* @throws {RequiredError}
|
|
96
93
|
*/
|
|
97
|
-
|
|
94
|
+
listClaimPartners0: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
98
95
|
/**
|
|
99
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
96
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
100
97
|
* @summary List claim partners
|
|
101
98
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
102
99
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -107,7 +104,6 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
107
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: role, partner<i>
|
|
108
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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
109
106
|
* @param {*} [options] Override http request option.
|
|
110
|
-
* @deprecated
|
|
111
107
|
* @throws {RequiredError}
|
|
112
108
|
*/
|
|
113
109
|
listClaimPartners1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -126,15 +122,14 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
126
122
|
* @param {*} [options] Override http request option.
|
|
127
123
|
* @throws {RequiredError}
|
|
128
124
|
*/
|
|
129
|
-
|
|
125
|
+
createClaimPartner0(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>>;
|
|
130
126
|
/**
|
|
131
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
127
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
132
128
|
* @summary Create the claim partner
|
|
133
129
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
134
130
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
135
131
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
136
132
|
* @param {*} [options] Override http request option.
|
|
137
|
-
* @deprecated
|
|
138
133
|
* @throws {RequiredError}
|
|
139
134
|
*/
|
|
140
135
|
createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>>;
|
|
@@ -146,14 +141,13 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
146
141
|
* @param {*} [options] Override http request option.
|
|
147
142
|
* @throws {RequiredError}
|
|
148
143
|
*/
|
|
149
|
-
|
|
144
|
+
deleteClaimPartner0(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
150
145
|
/**
|
|
151
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
146
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
152
147
|
* @summary Delete the claim partner
|
|
153
148
|
* @param {number} id
|
|
154
149
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
155
150
|
* @param {*} [options] Override http request option.
|
|
156
|
-
* @deprecated
|
|
157
151
|
* @throws {RequiredError}
|
|
158
152
|
*/
|
|
159
153
|
deleteClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -165,14 +159,13 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
165
159
|
* @param {*} [options] Override http request option.
|
|
166
160
|
* @throws {RequiredError}
|
|
167
161
|
*/
|
|
168
|
-
|
|
162
|
+
getClaimPartner0(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>>;
|
|
169
163
|
/**
|
|
170
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
164
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
171
165
|
* @summary Retrieve the claim partner
|
|
172
166
|
* @param {number} id
|
|
173
167
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
174
168
|
* @param {*} [options] Override http request option.
|
|
175
|
-
* @deprecated
|
|
176
169
|
* @throws {RequiredError}
|
|
177
170
|
*/
|
|
178
171
|
getClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>>;
|
|
@@ -190,9 +183,9 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
190
183
|
* @param {*} [options] Override http request option.
|
|
191
184
|
* @throws {RequiredError}
|
|
192
185
|
*/
|
|
193
|
-
|
|
186
|
+
listClaimPartners0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnersResponseClass>>;
|
|
194
187
|
/**
|
|
195
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
188
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
196
189
|
* @summary List claim partners
|
|
197
190
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
198
191
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -203,7 +196,6 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
203
196
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: role, partner<i>
|
|
204
197
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
205
198
|
* @param {*} [options] Override http request option.
|
|
206
|
-
* @deprecated
|
|
207
199
|
* @throws {RequiredError}
|
|
208
200
|
*/
|
|
209
201
|
listClaimPartners1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnersResponseClass>>;
|
|
@@ -222,15 +214,14 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
222
214
|
* @param {*} [options] Override http request option.
|
|
223
215
|
* @throws {RequiredError}
|
|
224
216
|
*/
|
|
225
|
-
|
|
217
|
+
createClaimPartner0(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass>;
|
|
226
218
|
/**
|
|
227
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
219
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
228
220
|
* @summary Create the claim partner
|
|
229
221
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
230
222
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
231
223
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
232
224
|
* @param {*} [options] Override http request option.
|
|
233
|
-
* @deprecated
|
|
234
225
|
* @throws {RequiredError}
|
|
235
226
|
*/
|
|
236
227
|
createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass>;
|
|
@@ -242,14 +233,13 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
242
233
|
* @param {*} [options] Override http request option.
|
|
243
234
|
* @throws {RequiredError}
|
|
244
235
|
*/
|
|
245
|
-
|
|
236
|
+
deleteClaimPartner0(id: number, authorization?: string, options?: any): AxiosPromise<void>;
|
|
246
237
|
/**
|
|
247
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
238
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
248
239
|
* @summary Delete the claim partner
|
|
249
240
|
* @param {number} id
|
|
250
241
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
251
242
|
* @param {*} [options] Override http request option.
|
|
252
|
-
* @deprecated
|
|
253
243
|
* @throws {RequiredError}
|
|
254
244
|
*/
|
|
255
245
|
deleteClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<void>;
|
|
@@ -261,14 +251,13 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
261
251
|
* @param {*} [options] Override http request option.
|
|
262
252
|
* @throws {RequiredError}
|
|
263
253
|
*/
|
|
264
|
-
|
|
254
|
+
getClaimPartner0(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass>;
|
|
265
255
|
/**
|
|
266
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
256
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
267
257
|
* @summary Retrieve the claim partner
|
|
268
258
|
* @param {number} id
|
|
269
259
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
270
260
|
* @param {*} [options] Override http request option.
|
|
271
|
-
* @deprecated
|
|
272
261
|
* @throws {RequiredError}
|
|
273
262
|
*/
|
|
274
263
|
getClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass>;
|
|
@@ -286,9 +275,9 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
286
275
|
* @param {*} [options] Override http request option.
|
|
287
276
|
* @throws {RequiredError}
|
|
288
277
|
*/
|
|
289
|
-
|
|
278
|
+
listClaimPartners0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass>;
|
|
290
279
|
/**
|
|
291
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
280
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
292
281
|
* @summary List claim partners
|
|
293
282
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
294
283
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -299,33 +288,32 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
299
288
|
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: role, partner<i>
|
|
300
289
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
301
290
|
* @param {*} [options] Override http request option.
|
|
302
|
-
* @deprecated
|
|
303
291
|
* @throws {RequiredError}
|
|
304
292
|
*/
|
|
305
293
|
listClaimPartners1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass>;
|
|
306
294
|
};
|
|
307
295
|
/**
|
|
308
|
-
* Request parameters for
|
|
296
|
+
* Request parameters for createClaimPartner0 operation in ClaimPartnersApi.
|
|
309
297
|
* @export
|
|
310
|
-
* @interface
|
|
298
|
+
* @interface ClaimPartnersApiCreateClaimPartner0Request
|
|
311
299
|
*/
|
|
312
|
-
export interface
|
|
300
|
+
export interface ClaimPartnersApiCreateClaimPartner0Request {
|
|
313
301
|
/**
|
|
314
302
|
* Unique identifier for the claim object.
|
|
315
303
|
* @type {string}
|
|
316
|
-
* @memberof
|
|
304
|
+
* @memberof ClaimPartnersApiCreateClaimPartner0
|
|
317
305
|
*/
|
|
318
306
|
readonly claimCode: string;
|
|
319
307
|
/**
|
|
320
308
|
*
|
|
321
309
|
* @type {CreateClaimPartnerRequestDto}
|
|
322
|
-
* @memberof
|
|
310
|
+
* @memberof ClaimPartnersApiCreateClaimPartner0
|
|
323
311
|
*/
|
|
324
312
|
readonly createClaimPartnerRequestDto: CreateClaimPartnerRequestDto;
|
|
325
313
|
/**
|
|
326
314
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
327
315
|
* @type {string}
|
|
328
|
-
* @memberof
|
|
316
|
+
* @memberof ClaimPartnersApiCreateClaimPartner0
|
|
329
317
|
*/
|
|
330
318
|
readonly authorization?: string;
|
|
331
319
|
}
|
|
@@ -355,21 +343,21 @@ export interface ClaimPartnersApiCreateClaimPartner1Request {
|
|
|
355
343
|
readonly authorization?: string;
|
|
356
344
|
}
|
|
357
345
|
/**
|
|
358
|
-
* Request parameters for
|
|
346
|
+
* Request parameters for deleteClaimPartner0 operation in ClaimPartnersApi.
|
|
359
347
|
* @export
|
|
360
|
-
* @interface
|
|
348
|
+
* @interface ClaimPartnersApiDeleteClaimPartner0Request
|
|
361
349
|
*/
|
|
362
|
-
export interface
|
|
350
|
+
export interface ClaimPartnersApiDeleteClaimPartner0Request {
|
|
363
351
|
/**
|
|
364
352
|
*
|
|
365
353
|
* @type {number}
|
|
366
|
-
* @memberof
|
|
354
|
+
* @memberof ClaimPartnersApiDeleteClaimPartner0
|
|
367
355
|
*/
|
|
368
356
|
readonly id: number;
|
|
369
357
|
/**
|
|
370
358
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
371
359
|
* @type {string}
|
|
372
|
-
* @memberof
|
|
360
|
+
* @memberof ClaimPartnersApiDeleteClaimPartner0
|
|
373
361
|
*/
|
|
374
362
|
readonly authorization?: string;
|
|
375
363
|
}
|
|
@@ -393,21 +381,21 @@ export interface ClaimPartnersApiDeleteClaimPartner1Request {
|
|
|
393
381
|
readonly authorization?: string;
|
|
394
382
|
}
|
|
395
383
|
/**
|
|
396
|
-
* Request parameters for
|
|
384
|
+
* Request parameters for getClaimPartner0 operation in ClaimPartnersApi.
|
|
397
385
|
* @export
|
|
398
|
-
* @interface
|
|
386
|
+
* @interface ClaimPartnersApiGetClaimPartner0Request
|
|
399
387
|
*/
|
|
400
|
-
export interface
|
|
388
|
+
export interface ClaimPartnersApiGetClaimPartner0Request {
|
|
401
389
|
/**
|
|
402
390
|
*
|
|
403
391
|
* @type {number}
|
|
404
|
-
* @memberof
|
|
392
|
+
* @memberof ClaimPartnersApiGetClaimPartner0
|
|
405
393
|
*/
|
|
406
394
|
readonly id: number;
|
|
407
395
|
/**
|
|
408
396
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
409
397
|
* @type {string}
|
|
410
|
-
* @memberof
|
|
398
|
+
* @memberof ClaimPartnersApiGetClaimPartner0
|
|
411
399
|
*/
|
|
412
400
|
readonly authorization?: string;
|
|
413
401
|
}
|
|
@@ -431,57 +419,57 @@ export interface ClaimPartnersApiGetClaimPartner1Request {
|
|
|
431
419
|
readonly authorization?: string;
|
|
432
420
|
}
|
|
433
421
|
/**
|
|
434
|
-
* Request parameters for
|
|
422
|
+
* Request parameters for listClaimPartners0 operation in ClaimPartnersApi.
|
|
435
423
|
* @export
|
|
436
|
-
* @interface
|
|
424
|
+
* @interface ClaimPartnersApiListClaimPartners0Request
|
|
437
425
|
*/
|
|
438
|
-
export interface
|
|
426
|
+
export interface ClaimPartnersApiListClaimPartners0Request {
|
|
439
427
|
/**
|
|
440
428
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
441
429
|
* @type {string}
|
|
442
|
-
* @memberof
|
|
430
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
443
431
|
*/
|
|
444
432
|
readonly authorization?: string;
|
|
445
433
|
/**
|
|
446
434
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
447
435
|
* @type {number}
|
|
448
|
-
* @memberof
|
|
436
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
449
437
|
*/
|
|
450
438
|
readonly pageSize?: number;
|
|
451
439
|
/**
|
|
452
440
|
* 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.
|
|
453
441
|
* @type {string}
|
|
454
|
-
* @memberof
|
|
442
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
455
443
|
*/
|
|
456
444
|
readonly pageToken?: string;
|
|
457
445
|
/**
|
|
458
446
|
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
459
447
|
* @type {string}
|
|
460
|
-
* @memberof
|
|
448
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
461
449
|
*/
|
|
462
450
|
readonly filter?: string;
|
|
463
451
|
/**
|
|
464
452
|
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
465
453
|
* @type {string}
|
|
466
|
-
* @memberof
|
|
454
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
467
455
|
*/
|
|
468
456
|
readonly search?: string;
|
|
469
457
|
/**
|
|
470
458
|
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
471
459
|
* @type {string}
|
|
472
|
-
* @memberof
|
|
460
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
473
461
|
*/
|
|
474
462
|
readonly order?: string;
|
|
475
463
|
/**
|
|
476
464
|
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: role, partner<i>
|
|
477
465
|
* @type {string}
|
|
478
|
-
* @memberof
|
|
466
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
479
467
|
*/
|
|
480
468
|
readonly expand?: string;
|
|
481
469
|
/**
|
|
482
470
|
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
483
471
|
* @type {string}
|
|
484
|
-
* @memberof
|
|
472
|
+
* @memberof ClaimPartnersApiListClaimPartners0
|
|
485
473
|
*/
|
|
486
474
|
readonly filters?: string;
|
|
487
475
|
}
|
|
@@ -550,18 +538,17 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
550
538
|
/**
|
|
551
539
|
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
552
540
|
* @summary Create the claim partner
|
|
553
|
-
* @param {
|
|
541
|
+
* @param {ClaimPartnersApiCreateClaimPartner0Request} requestParameters Request parameters.
|
|
554
542
|
* @param {*} [options] Override http request option.
|
|
555
543
|
* @throws {RequiredError}
|
|
556
544
|
* @memberof ClaimPartnersApi
|
|
557
545
|
*/
|
|
558
|
-
|
|
546
|
+
createClaimPartner0(requestParameters: ClaimPartnersApiCreateClaimPartner0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerResponseClass, any, {}>>;
|
|
559
547
|
/**
|
|
560
|
-
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
548
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
561
549
|
* @summary Create the claim partner
|
|
562
550
|
* @param {ClaimPartnersApiCreateClaimPartner1Request} requestParameters Request parameters.
|
|
563
551
|
* @param {*} [options] Override http request option.
|
|
564
|
-
* @deprecated
|
|
565
552
|
* @throws {RequiredError}
|
|
566
553
|
* @memberof ClaimPartnersApi
|
|
567
554
|
*/
|
|
@@ -569,18 +556,17 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
569
556
|
/**
|
|
570
557
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
571
558
|
* @summary Delete the claim partner
|
|
572
|
-
* @param {
|
|
559
|
+
* @param {ClaimPartnersApiDeleteClaimPartner0Request} requestParameters Request parameters.
|
|
573
560
|
* @param {*} [options] Override http request option.
|
|
574
561
|
* @throws {RequiredError}
|
|
575
562
|
* @memberof ClaimPartnersApi
|
|
576
563
|
*/
|
|
577
|
-
|
|
564
|
+
deleteClaimPartner0(requestParameters: ClaimPartnersApiDeleteClaimPartner0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
578
565
|
/**
|
|
579
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
566
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
580
567
|
* @summary Delete the claim partner
|
|
581
568
|
* @param {ClaimPartnersApiDeleteClaimPartner1Request} requestParameters Request parameters.
|
|
582
569
|
* @param {*} [options] Override http request option.
|
|
583
|
-
* @deprecated
|
|
584
570
|
* @throws {RequiredError}
|
|
585
571
|
* @memberof ClaimPartnersApi
|
|
586
572
|
*/
|
|
@@ -588,18 +574,17 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
588
574
|
/**
|
|
589
575
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
590
576
|
* @summary Retrieve the claim partner
|
|
591
|
-
* @param {
|
|
577
|
+
* @param {ClaimPartnersApiGetClaimPartner0Request} requestParameters Request parameters.
|
|
592
578
|
* @param {*} [options] Override http request option.
|
|
593
579
|
* @throws {RequiredError}
|
|
594
580
|
* @memberof ClaimPartnersApi
|
|
595
581
|
*/
|
|
596
|
-
|
|
582
|
+
getClaimPartner0(requestParameters: ClaimPartnersApiGetClaimPartner0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerResponseClass, any, {}>>;
|
|
597
583
|
/**
|
|
598
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
584
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
599
585
|
* @summary Retrieve the claim partner
|
|
600
586
|
* @param {ClaimPartnersApiGetClaimPartner1Request} requestParameters Request parameters.
|
|
601
587
|
* @param {*} [options] Override http request option.
|
|
602
|
-
* @deprecated
|
|
603
588
|
* @throws {RequiredError}
|
|
604
589
|
* @memberof ClaimPartnersApi
|
|
605
590
|
*/
|
|
@@ -607,18 +592,17 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
607
592
|
/**
|
|
608
593
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
609
594
|
* @summary List claim partners
|
|
610
|
-
* @param {
|
|
595
|
+
* @param {ClaimPartnersApiListClaimPartners0Request} requestParameters Request parameters.
|
|
611
596
|
* @param {*} [options] Override http request option.
|
|
612
597
|
* @throws {RequiredError}
|
|
613
598
|
* @memberof ClaimPartnersApi
|
|
614
599
|
*/
|
|
615
|
-
|
|
600
|
+
listClaimPartners0(requestParameters?: ClaimPartnersApiListClaimPartners0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnersResponseClass, any, {}>>;
|
|
616
601
|
/**
|
|
617
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
602
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
618
603
|
* @summary List claim partners
|
|
619
604
|
* @param {ClaimPartnersApiListClaimPartners1Request} requestParameters Request parameters.
|
|
620
605
|
* @param {*} [options] Override http request option.
|
|
621
|
-
* @deprecated
|
|
622
606
|
* @throws {RequiredError}
|
|
623
607
|
* @memberof ClaimPartnersApi
|
|
624
608
|
*/
|