@emilgroup/claim-sdk-node 1.39.0 → 1.39.1-beta.1
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 +15 -0
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +648 -0
- package/api/claim-partner-roles-api.ts +627 -0
- package/api/claim-partners-api.ts +520 -0
- package/api/claim-positions-api.ts +1340 -0
- package/api/claim-regulations-api.ts +644 -3
- package/api/claim-statuses-api.ts +752 -5
- package/api/claims-api.ts +863 -11
- package/api/health-check-api.ts +66 -0
- package/api/settlements-api.ts +627 -0
- package/api.ts +4 -0
- package/dist/api/claim-limit-usages-api.d.ts +378 -0
- package/dist/api/claim-limit-usages-api.js +585 -0
- package/dist/api/claim-partner-roles-api.d.ts +358 -0
- package/dist/api/claim-partner-roles-api.js +525 -0
- package/dist/api/claim-partners-api.d.ts +299 -0
- package/dist/api/claim-partners-api.js +428 -0
- package/dist/api/claim-positions-api.d.ts +760 -0
- package/dist/api/claim-positions-api.js +1181 -0
- package/dist/api/claim-regulations-api.d.ts +367 -0
- package/dist/api/claim-regulations-api.js +531 -0
- package/dist/api/claim-statuses-api.d.ts +426 -0
- package/dist/api/claim-statuses-api.js +642 -14
- package/dist/api/claims-api.d.ts +493 -8
- package/dist/api/claims-api.js +734 -10
- package/dist/api/health-check-api.d.ts +33 -0
- package/dist/api/health-check-api.js +73 -0
- package/dist/api/settlements-api.d.ts +358 -0
- package/dist/api/settlements-api.js +525 -0
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/calculation-step-result-class.d.ts +72 -0
- package/dist/models/calculation-step-result-class.js +21 -0
- package/dist/models/claim-applied-deductible-class.d.ts +95 -0
- package/dist/models/claim-applied-deductible-class.js +20 -0
- package/dist/models/claim-class.d.ts +25 -0
- package/dist/models/claim-limit-usage-class.d.ts +143 -0
- package/dist/models/claim-limit-usage-class.js +30 -0
- package/dist/models/claim-limit-usage-result-class.d.ts +48 -0
- package/dist/models/claim-limit-usage-result-class.js +21 -0
- package/dist/models/claim-position-class.d.ts +151 -0
- package/dist/models/claim-position-class.js +20 -0
- package/dist/models/create-claim-position-request-dto.d.ts +66 -0
- package/dist/models/create-claim-position-request-dto.js +15 -0
- package/dist/models/create-claim-position-response-class.d.ts +25 -0
- package/dist/models/create-claim-position-response-class.js +15 -0
- package/dist/models/create-claim-request-dto.d.ts +6 -0
- package/dist/models/create-regulation-item-request-dto.d.ts +26 -3
- package/dist/models/create-regulation-item-request-dto.js +5 -1
- package/dist/models/get-claim-limit-usage-response-class.d.ts +25 -0
- package/dist/models/get-claim-limit-usage-response-class.js +15 -0
- package/dist/models/get-claim-position-response-class.d.ts +25 -0
- package/dist/models/get-claim-position-response-class.js +15 -0
- package/dist/models/index.d.ts +13 -0
- package/dist/models/index.js +13 -0
- package/dist/models/list-claim-limit-usages-response-class.d.ts +43 -0
- package/dist/models/list-claim-limit-usages-response-class.js +15 -0
- package/dist/models/list-claim-partner-roles-response-class.d.ts +12 -0
- package/dist/models/list-claim-partners-response-class.d.ts +12 -0
- package/dist/models/list-claim-positions-response-class.d.ts +43 -0
- package/dist/models/list-claim-positions-response-class.js +15 -0
- package/dist/models/list-claim-statuses-response-class.d.ts +13 -1
- package/dist/models/list-claims-response-class.d.ts +12 -0
- package/dist/models/list-regulations-response-class.d.ts +12 -0
- package/dist/models/patch-claim-request-dto.d.ts +39 -33
- package/dist/models/regulation-item-class.d.ts +35 -0
- package/dist/models/regulation-item-class.js +10 -1
- package/dist/models/update-claim-position-request-dto.d.ts +60 -0
- package/dist/models/update-claim-position-request-dto.js +15 -0
- package/dist/models/update-claim-position-response-class.d.ts +25 -0
- package/dist/models/update-claim-position-response-class.js +15 -0
- package/dist/models/update-claim-request-dto.d.ts +39 -33
- package/dist/models/update-regulation-item-request-dto.d.ts +12 -0
- package/dist/models/update-regulation-item-request-dto.js +6 -1
- package/models/calculation-step-result-class.ts +81 -0
- package/models/claim-applied-deductible-class.ts +104 -0
- package/models/claim-class.ts +25 -0
- package/models/claim-limit-usage-class.ts +154 -0
- package/models/claim-limit-usage-result-class.ts +57 -0
- package/models/claim-position-class.ts +160 -0
- package/models/create-claim-position-request-dto.ts +72 -0
- package/models/create-claim-position-response-class.ts +31 -0
- package/models/create-claim-request-dto.ts +6 -0
- package/models/create-regulation-item-request-dto.ts +27 -3
- package/models/get-claim-limit-usage-response-class.ts +31 -0
- package/models/get-claim-position-response-class.ts +31 -0
- package/models/index.ts +13 -0
- package/models/list-claim-limit-usages-response-class.ts +49 -0
- package/models/list-claim-partner-roles-response-class.ts +12 -0
- package/models/list-claim-partners-response-class.ts +12 -0
- package/models/list-claim-positions-response-class.ts +49 -0
- package/models/list-claim-statuses-response-class.ts +13 -1
- package/models/list-claims-response-class.ts +12 -0
- package/models/list-regulations-response-class.ts +12 -0
- package/models/patch-claim-request-dto.ts +39 -33
- package/models/regulation-item-class.ts +37 -0
- package/models/update-claim-position-request-dto.ts +66 -0
- package/models/update-claim-position-response-class.ts +31 -0
- package/models/update-claim-request-dto.ts +39 -33
- package/models/update-regulation-item-request-dto.ts +13 -0
- package/package.json +1 -1
|
@@ -32,6 +32,16 @@ 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\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
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
|
+
* @deprecated
|
|
42
|
+
* @throws {RequiredError}
|
|
43
|
+
*/
|
|
44
|
+
createClaimPartnerRole1: (createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
45
|
/**
|
|
36
46
|
* 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
47
|
* @summary Delete the claim partner role
|
|
@@ -41,6 +51,16 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
41
51
|
* @throws {RequiredError}
|
|
42
52
|
*/
|
|
43
53
|
deleteClaimPartnerRole: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54
|
+
/**
|
|
55
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
56
|
+
* @summary Delete the claim partner role
|
|
57
|
+
* @param {string} code Unique identifier for the object.
|
|
58
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
59
|
+
* @param {*} [options] Override http request option.
|
|
60
|
+
* @deprecated
|
|
61
|
+
* @throws {RequiredError}
|
|
62
|
+
*/
|
|
63
|
+
deleteClaimPartnerRole1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
44
64
|
/**
|
|
45
65
|
* 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
66
|
* @summary Retrieve the claim partner role
|
|
@@ -50,6 +70,16 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
50
70
|
* @throws {RequiredError}
|
|
51
71
|
*/
|
|
52
72
|
getClaimPartnerRole: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
73
|
+
/**
|
|
74
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
75
|
+
* @summary Retrieve the claim partner role
|
|
76
|
+
* @param {string} code Unique identifier for the object.
|
|
77
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
78
|
+
* @param {*} [options] Override http request option.
|
|
79
|
+
* @deprecated
|
|
80
|
+
* @throws {RequiredError}
|
|
81
|
+
*/
|
|
82
|
+
getClaimPartnerRole1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
83
|
/**
|
|
54
84
|
* 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
85
|
* @summary List claim partner roles
|
|
@@ -65,6 +95,22 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
65
95
|
* @throws {RequiredError}
|
|
66
96
|
*/
|
|
67
97
|
listClaimPartnerRole: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
98
|
+
/**
|
|
99
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
100
|
+
* @summary List claim partner roles
|
|
101
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
102
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
103
|
+
* @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.
|
|
104
|
+
* @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>
|
|
105
|
+
* @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>
|
|
106
|
+
* @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>
|
|
107
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
108
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
|
|
109
|
+
* @param {*} [options] Override http request option.
|
|
110
|
+
* @deprecated
|
|
111
|
+
* @throws {RequiredError}
|
|
112
|
+
*/
|
|
113
|
+
listClaimPartnerRole1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
68
114
|
/**
|
|
69
115
|
* 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
116
|
* @summary Update the claim partner role
|
|
@@ -75,6 +121,17 @@ export declare const ClaimPartnerRolesApiAxiosParamCreator: (configuration?: Con
|
|
|
75
121
|
* @throws {RequiredError}
|
|
76
122
|
*/
|
|
77
123
|
updateClaimPartnerRole: (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
124
|
+
/**
|
|
125
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
126
|
+
* @summary Update the claim partner role
|
|
127
|
+
* @param {string} code Unique identifier for the object.
|
|
128
|
+
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
129
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
130
|
+
* @param {*} [options] Override http request option.
|
|
131
|
+
* @deprecated
|
|
132
|
+
* @throws {RequiredError}
|
|
133
|
+
*/
|
|
134
|
+
updateClaimPartnerRole1: (code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
78
135
|
};
|
|
79
136
|
/**
|
|
80
137
|
* ClaimPartnerRolesApi - functional programming interface
|
|
@@ -90,6 +147,16 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
90
147
|
* @throws {RequiredError}
|
|
91
148
|
*/
|
|
92
149
|
createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>>;
|
|
150
|
+
/**
|
|
151
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
152
|
+
* @summary Create the claim partner role
|
|
153
|
+
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
154
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
155
|
+
* @param {*} [options] Override http request option.
|
|
156
|
+
* @deprecated
|
|
157
|
+
* @throws {RequiredError}
|
|
158
|
+
*/
|
|
159
|
+
createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerRoleResponseClass>>;
|
|
93
160
|
/**
|
|
94
161
|
* 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
162
|
* @summary Delete the claim partner role
|
|
@@ -99,6 +166,16 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
99
166
|
* @throws {RequiredError}
|
|
100
167
|
*/
|
|
101
168
|
deleteClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
169
|
+
/**
|
|
170
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
171
|
+
* @summary Delete the claim partner role
|
|
172
|
+
* @param {string} code Unique identifier for the object.
|
|
173
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
174
|
+
* @param {*} [options] Override http request option.
|
|
175
|
+
* @deprecated
|
|
176
|
+
* @throws {RequiredError}
|
|
177
|
+
*/
|
|
178
|
+
deleteClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
102
179
|
/**
|
|
103
180
|
* 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
181
|
* @summary Retrieve the claim partner role
|
|
@@ -108,6 +185,16 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
108
185
|
* @throws {RequiredError}
|
|
109
186
|
*/
|
|
110
187
|
getClaimPartnerRole(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>>;
|
|
188
|
+
/**
|
|
189
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
190
|
+
* @summary Retrieve the claim partner role
|
|
191
|
+
* @param {string} code Unique identifier for the object.
|
|
192
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
193
|
+
* @param {*} [options] Override http request option.
|
|
194
|
+
* @deprecated
|
|
195
|
+
* @throws {RequiredError}
|
|
196
|
+
*/
|
|
197
|
+
getClaimPartnerRole1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerRoleResponseClass>>;
|
|
111
198
|
/**
|
|
112
199
|
* 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
200
|
* @summary List claim partner roles
|
|
@@ -123,6 +210,22 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
123
210
|
* @throws {RequiredError}
|
|
124
211
|
*/
|
|
125
212
|
listClaimPartnerRole(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>>;
|
|
213
|
+
/**
|
|
214
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
215
|
+
* @summary List claim partner roles
|
|
216
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
217
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
218
|
+
* @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.
|
|
219
|
+
* @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>
|
|
220
|
+
* @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>
|
|
221
|
+
* @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>
|
|
222
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
223
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
|
|
224
|
+
* @param {*} [options] Override http request option.
|
|
225
|
+
* @deprecated
|
|
226
|
+
* @throws {RequiredError}
|
|
227
|
+
*/
|
|
228
|
+
listClaimPartnerRole1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnerRolesResponseClass>>;
|
|
126
229
|
/**
|
|
127
230
|
* 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
231
|
* @summary Update the claim partner role
|
|
@@ -133,6 +236,17 @@ export declare const ClaimPartnerRolesApiFp: (configuration?: Configuration) =>
|
|
|
133
236
|
* @throws {RequiredError}
|
|
134
237
|
*/
|
|
135
238
|
updateClaimPartnerRole(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>>;
|
|
239
|
+
/**
|
|
240
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
241
|
+
* @summary Update the claim partner role
|
|
242
|
+
* @param {string} code Unique identifier for the object.
|
|
243
|
+
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
244
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
245
|
+
* @param {*} [options] Override http request option.
|
|
246
|
+
* @deprecated
|
|
247
|
+
* @throws {RequiredError}
|
|
248
|
+
*/
|
|
249
|
+
updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimPartnerRoleResponseClass>>;
|
|
136
250
|
};
|
|
137
251
|
/**
|
|
138
252
|
* ClaimPartnerRolesApi - factory interface
|
|
@@ -148,6 +262,16 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
148
262
|
* @throws {RequiredError}
|
|
149
263
|
*/
|
|
150
264
|
createClaimPartnerRole(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass>;
|
|
265
|
+
/**
|
|
266
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
267
|
+
* @summary Create the claim partner role
|
|
268
|
+
* @param {CreateClaimPartnerRoleRequestDto} createClaimPartnerRoleRequestDto
|
|
269
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
270
|
+
* @param {*} [options] Override http request option.
|
|
271
|
+
* @deprecated
|
|
272
|
+
* @throws {RequiredError}
|
|
273
|
+
*/
|
|
274
|
+
createClaimPartnerRole1(createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerRoleResponseClass>;
|
|
151
275
|
/**
|
|
152
276
|
* 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
277
|
* @summary Delete the claim partner role
|
|
@@ -157,6 +281,16 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
157
281
|
* @throws {RequiredError}
|
|
158
282
|
*/
|
|
159
283
|
deleteClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
284
|
+
/**
|
|
285
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
286
|
+
* @summary Delete the claim partner role
|
|
287
|
+
* @param {string} code Unique identifier for the object.
|
|
288
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
289
|
+
* @param {*} [options] Override http request option.
|
|
290
|
+
* @deprecated
|
|
291
|
+
* @throws {RequiredError}
|
|
292
|
+
*/
|
|
293
|
+
deleteClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
160
294
|
/**
|
|
161
295
|
* 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
296
|
* @summary Retrieve the claim partner role
|
|
@@ -166,6 +300,16 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
166
300
|
* @throws {RequiredError}
|
|
167
301
|
*/
|
|
168
302
|
getClaimPartnerRole(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass>;
|
|
303
|
+
/**
|
|
304
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
305
|
+
* @summary Retrieve the claim partner role
|
|
306
|
+
* @param {string} code Unique identifier for the object.
|
|
307
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
308
|
+
* @param {*} [options] Override http request option.
|
|
309
|
+
* @deprecated
|
|
310
|
+
* @throws {RequiredError}
|
|
311
|
+
*/
|
|
312
|
+
getClaimPartnerRole1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerRoleResponseClass>;
|
|
169
313
|
/**
|
|
170
314
|
* 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
315
|
* @summary List claim partner roles
|
|
@@ -181,6 +325,22 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
181
325
|
* @throws {RequiredError}
|
|
182
326
|
*/
|
|
183
327
|
listClaimPartnerRole(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass>;
|
|
328
|
+
/**
|
|
329
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
330
|
+
* @summary List claim partner roles
|
|
331
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
332
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
333
|
+
* @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.
|
|
334
|
+
* @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>
|
|
335
|
+
* @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>
|
|
336
|
+
* @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>
|
|
337
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/>
|
|
338
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: name, productSlug</i>
|
|
339
|
+
* @param {*} [options] Override http request option.
|
|
340
|
+
* @deprecated
|
|
341
|
+
* @throws {RequiredError}
|
|
342
|
+
*/
|
|
343
|
+
listClaimPartnerRole1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnerRolesResponseClass>;
|
|
184
344
|
/**
|
|
185
345
|
* 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
346
|
* @summary Update the claim partner role
|
|
@@ -191,6 +351,17 @@ export declare const ClaimPartnerRolesApiFactory: (configuration?: Configuration
|
|
|
191
351
|
* @throws {RequiredError}
|
|
192
352
|
*/
|
|
193
353
|
updateClaimPartnerRole(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass>;
|
|
354
|
+
/**
|
|
355
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
356
|
+
* @summary Update the claim partner role
|
|
357
|
+
* @param {string} code Unique identifier for the object.
|
|
358
|
+
* @param {UpdateClaimPartnerRoleRequestDto} updateClaimPartnerRoleRequestDto
|
|
359
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
360
|
+
* @param {*} [options] Override http request option.
|
|
361
|
+
* @deprecated
|
|
362
|
+
* @throws {RequiredError}
|
|
363
|
+
*/
|
|
364
|
+
updateClaimPartnerRole1(code: string, updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimPartnerRoleResponseClass>;
|
|
194
365
|
};
|
|
195
366
|
/**
|
|
196
367
|
* Request parameters for createClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
@@ -211,6 +382,25 @@ export interface ClaimPartnerRolesApiCreateClaimPartnerRoleRequest {
|
|
|
211
382
|
*/
|
|
212
383
|
readonly authorization?: string;
|
|
213
384
|
}
|
|
385
|
+
/**
|
|
386
|
+
* Request parameters for createClaimPartnerRole1 operation in ClaimPartnerRolesApi.
|
|
387
|
+
* @export
|
|
388
|
+
* @interface ClaimPartnerRolesApiCreateClaimPartnerRole1Request
|
|
389
|
+
*/
|
|
390
|
+
export interface ClaimPartnerRolesApiCreateClaimPartnerRole1Request {
|
|
391
|
+
/**
|
|
392
|
+
*
|
|
393
|
+
* @type {CreateClaimPartnerRoleRequestDto}
|
|
394
|
+
* @memberof ClaimPartnerRolesApiCreateClaimPartnerRole1
|
|
395
|
+
*/
|
|
396
|
+
readonly createClaimPartnerRoleRequestDto: CreateClaimPartnerRoleRequestDto;
|
|
397
|
+
/**
|
|
398
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
399
|
+
* @type {string}
|
|
400
|
+
* @memberof ClaimPartnerRolesApiCreateClaimPartnerRole1
|
|
401
|
+
*/
|
|
402
|
+
readonly authorization?: string;
|
|
403
|
+
}
|
|
214
404
|
/**
|
|
215
405
|
* Request parameters for deleteClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
216
406
|
* @export
|
|
@@ -230,6 +420,25 @@ export interface ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest {
|
|
|
230
420
|
*/
|
|
231
421
|
readonly authorization?: string;
|
|
232
422
|
}
|
|
423
|
+
/**
|
|
424
|
+
* Request parameters for deleteClaimPartnerRole1 operation in ClaimPartnerRolesApi.
|
|
425
|
+
* @export
|
|
426
|
+
* @interface ClaimPartnerRolesApiDeleteClaimPartnerRole1Request
|
|
427
|
+
*/
|
|
428
|
+
export interface ClaimPartnerRolesApiDeleteClaimPartnerRole1Request {
|
|
429
|
+
/**
|
|
430
|
+
* Unique identifier for the object.
|
|
431
|
+
* @type {string}
|
|
432
|
+
* @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole1
|
|
433
|
+
*/
|
|
434
|
+
readonly code: string;
|
|
435
|
+
/**
|
|
436
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
437
|
+
* @type {string}
|
|
438
|
+
* @memberof ClaimPartnerRolesApiDeleteClaimPartnerRole1
|
|
439
|
+
*/
|
|
440
|
+
readonly authorization?: string;
|
|
441
|
+
}
|
|
233
442
|
/**
|
|
234
443
|
* Request parameters for getClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
235
444
|
* @export
|
|
@@ -249,6 +458,25 @@ export interface ClaimPartnerRolesApiGetClaimPartnerRoleRequest {
|
|
|
249
458
|
*/
|
|
250
459
|
readonly authorization?: string;
|
|
251
460
|
}
|
|
461
|
+
/**
|
|
462
|
+
* Request parameters for getClaimPartnerRole1 operation in ClaimPartnerRolesApi.
|
|
463
|
+
* @export
|
|
464
|
+
* @interface ClaimPartnerRolesApiGetClaimPartnerRole1Request
|
|
465
|
+
*/
|
|
466
|
+
export interface ClaimPartnerRolesApiGetClaimPartnerRole1Request {
|
|
467
|
+
/**
|
|
468
|
+
* Unique identifier for the object.
|
|
469
|
+
* @type {string}
|
|
470
|
+
* @memberof ClaimPartnerRolesApiGetClaimPartnerRole1
|
|
471
|
+
*/
|
|
472
|
+
readonly code: string;
|
|
473
|
+
/**
|
|
474
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
475
|
+
* @type {string}
|
|
476
|
+
* @memberof ClaimPartnerRolesApiGetClaimPartnerRole1
|
|
477
|
+
*/
|
|
478
|
+
readonly authorization?: string;
|
|
479
|
+
}
|
|
252
480
|
/**
|
|
253
481
|
* Request parameters for listClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
254
482
|
* @export
|
|
@@ -304,6 +532,61 @@ export interface ClaimPartnerRolesApiListClaimPartnerRoleRequest {
|
|
|
304
532
|
*/
|
|
305
533
|
readonly filters?: string;
|
|
306
534
|
}
|
|
535
|
+
/**
|
|
536
|
+
* Request parameters for listClaimPartnerRole1 operation in ClaimPartnerRolesApi.
|
|
537
|
+
* @export
|
|
538
|
+
* @interface ClaimPartnerRolesApiListClaimPartnerRole1Request
|
|
539
|
+
*/
|
|
540
|
+
export interface ClaimPartnerRolesApiListClaimPartnerRole1Request {
|
|
541
|
+
/**
|
|
542
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
543
|
+
* @type {string}
|
|
544
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
545
|
+
*/
|
|
546
|
+
readonly authorization?: string;
|
|
547
|
+
/**
|
|
548
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
549
|
+
* @type {number}
|
|
550
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
551
|
+
*/
|
|
552
|
+
readonly pageSize?: number;
|
|
553
|
+
/**
|
|
554
|
+
* 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.
|
|
555
|
+
* @type {string}
|
|
556
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
557
|
+
*/
|
|
558
|
+
readonly pageToken?: string;
|
|
559
|
+
/**
|
|
560
|
+
* 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>
|
|
561
|
+
* @type {string}
|
|
562
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
563
|
+
*/
|
|
564
|
+
readonly filter?: string;
|
|
565
|
+
/**
|
|
566
|
+
* 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>
|
|
567
|
+
* @type {string}
|
|
568
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
569
|
+
*/
|
|
570
|
+
readonly search?: string;
|
|
571
|
+
/**
|
|
572
|
+
* 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>
|
|
573
|
+
* @type {string}
|
|
574
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
575
|
+
*/
|
|
576
|
+
readonly order?: string;
|
|
577
|
+
/**
|
|
578
|
+
* 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/>
|
|
579
|
+
* @type {string}
|
|
580
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
581
|
+
*/
|
|
582
|
+
readonly expand?: string;
|
|
583
|
+
/**
|
|
584
|
+
* 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>
|
|
585
|
+
* @type {string}
|
|
586
|
+
* @memberof ClaimPartnerRolesApiListClaimPartnerRole1
|
|
587
|
+
*/
|
|
588
|
+
readonly filters?: string;
|
|
589
|
+
}
|
|
307
590
|
/**
|
|
308
591
|
* Request parameters for updateClaimPartnerRole operation in ClaimPartnerRolesApi.
|
|
309
592
|
* @export
|
|
@@ -329,6 +612,31 @@ export interface ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest {
|
|
|
329
612
|
*/
|
|
330
613
|
readonly authorization?: string;
|
|
331
614
|
}
|
|
615
|
+
/**
|
|
616
|
+
* Request parameters for updateClaimPartnerRole1 operation in ClaimPartnerRolesApi.
|
|
617
|
+
* @export
|
|
618
|
+
* @interface ClaimPartnerRolesApiUpdateClaimPartnerRole1Request
|
|
619
|
+
*/
|
|
620
|
+
export interface ClaimPartnerRolesApiUpdateClaimPartnerRole1Request {
|
|
621
|
+
/**
|
|
622
|
+
* Unique identifier for the object.
|
|
623
|
+
* @type {string}
|
|
624
|
+
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole1
|
|
625
|
+
*/
|
|
626
|
+
readonly code: string;
|
|
627
|
+
/**
|
|
628
|
+
*
|
|
629
|
+
* @type {UpdateClaimPartnerRoleRequestDto}
|
|
630
|
+
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole1
|
|
631
|
+
*/
|
|
632
|
+
readonly updateClaimPartnerRoleRequestDto: UpdateClaimPartnerRoleRequestDto;
|
|
633
|
+
/**
|
|
634
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
635
|
+
* @type {string}
|
|
636
|
+
* @memberof ClaimPartnerRolesApiUpdateClaimPartnerRole1
|
|
637
|
+
*/
|
|
638
|
+
readonly authorization?: string;
|
|
639
|
+
}
|
|
332
640
|
/**
|
|
333
641
|
* ClaimPartnerRolesApi - object-oriented interface
|
|
334
642
|
* @export
|
|
@@ -345,6 +653,16 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
345
653
|
* @memberof ClaimPartnerRolesApi
|
|
346
654
|
*/
|
|
347
655
|
createClaimPartnerRole(requestParameters: ClaimPartnerRolesApiCreateClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerRoleResponseClass, any, {}>>;
|
|
656
|
+
/**
|
|
657
|
+
* This will create a claim partner role. **Required Permissions** \"claim-management.partner-roles.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
658
|
+
* @summary Create the claim partner role
|
|
659
|
+
* @param {ClaimPartnerRolesApiCreateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
660
|
+
* @param {*} [options] Override http request option.
|
|
661
|
+
* @deprecated
|
|
662
|
+
* @throws {RequiredError}
|
|
663
|
+
* @memberof ClaimPartnerRolesApi
|
|
664
|
+
*/
|
|
665
|
+
createClaimPartnerRole1(requestParameters: ClaimPartnerRolesApiCreateClaimPartnerRole1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerRoleResponseClass, any, {}>>;
|
|
348
666
|
/**
|
|
349
667
|
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\"
|
|
350
668
|
* @summary Delete the claim partner role
|
|
@@ -354,6 +672,16 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
354
672
|
* @memberof ClaimPartnerRolesApi
|
|
355
673
|
*/
|
|
356
674
|
deleteClaimPartnerRole(requestParameters: ClaimPartnerRolesApiDeleteClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
675
|
+
/**
|
|
676
|
+
* Permanently deletes the claim partner role. Supply the unique code that was returned when you created the claim partner role and this will delete it. **Required Permissions** \"claim-management.partner-roles.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
677
|
+
* @summary Delete the claim partner role
|
|
678
|
+
* @param {ClaimPartnerRolesApiDeleteClaimPartnerRole1Request} requestParameters Request parameters.
|
|
679
|
+
* @param {*} [options] Override http request option.
|
|
680
|
+
* @deprecated
|
|
681
|
+
* @throws {RequiredError}
|
|
682
|
+
* @memberof ClaimPartnerRolesApi
|
|
683
|
+
*/
|
|
684
|
+
deleteClaimPartnerRole1(requestParameters: ClaimPartnerRolesApiDeleteClaimPartnerRole1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
357
685
|
/**
|
|
358
686
|
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
359
687
|
* @summary Retrieve the claim partner role
|
|
@@ -363,6 +691,16 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
363
691
|
* @memberof ClaimPartnerRolesApi
|
|
364
692
|
*/
|
|
365
693
|
getClaimPartnerRole(requestParameters: ClaimPartnerRolesApiGetClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerRoleResponseClass, any, {}>>;
|
|
694
|
+
/**
|
|
695
|
+
* Retrieves the details of the claim partner role that was previously created. Supply the unique claim partner role code that was returned when you created it and Emil Api will return the corresponding claim partner role information. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
696
|
+
* @summary Retrieve the claim partner role
|
|
697
|
+
* @param {ClaimPartnerRolesApiGetClaimPartnerRole1Request} requestParameters Request parameters.
|
|
698
|
+
* @param {*} [options] Override http request option.
|
|
699
|
+
* @deprecated
|
|
700
|
+
* @throws {RequiredError}
|
|
701
|
+
* @memberof ClaimPartnerRolesApi
|
|
702
|
+
*/
|
|
703
|
+
getClaimPartnerRole1(requestParameters: ClaimPartnerRolesApiGetClaimPartnerRole1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerRoleResponseClass, any, {}>>;
|
|
366
704
|
/**
|
|
367
705
|
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\"
|
|
368
706
|
* @summary List claim partner roles
|
|
@@ -372,6 +710,16 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
372
710
|
* @memberof ClaimPartnerRolesApi
|
|
373
711
|
*/
|
|
374
712
|
listClaimPartnerRole(requestParameters?: ClaimPartnerRolesApiListClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnerRolesResponseClass, any, {}>>;
|
|
713
|
+
/**
|
|
714
|
+
* Returns a list of claim partner roles you have previously created. The claim partner roles are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partner-roles.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
715
|
+
* @summary List claim partner roles
|
|
716
|
+
* @param {ClaimPartnerRolesApiListClaimPartnerRole1Request} requestParameters Request parameters.
|
|
717
|
+
* @param {*} [options] Override http request option.
|
|
718
|
+
* @deprecated
|
|
719
|
+
* @throws {RequiredError}
|
|
720
|
+
* @memberof ClaimPartnerRolesApi
|
|
721
|
+
*/
|
|
722
|
+
listClaimPartnerRole1(requestParameters?: ClaimPartnerRolesApiListClaimPartnerRole1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnerRolesResponseClass, any, {}>>;
|
|
375
723
|
/**
|
|
376
724
|
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\"
|
|
377
725
|
* @summary Update the claim partner role
|
|
@@ -381,4 +729,14 @@ export declare class ClaimPartnerRolesApi extends BaseAPI {
|
|
|
381
729
|
* @memberof ClaimPartnerRolesApi
|
|
382
730
|
*/
|
|
383
731
|
updateClaimPartnerRole(requestParameters: ClaimPartnerRolesApiUpdateClaimPartnerRoleRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimPartnerRoleResponseClass, any, {}>>;
|
|
732
|
+
/**
|
|
733
|
+
* Updates the specified claim partner role by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"claim-management.partner-roles.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
734
|
+
* @summary Update the claim partner role
|
|
735
|
+
* @param {ClaimPartnerRolesApiUpdateClaimPartnerRole1Request} requestParameters Request parameters.
|
|
736
|
+
* @param {*} [options] Override http request option.
|
|
737
|
+
* @deprecated
|
|
738
|
+
* @throws {RequiredError}
|
|
739
|
+
* @memberof ClaimPartnerRolesApi
|
|
740
|
+
*/
|
|
741
|
+
updateClaimPartnerRole1(requestParameters: ClaimPartnerRolesApiUpdateClaimPartnerRole1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimPartnerRoleResponseClass, any, {}>>;
|
|
384
742
|
}
|