@emilgroup/claim-sdk-node 1.41.1-beta.0 → 1.41.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/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
|
}
|
|
@@ -102,12 +102,12 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
102
102
|
* @param {*} [options] Override http request option.
|
|
103
103
|
* @throws {RequiredError}
|
|
104
104
|
*/
|
|
105
|
-
|
|
105
|
+
check: function (options) {
|
|
106
106
|
if (options === void 0) { options = {}; }
|
|
107
107
|
return __awaiter(_this, void 0, void 0, function () {
|
|
108
108
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
109
109
|
return __generator(this, function (_a) {
|
|
110
|
-
localVarPath = "/v1/
|
|
110
|
+
localVarPath = "/claimservice/v1/health";
|
|
111
111
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
112
112
|
if (configuration) {
|
|
113
113
|
baseOptions = configuration.baseOptions;
|
|
@@ -127,12 +127,13 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
127
127
|
});
|
|
128
128
|
},
|
|
129
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.
|
|
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.
|
|
131
131
|
* @summary Health Check
|
|
132
132
|
* @param {*} [options] Override http request option.
|
|
133
|
+
* @deprecated
|
|
133
134
|
* @throws {RequiredError}
|
|
134
135
|
*/
|
|
135
|
-
|
|
136
|
+
check1: function (options) {
|
|
136
137
|
if (options === void 0) { options = {}; }
|
|
137
138
|
return __awaiter(_this, void 0, void 0, function () {
|
|
138
139
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -157,17 +158,18 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
157
158
|
});
|
|
158
159
|
},
|
|
159
160
|
/**
|
|
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
|
+
* 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.
|
|
161
162
|
* @summary Health Check
|
|
162
163
|
* @param {*} [options] Override http request option.
|
|
164
|
+
* @deprecated
|
|
163
165
|
* @throws {RequiredError}
|
|
164
166
|
*/
|
|
165
|
-
|
|
167
|
+
check1_1: function (options) {
|
|
166
168
|
if (options === void 0) { options = {}; }
|
|
167
169
|
return __awaiter(_this, void 0, void 0, function () {
|
|
168
170
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
169
171
|
return __generator(this, function (_a) {
|
|
170
|
-
localVarPath = "/
|
|
172
|
+
localVarPath = "/v1/claims/health";
|
|
171
173
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
172
174
|
if (configuration) {
|
|
173
175
|
baseOptions = configuration.baseOptions;
|
|
@@ -192,7 +194,7 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
192
194
|
* @param {*} [options] Override http request option.
|
|
193
195
|
* @throws {RequiredError}
|
|
194
196
|
*/
|
|
195
|
-
|
|
197
|
+
check_2: function (options) {
|
|
196
198
|
if (options === void 0) { options = {}; }
|
|
197
199
|
return __awaiter(_this, void 0, void 0, function () {
|
|
198
200
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -232,12 +234,12 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
232
234
|
* @param {*} [options] Override http request option.
|
|
233
235
|
* @throws {RequiredError}
|
|
234
236
|
*/
|
|
235
|
-
|
|
237
|
+
check: function (options) {
|
|
236
238
|
return __awaiter(this, void 0, void 0, function () {
|
|
237
239
|
var localVarAxiosArgs;
|
|
238
240
|
return __generator(this, function (_a) {
|
|
239
241
|
switch (_a.label) {
|
|
240
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
242
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check(options)];
|
|
241
243
|
case 1:
|
|
242
244
|
localVarAxiosArgs = _a.sent();
|
|
243
245
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -246,17 +248,18 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
246
248
|
});
|
|
247
249
|
},
|
|
248
250
|
/**
|
|
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.
|
|
251
|
+
* 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.
|
|
250
252
|
* @summary Health Check
|
|
251
253
|
* @param {*} [options] Override http request option.
|
|
254
|
+
* @deprecated
|
|
252
255
|
* @throws {RequiredError}
|
|
253
256
|
*/
|
|
254
|
-
|
|
257
|
+
check1: function (options) {
|
|
255
258
|
return __awaiter(this, void 0, void 0, function () {
|
|
256
259
|
var localVarAxiosArgs;
|
|
257
260
|
return __generator(this, function (_a) {
|
|
258
261
|
switch (_a.label) {
|
|
259
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
262
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check1(options)];
|
|
260
263
|
case 1:
|
|
261
264
|
localVarAxiosArgs = _a.sent();
|
|
262
265
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -265,17 +268,18 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
265
268
|
});
|
|
266
269
|
},
|
|
267
270
|
/**
|
|
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.
|
|
271
|
+
* 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
272
|
* @summary Health Check
|
|
270
273
|
* @param {*} [options] Override http request option.
|
|
274
|
+
* @deprecated
|
|
271
275
|
* @throws {RequiredError}
|
|
272
276
|
*/
|
|
273
|
-
|
|
277
|
+
check1_1: function (options) {
|
|
274
278
|
return __awaiter(this, void 0, void 0, function () {
|
|
275
279
|
var localVarAxiosArgs;
|
|
276
280
|
return __generator(this, function (_a) {
|
|
277
281
|
switch (_a.label) {
|
|
278
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
282
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check1_1(options)];
|
|
279
283
|
case 1:
|
|
280
284
|
localVarAxiosArgs = _a.sent();
|
|
281
285
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -289,12 +293,12 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
289
293
|
* @param {*} [options] Override http request option.
|
|
290
294
|
* @throws {RequiredError}
|
|
291
295
|
*/
|
|
292
|
-
|
|
296
|
+
check_2: function (options) {
|
|
293
297
|
return __awaiter(this, void 0, void 0, function () {
|
|
294
298
|
var localVarAxiosArgs;
|
|
295
299
|
return __generator(this, function (_a) {
|
|
296
300
|
switch (_a.label) {
|
|
297
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
301
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check_2(options)];
|
|
298
302
|
case 1:
|
|
299
303
|
localVarAxiosArgs = _a.sent();
|
|
300
304
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -318,26 +322,28 @@ var HealthCheckApiFactory = function (configuration, basePath, axios) {
|
|
|
318
322
|
* @param {*} [options] Override http request option.
|
|
319
323
|
* @throws {RequiredError}
|
|
320
324
|
*/
|
|
321
|
-
|
|
322
|
-
return localVarFp.
|
|
325
|
+
check: function (options) {
|
|
326
|
+
return localVarFp.check(options).then(function (request) { return request(axios, basePath); });
|
|
323
327
|
},
|
|
324
328
|
/**
|
|
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.
|
|
329
|
+
* 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.
|
|
326
330
|
* @summary Health Check
|
|
327
331
|
* @param {*} [options] Override http request option.
|
|
332
|
+
* @deprecated
|
|
328
333
|
* @throws {RequiredError}
|
|
329
334
|
*/
|
|
330
|
-
|
|
331
|
-
return localVarFp.
|
|
335
|
+
check1: function (options) {
|
|
336
|
+
return localVarFp.check1(options).then(function (request) { return request(axios, basePath); });
|
|
332
337
|
},
|
|
333
338
|
/**
|
|
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.
|
|
339
|
+
* 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
340
|
* @summary Health Check
|
|
336
341
|
* @param {*} [options] Override http request option.
|
|
342
|
+
* @deprecated
|
|
337
343
|
* @throws {RequiredError}
|
|
338
344
|
*/
|
|
339
|
-
|
|
340
|
-
return localVarFp.
|
|
345
|
+
check1_1: function (options) {
|
|
346
|
+
return localVarFp.check1_1(options).then(function (request) { return request(axios, basePath); });
|
|
341
347
|
},
|
|
342
348
|
/**
|
|
343
349
|
* 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.
|
|
@@ -345,8 +351,8 @@ var HealthCheckApiFactory = function (configuration, basePath, axios) {
|
|
|
345
351
|
* @param {*} [options] Override http request option.
|
|
346
352
|
* @throws {RequiredError}
|
|
347
353
|
*/
|
|
348
|
-
|
|
349
|
-
return localVarFp.
|
|
354
|
+
check_2: function (options) {
|
|
355
|
+
return localVarFp.check_2(options).then(function (request) { return request(axios, basePath); });
|
|
350
356
|
},
|
|
351
357
|
};
|
|
352
358
|
};
|
|
@@ -369,31 +375,33 @@ var HealthCheckApi = /** @class */ (function (_super) {
|
|
|
369
375
|
* @throws {RequiredError}
|
|
370
376
|
* @memberof HealthCheckApi
|
|
371
377
|
*/
|
|
372
|
-
HealthCheckApi.prototype.
|
|
378
|
+
HealthCheckApi.prototype.check = function (options) {
|
|
373
379
|
var _this = this;
|
|
374
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).
|
|
380
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
375
381
|
};
|
|
376
382
|
/**
|
|
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.
|
|
383
|
+
* 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.
|
|
378
384
|
* @summary Health Check
|
|
379
385
|
* @param {*} [options] Override http request option.
|
|
386
|
+
* @deprecated
|
|
380
387
|
* @throws {RequiredError}
|
|
381
388
|
* @memberof HealthCheckApi
|
|
382
389
|
*/
|
|
383
|
-
HealthCheckApi.prototype.
|
|
390
|
+
HealthCheckApi.prototype.check1 = function (options) {
|
|
384
391
|
var _this = this;
|
|
385
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).
|
|
392
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check1(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
386
393
|
};
|
|
387
394
|
/**
|
|
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.
|
|
395
|
+
* 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
396
|
* @summary Health Check
|
|
390
397
|
* @param {*} [options] Override http request option.
|
|
398
|
+
* @deprecated
|
|
391
399
|
* @throws {RequiredError}
|
|
392
400
|
* @memberof HealthCheckApi
|
|
393
401
|
*/
|
|
394
|
-
HealthCheckApi.prototype.
|
|
402
|
+
HealthCheckApi.prototype.check1_1 = function (options) {
|
|
395
403
|
var _this = this;
|
|
396
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).
|
|
404
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check1_1(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
397
405
|
};
|
|
398
406
|
/**
|
|
399
407
|
* 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.
|
|
@@ -402,9 +410,9 @@ var HealthCheckApi = /** @class */ (function (_super) {
|
|
|
402
410
|
* @throws {RequiredError}
|
|
403
411
|
* @memberof HealthCheckApi
|
|
404
412
|
*/
|
|
405
|
-
HealthCheckApi.prototype.
|
|
413
|
+
HealthCheckApi.prototype.check_2 = function (options) {
|
|
406
414
|
var _this = this;
|
|
407
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).
|
|
415
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check_2(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
408
416
|
};
|
|
409
417
|
return HealthCheckApi;
|
|
410
418
|
}(base_1.BaseAPI));
|