@emilgroup/claim-sdk-node 1.32.0 → 1.32.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-partner-roles-api.ts +20 -20
- package/api/claim-partners-api.ts +16 -16
- package/api/claim-regulations-api.ts +20 -20
- package/api/claim-statuses-api.ts +16 -16
- package/api/claims-api.ts +28 -28
- package/api/settlements-api.ts +20 -20
- package/dist/api/claim-partner-roles-api.d.ts +20 -20
- package/dist/api/claim-partner-roles-api.js +20 -20
- package/dist/api/claim-partners-api.d.ts +16 -16
- package/dist/api/claim-partners-api.js +16 -16
- package/dist/api/claim-regulations-api.d.ts +20 -20
- package/dist/api/claim-regulations-api.js +20 -20
- package/dist/api/claim-statuses-api.d.ts +16 -16
- package/dist/api/claim-statuses-api.js +16 -16
- package/dist/api/claims-api.d.ts +28 -28
- package/dist/api/claims-api.js +28 -28
- package/dist/api/settlements-api.d.ts +20 -20
- package/dist/api/settlements-api.js +20 -20
- package/package.json +1 -1
|
@@ -24,7 +24,7 @@ import { UpdateClaimPartnerRoleResponseClass } from '../models';
|
|
|
24
24
|
*/
|
|
25
25
|
export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26
26
|
/**
|
|
27
|
-
* This will create a claim partner role.
|
|
27
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
28
28
|
* @summary Create the claim partner role
|
|
29
29
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
30
30
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -33,7 +33,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
33
33
|
*/
|
|
34
34
|
createClaimPartnerRole: (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
35
|
/**
|
|
36
|
-
* 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.
|
|
36
|
+
* 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\"
|
|
37
37
|
* @summary Delete the claim partner role
|
|
38
38
|
* @param {string} code Unique identifier for the object.
|
|
39
39
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -42,7 +42,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
42
42
|
*/
|
|
43
43
|
deleteClaimPartnerRole: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
44
|
/**
|
|
45
|
-
* 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.
|
|
45
|
+
* 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\"
|
|
46
46
|
* @summary Retrieve the claim partner role
|
|
47
47
|
* @param {string} code Unique identifier for the object.
|
|
48
48
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -51,7 +51,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
51
51
|
*/
|
|
52
52
|
getClaimPartnerRole: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
53
|
/**
|
|
54
|
-
* 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.
|
|
54
|
+
* 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\"
|
|
55
55
|
* @summary List claim partner roles
|
|
56
56
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
57
57
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -66,7 +66,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
66
66
|
*/
|
|
67
67
|
listClaimPartnerRole: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
68
68
|
/**
|
|
69
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
69
|
+
* 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\"
|
|
70
70
|
* @summary Update the claim partner role
|
|
71
71
|
* @param {string} code Unique identifier for the object.
|
|
72
72
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -82,7 +82,7 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
82
82
|
*/
|
|
83
83
|
export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) => {
|
|
84
84
|
/**
|
|
85
|
-
* This will create a claim partner role.
|
|
85
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
86
86
|
* @summary Create the claim partner role
|
|
87
87
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
88
88
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -91,7 +91,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
91
91
|
*/
|
|
92
92
|
createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>>;
|
|
93
93
|
/**
|
|
94
|
-
* 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.
|
|
94
|
+
* 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\"
|
|
95
95
|
* @summary Delete the claim partner role
|
|
96
96
|
* @param {string} code Unique identifier for the object.
|
|
97
97
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -100,7 +100,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
100
100
|
*/
|
|
101
101
|
deleteClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
102
102
|
/**
|
|
103
|
-
* 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.
|
|
103
|
+
* 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\"
|
|
104
104
|
* @summary Retrieve the claim partner role
|
|
105
105
|
* @param {string} code Unique identifier for the object.
|
|
106
106
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -109,7 +109,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
109
109
|
*/
|
|
110
110
|
getClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>>;
|
|
111
111
|
/**
|
|
112
|
-
* 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.
|
|
112
|
+
* 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\"
|
|
113
113
|
* @summary List claim partner roles
|
|
114
114
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
115
115
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -124,7 +124,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
124
124
|
*/
|
|
125
125
|
listClaimPartnerRole(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>>;
|
|
126
126
|
/**
|
|
127
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
127
|
+
* 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\"
|
|
128
128
|
* @summary Update the claim partner role
|
|
129
129
|
* @param {string} code Unique identifier for the object.
|
|
130
130
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -140,7 +140,7 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
140
140
|
*/
|
|
141
141
|
export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
142
142
|
/**
|
|
143
|
-
* This will create a claim partner role.
|
|
143
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
144
144
|
* @summary Create the claim partner role
|
|
145
145
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
146
146
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -149,7 +149,7 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
149
149
|
*/
|
|
150
150
|
createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass>;
|
|
151
151
|
/**
|
|
152
|
-
* 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.
|
|
152
|
+
* 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\"
|
|
153
153
|
* @summary Delete the claim partner role
|
|
154
154
|
* @param {string} code Unique identifier for the object.
|
|
155
155
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -158,7 +158,7 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
158
158
|
*/
|
|
159
159
|
deleteClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
160
160
|
/**
|
|
161
|
-
* 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.
|
|
161
|
+
* 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\"
|
|
162
162
|
* @summary Retrieve the claim partner role
|
|
163
163
|
* @param {string} code Unique identifier for the object.
|
|
164
164
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -167,7 +167,7 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
167
167
|
*/
|
|
168
168
|
getClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass>;
|
|
169
169
|
/**
|
|
170
|
-
* 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.
|
|
170
|
+
* 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\"
|
|
171
171
|
* @summary List claim partner roles
|
|
172
172
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
173
173
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -182,7 +182,7 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
182
182
|
*/
|
|
183
183
|
listClaimPartnerRole(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass>;
|
|
184
184
|
/**
|
|
185
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
185
|
+
* 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\"
|
|
186
186
|
* @summary Update the claim partner role
|
|
187
187
|
* @param {string} code Unique identifier for the object.
|
|
188
188
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -337,7 +337,7 @@ export interface ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest {
|
|
|
337
337
|
*/
|
|
338
338
|
export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
339
339
|
/**
|
|
340
|
-
* This will create a claim partner role.
|
|
340
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
341
341
|
* @summary Create the claim partner role
|
|
342
342
|
* @param {ClaimPartnerRolesApiCreateClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
343
343
|
* @param {*} [options] Override http request option.
|
|
@@ -346,7 +346,7 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
346
346
|
*/
|
|
347
347
|
createClaimPartnerRole(requestParameters: ClaimPartnerRolesApiCreateClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerRoleResponseClass, any>>;
|
|
348
348
|
/**
|
|
349
|
-
* 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.
|
|
349
|
+
* 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\"
|
|
350
350
|
* @summary Delete the claim partner role
|
|
351
351
|
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
352
352
|
* @param {*} [options] Override http request option.
|
|
@@ -355,7 +355,7 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
355
355
|
*/
|
|
356
356
|
deleteClaimPartnerRole(requestParameters: ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
357
357
|
/**
|
|
358
|
-
* 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.
|
|
358
|
+
* 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\"
|
|
359
359
|
* @summary Retrieve the claim partner role
|
|
360
360
|
* @param {ClaimPartnerRolesApiGetClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
361
361
|
* @param {*} [options] Override http request option.
|
|
@@ -364,7 +364,7 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
364
364
|
*/
|
|
365
365
|
getClaimPartnerRole(requestParameters: ClaimPartnerRolesApiGetClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerRoleResponseClass, any>>;
|
|
366
366
|
/**
|
|
367
|
-
* 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.
|
|
367
|
+
* 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\"
|
|
368
368
|
* @summary List claim partner roles
|
|
369
369
|
* @param {ClaimPartnerRolesApiListClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
370
370
|
* @param {*} [options] Override http request option.
|
|
@@ -373,7 +373,7 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
373
373
|
*/
|
|
374
374
|
listClaimPartnerRole(requestParameters?: ClaimPartnerRolesApiListClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnerRolesResponseClass, any>>;
|
|
375
375
|
/**
|
|
376
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
376
|
+
* 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\"
|
|
377
377
|
* @summary Update the claim partner role
|
|
378
378
|
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
379
379
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* This will create a claim partner role.
|
|
100
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
101
101
|
* @summary Create the claim partner role
|
|
102
102
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
103
103
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -146,7 +146,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
146
146
|
});
|
|
147
147
|
},
|
|
148
148
|
/**
|
|
149
|
-
* 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.
|
|
149
|
+
* 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\"
|
|
150
150
|
* @summary Delete the claim partner role
|
|
151
151
|
* @param {string} code Unique identifier for the object.
|
|
152
152
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -194,7 +194,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
194
194
|
});
|
|
195
195
|
},
|
|
196
196
|
/**
|
|
197
|
-
* 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.
|
|
197
|
+
* 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\"
|
|
198
198
|
* @summary Retrieve the claim partner role
|
|
199
199
|
* @param {string} code Unique identifier for the object.
|
|
200
200
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -242,7 +242,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
242
242
|
});
|
|
243
243
|
},
|
|
244
244
|
/**
|
|
245
|
-
* 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.
|
|
245
|
+
* 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\"
|
|
246
246
|
* @summary List claim partner roles
|
|
247
247
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
248
248
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -314,7 +314,7 @@ var ClaimPartnerRolesApiAxiosParamCreator = function (configuration) {
|
|
|
314
314
|
});
|
|
315
315
|
},
|
|
316
316
|
/**
|
|
317
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
317
|
+
* 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\"
|
|
318
318
|
* @summary Update the claim partner role
|
|
319
319
|
* @param {string} code Unique identifier for the object.
|
|
320
320
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -377,7 +377,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
377
377
|
var localVarAxiosParamCreator = (0, exports.ClaimPartnerRolesApiAxiosParamCreator)(configuration);
|
|
378
378
|
return {
|
|
379
379
|
/**
|
|
380
|
-
* This will create a claim partner role.
|
|
380
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
381
381
|
* @summary Create the claim partner role
|
|
382
382
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
383
383
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -398,7 +398,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
398
398
|
});
|
|
399
399
|
},
|
|
400
400
|
/**
|
|
401
|
-
* 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.
|
|
401
|
+
* 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\"
|
|
402
402
|
* @summary Delete the claim partner role
|
|
403
403
|
* @param {string} code Unique identifier for the object.
|
|
404
404
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -419,7 +419,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
419
419
|
});
|
|
420
420
|
},
|
|
421
421
|
/**
|
|
422
|
-
* 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.
|
|
422
|
+
* 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\"
|
|
423
423
|
* @summary Retrieve the claim partner role
|
|
424
424
|
* @param {string} code Unique identifier for the object.
|
|
425
425
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -440,7 +440,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
440
440
|
});
|
|
441
441
|
},
|
|
442
442
|
/**
|
|
443
|
-
* 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.
|
|
443
|
+
* 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\"
|
|
444
444
|
* @summary List claim partner roles
|
|
445
445
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
446
446
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -467,7 +467,7 @@ var ClaimPartnerRolesApiFp = function (configuration) {
|
|
|
467
467
|
});
|
|
468
468
|
},
|
|
469
469
|
/**
|
|
470
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
470
|
+
* 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\"
|
|
471
471
|
* @summary Update the claim partner role
|
|
472
472
|
* @param {string} code Unique identifier for the object.
|
|
473
473
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -499,7 +499,7 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
499
499
|
var localVarFp = (0, exports.ClaimPartnerRolesApiFp)(configuration);
|
|
500
500
|
return {
|
|
501
501
|
/**
|
|
502
|
-
* This will create a claim partner role.
|
|
502
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
503
503
|
* @summary Create the claim partner role
|
|
504
504
|
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
505
505
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -510,7 +510,7 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
510
510
|
return localVarFp.createClaimPartnerRole(createClaimPartnerRoleRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
511
511
|
},
|
|
512
512
|
/**
|
|
513
|
-
* 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.
|
|
513
|
+
* 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\"
|
|
514
514
|
* @summary Delete the claim partner role
|
|
515
515
|
* @param {string} code Unique identifier for the object.
|
|
516
516
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -521,7 +521,7 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
521
521
|
return localVarFp.deleteClaimPartnerRole(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
522
522
|
},
|
|
523
523
|
/**
|
|
524
|
-
* 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.
|
|
524
|
+
* 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\"
|
|
525
525
|
* @summary Retrieve the claim partner role
|
|
526
526
|
* @param {string} code Unique identifier for the object.
|
|
527
527
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -532,7 +532,7 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
532
532
|
return localVarFp.getClaimPartnerRole(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
533
533
|
},
|
|
534
534
|
/**
|
|
535
|
-
* 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.
|
|
535
|
+
* 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\"
|
|
536
536
|
* @summary List claim partner roles
|
|
537
537
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
538
538
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -549,7 +549,7 @@ var ClaimPartnerRolesApiFactory = function (configuration, basePath, axios) {
|
|
|
549
549
|
return localVarFp.listClaimPartnerRole(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
550
550
|
},
|
|
551
551
|
/**
|
|
552
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
552
|
+
* 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\"
|
|
553
553
|
* @summary Update the claim partner role
|
|
554
554
|
* @param {string} code Unique identifier for the object.
|
|
555
555
|
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
@@ -575,7 +575,7 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
575
575
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
576
576
|
}
|
|
577
577
|
/**
|
|
578
|
-
* This will create a claim partner role.
|
|
578
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
579
579
|
* @summary Create the claim partner role
|
|
580
580
|
* @param {ClaimPartnerRolesApiCreateClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
581
581
|
* @param {*} [options] Override http request option.
|
|
@@ -587,7 +587,7 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
587
587
|
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).createClaimPartnerRole(requestParameters.createClaimPartnerRoleRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
588
588
|
};
|
|
589
589
|
/**
|
|
590
|
-
* 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.
|
|
590
|
+
* 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\"
|
|
591
591
|
* @summary Delete the claim partner role
|
|
592
592
|
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
593
593
|
* @param {*} [options] Override http request option.
|
|
@@ -599,7 +599,7 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
599
599
|
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).deleteClaimPartnerRole(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
600
600
|
};
|
|
601
601
|
/**
|
|
602
|
-
* 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.
|
|
602
|
+
* 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\"
|
|
603
603
|
* @summary Retrieve the claim partner role
|
|
604
604
|
* @param {ClaimPartnerRolesApiGetClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
605
605
|
* @param {*} [options] Override http request option.
|
|
@@ -611,7 +611,7 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
611
611
|
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).getClaimPartnerRole(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
612
612
|
};
|
|
613
613
|
/**
|
|
614
|
-
* 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.
|
|
614
|
+
* 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\"
|
|
615
615
|
* @summary List claim partner roles
|
|
616
616
|
* @param {ClaimPartnerRolesApiListClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
617
617
|
* @param {*} [options] Override http request option.
|
|
@@ -624,7 +624,7 @@ var ClaimPartnerRolesApi = /** @class */ (function (_super) {
|
|
|
624
624
|
return (0, exports.ClaimPartnerRolesApiFp)(this.configuration).listClaimPartnerRole(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
625
625
|
};
|
|
626
626
|
/**
|
|
627
|
-
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
|
627
|
+
* 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\"
|
|
628
628
|
* @summary Update the claim partner role
|
|
629
629
|
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest} requestParameters Request parameters.
|
|
630
630
|
* @param {*} [options] Override http request option.
|
|
@@ -22,7 +22,7 @@ import { ListClaimPartnersResponseClass } from '../models';
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
24
|
/**
|
|
25
|
-
* This will create a claim partner.
|
|
25
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
26
26
|
* @summary Create the claim partner
|
|
27
27
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
28
28
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -32,7 +32,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
32
32
|
*/
|
|
33
33
|
createClaimPartner: (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34
34
|
/**
|
|
35
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
35
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
36
36
|
* @summary Delete the claim partner
|
|
37
37
|
* @param {number} id
|
|
38
38
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -41,7 +41,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
41
41
|
*/
|
|
42
42
|
deleteClaimPartner: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
43
|
/**
|
|
44
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
44
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
45
45
|
* @summary Retrieve the claim partner
|
|
46
46
|
* @param {number} id
|
|
47
47
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -50,7 +50,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
50
50
|
*/
|
|
51
51
|
getClaimPartner: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
52
|
/**
|
|
53
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
53
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
54
54
|
* @summary List claim partners
|
|
55
55
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
56
56
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -71,7 +71,7 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
71
71
|
*/
|
|
72
72
|
export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
73
73
|
/**
|
|
74
|
-
* This will create a claim partner.
|
|
74
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
75
75
|
* @summary Create the claim partner
|
|
76
76
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
77
77
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -81,7 +81,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
81
81
|
*/
|
|
82
82
|
createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>>;
|
|
83
83
|
/**
|
|
84
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
84
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
85
85
|
* @summary Delete the claim partner
|
|
86
86
|
* @param {number} id
|
|
87
87
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -90,7 +90,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
90
90
|
*/
|
|
91
91
|
deleteClaimPartner(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
92
92
|
/**
|
|
93
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
93
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
94
94
|
* @summary Retrieve the claim partner
|
|
95
95
|
* @param {number} id
|
|
96
96
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -99,7 +99,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
99
99
|
*/
|
|
100
100
|
getClaimPartner(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>>;
|
|
101
101
|
/**
|
|
102
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
102
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
103
103
|
* @summary List claim partners
|
|
104
104
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
105
105
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -120,7 +120,7 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
120
120
|
*/
|
|
121
121
|
export declare const ClaimPartnersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
122
122
|
/**
|
|
123
|
-
* This will create a claim partner.
|
|
123
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
124
124
|
* @summary Create the claim partner
|
|
125
125
|
* @param {string} claimCode Unique identifier for the claim object.
|
|
126
126
|
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
@@ -130,7 +130,7 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
130
130
|
*/
|
|
131
131
|
createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass>;
|
|
132
132
|
/**
|
|
133
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
133
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
134
134
|
* @summary Delete the claim partner
|
|
135
135
|
* @param {number} id
|
|
136
136
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -139,7 +139,7 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
139
139
|
*/
|
|
140
140
|
deleteClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<void>;
|
|
141
141
|
/**
|
|
142
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
142
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
143
143
|
* @summary Retrieve the claim partner
|
|
144
144
|
* @param {number} id
|
|
145
145
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -148,7 +148,7 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
148
148
|
*/
|
|
149
149
|
getClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass>;
|
|
150
150
|
/**
|
|
151
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
151
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
152
152
|
* @summary List claim partners
|
|
153
153
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
154
154
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -289,7 +289,7 @@ export interface ClaimPartnersApiListClaimPartnersRequest {
|
|
|
289
289
|
*/
|
|
290
290
|
export declare class ClaimPartnersApi extends BaseAPI {
|
|
291
291
|
/**
|
|
292
|
-
* This will create a claim partner.
|
|
292
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\"
|
|
293
293
|
* @summary Create the claim partner
|
|
294
294
|
* @param {ClaimPartnersApiCreateClaimPartnerRequest} requestParameters Request parameters.
|
|
295
295
|
* @param {*} [options] Override http request option.
|
|
@@ -298,7 +298,7 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
298
298
|
*/
|
|
299
299
|
createClaimPartner(requestParameters: ClaimPartnersApiCreateClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerResponseClass, any>>;
|
|
300
300
|
/**
|
|
301
|
-
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it.
|
|
301
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
302
302
|
* @summary Delete the claim partner
|
|
303
303
|
* @param {ClaimPartnersApiDeleteClaimPartnerRequest} requestParameters Request parameters.
|
|
304
304
|
* @param {*} [options] Override http request option.
|
|
@@ -307,7 +307,7 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
307
307
|
*/
|
|
308
308
|
deleteClaimPartner(requestParameters: ClaimPartnersApiDeleteClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
309
309
|
/**
|
|
310
|
-
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information.
|
|
310
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
311
311
|
* @summary Retrieve the claim partner
|
|
312
312
|
* @param {ClaimPartnersApiGetClaimPartnerRequest} requestParameters Request parameters.
|
|
313
313
|
* @param {*} [options] Override http request option.
|
|
@@ -316,7 +316,7 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
316
316
|
*/
|
|
317
317
|
getClaimPartner(requestParameters: ClaimPartnersApiGetClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerResponseClass, any>>;
|
|
318
318
|
/**
|
|
319
|
-
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
319
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
320
320
|
* @summary List claim partners
|
|
321
321
|
* @param {ClaimPartnersApiListClaimPartnersRequest} requestParameters Request parameters.
|
|
322
322
|
* @param {*} [options] Override http request option.
|