ch-admin-api-client-typescript 5.5.5 → 5.5.6
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/hospitals-api.d.ts +629 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +949 -41
- package/lib/models/create-hospital-command.d.ts +7 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/create-hospital-tag-command.d.ts +31 -0
- package/lib/models/create-hospital-tag-command.d.ts.map +1 -0
- package/lib/models/create-hospital-tag-command.js +15 -0
- package/lib/models/hospital-model.d.ts +7 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/hospital-tag-item-model.d.ts +31 -0
- package/lib/models/hospital-tag-item-model.d.ts.map +1 -0
- package/lib/models/hospital-tag-item-model.js +15 -0
- package/lib/models/hospital-tag-model.d.ts +37 -0
- package/lib/models/hospital-tag-model.d.ts.map +1 -0
- package/lib/models/hospital-tag-model.js +15 -0
- package/lib/models/hospital-tags-model.d.ts +33 -0
- package/lib/models/hospital-tags-model.d.ts.map +1 -0
- package/lib/models/hospital-tags-model.js +15 -0
- package/lib/models/index.d.ts +4 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +4 -0
- package/lib/models/search-curation-item-input-model.d.ts +6 -0
- package/lib/models/search-curation-item-input-model.d.ts.map +1 -1
- package/lib/models/search-curation-item-model.d.ts +6 -0
- package/lib/models/search-curation-item-model.d.ts.map +1 -1
- package/lib/models/update-hospital-command.d.ts +7 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +4 -0
- package/src/api/hospitals-api.ts +1194 -91
- package/src/models/create-hospital-command.ts +9 -0
- package/src/models/create-hospital-tag-command.ts +36 -0
- package/src/models/hospital-model.ts +9 -0
- package/src/models/hospital-tag-item-model.ts +36 -0
- package/src/models/hospital-tag-model.ts +42 -0
- package/src/models/hospital-tags-model.ts +42 -0
- package/src/models/index.ts +4 -0
- package/src/models/search-curation-item-input-model.ts +6 -0
- package/src/models/search-curation-item-model.ts +6 -0
- package/src/models/update-hospital-command.ts +9 -0
|
@@ -24,6 +24,9 @@ import { FeatureInputModel } from './feature-input-model';
|
|
|
24
24
|
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import { HospitalTagItemModel } from './hospital-tag-item-model';
|
|
28
|
+
// May contain unused imports in some cases
|
|
29
|
+
// @ts-ignore
|
|
27
30
|
import { LocationModel } from './location-model';
|
|
28
31
|
// May contain unused imports in some cases
|
|
29
32
|
// @ts-ignore
|
|
@@ -197,5 +200,11 @@ export interface CreateHospitalCommand {
|
|
|
197
200
|
* @memberof CreateHospitalCommand
|
|
198
201
|
*/
|
|
199
202
|
'feature'?: FeatureInputModel;
|
|
203
|
+
/**
|
|
204
|
+
*
|
|
205
|
+
* @type {Array<HospitalTagItemModel>}
|
|
206
|
+
* @memberof CreateHospitalCommand
|
|
207
|
+
*/
|
|
208
|
+
'tags'?: Array<HospitalTagItemModel> | null;
|
|
200
209
|
}
|
|
201
210
|
|
|
@@ -0,0 +1,36 @@
|
|
|
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 CreateHospitalTagCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateHospitalTagCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateHospitalTagCommand
|
|
27
|
+
*/
|
|
28
|
+
'tagId'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof CreateHospitalTagCommand
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -33,6 +33,9 @@ import { HospitalConsultationOptionModel } from './hospital-consultation-option-
|
|
|
33
33
|
import { HospitalLanguageItemModel } from './hospital-language-item-model';
|
|
34
34
|
// May contain unused imports in some cases
|
|
35
35
|
// @ts-ignore
|
|
36
|
+
import { HospitalTagItemModel } from './hospital-tag-item-model';
|
|
37
|
+
// May contain unused imports in some cases
|
|
38
|
+
// @ts-ignore
|
|
36
39
|
import { LocationModel } from './location-model';
|
|
37
40
|
// May contain unused imports in some cases
|
|
38
41
|
// @ts-ignore
|
|
@@ -257,5 +260,11 @@ export interface HospitalModel {
|
|
|
257
260
|
* @memberof HospitalModel
|
|
258
261
|
*/
|
|
259
262
|
'feature'?: FeatureModel;
|
|
263
|
+
/**
|
|
264
|
+
*
|
|
265
|
+
* @type {Array<HospitalTagItemModel>}
|
|
266
|
+
* @memberof HospitalModel
|
|
267
|
+
*/
|
|
268
|
+
'tags'?: Array<HospitalTagItemModel> | null;
|
|
260
269
|
}
|
|
261
270
|
|
|
@@ -0,0 +1,36 @@
|
|
|
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 HospitalTagItemModel
|
|
21
|
+
*/
|
|
22
|
+
export interface HospitalTagItemModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof HospitalTagItemModel
|
|
27
|
+
*/
|
|
28
|
+
'tagId'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof HospitalTagItemModel
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface HospitalTagModel
|
|
21
|
+
*/
|
|
22
|
+
export interface HospitalTagModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof HospitalTagModel
|
|
27
|
+
*/
|
|
28
|
+
'tagId'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof HospitalTagModel
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof HospitalTagModel
|
|
39
|
+
*/
|
|
40
|
+
'hospitalId'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -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 { HospitalTagItemModel } from './hospital-tag-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 HospitalTagsModel
|
|
27
|
+
*/
|
|
28
|
+
export interface HospitalTagsModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<HospitalTagItemModel>}
|
|
32
|
+
* @memberof HospitalTagsModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<HospitalTagItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof HospitalTagsModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -136,6 +136,7 @@ export * from './create-hospital-language-command';
|
|
|
136
136
|
export * from './create-hospital-service-command';
|
|
137
137
|
export * from './create-hospital-sns-handle-command';
|
|
138
138
|
export * from './create-hospital-specialty-command';
|
|
139
|
+
export * from './create-hospital-tag-command';
|
|
139
140
|
export * from './create-hospital-working-day-command';
|
|
140
141
|
export * from './create-landing-command';
|
|
141
142
|
export * from './create-language-command';
|
|
@@ -258,6 +259,9 @@ export * from './hospital-specialties-simple-model';
|
|
|
258
259
|
export * from './hospital-specialty-item-model';
|
|
259
260
|
export * from './hospital-specialty-model';
|
|
260
261
|
export * from './hospital-specialty-simple-item-model';
|
|
262
|
+
export * from './hospital-tag-item-model';
|
|
263
|
+
export * from './hospital-tag-model';
|
|
264
|
+
export * from './hospital-tags-model';
|
|
261
265
|
export * from './hospitals-model';
|
|
262
266
|
export * from './hospitals-simple-model';
|
|
263
267
|
export * from './http-status-code';
|
|
@@ -38,6 +38,12 @@ export interface SearchCurationItemInputModel {
|
|
|
38
38
|
* @memberof SearchCurationItemInputModel
|
|
39
39
|
*/
|
|
40
40
|
'searchTerm'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof SearchCurationItemInputModel
|
|
45
|
+
*/
|
|
46
|
+
'slug'?: string | null;
|
|
41
47
|
/**
|
|
42
48
|
*
|
|
43
49
|
* @type {string}
|
|
@@ -38,6 +38,12 @@ export interface SearchCurationItemModel {
|
|
|
38
38
|
* @memberof SearchCurationItemModel
|
|
39
39
|
*/
|
|
40
40
|
'searchTerm'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof SearchCurationItemModel
|
|
45
|
+
*/
|
|
46
|
+
'slug'?: string | null;
|
|
41
47
|
/**
|
|
42
48
|
*
|
|
43
49
|
* @type {string}
|
|
@@ -24,6 +24,9 @@ import { FeatureInputModel } from './feature-input-model';
|
|
|
24
24
|
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import { HospitalTagItemModel } from './hospital-tag-item-model';
|
|
28
|
+
// May contain unused imports in some cases
|
|
29
|
+
// @ts-ignore
|
|
27
30
|
import { LocationModel } from './location-model';
|
|
28
31
|
// May contain unused imports in some cases
|
|
29
32
|
// @ts-ignore
|
|
@@ -209,5 +212,11 @@ export interface UpdateHospitalCommand {
|
|
|
209
212
|
* @memberof UpdateHospitalCommand
|
|
210
213
|
*/
|
|
211
214
|
'feature'?: FeatureInputModel;
|
|
215
|
+
/**
|
|
216
|
+
*
|
|
217
|
+
* @type {Array<HospitalTagItemModel>}
|
|
218
|
+
* @memberof UpdateHospitalCommand
|
|
219
|
+
*/
|
|
220
|
+
'tags'?: Array<HospitalTagItemModel> | null;
|
|
212
221
|
}
|
|
213
222
|
|