@emilgroup/claim-sdk 1.40.1-beta.8 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +0 -10
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +0 -627
- package/api/claim-partners-api.ts +0 -520
- package/api/claim-regulations-api.ts +5 -646
- package/api/claim-statuses-api.ts +6 -753
- package/api/claims-api.ts +6 -858
- package/api/health-check-api.ts +0 -66
- package/api/settlements-api.ts +0 -627
- package/api.ts +0 -2
- package/dist/api/claim-partner-roles-api.d.ts +0 -358
- package/dist/api/claim-partner-roles-api.js +0 -525
- package/dist/api/claim-partners-api.d.ts +0 -299
- package/dist/api/claim-partners-api.js +0 -428
- package/dist/api/claim-regulations-api.d.ts +0 -367
- package/dist/api/claim-regulations-api.js +0 -531
- package/dist/api/claim-statuses-api.d.ts +0 -426
- package/dist/api/claim-statuses-api.js +14 -642
- package/dist/api/claims-api.d.ts +0 -485
- package/dist/api/claims-api.js +1 -725
- package/dist/api/health-check-api.d.ts +0 -33
- package/dist/api/health-check-api.js +0 -73
- package/dist/api/settlements-api.d.ts +0 -358
- package/dist/api/settlements-api.js +0 -525
- package/dist/api.d.ts +0 -1
- package/dist/api.js +0 -1
- package/dist/models/claim-class.d.ts +0 -6
- package/dist/models/index.d.ts +0 -9
- package/dist/models/index.js +0 -9
- package/dist/models/list-claim-partner-roles-response-class.d.ts +0 -12
- package/dist/models/list-claim-partners-response-class.d.ts +0 -12
- package/dist/models/list-claim-statuses-response-class.d.ts +1 -13
- package/dist/models/list-claims-response-class.d.ts +0 -12
- package/dist/models/list-regulations-response-class.d.ts +0 -12
- package/models/claim-class.ts +0 -6
- package/models/index.ts +0 -9
- package/models/list-claim-partner-roles-response-class.ts +0 -12
- package/models/list-claim-partners-response-class.ts +0 -12
- package/models/list-claim-statuses-response-class.ts +1 -13
- package/models/list-claims-response-class.ts +0 -12
- package/models/list-regulations-response-class.ts +0 -12
- package/package.json +1 -1
- package/api/claim-positions-api.ts +0 -1336
- package/dist/api/claim-positions-api.d.ts +0 -760
- package/dist/api/claim-positions-api.js +0 -1177
- package/dist/models/claim-position-class.d.ts +0 -121
- package/dist/models/claim-position-class.js +0 -15
- package/dist/models/coverage-class.d.ts +0 -72
- package/dist/models/coverage-class.js +0 -21
- package/dist/models/coverage-request-dto.d.ts +0 -41
- package/dist/models/coverage-request-dto.js +0 -20
- package/dist/models/create-claim-position-request-dto.d.ts +0 -73
- package/dist/models/create-claim-position-request-dto.js +0 -15
- package/dist/models/create-claim-position-response-class.d.ts +0 -25
- package/dist/models/create-claim-position-response-class.js +0 -15
- package/dist/models/get-claim-position-response-class.d.ts +0 -25
- package/dist/models/get-claim-position-response-class.js +0 -15
- package/dist/models/list-claim-positions-response-class.d.ts +0 -43
- package/dist/models/list-claim-positions-response-class.js +0 -15
- package/dist/models/update-claim-position-request-dto.d.ts +0 -73
- package/dist/models/update-claim-position-request-dto.js +0 -15
- package/dist/models/update-claim-position-response-class.d.ts +0 -25
- package/dist/models/update-claim-position-response-class.js +0 -15
- package/models/claim-position-class.ts +0 -127
- package/models/coverage-class.ts +0 -81
- package/models/coverage-request-dto.ts +0 -50
- package/models/create-claim-position-request-dto.ts +0 -79
- package/models/create-claim-position-response-class.ts +0 -31
- package/models/get-claim-position-response-class.ts +0 -31
- package/models/list-claim-positions-response-class.ts +0 -49
- package/models/update-claim-position-request-dto.ts +0 -79
- package/models/update-claim-position-response-class.ts +0 -31
|
@@ -31,17 +31,6 @@ 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>;
|
|
45
34
|
/**
|
|
46
35
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
47
36
|
* @summary Delete the claim partner
|
|
@@ -51,16 +40,6 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
51
40
|
* @throws {RequiredError}
|
|
52
41
|
*/
|
|
53
42
|
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>;
|
|
64
43
|
/**
|
|
65
44
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
66
45
|
* @summary Retrieve the claim partner
|
|
@@ -70,16 +49,6 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
70
49
|
* @throws {RequiredError}
|
|
71
50
|
*/
|
|
72
51
|
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>;
|
|
83
52
|
/**
|
|
84
53
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
85
54
|
* @summary List claim partners
|
|
@@ -95,22 +64,6 @@ export declare const ClaimPartnersApiAxiosParamCreator: (configuration?: Configu
|
|
|
95
64
|
* @throws {RequiredError}
|
|
96
65
|
*/
|
|
97
66
|
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>;
|
|
114
67
|
};
|
|
115
68
|
/**
|
|
116
69
|
* ClaimPartnersApi - functional programming interface
|
|
@@ -127,17 +80,6 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
127
80
|
* @throws {RequiredError}
|
|
128
81
|
*/
|
|
129
82
|
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>>;
|
|
141
83
|
/**
|
|
142
84
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
143
85
|
* @summary Delete the claim partner
|
|
@@ -147,16 +89,6 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
147
89
|
* @throws {RequiredError}
|
|
148
90
|
*/
|
|
149
91
|
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>>;
|
|
160
92
|
/**
|
|
161
93
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
162
94
|
* @summary Retrieve the claim partner
|
|
@@ -166,16 +98,6 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
166
98
|
* @throws {RequiredError}
|
|
167
99
|
*/
|
|
168
100
|
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>>;
|
|
179
101
|
/**
|
|
180
102
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
181
103
|
* @summary List claim partners
|
|
@@ -191,22 +113,6 @@ export declare const ClaimPartnersApiFp: (configuration?: Configuration) => {
|
|
|
191
113
|
* @throws {RequiredError}
|
|
192
114
|
*/
|
|
193
115
|
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>>;
|
|
210
116
|
};
|
|
211
117
|
/**
|
|
212
118
|
* ClaimPartnersApi - factory interface
|
|
@@ -223,17 +129,6 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
223
129
|
* @throws {RequiredError}
|
|
224
130
|
*/
|
|
225
131
|
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>;
|
|
237
132
|
/**
|
|
238
133
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
239
134
|
* @summary Delete the claim partner
|
|
@@ -243,16 +138,6 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
243
138
|
* @throws {RequiredError}
|
|
244
139
|
*/
|
|
245
140
|
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>;
|
|
256
141
|
/**
|
|
257
142
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
258
143
|
* @summary Retrieve the claim partner
|
|
@@ -262,16 +147,6 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
262
147
|
* @throws {RequiredError}
|
|
263
148
|
*/
|
|
264
149
|
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>;
|
|
275
150
|
/**
|
|
276
151
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
277
152
|
* @summary List claim partners
|
|
@@ -287,22 +162,6 @@ export declare const ClaimPartnersApiFactory: (configuration?: Configuration, ba
|
|
|
287
162
|
* @throws {RequiredError}
|
|
288
163
|
*/
|
|
289
164
|
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>;
|
|
306
165
|
};
|
|
307
166
|
/**
|
|
308
167
|
* Request parameters for createClaimPartner operation in ClaimPartnersApi.
|
|
@@ -329,31 +188,6 @@ export interface ClaimPartnersApiCreateClaimPartnerRequest {
|
|
|
329
188
|
*/
|
|
330
189
|
readonly authorization?: string;
|
|
331
190
|
}
|
|
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
|
-
}
|
|
357
191
|
/**
|
|
358
192
|
* Request parameters for deleteClaimPartner operation in ClaimPartnersApi.
|
|
359
193
|
* @export
|
|
@@ -373,25 +207,6 @@ export interface ClaimPartnersApiDeleteClaimPartnerRequest {
|
|
|
373
207
|
*/
|
|
374
208
|
readonly authorization?: string;
|
|
375
209
|
}
|
|
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
|
-
}
|
|
395
210
|
/**
|
|
396
211
|
* Request parameters for getClaimPartner operation in ClaimPartnersApi.
|
|
397
212
|
* @export
|
|
@@ -411,25 +226,6 @@ export interface ClaimPartnersApiGetClaimPartnerRequest {
|
|
|
411
226
|
*/
|
|
412
227
|
readonly authorization?: string;
|
|
413
228
|
}
|
|
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
|
-
}
|
|
433
229
|
/**
|
|
434
230
|
* Request parameters for listClaimPartners operation in ClaimPartnersApi.
|
|
435
231
|
* @export
|
|
@@ -485,61 +281,6 @@ export interface ClaimPartnersApiListClaimPartnersRequest {
|
|
|
485
281
|
*/
|
|
486
282
|
readonly filters?: string;
|
|
487
283
|
}
|
|
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
|
-
}
|
|
543
284
|
/**
|
|
544
285
|
* ClaimPartnersApi - object-oriented interface
|
|
545
286
|
* @export
|
|
@@ -556,16 +297,6 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
556
297
|
* @memberof ClaimPartnersApi
|
|
557
298
|
*/
|
|
558
299
|
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, {}>>;
|
|
569
300
|
/**
|
|
570
301
|
* Permanently deletes the claim partner. Supply the unique id that was returned when you created the claim partner and this will delete it. **Required Permissions** \"claim-management.partners.delete\"
|
|
571
302
|
* @summary Delete the claim partner
|
|
@@ -575,16 +306,6 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
575
306
|
* @memberof ClaimPartnersApi
|
|
576
307
|
*/
|
|
577
308
|
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, {}>>;
|
|
588
309
|
/**
|
|
589
310
|
* Retrieves the details of the claim partner that was previously created. Supply the unique claim partner id that was returned when you created it and Emil Api will return the corresponding claim partner information. **Required Permissions** \"claim-management.partners.view\"
|
|
590
311
|
* @summary Retrieve the claim partner
|
|
@@ -594,16 +315,6 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
594
315
|
* @memberof ClaimPartnersApi
|
|
595
316
|
*/
|
|
596
317
|
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, {}>>;
|
|
607
318
|
/**
|
|
608
319
|
* Returns a list of claim partners you have previously created. The claim partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.partners.view\"
|
|
609
320
|
* @summary List claim partners
|
|
@@ -613,14 +324,4 @@ export declare class ClaimPartnersApi extends BaseAPI {
|
|
|
613
324
|
* @memberof ClaimPartnersApi
|
|
614
325
|
*/
|
|
615
326
|
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, {}>>;
|
|
626
327
|
}
|