@emilgroup/claim-sdk 1.40.1-beta.7 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +0 -10
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +6 -613
- package/api/claim-partners-api.ts +0 -504
- package/api/claim-regulations-api.ts +3 -624
- package/api/claim-statuses-api.ts +5 -728
- package/api/claims-api.ts +4 -828
- package/api/health-check-api.ts +0 -62
- package/api/settlements-api.ts +6 -613
- package/api.ts +0 -2
- package/dist/api/claim-partner-roles-api.d.ts +0 -338
- package/dist/api/claim-partner-roles-api.js +0 -505
- package/dist/api/claim-partners-api.d.ts +0 -283
- package/dist/api/claim-partners-api.js +0 -412
- package/dist/api/claim-regulations-api.d.ts +0 -347
- package/dist/api/claim-regulations-api.js +0 -511
- package/dist/api/claim-statuses-api.d.ts +0 -402
- package/dist/api/claim-statuses-api.js +11 -615
- package/dist/api/claims-api.d.ts +0 -457
- package/dist/api/claims-api.js +30 -726
- package/dist/api/health-check-api.d.ts +0 -29
- package/dist/api/health-check-api.js +0 -69
- package/dist/api/settlements-api.d.ts +0 -338
- package/dist/api/settlements-api.js +0 -505
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/models/claim-class.d.ts +0 -6
- package/dist/models/index.d.ts +0 -9
- package/dist/models/index.js +0 -9
- package/dist/models/list-claim-partner-roles-response-class.d.ts +0 -12
- package/dist/models/list-claim-partners-response-class.d.ts +0 -12
- package/dist/models/list-claim-statuses-response-class.d.ts +1 -13
- package/dist/models/list-claims-response-class.d.ts +0 -12
- package/dist/models/list-regulations-response-class.d.ts +0 -12
- package/models/claim-class.ts +0 -6
- package/models/index.ts +0 -9
- package/models/list-claim-partner-roles-response-class.ts +0 -12
- package/models/list-claim-partners-response-class.ts +0 -12
- package/models/list-claim-statuses-response-class.ts +1 -13
- package/models/list-claims-response-class.ts +0 -12
- package/models/list-regulations-response-class.ts +0 -12
- package/package.json +1 -1
- package/api/claim-positions-api.ts +0 -1316
- package/dist/api/claim-positions-api.d.ts +0 -740
- package/dist/api/claim-positions-api.js +0 -1157
- package/dist/models/claim-position-class.d.ts +0 -121
- package/dist/models/claim-position-class.js +0 -15
- package/dist/models/coverage-class.d.ts +0 -72
- package/dist/models/coverage-class.js +0 -21
- package/dist/models/coverage-request-dto.d.ts +0 -41
- package/dist/models/coverage-request-dto.js +0 -20
- package/dist/models/create-claim-position-request-dto.d.ts +0 -73
- package/dist/models/create-claim-position-request-dto.js +0 -15
- package/dist/models/create-claim-position-response-class.d.ts +0 -25
- package/dist/models/create-claim-position-response-class.js +0 -15
- package/dist/models/get-claim-position-response-class.d.ts +0 -25
- package/dist/models/get-claim-position-response-class.js +0 -15
- package/dist/models/list-claim-positions-response-class.d.ts +0 -43
- package/dist/models/list-claim-positions-response-class.js +0 -15
- package/dist/models/update-claim-position-request-dto.d.ts +0 -73
- package/dist/models/update-claim-position-request-dto.js +0 -15
- package/dist/models/update-claim-position-response-class.d.ts +0 -25
- package/dist/models/update-claim-position-response-class.js +0 -15
- package/models/claim-position-class.ts +0 -127
- package/models/coverage-class.ts +0 -81
- package/models/coverage-request-dto.ts +0 -50
- package/models/create-claim-position-request-dto.ts +0 -79
- package/models/create-claim-position-response-class.ts +0 -31
- package/models/get-claim-position-response-class.ts +0 -31
- package/models/list-claim-positions-response-class.ts +0 -49
- package/models/update-claim-position-request-dto.ts +0 -79
- package/models/update-claim-position-response-class.ts +0 -31
package/api.ts
CHANGED
|
@@ -22,7 +22,6 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
22
22
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base';
|
|
23
23
|
import { ClaimPartnerRolesApi } from './api';
|
|
24
24
|
import { ClaimPartnersApi } from './api';
|
|
25
|
-
import { ClaimPositionsApi } from './api';
|
|
26
25
|
import { ClaimRegulationsApi } from './api';
|
|
27
26
|
import { ClaimStatusesApi } from './api';
|
|
28
27
|
import { ClaimsApi } from './api';
|
|
@@ -32,7 +31,6 @@ import { SettlementsApi } from './api';
|
|
|
32
31
|
|
|
33
32
|
export * from './api/claim-partner-roles-api';
|
|
34
33
|
export * from './api/claim-partners-api';
|
|
35
|
-
export * from './api/claim-positions-api';
|
|
36
34
|
export * from './api/claim-regulations-api';
|
|
37
35
|
export * from './api/claim-statuses-api';
|
|
38
36
|
export * from './api/claims-api';
|
|
@@ -32,15 +32,6 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
32
32
|
* @throws {RequiredError}
|
|
33
33
|
*/
|
|
34
34
|
createClaimPartnerRole: (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
|
-
/**
|
|
36
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
37
|
-
* @summary Create the claim partner role
|
|
38
|
-
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
39
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
40
|
-
* @param {*} [options] Override http request option.
|
|
41
|
-
* @throws {RequiredError}
|
|
42
|
-
*/
|
|
43
|
-
createClaimPartnerRole1: (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
35
|
/**
|
|
45
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\"
|
|
46
37
|
* @summary Delete the claim partner role
|
|
@@ -50,15 +41,6 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
50
41
|
* @throws {RequiredError}
|
|
51
42
|
*/
|
|
52
43
|
deleteClaimPartnerRole: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
|
-
/**
|
|
54
|
-
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
55
|
-
* @summary Delete the claim partner role
|
|
56
|
-
* @param {string} code Unique identifier for the object.
|
|
57
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
58
|
-
* @param {*} [options] Override http request option.
|
|
59
|
-
* @throws {RequiredError}
|
|
60
|
-
*/
|
|
61
|
-
deleteClaimPartnerRole1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
62
44
|
/**
|
|
63
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\"
|
|
64
46
|
* @summary Retrieve the claim partner role
|
|
@@ -68,15 +50,6 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
68
50
|
* @throws {RequiredError}
|
|
69
51
|
*/
|
|
70
52
|
getClaimPartnerRole: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
71
|
-
/**
|
|
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\"
|
|
73
|
-
* @summary Retrieve the claim partner role
|
|
74
|
-
* @param {string} code Unique identifier for the object.
|
|
75
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
76
|
-
* @param {*} [options] Override http request option.
|
|
77
|
-
* @throws {RequiredError}
|
|
78
|
-
*/
|
|
79
|
-
getClaimPartnerRole1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
80
53
|
/**
|
|
81
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\"
|
|
82
55
|
* @summary List claim partner roles
|
|
@@ -92,21 +65,6 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
92
65
|
* @throws {RequiredError}
|
|
93
66
|
*/
|
|
94
67
|
listClaimPartnerRole: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
95
|
-
/**
|
|
96
|
-
* Returns a list of claim 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\"
|
|
97
|
-
* @summary List claim partner roles
|
|
98
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
99
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
100
|
-
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
101
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: name, productSlug</i>
|
|
102
|
-
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, productSlug</i>
|
|
103
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, name, productSlug, createdAt, updatedAt</i>
|
|
104
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
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>
|
|
106
|
-
* @param {*} [options] Override http request option.
|
|
107
|
-
* @throws {RequiredError}
|
|
108
|
-
*/
|
|
109
|
-
listClaimPartnerRole1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
110
68
|
/**
|
|
111
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\"
|
|
112
70
|
* @summary Update the claim partner role
|
|
@@ -117,16 +75,6 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
117
75
|
* @throws {RequiredError}
|
|
118
76
|
*/
|
|
119
77
|
updateClaimPartnerRole: (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
120
|
-
/**
|
|
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\"
|
|
122
|
-
* @summary Update the claim partner role
|
|
123
|
-
* @param {string} code Unique identifier for the object.
|
|
124
|
-
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
125
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
126
|
-
* @param {*} [options] Override http request option.
|
|
127
|
-
* @throws {RequiredError}
|
|
128
|
-
*/
|
|
129
|
-
updateClaimPartnerRole1: (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
130
78
|
};
|
|
131
79
|
/**
|
|
132
80
|
* ClaimPartnerRolesApi - functional programming interface
|
|
@@ -142,15 +90,6 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
142
90
|
* @throws {RequiredError}
|
|
143
91
|
*/
|
|
144
92
|
createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>>;
|
|
145
|
-
/**
|
|
146
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
147
|
-
* @summary Create the claim partner role
|
|
148
|
-
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
149
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
150
|
-
* @param {*} [options] Override http request option.
|
|
151
|
-
* @throws {RequiredError}
|
|
152
|
-
*/
|
|
153
|
-
createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>>;
|
|
154
93
|
/**
|
|
155
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\"
|
|
156
95
|
* @summary Delete the claim partner role
|
|
@@ -160,15 +99,6 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
160
99
|
* @throws {RequiredError}
|
|
161
100
|
*/
|
|
162
101
|
deleteClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
163
|
-
/**
|
|
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\"
|
|
165
|
-
* @summary Delete the claim partner role
|
|
166
|
-
* @param {string} code Unique identifier for the object.
|
|
167
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
168
|
-
* @param {*} [options] Override http request option.
|
|
169
|
-
* @throws {RequiredError}
|
|
170
|
-
*/
|
|
171
|
-
deleteClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
172
102
|
/**
|
|
173
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\"
|
|
174
104
|
* @summary Retrieve the claim partner role
|
|
@@ -178,15 +108,6 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
178
108
|
* @throws {RequiredError}
|
|
179
109
|
*/
|
|
180
110
|
getClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>>;
|
|
181
|
-
/**
|
|
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\"
|
|
183
|
-
* @summary Retrieve the claim partner role
|
|
184
|
-
* @param {string} code Unique identifier for the object.
|
|
185
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
186
|
-
* @param {*} [options] Override http request option.
|
|
187
|
-
* @throws {RequiredError}
|
|
188
|
-
*/
|
|
189
|
-
getClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>>;
|
|
190
111
|
/**
|
|
191
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\"
|
|
192
113
|
* @summary List claim partner roles
|
|
@@ -202,21 +123,6 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
202
123
|
* @throws {RequiredError}
|
|
203
124
|
*/
|
|
204
125
|
listClaimPartnerRole(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>>;
|
|
205
|
-
/**
|
|
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\"
|
|
207
|
-
* @summary List claim partner roles
|
|
208
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
209
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
210
|
-
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
211
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: name, productSlug</i>
|
|
212
|
-
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, productSlug</i>
|
|
213
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, name, productSlug, createdAt, updatedAt</i>
|
|
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/>
|
|
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>
|
|
216
|
-
* @param {*} [options] Override http request option.
|
|
217
|
-
* @throws {RequiredError}
|
|
218
|
-
*/
|
|
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>>;
|
|
220
126
|
/**
|
|
221
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\"
|
|
222
128
|
* @summary Update the claim partner role
|
|
@@ -227,16 +133,6 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
227
133
|
* @throws {RequiredError}
|
|
228
134
|
*/
|
|
229
135
|
updateClaimPartnerRole(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>>;
|
|
230
|
-
/**
|
|
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\"
|
|
232
|
-
* @summary Update the claim partner role
|
|
233
|
-
* @param {string} code Unique identifier for the object.
|
|
234
|
-
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
235
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
236
|
-
* @param {*} [options] Override http request option.
|
|
237
|
-
* @throws {RequiredError}
|
|
238
|
-
*/
|
|
239
|
-
updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>>;
|
|
240
136
|
};
|
|
241
137
|
/**
|
|
242
138
|
* ClaimPartnerRolesApi - factory interface
|
|
@@ -252,15 +148,6 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
252
148
|
* @throws {RequiredError}
|
|
253
149
|
*/
|
|
254
150
|
createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass>;
|
|
255
|
-
/**
|
|
256
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
257
|
-
* @summary Create the claim partner role
|
|
258
|
-
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
259
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
260
|
-
* @param {*} [options] Override http request option.
|
|
261
|
-
* @throws {RequiredError}
|
|
262
|
-
*/
|
|
263
|
-
createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass>;
|
|
264
151
|
/**
|
|
265
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\"
|
|
266
153
|
* @summary Delete the claim partner role
|
|
@@ -270,15 +157,6 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
270
157
|
* @throws {RequiredError}
|
|
271
158
|
*/
|
|
272
159
|
deleteClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
273
|
-
/**
|
|
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\"
|
|
275
|
-
* @summary Delete the claim partner role
|
|
276
|
-
* @param {string} code Unique identifier for the object.
|
|
277
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
278
|
-
* @param {*} [options] Override http request option.
|
|
279
|
-
* @throws {RequiredError}
|
|
280
|
-
*/
|
|
281
|
-
deleteClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
282
160
|
/**
|
|
283
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\"
|
|
284
162
|
* @summary Retrieve the claim partner role
|
|
@@ -288,15 +166,6 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
288
166
|
* @throws {RequiredError}
|
|
289
167
|
*/
|
|
290
168
|
getClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass>;
|
|
291
|
-
/**
|
|
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\"
|
|
293
|
-
* @summary Retrieve the claim partner role
|
|
294
|
-
* @param {string} code Unique identifier for the object.
|
|
295
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
296
|
-
* @param {*} [options] Override http request option.
|
|
297
|
-
* @throws {RequiredError}
|
|
298
|
-
*/
|
|
299
|
-
getClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass>;
|
|
300
169
|
/**
|
|
301
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\"
|
|
302
171
|
* @summary List claim partner roles
|
|
@@ -312,21 +181,6 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
312
181
|
* @throws {RequiredError}
|
|
313
182
|
*/
|
|
314
183
|
listClaimPartnerRole(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass>;
|
|
315
|
-
/**
|
|
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\"
|
|
317
|
-
* @summary List claim partner roles
|
|
318
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
319
|
-
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
320
|
-
* @param {string} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
321
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: name, productSlug</i>
|
|
322
|
-
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: name, productSlug</i>
|
|
323
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, name, productSlug, createdAt, updatedAt</i>
|
|
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/>
|
|
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>
|
|
326
|
-
* @param {*} [options] Override http request option.
|
|
327
|
-
* @throws {RequiredError}
|
|
328
|
-
*/
|
|
329
|
-
listClaimPartnerRole1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass>;
|
|
330
184
|
/**
|
|
331
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\"
|
|
332
186
|
* @summary Update the claim partner role
|
|
@@ -337,16 +191,6 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
337
191
|
* @throws {RequiredError}
|
|
338
192
|
*/
|
|
339
193
|
updateClaimPartnerRole(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass>;
|
|
340
|
-
/**
|
|
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\"
|
|
342
|
-
* @summary Update the claim partner role
|
|
343
|
-
* @param {string} code Unique identifier for the object.
|
|
344
|
-
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
345
|
-
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
346
|
-
* @param {*} [options] Override http request option.
|
|
347
|
-
* @throws {RequiredError}
|
|
348
|
-
*/
|
|
349
|
-
updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass>;
|
|
350
194
|
};
|
|
351
195
|
/**
|
|
352
196
|
* Request parameters for createClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
@@ -367,25 +211,6 @@ export interface ClaimPartnerRolesApiCreateClaimPartnerRoleRequest {
|
|
|
367
211
|
*/
|
|
368
212
|
readonly authorization?: string;
|
|
369
213
|
}
|
|
370
|
-
/**
|
|
371
|
-
* Request parameters for createClaimPartnerRole1 operation in ClaimPartnerRolesApi.
|
|
372
|
-
* @export
|
|
373
|
-
* @interface ClaimPartnerRolesApiCreateClaimPartnerRole1Request
|
|
374
|
-
*/
|
|
375
|
-
export interface ClaimPartnerRolesApiCreateClaimPartnerRole1Request {
|
|
376
|
-
/**
|
|
377
|
-
*
|
|
378
|
-
* @type {CreateClaimPartnerRoleRequestDto}
|
|
379
|
-
* @memberof ClaimPartnerRolesApiCreateClaimPartnerRole1
|
|
380
|
-
*/
|
|
381
|
-
readonly createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto;
|
|
382
|
-
/**
|
|
383
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
384
|
-
* @type {string}
|
|
385
|
-
* @memberof ClaimPartnerRolesApiCreateClaimPartnerRole1
|
|
386
|
-
*/
|
|
387
|
-
readonly authorization?: string;
|
|
388
|
-
}
|
|
389
214
|
/**
|
|
390
215
|
* Request parameters for deleteClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
391
216
|
* @export
|
|
@@ -405,25 +230,6 @@ export interface ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest {
|
|
|
405
230
|
*/
|
|
406
231
|
readonly authorization?: string;
|
|
407
232
|
}
|
|
408
|
-
/**
|
|
409
|
-
* Request parameters for deleteClaimPartnerRole1 operation in ClaimPartnerRolesApi.
|
|
410
|
-
* @export
|
|
411
|
-
* @interface ClaimPartnerRolesApiDeleteClaimPartnerRole1Request
|
|
412
|
-
*/
|
|
413
|
-
export interface ClaimPartnerRolesApiDeleteClaimPartnerRole1Request {
|
|
414
|
-
/**
|
|
415
|
-
* Unique identifier for the object.
|
|
416
|
-
* @type {string}
|
|
417
|
-
* @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole1
|
|
418
|
-
*/
|
|
419
|
-
readonly code: string;
|
|
420
|
-
/**
|
|
421
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
422
|
-
* @type {string}
|
|
423
|
-
* @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole1
|
|
424
|
-
*/
|
|
425
|
-
readonly authorization?: string;
|
|
426
|
-
}
|
|
427
233
|
/**
|
|
428
234
|
* Request parameters for getClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
429
235
|
* @export
|
|
@@ -443,25 +249,6 @@ export interface ClaimPartnerRolesApiGetClaimPartnerRoleRequest {
|
|
|
443
249
|
*/
|
|
444
250
|
readonly authorization?: string;
|
|
445
251
|
}
|
|
446
|
-
/**
|
|
447
|
-
* Request parameters for getClaimPartnerRole1 operation in ClaimPartnerRolesApi.
|
|
448
|
-
* @export
|
|
449
|
-
* @interface ClaimPartnerRolesApiGetClaimPartnerRole1Request
|
|
450
|
-
*/
|
|
451
|
-
export interface ClaimPartnerRolesApiGetClaimPartnerRole1Request {
|
|
452
|
-
/**
|
|
453
|
-
* Unique identifier for the object.
|
|
454
|
-
* @type {string}
|
|
455
|
-
* @memberof ClaimPartnerRolesApiGetClaimPartnerRole1
|
|
456
|
-
*/
|
|
457
|
-
readonly code: string;
|
|
458
|
-
/**
|
|
459
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
460
|
-
* @type {string}
|
|
461
|
-
* @memberof ClaimPartnerRolesApiGetClaimPartnerRole1
|
|
462
|
-
*/
|
|
463
|
-
readonly authorization?: string;
|
|
464
|
-
}
|
|
465
252
|
/**
|
|
466
253
|
* Request parameters for listClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
467
254
|
* @export
|
|
@@ -517,61 +304,6 @@ export interface ClaimPartnerRolesApiListClaimPartnerRoleRequest {
|
|
|
517
304
|
*/
|
|
518
305
|
readonly filters?: string;
|
|
519
306
|
}
|
|
520
|
-
/**
|
|
521
|
-
* Request parameters for listClaimPartnerRole1 operation in ClaimPartnerRolesApi.
|
|
522
|
-
* @export
|
|
523
|
-
* @interface ClaimPartnerRolesApiListClaimPartnerRole1Request
|
|
524
|
-
*/
|
|
525
|
-
export interface ClaimPartnerRolesApiListClaimPartnerRole1Request {
|
|
526
|
-
/**
|
|
527
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
528
|
-
* @type {string}
|
|
529
|
-
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
530
|
-
*/
|
|
531
|
-
readonly authorization?: string;
|
|
532
|
-
/**
|
|
533
|
-
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
534
|
-
* @type {number}
|
|
535
|
-
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
536
|
-
*/
|
|
537
|
-
readonly pageSize?: number;
|
|
538
|
-
/**
|
|
539
|
-
* 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.
|
|
540
|
-
* @type {string}
|
|
541
|
-
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
542
|
-
*/
|
|
543
|
-
readonly pageToken?: string;
|
|
544
|
-
/**
|
|
545
|
-
* 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>
|
|
546
|
-
* @type {string}
|
|
547
|
-
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
548
|
-
*/
|
|
549
|
-
readonly filter?: string;
|
|
550
|
-
/**
|
|
551
|
-
* 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>
|
|
552
|
-
* @type {string}
|
|
553
|
-
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
554
|
-
*/
|
|
555
|
-
readonly search?: string;
|
|
556
|
-
/**
|
|
557
|
-
* 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>
|
|
558
|
-
* @type {string}
|
|
559
|
-
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
560
|
-
*/
|
|
561
|
-
readonly order?: string;
|
|
562
|
-
/**
|
|
563
|
-
* 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/>
|
|
564
|
-
* @type {string}
|
|
565
|
-
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
566
|
-
*/
|
|
567
|
-
readonly expand?: string;
|
|
568
|
-
/**
|
|
569
|
-
* 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>
|
|
570
|
-
* @type {string}
|
|
571
|
-
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
572
|
-
*/
|
|
573
|
-
readonly filters?: string;
|
|
574
|
-
}
|
|
575
307
|
/**
|
|
576
308
|
* Request parameters for updateClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
577
309
|
* @export
|
|
@@ -597,31 +329,6 @@ export interface ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest {
|
|
|
597
329
|
*/
|
|
598
330
|
readonly authorization?: string;
|
|
599
331
|
}
|
|
600
|
-
/**
|
|
601
|
-
* Request parameters for updateClaimPartnerRole1 operation in ClaimPartnerRolesApi.
|
|
602
|
-
* @export
|
|
603
|
-
* @interface ClaimPartnerRolesApiUpdateClaimPartnerRole1Request
|
|
604
|
-
*/
|
|
605
|
-
export interface ClaimPartnerRolesApiUpdateClaimPartnerRole1Request {
|
|
606
|
-
/**
|
|
607
|
-
* Unique identifier for the object.
|
|
608
|
-
* @type {string}
|
|
609
|
-
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole1
|
|
610
|
-
*/
|
|
611
|
-
readonly code: string;
|
|
612
|
-
/**
|
|
613
|
-
*
|
|
614
|
-
* @type {UpdateClaimPartnerRoleRequestDto}
|
|
615
|
-
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole1
|
|
616
|
-
*/
|
|
617
|
-
readonly updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto;
|
|
618
|
-
/**
|
|
619
|
-
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
620
|
-
* @type {string}
|
|
621
|
-
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole1
|
|
622
|
-
*/
|
|
623
|
-
readonly authorization?: string;
|
|
624
|
-
}
|
|
625
332
|
/**
|
|
626
333
|
* ClaimPartnerRolesApi - object-oriented interface
|
|
627
334
|
* @export
|
|
@@ -638,15 +345,6 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
638
345
|
* @memberof ClaimPartnerRolesApi
|
|
639
346
|
*/
|
|
640
347
|
createClaimPartnerRole(requestParameters: ClaimPartnerRolesApiCreateClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerRoleResponseClass, any, {}>>;
|
|
641
|
-
/**
|
|
642
|
-
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\"
|
|
643
|
-
* @summary Create the claim partner role
|
|
644
|
-
* @param {ClaimPartnerRolesApiCreateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
645
|
-
* @param {*} [options] Override http request option.
|
|
646
|
-
* @throws {RequiredError}
|
|
647
|
-
* @memberof ClaimPartnerRolesApi
|
|
648
|
-
*/
|
|
649
|
-
createClaimPartnerRole1(requestParameters: ClaimPartnerRolesApiCreateClaimPartnerRole1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerRoleResponseClass, any, {}>>;
|
|
650
348
|
/**
|
|
651
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\"
|
|
652
350
|
* @summary Delete the claim partner role
|
|
@@ -656,15 +354,6 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
656
354
|
* @memberof ClaimPartnerRolesApi
|
|
657
355
|
*/
|
|
658
356
|
deleteClaimPartnerRole(requestParameters: ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
659
|
-
/**
|
|
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\"
|
|
661
|
-
* @summary Delete the claim partner role
|
|
662
|
-
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRole1Request} requestParameters Request parameters.
|
|
663
|
-
* @param {*} [options] Override http request option.
|
|
664
|
-
* @throws {RequiredError}
|
|
665
|
-
* @memberof ClaimPartnerRolesApi
|
|
666
|
-
*/
|
|
667
|
-
deleteClaimPartnerRole1(requestParameters: ClaimPartnerRolesApiDeleteClaimPartnerRole1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
668
357
|
/**
|
|
669
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\"
|
|
670
359
|
* @summary Retrieve the claim partner role
|
|
@@ -674,15 +363,6 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
674
363
|
* @memberof ClaimPartnerRolesApi
|
|
675
364
|
*/
|
|
676
365
|
getClaimPartnerRole(requestParameters: ClaimPartnerRolesApiGetClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerRoleResponseClass, any, {}>>;
|
|
677
|
-
/**
|
|
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\"
|
|
679
|
-
* @summary Retrieve the claim partner role
|
|
680
|
-
* @param {ClaimPartnerRolesApiGetClaimPartnerRole1Request} requestParameters Request parameters.
|
|
681
|
-
* @param {*} [options] Override http request option.
|
|
682
|
-
* @throws {RequiredError}
|
|
683
|
-
* @memberof ClaimPartnerRolesApi
|
|
684
|
-
*/
|
|
685
|
-
getClaimPartnerRole1(requestParameters: ClaimPartnerRolesApiGetClaimPartnerRole1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerRoleResponseClass, any, {}>>;
|
|
686
366
|
/**
|
|
687
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\"
|
|
688
368
|
* @summary List claim partner roles
|
|
@@ -692,15 +372,6 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
692
372
|
* @memberof ClaimPartnerRolesApi
|
|
693
373
|
*/
|
|
694
374
|
listClaimPartnerRole(requestParameters?: ClaimPartnerRolesApiListClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnerRolesResponseClass, any, {}>>;
|
|
695
|
-
/**
|
|
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\"
|
|
697
|
-
* @summary List claim partner roles
|
|
698
|
-
* @param {ClaimPartnerRolesApiListClaimPartnerRole1Request} requestParameters Request parameters.
|
|
699
|
-
* @param {*} [options] Override http request option.
|
|
700
|
-
* @throws {RequiredError}
|
|
701
|
-
* @memberof ClaimPartnerRolesApi
|
|
702
|
-
*/
|
|
703
|
-
listClaimPartnerRole1(requestParameters?: ClaimPartnerRolesApiListClaimPartnerRole1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnerRolesResponseClass, any, {}>>;
|
|
704
375
|
/**
|
|
705
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\"
|
|
706
377
|
* @summary Update the claim partner role
|
|
@@ -710,13 +381,4 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
710
381
|
* @memberof ClaimPartnerRolesApi
|
|
711
382
|
*/
|
|
712
383
|
updateClaimPartnerRole(requestParameters: ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimPartnerRoleResponseClass, any, {}>>;
|
|
713
|
-
/**
|
|
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\"
|
|
715
|
-
* @summary Update the claim partner role
|
|
716
|
-
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
717
|
-
* @param {*} [options] Override http request option.
|
|
718
|
-
* @throws {RequiredError}
|
|
719
|
-
* @memberof ClaimPartnerRolesApi
|
|
720
|
-
*/
|
|
721
|
-
updateClaimPartnerRole1(requestParameters: ClaimPartnerRolesApiUpdateClaimPartnerRole1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimPartnerRoleResponseClass, any, {}>>;
|
|
722
384
|
}
|