@emilgroup/claim-sdk 1.43.1-beta.0 → 1.43.1-beta.2
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 +46 -38
- 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 +32 -24
- package/dist/api/health-check-api.js +46 -38
- package/dist/api/settlements-api.d.ts +97 -77
- package/dist/api/settlements-api.js +95 -75
- package/package.json +1 -1
|
@@ -24,28 +24,30 @@ 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.
|
|
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.
|
|
30
30
|
* @summary Health Check
|
|
31
31
|
* @param {*} [options] Override http request option.
|
|
32
|
+
* @deprecated
|
|
32
33
|
* @throws {RequiredError}
|
|
33
34
|
*/
|
|
34
|
-
|
|
35
|
+
check1: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
36
|
/**
|
|
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.
|
|
37
|
+
* 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
38
|
* @summary Health Check
|
|
38
39
|
* @param {*} [options] Override http request option.
|
|
40
|
+
* @deprecated
|
|
39
41
|
* @throws {RequiredError}
|
|
40
42
|
*/
|
|
41
|
-
|
|
43
|
+
check1_1: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
44
|
/**
|
|
43
45
|
* 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
46
|
* @summary Health Check
|
|
45
47
|
* @param {*} [options] Override http request option.
|
|
46
48
|
* @throws {RequiredError}
|
|
47
49
|
*/
|
|
48
|
-
|
|
50
|
+
check_2: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
49
51
|
};
|
|
50
52
|
/**
|
|
51
53
|
* HealthCheckApi - functional programming interface
|
|
@@ -58,28 +60,30 @@ export declare const HealthCheckApiFp: (configuration?: Configuration) => {
|
|
|
58
60
|
* @param {*} [options] Override http request option.
|
|
59
61
|
* @throws {RequiredError}
|
|
60
62
|
*/
|
|
61
|
-
|
|
63
|
+
check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
62
64
|
/**
|
|
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.
|
|
65
|
+
* 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.
|
|
64
66
|
* @summary Health Check
|
|
65
67
|
* @param {*} [options] Override http request option.
|
|
68
|
+
* @deprecated
|
|
66
69
|
* @throws {RequiredError}
|
|
67
70
|
*/
|
|
68
|
-
|
|
71
|
+
check1(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
69
72
|
/**
|
|
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.
|
|
73
|
+
* 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
74
|
* @summary Health Check
|
|
72
75
|
* @param {*} [options] Override http request option.
|
|
76
|
+
* @deprecated
|
|
73
77
|
* @throws {RequiredError}
|
|
74
78
|
*/
|
|
75
|
-
|
|
79
|
+
check1_1(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
76
80
|
/**
|
|
77
81
|
* 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
82
|
* @summary Health Check
|
|
79
83
|
* @param {*} [options] Override http request option.
|
|
80
84
|
* @throws {RequiredError}
|
|
81
85
|
*/
|
|
82
|
-
|
|
86
|
+
check_2(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
83
87
|
};
|
|
84
88
|
/**
|
|
85
89
|
* HealthCheckApi - factory interface
|
|
@@ -92,28 +96,30 @@ export declare const HealthCheckApiFactory: (configuration?: Configuration, base
|
|
|
92
96
|
* @param {*} [options] Override http request option.
|
|
93
97
|
* @throws {RequiredError}
|
|
94
98
|
*/
|
|
95
|
-
|
|
99
|
+
check(options?: any): AxiosPromise<InlineResponse200>;
|
|
96
100
|
/**
|
|
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.
|
|
101
|
+
* 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.
|
|
98
102
|
* @summary Health Check
|
|
99
103
|
* @param {*} [options] Override http request option.
|
|
104
|
+
* @deprecated
|
|
100
105
|
* @throws {RequiredError}
|
|
101
106
|
*/
|
|
102
|
-
|
|
107
|
+
check1(options?: any): AxiosPromise<InlineResponse200>;
|
|
103
108
|
/**
|
|
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.
|
|
109
|
+
* 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
110
|
* @summary Health Check
|
|
106
111
|
* @param {*} [options] Override http request option.
|
|
112
|
+
* @deprecated
|
|
107
113
|
* @throws {RequiredError}
|
|
108
114
|
*/
|
|
109
|
-
|
|
115
|
+
check1_1(options?: any): AxiosPromise<InlineResponse200>;
|
|
110
116
|
/**
|
|
111
117
|
* 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
118
|
* @summary Health Check
|
|
113
119
|
* @param {*} [options] Override http request option.
|
|
114
120
|
* @throws {RequiredError}
|
|
115
121
|
*/
|
|
116
|
-
|
|
122
|
+
check_2(options?: any): AxiosPromise<InlineResponse200>;
|
|
117
123
|
};
|
|
118
124
|
/**
|
|
119
125
|
* HealthCheckApi - object-oriented interface
|
|
@@ -129,23 +135,25 @@ export declare class HealthCheckApi extends BaseAPI {
|
|
|
129
135
|
* @throws {RequiredError}
|
|
130
136
|
* @memberof HealthCheckApi
|
|
131
137
|
*/
|
|
132
|
-
|
|
138
|
+
check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any, {}>>;
|
|
133
139
|
/**
|
|
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.
|
|
140
|
+
* 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.
|
|
135
141
|
* @summary Health Check
|
|
136
142
|
* @param {*} [options] Override http request option.
|
|
143
|
+
* @deprecated
|
|
137
144
|
* @throws {RequiredError}
|
|
138
145
|
* @memberof HealthCheckApi
|
|
139
146
|
*/
|
|
140
|
-
|
|
147
|
+
check1(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any, {}>>;
|
|
141
148
|
/**
|
|
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.
|
|
149
|
+
* 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
150
|
* @summary Health Check
|
|
144
151
|
* @param {*} [options] Override http request option.
|
|
152
|
+
* @deprecated
|
|
145
153
|
* @throws {RequiredError}
|
|
146
154
|
* @memberof HealthCheckApi
|
|
147
155
|
*/
|
|
148
|
-
|
|
156
|
+
check1_1(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any, {}>>;
|
|
149
157
|
/**
|
|
150
158
|
* 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
159
|
* @summary Health Check
|
|
@@ -153,5 +161,5 @@ export declare class HealthCheckApi extends BaseAPI {
|
|
|
153
161
|
* @throws {RequiredError}
|
|
154
162
|
* @memberof HealthCheckApi
|
|
155
163
|
*/
|
|
156
|
-
|
|
164
|
+
check_2(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any, {}>>;
|
|
157
165
|
}
|
|
@@ -98,12 +98,12 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
98
98
|
* @param {*} [options] Override http request option.
|
|
99
99
|
* @throws {RequiredError}
|
|
100
100
|
*/
|
|
101
|
-
|
|
101
|
+
check: function (options) {
|
|
102
102
|
if (options === void 0) { options = {}; }
|
|
103
103
|
return __awaiter(_this, void 0, void 0, function () {
|
|
104
104
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
105
105
|
return __generator(this, function (_a) {
|
|
106
|
-
localVarPath = "/v1/
|
|
106
|
+
localVarPath = "/claimservice/v1/health";
|
|
107
107
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
108
108
|
if (configuration) {
|
|
109
109
|
baseOptions = configuration.baseOptions;
|
|
@@ -123,12 +123,13 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
123
123
|
});
|
|
124
124
|
},
|
|
125
125
|
/**
|
|
126
|
-
* 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.
|
|
126
|
+
* 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.
|
|
127
127
|
* @summary Health Check
|
|
128
128
|
* @param {*} [options] Override http request option.
|
|
129
|
+
* @deprecated
|
|
129
130
|
* @throws {RequiredError}
|
|
130
131
|
*/
|
|
131
|
-
|
|
132
|
+
check1: function (options) {
|
|
132
133
|
if (options === void 0) { options = {}; }
|
|
133
134
|
return __awaiter(_this, void 0, void 0, function () {
|
|
134
135
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -153,17 +154,18 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
153
154
|
});
|
|
154
155
|
},
|
|
155
156
|
/**
|
|
156
|
-
* 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.
|
|
157
|
+
* 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.
|
|
157
158
|
* @summary Health Check
|
|
158
159
|
* @param {*} [options] Override http request option.
|
|
160
|
+
* @deprecated
|
|
159
161
|
* @throws {RequiredError}
|
|
160
162
|
*/
|
|
161
|
-
|
|
163
|
+
check1_1: function (options) {
|
|
162
164
|
if (options === void 0) { options = {}; }
|
|
163
165
|
return __awaiter(_this, void 0, void 0, function () {
|
|
164
166
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
165
167
|
return __generator(this, function (_a) {
|
|
166
|
-
localVarPath = "/
|
|
168
|
+
localVarPath = "/v1/claims/health";
|
|
167
169
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
168
170
|
if (configuration) {
|
|
169
171
|
baseOptions = configuration.baseOptions;
|
|
@@ -188,7 +190,7 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
188
190
|
* @param {*} [options] Override http request option.
|
|
189
191
|
* @throws {RequiredError}
|
|
190
192
|
*/
|
|
191
|
-
|
|
193
|
+
check_2: function (options) {
|
|
192
194
|
if (options === void 0) { options = {}; }
|
|
193
195
|
return __awaiter(_this, void 0, void 0, function () {
|
|
194
196
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -228,12 +230,12 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
228
230
|
* @param {*} [options] Override http request option.
|
|
229
231
|
* @throws {RequiredError}
|
|
230
232
|
*/
|
|
231
|
-
|
|
233
|
+
check: function (options) {
|
|
232
234
|
return __awaiter(this, void 0, void 0, function () {
|
|
233
235
|
var localVarAxiosArgs;
|
|
234
236
|
return __generator(this, function (_a) {
|
|
235
237
|
switch (_a.label) {
|
|
236
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
238
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check(options)];
|
|
237
239
|
case 1:
|
|
238
240
|
localVarAxiosArgs = _a.sent();
|
|
239
241
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -242,17 +244,18 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
242
244
|
});
|
|
243
245
|
},
|
|
244
246
|
/**
|
|
245
|
-
* 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.
|
|
247
|
+
* 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.
|
|
246
248
|
* @summary Health Check
|
|
247
249
|
* @param {*} [options] Override http request option.
|
|
250
|
+
* @deprecated
|
|
248
251
|
* @throws {RequiredError}
|
|
249
252
|
*/
|
|
250
|
-
|
|
253
|
+
check1: function (options) {
|
|
251
254
|
return __awaiter(this, void 0, void 0, function () {
|
|
252
255
|
var localVarAxiosArgs;
|
|
253
256
|
return __generator(this, function (_a) {
|
|
254
257
|
switch (_a.label) {
|
|
255
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
258
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check1(options)];
|
|
256
259
|
case 1:
|
|
257
260
|
localVarAxiosArgs = _a.sent();
|
|
258
261
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -261,17 +264,18 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
261
264
|
});
|
|
262
265
|
},
|
|
263
266
|
/**
|
|
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.
|
|
267
|
+
* 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.
|
|
265
268
|
* @summary Health Check
|
|
266
269
|
* @param {*} [options] Override http request option.
|
|
270
|
+
* @deprecated
|
|
267
271
|
* @throws {RequiredError}
|
|
268
272
|
*/
|
|
269
|
-
|
|
273
|
+
check1_1: function (options) {
|
|
270
274
|
return __awaiter(this, void 0, void 0, function () {
|
|
271
275
|
var localVarAxiosArgs;
|
|
272
276
|
return __generator(this, function (_a) {
|
|
273
277
|
switch (_a.label) {
|
|
274
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
278
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check1_1(options)];
|
|
275
279
|
case 1:
|
|
276
280
|
localVarAxiosArgs = _a.sent();
|
|
277
281
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -285,12 +289,12 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
285
289
|
* @param {*} [options] Override http request option.
|
|
286
290
|
* @throws {RequiredError}
|
|
287
291
|
*/
|
|
288
|
-
|
|
292
|
+
check_2: function (options) {
|
|
289
293
|
return __awaiter(this, void 0, void 0, function () {
|
|
290
294
|
var localVarAxiosArgs;
|
|
291
295
|
return __generator(this, function (_a) {
|
|
292
296
|
switch (_a.label) {
|
|
293
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
297
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check_2(options)];
|
|
294
298
|
case 1:
|
|
295
299
|
localVarAxiosArgs = _a.sent();
|
|
296
300
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -314,26 +318,28 @@ var HealthCheckApiFactory = function (configuration, basePath, axios) {
|
|
|
314
318
|
* @param {*} [options] Override http request option.
|
|
315
319
|
* @throws {RequiredError}
|
|
316
320
|
*/
|
|
317
|
-
|
|
318
|
-
return localVarFp.
|
|
321
|
+
check: function (options) {
|
|
322
|
+
return localVarFp.check(options).then(function (request) { return request(axios, basePath); });
|
|
319
323
|
},
|
|
320
324
|
/**
|
|
321
|
-
* 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.
|
|
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. **Deprecated.** Legacy path. Prefer the claimservice/v1 path for new integrations. This path may be removed in a future release.
|
|
322
326
|
* @summary Health Check
|
|
323
327
|
* @param {*} [options] Override http request option.
|
|
328
|
+
* @deprecated
|
|
324
329
|
* @throws {RequiredError}
|
|
325
330
|
*/
|
|
326
|
-
|
|
327
|
-
return localVarFp.
|
|
331
|
+
check1: function (options) {
|
|
332
|
+
return localVarFp.check1(options).then(function (request) { return request(axios, basePath); });
|
|
328
333
|
},
|
|
329
334
|
/**
|
|
330
|
-
* 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.
|
|
335
|
+
* 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.
|
|
331
336
|
* @summary Health Check
|
|
332
337
|
* @param {*} [options] Override http request option.
|
|
338
|
+
* @deprecated
|
|
333
339
|
* @throws {RequiredError}
|
|
334
340
|
*/
|
|
335
|
-
|
|
336
|
-
return localVarFp.
|
|
341
|
+
check1_1: function (options) {
|
|
342
|
+
return localVarFp.check1_1(options).then(function (request) { return request(axios, basePath); });
|
|
337
343
|
},
|
|
338
344
|
/**
|
|
339
345
|
* 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.
|
|
@@ -341,8 +347,8 @@ var HealthCheckApiFactory = function (configuration, basePath, axios) {
|
|
|
341
347
|
* @param {*} [options] Override http request option.
|
|
342
348
|
* @throws {RequiredError}
|
|
343
349
|
*/
|
|
344
|
-
|
|
345
|
-
return localVarFp.
|
|
350
|
+
check_2: function (options) {
|
|
351
|
+
return localVarFp.check_2(options).then(function (request) { return request(axios, basePath); });
|
|
346
352
|
},
|
|
347
353
|
};
|
|
348
354
|
};
|
|
@@ -365,31 +371,33 @@ var HealthCheckApi = /** @class */ (function (_super) {
|
|
|
365
371
|
* @throws {RequiredError}
|
|
366
372
|
* @memberof HealthCheckApi
|
|
367
373
|
*/
|
|
368
|
-
HealthCheckApi.prototype.
|
|
374
|
+
HealthCheckApi.prototype.check = function (options) {
|
|
369
375
|
var _this = this;
|
|
370
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).
|
|
376
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
371
377
|
};
|
|
372
378
|
/**
|
|
373
|
-
* 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.
|
|
379
|
+
* 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.
|
|
374
380
|
* @summary Health Check
|
|
375
381
|
* @param {*} [options] Override http request option.
|
|
382
|
+
* @deprecated
|
|
376
383
|
* @throws {RequiredError}
|
|
377
384
|
* @memberof HealthCheckApi
|
|
378
385
|
*/
|
|
379
|
-
HealthCheckApi.prototype.
|
|
386
|
+
HealthCheckApi.prototype.check1 = function (options) {
|
|
380
387
|
var _this = this;
|
|
381
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).
|
|
388
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check1(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
382
389
|
};
|
|
383
390
|
/**
|
|
384
|
-
* 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.
|
|
391
|
+
* 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.
|
|
385
392
|
* @summary Health Check
|
|
386
393
|
* @param {*} [options] Override http request option.
|
|
394
|
+
* @deprecated
|
|
387
395
|
* @throws {RequiredError}
|
|
388
396
|
* @memberof HealthCheckApi
|
|
389
397
|
*/
|
|
390
|
-
HealthCheckApi.prototype.
|
|
398
|
+
HealthCheckApi.prototype.check1_1 = function (options) {
|
|
391
399
|
var _this = this;
|
|
392
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).
|
|
400
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check1_1(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
393
401
|
};
|
|
394
402
|
/**
|
|
395
403
|
* 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.
|
|
@@ -398,9 +406,9 @@ var HealthCheckApi = /** @class */ (function (_super) {
|
|
|
398
406
|
* @throws {RequiredError}
|
|
399
407
|
* @memberof HealthCheckApi
|
|
400
408
|
*/
|
|
401
|
-
HealthCheckApi.prototype.
|
|
409
|
+
HealthCheckApi.prototype.check_2 = function (options) {
|
|
402
410
|
var _this = this;
|
|
403
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).
|
|
411
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check_2(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
404
412
|
};
|
|
405
413
|
return HealthCheckApi;
|
|
406
414
|
}(base_1.BaseAPI));
|