@emilgroup/claim-sdk-node 1.41.0 → 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
|
@@ -31,14 +31,13 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
31
31
|
* @param {*} [options] Override http request option.
|
|
32
32
|
* @throws {RequiredError}
|
|
33
33
|
*/
|
|
34
|
-
|
|
34
|
+
createClaimPartnerRole0: (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\"
|
|
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
|
|
42
41
|
* @throws {RequiredError}
|
|
43
42
|
*/
|
|
44
43
|
createClaimPartnerRole1: (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50,14 +49,13 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
50
49
|
* @param {*} [options] Override http request option.
|
|
51
50
|
* @throws {RequiredError}
|
|
52
51
|
*/
|
|
53
|
-
|
|
52
|
+
deleteClaimPartnerRole0: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54
53
|
/**
|
|
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\"
|
|
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\"
|
|
56
55
|
* @summary Delete the claim partner role
|
|
57
56
|
* @param {string} code Unique identifier for the object.
|
|
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
|
deleteClaimPartnerRole1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -69,14 +67,13 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
69
67
|
* @param {*} [options] Override http request option.
|
|
70
68
|
* @throws {RequiredError}
|
|
71
69
|
*/
|
|
72
|
-
|
|
70
|
+
getClaimPartnerRole0: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
73
71
|
/**
|
|
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\"
|
|
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\"
|
|
75
73
|
* @summary Retrieve the claim partner role
|
|
76
74
|
* @param {string} code Unique identifier for the object.
|
|
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
|
getClaimPartnerRole1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -94,9 +91,9 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
94
91
|
* @param {*} [options] Override http request option.
|
|
95
92
|
* @throws {RequiredError}
|
|
96
93
|
*/
|
|
97
|
-
|
|
94
|
+
listClaimPartnerRole0: (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 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\"
|
|
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\"
|
|
100
97
|
* @summary List claim partner roles
|
|
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 ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
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/>
|
|
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: name, productSlug</i>
|
|
109
106
|
* @param {*} [options] Override http request option.
|
|
110
|
-
* @deprecated
|
|
111
107
|
* @throws {RequiredError}
|
|
112
108
|
*/
|
|
113
109
|
listClaimPartnerRole1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -120,15 +116,14 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
120
116
|
* @param {*} [options] Override http request option.
|
|
121
117
|
* @throws {RequiredError}
|
|
122
118
|
*/
|
|
123
|
-
|
|
119
|
+
updateClaimPartnerRole0: (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
124
120
|
/**
|
|
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\"
|
|
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\"
|
|
126
122
|
* @summary Update the claim partner role
|
|
127
123
|
* @param {string} code Unique identifier for the object.
|
|
128
124
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
129
125
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
130
126
|
* @param {*} [options] Override http request option.
|
|
131
|
-
* @deprecated
|
|
132
127
|
* @throws {RequiredError}
|
|
133
128
|
*/
|
|
134
129
|
updateClaimPartnerRole1: (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -146,14 +141,13 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
146
141
|
* @param {*} [options] Override http request option.
|
|
147
142
|
* @throws {RequiredError}
|
|
148
143
|
*/
|
|
149
|
-
|
|
144
|
+
createClaimPartnerRole0(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>>;
|
|
150
145
|
/**
|
|
151
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
146
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
152
147
|
* @summary Create the claim partner role
|
|
153
148
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
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
|
createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>>;
|
|
@@ -165,14 +159,13 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
165
159
|
* @param {*} [options] Override http request option.
|
|
166
160
|
* @throws {RequiredError}
|
|
167
161
|
*/
|
|
168
|
-
|
|
162
|
+
deleteClaimPartnerRole0(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
169
163
|
/**
|
|
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\"
|
|
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\"
|
|
171
165
|
* @summary Delete the claim partner role
|
|
172
166
|
* @param {string} code Unique identifier for the object.
|
|
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
|
deleteClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -184,14 +177,13 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
184
177
|
* @param {*} [options] Override http request option.
|
|
185
178
|
* @throws {RequiredError}
|
|
186
179
|
*/
|
|
187
|
-
|
|
180
|
+
getClaimPartnerRole0(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>>;
|
|
188
181
|
/**
|
|
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\"
|
|
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\"
|
|
190
183
|
* @summary Retrieve the claim partner role
|
|
191
184
|
* @param {string} code Unique identifier for the object.
|
|
192
185
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
193
186
|
* @param {*} [options] Override http request option.
|
|
194
|
-
* @deprecated
|
|
195
187
|
* @throws {RequiredError}
|
|
196
188
|
*/
|
|
197
189
|
getClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>>;
|
|
@@ -209,9 +201,9 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
209
201
|
* @param {*} [options] Override http request option.
|
|
210
202
|
* @throws {RequiredError}
|
|
211
203
|
*/
|
|
212
|
-
|
|
204
|
+
listClaimPartnerRole0(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>>;
|
|
213
205
|
/**
|
|
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\"
|
|
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\"
|
|
215
207
|
* @summary List claim partner roles
|
|
216
208
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
217
209
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -222,7 +214,6 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
222
214
|
* @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/>
|
|
223
215
|
* @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>
|
|
224
216
|
* @param {*} [options] Override http request option.
|
|
225
|
-
* @deprecated
|
|
226
217
|
* @throws {RequiredError}
|
|
227
218
|
*/
|
|
228
219
|
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>>;
|
|
@@ -235,15 +226,14 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
235
226
|
* @param {*} [options] Override http request option.
|
|
236
227
|
* @throws {RequiredError}
|
|
237
228
|
*/
|
|
238
|
-
|
|
229
|
+
updateClaimPartnerRole0(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>>;
|
|
239
230
|
/**
|
|
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\"
|
|
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\"
|
|
241
232
|
* @summary Update the claim partner role
|
|
242
233
|
* @param {string} code Unique identifier for the object.
|
|
243
234
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
244
235
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
245
236
|
* @param {*} [options] Override http request option.
|
|
246
|
-
* @deprecated
|
|
247
237
|
* @throws {RequiredError}
|
|
248
238
|
*/
|
|
249
239
|
updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>>;
|
|
@@ -261,14 +251,13 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
261
251
|
* @param {*} [options] Override http request option.
|
|
262
252
|
* @throws {RequiredError}
|
|
263
253
|
*/
|
|
264
|
-
|
|
254
|
+
createClaimPartnerRole0(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass>;
|
|
265
255
|
/**
|
|
266
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
256
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
267
257
|
* @summary Create the claim partner role
|
|
268
258
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
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
|
createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass>;
|
|
@@ -280,14 +269,13 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
280
269
|
* @param {*} [options] Override http request option.
|
|
281
270
|
* @throws {RequiredError}
|
|
282
271
|
*/
|
|
283
|
-
|
|
272
|
+
deleteClaimPartnerRole0(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
284
273
|
/**
|
|
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\"
|
|
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\"
|
|
286
275
|
* @summary Delete the claim partner role
|
|
287
276
|
* @param {string} code Unique identifier for the object.
|
|
288
277
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
289
278
|
* @param {*} [options] Override http request option.
|
|
290
|
-
* @deprecated
|
|
291
279
|
* @throws {RequiredError}
|
|
292
280
|
*/
|
|
293
281
|
deleteClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
@@ -299,14 +287,13 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
299
287
|
* @param {*} [options] Override http request option.
|
|
300
288
|
* @throws {RequiredError}
|
|
301
289
|
*/
|
|
302
|
-
|
|
290
|
+
getClaimPartnerRole0(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass>;
|
|
303
291
|
/**
|
|
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\"
|
|
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\"
|
|
305
293
|
* @summary Retrieve the claim partner role
|
|
306
294
|
* @param {string} code Unique identifier for the object.
|
|
307
295
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
308
296
|
* @param {*} [options] Override http request option.
|
|
309
|
-
* @deprecated
|
|
310
297
|
* @throws {RequiredError}
|
|
311
298
|
*/
|
|
312
299
|
getClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass>;
|
|
@@ -324,9 +311,9 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
324
311
|
* @param {*} [options] Override http request option.
|
|
325
312
|
* @throws {RequiredError}
|
|
326
313
|
*/
|
|
327
|
-
|
|
314
|
+
listClaimPartnerRole0(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass>;
|
|
328
315
|
/**
|
|
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\"
|
|
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\"
|
|
330
317
|
* @summary List claim partner roles
|
|
331
318
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
332
319
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -337,7 +324,6 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
337
324
|
* @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/>
|
|
338
325
|
* @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>
|
|
339
326
|
* @param {*} [options] Override http request option.
|
|
340
|
-
* @deprecated
|
|
341
327
|
* @throws {RequiredError}
|
|
342
328
|
*/
|
|
343
329
|
listClaimPartnerRole1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass>;
|
|
@@ -350,35 +336,34 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
350
336
|
* @param {*} [options] Override http request option.
|
|
351
337
|
* @throws {RequiredError}
|
|
352
338
|
*/
|
|
353
|
-
|
|
339
|
+
updateClaimPartnerRole0(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass>;
|
|
354
340
|
/**
|
|
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\"
|
|
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\"
|
|
356
342
|
* @summary Update the claim partner role
|
|
357
343
|
* @param {string} code Unique identifier for the object.
|
|
358
344
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
359
345
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
360
346
|
* @param {*} [options] Override http request option.
|
|
361
|
-
* @deprecated
|
|
362
347
|
* @throws {RequiredError}
|
|
363
348
|
*/
|
|
364
349
|
updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass>;
|
|
365
350
|
};
|
|
366
351
|
/**
|
|
367
|
-
* Request parameters for
|
|
352
|
+
* Request parameters for createClaimPartnerRole0 operation in ClaimPartnerRolesApi.
|
|
368
353
|
* @export
|
|
369
|
-
* @interface
|
|
354
|
+
* @interface ClaimPartnerRolesApiCreateClaimPartnerRole0Request
|
|
370
355
|
*/
|
|
371
|
-
export interface
|
|
356
|
+
export interface ClaimPartnerRolesApiCreateClaimPartnerRole0Request {
|
|
372
357
|
/**
|
|
373
358
|
*
|
|
374
359
|
* @type {CreateClaimPartnerRoleRequestDto}
|
|
375
|
-
* @memberof
|
|
360
|
+
* @memberof ClaimPartnerRolesApiCreateClaimPartnerRole0
|
|
376
361
|
*/
|
|
377
362
|
readonly createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto;
|
|
378
363
|
/**
|
|
379
364
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
380
365
|
* @type {string}
|
|
381
|
-
* @memberof
|
|
366
|
+
* @memberof ClaimPartnerRolesApiCreateClaimPartnerRole0
|
|
382
367
|
*/
|
|
383
368
|
readonly authorization?: string;
|
|
384
369
|
}
|
|
@@ -402,21 +387,21 @@ export interface ClaimPartnerRolesApiCreateClaimPartnerRole1Request {
|
|
|
402
387
|
readonly authorization?: string;
|
|
403
388
|
}
|
|
404
389
|
/**
|
|
405
|
-
* Request parameters for
|
|
390
|
+
* Request parameters for deleteClaimPartnerRole0 operation in ClaimPartnerRolesApi.
|
|
406
391
|
* @export
|
|
407
|
-
* @interface
|
|
392
|
+
* @interface ClaimPartnerRolesApiDeleteClaimPartnerRole0Request
|
|
408
393
|
*/
|
|
409
|
-
export interface
|
|
394
|
+
export interface ClaimPartnerRolesApiDeleteClaimPartnerRole0Request {
|
|
410
395
|
/**
|
|
411
396
|
* Unique identifier for the object.
|
|
412
397
|
* @type {string}
|
|
413
|
-
* @memberof
|
|
398
|
+
* @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole0
|
|
414
399
|
*/
|
|
415
400
|
readonly code: string;
|
|
416
401
|
/**
|
|
417
402
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
418
403
|
* @type {string}
|
|
419
|
-
* @memberof
|
|
404
|
+
* @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole0
|
|
420
405
|
*/
|
|
421
406
|
readonly authorization?: string;
|
|
422
407
|
}
|
|
@@ -440,21 +425,21 @@ export interface ClaimPartnerRolesApiDeleteClaimPartnerRole1Request {
|
|
|
440
425
|
readonly authorization?: string;
|
|
441
426
|
}
|
|
442
427
|
/**
|
|
443
|
-
* Request parameters for
|
|
428
|
+
* Request parameters for getClaimPartnerRole0 operation in ClaimPartnerRolesApi.
|
|
444
429
|
* @export
|
|
445
|
-
* @interface
|
|
430
|
+
* @interface ClaimPartnerRolesApiGetClaimPartnerRole0Request
|
|
446
431
|
*/
|
|
447
|
-
export interface
|
|
432
|
+
export interface ClaimPartnerRolesApiGetClaimPartnerRole0Request {
|
|
448
433
|
/**
|
|
449
434
|
* Unique identifier for the object.
|
|
450
435
|
* @type {string}
|
|
451
|
-
* @memberof
|
|
436
|
+
* @memberof ClaimPartnerRolesApiGetClaimPartnerRole0
|
|
452
437
|
*/
|
|
453
438
|
readonly code: string;
|
|
454
439
|
/**
|
|
455
440
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
456
441
|
* @type {string}
|
|
457
|
-
* @memberof
|
|
442
|
+
* @memberof ClaimPartnerRolesApiGetClaimPartnerRole0
|
|
458
443
|
*/
|
|
459
444
|
readonly authorization?: string;
|
|
460
445
|
}
|
|
@@ -478,57 +463,57 @@ export interface ClaimPartnerRolesApiGetClaimPartnerRole1Request {
|
|
|
478
463
|
readonly authorization?: string;
|
|
479
464
|
}
|
|
480
465
|
/**
|
|
481
|
-
* Request parameters for
|
|
466
|
+
* Request parameters for listClaimPartnerRole0 operation in ClaimPartnerRolesApi.
|
|
482
467
|
* @export
|
|
483
|
-
* @interface
|
|
468
|
+
* @interface ClaimPartnerRolesApiListClaimPartnerRole0Request
|
|
484
469
|
*/
|
|
485
|
-
export interface
|
|
470
|
+
export interface ClaimPartnerRolesApiListClaimPartnerRole0Request {
|
|
486
471
|
/**
|
|
487
472
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
488
473
|
* @type {string}
|
|
489
|
-
* @memberof
|
|
474
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole0
|
|
490
475
|
*/
|
|
491
476
|
readonly authorization?: string;
|
|
492
477
|
/**
|
|
493
478
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
494
479
|
* @type {number}
|
|
495
|
-
* @memberof
|
|
480
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole0
|
|
496
481
|
*/
|
|
497
482
|
readonly pageSize?: number;
|
|
498
483
|
/**
|
|
499
484
|
* 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.
|
|
500
485
|
* @type {string}
|
|
501
|
-
* @memberof
|
|
486
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole0
|
|
502
487
|
*/
|
|
503
488
|
readonly pageToken?: string;
|
|
504
489
|
/**
|
|
505
490
|
* 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>
|
|
506
491
|
* @type {string}
|
|
507
|
-
* @memberof
|
|
492
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole0
|
|
508
493
|
*/
|
|
509
494
|
readonly filter?: string;
|
|
510
495
|
/**
|
|
511
496
|
* 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>
|
|
512
497
|
* @type {string}
|
|
513
|
-
* @memberof
|
|
498
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole0
|
|
514
499
|
*/
|
|
515
500
|
readonly search?: string;
|
|
516
501
|
/**
|
|
517
502
|
* 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>
|
|
518
503
|
* @type {string}
|
|
519
|
-
* @memberof
|
|
504
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole0
|
|
520
505
|
*/
|
|
521
506
|
readonly order?: string;
|
|
522
507
|
/**
|
|
523
508
|
* 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/>
|
|
524
509
|
* @type {string}
|
|
525
|
-
* @memberof
|
|
510
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole0
|
|
526
511
|
*/
|
|
527
512
|
readonly expand?: string;
|
|
528
513
|
/**
|
|
529
514
|
* 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>
|
|
530
515
|
* @type {string}
|
|
531
|
-
* @memberof
|
|
516
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole0
|
|
532
517
|
*/
|
|
533
518
|
readonly filters?: string;
|
|
534
519
|
}
|
|
@@ -588,27 +573,27 @@ export interface ClaimPartnerRolesApiListClaimPartnerRole1Request {
|
|
|
588
573
|
readonly filters?: string;
|
|
589
574
|
}
|
|
590
575
|
/**
|
|
591
|
-
* Request parameters for
|
|
576
|
+
* Request parameters for updateClaimPartnerRole0 operation in ClaimPartnerRolesApi.
|
|
592
577
|
* @export
|
|
593
|
-
* @interface
|
|
578
|
+
* @interface ClaimPartnerRolesApiUpdateClaimPartnerRole0Request
|
|
594
579
|
*/
|
|
595
|
-
export interface
|
|
580
|
+
export interface ClaimPartnerRolesApiUpdateClaimPartnerRole0Request {
|
|
596
581
|
/**
|
|
597
582
|
* Unique identifier for the object.
|
|
598
583
|
* @type {string}
|
|
599
|
-
* @memberof
|
|
584
|
+
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole0
|
|
600
585
|
*/
|
|
601
586
|
readonly code: string;
|
|
602
587
|
/**
|
|
603
588
|
*
|
|
604
589
|
* @type {UpdateClaimPartnerRoleRequestDto}
|
|
605
|
-
* @memberof
|
|
590
|
+
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole0
|
|
606
591
|
*/
|
|
607
592
|
readonly updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto;
|
|
608
593
|
/**
|
|
609
594
|
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
610
595
|
* @type {string}
|
|
611
|
-
* @memberof
|
|
596
|
+
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole0
|
|
612
597
|
*/
|
|
613
598
|
readonly authorization?: string;
|
|
614
599
|
}
|
|
@@ -647,18 +632,17 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
647
632
|
/**
|
|
648
633
|
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
649
634
|
* @summary Create the claim partner role
|
|
650
|
-
* @param {
|
|
635
|
+
* @param {ClaimPartnerRolesApiCreateClaimPartnerRole0Request} requestParameters Request parameters.
|
|
651
636
|
* @param {*} [options] Override http request option.
|
|
652
637
|
* @throws {RequiredError}
|
|
653
638
|
* @memberof ClaimPartnerRolesApi
|
|
654
639
|
*/
|
|
655
|
-
|
|
640
|
+
createClaimPartnerRole0(requestParameters: ClaimPartnerRolesApiCreateClaimPartnerRole0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerRoleResponseClass, any, {}>>;
|
|
656
641
|
/**
|
|
657
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
642
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
658
643
|
* @summary Create the claim partner role
|
|
659
644
|
* @param {ClaimPartnerRolesApiCreateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
660
645
|
* @param {*} [options] Override http request option.
|
|
661
|
-
* @deprecated
|
|
662
646
|
* @throws {RequiredError}
|
|
663
647
|
* @memberof ClaimPartnerRolesApi
|
|
664
648
|
*/
|
|
@@ -666,18 +650,17 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
666
650
|
/**
|
|
667
651
|
* 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\"
|
|
668
652
|
* @summary Delete the claim partner role
|
|
669
|
-
* @param {
|
|
653
|
+
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRole0Request} requestParameters Request parameters.
|
|
670
654
|
* @param {*} [options] Override http request option.
|
|
671
655
|
* @throws {RequiredError}
|
|
672
656
|
* @memberof ClaimPartnerRolesApi
|
|
673
657
|
*/
|
|
674
|
-
|
|
658
|
+
deleteClaimPartnerRole0(requestParameters: ClaimPartnerRolesApiDeleteClaimPartnerRole0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
675
659
|
/**
|
|
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\"
|
|
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\"
|
|
677
661
|
* @summary Delete the claim partner role
|
|
678
662
|
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRole1Request} requestParameters Request parameters.
|
|
679
663
|
* @param {*} [options] Override http request option.
|
|
680
|
-
* @deprecated
|
|
681
664
|
* @throws {RequiredError}
|
|
682
665
|
* @memberof ClaimPartnerRolesApi
|
|
683
666
|
*/
|
|
@@ -685,18 +668,17 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
685
668
|
/**
|
|
686
669
|
* 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\"
|
|
687
670
|
* @summary Retrieve the claim partner role
|
|
688
|
-
* @param {
|
|
671
|
+
* @param {ClaimPartnerRolesApiGetClaimPartnerRole0Request} requestParameters Request parameters.
|
|
689
672
|
* @param {*} [options] Override http request option.
|
|
690
673
|
* @throws {RequiredError}
|
|
691
674
|
* @memberof ClaimPartnerRolesApi
|
|
692
675
|
*/
|
|
693
|
-
|
|
676
|
+
getClaimPartnerRole0(requestParameters: ClaimPartnerRolesApiGetClaimPartnerRole0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerRoleResponseClass, any, {}>>;
|
|
694
677
|
/**
|
|
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\"
|
|
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\"
|
|
696
679
|
* @summary Retrieve the claim partner role
|
|
697
680
|
* @param {ClaimPartnerRolesApiGetClaimPartnerRole1Request} requestParameters Request parameters.
|
|
698
681
|
* @param {*} [options] Override http request option.
|
|
699
|
-
* @deprecated
|
|
700
682
|
* @throws {RequiredError}
|
|
701
683
|
* @memberof ClaimPartnerRolesApi
|
|
702
684
|
*/
|
|
@@ -704,18 +686,17 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
704
686
|
/**
|
|
705
687
|
* 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\"
|
|
706
688
|
* @summary List claim partner roles
|
|
707
|
-
* @param {
|
|
689
|
+
* @param {ClaimPartnerRolesApiListClaimPartnerRole0Request} requestParameters Request parameters.
|
|
708
690
|
* @param {*} [options] Override http request option.
|
|
709
691
|
* @throws {RequiredError}
|
|
710
692
|
* @memberof ClaimPartnerRolesApi
|
|
711
693
|
*/
|
|
712
|
-
|
|
694
|
+
listClaimPartnerRole0(requestParameters?: ClaimPartnerRolesApiListClaimPartnerRole0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnerRolesResponseClass, any, {}>>;
|
|
713
695
|
/**
|
|
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\"
|
|
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\"
|
|
715
697
|
* @summary List claim partner roles
|
|
716
698
|
* @param {ClaimPartnerRolesApiListClaimPartnerRole1Request} requestParameters Request parameters.
|
|
717
699
|
* @param {*} [options] Override http request option.
|
|
718
|
-
* @deprecated
|
|
719
700
|
* @throws {RequiredError}
|
|
720
701
|
* @memberof ClaimPartnerRolesApi
|
|
721
702
|
*/
|
|
@@ -723,18 +704,17 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
723
704
|
/**
|
|
724
705
|
* 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\"
|
|
725
706
|
* @summary Update the claim partner role
|
|
726
|
-
* @param {
|
|
707
|
+
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRole0Request} requestParameters Request parameters.
|
|
727
708
|
* @param {*} [options] Override http request option.
|
|
728
709
|
* @throws {RequiredError}
|
|
729
710
|
* @memberof ClaimPartnerRolesApi
|
|
730
711
|
*/
|
|
731
|
-
|
|
712
|
+
updateClaimPartnerRole0(requestParameters: ClaimPartnerRolesApiUpdateClaimPartnerRole0Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimPartnerRoleResponseClass, any, {}>>;
|
|
732
713
|
/**
|
|
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\"
|
|
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\"
|
|
734
715
|
* @summary Update the claim partner role
|
|
735
716
|
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
736
717
|
* @param {*} [options] Override http request option.
|
|
737
|
-
* @deprecated
|
|
738
718
|
* @throws {RequiredError}
|
|
739
719
|
* @memberof ClaimPartnerRolesApi
|
|
740
720
|
*/
|