@emilgroup/claim-sdk 1.41.0 → 1.41.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +15 -0
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +644 -0
- package/api/claim-partner-roles-api.ts +627 -0
- package/api/claim-partners-api.ts +520 -0
- package/api/claim-positions-api.ts +1336 -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 +581 -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 +1177 -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
|
@@ -31,6 +31,17 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
31
31
|
* @throws {RequiredError}
|
|
32
32
|
*/
|
|
33
33
|
createClaimPartner: (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34
|
+
/**
|
|
35
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
36
|
+
* @summary Create the claim partner
|
|
37
|
+
* @param {string} claimCode Unique identifier for the claim object.
|
|
38
|
+
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
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
|
+
createClaimPartner1: (claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34
45
|
/**
|
|
35
46
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
36
47
|
* @summary Delete the claim partner
|
|
@@ -40,6 +51,16 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
40
51
|
* @throws {RequiredError}
|
|
41
52
|
*/
|
|
42
53
|
deleteClaimPartner: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
54
|
+
/**
|
|
55
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\" **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
|
|
57
|
+
* @param {number} id
|
|
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
|
+
deleteClaimPartner1: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
64
|
/**
|
|
44
65
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
45
66
|
* @summary Retrieve the claim partner
|
|
@@ -49,6 +70,16 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
49
70
|
* @throws {RequiredError}
|
|
50
71
|
*/
|
|
51
72
|
getClaimPartner: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
73
|
+
/**
|
|
74
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\" **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
|
|
76
|
+
* @param {number} id
|
|
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
|
+
getClaimPartner1: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
83
|
/**
|
|
53
84
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
54
85
|
* @summary List claim partners
|
|
@@ -64,6 +95,22 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
64
95
|
* @throws {RequiredError}
|
|
65
96
|
*/
|
|
66
97
|
listClaimPartners: (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 partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
100
|
+
* @summary List claim partners
|
|
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: partnerCode, claimPartnerRoleCode, claimCode</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: partnerCode, claimPartnerRoleCode, claimCode</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, 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/> <i>Allowed values: role, partner<i>
|
|
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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
109
|
+
* @param {*} [options] Override http request option.
|
|
110
|
+
* @deprecated
|
|
111
|
+
* @throws {RequiredError}
|
|
112
|
+
*/
|
|
113
|
+
listClaimPartners1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
114
|
};
|
|
68
115
|
/**
|
|
69
116
|
* ClaimPartnersApi - functional programming interface
|
|
@@ -80,6 +127,17 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
80
127
|
* @throws {RequiredError}
|
|
81
128
|
*/
|
|
82
129
|
createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>>;
|
|
130
|
+
/**
|
|
131
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
132
|
+
* @summary Create the claim partner
|
|
133
|
+
* @param {string} claimCode Unique identifier for the claim object.
|
|
134
|
+
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
135
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
136
|
+
* @param {*} [options] Override http request option.
|
|
137
|
+
* @deprecated
|
|
138
|
+
* @throws {RequiredError}
|
|
139
|
+
*/
|
|
140
|
+
createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimPartnerResponseClass>>;
|
|
83
141
|
/**
|
|
84
142
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
85
143
|
* @summary Delete the claim partner
|
|
@@ -89,6 +147,16 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
89
147
|
* @throws {RequiredError}
|
|
90
148
|
*/
|
|
91
149
|
deleteClaimPartner(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
150
|
+
/**
|
|
151
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
152
|
+
* @summary Delete the claim partner
|
|
153
|
+
* @param {number} id
|
|
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
|
+
deleteClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
92
160
|
/**
|
|
93
161
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
94
162
|
* @summary Retrieve the claim partner
|
|
@@ -98,6 +166,16 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
98
166
|
* @throws {RequiredError}
|
|
99
167
|
*/
|
|
100
168
|
getClaimPartner(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>>;
|
|
169
|
+
/**
|
|
170
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
171
|
+
* @summary Retrieve the claim partner
|
|
172
|
+
* @param {number} id
|
|
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
|
+
getClaimPartner1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimPartnerResponseClass>>;
|
|
101
179
|
/**
|
|
102
180
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
103
181
|
* @summary List claim partners
|
|
@@ -113,6 +191,22 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
113
191
|
* @throws {RequiredError}
|
|
114
192
|
*/
|
|
115
193
|
listClaimPartners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnersResponseClass>>;
|
|
194
|
+
/**
|
|
195
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
196
|
+
* @summary List claim partners
|
|
197
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
198
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
199
|
+
* @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.
|
|
200
|
+
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
201
|
+
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
202
|
+
* @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, createdAt, updatedAt</i>
|
|
203
|
+
* @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/> <i>Allowed values: role, partner<i>
|
|
204
|
+
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
205
|
+
* @param {*} [options] Override http request option.
|
|
206
|
+
* @deprecated
|
|
207
|
+
* @throws {RequiredError}
|
|
208
|
+
*/
|
|
209
|
+
listClaimPartners1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimPartnersResponseClass>>;
|
|
116
210
|
};
|
|
117
211
|
/**
|
|
118
212
|
* ClaimPartnersApi - factory interface
|
|
@@ -129,6 +223,17 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
129
223
|
* @throws {RequiredError}
|
|
130
224
|
*/
|
|
131
225
|
createClaimPartner(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass>;
|
|
226
|
+
/**
|
|
227
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
228
|
+
* @summary Create the claim partner
|
|
229
|
+
* @param {string} claimCode Unique identifier for the claim object.
|
|
230
|
+
* @param {CreateClaimPartnerRequestDto} createClaimPartnerRequestDto
|
|
231
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
232
|
+
* @param {*} [options] Override http request option.
|
|
233
|
+
* @deprecated
|
|
234
|
+
* @throws {RequiredError}
|
|
235
|
+
*/
|
|
236
|
+
createClaimPartner1(claimCode: string, createClaimPartnerRequestDto: CreateClaimPartnerRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimPartnerResponseClass>;
|
|
132
237
|
/**
|
|
133
238
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
134
239
|
* @summary Delete the claim partner
|
|
@@ -138,6 +243,16 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
138
243
|
* @throws {RequiredError}
|
|
139
244
|
*/
|
|
140
245
|
deleteClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<void>;
|
|
246
|
+
/**
|
|
247
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
248
|
+
* @summary Delete the claim partner
|
|
249
|
+
* @param {number} id
|
|
250
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
251
|
+
* @param {*} [options] Override http request option.
|
|
252
|
+
* @deprecated
|
|
253
|
+
* @throws {RequiredError}
|
|
254
|
+
*/
|
|
255
|
+
deleteClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<void>;
|
|
141
256
|
/**
|
|
142
257
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
143
258
|
* @summary Retrieve the claim partner
|
|
@@ -147,6 +262,16 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
147
262
|
* @throws {RequiredError}
|
|
148
263
|
*/
|
|
149
264
|
getClaimPartner(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass>;
|
|
265
|
+
/**
|
|
266
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
267
|
+
* @summary Retrieve the claim partner
|
|
268
|
+
* @param {number} id
|
|
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
|
+
getClaimPartner1(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimPartnerResponseClass>;
|
|
150
275
|
/**
|
|
151
276
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
152
277
|
* @summary List claim partners
|
|
@@ -162,6 +287,22 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
162
287
|
* @throws {RequiredError}
|
|
163
288
|
*/
|
|
164
289
|
listClaimPartners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass>;
|
|
290
|
+
/**
|
|
291
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
292
|
+
* @summary List claim partners
|
|
293
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
294
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
295
|
+
* @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.
|
|
296
|
+
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
297
|
+
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
298
|
+
* @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, createdAt, updatedAt</i>
|
|
299
|
+
* @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/> <i>Allowed values: role, partner<i>
|
|
300
|
+
* @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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
301
|
+
* @param {*} [options] Override http request option.
|
|
302
|
+
* @deprecated
|
|
303
|
+
* @throws {RequiredError}
|
|
304
|
+
*/
|
|
305
|
+
listClaimPartners1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimPartnersResponseClass>;
|
|
165
306
|
};
|
|
166
307
|
/**
|
|
167
308
|
* Request parameters for createClaimPartner operation in ClaimPartnersApi.
|
|
@@ -188,6 +329,31 @@ export interface ClaimPartnersApiCreateClaimPartnerRequest {
|
|
|
188
329
|
*/
|
|
189
330
|
readonly authorization?: string;
|
|
190
331
|
}
|
|
332
|
+
/**
|
|
333
|
+
* Request parameters for createClaimPartner1 operation in ClaimPartnersApi.
|
|
334
|
+
* @export
|
|
335
|
+
* @interface ClaimPartnersApiCreateClaimPartner1Request
|
|
336
|
+
*/
|
|
337
|
+
export interface ClaimPartnersApiCreateClaimPartner1Request {
|
|
338
|
+
/**
|
|
339
|
+
* Unique identifier for the claim object.
|
|
340
|
+
* @type {string}
|
|
341
|
+
* @memberof ClaimPartnersApiCreateClaimPartner1
|
|
342
|
+
*/
|
|
343
|
+
readonly claimCode: string;
|
|
344
|
+
/**
|
|
345
|
+
*
|
|
346
|
+
* @type {CreateClaimPartnerRequestDto}
|
|
347
|
+
* @memberof ClaimPartnersApiCreateClaimPartner1
|
|
348
|
+
*/
|
|
349
|
+
readonly createClaimPartnerRequestDto: CreateClaimPartnerRequestDto;
|
|
350
|
+
/**
|
|
351
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
352
|
+
* @type {string}
|
|
353
|
+
* @memberof ClaimPartnersApiCreateClaimPartner1
|
|
354
|
+
*/
|
|
355
|
+
readonly authorization?: string;
|
|
356
|
+
}
|
|
191
357
|
/**
|
|
192
358
|
* Request parameters for deleteClaimPartner operation in ClaimPartnersApi.
|
|
193
359
|
* @export
|
|
@@ -207,6 +373,25 @@ export interface ClaimPartnersApiDeleteClaimPartnerRequest {
|
|
|
207
373
|
*/
|
|
208
374
|
readonly authorization?: string;
|
|
209
375
|
}
|
|
376
|
+
/**
|
|
377
|
+
* Request parameters for deleteClaimPartner1 operation in ClaimPartnersApi.
|
|
378
|
+
* @export
|
|
379
|
+
* @interface ClaimPartnersApiDeleteClaimPartner1Request
|
|
380
|
+
*/
|
|
381
|
+
export interface ClaimPartnersApiDeleteClaimPartner1Request {
|
|
382
|
+
/**
|
|
383
|
+
*
|
|
384
|
+
* @type {number}
|
|
385
|
+
* @memberof ClaimPartnersApiDeleteClaimPartner1
|
|
386
|
+
*/
|
|
387
|
+
readonly id: number;
|
|
388
|
+
/**
|
|
389
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
390
|
+
* @type {string}
|
|
391
|
+
* @memberof ClaimPartnersApiDeleteClaimPartner1
|
|
392
|
+
*/
|
|
393
|
+
readonly authorization?: string;
|
|
394
|
+
}
|
|
210
395
|
/**
|
|
211
396
|
* Request parameters for getClaimPartner operation in ClaimPartnersApi.
|
|
212
397
|
* @export
|
|
@@ -226,6 +411,25 @@ export interface ClaimPartnersApiGetClaimPartnerRequest {
|
|
|
226
411
|
*/
|
|
227
412
|
readonly authorization?: string;
|
|
228
413
|
}
|
|
414
|
+
/**
|
|
415
|
+
* Request parameters for getClaimPartner1 operation in ClaimPartnersApi.
|
|
416
|
+
* @export
|
|
417
|
+
* @interface ClaimPartnersApiGetClaimPartner1Request
|
|
418
|
+
*/
|
|
419
|
+
export interface ClaimPartnersApiGetClaimPartner1Request {
|
|
420
|
+
/**
|
|
421
|
+
*
|
|
422
|
+
* @type {number}
|
|
423
|
+
* @memberof ClaimPartnersApiGetClaimPartner1
|
|
424
|
+
*/
|
|
425
|
+
readonly id: number;
|
|
426
|
+
/**
|
|
427
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
428
|
+
* @type {string}
|
|
429
|
+
* @memberof ClaimPartnersApiGetClaimPartner1
|
|
430
|
+
*/
|
|
431
|
+
readonly authorization?: string;
|
|
432
|
+
}
|
|
229
433
|
/**
|
|
230
434
|
* Request parameters for listClaimPartners operation in ClaimPartnersApi.
|
|
231
435
|
* @export
|
|
@@ -281,6 +485,61 @@ export interface ClaimPartnersApiListClaimPartnersRequest {
|
|
|
281
485
|
*/
|
|
282
486
|
readonly filters?: string;
|
|
283
487
|
}
|
|
488
|
+
/**
|
|
489
|
+
* Request parameters for listClaimPartners1 operation in ClaimPartnersApi.
|
|
490
|
+
* @export
|
|
491
|
+
* @interface ClaimPartnersApiListClaimPartners1Request
|
|
492
|
+
*/
|
|
493
|
+
export interface ClaimPartnersApiListClaimPartners1Request {
|
|
494
|
+
/**
|
|
495
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
496
|
+
* @type {string}
|
|
497
|
+
* @memberof ClaimPartnersApiListClaimPartners1
|
|
498
|
+
*/
|
|
499
|
+
readonly authorization?: string;
|
|
500
|
+
/**
|
|
501
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
502
|
+
* @type {number}
|
|
503
|
+
* @memberof ClaimPartnersApiListClaimPartners1
|
|
504
|
+
*/
|
|
505
|
+
readonly pageSize?: number;
|
|
506
|
+
/**
|
|
507
|
+
* 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.
|
|
508
|
+
* @type {string}
|
|
509
|
+
* @memberof ClaimPartnersApiListClaimPartners1
|
|
510
|
+
*/
|
|
511
|
+
readonly pageToken?: string;
|
|
512
|
+
/**
|
|
513
|
+
* 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: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
514
|
+
* @type {string}
|
|
515
|
+
* @memberof ClaimPartnersApiListClaimPartners1
|
|
516
|
+
*/
|
|
517
|
+
readonly filter?: string;
|
|
518
|
+
/**
|
|
519
|
+
* Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
520
|
+
* @type {string}
|
|
521
|
+
* @memberof ClaimPartnersApiListClaimPartners1
|
|
522
|
+
*/
|
|
523
|
+
readonly search?: string;
|
|
524
|
+
/**
|
|
525
|
+
* 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, createdAt, updatedAt</i>
|
|
526
|
+
* @type {string}
|
|
527
|
+
* @memberof ClaimPartnersApiListClaimPartners1
|
|
528
|
+
*/
|
|
529
|
+
readonly order?: string;
|
|
530
|
+
/**
|
|
531
|
+
* 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/> <i>Allowed values: role, partner<i>
|
|
532
|
+
* @type {string}
|
|
533
|
+
* @memberof ClaimPartnersApiListClaimPartners1
|
|
534
|
+
*/
|
|
535
|
+
readonly expand?: string;
|
|
536
|
+
/**
|
|
537
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: partnerCode, claimPartnerRoleCode, claimCode</i>
|
|
538
|
+
* @type {string}
|
|
539
|
+
* @memberof ClaimPartnersApiListClaimPartners1
|
|
540
|
+
*/
|
|
541
|
+
readonly filters?: string;
|
|
542
|
+
}
|
|
284
543
|
/**
|
|
285
544
|
* ClaimPartnersApi - object-oriented interface
|
|
286
545
|
* @export
|
|
@@ -297,6 +556,16 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
297
556
|
* @memberof ClaimPartnersApi
|
|
298
557
|
*/
|
|
299
558
|
createClaimPartner(requestParameters: ClaimPartnersApiCreateClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerResponseClass, any, {}>>;
|
|
559
|
+
/**
|
|
560
|
+
* This will create a claim partner. **Required Permissions** \"claim-management.partners.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
561
|
+
* @summary Create the claim partner
|
|
562
|
+
* @param {ClaimPartnersApiCreateClaimPartner1Request} requestParameters Request parameters.
|
|
563
|
+
* @param {*} [options] Override http request option.
|
|
564
|
+
* @deprecated
|
|
565
|
+
* @throws {RequiredError}
|
|
566
|
+
* @memberof ClaimPartnersApi
|
|
567
|
+
*/
|
|
568
|
+
createClaimPartner1(requestParameters: ClaimPartnersApiCreateClaimPartner1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimPartnerResponseClass, any, {}>>;
|
|
300
569
|
/**
|
|
301
570
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
302
571
|
* @summary Delete the claim partner
|
|
@@ -306,6 +575,16 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
306
575
|
* @memberof ClaimPartnersApi
|
|
307
576
|
*/
|
|
308
577
|
deleteClaimPartner(requestParameters: ClaimPartnersApiDeleteClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
578
|
+
/**
|
|
579
|
+
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
580
|
+
* @summary Delete the claim partner
|
|
581
|
+
* @param {ClaimPartnersApiDeleteClaimPartner1Request} requestParameters Request parameters.
|
|
582
|
+
* @param {*} [options] Override http request option.
|
|
583
|
+
* @deprecated
|
|
584
|
+
* @throws {RequiredError}
|
|
585
|
+
* @memberof ClaimPartnersApi
|
|
586
|
+
*/
|
|
587
|
+
deleteClaimPartner1(requestParameters: ClaimPartnersApiDeleteClaimPartner1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
309
588
|
/**
|
|
310
589
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
311
590
|
* @summary Retrieve the claim partner
|
|
@@ -315,6 +594,16 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
315
594
|
* @memberof ClaimPartnersApi
|
|
316
595
|
*/
|
|
317
596
|
getClaimPartner(requestParameters: ClaimPartnersApiGetClaimPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerResponseClass, any, {}>>;
|
|
597
|
+
/**
|
|
598
|
+
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
599
|
+
* @summary Retrieve the claim partner
|
|
600
|
+
* @param {ClaimPartnersApiGetClaimPartner1Request} requestParameters Request parameters.
|
|
601
|
+
* @param {*} [options] Override http request option.
|
|
602
|
+
* @deprecated
|
|
603
|
+
* @throws {RequiredError}
|
|
604
|
+
* @memberof ClaimPartnersApi
|
|
605
|
+
*/
|
|
606
|
+
getClaimPartner1(requestParameters: ClaimPartnersApiGetClaimPartner1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimPartnerResponseClass, any, {}>>;
|
|
318
607
|
/**
|
|
319
608
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
320
609
|
* @summary List claim partners
|
|
@@ -324,4 +613,14 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
324
613
|
* @memberof ClaimPartnersApi
|
|
325
614
|
*/
|
|
326
615
|
listClaimPartners(requestParameters?: ClaimPartnersApiListClaimPartnersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnersResponseClass, any, {}>>;
|
|
616
|
+
/**
|
|
617
|
+
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
618
|
+
* @summary List claim partners
|
|
619
|
+
* @param {ClaimPartnersApiListClaimPartners1Request} requestParameters Request parameters.
|
|
620
|
+
* @param {*} [options] Override http request option.
|
|
621
|
+
* @deprecated
|
|
622
|
+
* @throws {RequiredError}
|
|
623
|
+
* @memberof ClaimPartnersApi
|
|
624
|
+
*/
|
|
625
|
+
listClaimPartners1(requestParameters?: ClaimPartnersApiListClaimPartners1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimPartnersResponseClass, any, {}>>;
|
|
327
626
|
}
|