ch-admin-api-client-typescript 5.5.4 → 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.
Files changed (55) hide show
  1. package/lib/api/consultations-api.d.ts +12 -3
  2. package/lib/api/consultations-api.d.ts.map +1 -1
  3. package/lib/api/consultations-api.js +12 -6
  4. package/lib/api/dev-supports-api.d.ts +12 -3
  5. package/lib/api/dev-supports-api.d.ts.map +1 -1
  6. package/lib/api/dev-supports-api.js +12 -6
  7. package/lib/api/hospitals-api.d.ts +629 -0
  8. package/lib/api/hospitals-api.d.ts.map +1 -1
  9. package/lib/api/hospitals-api.js +949 -41
  10. package/lib/models/create-hospital-command.d.ts +7 -0
  11. package/lib/models/create-hospital-command.d.ts.map +1 -1
  12. package/lib/models/create-hospital-tag-command.d.ts +31 -0
  13. package/lib/models/create-hospital-tag-command.d.ts.map +1 -0
  14. package/lib/models/create-hospital-tag-command.js +15 -0
  15. package/lib/models/hospital-model.d.ts +7 -0
  16. package/lib/models/hospital-model.d.ts.map +1 -1
  17. package/lib/models/hospital-tag-item-model.d.ts +31 -0
  18. package/lib/models/hospital-tag-item-model.d.ts.map +1 -0
  19. package/lib/models/hospital-tag-item-model.js +15 -0
  20. package/lib/models/hospital-tag-model.d.ts +37 -0
  21. package/lib/models/hospital-tag-model.d.ts.map +1 -0
  22. package/lib/models/hospital-tag-model.js +15 -0
  23. package/lib/models/hospital-tags-model.d.ts +33 -0
  24. package/lib/models/hospital-tags-model.d.ts.map +1 -0
  25. package/lib/models/hospital-tags-model.js +15 -0
  26. package/lib/models/index.d.ts +4 -0
  27. package/lib/models/index.d.ts.map +1 -1
  28. package/lib/models/index.js +4 -0
  29. package/lib/models/search-curation-item-input-model.d.ts +6 -0
  30. package/lib/models/search-curation-item-input-model.d.ts.map +1 -1
  31. package/lib/models/search-curation-item-model.d.ts +6 -0
  32. package/lib/models/search-curation-item-model.d.ts.map +1 -1
  33. package/lib/models/translation-contents-model.d.ts +0 -6
  34. package/lib/models/translation-contents-model.d.ts.map +1 -1
  35. package/lib/models/translation-contents-target-model.d.ts +0 -6
  36. package/lib/models/translation-contents-target-model.d.ts.map +1 -1
  37. package/lib/models/update-hospital-command.d.ts +7 -0
  38. package/lib/models/update-hospital-command.d.ts.map +1 -1
  39. package/package.json +1 -1
  40. package/src/.openapi-generator/FILES +4 -0
  41. package/src/api/consultations-api.ts +20 -6
  42. package/src/api/dev-supports-api.ts +20 -6
  43. package/src/api/hospitals-api.ts +1194 -91
  44. package/src/models/create-hospital-command.ts +9 -0
  45. package/src/models/create-hospital-tag-command.ts +36 -0
  46. package/src/models/hospital-model.ts +9 -0
  47. package/src/models/hospital-tag-item-model.ts +36 -0
  48. package/src/models/hospital-tag-model.ts +42 -0
  49. package/src/models/hospital-tags-model.ts +42 -0
  50. package/src/models/index.ts +4 -0
  51. package/src/models/search-curation-item-input-model.ts +6 -0
  52. package/src/models/search-curation-item-model.ts +6 -0
  53. package/src/models/translation-contents-model.ts +0 -6
  54. package/src/models/translation-contents-target-model.ts +0 -6
  55. 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
+
@@ -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}
@@ -23,12 +23,6 @@ import { TranslationContentsTargetModel } from './translation-contents-target-mo
23
23
  * @interface TranslationContentsModel
24
24
  */
25
25
  export interface TranslationContentsModel {
26
- /**
27
- *
28
- * @type {string}
29
- * @memberof TranslationContentsModel
30
- */
31
- 'targetEntity'?: string | null;
32
26
  /**
33
27
  *
34
28
  * @type {string}
@@ -26,12 +26,6 @@ export interface TranslationContentsTargetModel {
26
26
  * @memberof TranslationContentsTargetModel
27
27
  */
28
28
  'id'?: string;
29
- /**
30
- *
31
- * @type {string}
32
- * @memberof TranslationContentsTargetModel
33
- */
34
- 'targetEntity'?: string | null;
35
29
  /**
36
30
  *
37
31
  * @type {boolean}
@@ -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