@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
|
@@ -34,6 +34,16 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
|
|
|
34
34
|
* @throws {RequiredError}
|
|
35
35
|
*/
|
|
36
36
|
createClaimStatus: (createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
37
|
+
/**
|
|
38
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
39
|
+
* @summary Create the claim status
|
|
40
|
+
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
41
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
42
|
+
* @param {*} [options] Override http request option.
|
|
43
|
+
* @deprecated
|
|
44
|
+
* @throws {RequiredError}
|
|
45
|
+
*/
|
|
46
|
+
createClaimStatus1: (createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
37
47
|
/**
|
|
38
48
|
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
39
49
|
* @summary Delete the claim status
|
|
@@ -43,6 +53,16 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
|
|
|
43
53
|
* @throws {RequiredError}
|
|
44
54
|
*/
|
|
45
55
|
deleteClaimStatus: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
|
+
/**
|
|
57
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
58
|
+
* @summary Delete the claim status
|
|
59
|
+
* @param {number} id
|
|
60
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
61
|
+
* @param {*} [options] Override http request option.
|
|
62
|
+
* @deprecated
|
|
63
|
+
* @throws {RequiredError}
|
|
64
|
+
*/
|
|
65
|
+
deleteClaimStatus1: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
46
66
|
/**
|
|
47
67
|
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
48
68
|
* @summary Retrieve the claim status
|
|
@@ -52,6 +72,16 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
|
|
|
52
72
|
* @throws {RequiredError}
|
|
53
73
|
*/
|
|
54
74
|
getClaimStatus: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
75
|
+
/**
|
|
76
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
77
|
+
* @summary Retrieve the claim status
|
|
78
|
+
* @param {number} id
|
|
79
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
80
|
+
* @param {*} [options] Override http request option.
|
|
81
|
+
* @deprecated
|
|
82
|
+
* @throws {RequiredError}
|
|
83
|
+
*/
|
|
84
|
+
getClaimStatus1: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
85
|
/**
|
|
56
86
|
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
57
87
|
* @summary List claim statuses
|
|
@@ -67,6 +97,22 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
|
|
|
67
97
|
* @throws {RequiredError}
|
|
68
98
|
*/
|
|
69
99
|
listClaimStatuses: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
100
|
+
/**
|
|
101
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
102
|
+
* @summary List claim statuses
|
|
103
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
104
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
105
|
+
* @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.
|
|
106
|
+
* @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: id, name, productSlug</i>
|
|
107
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
108
|
+
* @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</i>
|
|
109
|
+
* @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/>
|
|
110
|
+
* @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: id, name, productSlug</i>
|
|
111
|
+
* @param {*} [options] Override http request option.
|
|
112
|
+
* @deprecated
|
|
113
|
+
* @throws {RequiredError}
|
|
114
|
+
*/
|
|
115
|
+
listClaimStatuses1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
116
|
/**
|
|
71
117
|
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
72
118
|
* @summary Patch claim status
|
|
@@ -77,6 +123,17 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
|
|
|
77
123
|
* @throws {RequiredError}
|
|
78
124
|
*/
|
|
79
125
|
patchClaimStatus: (id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
126
|
+
/**
|
|
127
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
128
|
+
* @summary Patch claim status
|
|
129
|
+
* @param {number} id
|
|
130
|
+
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
131
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
132
|
+
* @param {*} [options] Override http request option.
|
|
133
|
+
* @deprecated
|
|
134
|
+
* @throws {RequiredError}
|
|
135
|
+
*/
|
|
136
|
+
patchClaimStatus1: (id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
80
137
|
/**
|
|
81
138
|
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
82
139
|
* @summary Update the claim status
|
|
@@ -87,6 +144,17 @@ export declare const ClaimStatusesApiAxiosParamCreator: (configuration?: Configu
|
|
|
87
144
|
* @throws {RequiredError}
|
|
88
145
|
*/
|
|
89
146
|
updateClaimStatus: (id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
147
|
+
/**
|
|
148
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
149
|
+
* @summary Update the claim status
|
|
150
|
+
* @param {number} id
|
|
151
|
+
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
152
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
153
|
+
* @param {*} [options] Override http request option.
|
|
154
|
+
* @deprecated
|
|
155
|
+
* @throws {RequiredError}
|
|
156
|
+
*/
|
|
157
|
+
updateClaimStatus1: (id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
90
158
|
};
|
|
91
159
|
/**
|
|
92
160
|
* ClaimStatusesApi - functional programming interface
|
|
@@ -102,6 +170,16 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
|
|
|
102
170
|
* @throws {RequiredError}
|
|
103
171
|
*/
|
|
104
172
|
createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimStatusResponseClass>>;
|
|
173
|
+
/**
|
|
174
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
175
|
+
* @summary Create the claim status
|
|
176
|
+
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
177
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
178
|
+
* @param {*} [options] Override http request option.
|
|
179
|
+
* @deprecated
|
|
180
|
+
* @throws {RequiredError}
|
|
181
|
+
*/
|
|
182
|
+
createClaimStatus1(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateClaimStatusResponseClass>>;
|
|
105
183
|
/**
|
|
106
184
|
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
107
185
|
* @summary Delete the claim status
|
|
@@ -111,6 +189,16 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
|
|
|
111
189
|
* @throws {RequiredError}
|
|
112
190
|
*/
|
|
113
191
|
deleteClaimStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
192
|
+
/**
|
|
193
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
194
|
+
* @summary Delete the claim status
|
|
195
|
+
* @param {number} id
|
|
196
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
197
|
+
* @param {*} [options] Override http request option.
|
|
198
|
+
* @deprecated
|
|
199
|
+
* @throws {RequiredError}
|
|
200
|
+
*/
|
|
201
|
+
deleteClaimStatus1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
114
202
|
/**
|
|
115
203
|
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
116
204
|
* @summary Retrieve the claim status
|
|
@@ -120,6 +208,16 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
|
|
|
120
208
|
* @throws {RequiredError}
|
|
121
209
|
*/
|
|
122
210
|
getClaimStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimStatusResponseClass>>;
|
|
211
|
+
/**
|
|
212
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
213
|
+
* @summary Retrieve the claim status
|
|
214
|
+
* @param {number} id
|
|
215
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
216
|
+
* @param {*} [options] Override http request option.
|
|
217
|
+
* @deprecated
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
getClaimStatus1(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimStatusResponseClass>>;
|
|
123
221
|
/**
|
|
124
222
|
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
125
223
|
* @summary List claim statuses
|
|
@@ -135,6 +233,22 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
|
|
|
135
233
|
* @throws {RequiredError}
|
|
136
234
|
*/
|
|
137
235
|
listClaimStatuses(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimStatusesResponseClass>>;
|
|
236
|
+
/**
|
|
237
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
238
|
+
* @summary List claim statuses
|
|
239
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
240
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
241
|
+
* @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.
|
|
242
|
+
* @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: id, name, productSlug</i>
|
|
243
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
244
|
+
* @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</i>
|
|
245
|
+
* @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/>
|
|
246
|
+
* @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: id, name, productSlug</i>
|
|
247
|
+
* @param {*} [options] Override http request option.
|
|
248
|
+
* @deprecated
|
|
249
|
+
* @throws {RequiredError}
|
|
250
|
+
*/
|
|
251
|
+
listClaimStatuses1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimStatusesResponseClass>>;
|
|
138
252
|
/**
|
|
139
253
|
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
140
254
|
* @summary Patch claim status
|
|
@@ -145,6 +259,17 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
|
|
|
145
259
|
* @throws {RequiredError}
|
|
146
260
|
*/
|
|
147
261
|
patchClaimStatus(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimStatusResponseClass>>;
|
|
262
|
+
/**
|
|
263
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
264
|
+
* @summary Patch claim status
|
|
265
|
+
* @param {number} id
|
|
266
|
+
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
267
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
268
|
+
* @param {*} [options] Override http request option.
|
|
269
|
+
* @deprecated
|
|
270
|
+
* @throws {RequiredError}
|
|
271
|
+
*/
|
|
272
|
+
patchClaimStatus1(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PatchClaimStatusResponseClass>>;
|
|
148
273
|
/**
|
|
149
274
|
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
150
275
|
* @summary Update the claim status
|
|
@@ -155,6 +280,17 @@ export declare const ClaimStatusesApiFp: (configuration?: Configuration) => {
|
|
|
155
280
|
* @throws {RequiredError}
|
|
156
281
|
*/
|
|
157
282
|
updateClaimStatus(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimStatusResponseClass>>;
|
|
283
|
+
/**
|
|
284
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
285
|
+
* @summary Update the claim status
|
|
286
|
+
* @param {number} id
|
|
287
|
+
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
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
|
+
updateClaimStatus1(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateClaimStatusResponseClass>>;
|
|
158
294
|
};
|
|
159
295
|
/**
|
|
160
296
|
* ClaimStatusesApi - factory interface
|
|
@@ -170,6 +306,16 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
|
|
|
170
306
|
* @throws {RequiredError}
|
|
171
307
|
*/
|
|
172
308
|
createClaimStatus(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimStatusResponseClass>;
|
|
309
|
+
/**
|
|
310
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
311
|
+
* @summary Create the claim status
|
|
312
|
+
* @param {CreateClaimStatusRequestDto} createClaimStatusRequestDto
|
|
313
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
314
|
+
* @param {*} [options] Override http request option.
|
|
315
|
+
* @deprecated
|
|
316
|
+
* @throws {RequiredError}
|
|
317
|
+
*/
|
|
318
|
+
createClaimStatus1(createClaimStatusRequestDto: CreateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<CreateClaimStatusResponseClass>;
|
|
173
319
|
/**
|
|
174
320
|
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
175
321
|
* @summary Delete the claim status
|
|
@@ -179,6 +325,16 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
|
|
|
179
325
|
* @throws {RequiredError}
|
|
180
326
|
*/
|
|
181
327
|
deleteClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<void>;
|
|
328
|
+
/**
|
|
329
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
330
|
+
* @summary Delete the claim status
|
|
331
|
+
* @param {number} id
|
|
332
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
333
|
+
* @param {*} [options] Override http request option.
|
|
334
|
+
* @deprecated
|
|
335
|
+
* @throws {RequiredError}
|
|
336
|
+
*/
|
|
337
|
+
deleteClaimStatus1(id: number, authorization?: string, options?: any): AxiosPromise<void>;
|
|
182
338
|
/**
|
|
183
339
|
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
184
340
|
* @summary Retrieve the claim status
|
|
@@ -188,6 +344,16 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
|
|
|
188
344
|
* @throws {RequiredError}
|
|
189
345
|
*/
|
|
190
346
|
getClaimStatus(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimStatusResponseClass>;
|
|
347
|
+
/**
|
|
348
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
349
|
+
* @summary Retrieve the claim status
|
|
350
|
+
* @param {number} id
|
|
351
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
352
|
+
* @param {*} [options] Override http request option.
|
|
353
|
+
* @deprecated
|
|
354
|
+
* @throws {RequiredError}
|
|
355
|
+
*/
|
|
356
|
+
getClaimStatus1(id: number, authorization?: string, options?: any): AxiosPromise<GetClaimStatusResponseClass>;
|
|
191
357
|
/**
|
|
192
358
|
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
193
359
|
* @summary List claim statuses
|
|
@@ -203,6 +369,22 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
|
|
|
203
369
|
* @throws {RequiredError}
|
|
204
370
|
*/
|
|
205
371
|
listClaimStatuses(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimStatusesResponseClass>;
|
|
372
|
+
/**
|
|
373
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
374
|
+
* @summary List claim statuses
|
|
375
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
376
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
377
|
+
* @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.
|
|
378
|
+
* @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: id, name, productSlug</i>
|
|
379
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
380
|
+
* @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</i>
|
|
381
|
+
* @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/>
|
|
382
|
+
* @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: id, name, productSlug</i>
|
|
383
|
+
* @param {*} [options] Override http request option.
|
|
384
|
+
* @deprecated
|
|
385
|
+
* @throws {RequiredError}
|
|
386
|
+
*/
|
|
387
|
+
listClaimStatuses1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimStatusesResponseClass>;
|
|
206
388
|
/**
|
|
207
389
|
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
208
390
|
* @summary Patch claim status
|
|
@@ -213,6 +395,17 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
|
|
|
213
395
|
* @throws {RequiredError}
|
|
214
396
|
*/
|
|
215
397
|
patchClaimStatus(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimStatusResponseClass>;
|
|
398
|
+
/**
|
|
399
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
400
|
+
* @summary Patch claim status
|
|
401
|
+
* @param {number} id
|
|
402
|
+
* @param {PatchClaimStatusRequestDto} patchClaimStatusRequestDto
|
|
403
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
404
|
+
* @param {*} [options] Override http request option.
|
|
405
|
+
* @deprecated
|
|
406
|
+
* @throws {RequiredError}
|
|
407
|
+
*/
|
|
408
|
+
patchClaimStatus1(id: number, patchClaimStatusRequestDto: PatchClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<PatchClaimStatusResponseClass>;
|
|
216
409
|
/**
|
|
217
410
|
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
218
411
|
* @summary Update the claim status
|
|
@@ -223,6 +416,17 @@ export declare const ClaimStatusesApiFactory: (configuration?: Configuration, ba
|
|
|
223
416
|
* @throws {RequiredError}
|
|
224
417
|
*/
|
|
225
418
|
updateClaimStatus(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimStatusResponseClass>;
|
|
419
|
+
/**
|
|
420
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
421
|
+
* @summary Update the claim status
|
|
422
|
+
* @param {number} id
|
|
423
|
+
* @param {UpdateClaimStatusRequestDto} updateClaimStatusRequestDto
|
|
424
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
425
|
+
* @param {*} [options] Override http request option.
|
|
426
|
+
* @deprecated
|
|
427
|
+
* @throws {RequiredError}
|
|
428
|
+
*/
|
|
429
|
+
updateClaimStatus1(id: number, updateClaimStatusRequestDto: UpdateClaimStatusRequestDto, authorization?: string, options?: any): AxiosPromise<UpdateClaimStatusResponseClass>;
|
|
226
430
|
};
|
|
227
431
|
/**
|
|
228
432
|
* Request parameters for createClaimStatus operation in ClaimStatusesApi.
|
|
@@ -243,6 +447,25 @@ export interface ClaimStatusesApiCreateClaimStatusRequest {
|
|
|
243
447
|
*/
|
|
244
448
|
readonly authorization?: string;
|
|
245
449
|
}
|
|
450
|
+
/**
|
|
451
|
+
* Request parameters for createClaimStatus1 operation in ClaimStatusesApi.
|
|
452
|
+
* @export
|
|
453
|
+
* @interface ClaimStatusesApiCreateClaimStatus1Request
|
|
454
|
+
*/
|
|
455
|
+
export interface ClaimStatusesApiCreateClaimStatus1Request {
|
|
456
|
+
/**
|
|
457
|
+
*
|
|
458
|
+
* @type {CreateClaimStatusRequestDto}
|
|
459
|
+
* @memberof ClaimStatusesApiCreateClaimStatus1
|
|
460
|
+
*/
|
|
461
|
+
readonly createClaimStatusRequestDto: CreateClaimStatusRequestDto;
|
|
462
|
+
/**
|
|
463
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
464
|
+
* @type {string}
|
|
465
|
+
* @memberof ClaimStatusesApiCreateClaimStatus1
|
|
466
|
+
*/
|
|
467
|
+
readonly authorization?: string;
|
|
468
|
+
}
|
|
246
469
|
/**
|
|
247
470
|
* Request parameters for deleteClaimStatus operation in ClaimStatusesApi.
|
|
248
471
|
* @export
|
|
@@ -262,6 +485,25 @@ export interface ClaimStatusesApiDeleteClaimStatusRequest {
|
|
|
262
485
|
*/
|
|
263
486
|
readonly authorization?: string;
|
|
264
487
|
}
|
|
488
|
+
/**
|
|
489
|
+
* Request parameters for deleteClaimStatus1 operation in ClaimStatusesApi.
|
|
490
|
+
* @export
|
|
491
|
+
* @interface ClaimStatusesApiDeleteClaimStatus1Request
|
|
492
|
+
*/
|
|
493
|
+
export interface ClaimStatusesApiDeleteClaimStatus1Request {
|
|
494
|
+
/**
|
|
495
|
+
*
|
|
496
|
+
* @type {number}
|
|
497
|
+
* @memberof ClaimStatusesApiDeleteClaimStatus1
|
|
498
|
+
*/
|
|
499
|
+
readonly id: number;
|
|
500
|
+
/**
|
|
501
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
502
|
+
* @type {string}
|
|
503
|
+
* @memberof ClaimStatusesApiDeleteClaimStatus1
|
|
504
|
+
*/
|
|
505
|
+
readonly authorization?: string;
|
|
506
|
+
}
|
|
265
507
|
/**
|
|
266
508
|
* Request parameters for getClaimStatus operation in ClaimStatusesApi.
|
|
267
509
|
* @export
|
|
@@ -281,6 +523,25 @@ export interface ClaimStatusesApiGetClaimStatusRequest {
|
|
|
281
523
|
*/
|
|
282
524
|
readonly authorization?: string;
|
|
283
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
* Request parameters for getClaimStatus1 operation in ClaimStatusesApi.
|
|
528
|
+
* @export
|
|
529
|
+
* @interface ClaimStatusesApiGetClaimStatus1Request
|
|
530
|
+
*/
|
|
531
|
+
export interface ClaimStatusesApiGetClaimStatus1Request {
|
|
532
|
+
/**
|
|
533
|
+
*
|
|
534
|
+
* @type {number}
|
|
535
|
+
* @memberof ClaimStatusesApiGetClaimStatus1
|
|
536
|
+
*/
|
|
537
|
+
readonly id: number;
|
|
538
|
+
/**
|
|
539
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
540
|
+
* @type {string}
|
|
541
|
+
* @memberof ClaimStatusesApiGetClaimStatus1
|
|
542
|
+
*/
|
|
543
|
+
readonly authorization?: string;
|
|
544
|
+
}
|
|
284
545
|
/**
|
|
285
546
|
* Request parameters for listClaimStatuses operation in ClaimStatusesApi.
|
|
286
547
|
* @export
|
|
@@ -336,6 +597,61 @@ export interface ClaimStatusesApiListClaimStatusesRequest {
|
|
|
336
597
|
*/
|
|
337
598
|
readonly filters?: string;
|
|
338
599
|
}
|
|
600
|
+
/**
|
|
601
|
+
* Request parameters for listClaimStatuses1 operation in ClaimStatusesApi.
|
|
602
|
+
* @export
|
|
603
|
+
* @interface ClaimStatusesApiListClaimStatuses1Request
|
|
604
|
+
*/
|
|
605
|
+
export interface ClaimStatusesApiListClaimStatuses1Request {
|
|
606
|
+
/**
|
|
607
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
608
|
+
* @type {string}
|
|
609
|
+
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
610
|
+
*/
|
|
611
|
+
readonly authorization?: string;
|
|
612
|
+
/**
|
|
613
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
614
|
+
* @type {number}
|
|
615
|
+
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
616
|
+
*/
|
|
617
|
+
readonly pageSize?: number;
|
|
618
|
+
/**
|
|
619
|
+
* 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.
|
|
620
|
+
* @type {string}
|
|
621
|
+
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
622
|
+
*/
|
|
623
|
+
readonly pageToken?: string;
|
|
624
|
+
/**
|
|
625
|
+
* 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: id, name, productSlug</i>
|
|
626
|
+
* @type {string}
|
|
627
|
+
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
628
|
+
*/
|
|
629
|
+
readonly filter?: string;
|
|
630
|
+
/**
|
|
631
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
632
|
+
* @type {string}
|
|
633
|
+
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
634
|
+
*/
|
|
635
|
+
readonly search?: string;
|
|
636
|
+
/**
|
|
637
|
+
* 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</i>
|
|
638
|
+
* @type {string}
|
|
639
|
+
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
640
|
+
*/
|
|
641
|
+
readonly order?: string;
|
|
642
|
+
/**
|
|
643
|
+
* 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/>
|
|
644
|
+
* @type {string}
|
|
645
|
+
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
646
|
+
*/
|
|
647
|
+
readonly expand?: string;
|
|
648
|
+
/**
|
|
649
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, name, productSlug</i>
|
|
650
|
+
* @type {string}
|
|
651
|
+
* @memberof ClaimStatusesApiListClaimStatuses1
|
|
652
|
+
*/
|
|
653
|
+
readonly filters?: string;
|
|
654
|
+
}
|
|
339
655
|
/**
|
|
340
656
|
* Request parameters for patchClaimStatus operation in ClaimStatusesApi.
|
|
341
657
|
* @export
|
|
@@ -361,6 +677,31 @@ export interface ClaimStatusesApiPatchClaimStatusRequest {
|
|
|
361
677
|
*/
|
|
362
678
|
readonly authorization?: string;
|
|
363
679
|
}
|
|
680
|
+
/**
|
|
681
|
+
* Request parameters for patchClaimStatus1 operation in ClaimStatusesApi.
|
|
682
|
+
* @export
|
|
683
|
+
* @interface ClaimStatusesApiPatchClaimStatus1Request
|
|
684
|
+
*/
|
|
685
|
+
export interface ClaimStatusesApiPatchClaimStatus1Request {
|
|
686
|
+
/**
|
|
687
|
+
*
|
|
688
|
+
* @type {number}
|
|
689
|
+
* @memberof ClaimStatusesApiPatchClaimStatus1
|
|
690
|
+
*/
|
|
691
|
+
readonly id: number;
|
|
692
|
+
/**
|
|
693
|
+
*
|
|
694
|
+
* @type {PatchClaimStatusRequestDto}
|
|
695
|
+
* @memberof ClaimStatusesApiPatchClaimStatus1
|
|
696
|
+
*/
|
|
697
|
+
readonly patchClaimStatusRequestDto: PatchClaimStatusRequestDto;
|
|
698
|
+
/**
|
|
699
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
700
|
+
* @type {string}
|
|
701
|
+
* @memberof ClaimStatusesApiPatchClaimStatus1
|
|
702
|
+
*/
|
|
703
|
+
readonly authorization?: string;
|
|
704
|
+
}
|
|
364
705
|
/**
|
|
365
706
|
* Request parameters for updateClaimStatus operation in ClaimStatusesApi.
|
|
366
707
|
* @export
|
|
@@ -386,6 +727,31 @@ export interface ClaimStatusesApiUpdateClaimStatusRequest {
|
|
|
386
727
|
*/
|
|
387
728
|
readonly authorization?: string;
|
|
388
729
|
}
|
|
730
|
+
/**
|
|
731
|
+
* Request parameters for updateClaimStatus1 operation in ClaimStatusesApi.
|
|
732
|
+
* @export
|
|
733
|
+
* @interface ClaimStatusesApiUpdateClaimStatus1Request
|
|
734
|
+
*/
|
|
735
|
+
export interface ClaimStatusesApiUpdateClaimStatus1Request {
|
|
736
|
+
/**
|
|
737
|
+
*
|
|
738
|
+
* @type {number}
|
|
739
|
+
* @memberof ClaimStatusesApiUpdateClaimStatus1
|
|
740
|
+
*/
|
|
741
|
+
readonly id: number;
|
|
742
|
+
/**
|
|
743
|
+
*
|
|
744
|
+
* @type {UpdateClaimStatusRequestDto}
|
|
745
|
+
* @memberof ClaimStatusesApiUpdateClaimStatus1
|
|
746
|
+
*/
|
|
747
|
+
readonly updateClaimStatusRequestDto: UpdateClaimStatusRequestDto;
|
|
748
|
+
/**
|
|
749
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
750
|
+
* @type {string}
|
|
751
|
+
* @memberof ClaimStatusesApiUpdateClaimStatus1
|
|
752
|
+
*/
|
|
753
|
+
readonly authorization?: string;
|
|
754
|
+
}
|
|
389
755
|
/**
|
|
390
756
|
* ClaimStatusesApi - object-oriented interface
|
|
391
757
|
* @export
|
|
@@ -402,6 +768,16 @@ export declare class ClaimStatusesApi extends BaseAPI {
|
|
|
402
768
|
* @memberof ClaimStatusesApi
|
|
403
769
|
*/
|
|
404
770
|
createClaimStatus(requestParameters: ClaimStatusesApiCreateClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimStatusResponseClass, any, {}>>;
|
|
771
|
+
/**
|
|
772
|
+
* This creates a claim status in the database **Required Permissions** \"claim-management.statuses.create\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
773
|
+
* @summary Create the claim status
|
|
774
|
+
* @param {ClaimStatusesApiCreateClaimStatus1Request} requestParameters Request parameters.
|
|
775
|
+
* @param {*} [options] Override http request option.
|
|
776
|
+
* @deprecated
|
|
777
|
+
* @throws {RequiredError}
|
|
778
|
+
* @memberof ClaimStatusesApi
|
|
779
|
+
*/
|
|
780
|
+
createClaimStatus1(requestParameters: ClaimStatusesApiCreateClaimStatus1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateClaimStatusResponseClass, any, {}>>;
|
|
405
781
|
/**
|
|
406
782
|
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\"
|
|
407
783
|
* @summary Delete the claim status
|
|
@@ -411,6 +787,16 @@ export declare class ClaimStatusesApi extends BaseAPI {
|
|
|
411
787
|
* @memberof ClaimStatusesApi
|
|
412
788
|
*/
|
|
413
789
|
deleteClaimStatus(requestParameters: ClaimStatusesApiDeleteClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
790
|
+
/**
|
|
791
|
+
* Permanently deletes the claim status. Supply the unique id that was returned when you created the claim status and this will delete it. **Required Permissions** \"claim-management.statuses.delete\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
792
|
+
* @summary Delete the claim status
|
|
793
|
+
* @param {ClaimStatusesApiDeleteClaimStatus1Request} requestParameters Request parameters.
|
|
794
|
+
* @param {*} [options] Override http request option.
|
|
795
|
+
* @deprecated
|
|
796
|
+
* @throws {RequiredError}
|
|
797
|
+
* @memberof ClaimStatusesApi
|
|
798
|
+
*/
|
|
799
|
+
deleteClaimStatus1(requestParameters: ClaimStatusesApiDeleteClaimStatus1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
414
800
|
/**
|
|
415
801
|
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\"
|
|
416
802
|
* @summary Retrieve the claim status
|
|
@@ -420,6 +806,16 @@ export declare class ClaimStatusesApi extends BaseAPI {
|
|
|
420
806
|
* @memberof ClaimStatusesApi
|
|
421
807
|
*/
|
|
422
808
|
getClaimStatus(requestParameters: ClaimStatusesApiGetClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimStatusResponseClass, any, {}>>;
|
|
809
|
+
/**
|
|
810
|
+
* Retrieves the details of the claim status that was previously created. Supply the unique claim status id that was returned when you created it and Emil Api will return the corresponding claim status information. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
811
|
+
* @summary Retrieve the claim status
|
|
812
|
+
* @param {ClaimStatusesApiGetClaimStatus1Request} requestParameters Request parameters.
|
|
813
|
+
* @param {*} [options] Override http request option.
|
|
814
|
+
* @deprecated
|
|
815
|
+
* @throws {RequiredError}
|
|
816
|
+
* @memberof ClaimStatusesApi
|
|
817
|
+
*/
|
|
818
|
+
getClaimStatus1(requestParameters: ClaimStatusesApiGetClaimStatus1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimStatusResponseClass, any, {}>>;
|
|
423
819
|
/**
|
|
424
820
|
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\"
|
|
425
821
|
* @summary List claim statuses
|
|
@@ -429,6 +825,16 @@ export declare class ClaimStatusesApi extends BaseAPI {
|
|
|
429
825
|
* @memberof ClaimStatusesApi
|
|
430
826
|
*/
|
|
431
827
|
listClaimStatuses(requestParameters?: ClaimStatusesApiListClaimStatusesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimStatusesResponseClass, any, {}>>;
|
|
828
|
+
/**
|
|
829
|
+
* Returns a list of claim statuses you have previously created. The claim statuses are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"claim-management.statuses.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
830
|
+
* @summary List claim statuses
|
|
831
|
+
* @param {ClaimStatusesApiListClaimStatuses1Request} requestParameters Request parameters.
|
|
832
|
+
* @param {*} [options] Override http request option.
|
|
833
|
+
* @deprecated
|
|
834
|
+
* @throws {RequiredError}
|
|
835
|
+
* @memberof ClaimStatusesApi
|
|
836
|
+
*/
|
|
837
|
+
listClaimStatuses1(requestParameters?: ClaimStatusesApiListClaimStatuses1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimStatusesResponseClass, any, {}>>;
|
|
432
838
|
/**
|
|
433
839
|
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
434
840
|
* @summary Patch claim status
|
|
@@ -438,6 +844,16 @@ export declare class ClaimStatusesApi extends BaseAPI {
|
|
|
438
844
|
* @memberof ClaimStatusesApi
|
|
439
845
|
*/
|
|
440
846
|
patchClaimStatus(requestParameters: ClaimStatusesApiPatchClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchClaimStatusResponseClass, any, {}>>;
|
|
847
|
+
/**
|
|
848
|
+
* This will patch the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
849
|
+
* @summary Patch claim status
|
|
850
|
+
* @param {ClaimStatusesApiPatchClaimStatus1Request} requestParameters Request parameters.
|
|
851
|
+
* @param {*} [options] Override http request option.
|
|
852
|
+
* @deprecated
|
|
853
|
+
* @throws {RequiredError}
|
|
854
|
+
* @memberof ClaimStatusesApi
|
|
855
|
+
*/
|
|
856
|
+
patchClaimStatus1(requestParameters: ClaimStatusesApiPatchClaimStatus1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchClaimStatusResponseClass, any, {}>>;
|
|
441
857
|
/**
|
|
442
858
|
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\"
|
|
443
859
|
* @summary Update the claim status
|
|
@@ -447,4 +863,14 @@ export declare class ClaimStatusesApi extends BaseAPI {
|
|
|
447
863
|
* @memberof ClaimStatusesApi
|
|
448
864
|
*/
|
|
449
865
|
updateClaimStatus(requestParameters: ClaimStatusesApiUpdateClaimStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimStatusResponseClass, any, {}>>;
|
|
866
|
+
/**
|
|
867
|
+
* This will update the identified claim status in the database **Required Permissions** \"claim-management.statuses.update\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
868
|
+
* @summary Update the claim status
|
|
869
|
+
* @param {ClaimStatusesApiUpdateClaimStatus1Request} requestParameters Request parameters.
|
|
870
|
+
* @param {*} [options] Override http request option.
|
|
871
|
+
* @deprecated
|
|
872
|
+
* @throws {RequiredError}
|
|
873
|
+
* @memberof ClaimStatusesApi
|
|
874
|
+
*/
|
|
875
|
+
updateClaimStatus1(requestParameters: ClaimStatusesApiUpdateClaimStatus1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateClaimStatusResponseClass, any, {}>>;
|
|
450
876
|
}
|