@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
package/api.ts
CHANGED
|
@@ -24,8 +24,10 @@ import FormData from 'form-data'
|
|
|
24
24
|
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
|
|
25
25
|
// @ts-ignore
|
|
26
26
|
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base';
|
|
27
|
+
import { ClaimLimitUsagesApi } from './api';
|
|
27
28
|
import { ClaimPartnerRolesApi } from './api';
|
|
28
29
|
import { ClaimPartnersApi } from './api';
|
|
30
|
+
import { ClaimPositionsApi } from './api';
|
|
29
31
|
import { ClaimRegulationsApi } from './api';
|
|
30
32
|
import { ClaimStatusesApi } from './api';
|
|
31
33
|
import { ClaimsApi } from './api';
|
|
@@ -33,8 +35,10 @@ import { HealthCheckApi } from './api';
|
|
|
33
35
|
import { SettlementsApi } from './api';
|
|
34
36
|
|
|
35
37
|
|
|
38
|
+
export * from './api/claim-limit-usages-api';
|
|
36
39
|
export * from './api/claim-partner-roles-api';
|
|
37
40
|
export * from './api/claim-partners-api';
|
|
41
|
+
export * from './api/claim-positions-api';
|
|
38
42
|
export * from './api/claim-regulations-api';
|
|
39
43
|
export * from './api/claim-statuses-api';
|
|
40
44
|
export * from './api/claims-api';
|
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { GetClaimLimitUsageResponseClass } from '../models';
|
|
16
|
+
import { ListClaimLimitUsagesResponseClass } from '../models';
|
|
17
|
+
/**
|
|
18
|
+
* ClaimLimitUsagesApi - axios parameter creator
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
export declare const ClaimLimitUsagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
24
|
+
* @summary Retrieve the claim limit usage
|
|
25
|
+
* @param {string} code
|
|
26
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
27
|
+
* @param {*} [options] Override http request option.
|
|
28
|
+
* @throws {RequiredError}
|
|
29
|
+
*/
|
|
30
|
+
getClaimLimitUsage: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31
|
+
/**
|
|
32
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
33
|
+
* @summary Retrieve the claim limit usage
|
|
34
|
+
* @param {string} code
|
|
35
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
36
|
+
* @param {*} [options] Override http request option.
|
|
37
|
+
* @deprecated
|
|
38
|
+
* @throws {RequiredError}
|
|
39
|
+
*/
|
|
40
|
+
getClaimLimitUsage1: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
|
+
/**
|
|
42
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
43
|
+
* @summary List claim limit usages
|
|
44
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
45
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
46
|
+
* @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.
|
|
47
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
48
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
49
|
+
* @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
|
|
50
|
+
* @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/>
|
|
51
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
52
|
+
* @param {*} [options] Override http request option.
|
|
53
|
+
* @throws {RequiredError}
|
|
54
|
+
*/
|
|
55
|
+
listClaimLimitUsages: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
|
+
/**
|
|
57
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
58
|
+
* @summary List claim limit usages
|
|
59
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
60
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
61
|
+
* @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.
|
|
62
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
63
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
64
|
+
* @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
|
|
65
|
+
* @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/>
|
|
66
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
67
|
+
* @param {*} [options] Override http request option.
|
|
68
|
+
* @deprecated
|
|
69
|
+
* @throws {RequiredError}
|
|
70
|
+
*/
|
|
71
|
+
listClaimLimitUsages1: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* ClaimLimitUsagesApi - functional programming interface
|
|
75
|
+
* @export
|
|
76
|
+
*/
|
|
77
|
+
export declare const ClaimLimitUsagesApiFp: (configuration?: Configuration) => {
|
|
78
|
+
/**
|
|
79
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
80
|
+
* @summary Retrieve the claim limit usage
|
|
81
|
+
* @param {string} code
|
|
82
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
83
|
+
* @param {*} [options] Override http request option.
|
|
84
|
+
* @throws {RequiredError}
|
|
85
|
+
*/
|
|
86
|
+
getClaimLimitUsage(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>>;
|
|
87
|
+
/**
|
|
88
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
89
|
+
* @summary Retrieve the claim limit usage
|
|
90
|
+
* @param {string} code
|
|
91
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
92
|
+
* @param {*} [options] Override http request option.
|
|
93
|
+
* @deprecated
|
|
94
|
+
* @throws {RequiredError}
|
|
95
|
+
*/
|
|
96
|
+
getClaimLimitUsage1(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetClaimLimitUsageResponseClass>>;
|
|
97
|
+
/**
|
|
98
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
99
|
+
* @summary List claim limit usages
|
|
100
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
101
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
102
|
+
* @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.
|
|
103
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
104
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
105
|
+
* @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
|
|
106
|
+
* @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/>
|
|
107
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
108
|
+
* @param {*} [options] Override http request option.
|
|
109
|
+
* @throws {RequiredError}
|
|
110
|
+
*/
|
|
111
|
+
listClaimLimitUsages(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimLimitUsagesResponseClass>>;
|
|
112
|
+
/**
|
|
113
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
114
|
+
* @summary List claim limit usages
|
|
115
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
116
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
117
|
+
* @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.
|
|
118
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
119
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
120
|
+
* @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
|
|
121
|
+
* @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/>
|
|
122
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
123
|
+
* @param {*} [options] Override http request option.
|
|
124
|
+
* @deprecated
|
|
125
|
+
* @throws {RequiredError}
|
|
126
|
+
*/
|
|
127
|
+
listClaimLimitUsages1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListClaimLimitUsagesResponseClass>>;
|
|
128
|
+
};
|
|
129
|
+
/**
|
|
130
|
+
* ClaimLimitUsagesApi - factory interface
|
|
131
|
+
* @export
|
|
132
|
+
*/
|
|
133
|
+
export declare const ClaimLimitUsagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
134
|
+
/**
|
|
135
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
136
|
+
* @summary Retrieve the claim limit usage
|
|
137
|
+
* @param {string} code
|
|
138
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
139
|
+
* @param {*} [options] Override http request option.
|
|
140
|
+
* @throws {RequiredError}
|
|
141
|
+
*/
|
|
142
|
+
getClaimLimitUsage(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass>;
|
|
143
|
+
/**
|
|
144
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
145
|
+
* @summary Retrieve the claim limit usage
|
|
146
|
+
* @param {string} code
|
|
147
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
148
|
+
* @param {*} [options] Override http request option.
|
|
149
|
+
* @deprecated
|
|
150
|
+
* @throws {RequiredError}
|
|
151
|
+
*/
|
|
152
|
+
getClaimLimitUsage1(code: string, authorization?: string, options?: any): AxiosPromise<GetClaimLimitUsageResponseClass>;
|
|
153
|
+
/**
|
|
154
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
155
|
+
* @summary List claim limit usages
|
|
156
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
157
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
158
|
+
* @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.
|
|
159
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
160
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
161
|
+
* @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
|
|
162
|
+
* @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/>
|
|
163
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
164
|
+
* @param {*} [options] Override http request option.
|
|
165
|
+
* @throws {RequiredError}
|
|
166
|
+
*/
|
|
167
|
+
listClaimLimitUsages(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass>;
|
|
168
|
+
/**
|
|
169
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
170
|
+
* @summary List claim limit usages
|
|
171
|
+
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
172
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
173
|
+
* @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.
|
|
174
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
175
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
176
|
+
* @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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
|
|
177
|
+
* @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/>
|
|
178
|
+
* @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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
179
|
+
* @param {*} [options] Override http request option.
|
|
180
|
+
* @deprecated
|
|
181
|
+
* @throws {RequiredError}
|
|
182
|
+
*/
|
|
183
|
+
listClaimLimitUsages1(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListClaimLimitUsagesResponseClass>;
|
|
184
|
+
};
|
|
185
|
+
/**
|
|
186
|
+
* Request parameters for getClaimLimitUsage operation in ClaimLimitUsagesApi.
|
|
187
|
+
* @export
|
|
188
|
+
* @interface ClaimLimitUsagesApiGetClaimLimitUsageRequest
|
|
189
|
+
*/
|
|
190
|
+
export interface ClaimLimitUsagesApiGetClaimLimitUsageRequest {
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @type {string}
|
|
194
|
+
* @memberof ClaimLimitUsagesApiGetClaimLimitUsage
|
|
195
|
+
*/
|
|
196
|
+
readonly code: string;
|
|
197
|
+
/**
|
|
198
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
199
|
+
* @type {string}
|
|
200
|
+
* @memberof ClaimLimitUsagesApiGetClaimLimitUsage
|
|
201
|
+
*/
|
|
202
|
+
readonly authorization?: string;
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* Request parameters for getClaimLimitUsage1 operation in ClaimLimitUsagesApi.
|
|
206
|
+
* @export
|
|
207
|
+
* @interface ClaimLimitUsagesApiGetClaimLimitUsage1Request
|
|
208
|
+
*/
|
|
209
|
+
export interface ClaimLimitUsagesApiGetClaimLimitUsage1Request {
|
|
210
|
+
/**
|
|
211
|
+
*
|
|
212
|
+
* @type {string}
|
|
213
|
+
* @memberof ClaimLimitUsagesApiGetClaimLimitUsage1
|
|
214
|
+
*/
|
|
215
|
+
readonly code: string;
|
|
216
|
+
/**
|
|
217
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
218
|
+
* @type {string}
|
|
219
|
+
* @memberof ClaimLimitUsagesApiGetClaimLimitUsage1
|
|
220
|
+
*/
|
|
221
|
+
readonly authorization?: string;
|
|
222
|
+
}
|
|
223
|
+
/**
|
|
224
|
+
* Request parameters for listClaimLimitUsages operation in ClaimLimitUsagesApi.
|
|
225
|
+
* @export
|
|
226
|
+
* @interface ClaimLimitUsagesApiListClaimLimitUsagesRequest
|
|
227
|
+
*/
|
|
228
|
+
export interface ClaimLimitUsagesApiListClaimLimitUsagesRequest {
|
|
229
|
+
/**
|
|
230
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
231
|
+
* @type {string}
|
|
232
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
233
|
+
*/
|
|
234
|
+
readonly authorization?: string;
|
|
235
|
+
/**
|
|
236
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
237
|
+
* @type {number}
|
|
238
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
239
|
+
*/
|
|
240
|
+
readonly pageSize?: number;
|
|
241
|
+
/**
|
|
242
|
+
* 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.
|
|
243
|
+
* @type {string}
|
|
244
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
245
|
+
*/
|
|
246
|
+
readonly pageToken?: string;
|
|
247
|
+
/**
|
|
248
|
+
* 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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
249
|
+
* @type {string}
|
|
250
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
251
|
+
*/
|
|
252
|
+
readonly filter?: string;
|
|
253
|
+
/**
|
|
254
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
255
|
+
* @type {string}
|
|
256
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
257
|
+
*/
|
|
258
|
+
readonly search?: string;
|
|
259
|
+
/**
|
|
260
|
+
* 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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
|
|
261
|
+
* @type {string}
|
|
262
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
263
|
+
*/
|
|
264
|
+
readonly order?: string;
|
|
265
|
+
/**
|
|
266
|
+
* 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/>
|
|
267
|
+
* @type {string}
|
|
268
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
269
|
+
*/
|
|
270
|
+
readonly expand?: string;
|
|
271
|
+
/**
|
|
272
|
+
* 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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
273
|
+
* @type {string}
|
|
274
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages
|
|
275
|
+
*/
|
|
276
|
+
readonly filters?: string;
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* Request parameters for listClaimLimitUsages1 operation in ClaimLimitUsagesApi.
|
|
280
|
+
* @export
|
|
281
|
+
* @interface ClaimLimitUsagesApiListClaimLimitUsages1Request
|
|
282
|
+
*/
|
|
283
|
+
export interface ClaimLimitUsagesApiListClaimLimitUsages1Request {
|
|
284
|
+
/**
|
|
285
|
+
* Bearer Token: provided by the login endpoint under the name accessToken.
|
|
286
|
+
* @type {string}
|
|
287
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages1
|
|
288
|
+
*/
|
|
289
|
+
readonly authorization?: string;
|
|
290
|
+
/**
|
|
291
|
+
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
292
|
+
* @type {number}
|
|
293
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages1
|
|
294
|
+
*/
|
|
295
|
+
readonly pageSize?: number;
|
|
296
|
+
/**
|
|
297
|
+
* 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.
|
|
298
|
+
* @type {string}
|
|
299
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages1
|
|
300
|
+
*/
|
|
301
|
+
readonly pageToken?: string;
|
|
302
|
+
/**
|
|
303
|
+
* 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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
304
|
+
* @type {string}
|
|
305
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages1
|
|
306
|
+
*/
|
|
307
|
+
readonly filter?: string;
|
|
308
|
+
/**
|
|
309
|
+
* To search the list by any field, pass search=xxx to fetch the result.
|
|
310
|
+
* @type {string}
|
|
311
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages1
|
|
312
|
+
*/
|
|
313
|
+
readonly search?: string;
|
|
314
|
+
/**
|
|
315
|
+
* 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, code, createdAt, updatedAt, periodStart, periodEnd, remainingAmount</i>
|
|
316
|
+
* @type {string}
|
|
317
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages1
|
|
318
|
+
*/
|
|
319
|
+
readonly order?: string;
|
|
320
|
+
/**
|
|
321
|
+
* 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/>
|
|
322
|
+
* @type {string}
|
|
323
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages1
|
|
324
|
+
*/
|
|
325
|
+
readonly expand?: string;
|
|
326
|
+
/**
|
|
327
|
+
* 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, code, policyCode, type, tariffKey, categoryKey, period, claimCode, deductibleKey, periodStart, periodEnd, createdAt, updatedAt</i>
|
|
328
|
+
* @type {string}
|
|
329
|
+
* @memberof ClaimLimitUsagesApiListClaimLimitUsages1
|
|
330
|
+
*/
|
|
331
|
+
readonly filters?: string;
|
|
332
|
+
}
|
|
333
|
+
/**
|
|
334
|
+
* ClaimLimitUsagesApi - object-oriented interface
|
|
335
|
+
* @export
|
|
336
|
+
* @class ClaimLimitUsagesApi
|
|
337
|
+
* @extends {BaseAPI}
|
|
338
|
+
*/
|
|
339
|
+
export declare class ClaimLimitUsagesApi extends BaseAPI {
|
|
340
|
+
/**
|
|
341
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\"
|
|
342
|
+
* @summary Retrieve the claim limit usage
|
|
343
|
+
* @param {ClaimLimitUsagesApiGetClaimLimitUsageRequest} requestParameters Request parameters.
|
|
344
|
+
* @param {*} [options] Override http request option.
|
|
345
|
+
* @throws {RequiredError}
|
|
346
|
+
* @memberof ClaimLimitUsagesApi
|
|
347
|
+
*/
|
|
348
|
+
getClaimLimitUsage(requestParameters: ClaimLimitUsagesApiGetClaimLimitUsageRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimLimitUsageResponseClass, any, {}>>;
|
|
349
|
+
/**
|
|
350
|
+
* This will get claim limit usage. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
351
|
+
* @summary Retrieve the claim limit usage
|
|
352
|
+
* @param {ClaimLimitUsagesApiGetClaimLimitUsage1Request} requestParameters Request parameters.
|
|
353
|
+
* @param {*} [options] Override http request option.
|
|
354
|
+
* @deprecated
|
|
355
|
+
* @throws {RequiredError}
|
|
356
|
+
* @memberof ClaimLimitUsagesApi
|
|
357
|
+
*/
|
|
358
|
+
getClaimLimitUsage1(requestParameters: ClaimLimitUsagesApiGetClaimLimitUsage1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetClaimLimitUsageResponseClass, any, {}>>;
|
|
359
|
+
/**
|
|
360
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\"
|
|
361
|
+
* @summary List claim limit usages
|
|
362
|
+
* @param {ClaimLimitUsagesApiListClaimLimitUsagesRequest} requestParameters Request parameters.
|
|
363
|
+
* @param {*} [options] Override http request option.
|
|
364
|
+
* @throws {RequiredError}
|
|
365
|
+
* @memberof ClaimLimitUsagesApi
|
|
366
|
+
*/
|
|
367
|
+
listClaimLimitUsages(requestParameters?: ClaimLimitUsagesApiListClaimLimitUsagesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimLimitUsagesResponseClass, any, {}>>;
|
|
368
|
+
/**
|
|
369
|
+
* Retrieves a list of claim limit usages. **Required Permissions** \"claim-management.claims.view\" **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
370
|
+
* @summary List claim limit usages
|
|
371
|
+
* @param {ClaimLimitUsagesApiListClaimLimitUsages1Request} requestParameters Request parameters.
|
|
372
|
+
* @param {*} [options] Override http request option.
|
|
373
|
+
* @deprecated
|
|
374
|
+
* @throws {RequiredError}
|
|
375
|
+
* @memberof ClaimLimitUsagesApi
|
|
376
|
+
*/
|
|
377
|
+
listClaimLimitUsages1(requestParameters?: ClaimLimitUsagesApiListClaimLimitUsages1Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListClaimLimitUsagesResponseClass, any, {}>>;
|
|
378
|
+
}
|