@emilgroup/claim-sdk 1.43.1-beta.10 → 1.43.1-beta.13
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/base.ts +0 -1
- 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/base.d.ts +1 -2
- package/dist/base.js +0 -1
- 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
|
}
|
|
@@ -98,67 +98,7 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
98
98
|
* @param {*} [options] Override http request option.
|
|
99
99
|
* @throws {RequiredError}
|
|
100
100
|
*/
|
|
101
|
-
|
|
102
|
-
if (options === void 0) { options = {}; }
|
|
103
|
-
return __awaiter(_this, void 0, void 0, function () {
|
|
104
|
-
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
105
|
-
return __generator(this, function (_a) {
|
|
106
|
-
localVarPath = "/v1/claims/health";
|
|
107
|
-
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
108
|
-
if (configuration) {
|
|
109
|
-
baseOptions = configuration.baseOptions;
|
|
110
|
-
baseAccessToken = configuration.accessToken;
|
|
111
|
-
}
|
|
112
|
-
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
113
|
-
localVarHeaderParameter = {};
|
|
114
|
-
localVarQueryParameter = {};
|
|
115
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
116
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
117
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
118
|
-
return [2 /*return*/, {
|
|
119
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
120
|
-
options: localVarRequestOptions,
|
|
121
|
-
}];
|
|
122
|
-
});
|
|
123
|
-
});
|
|
124
|
-
},
|
|
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.
|
|
127
|
-
* @summary Health Check
|
|
128
|
-
* @param {*} [options] Override http request option.
|
|
129
|
-
* @throws {RequiredError}
|
|
130
|
-
*/
|
|
131
|
-
check0_1: function (options) {
|
|
132
|
-
if (options === void 0) { options = {}; }
|
|
133
|
-
return __awaiter(_this, void 0, void 0, function () {
|
|
134
|
-
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
135
|
-
return __generator(this, function (_a) {
|
|
136
|
-
localVarPath = "/v1/claims/health";
|
|
137
|
-
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
138
|
-
if (configuration) {
|
|
139
|
-
baseOptions = configuration.baseOptions;
|
|
140
|
-
baseAccessToken = configuration.accessToken;
|
|
141
|
-
}
|
|
142
|
-
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
143
|
-
localVarHeaderParameter = {};
|
|
144
|
-
localVarQueryParameter = {};
|
|
145
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
146
|
-
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
147
|
-
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
148
|
-
return [2 /*return*/, {
|
|
149
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
150
|
-
options: localVarRequestOptions,
|
|
151
|
-
}];
|
|
152
|
-
});
|
|
153
|
-
});
|
|
154
|
-
},
|
|
155
|
-
/**
|
|
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
|
-
* @summary Health Check
|
|
158
|
-
* @param {*} [options] Override http request option.
|
|
159
|
-
* @throws {RequiredError}
|
|
160
|
-
*/
|
|
161
|
-
check1: function (options) {
|
|
101
|
+
check: function (options) {
|
|
162
102
|
if (options === void 0) { options = {}; }
|
|
163
103
|
return __awaiter(_this, void 0, void 0, function () {
|
|
164
104
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -183,17 +123,18 @@ var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
|
183
123
|
});
|
|
184
124
|
},
|
|
185
125
|
/**
|
|
186
|
-
* 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.
|
|
187
127
|
* @summary Health Check
|
|
188
128
|
* @param {*} [options] Override http request option.
|
|
129
|
+
* @deprecated
|
|
189
130
|
* @throws {RequiredError}
|
|
190
131
|
*/
|
|
191
|
-
|
|
132
|
+
check1: function (options) {
|
|
192
133
|
if (options === void 0) { options = {}; }
|
|
193
134
|
return __awaiter(_this, void 0, void 0, function () {
|
|
194
135
|
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
195
136
|
return __generator(this, function (_a) {
|
|
196
|
-
localVarPath = "/
|
|
137
|
+
localVarPath = "/v1/claims/health";
|
|
197
138
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
198
139
|
if (configuration) {
|
|
199
140
|
baseOptions = configuration.baseOptions;
|
|
@@ -228,31 +169,12 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
228
169
|
* @param {*} [options] Override http request option.
|
|
229
170
|
* @throws {RequiredError}
|
|
230
171
|
*/
|
|
231
|
-
|
|
232
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
233
|
-
var localVarAxiosArgs;
|
|
234
|
-
return __generator(this, function (_a) {
|
|
235
|
-
switch (_a.label) {
|
|
236
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check0(options)];
|
|
237
|
-
case 1:
|
|
238
|
-
localVarAxiosArgs = _a.sent();
|
|
239
|
-
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
240
|
-
}
|
|
241
|
-
});
|
|
242
|
-
});
|
|
243
|
-
},
|
|
244
|
-
/**
|
|
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.
|
|
246
|
-
* @summary Health Check
|
|
247
|
-
* @param {*} [options] Override http request option.
|
|
248
|
-
* @throws {RequiredError}
|
|
249
|
-
*/
|
|
250
|
-
check0_1: function (options) {
|
|
172
|
+
check: function (options) {
|
|
251
173
|
return __awaiter(this, void 0, void 0, function () {
|
|
252
174
|
var localVarAxiosArgs;
|
|
253
175
|
return __generator(this, function (_a) {
|
|
254
176
|
switch (_a.label) {
|
|
255
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.
|
|
177
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check(options)];
|
|
256
178
|
case 1:
|
|
257
179
|
localVarAxiosArgs = _a.sent();
|
|
258
180
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -261,9 +183,10 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
261
183
|
});
|
|
262
184
|
},
|
|
263
185
|
/**
|
|
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.
|
|
186
|
+
* 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
187
|
* @summary Health Check
|
|
266
188
|
* @param {*} [options] Override http request option.
|
|
189
|
+
* @deprecated
|
|
267
190
|
* @throws {RequiredError}
|
|
268
191
|
*/
|
|
269
192
|
check1: function (options) {
|
|
@@ -279,25 +202,6 @@ var HealthCheckApiFp = function (configuration) {
|
|
|
279
202
|
});
|
|
280
203
|
});
|
|
281
204
|
},
|
|
282
|
-
/**
|
|
283
|
-
* 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.
|
|
284
|
-
* @summary Health Check
|
|
285
|
-
* @param {*} [options] Override http request option.
|
|
286
|
-
* @throws {RequiredError}
|
|
287
|
-
*/
|
|
288
|
-
check1_2: function (options) {
|
|
289
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
290
|
-
var localVarAxiosArgs;
|
|
291
|
-
return __generator(this, function (_a) {
|
|
292
|
-
switch (_a.label) {
|
|
293
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.check1_2(options)];
|
|
294
|
-
case 1:
|
|
295
|
-
localVarAxiosArgs = _a.sent();
|
|
296
|
-
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
297
|
-
}
|
|
298
|
-
});
|
|
299
|
-
});
|
|
300
|
-
},
|
|
301
205
|
};
|
|
302
206
|
};
|
|
303
207
|
exports.HealthCheckApiFp = HealthCheckApiFp;
|
|
@@ -314,36 +218,19 @@ var HealthCheckApiFactory = function (configuration, basePath, axios) {
|
|
|
314
218
|
* @param {*} [options] Override http request option.
|
|
315
219
|
* @throws {RequiredError}
|
|
316
220
|
*/
|
|
317
|
-
|
|
318
|
-
return localVarFp.
|
|
319
|
-
},
|
|
320
|
-
/**
|
|
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.
|
|
322
|
-
* @summary Health Check
|
|
323
|
-
* @param {*} [options] Override http request option.
|
|
324
|
-
* @throws {RequiredError}
|
|
325
|
-
*/
|
|
326
|
-
check0_1: function (options) {
|
|
327
|
-
return localVarFp.check0_1(options).then(function (request) { return request(axios, basePath); });
|
|
221
|
+
check: function (options) {
|
|
222
|
+
return localVarFp.check(options).then(function (request) { return request(axios, basePath); });
|
|
328
223
|
},
|
|
329
224
|
/**
|
|
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.
|
|
225
|
+
* 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
226
|
* @summary Health Check
|
|
332
227
|
* @param {*} [options] Override http request option.
|
|
228
|
+
* @deprecated
|
|
333
229
|
* @throws {RequiredError}
|
|
334
230
|
*/
|
|
335
231
|
check1: function (options) {
|
|
336
232
|
return localVarFp.check1(options).then(function (request) { return request(axios, basePath); });
|
|
337
233
|
},
|
|
338
|
-
/**
|
|
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.
|
|
340
|
-
* @summary Health Check
|
|
341
|
-
* @param {*} [options] Override http request option.
|
|
342
|
-
* @throws {RequiredError}
|
|
343
|
-
*/
|
|
344
|
-
check1_2: function (options) {
|
|
345
|
-
return localVarFp.check1_2(options).then(function (request) { return request(axios, basePath); });
|
|
346
|
-
},
|
|
347
234
|
};
|
|
348
235
|
};
|
|
349
236
|
exports.HealthCheckApiFactory = HealthCheckApiFactory;
|
|
@@ -365,25 +252,15 @@ var HealthCheckApi = /** @class */ (function (_super) {
|
|
|
365
252
|
* @throws {RequiredError}
|
|
366
253
|
* @memberof HealthCheckApi
|
|
367
254
|
*/
|
|
368
|
-
HealthCheckApi.prototype.
|
|
255
|
+
HealthCheckApi.prototype.check = function (options) {
|
|
369
256
|
var _this = this;
|
|
370
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).
|
|
257
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
371
258
|
};
|
|
372
259
|
/**
|
|
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.
|
|
374
|
-
* @summary Health Check
|
|
375
|
-
* @param {*} [options] Override http request option.
|
|
376
|
-
* @throws {RequiredError}
|
|
377
|
-
* @memberof HealthCheckApi
|
|
378
|
-
*/
|
|
379
|
-
HealthCheckApi.prototype.check0_1 = function (options) {
|
|
380
|
-
var _this = this;
|
|
381
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).check0_1(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
382
|
-
};
|
|
383
|
-
/**
|
|
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.
|
|
260
|
+
* 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
261
|
* @summary Health Check
|
|
386
262
|
* @param {*} [options] Override http request option.
|
|
263
|
+
* @deprecated
|
|
387
264
|
* @throws {RequiredError}
|
|
388
265
|
* @memberof HealthCheckApi
|
|
389
266
|
*/
|
|
@@ -391,17 +268,6 @@ var HealthCheckApi = /** @class */ (function (_super) {
|
|
|
391
268
|
var _this = this;
|
|
392
269
|
return (0, exports.HealthCheckApiFp)(this.configuration).check1(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
393
270
|
};
|
|
394
|
-
/**
|
|
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.
|
|
396
|
-
* @summary Health Check
|
|
397
|
-
* @param {*} [options] Override http request option.
|
|
398
|
-
* @throws {RequiredError}
|
|
399
|
-
* @memberof HealthCheckApi
|
|
400
|
-
*/
|
|
401
|
-
HealthCheckApi.prototype.check1_2 = function (options) {
|
|
402
|
-
var _this = this;
|
|
403
|
-
return (0, exports.HealthCheckApiFp)(this.configuration).check1_2(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
404
|
-
};
|
|
405
271
|
return HealthCheckApi;
|
|
406
272
|
}(base_1.BaseAPI));
|
|
407
273
|
exports.HealthCheckApi = HealthCheckApi;
|