ch-admin-api-client-typescript 5.14.27 → 5.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api/hospital-branches-api.d.ts +402 -0
- package/lib/api/hospital-branches-api.d.ts.map +1 -0
- package/lib/api/hospital-branches-api.js +697 -0
- package/lib/api/hospital-groups-api.d.ts +402 -0
- package/lib/api/hospital-groups-api.d.ts.map +1 -0
- package/lib/api/hospital-groups-api.js +697 -0
- package/lib/api/hospitals-api.d.ts +30 -30
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +26 -26
- package/lib/api.d.ts +2 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +2 -0
- package/lib/models/create-hospital-branch-command.d.ts +73 -0
- package/lib/models/create-hospital-branch-command.d.ts.map +1 -0
- package/lib/models/create-hospital-branch-command.js +15 -0
- package/lib/models/create-hospital-group-command.d.ts +67 -0
- package/lib/models/create-hospital-group-command.d.ts.map +1 -0
- package/lib/models/create-hospital-group-command.js +15 -0
- package/lib/models/hospital-branch-item-model.d.ts +80 -0
- package/lib/models/hospital-branch-item-model.d.ts.map +1 -0
- package/lib/models/hospital-branch-item-model.js +15 -0
- package/lib/models/hospital-branch-model.d.ts +98 -0
- package/lib/models/hospital-branch-model.d.ts.map +1 -0
- package/lib/models/hospital-branch-model.js +15 -0
- package/lib/models/hospital-branches-model.d.ts +33 -0
- package/lib/models/hospital-branches-model.d.ts.map +1 -0
- package/lib/models/hospital-branches-model.js +15 -0
- package/lib/models/hospital-group-item-model.d.ts +62 -0
- package/lib/models/hospital-group-item-model.d.ts.map +1 -0
- package/lib/models/hospital-group-item-model.js +15 -0
- package/lib/models/hospital-group-model.d.ts +80 -0
- package/lib/models/hospital-group-model.d.ts.map +1 -0
- package/lib/models/hospital-group-model.js +15 -0
- package/lib/models/hospital-groups-model.d.ts +33 -0
- package/lib/models/hospital-groups-model.d.ts.map +1 -0
- package/lib/models/hospital-groups-model.js +15 -0
- package/lib/models/index.d.ts +10 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +10 -0
- package/lib/models/update-hospital-branch-command.d.ts +61 -0
- package/lib/models/update-hospital-branch-command.d.ts.map +1 -0
- package/lib/models/update-hospital-branch-command.js +15 -0
- package/lib/models/update-hospital-group-command.d.ts +67 -0
- package/lib/models/update-hospital-group-command.d.ts.map +1 -0
- package/lib/models/update-hospital-group-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +12 -0
- package/src/api/hospital-branches-api.ts +706 -0
- package/src/api/hospital-groups-api.ts +706 -0
- package/src/api/hospitals-api.ts +49 -49
- package/src/api.ts +2 -0
- package/src/models/create-hospital-branch-command.ts +78 -0
- package/src/models/create-hospital-group-command.ts +72 -0
- package/src/models/hospital-branch-item-model.ts +87 -0
- package/src/models/hospital-branch-model.ts +105 -0
- package/src/models/hospital-branches-model.ts +42 -0
- package/src/models/hospital-group-item-model.ts +69 -0
- package/src/models/hospital-group-model.ts +87 -0
- package/src/models/hospital-groups-model.ts +42 -0
- package/src/models/index.ts +10 -0
- package/src/models/update-hospital-branch-command.ts +66 -0
- package/src/models/update-hospital-group-command.ts +72 -0
package/lib/api/hospitals-api.js
CHANGED
|
@@ -3244,6 +3244,9 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3244
3244
|
*
|
|
3245
3245
|
* @summary Get managers
|
|
3246
3246
|
* @param {string} hospitalId
|
|
3247
|
+
* @param {number} [page]
|
|
3248
|
+
* @param {number} [limit]
|
|
3249
|
+
* @param {Date} [lastRetrieved]
|
|
3247
3250
|
* @param {string} [id]
|
|
3248
3251
|
* @param {string} [fullname]
|
|
3249
3252
|
* @param {string} [email]
|
|
@@ -3251,13 +3254,10 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3251
3254
|
* @param {Date} [dateOfBirth]
|
|
3252
3255
|
* @param {Date} [created]
|
|
3253
3256
|
* @param {boolean} [showHidden]
|
|
3254
|
-
* @param {number} [page]
|
|
3255
|
-
* @param {number} [limit]
|
|
3256
|
-
* @param {Date} [lastRetrieved]
|
|
3257
3257
|
* @param {*} [options] Override http request option.
|
|
3258
3258
|
* @throws {RequiredError}
|
|
3259
3259
|
*/
|
|
3260
|
-
apiV1HospitalsHospitalIdManagersGet: function (hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden,
|
|
3260
|
+
apiV1HospitalsHospitalIdManagersGet: function (hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options) {
|
|
3261
3261
|
if (options === void 0) { options = {}; }
|
|
3262
3262
|
return __awaiter(_this, void 0, void 0, function () {
|
|
3263
3263
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -3282,6 +3282,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3282
3282
|
// authentication oauth2 required
|
|
3283
3283
|
// oauth required
|
|
3284
3284
|
_a.sent();
|
|
3285
|
+
if (page !== undefined) {
|
|
3286
|
+
localVarQueryParameter['page'] = page;
|
|
3287
|
+
}
|
|
3288
|
+
if (limit !== undefined) {
|
|
3289
|
+
localVarQueryParameter['limit'] = limit;
|
|
3290
|
+
}
|
|
3291
|
+
if (lastRetrieved !== undefined) {
|
|
3292
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
|
|
3293
|
+
lastRetrieved.toISOString() :
|
|
3294
|
+
lastRetrieved;
|
|
3295
|
+
}
|
|
3285
3296
|
if (id !== undefined) {
|
|
3286
3297
|
localVarQueryParameter['Id'] = id;
|
|
3287
3298
|
}
|
|
@@ -3307,17 +3318,6 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3307
3318
|
if (showHidden !== undefined) {
|
|
3308
3319
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
3309
3320
|
}
|
|
3310
|
-
if (page !== undefined) {
|
|
3311
|
-
localVarQueryParameter['page'] = page;
|
|
3312
|
-
}
|
|
3313
|
-
if (limit !== undefined) {
|
|
3314
|
-
localVarQueryParameter['limit'] = limit;
|
|
3315
|
-
}
|
|
3316
|
-
if (lastRetrieved !== undefined) {
|
|
3317
|
-
localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
|
|
3318
|
-
lastRetrieved.toISOString() :
|
|
3319
|
-
lastRetrieved;
|
|
3320
|
-
}
|
|
3321
3321
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
3322
3322
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3323
3323
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -9327,6 +9327,9 @@ var HospitalsApiFp = function (configuration) {
|
|
|
9327
9327
|
*
|
|
9328
9328
|
* @summary Get managers
|
|
9329
9329
|
* @param {string} hospitalId
|
|
9330
|
+
* @param {number} [page]
|
|
9331
|
+
* @param {number} [limit]
|
|
9332
|
+
* @param {Date} [lastRetrieved]
|
|
9330
9333
|
* @param {string} [id]
|
|
9331
9334
|
* @param {string} [fullname]
|
|
9332
9335
|
* @param {string} [email]
|
|
@@ -9334,18 +9337,15 @@ var HospitalsApiFp = function (configuration) {
|
|
|
9334
9337
|
* @param {Date} [dateOfBirth]
|
|
9335
9338
|
* @param {Date} [created]
|
|
9336
9339
|
* @param {boolean} [showHidden]
|
|
9337
|
-
* @param {number} [page]
|
|
9338
|
-
* @param {number} [limit]
|
|
9339
|
-
* @param {Date} [lastRetrieved]
|
|
9340
9340
|
* @param {*} [options] Override http request option.
|
|
9341
9341
|
* @throws {RequiredError}
|
|
9342
9342
|
*/
|
|
9343
|
-
apiV1HospitalsHospitalIdManagersGet: function (hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden,
|
|
9343
|
+
apiV1HospitalsHospitalIdManagersGet: function (hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options) {
|
|
9344
9344
|
return __awaiter(this, void 0, void 0, function () {
|
|
9345
9345
|
var localVarAxiosArgs;
|
|
9346
9346
|
return __generator(this, function (_a) {
|
|
9347
9347
|
switch (_a.label) {
|
|
9348
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdManagersGet(hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden,
|
|
9348
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdManagersGet(hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options)];
|
|
9349
9349
|
case 1:
|
|
9350
9350
|
localVarAxiosArgs = _a.sent();
|
|
9351
9351
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -12043,6 +12043,9 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
12043
12043
|
*
|
|
12044
12044
|
* @summary Get managers
|
|
12045
12045
|
* @param {string} hospitalId
|
|
12046
|
+
* @param {number} [page]
|
|
12047
|
+
* @param {number} [limit]
|
|
12048
|
+
* @param {Date} [lastRetrieved]
|
|
12046
12049
|
* @param {string} [id]
|
|
12047
12050
|
* @param {string} [fullname]
|
|
12048
12051
|
* @param {string} [email]
|
|
@@ -12050,14 +12053,11 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
12050
12053
|
* @param {Date} [dateOfBirth]
|
|
12051
12054
|
* @param {Date} [created]
|
|
12052
12055
|
* @param {boolean} [showHidden]
|
|
12053
|
-
* @param {number} [page]
|
|
12054
|
-
* @param {number} [limit]
|
|
12055
|
-
* @param {Date} [lastRetrieved]
|
|
12056
12056
|
* @param {*} [options] Override http request option.
|
|
12057
12057
|
* @throws {RequiredError}
|
|
12058
12058
|
*/
|
|
12059
|
-
apiV1HospitalsHospitalIdManagersGet: function (hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden,
|
|
12060
|
-
return localVarFp.apiV1HospitalsHospitalIdManagersGet(hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden,
|
|
12059
|
+
apiV1HospitalsHospitalIdManagersGet: function (hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options) {
|
|
12060
|
+
return localVarFp.apiV1HospitalsHospitalIdManagersGet(hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options).then(function (request) { return request(axios, basePath); });
|
|
12061
12061
|
},
|
|
12062
12062
|
/**
|
|
12063
12063
|
*
|
|
@@ -13888,7 +13888,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
13888
13888
|
*/
|
|
13889
13889
|
HospitalsApi.prototype.apiV1HospitalsHospitalIdManagersGet = function (requestParameters, options) {
|
|
13890
13890
|
var _this = this;
|
|
13891
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdManagersGet(requestParameters.hospitalId, requestParameters.
|
|
13891
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdManagersGet(requestParameters.hospitalId, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, requestParameters.id, requestParameters.fullname, requestParameters.email, requestParameters.gender, requestParameters.dateOfBirth, requestParameters.created, requestParameters.showHidden, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
13892
13892
|
};
|
|
13893
13893
|
/**
|
|
13894
13894
|
*
|
package/lib/api.d.ts
CHANGED
|
@@ -35,6 +35,8 @@ export * from './api/faqs-api';
|
|
|
35
35
|
export * from './api/grades-api';
|
|
36
36
|
export * from './api/group-channels-api';
|
|
37
37
|
export * from './api/header-navigations-api';
|
|
38
|
+
export * from './api/hospital-branches-api';
|
|
39
|
+
export * from './api/hospital-groups-api';
|
|
38
40
|
export * from './api/hospitals-api';
|
|
39
41
|
export * from './api/hospitals-consultation-timetable-overrides-api';
|
|
40
42
|
export * from './api/hospitals-consultation-timetables-api';
|
package/lib/api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qBAAqB,CAAC;AACpC,cAAc,sDAAsD,CAAC;AACrE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC"}
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../src/api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH,cAAc,oBAAoB,CAAC;AACnC,cAAc,0BAA0B,CAAC;AACzC,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,qBAAqB,CAAC;AACpC,cAAc,sDAAsD,CAAC;AACrE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,kBAAkB,CAAC;AACjC,cAAc,qBAAqB,CAAC;AACpC,cAAc,oBAAoB,CAAC;AACnC,cAAc,uBAAuB,CAAC;AACtC,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC;AACnC,cAAc,kBAAkB,CAAC;AACjC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AACnC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,wBAAwB,CAAC;AACvC,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,0BAA0B,CAAC;AACzC,cAAc,wBAAwB,CAAC;AACvC,cAAc,oBAAoB,CAAC"}
|
package/lib/api.js
CHANGED
|
@@ -53,6 +53,8 @@ __exportStar(require("./api/faqs-api"), exports);
|
|
|
53
53
|
__exportStar(require("./api/grades-api"), exports);
|
|
54
54
|
__exportStar(require("./api/group-channels-api"), exports);
|
|
55
55
|
__exportStar(require("./api/header-navigations-api"), exports);
|
|
56
|
+
__exportStar(require("./api/hospital-branches-api"), exports);
|
|
57
|
+
__exportStar(require("./api/hospital-groups-api"), exports);
|
|
56
58
|
__exportStar(require("./api/hospitals-api"), exports);
|
|
57
59
|
__exportStar(require("./api/hospitals-consultation-timetable-overrides-api"), exports);
|
|
58
60
|
__exportStar(require("./api/hospitals-consultation-timetables-api"), exports);
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: hyounoosung@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 CreateHospitalBranchCommand
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateHospitalBranchCommand {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateHospitalBranchCommand
|
|
22
|
+
*/
|
|
23
|
+
'hospitalGroupId'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateHospitalBranchCommand
|
|
28
|
+
*/
|
|
29
|
+
'hospitalId'?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateHospitalBranchCommand
|
|
34
|
+
*/
|
|
35
|
+
'languageCode'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateHospitalBranchCommand
|
|
40
|
+
*/
|
|
41
|
+
'name'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateHospitalBranchCommand
|
|
46
|
+
*/
|
|
47
|
+
'description'?: string | null;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateHospitalBranchCommand
|
|
52
|
+
*/
|
|
53
|
+
'overview'?: string | null;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateHospitalBranchCommand
|
|
58
|
+
*/
|
|
59
|
+
'content'?: string | null;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {boolean}
|
|
63
|
+
* @memberof CreateHospitalBranchCommand
|
|
64
|
+
*/
|
|
65
|
+
'isConfirmed'?: boolean;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {number}
|
|
69
|
+
* @memberof CreateHospitalBranchCommand
|
|
70
|
+
*/
|
|
71
|
+
'order'?: number;
|
|
72
|
+
}
|
|
73
|
+
//# sourceMappingURL=create-hospital-branch-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-hospital-branch-command.d.ts","sourceRoot":"","sources":["../../src/models/create-hospital-branch-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: hyounoosung@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,67 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: hyounoosung@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 CreateHospitalGroupCommand
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateHospitalGroupCommand {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateHospitalGroupCommand
|
|
22
|
+
*/
|
|
23
|
+
'languageCode'?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateHospitalGroupCommand
|
|
28
|
+
*/
|
|
29
|
+
'name'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateHospitalGroupCommand
|
|
34
|
+
*/
|
|
35
|
+
'description'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateHospitalGroupCommand
|
|
40
|
+
*/
|
|
41
|
+
'overview'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateHospitalGroupCommand
|
|
46
|
+
*/
|
|
47
|
+
'content'?: string | null;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof CreateHospitalGroupCommand
|
|
52
|
+
*/
|
|
53
|
+
'isConfirmed'?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof CreateHospitalGroupCommand
|
|
58
|
+
*/
|
|
59
|
+
'logo'?: string | null;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CreateHospitalGroupCommand
|
|
64
|
+
*/
|
|
65
|
+
'primaryHospitalId'?: string;
|
|
66
|
+
}
|
|
67
|
+
//# sourceMappingURL=create-hospital-group-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-hospital-group-command.d.ts","sourceRoot":"","sources":["../../src/models/create-hospital-group-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAChC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: hyounoosung@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,80 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: hyounoosung@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
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface HospitalBranchItemModel
|
|
17
|
+
*/
|
|
18
|
+
export interface HospitalBranchItemModel {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof HospitalBranchItemModel
|
|
23
|
+
*/
|
|
24
|
+
'id'?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof HospitalBranchItemModel
|
|
29
|
+
*/
|
|
30
|
+
'languageCode'?: string | null;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof HospitalBranchItemModel
|
|
35
|
+
*/
|
|
36
|
+
'hospitalGroupId'?: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof HospitalBranchItemModel
|
|
41
|
+
*/
|
|
42
|
+
'hospitalId'?: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof HospitalBranchItemModel
|
|
47
|
+
*/
|
|
48
|
+
'order'?: number;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof HospitalBranchItemModel
|
|
53
|
+
*/
|
|
54
|
+
'name'?: string | null;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {boolean}
|
|
58
|
+
* @memberof HospitalBranchItemModel
|
|
59
|
+
*/
|
|
60
|
+
'isConfirmed'?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {AuditableEntityModel}
|
|
64
|
+
* @memberof HospitalBranchItemModel
|
|
65
|
+
*/
|
|
66
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof HospitalBranchItemModel
|
|
71
|
+
*/
|
|
72
|
+
'hospitalGroupName'?: string | null;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof HospitalBranchItemModel
|
|
77
|
+
*/
|
|
78
|
+
'hospitalName'?: string | null;
|
|
79
|
+
}
|
|
80
|
+
//# sourceMappingURL=hospital-branch-item-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hospital-branch-item-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-branch-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAEhE;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAClC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: hyounoosung@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,98 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: hyounoosung@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
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface HospitalBranchModel
|
|
17
|
+
*/
|
|
18
|
+
export interface HospitalBranchModel {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof HospitalBranchModel
|
|
23
|
+
*/
|
|
24
|
+
'id'?: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof HospitalBranchModel
|
|
29
|
+
*/
|
|
30
|
+
'languageCode'?: string | null;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof HospitalBranchModel
|
|
35
|
+
*/
|
|
36
|
+
'hospitalGroupId'?: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof HospitalBranchModel
|
|
41
|
+
*/
|
|
42
|
+
'hospitalId'?: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof HospitalBranchModel
|
|
47
|
+
*/
|
|
48
|
+
'order'?: number;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof HospitalBranchModel
|
|
53
|
+
*/
|
|
54
|
+
'name'?: string | null;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {boolean}
|
|
58
|
+
* @memberof HospitalBranchModel
|
|
59
|
+
*/
|
|
60
|
+
'isConfirmed'?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {AuditableEntityModel}
|
|
64
|
+
* @memberof HospitalBranchModel
|
|
65
|
+
*/
|
|
66
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof HospitalBranchModel
|
|
71
|
+
*/
|
|
72
|
+
'hospitalGroupName'?: string | null;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof HospitalBranchModel
|
|
77
|
+
*/
|
|
78
|
+
'hospitalName'?: string | null;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof HospitalBranchModel
|
|
83
|
+
*/
|
|
84
|
+
'desciption'?: string | null;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof HospitalBranchModel
|
|
89
|
+
*/
|
|
90
|
+
'overview'?: string | null;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof HospitalBranchModel
|
|
95
|
+
*/
|
|
96
|
+
'content'?: string | null;
|
|
97
|
+
}
|
|
98
|
+
//# sourceMappingURL=hospital-branch-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hospital-branch-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-branch-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAEhE;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: hyounoosung@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,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1
|
|
6
|
+
* Contact: hyounoosung@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
|
+
import { HospitalBranchItemModel } from './hospital-branch-item-model';
|
|
13
|
+
import { PagedListMetaData } from './paged-list-meta-data';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface HospitalBranchesModel
|
|
18
|
+
*/
|
|
19
|
+
export interface HospitalBranchesModel {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<HospitalBranchItemModel>}
|
|
23
|
+
* @memberof HospitalBranchesModel
|
|
24
|
+
*/
|
|
25
|
+
'items'?: Array<HospitalBranchItemModel> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {PagedListMetaData}
|
|
29
|
+
* @memberof HospitalBranchesModel
|
|
30
|
+
*/
|
|
31
|
+
'metaData'?: PagedListMetaData;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=hospital-branches-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hospital-branches-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-branches-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AAGvE,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC;IAChD;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: hyounoosung@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 });
|