ch-admin-api-client-typescript 5.1.9 → 5.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api/grades-api.d.ts +339 -0
- package/lib/api/grades-api.d.ts.map +1 -0
- package/lib/api/grades-api.js +600 -0
- package/lib/api/hospitals-api.d.ts +343 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +497 -0
- package/lib/api/survey-results-api.d.ts +12 -3
- package/lib/api/survey-results-api.d.ts.map +1 -1
- package/lib/api/survey-results-api.js +12 -6
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/contact-scope.d.ts +22 -0
- package/lib/models/contact-scope.d.ts.map +1 -0
- package/lib/models/contact-scope.js +25 -0
- package/lib/models/create-grade-command.d.ts +44 -0
- package/lib/models/create-grade-command.d.ts.map +1 -0
- package/lib/models/create-hospital-command.d.ts +6 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/create-hospital-contact-command.d.ts +62 -0
- package/lib/models/create-hospital-contact-command.d.ts.map +1 -0
- package/lib/models/create-hospital-contact-command.js +15 -0
- package/lib/models/create-survey-form-command.d.ts +6 -0
- package/lib/models/create-survey-form-command.d.ts.map +1 -1
- package/lib/models/grade-item-model.d.ts +57 -0
- package/lib/models/grade-item-model.d.ts.map +1 -0
- package/lib/models/grade-item-model.js +15 -0
- package/lib/models/grade-model.d.ts +57 -0
- package/lib/models/grade-model.d.ts.map +1 -0
- package/lib/models/grade-model.js +15 -0
- package/lib/models/grade-targets.d.ts +22 -0
- package/lib/models/grade-targets.d.ts.map +1 -0
- package/lib/models/grade-targets.js +25 -0
- package/lib/models/grades-model.d.ts +33 -0
- package/lib/models/grades-model.d.ts.map +1 -0
- package/lib/models/grades-model.js +15 -0
- package/lib/models/hospital-contact-item-model.d.ts +80 -0
- package/lib/models/hospital-contact-item-model.d.ts.map +1 -0
- package/lib/models/hospital-contact-item-model.js +15 -0
- package/lib/models/hospital-contact-model.d.ts +80 -0
- package/lib/models/hospital-contact-model.d.ts.map +1 -0
- package/lib/models/hospital-contact-model.js +15 -0
- package/lib/models/hospital-contacts-model.d.ts +33 -0
- package/lib/models/hospital-contacts-model.d.ts.map +1 -0
- package/lib/models/hospital-contacts-model.js +15 -0
- package/lib/models/hospital-item-model.d.ts +13 -0
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +13 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +12 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +12 -1
- package/lib/models/survey-form-item-model.d.ts +6 -0
- package/lib/models/survey-form-item-model.d.ts.map +1 -1
- package/lib/models/survey-form-model.d.ts +6 -0
- package/lib/models/survey-form-model.d.ts.map +1 -1
- package/lib/models/survey-results-model.d.ts +3 -3
- package/lib/models/survey-results-model.d.ts.map +1 -1
- package/lib/models/update-grade-command.d.ts +37 -0
- package/lib/models/update-grade-command.d.ts.map +1 -0
- package/lib/models/update-grade-command.js +15 -0
- package/lib/models/update-hospital-command.d.ts +6 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/lib/models/update-hospital-contact-command.d.ts +62 -0
- package/lib/models/update-hospital-contact-command.d.ts.map +1 -0
- package/lib/models/update-hospital-contact-command.js +15 -0
- package/lib/models/update-survey-form-command.d.ts +6 -0
- package/lib/models/update-survey-form-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +13 -1
- package/src/api/grades-api.ts +595 -0
- package/src/api/hospitals-api.ts +600 -0
- package/src/api/survey-results-api.ts +20 -6
- package/src/api.ts +1 -0
- package/src/models/contact-scope.ts +31 -0
- package/src/models/create-grade-command.ts +51 -0
- package/src/models/create-hospital-command.ts +6 -0
- package/src/models/create-hospital-contact-command.ts +69 -0
- package/src/models/create-survey-form-command.ts +6 -0
- package/src/models/grade-item-model.ts +66 -0
- package/src/models/grade-model.ts +66 -0
- package/src/models/grade-targets.ts +31 -0
- package/src/models/grades-model.ts +42 -0
- package/src/models/hospital-contact-item-model.ts +87 -0
- package/src/models/{survey-result-item-model.ts → hospital-contact-model.ts} +27 -21
- package/src/models/hospital-contacts-model.ts +42 -0
- package/src/models/hospital-item-model.ts +15 -0
- package/src/models/hospital-model.ts +15 -0
- package/src/models/index.ts +12 -1
- package/src/models/survey-form-item-model.ts +6 -0
- package/src/models/survey-form-model.ts +6 -0
- package/src/models/survey-results-model.ts +3 -3
- package/src/models/update-grade-command.ts +42 -0
- package/src/models/update-hospital-command.ts +6 -0
- package/src/models/update-hospital-contact-command.ts +69 -0
- package/src/models/update-survey-form-command.ts +6 -0
- package/lib/models/survey-result-item-model.d.ts +0 -74
- package/lib/models/survey-result-item-model.d.ts.map +0 -1
- /package/lib/models/{survey-result-item-model.js → create-grade-command.js} +0 -0
|
@@ -97,6 +97,7 @@ var SurveyResultsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
* @summary Get survey results
|
|
98
98
|
* @param {string} [id]
|
|
99
99
|
* @param {string} [hospitalId]
|
|
100
|
+
* @param {string} [surveyFormId]
|
|
100
101
|
* @param {string} [name]
|
|
101
102
|
* @param {string} [languageCode]
|
|
102
103
|
* @param {number} [page]
|
|
@@ -105,7 +106,7 @@ var SurveyResultsApiAxiosParamCreator = function (configuration) {
|
|
|
105
106
|
* @param {*} [options] Override http request option.
|
|
106
107
|
* @throws {RequiredError}
|
|
107
108
|
*/
|
|
108
|
-
apiV1SurveyresultsGet: function (id, hospitalId, name, languageCode, page, limit, lastRetrieved, options) {
|
|
109
|
+
apiV1SurveyresultsGet: function (id, hospitalId, surveyFormId, name, languageCode, page, limit, lastRetrieved, options) {
|
|
109
110
|
if (options === void 0) { options = {}; }
|
|
110
111
|
return __awaiter(_this, void 0, void 0, function () {
|
|
111
112
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -133,6 +134,9 @@ var SurveyResultsApiAxiosParamCreator = function (configuration) {
|
|
|
133
134
|
if (hospitalId !== undefined) {
|
|
134
135
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
135
136
|
}
|
|
137
|
+
if (surveyFormId !== undefined) {
|
|
138
|
+
localVarQueryParameter['SurveyFormId'] = surveyFormId;
|
|
139
|
+
}
|
|
136
140
|
if (name !== undefined) {
|
|
137
141
|
localVarQueryParameter['Name'] = name;
|
|
138
142
|
}
|
|
@@ -262,6 +266,7 @@ var SurveyResultsApiFp = function (configuration) {
|
|
|
262
266
|
* @summary Get survey results
|
|
263
267
|
* @param {string} [id]
|
|
264
268
|
* @param {string} [hospitalId]
|
|
269
|
+
* @param {string} [surveyFormId]
|
|
265
270
|
* @param {string} [name]
|
|
266
271
|
* @param {string} [languageCode]
|
|
267
272
|
* @param {number} [page]
|
|
@@ -270,12 +275,12 @@ var SurveyResultsApiFp = function (configuration) {
|
|
|
270
275
|
* @param {*} [options] Override http request option.
|
|
271
276
|
* @throws {RequiredError}
|
|
272
277
|
*/
|
|
273
|
-
apiV1SurveyresultsGet: function (id, hospitalId, name, languageCode, page, limit, lastRetrieved, options) {
|
|
278
|
+
apiV1SurveyresultsGet: function (id, hospitalId, surveyFormId, name, languageCode, page, limit, lastRetrieved, options) {
|
|
274
279
|
return __awaiter(this, void 0, void 0, function () {
|
|
275
280
|
var localVarAxiosArgs;
|
|
276
281
|
return __generator(this, function (_a) {
|
|
277
282
|
switch (_a.label) {
|
|
278
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1SurveyresultsGet(id, hospitalId, name, languageCode, page, limit, lastRetrieved, options)];
|
|
283
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1SurveyresultsGet(id, hospitalId, surveyFormId, name, languageCode, page, limit, lastRetrieved, options)];
|
|
279
284
|
case 1:
|
|
280
285
|
localVarAxiosArgs = _a.sent();
|
|
281
286
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -338,6 +343,7 @@ var SurveyResultsApiFactory = function (configuration, basePath, axios) {
|
|
|
338
343
|
* @summary Get survey results
|
|
339
344
|
* @param {string} [id]
|
|
340
345
|
* @param {string} [hospitalId]
|
|
346
|
+
* @param {string} [surveyFormId]
|
|
341
347
|
* @param {string} [name]
|
|
342
348
|
* @param {string} [languageCode]
|
|
343
349
|
* @param {number} [page]
|
|
@@ -346,8 +352,8 @@ var SurveyResultsApiFactory = function (configuration, basePath, axios) {
|
|
|
346
352
|
* @param {*} [options] Override http request option.
|
|
347
353
|
* @throws {RequiredError}
|
|
348
354
|
*/
|
|
349
|
-
apiV1SurveyresultsGet: function (id, hospitalId, name, languageCode, page, limit, lastRetrieved, options) {
|
|
350
|
-
return localVarFp.apiV1SurveyresultsGet(id, hospitalId, name, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
355
|
+
apiV1SurveyresultsGet: function (id, hospitalId, surveyFormId, name, languageCode, page, limit, lastRetrieved, options) {
|
|
356
|
+
return localVarFp.apiV1SurveyresultsGet(id, hospitalId, surveyFormId, name, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
351
357
|
},
|
|
352
358
|
/**
|
|
353
359
|
*
|
|
@@ -394,7 +400,7 @@ var SurveyResultsApi = /** @class */ (function (_super) {
|
|
|
394
400
|
SurveyResultsApi.prototype.apiV1SurveyresultsGet = function (requestParameters, options) {
|
|
395
401
|
var _this = this;
|
|
396
402
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
397
|
-
return (0, exports.SurveyResultsApiFp)(this.configuration).apiV1SurveyresultsGet(requestParameters.id, requestParameters.hospitalId, requestParameters.name, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
403
|
+
return (0, exports.SurveyResultsApiFp)(this.configuration).apiV1SurveyresultsGet(requestParameters.id, requestParameters.hospitalId, requestParameters.surveyFormId, requestParameters.name, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
398
404
|
};
|
|
399
405
|
/**
|
|
400
406
|
*
|
package/lib/api.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export * from './api/doctors-api';
|
|
|
29
29
|
export * from './api/email-marketings-api';
|
|
30
30
|
export * from './api/faq-categories-api';
|
|
31
31
|
export * from './api/faqs-api';
|
|
32
|
+
export * from './api/grades-api';
|
|
32
33
|
export * from './api/group-channels-api';
|
|
33
34
|
export * from './api/header-navigations-api';
|
|
34
35
|
export * from './api/hospitals-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,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,gBAAgB,CAAC;AAC/B,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,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"}
|
|
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,sBAAsB,CAAC;AACrC,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,cAAc,iBAAiB,CAAC;AAChC,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,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"}
|
package/lib/api.js
CHANGED
|
@@ -47,6 +47,7 @@ __exportStar(require("./api/doctors-api"), exports);
|
|
|
47
47
|
__exportStar(require("./api/email-marketings-api"), exports);
|
|
48
48
|
__exportStar(require("./api/faq-categories-api"), exports);
|
|
49
49
|
__exportStar(require("./api/faqs-api"), exports);
|
|
50
|
+
__exportStar(require("./api/grades-api"), exports);
|
|
50
51
|
__exportStar(require("./api/group-channels-api"), exports);
|
|
51
52
|
__exportStar(require("./api/header-navigations-api"), exports);
|
|
52
53
|
__exportStar(require("./api/hospitals-api"), exports);
|
|
@@ -0,0 +1,22 @@
|
|
|
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
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const ContactScope: {
|
|
18
|
+
readonly Domestic: "Domestic";
|
|
19
|
+
readonly International: "International";
|
|
20
|
+
};
|
|
21
|
+
export type ContactScope = typeof ContactScope[keyof typeof ContactScope];
|
|
22
|
+
//# sourceMappingURL=contact-scope.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contact-scope.d.ts","sourceRoot":"","sources":["../../src/models/contact-scope.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,YAAY;;;CAGf,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,OAAO,YAAY,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
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 });
|
|
16
|
+
exports.ContactScope = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.ContactScope = {
|
|
23
|
+
Domestic: 'Domestic',
|
|
24
|
+
International: 'International'
|
|
25
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
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 { GradeTargets } from './grade-targets';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateGradeCommand
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateGradeCommand {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CreateGradeCommand
|
|
23
|
+
*/
|
|
24
|
+
'name'?: string | null;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof CreateGradeCommand
|
|
29
|
+
*/
|
|
30
|
+
'searchBonus'?: number;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {GradeTargets}
|
|
34
|
+
* @memberof CreateGradeCommand
|
|
35
|
+
*/
|
|
36
|
+
'gradeTarget'?: GradeTargets;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof CreateGradeCommand
|
|
41
|
+
*/
|
|
42
|
+
'order'?: number;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=create-grade-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-grade-command.d.ts","sourceRoot":"","sources":["../../src/models/create-grade-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,YAAY,CAAC;IAC7B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -145,6 +145,12 @@ export interface CreateHospitalCommand {
|
|
|
145
145
|
* @memberof CreateHospitalCommand
|
|
146
146
|
*/
|
|
147
147
|
'paymentEnabled'?: boolean;
|
|
148
|
+
/**
|
|
149
|
+
*
|
|
150
|
+
* @type {string}
|
|
151
|
+
* @memberof CreateHospitalCommand
|
|
152
|
+
*/
|
|
153
|
+
'gradeId'?: string | null;
|
|
148
154
|
/**
|
|
149
155
|
*
|
|
150
156
|
* @type {LocationModel}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-hospital-command.d.ts","sourceRoot":"","sources":["../../src/models/create-hospital-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAC;AAGvF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;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,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,+BAA+B,CAAC;IACvD;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,sBAAsB,CAAC;CAChD"}
|
|
1
|
+
{"version":3,"file":"create-hospital-command.d.ts","sourceRoot":"","sources":["../../src/models/create-hospital-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAC;AAGvF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;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,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,+BAA+B,CAAC;IACvD;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,sBAAsB,CAAC;CAChD"}
|
|
@@ -0,0 +1,62 @@
|
|
|
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 { ContactScope } from './contact-scope';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateHospitalContactCommand
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateHospitalContactCommand {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CreateHospitalContactCommand
|
|
23
|
+
*/
|
|
24
|
+
'name'?: string | null;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {ContactScope}
|
|
28
|
+
* @memberof CreateHospitalContactCommand
|
|
29
|
+
*/
|
|
30
|
+
'scope'?: ContactScope;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof CreateHospitalContactCommand
|
|
35
|
+
*/
|
|
36
|
+
'tel'?: string | null;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CreateHospitalContactCommand
|
|
41
|
+
*/
|
|
42
|
+
'targetTel'?: string | null;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof CreateHospitalContactCommand
|
|
47
|
+
*/
|
|
48
|
+
'email'?: string | null;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof CreateHospitalContactCommand
|
|
53
|
+
*/
|
|
54
|
+
'languageCode'?: string | null;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {number}
|
|
58
|
+
* @memberof CreateHospitalContactCommand
|
|
59
|
+
*/
|
|
60
|
+
'order'?: number;
|
|
61
|
+
}
|
|
62
|
+
//# sourceMappingURL=create-hospital-contact-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-hospital-contact-command.d.ts","sourceRoot":"","sources":["../../src/models/create-hospital-contact-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;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 });
|
|
@@ -35,6 +35,12 @@ export interface CreateSurveyFormCommand {
|
|
|
35
35
|
* @memberof CreateSurveyFormCommand
|
|
36
36
|
*/
|
|
37
37
|
'status'?: SurveyFormStatus;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreateSurveyFormCommand
|
|
42
|
+
*/
|
|
43
|
+
'urlAfterDone'?: string | null;
|
|
38
44
|
/**
|
|
39
45
|
*
|
|
40
46
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-survey-form-command.d.ts","sourceRoot":"","sources":["../../src/models/create-survey-form-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAGhF,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,gBAAgB,CAAC;IAC5B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC;CAC1D"}
|
|
1
|
+
{"version":3,"file":"create-survey-form-command.d.ts","sourceRoot":"","sources":["../../src/models/create-survey-form-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAGhF,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,gBAAgB,CAAC;IAC5B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC;CAC1D"}
|
|
@@ -0,0 +1,57 @@
|
|
|
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
|
+
import { GradeTargets } from './grade-targets';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GradeItemModel
|
|
18
|
+
*/
|
|
19
|
+
export interface GradeItemModel {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof GradeItemModel
|
|
24
|
+
*/
|
|
25
|
+
'id'?: string;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof GradeItemModel
|
|
30
|
+
*/
|
|
31
|
+
'name'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof GradeItemModel
|
|
36
|
+
*/
|
|
37
|
+
'searchBonus'?: number;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {GradeTargets}
|
|
41
|
+
* @memberof GradeItemModel
|
|
42
|
+
*/
|
|
43
|
+
'gradeTarget'?: GradeTargets;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof GradeItemModel
|
|
48
|
+
*/
|
|
49
|
+
'order'?: number;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {AuditableEntityModel}
|
|
53
|
+
* @memberof GradeItemModel
|
|
54
|
+
*/
|
|
55
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
56
|
+
}
|
|
57
|
+
//# sourceMappingURL=grade-item-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grade-item-model.d.ts","sourceRoot":"","sources":["../../src/models/grade-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,YAAY,CAAC;IAC7B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
|
|
@@ -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,57 @@
|
|
|
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
|
+
import { GradeTargets } from './grade-targets';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GradeModel
|
|
18
|
+
*/
|
|
19
|
+
export interface GradeModel {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof GradeModel
|
|
24
|
+
*/
|
|
25
|
+
'id'?: string;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof GradeModel
|
|
30
|
+
*/
|
|
31
|
+
'name'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof GradeModel
|
|
36
|
+
*/
|
|
37
|
+
'searchBonus'?: number;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {GradeTargets}
|
|
41
|
+
* @memberof GradeModel
|
|
42
|
+
*/
|
|
43
|
+
'gradeTarget'?: GradeTargets;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {number}
|
|
47
|
+
* @memberof GradeModel
|
|
48
|
+
*/
|
|
49
|
+
'order'?: number;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {AuditableEntityModel}
|
|
53
|
+
* @memberof GradeModel
|
|
54
|
+
*/
|
|
55
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
56
|
+
}
|
|
57
|
+
//# sourceMappingURL=grade-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grade-model.d.ts","sourceRoot":"","sources":["../../src/models/grade-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,UAAU;IACvB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,YAAY,CAAC;IAC7B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
|
|
@@ -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,22 @@
|
|
|
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
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare const GradeTargets: {
|
|
18
|
+
readonly None: "None";
|
|
19
|
+
readonly Hospital: "Hospital";
|
|
20
|
+
};
|
|
21
|
+
export type GradeTargets = typeof GradeTargets[keyof typeof GradeTargets];
|
|
22
|
+
//# sourceMappingURL=grade-targets.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grade-targets.d.ts","sourceRoot":"","sources":["../../src/models/grade-targets.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,YAAY;;;CAGf,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,OAAO,YAAY,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
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 });
|
|
16
|
+
exports.GradeTargets = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
exports.GradeTargets = {
|
|
23
|
+
None: 'None',
|
|
24
|
+
Hospital: 'Hospital'
|
|
25
|
+
};
|
|
@@ -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 { GradeItemModel } from './grade-item-model';
|
|
13
|
+
import { PagedListMetaData } from './paged-list-meta-data';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GradesModel
|
|
18
|
+
*/
|
|
19
|
+
export interface GradesModel {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<GradeItemModel>}
|
|
23
|
+
* @memberof GradesModel
|
|
24
|
+
*/
|
|
25
|
+
'items'?: Array<GradeItemModel> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {PagedListMetaData}
|
|
29
|
+
* @memberof GradesModel
|
|
30
|
+
*/
|
|
31
|
+
'metaData'?: PagedListMetaData;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=grades-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"grades-model.d.ts","sourceRoot":"","sources":["../../src/models/grades-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAGpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;GAIG;AACH,MAAM,WAAW,WAAW;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;IACvC;;;;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 });
|