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/src/api/hospitals-api.ts
CHANGED
|
@@ -3183,6 +3183,9 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3183
3183
|
*
|
|
3184
3184
|
* @summary Get managers
|
|
3185
3185
|
* @param {string} hospitalId
|
|
3186
|
+
* @param {number} [page]
|
|
3187
|
+
* @param {number} [limit]
|
|
3188
|
+
* @param {Date} [lastRetrieved]
|
|
3186
3189
|
* @param {string} [id]
|
|
3187
3190
|
* @param {string} [fullname]
|
|
3188
3191
|
* @param {string} [email]
|
|
@@ -3190,13 +3193,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3190
3193
|
* @param {Date} [dateOfBirth]
|
|
3191
3194
|
* @param {Date} [created]
|
|
3192
3195
|
* @param {boolean} [showHidden]
|
|
3193
|
-
* @param {number} [page]
|
|
3194
|
-
* @param {number} [limit]
|
|
3195
|
-
* @param {Date} [lastRetrieved]
|
|
3196
3196
|
* @param {*} [options] Override http request option.
|
|
3197
3197
|
* @throws {RequiredError}
|
|
3198
3198
|
*/
|
|
3199
|
-
apiV1HospitalsHospitalIdManagersGet: async (hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean,
|
|
3199
|
+
apiV1HospitalsHospitalIdManagersGet: async (hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3200
3200
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
3201
3201
|
assertParamExists('apiV1HospitalsHospitalIdManagersGet', 'hospitalId', hospitalId)
|
|
3202
3202
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/managers`
|
|
@@ -3216,6 +3216,20 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3216
3216
|
// oauth required
|
|
3217
3217
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3218
3218
|
|
|
3219
|
+
if (page !== undefined) {
|
|
3220
|
+
localVarQueryParameter['page'] = page;
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3223
|
+
if (limit !== undefined) {
|
|
3224
|
+
localVarQueryParameter['limit'] = limit;
|
|
3225
|
+
}
|
|
3226
|
+
|
|
3227
|
+
if (lastRetrieved !== undefined) {
|
|
3228
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
3229
|
+
(lastRetrieved as any).toISOString() :
|
|
3230
|
+
lastRetrieved;
|
|
3231
|
+
}
|
|
3232
|
+
|
|
3219
3233
|
if (id !== undefined) {
|
|
3220
3234
|
localVarQueryParameter['Id'] = id;
|
|
3221
3235
|
}
|
|
@@ -3248,20 +3262,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3248
3262
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
3249
3263
|
}
|
|
3250
3264
|
|
|
3251
|
-
if (page !== undefined) {
|
|
3252
|
-
localVarQueryParameter['page'] = page;
|
|
3253
|
-
}
|
|
3254
|
-
|
|
3255
|
-
if (limit !== undefined) {
|
|
3256
|
-
localVarQueryParameter['limit'] = limit;
|
|
3257
|
-
}
|
|
3258
|
-
|
|
3259
|
-
if (lastRetrieved !== undefined) {
|
|
3260
|
-
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
3261
|
-
(lastRetrieved as any).toISOString() :
|
|
3262
|
-
lastRetrieved;
|
|
3263
|
-
}
|
|
3264
|
-
|
|
3265
3265
|
|
|
3266
3266
|
|
|
3267
3267
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -8495,6 +8495,9 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8495
8495
|
*
|
|
8496
8496
|
* @summary Get managers
|
|
8497
8497
|
* @param {string} hospitalId
|
|
8498
|
+
* @param {number} [page]
|
|
8499
|
+
* @param {number} [limit]
|
|
8500
|
+
* @param {Date} [lastRetrieved]
|
|
8498
8501
|
* @param {string} [id]
|
|
8499
8502
|
* @param {string} [fullname]
|
|
8500
8503
|
* @param {string} [email]
|
|
@@ -8502,14 +8505,11 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8502
8505
|
* @param {Date} [dateOfBirth]
|
|
8503
8506
|
* @param {Date} [created]
|
|
8504
8507
|
* @param {boolean} [showHidden]
|
|
8505
|
-
* @param {number} [page]
|
|
8506
|
-
* @param {number} [limit]
|
|
8507
|
-
* @param {Date} [lastRetrieved]
|
|
8508
8508
|
* @param {*} [options] Override http request option.
|
|
8509
8509
|
* @throws {RequiredError}
|
|
8510
8510
|
*/
|
|
8511
|
-
async apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean,
|
|
8512
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdManagersGet(hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden,
|
|
8511
|
+
async apiV1HospitalsHospitalIdManagersGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagersModel>> {
|
|
8512
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdManagersGet(hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options);
|
|
8513
8513
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8514
8514
|
},
|
|
8515
8515
|
/**
|
|
@@ -10446,6 +10446,9 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10446
10446
|
*
|
|
10447
10447
|
* @summary Get managers
|
|
10448
10448
|
* @param {string} hospitalId
|
|
10449
|
+
* @param {number} [page]
|
|
10450
|
+
* @param {number} [limit]
|
|
10451
|
+
* @param {Date} [lastRetrieved]
|
|
10449
10452
|
* @param {string} [id]
|
|
10450
10453
|
* @param {string} [fullname]
|
|
10451
10454
|
* @param {string} [email]
|
|
@@ -10453,14 +10456,11 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10453
10456
|
* @param {Date} [dateOfBirth]
|
|
10454
10457
|
* @param {Date} [created]
|
|
10455
10458
|
* @param {boolean} [showHidden]
|
|
10456
|
-
* @param {number} [page]
|
|
10457
|
-
* @param {number} [limit]
|
|
10458
|
-
* @param {Date} [lastRetrieved]
|
|
10459
10459
|
* @param {*} [options] Override http request option.
|
|
10460
10460
|
* @throws {RequiredError}
|
|
10461
10461
|
*/
|
|
10462
|
-
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean,
|
|
10463
|
-
return localVarFp.apiV1HospitalsHospitalIdManagersGet(hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden,
|
|
10462
|
+
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, page?: number, limit?: number, lastRetrieved?: Date, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, options?: any): AxiosPromise<ManagersModel> {
|
|
10463
|
+
return localVarFp.apiV1HospitalsHospitalIdManagersGet(hospitalId, page, limit, lastRetrieved, id, fullname, email, gender, dateOfBirth, created, showHidden, options).then((request) => request(axios, basePath));
|
|
10464
10464
|
},
|
|
10465
10465
|
/**
|
|
10466
10466
|
*
|
|
@@ -13452,73 +13452,73 @@ export interface HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest {
|
|
|
13452
13452
|
|
|
13453
13453
|
/**
|
|
13454
13454
|
*
|
|
13455
|
-
* @type {
|
|
13455
|
+
* @type {number}
|
|
13456
13456
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13457
13457
|
*/
|
|
13458
|
-
readonly
|
|
13458
|
+
readonly page?: number
|
|
13459
13459
|
|
|
13460
13460
|
/**
|
|
13461
13461
|
*
|
|
13462
|
-
* @type {
|
|
13462
|
+
* @type {number}
|
|
13463
13463
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13464
13464
|
*/
|
|
13465
|
-
readonly
|
|
13465
|
+
readonly limit?: number
|
|
13466
13466
|
|
|
13467
13467
|
/**
|
|
13468
13468
|
*
|
|
13469
|
-
* @type {
|
|
13469
|
+
* @type {Date}
|
|
13470
13470
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13471
13471
|
*/
|
|
13472
|
-
readonly
|
|
13472
|
+
readonly lastRetrieved?: Date
|
|
13473
13473
|
|
|
13474
13474
|
/**
|
|
13475
13475
|
*
|
|
13476
|
-
* @type {
|
|
13476
|
+
* @type {string}
|
|
13477
13477
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13478
13478
|
*/
|
|
13479
|
-
readonly
|
|
13479
|
+
readonly id?: string
|
|
13480
13480
|
|
|
13481
13481
|
/**
|
|
13482
13482
|
*
|
|
13483
|
-
* @type {
|
|
13483
|
+
* @type {string}
|
|
13484
13484
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13485
13485
|
*/
|
|
13486
|
-
readonly
|
|
13486
|
+
readonly fullname?: string
|
|
13487
13487
|
|
|
13488
13488
|
/**
|
|
13489
13489
|
*
|
|
13490
|
-
* @type {
|
|
13490
|
+
* @type {string}
|
|
13491
13491
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13492
13492
|
*/
|
|
13493
|
-
readonly
|
|
13493
|
+
readonly email?: string
|
|
13494
13494
|
|
|
13495
13495
|
/**
|
|
13496
13496
|
*
|
|
13497
|
-
* @type {
|
|
13497
|
+
* @type {Gender}
|
|
13498
13498
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13499
13499
|
*/
|
|
13500
|
-
readonly
|
|
13500
|
+
readonly gender?: Gender
|
|
13501
13501
|
|
|
13502
13502
|
/**
|
|
13503
13503
|
*
|
|
13504
|
-
* @type {
|
|
13504
|
+
* @type {Date}
|
|
13505
13505
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13506
13506
|
*/
|
|
13507
|
-
readonly
|
|
13507
|
+
readonly dateOfBirth?: Date
|
|
13508
13508
|
|
|
13509
13509
|
/**
|
|
13510
13510
|
*
|
|
13511
|
-
* @type {
|
|
13511
|
+
* @type {Date}
|
|
13512
13512
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13513
13513
|
*/
|
|
13514
|
-
readonly
|
|
13514
|
+
readonly created?: Date
|
|
13515
13515
|
|
|
13516
13516
|
/**
|
|
13517
13517
|
*
|
|
13518
|
-
* @type {
|
|
13518
|
+
* @type {boolean}
|
|
13519
13519
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13520
13520
|
*/
|
|
13521
|
-
readonly
|
|
13521
|
+
readonly showHidden?: boolean
|
|
13522
13522
|
}
|
|
13523
13523
|
|
|
13524
13524
|
/**
|
|
@@ -17213,7 +17213,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
17213
17213
|
* @memberof HospitalsApi
|
|
17214
17214
|
*/
|
|
17215
17215
|
public apiV1HospitalsHospitalIdManagersGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest, options?: AxiosRequestConfig) {
|
|
17216
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdManagersGet(requestParameters.hospitalId, requestParameters.
|
|
17216
|
+
return 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((request) => request(this.axios, this.basePath));
|
|
17217
17217
|
}
|
|
17218
17218
|
|
|
17219
17219
|
/**
|
package/src/api.ts
CHANGED
|
@@ -40,6 +40,8 @@ export * from './api/faqs-api';
|
|
|
40
40
|
export * from './api/grades-api';
|
|
41
41
|
export * from './api/group-channels-api';
|
|
42
42
|
export * from './api/header-navigations-api';
|
|
43
|
+
export * from './api/hospital-branches-api';
|
|
44
|
+
export * from './api/hospital-groups-api';
|
|
43
45
|
export * from './api/hospitals-api';
|
|
44
46
|
export * from './api/hospitals-consultation-timetable-overrides-api';
|
|
45
47
|
export * from './api/hospitals-consultation-timetables-api';
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateHospitalBranchCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateHospitalBranchCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateHospitalBranchCommand
|
|
27
|
+
*/
|
|
28
|
+
'hospitalGroupId'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateHospitalBranchCommand
|
|
33
|
+
*/
|
|
34
|
+
'hospitalId'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateHospitalBranchCommand
|
|
39
|
+
*/
|
|
40
|
+
'languageCode'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreateHospitalBranchCommand
|
|
45
|
+
*/
|
|
46
|
+
'name'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreateHospitalBranchCommand
|
|
51
|
+
*/
|
|
52
|
+
'description'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof CreateHospitalBranchCommand
|
|
57
|
+
*/
|
|
58
|
+
'overview'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreateHospitalBranchCommand
|
|
63
|
+
*/
|
|
64
|
+
'content'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {boolean}
|
|
68
|
+
* @memberof CreateHospitalBranchCommand
|
|
69
|
+
*/
|
|
70
|
+
'isConfirmed'?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @type {number}
|
|
74
|
+
* @memberof CreateHospitalBranchCommand
|
|
75
|
+
*/
|
|
76
|
+
'order'?: number;
|
|
77
|
+
}
|
|
78
|
+
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface CreateHospitalGroupCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateHospitalGroupCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateHospitalGroupCommand
|
|
27
|
+
*/
|
|
28
|
+
'languageCode'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateHospitalGroupCommand
|
|
33
|
+
*/
|
|
34
|
+
'name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateHospitalGroupCommand
|
|
39
|
+
*/
|
|
40
|
+
'description'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CreateHospitalGroupCommand
|
|
45
|
+
*/
|
|
46
|
+
'overview'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof CreateHospitalGroupCommand
|
|
51
|
+
*/
|
|
52
|
+
'content'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {boolean}
|
|
56
|
+
* @memberof CreateHospitalGroupCommand
|
|
57
|
+
*/
|
|
58
|
+
'isConfirmed'?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof CreateHospitalGroupCommand
|
|
63
|
+
*/
|
|
64
|
+
'logo'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
*
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof CreateHospitalGroupCommand
|
|
69
|
+
*/
|
|
70
|
+
'primaryHospitalId'?: string;
|
|
71
|
+
}
|
|
72
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalBranchItemModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalBranchItemModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof HospitalBranchItemModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalBranchItemModel
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof HospitalBranchItemModel
|
|
42
|
+
*/
|
|
43
|
+
'hospitalGroupId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof HospitalBranchItemModel
|
|
48
|
+
*/
|
|
49
|
+
'hospitalId'?: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof HospitalBranchItemModel
|
|
54
|
+
*/
|
|
55
|
+
'order'?: number;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof HospitalBranchItemModel
|
|
60
|
+
*/
|
|
61
|
+
'name'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof HospitalBranchItemModel
|
|
66
|
+
*/
|
|
67
|
+
'isConfirmed'?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {AuditableEntityModel}
|
|
71
|
+
* @memberof HospitalBranchItemModel
|
|
72
|
+
*/
|
|
73
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof HospitalBranchItemModel
|
|
78
|
+
*/
|
|
79
|
+
'hospitalGroupName'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof HospitalBranchItemModel
|
|
84
|
+
*/
|
|
85
|
+
'hospitalName'?: string | null;
|
|
86
|
+
}
|
|
87
|
+
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalBranchModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalBranchModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof HospitalBranchModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalBranchModel
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof HospitalBranchModel
|
|
42
|
+
*/
|
|
43
|
+
'hospitalGroupId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof HospitalBranchModel
|
|
48
|
+
*/
|
|
49
|
+
'hospitalId'?: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {number}
|
|
53
|
+
* @memberof HospitalBranchModel
|
|
54
|
+
*/
|
|
55
|
+
'order'?: number;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof HospitalBranchModel
|
|
60
|
+
*/
|
|
61
|
+
'name'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {boolean}
|
|
65
|
+
* @memberof HospitalBranchModel
|
|
66
|
+
*/
|
|
67
|
+
'isConfirmed'?: boolean;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {AuditableEntityModel}
|
|
71
|
+
* @memberof HospitalBranchModel
|
|
72
|
+
*/
|
|
73
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof HospitalBranchModel
|
|
78
|
+
*/
|
|
79
|
+
'hospitalGroupName'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof HospitalBranchModel
|
|
84
|
+
*/
|
|
85
|
+
'hospitalName'?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof HospitalBranchModel
|
|
90
|
+
*/
|
|
91
|
+
'desciption'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof HospitalBranchModel
|
|
96
|
+
*/
|
|
97
|
+
'overview'?: string | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof HospitalBranchModel
|
|
102
|
+
*/
|
|
103
|
+
'content'?: string | null;
|
|
104
|
+
}
|
|
105
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { HospitalBranchItemModel } from './hospital-branch-item-model';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PagedListMetaData } from './paged-list-meta-data';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface HospitalBranchesModel
|
|
27
|
+
*/
|
|
28
|
+
export interface HospitalBranchesModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<HospitalBranchItemModel>}
|
|
32
|
+
* @memberof HospitalBranchesModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<HospitalBranchItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof HospitalBranchesModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AuditableEntityModel } from './auditable-entity-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalGroupItemModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalGroupItemModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof HospitalGroupItemModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof HospitalGroupItemModel
|
|
36
|
+
*/
|
|
37
|
+
'logo'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof HospitalGroupItemModel
|
|
42
|
+
*/
|
|
43
|
+
'primaryHospitalId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof HospitalGroupItemModel
|
|
48
|
+
*/
|
|
49
|
+
'languageCode'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof HospitalGroupItemModel
|
|
54
|
+
*/
|
|
55
|
+
'name'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {boolean}
|
|
59
|
+
* @memberof HospitalGroupItemModel
|
|
60
|
+
*/
|
|
61
|
+
'isConfirmed'?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {AuditableEntityModel}
|
|
65
|
+
* @memberof HospitalGroupItemModel
|
|
66
|
+
*/
|
|
67
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
68
|
+
}
|
|
69
|
+
|