@emilgroup/claim-sdk-node 1.41.1-beta.0 → 1.41.1-beta.2
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 +53 -45
- package/api/claim-partner-roles-api.ts +127 -107
- package/api/claim-partners-api.ts +103 -87
- package/api/claim-positions-api.ts +181 -153
- package/api/claim-regulations-api.ts +128 -108
- package/api/claim-statuses-api.ts +153 -129
- package/api/claims-api.ts +177 -149
- package/api/health-check-api.ts +46 -38
- package/api/settlements-api.ts +127 -107
- package/dist/api/claim-limit-usages-api.d.ts +42 -34
- package/dist/api/claim-limit-usages-api.js +37 -29
- package/dist/api/claim-partner-roles-api.d.ts +97 -77
- package/dist/api/claim-partner-roles-api.js +95 -75
- package/dist/api/claim-partners-api.d.ts +79 -63
- package/dist/api/claim-partners-api.js +76 -60
- package/dist/api/claim-positions-api.d.ts +136 -108
- package/dist/api/claim-positions-api.js +136 -108
- package/dist/api/claim-regulations-api.d.ts +98 -78
- package/dist/api/claim-regulations-api.js +95 -75
- package/dist/api/claim-statuses-api.d.ts +116 -92
- package/dist/api/claim-statuses-api.js +115 -91
- package/dist/api/claims-api.d.ts +134 -106
- package/dist/api/claims-api.js +134 -106
- package/dist/api/health-check-api.d.ts +32 -24
- package/dist/api/health-check-api.js +46 -38
- package/dist/api/settlements-api.d.ts +97 -77
- package/dist/api/settlements-api.js +95 -75
- package/package.json +1 -1
|
@@ -31,13 +31,14 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
31
31
|
* @param {*} [options] Override http request option.
|
|
32
32
|
* @throws {RequiredError}
|
|
33
33
|
*/
|
|
34
|
-
|
|
34
|
+
createClaimPartnerRole: (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
35
|
/**
|
|
36
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
36
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
37
37
|
* @summary Create the claim partner role
|
|
38
38
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
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
|
|
41
42
|
* @throws {RequiredError}
|
|
42
43
|
*/
|
|
43
44
|
createClaimPartnerRole1: (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -49,13 +50,14 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
49
50
|
* @param {*} [options] Override http request option.
|
|
50
51
|
* @throws {RequiredError}
|
|
51
52
|
*/
|
|
52
|
-
|
|
53
|
+
deleteClaimPartnerRole: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
54
|
/**
|
|
54
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
55
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
55
56
|
* @summary Delete the claim partner role
|
|
56
57
|
* @param {string} code Unique identifier for the object.
|
|
57
58
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
58
59
|
* @param {*} [options] Override http request option.
|
|
60
|
+
* @deprecated
|
|
59
61
|
* @throws {RequiredError}
|
|
60
62
|
*/
|
|
61
63
|
deleteClaimPartnerRole1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -67,13 +69,14 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
67
69
|
* @param {*} [options] Override http request option.
|
|
68
70
|
* @throws {RequiredError}
|
|
69
71
|
*/
|
|
70
|
-
|
|
72
|
+
getClaimPartnerRole: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
71
73
|
/**
|
|
72
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
74
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
73
75
|
* @summary Retrieve the claim partner role
|
|
74
76
|
* @param {string} code Unique identifier for the object.
|
|
75
77
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
76
78
|
* @param {*} [options] Override http request option.
|
|
79
|
+
* @deprecated
|
|
77
80
|
* @throws {RequiredError}
|
|
78
81
|
*/
|
|
79
82
|
getClaimPartnerRole1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -91,9 +94,9 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
91
94
|
* @param {*} [options] Override http request option.
|
|
92
95
|
* @throws {RequiredError}
|
|
93
96
|
*/
|
|
94
|
-
|
|
97
|
+
listClaimPartnerRole: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
95
98
|
/**
|
|
96
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
99
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
97
100
|
* @summary List claim partner roles
|
|
98
101
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
99
102
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -104,6 +107,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
104
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/>
|
|
105
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: name, productSlug</i>
|
|
106
109
|
* @param {*} [options] Override http request option.
|
|
110
|
+
* @deprecated
|
|
107
111
|
* @throws {RequiredError}
|
|
108
112
|
*/
|
|
109
113
|
listClaimPartnerRole1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -116,14 +120,15 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
116
120
|
* @param {*} [options] Override http request option.
|
|
117
121
|
* @throws {RequiredError}
|
|
118
122
|
*/
|
|
119
|
-
|
|
123
|
+
updateClaimPartnerRole: (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
120
124
|
/**
|
|
121
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
125
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
122
126
|
* @summary Update the claim partner role
|
|
123
127
|
* @param {string} code Unique identifier for the object.
|
|
124
128
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
125
129
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
126
130
|
* @param {*} [options] Override http request option.
|
|
131
|
+
* @deprecated
|
|
127
132
|
* @throws {RequiredError}
|
|
128
133
|
*/
|
|
129
134
|
updateClaimPartnerRole1: (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -141,13 +146,14 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
141
146
|
* @param {*} [options] Override http request option.
|
|
142
147
|
* @throws {RequiredError}
|
|
143
148
|
*/
|
|
144
|
-
|
|
149
|
+
createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>>;
|
|
145
150
|
/**
|
|
146
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
151
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
147
152
|
* @summary Create the claim partner role
|
|
148
153
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
149
154
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
150
155
|
* @param {*} [options] Override http request option.
|
|
156
|
+
* @deprecated
|
|
151
157
|
* @throws {RequiredError}
|
|
152
158
|
*/
|
|
153
159
|
createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>>;
|
|
@@ -159,13 +165,14 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
159
165
|
* @param {*} [options] Override http request option.
|
|
160
166
|
* @throws {RequiredError}
|
|
161
167
|
*/
|
|
162
|
-
|
|
168
|
+
deleteClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
163
169
|
/**
|
|
164
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
170
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
165
171
|
* @summary Delete the claim partner role
|
|
166
172
|
* @param {string} code Unique identifier for the object.
|
|
167
173
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
168
174
|
* @param {*} [options] Override http request option.
|
|
175
|
+
* @deprecated
|
|
169
176
|
* @throws {RequiredError}
|
|
170
177
|
*/
|
|
171
178
|
deleteClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -177,13 +184,14 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
177
184
|
* @param {*} [options] Override http request option.
|
|
178
185
|
* @throws {RequiredError}
|
|
179
186
|
*/
|
|
180
|
-
|
|
187
|
+
getClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>>;
|
|
181
188
|
/**
|
|
182
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
189
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
183
190
|
* @summary Retrieve the claim partner role
|
|
184
191
|
* @param {string} code Unique identifier for the object.
|
|
185
192
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
186
193
|
* @param {*} [options] Override http request option.
|
|
194
|
+
* @deprecated
|
|
187
195
|
* @throws {RequiredError}
|
|
188
196
|
*/
|
|
189
197
|
getClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>>;
|
|
@@ -201,9 +209,9 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
201
209
|
* @param {*} [options] Override http request option.
|
|
202
210
|
* @throws {RequiredError}
|
|
203
211
|
*/
|
|
204
|
-
|
|
212
|
+
listClaimPartnerRole(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>>;
|
|
205
213
|
/**
|
|
206
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
214
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
207
215
|
* @summary List claim partner roles
|
|
208
216
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
209
217
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -214,6 +222,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
214
222
|
* @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/>
|
|
215
223
|
* @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: name, productSlug</i>
|
|
216
224
|
* @param {*} [options] Override http request option.
|
|
225
|
+
* @deprecated
|
|
217
226
|
* @throws {RequiredError}
|
|
218
227
|
*/
|
|
219
228
|
listClaimPartnerRole1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>>;
|
|
@@ -226,14 +235,15 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
226
235
|
* @param {*} [options] Override http request option.
|
|
227
236
|
* @throws {RequiredError}
|
|
228
237
|
*/
|
|
229
|
-
|
|
238
|
+
updateClaimPartnerRole(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>>;
|
|
230
239
|
/**
|
|
231
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
240
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
232
241
|
* @summary Update the claim partner role
|
|
233
242
|
* @param {string} code Unique identifier for the object.
|
|
234
243
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
235
244
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
236
245
|
* @param {*} [options] Override http request option.
|
|
246
|
+
* @deprecated
|
|
237
247
|
* @throws {RequiredError}
|
|
238
248
|
*/
|
|
239
249
|
updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>>;
|
|
@@ -251,13 +261,14 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
251
261
|
* @param {*} [options] Override http request option.
|
|
252
262
|
* @throws {RequiredError}
|
|
253
263
|
*/
|
|
254
|
-
|
|
264
|
+
createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass>;
|
|
255
265
|
/**
|
|
256
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
266
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
257
267
|
* @summary Create the claim partner role
|
|
258
268
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
259
269
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
260
270
|
* @param {*} [options] Override http request option.
|
|
271
|
+
* @deprecated
|
|
261
272
|
* @throws {RequiredError}
|
|
262
273
|
*/
|
|
263
274
|
createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass>;
|
|
@@ -269,13 +280,14 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
269
280
|
* @param {*} [options] Override http request option.
|
|
270
281
|
* @throws {RequiredError}
|
|
271
282
|
*/
|
|
272
|
-
|
|
283
|
+
deleteClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
273
284
|
/**
|
|
274
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
285
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
275
286
|
* @summary Delete the claim partner role
|
|
276
287
|
* @param {string} code Unique identifier for the object.
|
|
277
288
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
278
289
|
* @param {*} [options] Override http request option.
|
|
290
|
+
* @deprecated
|
|
279
291
|
* @throws {RequiredError}
|
|
280
292
|
*/
|
|
281
293
|
deleteClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
@@ -287,13 +299,14 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
287
299
|
* @param {*} [options] Override http request option.
|
|
288
300
|
* @throws {RequiredError}
|
|
289
301
|
*/
|
|
290
|
-
|
|
302
|
+
getClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass>;
|
|
291
303
|
/**
|
|
292
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
304
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
293
305
|
* @summary Retrieve the claim partner role
|
|
294
306
|
* @param {string} code Unique identifier for the object.
|
|
295
307
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
296
308
|
* @param {*} [options] Override http request option.
|
|
309
|
+
* @deprecated
|
|
297
310
|
* @throws {RequiredError}
|
|
298
311
|
*/
|
|
299
312
|
getClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass>;
|
|
@@ -311,9 +324,9 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
311
324
|
* @param {*} [options] Override http request option.
|
|
312
325
|
* @throws {RequiredError}
|
|
313
326
|
*/
|
|
314
|
-
|
|
327
|
+
listClaimPartnerRole(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass>;
|
|
315
328
|
/**
|
|
316
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
329
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
317
330
|
* @summary List claim partner roles
|
|
318
331
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
319
332
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -324,6 +337,7 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
324
337
|
* @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/>
|
|
325
338
|
* @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: name, productSlug</i>
|
|
326
339
|
* @param {*} [options] Override http request option.
|
|
340
|
+
* @deprecated
|
|
327
341
|
* @throws {RequiredError}
|
|
328
342
|
*/
|
|
329
343
|
listClaimPartnerRole1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass>;
|
|
@@ -336,34 +350,35 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
336
350
|
* @param {*} [options] Override http request option.
|
|
337
351
|
* @throws {RequiredError}
|
|
338
352
|
*/
|
|
339
|
-
|
|
353
|
+
updateClaimPartnerRole(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass>;
|
|
340
354
|
/**
|
|
341
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
355
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
342
356
|
* @summary Update the claim partner role
|
|
343
357
|
* @param {string} code Unique identifier for the object.
|
|
344
358
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
345
359
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
346
360
|
* @param {*} [options] Override http request option.
|
|
361
|
+
* @deprecated
|
|
347
362
|
* @throws {RequiredError}
|
|
348
363
|
*/
|
|
349
364
|
updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass>;
|
|
350
365
|
};
|
|
351
366
|
/**
|
|
352
|
-
* Request parameters for
|
|
367
|
+
* Request parameters for createClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
353
368
|
* @export
|
|
354
|
-
* @interface
|
|
369
|
+
* @interface ClaimPartnerRolesApiCreateClaimPartnerRoleRequest
|
|
355
370
|
*/
|
|
356
|
-
export interface
|
|
371
|
+
export interface ClaimPartnerRolesApiCreateClaimPartnerRoleRequest {
|
|
357
372
|
/**
|
|
358
373
|
*
|
|
359
374
|
* @type {CreateClaimPartnerRoleRequestDto}
|
|
360
|
-
* @memberof
|
|
375
|
+
* @memberof ClaimPartnerRolesApiCreateClaimPartnerRole
|
|
361
376
|
*/
|
|
362
377
|
readonly createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto;
|
|
363
378
|
/**
|
|
364
379
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
365
380
|
* @type {string}
|
|
366
|
-
* @memberof
|
|
381
|
+
* @memberof ClaimPartnerRolesApiCreateClaimPartnerRole
|
|
367
382
|
*/
|
|
368
383
|
readonly authorization?: string;
|
|
369
384
|
}
|
|
@@ -387,21 +402,21 @@ export interface ClaimPartnerRolesApiCreateClaimPartnerRole1Request {
|
|
|
387
402
|
readonly authorization?: string;
|
|
388
403
|
}
|
|
389
404
|
/**
|
|
390
|
-
* Request parameters for
|
|
405
|
+
* Request parameters for deleteClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
391
406
|
* @export
|
|
392
|
-
* @interface
|
|
407
|
+
* @interface ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest
|
|
393
408
|
*/
|
|
394
|
-
export interface
|
|
409
|
+
export interface ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest {
|
|
395
410
|
/**
|
|
396
411
|
* Unique identifier for the object.
|
|
397
412
|
* @type {string}
|
|
398
|
-
* @memberof
|
|
413
|
+
* @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole
|
|
399
414
|
*/
|
|
400
415
|
readonly code: string;
|
|
401
416
|
/**
|
|
402
417
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
403
418
|
* @type {string}
|
|
404
|
-
* @memberof
|
|
419
|
+
* @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole
|
|
405
420
|
*/
|
|
406
421
|
readonly authorization?: string;
|
|
407
422
|
}
|
|
@@ -425,21 +440,21 @@ export interface ClaimPartnerRolesApiDeleteClaimPartnerRole1Request {
|
|
|
425
440
|
readonly authorization?: string;
|
|
426
441
|
}
|
|
427
442
|
/**
|
|
428
|
-
* Request parameters for
|
|
443
|
+
* Request parameters for getClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
429
444
|
* @export
|
|
430
|
-
* @interface
|
|
445
|
+
* @interface ClaimPartnerRolesApiGetClaimPartnerRoleRequest
|
|
431
446
|
*/
|
|
432
|
-
export interface
|
|
447
|
+
export interface ClaimPartnerRolesApiGetClaimPartnerRoleRequest {
|
|
433
448
|
/**
|
|
434
449
|
* Unique identifier for the object.
|
|
435
450
|
* @type {string}
|
|
436
|
-
* @memberof
|
|
451
|
+
* @memberof ClaimPartnerRolesApiGetClaimPartnerRole
|
|
437
452
|
*/
|
|
438
453
|
readonly code: string;
|
|
439
454
|
/**
|
|
440
455
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
441
456
|
* @type {string}
|
|
442
|
-
* @memberof
|
|
457
|
+
* @memberof ClaimPartnerRolesApiGetClaimPartnerRole
|
|
443
458
|
*/
|
|
444
459
|
readonly authorization?: string;
|
|
445
460
|
}
|
|
@@ -463,57 +478,57 @@ export interface ClaimPartnerRolesApiGetClaimPartnerRole1Request {
|
|
|
463
478
|
readonly authorization?: string;
|
|
464
479
|
}
|
|
465
480
|
/**
|
|
466
|
-
* Request parameters for
|
|
481
|
+
* Request parameters for listClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
467
482
|
* @export
|
|
468
|
-
* @interface
|
|
483
|
+
* @interface ClaimPartnerRolesApiListClaimPartnerRoleRequest
|
|
469
484
|
*/
|
|
470
|
-
export interface
|
|
485
|
+
export interface ClaimPartnerRolesApiListClaimPartnerRoleRequest {
|
|
471
486
|
/**
|
|
472
487
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
473
488
|
* @type {string}
|
|
474
|
-
* @memberof
|
|
489
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole
|
|
475
490
|
*/
|
|
476
491
|
readonly authorization?: string;
|
|
477
492
|
/**
|
|
478
493
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
479
494
|
* @type {number}
|
|
480
|
-
* @memberof
|
|
495
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole
|
|
481
496
|
*/
|
|
482
497
|
readonly pageSize?: number;
|
|
483
498
|
/**
|
|
484
499
|
* 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.
|
|
485
500
|
* @type {string}
|
|
486
|
-
* @memberof
|
|
501
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole
|
|
487
502
|
*/
|
|
488
503
|
readonly pageToken?: string;
|
|
489
504
|
/**
|
|
490
505
|
* 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: name, productSlug</i>
|
|
491
506
|
* @type {string}
|
|
492
|
-
* @memberof
|
|
507
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole
|
|
493
508
|
*/
|
|
494
509
|
readonly filter?: string;
|
|
495
510
|
/**
|
|
496
511
|
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, productSlug</i>
|
|
497
512
|
* @type {string}
|
|
498
|
-
* @memberof
|
|
513
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole
|
|
499
514
|
*/
|
|
500
515
|
readonly search?: string;
|
|
501
516
|
/**
|
|
502
517
|
* 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, name, productSlug, createdAt, updatedAt</i>
|
|
503
518
|
* @type {string}
|
|
504
|
-
* @memberof
|
|
519
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole
|
|
505
520
|
*/
|
|
506
521
|
readonly order?: string;
|
|
507
522
|
/**
|
|
508
523
|
* 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/>
|
|
509
524
|
* @type {string}
|
|
510
|
-
* @memberof
|
|
525
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole
|
|
511
526
|
*/
|
|
512
527
|
readonly expand?: string;
|
|
513
528
|
/**
|
|
514
529
|
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
|
|
515
530
|
* @type {string}
|
|
516
|
-
* @memberof
|
|
531
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole
|
|
517
532
|
*/
|
|
518
533
|
readonly filters?: string;
|
|
519
534
|
}
|
|
@@ -573,27 +588,27 @@ export interface ClaimPartnerRolesApiListClaimPartnerRole1Request {
|
|
|
573
588
|
readonly filters?: string;
|
|
574
589
|
}
|
|
575
590
|
/**
|
|
576
|
-
* Request parameters for
|
|
591
|
+
* Request parameters for updateClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
577
592
|
* @export
|
|
578
|
-
* @interface
|
|
593
|
+
* @interface ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest
|
|
579
594
|
*/
|
|
580
|
-
export interface
|
|
595
|
+
export interface ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest {
|
|
581
596
|
/**
|
|
582
597
|
* Unique identifier for the object.
|
|
583
598
|
* @type {string}
|
|
584
|
-
* @memberof
|
|
599
|
+
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole
|
|
585
600
|
*/
|
|
586
601
|
readonly code: string;
|
|
587
602
|
/**
|
|
588
603
|
*
|
|
589
604
|
* @type {UpdateClaimPartnerRoleRequestDto}
|
|
590
|
-
* @memberof
|
|
605
|
+
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole
|
|
591
606
|
*/
|
|
592
607
|
readonly updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto;
|
|
593
608
|
/**
|
|
594
609
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
595
610
|
* @type {string}
|
|
596
|
-
* @memberof
|
|
611
|
+
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole
|
|
597
612
|
*/
|
|
598
613
|
readonly authorization?: string;
|
|
599
614
|
}
|
|
@@ -632,17 +647,18 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
632
647
|
/**
|
|
633
648
|
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
634
649
|
* @summary Create the claim partner role
|
|
635
|
-
* @param {
|
|
650
|
+
* @param {ClaimPartnerRolesApiCreateClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
636
651
|
* @param {*} [options] Override http request option.
|
|
637
652
|
* @throws {RequiredError}
|
|
638
653
|
* @memberof ClaimPartnerRolesApi
|
|
639
654
|
*/
|
|
640
|
-
|
|
655
|
+
createClaimPartnerRole(requestParameters: ClaimPartnerRolesApiCreateClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerRoleResponseClass, any, {}>>;
|
|
641
656
|
/**
|
|
642
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
657
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
643
658
|
* @summary Create the claim partner role
|
|
644
659
|
* @param {ClaimPartnerRolesApiCreateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
645
660
|
* @param {*} [options] Override http request option.
|
|
661
|
+
* @deprecated
|
|
646
662
|
* @throws {RequiredError}
|
|
647
663
|
* @memberof ClaimPartnerRolesApi
|
|
648
664
|
*/
|
|
@@ -650,17 +666,18 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
650
666
|
/**
|
|
651
667
|
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
652
668
|
* @summary Delete the claim partner role
|
|
653
|
-
* @param {
|
|
669
|
+
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
654
670
|
* @param {*} [options] Override http request option.
|
|
655
671
|
* @throws {RequiredError}
|
|
656
672
|
* @memberof ClaimPartnerRolesApi
|
|
657
673
|
*/
|
|
658
|
-
|
|
674
|
+
deleteClaimPartnerRole(requestParameters: ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
659
675
|
/**
|
|
660
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
676
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
661
677
|
* @summary Delete the claim partner role
|
|
662
678
|
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRole1Request} requestParameters Request parameters.
|
|
663
679
|
* @param {*} [options] Override http request option.
|
|
680
|
+
* @deprecated
|
|
664
681
|
* @throws {RequiredError}
|
|
665
682
|
* @memberof ClaimPartnerRolesApi
|
|
666
683
|
*/
|
|
@@ -668,17 +685,18 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
668
685
|
/**
|
|
669
686
|
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
670
687
|
* @summary Retrieve the claim partner role
|
|
671
|
-
* @param {
|
|
688
|
+
* @param {ClaimPartnerRolesApiGetClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
672
689
|
* @param {*} [options] Override http request option.
|
|
673
690
|
* @throws {RequiredError}
|
|
674
691
|
* @memberof ClaimPartnerRolesApi
|
|
675
692
|
*/
|
|
676
|
-
|
|
693
|
+
getClaimPartnerRole(requestParameters: ClaimPartnerRolesApiGetClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerRoleResponseClass, any, {}>>;
|
|
677
694
|
/**
|
|
678
|
-
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
695
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
679
696
|
* @summary Retrieve the claim partner role
|
|
680
697
|
* @param {ClaimPartnerRolesApiGetClaimPartnerRole1Request} requestParameters Request parameters.
|
|
681
698
|
* @param {*} [options] Override http request option.
|
|
699
|
+
* @deprecated
|
|
682
700
|
* @throws {RequiredError}
|
|
683
701
|
* @memberof ClaimPartnerRolesApi
|
|
684
702
|
*/
|
|
@@ -686,17 +704,18 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
686
704
|
/**
|
|
687
705
|
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
688
706
|
* @summary List claim partner roles
|
|
689
|
-
* @param {
|
|
707
|
+
* @param {ClaimPartnerRolesApiListClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
690
708
|
* @param {*} [options] Override http request option.
|
|
691
709
|
* @throws {RequiredError}
|
|
692
710
|
* @memberof ClaimPartnerRolesApi
|
|
693
711
|
*/
|
|
694
|
-
|
|
712
|
+
listClaimPartnerRole(requestParameters?: ClaimPartnerRolesApiListClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnerRolesResponseClass, any, {}>>;
|
|
695
713
|
/**
|
|
696
|
-
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
714
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
697
715
|
* @summary List claim partner roles
|
|
698
716
|
* @param {ClaimPartnerRolesApiListClaimPartnerRole1Request} requestParameters Request parameters.
|
|
699
717
|
* @param {*} [options] Override http request option.
|
|
718
|
+
* @deprecated
|
|
700
719
|
* @throws {RequiredError}
|
|
701
720
|
* @memberof ClaimPartnerRolesApi
|
|
702
721
|
*/
|
|
@@ -704,17 +723,18 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
704
723
|
/**
|
|
705
724
|
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
706
725
|
* @summary Update the claim partner role
|
|
707
|
-
* @param {
|
|
726
|
+
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
708
727
|
* @param {*} [options] Override http request option.
|
|
709
728
|
* @throws {RequiredError}
|
|
710
729
|
* @memberof ClaimPartnerRolesApi
|
|
711
730
|
*/
|
|
712
|
-
|
|
731
|
+
updateClaimPartnerRole(requestParameters: ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimPartnerRoleResponseClass, any, {}>>;
|
|
713
732
|
/**
|
|
714
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
733
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
715
734
|
* @summary Update the claim partner role
|
|
716
735
|
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
717
736
|
* @param {*} [options] Override http request option.
|
|
737
|
+
* @deprecated
|
|
718
738
|
* @throws {RequiredError}
|
|
719
739
|
* @memberof ClaimPartnerRolesApi
|
|
720
740
|
*/
|