ch-admin-api-client-typescript 5.36.80 → 5.36.83
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/lib/api/countries-api.d.ts +306 -0
- package/lib/api/countries-api.d.ts.map +1 -1
- package/lib/api/countries-api.js +473 -0
- package/lib/models/country-item-model.d.ts +6 -0
- package/lib/models/country-item-model.d.ts.map +1 -1
- package/lib/models/country-language-item-model.d.ts +49 -0
- package/lib/models/country-language-item-model.d.ts.map +1 -0
- package/lib/models/country-language-item-model.js +15 -0
- package/lib/models/country-language-model.d.ts +49 -0
- package/lib/models/country-language-model.d.ts.map +1 -0
- package/lib/models/country-language-model.js +15 -0
- package/lib/models/country-languages-model.d.ts +33 -0
- package/lib/models/country-languages-model.d.ts.map +1 -0
- package/lib/models/country-languages-model.js +15 -0
- package/lib/models/country-model.d.ts +6 -0
- package/lib/models/country-model.d.ts.map +1 -1
- package/lib/models/create-country-command.d.ts +6 -0
- package/lib/models/create-country-command.d.ts.map +1 -1
- package/lib/models/create-hospital-command.d.ts +1 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/hospital-item-model.d.ts +1 -0
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +7 -6
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +5 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +5 -0
- package/lib/models/location-model.d.ts +19 -0
- package/lib/models/location-model.d.ts.map +1 -1
- package/lib/models/save-country-language-command.d.ts +25 -0
- package/lib/models/save-country-language-command.d.ts.map +1 -0
- package/lib/models/save-country-language-command.js +15 -0
- package/lib/models/sort-country-languages-command.d.ts +26 -0
- package/lib/models/sort-country-languages-command.d.ts.map +1 -0
- package/lib/models/sort-country-languages-command.js +15 -0
- package/lib/models/update-country-command.d.ts +6 -0
- package/lib/models/update-country-command.d.ts.map +1 -1
- package/lib/models/update-hospital-command.d.ts +1 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +5 -0
- package/src/api/countries-api.ts +542 -0
- package/src/models/country-item-model.ts +6 -0
- package/src/models/country-language-item-model.ts +54 -0
- package/src/models/country-language-model.ts +54 -0
- package/src/models/country-languages-model.ts +42 -0
- package/src/models/country-model.ts +6 -0
- package/src/models/create-country-command.ts +6 -0
- package/src/models/create-hospital-command.ts +1 -0
- package/src/models/hospital-item-model.ts +1 -0
- package/src/models/hospital-model.ts +7 -6
- package/src/models/index.ts +5 -0
- package/src/models/location-model.ts +19 -0
- package/src/models/save-country-language-command.ts +30 -0
- package/src/models/sort-country-languages-command.ts +33 -0
- package/src/models/update-country-command.ts +6 -0
- package/src/models/update-hospital-command.ts +1 -0
package/lib/api/countries-api.js
CHANGED
|
@@ -190,6 +190,253 @@ var CountriesApiAxiosParamCreator = function (configuration) {
|
|
|
190
190
|
});
|
|
191
191
|
});
|
|
192
192
|
},
|
|
193
|
+
/**
|
|
194
|
+
*
|
|
195
|
+
* @summary Get languages list of country
|
|
196
|
+
* @param {string} countryId
|
|
197
|
+
* @param {number} [page]
|
|
198
|
+
* @param {number} [limit]
|
|
199
|
+
* @param {Date} [lastRetrieved]
|
|
200
|
+
* @param {*} [options] Override http request option.
|
|
201
|
+
* @throws {RequiredError}
|
|
202
|
+
*/
|
|
203
|
+
apiV1CountriesCountryIdLanguagesGet: function (countryId, page, limit, lastRetrieved, options) {
|
|
204
|
+
if (options === void 0) { options = {}; }
|
|
205
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
206
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
207
|
+
return __generator(this, function (_a) {
|
|
208
|
+
switch (_a.label) {
|
|
209
|
+
case 0:
|
|
210
|
+
// verify required parameter 'countryId' is not null or undefined
|
|
211
|
+
(0, common_1.assertParamExists)('apiV1CountriesCountryIdLanguagesGet', 'countryId', countryId);
|
|
212
|
+
localVarPath = "/api/v1/countries/{countryId}/languages"
|
|
213
|
+
.replace("{".concat("countryId", "}"), encodeURIComponent(String(countryId)));
|
|
214
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
215
|
+
if (configuration) {
|
|
216
|
+
baseOptions = configuration.baseOptions;
|
|
217
|
+
}
|
|
218
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
219
|
+
localVarHeaderParameter = {};
|
|
220
|
+
localVarQueryParameter = {};
|
|
221
|
+
// authentication oauth2 required
|
|
222
|
+
// oauth required
|
|
223
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
224
|
+
case 1:
|
|
225
|
+
// authentication oauth2 required
|
|
226
|
+
// oauth required
|
|
227
|
+
_a.sent();
|
|
228
|
+
if (page !== undefined) {
|
|
229
|
+
localVarQueryParameter['page'] = page;
|
|
230
|
+
}
|
|
231
|
+
if (limit !== undefined) {
|
|
232
|
+
localVarQueryParameter['limit'] = limit;
|
|
233
|
+
}
|
|
234
|
+
if (lastRetrieved !== undefined) {
|
|
235
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
|
|
236
|
+
lastRetrieved.toISOString() :
|
|
237
|
+
lastRetrieved;
|
|
238
|
+
}
|
|
239
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
240
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
241
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
242
|
+
return [2 /*return*/, {
|
|
243
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
244
|
+
options: localVarRequestOptions,
|
|
245
|
+
}];
|
|
246
|
+
}
|
|
247
|
+
});
|
|
248
|
+
});
|
|
249
|
+
},
|
|
250
|
+
/**
|
|
251
|
+
*
|
|
252
|
+
* @summary Remove language from country language list
|
|
253
|
+
* @param {string} countryId
|
|
254
|
+
* @param {string} languageCode
|
|
255
|
+
* @param {*} [options] Override http request option.
|
|
256
|
+
* @throws {RequiredError}
|
|
257
|
+
*/
|
|
258
|
+
apiV1CountriesCountryIdLanguagesLanguageCodeDelete: function (countryId, languageCode, options) {
|
|
259
|
+
if (options === void 0) { options = {}; }
|
|
260
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
261
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
262
|
+
return __generator(this, function (_a) {
|
|
263
|
+
switch (_a.label) {
|
|
264
|
+
case 0:
|
|
265
|
+
// verify required parameter 'countryId' is not null or undefined
|
|
266
|
+
(0, common_1.assertParamExists)('apiV1CountriesCountryIdLanguagesLanguageCodeDelete', 'countryId', countryId);
|
|
267
|
+
// verify required parameter 'languageCode' is not null or undefined
|
|
268
|
+
(0, common_1.assertParamExists)('apiV1CountriesCountryIdLanguagesLanguageCodeDelete', 'languageCode', languageCode);
|
|
269
|
+
localVarPath = "/api/v1/countries/{countryId}/languages/{languageCode}"
|
|
270
|
+
.replace("{".concat("countryId", "}"), encodeURIComponent(String(countryId)))
|
|
271
|
+
.replace("{".concat("languageCode", "}"), encodeURIComponent(String(languageCode)));
|
|
272
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
273
|
+
if (configuration) {
|
|
274
|
+
baseOptions = configuration.baseOptions;
|
|
275
|
+
}
|
|
276
|
+
localVarRequestOptions = __assign(__assign({ method: 'DELETE' }, baseOptions), options);
|
|
277
|
+
localVarHeaderParameter = {};
|
|
278
|
+
localVarQueryParameter = {};
|
|
279
|
+
// authentication oauth2 required
|
|
280
|
+
// oauth required
|
|
281
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
282
|
+
case 1:
|
|
283
|
+
// authentication oauth2 required
|
|
284
|
+
// oauth required
|
|
285
|
+
_a.sent();
|
|
286
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
287
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
288
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
289
|
+
return [2 /*return*/, {
|
|
290
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
291
|
+
options: localVarRequestOptions,
|
|
292
|
+
}];
|
|
293
|
+
}
|
|
294
|
+
});
|
|
295
|
+
});
|
|
296
|
+
},
|
|
297
|
+
/**
|
|
298
|
+
*
|
|
299
|
+
* @summary Get language of country
|
|
300
|
+
* @param {string} countryId
|
|
301
|
+
* @param {string} languageCode
|
|
302
|
+
* @param {*} [options] Override http request option.
|
|
303
|
+
* @throws {RequiredError}
|
|
304
|
+
*/
|
|
305
|
+
apiV1CountriesCountryIdLanguagesLanguageCodeGet: function (countryId, languageCode, options) {
|
|
306
|
+
if (options === void 0) { options = {}; }
|
|
307
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
308
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
309
|
+
return __generator(this, function (_a) {
|
|
310
|
+
switch (_a.label) {
|
|
311
|
+
case 0:
|
|
312
|
+
// verify required parameter 'countryId' is not null or undefined
|
|
313
|
+
(0, common_1.assertParamExists)('apiV1CountriesCountryIdLanguagesLanguageCodeGet', 'countryId', countryId);
|
|
314
|
+
// verify required parameter 'languageCode' is not null or undefined
|
|
315
|
+
(0, common_1.assertParamExists)('apiV1CountriesCountryIdLanguagesLanguageCodeGet', 'languageCode', languageCode);
|
|
316
|
+
localVarPath = "/api/v1/countries/{countryId}/languages/{languageCode}"
|
|
317
|
+
.replace("{".concat("countryId", "}"), encodeURIComponent(String(countryId)))
|
|
318
|
+
.replace("{".concat("languageCode", "}"), encodeURIComponent(String(languageCode)));
|
|
319
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
320
|
+
if (configuration) {
|
|
321
|
+
baseOptions = configuration.baseOptions;
|
|
322
|
+
}
|
|
323
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
324
|
+
localVarHeaderParameter = {};
|
|
325
|
+
localVarQueryParameter = {};
|
|
326
|
+
// authentication oauth2 required
|
|
327
|
+
// oauth required
|
|
328
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
329
|
+
case 1:
|
|
330
|
+
// authentication oauth2 required
|
|
331
|
+
// oauth required
|
|
332
|
+
_a.sent();
|
|
333
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
334
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
335
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
336
|
+
return [2 /*return*/, {
|
|
337
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
338
|
+
options: localVarRequestOptions,
|
|
339
|
+
}];
|
|
340
|
+
}
|
|
341
|
+
});
|
|
342
|
+
});
|
|
343
|
+
},
|
|
344
|
+
/**
|
|
345
|
+
*
|
|
346
|
+
* @summary Add language into country language list
|
|
347
|
+
* @param {string} countryId
|
|
348
|
+
* @param {string} languageCode
|
|
349
|
+
* @param {SaveCountryLanguageCommand} [saveCountryLanguageCommand]
|
|
350
|
+
* @param {*} [options] Override http request option.
|
|
351
|
+
* @throws {RequiredError}
|
|
352
|
+
*/
|
|
353
|
+
apiV1CountriesCountryIdLanguagesLanguageCodePost: function (countryId, languageCode, saveCountryLanguageCommand, options) {
|
|
354
|
+
if (options === void 0) { options = {}; }
|
|
355
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
356
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
357
|
+
return __generator(this, function (_a) {
|
|
358
|
+
switch (_a.label) {
|
|
359
|
+
case 0:
|
|
360
|
+
// verify required parameter 'countryId' is not null or undefined
|
|
361
|
+
(0, common_1.assertParamExists)('apiV1CountriesCountryIdLanguagesLanguageCodePost', 'countryId', countryId);
|
|
362
|
+
// verify required parameter 'languageCode' is not null or undefined
|
|
363
|
+
(0, common_1.assertParamExists)('apiV1CountriesCountryIdLanguagesLanguageCodePost', 'languageCode', languageCode);
|
|
364
|
+
localVarPath = "/api/v1/countries/{countryId}/languages/{languageCode}"
|
|
365
|
+
.replace("{".concat("countryId", "}"), encodeURIComponent(String(countryId)))
|
|
366
|
+
.replace("{".concat("languageCode", "}"), encodeURIComponent(String(languageCode)));
|
|
367
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
368
|
+
if (configuration) {
|
|
369
|
+
baseOptions = configuration.baseOptions;
|
|
370
|
+
}
|
|
371
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
372
|
+
localVarHeaderParameter = {};
|
|
373
|
+
localVarQueryParameter = {};
|
|
374
|
+
// authentication oauth2 required
|
|
375
|
+
// oauth required
|
|
376
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
377
|
+
case 1:
|
|
378
|
+
// authentication oauth2 required
|
|
379
|
+
// oauth required
|
|
380
|
+
_a.sent();
|
|
381
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
382
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
383
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
384
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
385
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(saveCountryLanguageCommand, localVarRequestOptions, configuration);
|
|
386
|
+
return [2 /*return*/, {
|
|
387
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
388
|
+
options: localVarRequestOptions,
|
|
389
|
+
}];
|
|
390
|
+
}
|
|
391
|
+
});
|
|
392
|
+
});
|
|
393
|
+
},
|
|
394
|
+
/**
|
|
395
|
+
*
|
|
396
|
+
* @summary Batch for country\'s languages sorting
|
|
397
|
+
* @param {string} countryId
|
|
398
|
+
* @param {SortCountryLanguagesCommand} [sortCountryLanguagesCommand]
|
|
399
|
+
* @param {*} [options] Override http request option.
|
|
400
|
+
* @throws {RequiredError}
|
|
401
|
+
*/
|
|
402
|
+
apiV1CountriesCountryIdLanguagesSortPut: function (countryId, sortCountryLanguagesCommand, options) {
|
|
403
|
+
if (options === void 0) { options = {}; }
|
|
404
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
405
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
406
|
+
return __generator(this, function (_a) {
|
|
407
|
+
switch (_a.label) {
|
|
408
|
+
case 0:
|
|
409
|
+
// verify required parameter 'countryId' is not null or undefined
|
|
410
|
+
(0, common_1.assertParamExists)('apiV1CountriesCountryIdLanguagesSortPut', 'countryId', countryId);
|
|
411
|
+
localVarPath = "/api/v1/countries/{countryId}/languages/sort"
|
|
412
|
+
.replace("{".concat("countryId", "}"), encodeURIComponent(String(countryId)));
|
|
413
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
414
|
+
if (configuration) {
|
|
415
|
+
baseOptions = configuration.baseOptions;
|
|
416
|
+
}
|
|
417
|
+
localVarRequestOptions = __assign(__assign({ method: 'PUT' }, baseOptions), options);
|
|
418
|
+
localVarHeaderParameter = {};
|
|
419
|
+
localVarQueryParameter = {};
|
|
420
|
+
// authentication oauth2 required
|
|
421
|
+
// oauth required
|
|
422
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)];
|
|
423
|
+
case 1:
|
|
424
|
+
// authentication oauth2 required
|
|
425
|
+
// oauth required
|
|
426
|
+
_a.sent();
|
|
427
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
428
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
429
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
430
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
431
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(sortCountryLanguagesCommand, localVarRequestOptions, configuration);
|
|
432
|
+
return [2 /*return*/, {
|
|
433
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
434
|
+
options: localVarRequestOptions,
|
|
435
|
+
}];
|
|
436
|
+
}
|
|
437
|
+
});
|
|
438
|
+
});
|
|
439
|
+
},
|
|
193
440
|
/**
|
|
194
441
|
*
|
|
195
442
|
* @summary Get all CountryMedias.
|
|
@@ -894,6 +1141,114 @@ var CountriesApiFp = function (configuration) {
|
|
|
894
1141
|
});
|
|
895
1142
|
});
|
|
896
1143
|
},
|
|
1144
|
+
/**
|
|
1145
|
+
*
|
|
1146
|
+
* @summary Get languages list of country
|
|
1147
|
+
* @param {string} countryId
|
|
1148
|
+
* @param {number} [page]
|
|
1149
|
+
* @param {number} [limit]
|
|
1150
|
+
* @param {Date} [lastRetrieved]
|
|
1151
|
+
* @param {*} [options] Override http request option.
|
|
1152
|
+
* @throws {RequiredError}
|
|
1153
|
+
*/
|
|
1154
|
+
apiV1CountriesCountryIdLanguagesGet: function (countryId, page, limit, lastRetrieved, options) {
|
|
1155
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1156
|
+
var localVarAxiosArgs;
|
|
1157
|
+
return __generator(this, function (_a) {
|
|
1158
|
+
switch (_a.label) {
|
|
1159
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1CountriesCountryIdLanguagesGet(countryId, page, limit, lastRetrieved, options)];
|
|
1160
|
+
case 1:
|
|
1161
|
+
localVarAxiosArgs = _a.sent();
|
|
1162
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
1163
|
+
}
|
|
1164
|
+
});
|
|
1165
|
+
});
|
|
1166
|
+
},
|
|
1167
|
+
/**
|
|
1168
|
+
*
|
|
1169
|
+
* @summary Remove language from country language list
|
|
1170
|
+
* @param {string} countryId
|
|
1171
|
+
* @param {string} languageCode
|
|
1172
|
+
* @param {*} [options] Override http request option.
|
|
1173
|
+
* @throws {RequiredError}
|
|
1174
|
+
*/
|
|
1175
|
+
apiV1CountriesCountryIdLanguagesLanguageCodeDelete: function (countryId, languageCode, options) {
|
|
1176
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1177
|
+
var localVarAxiosArgs;
|
|
1178
|
+
return __generator(this, function (_a) {
|
|
1179
|
+
switch (_a.label) {
|
|
1180
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1CountriesCountryIdLanguagesLanguageCodeDelete(countryId, languageCode, options)];
|
|
1181
|
+
case 1:
|
|
1182
|
+
localVarAxiosArgs = _a.sent();
|
|
1183
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
1184
|
+
}
|
|
1185
|
+
});
|
|
1186
|
+
});
|
|
1187
|
+
},
|
|
1188
|
+
/**
|
|
1189
|
+
*
|
|
1190
|
+
* @summary Get language of country
|
|
1191
|
+
* @param {string} countryId
|
|
1192
|
+
* @param {string} languageCode
|
|
1193
|
+
* @param {*} [options] Override http request option.
|
|
1194
|
+
* @throws {RequiredError}
|
|
1195
|
+
*/
|
|
1196
|
+
apiV1CountriesCountryIdLanguagesLanguageCodeGet: function (countryId, languageCode, options) {
|
|
1197
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1198
|
+
var localVarAxiosArgs;
|
|
1199
|
+
return __generator(this, function (_a) {
|
|
1200
|
+
switch (_a.label) {
|
|
1201
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1CountriesCountryIdLanguagesLanguageCodeGet(countryId, languageCode, options)];
|
|
1202
|
+
case 1:
|
|
1203
|
+
localVarAxiosArgs = _a.sent();
|
|
1204
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
1205
|
+
}
|
|
1206
|
+
});
|
|
1207
|
+
});
|
|
1208
|
+
},
|
|
1209
|
+
/**
|
|
1210
|
+
*
|
|
1211
|
+
* @summary Add language into country language list
|
|
1212
|
+
* @param {string} countryId
|
|
1213
|
+
* @param {string} languageCode
|
|
1214
|
+
* @param {SaveCountryLanguageCommand} [saveCountryLanguageCommand]
|
|
1215
|
+
* @param {*} [options] Override http request option.
|
|
1216
|
+
* @throws {RequiredError}
|
|
1217
|
+
*/
|
|
1218
|
+
apiV1CountriesCountryIdLanguagesLanguageCodePost: function (countryId, languageCode, saveCountryLanguageCommand, options) {
|
|
1219
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1220
|
+
var localVarAxiosArgs;
|
|
1221
|
+
return __generator(this, function (_a) {
|
|
1222
|
+
switch (_a.label) {
|
|
1223
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1CountriesCountryIdLanguagesLanguageCodePost(countryId, languageCode, saveCountryLanguageCommand, options)];
|
|
1224
|
+
case 1:
|
|
1225
|
+
localVarAxiosArgs = _a.sent();
|
|
1226
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
1227
|
+
}
|
|
1228
|
+
});
|
|
1229
|
+
});
|
|
1230
|
+
},
|
|
1231
|
+
/**
|
|
1232
|
+
*
|
|
1233
|
+
* @summary Batch for country\'s languages sorting
|
|
1234
|
+
* @param {string} countryId
|
|
1235
|
+
* @param {SortCountryLanguagesCommand} [sortCountryLanguagesCommand]
|
|
1236
|
+
* @param {*} [options] Override http request option.
|
|
1237
|
+
* @throws {RequiredError}
|
|
1238
|
+
*/
|
|
1239
|
+
apiV1CountriesCountryIdLanguagesSortPut: function (countryId, sortCountryLanguagesCommand, options) {
|
|
1240
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
1241
|
+
var localVarAxiosArgs;
|
|
1242
|
+
return __generator(this, function (_a) {
|
|
1243
|
+
switch (_a.label) {
|
|
1244
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1CountriesCountryIdLanguagesSortPut(countryId, sortCountryLanguagesCommand, options)];
|
|
1245
|
+
case 1:
|
|
1246
|
+
localVarAxiosArgs = _a.sent();
|
|
1247
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
1248
|
+
}
|
|
1249
|
+
});
|
|
1250
|
+
});
|
|
1251
|
+
},
|
|
897
1252
|
/**
|
|
898
1253
|
*
|
|
899
1254
|
* @summary Get all CountryMedias.
|
|
@@ -1210,6 +1565,64 @@ var CountriesApiFactory = function (configuration, basePath, axios) {
|
|
|
1210
1565
|
apiV1CountriesCountryIdGet: function (countryId, languageCode, returnDefaultValue, options) {
|
|
1211
1566
|
return localVarFp.apiV1CountriesCountryIdGet(countryId, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
1212
1567
|
},
|
|
1568
|
+
/**
|
|
1569
|
+
*
|
|
1570
|
+
* @summary Get languages list of country
|
|
1571
|
+
* @param {string} countryId
|
|
1572
|
+
* @param {number} [page]
|
|
1573
|
+
* @param {number} [limit]
|
|
1574
|
+
* @param {Date} [lastRetrieved]
|
|
1575
|
+
* @param {*} [options] Override http request option.
|
|
1576
|
+
* @throws {RequiredError}
|
|
1577
|
+
*/
|
|
1578
|
+
apiV1CountriesCountryIdLanguagesGet: function (countryId, page, limit, lastRetrieved, options) {
|
|
1579
|
+
return localVarFp.apiV1CountriesCountryIdLanguagesGet(countryId, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
1580
|
+
},
|
|
1581
|
+
/**
|
|
1582
|
+
*
|
|
1583
|
+
* @summary Remove language from country language list
|
|
1584
|
+
* @param {string} countryId
|
|
1585
|
+
* @param {string} languageCode
|
|
1586
|
+
* @param {*} [options] Override http request option.
|
|
1587
|
+
* @throws {RequiredError}
|
|
1588
|
+
*/
|
|
1589
|
+
apiV1CountriesCountryIdLanguagesLanguageCodeDelete: function (countryId, languageCode, options) {
|
|
1590
|
+
return localVarFp.apiV1CountriesCountryIdLanguagesLanguageCodeDelete(countryId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
1591
|
+
},
|
|
1592
|
+
/**
|
|
1593
|
+
*
|
|
1594
|
+
* @summary Get language of country
|
|
1595
|
+
* @param {string} countryId
|
|
1596
|
+
* @param {string} languageCode
|
|
1597
|
+
* @param {*} [options] Override http request option.
|
|
1598
|
+
* @throws {RequiredError}
|
|
1599
|
+
*/
|
|
1600
|
+
apiV1CountriesCountryIdLanguagesLanguageCodeGet: function (countryId, languageCode, options) {
|
|
1601
|
+
return localVarFp.apiV1CountriesCountryIdLanguagesLanguageCodeGet(countryId, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
1602
|
+
},
|
|
1603
|
+
/**
|
|
1604
|
+
*
|
|
1605
|
+
* @summary Add language into country language list
|
|
1606
|
+
* @param {string} countryId
|
|
1607
|
+
* @param {string} languageCode
|
|
1608
|
+
* @param {SaveCountryLanguageCommand} [saveCountryLanguageCommand]
|
|
1609
|
+
* @param {*} [options] Override http request option.
|
|
1610
|
+
* @throws {RequiredError}
|
|
1611
|
+
*/
|
|
1612
|
+
apiV1CountriesCountryIdLanguagesLanguageCodePost: function (countryId, languageCode, saveCountryLanguageCommand, options) {
|
|
1613
|
+
return localVarFp.apiV1CountriesCountryIdLanguagesLanguageCodePost(countryId, languageCode, saveCountryLanguageCommand, options).then(function (request) { return request(axios, basePath); });
|
|
1614
|
+
},
|
|
1615
|
+
/**
|
|
1616
|
+
*
|
|
1617
|
+
* @summary Batch for country\'s languages sorting
|
|
1618
|
+
* @param {string} countryId
|
|
1619
|
+
* @param {SortCountryLanguagesCommand} [sortCountryLanguagesCommand]
|
|
1620
|
+
* @param {*} [options] Override http request option.
|
|
1621
|
+
* @throws {RequiredError}
|
|
1622
|
+
*/
|
|
1623
|
+
apiV1CountriesCountryIdLanguagesSortPut: function (countryId, sortCountryLanguagesCommand, options) {
|
|
1624
|
+
return localVarFp.apiV1CountriesCountryIdLanguagesSortPut(countryId, sortCountryLanguagesCommand, options).then(function (request) { return request(axios, basePath); });
|
|
1625
|
+
},
|
|
1213
1626
|
/**
|
|
1214
1627
|
*
|
|
1215
1628
|
* @summary Get all CountryMedias.
|
|
@@ -1401,6 +1814,66 @@ var CountriesApi = /** @class */ (function (_super) {
|
|
|
1401
1814
|
var _this = this;
|
|
1402
1815
|
return (0, exports.CountriesApiFp)(this.configuration).apiV1CountriesCountryIdGet(requestParameters.countryId, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1403
1816
|
};
|
|
1817
|
+
/**
|
|
1818
|
+
*
|
|
1819
|
+
* @summary Get languages list of country
|
|
1820
|
+
* @param {CountriesApiApiV1CountriesCountryIdLanguagesGetRequest} requestParameters Request parameters.
|
|
1821
|
+
* @param {*} [options] Override http request option.
|
|
1822
|
+
* @throws {RequiredError}
|
|
1823
|
+
* @memberof CountriesApi
|
|
1824
|
+
*/
|
|
1825
|
+
CountriesApi.prototype.apiV1CountriesCountryIdLanguagesGet = function (requestParameters, options) {
|
|
1826
|
+
var _this = this;
|
|
1827
|
+
return (0, exports.CountriesApiFp)(this.configuration).apiV1CountriesCountryIdLanguagesGet(requestParameters.countryId, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1828
|
+
};
|
|
1829
|
+
/**
|
|
1830
|
+
*
|
|
1831
|
+
* @summary Remove language from country language list
|
|
1832
|
+
* @param {CountriesApiApiV1CountriesCountryIdLanguagesLanguageCodeDeleteRequest} requestParameters Request parameters.
|
|
1833
|
+
* @param {*} [options] Override http request option.
|
|
1834
|
+
* @throws {RequiredError}
|
|
1835
|
+
* @memberof CountriesApi
|
|
1836
|
+
*/
|
|
1837
|
+
CountriesApi.prototype.apiV1CountriesCountryIdLanguagesLanguageCodeDelete = function (requestParameters, options) {
|
|
1838
|
+
var _this = this;
|
|
1839
|
+
return (0, exports.CountriesApiFp)(this.configuration).apiV1CountriesCountryIdLanguagesLanguageCodeDelete(requestParameters.countryId, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1840
|
+
};
|
|
1841
|
+
/**
|
|
1842
|
+
*
|
|
1843
|
+
* @summary Get language of country
|
|
1844
|
+
* @param {CountriesApiApiV1CountriesCountryIdLanguagesLanguageCodeGetRequest} requestParameters Request parameters.
|
|
1845
|
+
* @param {*} [options] Override http request option.
|
|
1846
|
+
* @throws {RequiredError}
|
|
1847
|
+
* @memberof CountriesApi
|
|
1848
|
+
*/
|
|
1849
|
+
CountriesApi.prototype.apiV1CountriesCountryIdLanguagesLanguageCodeGet = function (requestParameters, options) {
|
|
1850
|
+
var _this = this;
|
|
1851
|
+
return (0, exports.CountriesApiFp)(this.configuration).apiV1CountriesCountryIdLanguagesLanguageCodeGet(requestParameters.countryId, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1852
|
+
};
|
|
1853
|
+
/**
|
|
1854
|
+
*
|
|
1855
|
+
* @summary Add language into country language list
|
|
1856
|
+
* @param {CountriesApiApiV1CountriesCountryIdLanguagesLanguageCodePostRequest} requestParameters Request parameters.
|
|
1857
|
+
* @param {*} [options] Override http request option.
|
|
1858
|
+
* @throws {RequiredError}
|
|
1859
|
+
* @memberof CountriesApi
|
|
1860
|
+
*/
|
|
1861
|
+
CountriesApi.prototype.apiV1CountriesCountryIdLanguagesLanguageCodePost = function (requestParameters, options) {
|
|
1862
|
+
var _this = this;
|
|
1863
|
+
return (0, exports.CountriesApiFp)(this.configuration).apiV1CountriesCountryIdLanguagesLanguageCodePost(requestParameters.countryId, requestParameters.languageCode, requestParameters.saveCountryLanguageCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1864
|
+
};
|
|
1865
|
+
/**
|
|
1866
|
+
*
|
|
1867
|
+
* @summary Batch for country\'s languages sorting
|
|
1868
|
+
* @param {CountriesApiApiV1CountriesCountryIdLanguagesSortPutRequest} requestParameters Request parameters.
|
|
1869
|
+
* @param {*} [options] Override http request option.
|
|
1870
|
+
* @throws {RequiredError}
|
|
1871
|
+
* @memberof CountriesApi
|
|
1872
|
+
*/
|
|
1873
|
+
CountriesApi.prototype.apiV1CountriesCountryIdLanguagesSortPut = function (requestParameters, options) {
|
|
1874
|
+
var _this = this;
|
|
1875
|
+
return (0, exports.CountriesApiFp)(this.configuration).apiV1CountriesCountryIdLanguagesSortPut(requestParameters.countryId, requestParameters.sortCountryLanguagesCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1876
|
+
};
|
|
1404
1877
|
/**
|
|
1405
1878
|
*
|
|
1406
1879
|
* @summary Get all CountryMedias.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"country-item-model.d.ts","sourceRoot":"","sources":["../../src/models/country-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAErD;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,eAAe,CAAC;CACvC"}
|
|
1
|
+
{"version":3,"file":"country-item-model.d.ts","sourceRoot":"","sources":["../../src/models/country-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAErD;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,eAAe,CAAC;CACvC"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Admin Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CountryLanguageItemModel
|
|
16
|
+
*/
|
|
17
|
+
export interface CountryLanguageItemModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CountryLanguageItemModel
|
|
22
|
+
*/
|
|
23
|
+
'countryId'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CountryLanguageItemModel
|
|
28
|
+
*/
|
|
29
|
+
'languageCode'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof CountryLanguageItemModel
|
|
34
|
+
*/
|
|
35
|
+
'order'?: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CountryLanguageItemModel
|
|
40
|
+
*/
|
|
41
|
+
'languageName'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CountryLanguageItemModel
|
|
46
|
+
*/
|
|
47
|
+
'languageLocalizedName'?: string | null;
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=country-language-item-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"country-language-item-model.d.ts","sourceRoot":"","sources":["../../src/models/country-language-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CloudHospital Admin Api
|
|
3
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: developer@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CountryLanguageModel
|
|
16
|
+
*/
|
|
17
|
+
export interface CountryLanguageModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CountryLanguageModel
|
|
22
|
+
*/
|
|
23
|
+
'countryId'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CountryLanguageModel
|
|
28
|
+
*/
|
|
29
|
+
'languageCode'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof CountryLanguageModel
|
|
34
|
+
*/
|
|
35
|
+
'order'?: number;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CountryLanguageModel
|
|
40
|
+
*/
|
|
41
|
+
'languageName'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CountryLanguageModel
|
|
46
|
+
*/
|
|
47
|
+
'languageLocalizedName'?: string | null;
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=country-language-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"country-language-model.d.ts","sourceRoot":"","sources":["../../src/models/country-language-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|