@emilgroup/claim-sdk-node 1.41.1-beta.8 → 1.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/claim-limit-usages-api.ts +53 -45
- package/api/claim-partner-roles-api.ts +127 -107
- package/api/claim-partners-api.ts +103 -87
- package/api/claim-positions-api.ts +181 -153
- package/api/claim-regulations-api.ts +128 -108
- package/api/claim-statuses-api.ts +153 -129
- package/api/claims-api.ts +177 -149
- package/api/health-check-api.ts +17 -137
- package/api/settlements-api.ts +127 -107
- package/dist/api/claim-limit-usages-api.d.ts +42 -34
- package/dist/api/claim-limit-usages-api.js +37 -29
- package/dist/api/claim-partner-roles-api.d.ts +97 -77
- package/dist/api/claim-partner-roles-api.js +95 -75
- package/dist/api/claim-partners-api.d.ts +79 -63
- package/dist/api/claim-partners-api.js +76 -60
- package/dist/api/claim-positions-api.d.ts +136 -108
- package/dist/api/claim-positions-api.js +136 -108
- package/dist/api/claim-regulations-api.d.ts +98 -78
- package/dist/api/claim-regulations-api.js +95 -75
- package/dist/api/claim-statuses-api.d.ts +116 -92
- package/dist/api/claim-statuses-api.js +115 -91
- package/dist/api/claims-api.d.ts +134 -106
- package/dist/api/claims-api.js +134 -106
- package/dist/api/health-check-api.d.ts +12 -66
- package/dist/api/health-check-api.js +17 -151
- package/dist/api/settlements-api.d.ts +97 -77
- package/dist/api/settlements-api.js +95 -75
- package/dist/models/calculation-step-result-class.d.ts +3 -3
- package/dist/models/list-claim-limit-usages-response-class.d.ts +6 -6
- package/dist/models/list-claim-partner-roles-response-class.d.ts +6 -6
- package/dist/models/list-claim-partners-response-class.d.ts +6 -6
- package/dist/models/list-claim-positions-response-class.d.ts +6 -6
- package/dist/models/list-claim-statuses-response-class.d.ts +6 -6
- package/dist/models/list-claims-response-class.d.ts +6 -6
- package/dist/models/list-regulations-response-class.d.ts +6 -6
- package/dist/models/list-settlements-response-class.d.ts +6 -18
- package/dist/models/payout-details-class.d.ts +2 -4
- package/models/calculation-step-result-class.ts +3 -3
- package/models/list-claim-limit-usages-response-class.ts +6 -6
- package/models/list-claim-partner-roles-response-class.ts +6 -6
- package/models/list-claim-partners-response-class.ts +6 -6
- package/models/list-claim-positions-response-class.ts +6 -6
- package/models/list-claim-statuses-response-class.ts +6 -6
- package/models/list-claims-response-class.ts +6 -6
- package/models/list-regulations-response-class.ts +6 -6
- package/models/list-settlements-response-class.ts +6 -18
- package/models/payout-details-class.ts +2 -2
- package/package.json +1 -1
|
@@ -24,28 +24,15 @@ export declare const HealthCheckApiAxiosParamCreator: (configuration?: Configura
|
|
|
24
24
|
* @param {*} [options] Override http request option.
|
|
25
25
|
* @throws {RequiredError}
|
|
26
26
|
*/
|
|
27
|
-
|
|
27
|
+
check: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28
28
|
/**
|
|
29
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
30
|
-
* @summary Health Check
|
|
31
|
-
* @param {*} [options] Override http request option.
|
|
32
|
-
* @throws {RequiredError}
|
|
33
|
-
*/
|
|
34
|
-
check0_1: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
|
-
/**
|
|
36
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
29
|
+
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
37
30
|
* @summary Health Check
|
|
38
31
|
* @param {*} [options] Override http request option.
|
|
32
|
+
* @deprecated
|
|
39
33
|
* @throws {RequiredError}
|
|
40
34
|
*/
|
|
41
35
|
check1: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
|
-
/**
|
|
43
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
44
|
-
* @summary Health Check
|
|
45
|
-
* @param {*} [options] Override http request option.
|
|
46
|
-
* @throws {RequiredError}
|
|
47
|
-
*/
|
|
48
|
-
check1_2: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
49
36
|
};
|
|
50
37
|
/**
|
|
51
38
|
* HealthCheckApi - functional programming interface
|
|
@@ -58,28 +45,15 @@ export declare const HealthCheckApiFp: (configuration?: Configuration) => {
|
|
|
58
45
|
* @param {*} [options] Override http request option.
|
|
59
46
|
* @throws {RequiredError}
|
|
60
47
|
*/
|
|
61
|
-
|
|
48
|
+
check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
62
49
|
/**
|
|
63
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
64
|
-
* @summary Health Check
|
|
65
|
-
* @param {*} [options] Override http request option.
|
|
66
|
-
* @throws {RequiredError}
|
|
67
|
-
*/
|
|
68
|
-
check0_1(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
69
|
-
/**
|
|
70
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
50
|
+
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
71
51
|
* @summary Health Check
|
|
72
52
|
* @param {*} [options] Override http request option.
|
|
53
|
+
* @deprecated
|
|
73
54
|
* @throws {RequiredError}
|
|
74
55
|
*/
|
|
75
56
|
check1(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
76
|
-
/**
|
|
77
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
78
|
-
* @summary Health Check
|
|
79
|
-
* @param {*} [options] Override http request option.
|
|
80
|
-
* @throws {RequiredError}
|
|
81
|
-
*/
|
|
82
|
-
check1_2(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
83
57
|
};
|
|
84
58
|
/**
|
|
85
59
|
* HealthCheckApi - factory interface
|
|
@@ -92,28 +66,15 @@ export declare const HealthCheckApiFactory: (configuration?: Configuration, base
|
|
|
92
66
|
* @param {*} [options] Override http request option.
|
|
93
67
|
* @throws {RequiredError}
|
|
94
68
|
*/
|
|
95
|
-
|
|
96
|
-
/**
|
|
97
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
98
|
-
* @summary Health Check
|
|
99
|
-
* @param {*} [options] Override http request option.
|
|
100
|
-
* @throws {RequiredError}
|
|
101
|
-
*/
|
|
102
|
-
check0_1(options?: any): AxiosPromise<InlineResponse200>;
|
|
69
|
+
check(options?: any): AxiosPromise<InlineResponse200>;
|
|
103
70
|
/**
|
|
104
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
71
|
+
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
105
72
|
* @summary Health Check
|
|
106
73
|
* @param {*} [options] Override http request option.
|
|
74
|
+
* @deprecated
|
|
107
75
|
* @throws {RequiredError}
|
|
108
76
|
*/
|
|
109
77
|
check1(options?: any): AxiosPromise<InlineResponse200>;
|
|
110
|
-
/**
|
|
111
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
112
|
-
* @summary Health Check
|
|
113
|
-
* @param {*} [options] Override http request option.
|
|
114
|
-
* @throws {RequiredError}
|
|
115
|
-
*/
|
|
116
|
-
check1_2(options?: any): AxiosPromise<InlineResponse200>;
|
|
117
78
|
};
|
|
118
79
|
/**
|
|
119
80
|
* HealthCheckApi - object-oriented interface
|
|
@@ -129,29 +90,14 @@ export declare class HealthCheckApi extends BaseAPI {
|
|
|
129
90
|
* @throws {RequiredError}
|
|
130
91
|
* @memberof HealthCheckApi
|
|
131
92
|
*/
|
|
132
|
-
|
|
93
|
+
check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any, {}>>;
|
|
133
94
|
/**
|
|
134
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
135
|
-
* @summary Health Check
|
|
136
|
-
* @param {*} [options] Override http request option.
|
|
137
|
-
* @throws {RequiredError}
|
|
138
|
-
* @memberof HealthCheckApi
|
|
139
|
-
*/
|
|
140
|
-
check0_1(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any, {}>>;
|
|
141
|
-
/**
|
|
142
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
95
|
+
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
143
96
|
* @summary Health Check
|
|
144
97
|
* @param {*} [options] Override http request option.
|
|
98
|
+
* @deprecated
|
|
145
99
|
* @throws {RequiredError}
|
|
146
100
|
* @memberof HealthCheckApi
|
|
147
101
|
*/
|
|
148
102
|
check1(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any, {}>>;
|
|
149
|
-
/**
|
|
150
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
151
|
-
* @summary Health Check
|
|
152
|
-
* @param {*} [options] Override http request option.
|
|
153
|
-
* @throws {RequiredError}
|
|
154
|
-
* @memberof HealthCheckApi
|
|
155
|
-
*/
|
|
156
|
-
check1_2(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any, {}>>;
|
|
157
103
|
}
|
|
@@ -102,67 +102,7 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
102
102
|
* @param {*} [options] Override http request option.
|
|
103
103
|
* @throws {RequiredError}
|
|
104
104
|
*/
|
|
105
|
-
|
|
106
|
-
if (options === void 0) { options = {}; }
|
|
107
|
-
return __awaiter(_this, void 0, void 0, function () {
|
|
108
|
-
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
109
|
-
return __generator(this, function (_a) {
|
|
110
|
-
localVarPath = "/v1/claims/health";
|
|
111
|
-
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
112
|
-
if (configuration) {
|
|
113
|
-
baseOptions = configuration.baseOptions;
|
|
114
|
-
baseAccessToken = configuration.accessToken;
|
|
115
|
-
}
|
|
116
|
-
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
117
|
-
localVarHeaderParameter = {};
|
|
118
|
-
localVarQueryParameter = {};
|
|
119
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
120
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
121
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
122
|
-
return [2 /*return*/, {
|
|
123
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
124
|
-
options: localVarRequestOptions,
|
|
125
|
-
}];
|
|
126
|
-
});
|
|
127
|
-
});
|
|
128
|
-
},
|
|
129
|
-
/**
|
|
130
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
131
|
-
* @summary Health Check
|
|
132
|
-
* @param {*} [options] Override http request option.
|
|
133
|
-
* @throws {RequiredError}
|
|
134
|
-
*/
|
|
135
|
-
check0_1: function (options) {
|
|
136
|
-
if (options === void 0) { options = {}; }
|
|
137
|
-
return __awaiter(_this, void 0, void 0, function () {
|
|
138
|
-
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
139
|
-
return __generator(this, function (_a) {
|
|
140
|
-
localVarPath = "/v1/claims/health";
|
|
141
|
-
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
142
|
-
if (configuration) {
|
|
143
|
-
baseOptions = configuration.baseOptions;
|
|
144
|
-
baseAccessToken = configuration.accessToken;
|
|
145
|
-
}
|
|
146
|
-
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
147
|
-
localVarHeaderParameter = {};
|
|
148
|
-
localVarQueryParameter = {};
|
|
149
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
150
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
151
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
152
|
-
return [2 /*return*/, {
|
|
153
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
154
|
-
options: localVarRequestOptions,
|
|
155
|
-
}];
|
|
156
|
-
});
|
|
157
|
-
});
|
|
158
|
-
},
|
|
159
|
-
/**
|
|
160
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
161
|
-
* @summary Health Check
|
|
162
|
-
* @param {*} [options] Override http request option.
|
|
163
|
-
* @throws {RequiredError}
|
|
164
|
-
*/
|
|
165
|
-
check1: function (options) {
|
|
105
|
+
check: function (options) {
|
|
166
106
|
if (options === void 0) { options = {}; }
|
|
167
107
|
return __awaiter(_this, void 0, void 0, function () {
|
|
168
108
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -187,17 +127,18 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
187
127
|
});
|
|
188
128
|
},
|
|
189
129
|
/**
|
|
190
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
130
|
+
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
191
131
|
* @summary Health Check
|
|
192
132
|
* @param {*} [options] Override http request option.
|
|
133
|
+
* @deprecated
|
|
193
134
|
* @throws {RequiredError}
|
|
194
135
|
*/
|
|
195
|
-
|
|
136
|
+
check1: function (options) {
|
|
196
137
|
if (options === void 0) { options = {}; }
|
|
197
138
|
return __awaiter(_this, void 0, void 0, function () {
|
|
198
139
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
199
140
|
return __generator(this, function (_a) {
|
|
200
|
-
localVarPath = "/
|
|
141
|
+
localVarPath = "/v1/claims/health";
|
|
201
142
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
202
143
|
if (configuration) {
|
|
203
144
|
baseOptions = configuration.baseOptions;
|
|
@@ -232,31 +173,12 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
232
173
|
* @param {*} [options] Override http request option.
|
|
233
174
|
* @throws {RequiredError}
|
|
234
175
|
*/
|
|
235
|
-
|
|
236
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
237
|
-
var localVarAxiosArgs;
|
|
238
|
-
return __generator(this, function (_a) {
|
|
239
|
-
switch (_a.label) {
|
|
240
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check0(options)];
|
|
241
|
-
case 1:
|
|
242
|
-
localVarAxiosArgs = _a.sent();
|
|
243
|
-
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
244
|
-
}
|
|
245
|
-
});
|
|
246
|
-
});
|
|
247
|
-
},
|
|
248
|
-
/**
|
|
249
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
250
|
-
* @summary Health Check
|
|
251
|
-
* @param {*} [options] Override http request option.
|
|
252
|
-
* @throws {RequiredError}
|
|
253
|
-
*/
|
|
254
|
-
check0_1: function (options) {
|
|
176
|
+
check: function (options) {
|
|
255
177
|
return __awaiter(this, void 0, void 0, function () {
|
|
256
178
|
var localVarAxiosArgs;
|
|
257
179
|
return __generator(this, function (_a) {
|
|
258
180
|
switch (_a.label) {
|
|
259
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
181
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check(options)];
|
|
260
182
|
case 1:
|
|
261
183
|
localVarAxiosArgs = _a.sent();
|
|
262
184
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -265,9 +187,10 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
265
187
|
});
|
|
266
188
|
},
|
|
267
189
|
/**
|
|
268
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
190
|
+
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
269
191
|
* @summary Health Check
|
|
270
192
|
* @param {*} [options] Override http request option.
|
|
193
|
+
* @deprecated
|
|
271
194
|
* @throws {RequiredError}
|
|
272
195
|
*/
|
|
273
196
|
check1: function (options) {
|
|
@@ -283,25 +206,6 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
283
206
|
});
|
|
284
207
|
});
|
|
285
208
|
},
|
|
286
|
-
/**
|
|
287
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
288
|
-
* @summary Health Check
|
|
289
|
-
* @param {*} [options] Override http request option.
|
|
290
|
-
* @throws {RequiredError}
|
|
291
|
-
*/
|
|
292
|
-
check1_2: function (options) {
|
|
293
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
294
|
-
var localVarAxiosArgs;
|
|
295
|
-
return __generator(this, function (_a) {
|
|
296
|
-
switch (_a.label) {
|
|
297
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check1_2(options)];
|
|
298
|
-
case 1:
|
|
299
|
-
localVarAxiosArgs = _a.sent();
|
|
300
|
-
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
301
|
-
}
|
|
302
|
-
});
|
|
303
|
-
});
|
|
304
|
-
},
|
|
305
209
|
};
|
|
306
210
|
};
|
|
307
211
|
exports.HealthCheckApiFp = HealthCheckApiFp;
|
|
@@ -318,36 +222,19 @@ var HealthCheckApiFactory = function (configuration, basePath, axios) {
|
|
|
318
222
|
* @param {*} [options] Override http request option.
|
|
319
223
|
* @throws {RequiredError}
|
|
320
224
|
*/
|
|
321
|
-
|
|
322
|
-
return localVarFp.
|
|
323
|
-
},
|
|
324
|
-
/**
|
|
325
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
326
|
-
* @summary Health Check
|
|
327
|
-
* @param {*} [options] Override http request option.
|
|
328
|
-
* @throws {RequiredError}
|
|
329
|
-
*/
|
|
330
|
-
check0_1: function (options) {
|
|
331
|
-
return localVarFp.check0_1(options).then(function (request) { return request(axios, basePath); });
|
|
225
|
+
check: function (options) {
|
|
226
|
+
return localVarFp.check(options).then(function (request) { return request(axios, basePath); });
|
|
332
227
|
},
|
|
333
228
|
/**
|
|
334
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
229
|
+
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
335
230
|
* @summary Health Check
|
|
336
231
|
* @param {*} [options] Override http request option.
|
|
232
|
+
* @deprecated
|
|
337
233
|
* @throws {RequiredError}
|
|
338
234
|
*/
|
|
339
235
|
check1: function (options) {
|
|
340
236
|
return localVarFp.check1(options).then(function (request) { return request(axios, basePath); });
|
|
341
237
|
},
|
|
342
|
-
/**
|
|
343
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
344
|
-
* @summary Health Check
|
|
345
|
-
* @param {*} [options] Override http request option.
|
|
346
|
-
* @throws {RequiredError}
|
|
347
|
-
*/
|
|
348
|
-
check1_2: function (options) {
|
|
349
|
-
return localVarFp.check1_2(options).then(function (request) { return request(axios, basePath); });
|
|
350
|
-
},
|
|
351
238
|
};
|
|
352
239
|
};
|
|
353
240
|
exports.HealthCheckApiFactory = HealthCheckApiFactory;
|
|
@@ -369,25 +256,15 @@ var HealthCheckApi = /** @class */ (function (_super) {
|
|
|
369
256
|
* @throws {RequiredError}
|
|
370
257
|
* @memberof HealthCheckApi
|
|
371
258
|
*/
|
|
372
|
-
HealthCheckApi.prototype.
|
|
259
|
+
HealthCheckApi.prototype.check = function (options) {
|
|
373
260
|
var _this = this;
|
|
374
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).
|
|
261
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
375
262
|
};
|
|
376
263
|
/**
|
|
377
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
378
|
-
* @summary Health Check
|
|
379
|
-
* @param {*} [options] Override http request option.
|
|
380
|
-
* @throws {RequiredError}
|
|
381
|
-
* @memberof HealthCheckApi
|
|
382
|
-
*/
|
|
383
|
-
HealthCheckApi.prototype.check0_1 = function (options) {
|
|
384
|
-
var _this = this;
|
|
385
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).check0_1(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
386
|
-
};
|
|
387
|
-
/**
|
|
388
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
264
|
+
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available. **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
389
265
|
* @summary Health Check
|
|
390
266
|
* @param {*} [options] Override http request option.
|
|
267
|
+
* @deprecated
|
|
391
268
|
* @throws {RequiredError}
|
|
392
269
|
* @memberof HealthCheckApi
|
|
393
270
|
*/
|
|
@@ -395,17 +272,6 @@ var HealthCheckApi = /** @class */ (function (_super) {
|
|
|
395
272
|
var _this = this;
|
|
396
273
|
return (0, exports.HealthCheckApiFp)(this.configuration).check1(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
397
274
|
};
|
|
398
|
-
/**
|
|
399
|
-
* Returns the health status of the claim service. This endpoint is used to monitor the operational status of the claim service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
400
|
-
* @summary Health Check
|
|
401
|
-
* @param {*} [options] Override http request option.
|
|
402
|
-
* @throws {RequiredError}
|
|
403
|
-
* @memberof HealthCheckApi
|
|
404
|
-
*/
|
|
405
|
-
HealthCheckApi.prototype.check1_2 = function (options) {
|
|
406
|
-
var _this = this;
|
|
407
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).check1_2(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
408
|
-
};
|
|
409
275
|
return HealthCheckApi;
|
|
410
276
|
}(base_1.BaseAPI));
|
|
411
277
|
exports.HealthCheckApi = HealthCheckApi;
|