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.
Files changed (62) hide show
  1. package/lib/api/hospital-branches-api.d.ts +402 -0
  2. package/lib/api/hospital-branches-api.d.ts.map +1 -0
  3. package/lib/api/hospital-branches-api.js +697 -0
  4. package/lib/api/hospital-groups-api.d.ts +402 -0
  5. package/lib/api/hospital-groups-api.d.ts.map +1 -0
  6. package/lib/api/hospital-groups-api.js +697 -0
  7. package/lib/api/hospitals-api.d.ts +30 -30
  8. package/lib/api/hospitals-api.d.ts.map +1 -1
  9. package/lib/api/hospitals-api.js +26 -26
  10. package/lib/api.d.ts +2 -0
  11. package/lib/api.d.ts.map +1 -1
  12. package/lib/api.js +2 -0
  13. package/lib/models/create-hospital-branch-command.d.ts +73 -0
  14. package/lib/models/create-hospital-branch-command.d.ts.map +1 -0
  15. package/lib/models/create-hospital-branch-command.js +15 -0
  16. package/lib/models/create-hospital-group-command.d.ts +67 -0
  17. package/lib/models/create-hospital-group-command.d.ts.map +1 -0
  18. package/lib/models/create-hospital-group-command.js +15 -0
  19. package/lib/models/hospital-branch-item-model.d.ts +80 -0
  20. package/lib/models/hospital-branch-item-model.d.ts.map +1 -0
  21. package/lib/models/hospital-branch-item-model.js +15 -0
  22. package/lib/models/hospital-branch-model.d.ts +98 -0
  23. package/lib/models/hospital-branch-model.d.ts.map +1 -0
  24. package/lib/models/hospital-branch-model.js +15 -0
  25. package/lib/models/hospital-branches-model.d.ts +33 -0
  26. package/lib/models/hospital-branches-model.d.ts.map +1 -0
  27. package/lib/models/hospital-branches-model.js +15 -0
  28. package/lib/models/hospital-group-item-model.d.ts +62 -0
  29. package/lib/models/hospital-group-item-model.d.ts.map +1 -0
  30. package/lib/models/hospital-group-item-model.js +15 -0
  31. package/lib/models/hospital-group-model.d.ts +80 -0
  32. package/lib/models/hospital-group-model.d.ts.map +1 -0
  33. package/lib/models/hospital-group-model.js +15 -0
  34. package/lib/models/hospital-groups-model.d.ts +33 -0
  35. package/lib/models/hospital-groups-model.d.ts.map +1 -0
  36. package/lib/models/hospital-groups-model.js +15 -0
  37. package/lib/models/index.d.ts +10 -0
  38. package/lib/models/index.d.ts.map +1 -1
  39. package/lib/models/index.js +10 -0
  40. package/lib/models/update-hospital-branch-command.d.ts +61 -0
  41. package/lib/models/update-hospital-branch-command.d.ts.map +1 -0
  42. package/lib/models/update-hospital-branch-command.js +15 -0
  43. package/lib/models/update-hospital-group-command.d.ts +67 -0
  44. package/lib/models/update-hospital-group-command.d.ts.map +1 -0
  45. package/lib/models/update-hospital-group-command.js +15 -0
  46. package/package.json +1 -1
  47. package/src/.openapi-generator/FILES +12 -0
  48. package/src/api/hospital-branches-api.ts +706 -0
  49. package/src/api/hospital-groups-api.ts +706 -0
  50. package/src/api/hospitals-api.ts +49 -49
  51. package/src/api.ts +2 -0
  52. package/src/models/create-hospital-branch-command.ts +78 -0
  53. package/src/models/create-hospital-group-command.ts +72 -0
  54. package/src/models/hospital-branch-item-model.ts +87 -0
  55. package/src/models/hospital-branch-model.ts +105 -0
  56. package/src/models/hospital-branches-model.ts +42 -0
  57. package/src/models/hospital-group-item-model.ts +69 -0
  58. package/src/models/hospital-group-model.ts +87 -0
  59. package/src/models/hospital-groups-model.ts +42 -0
  60. package/src/models/index.ts +10 -0
  61. package/src/models/update-hospital-branch-command.ts +66 -0
  62. package/src/models/update-hospital-group-command.ts +72 -0
@@ -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 HospitalGroupModel
24
+ */
25
+ export interface HospitalGroupModel {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof HospitalGroupModel
30
+ */
31
+ 'id'?: string;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof HospitalGroupModel
36
+ */
37
+ 'logo'?: string | null;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof HospitalGroupModel
42
+ */
43
+ 'primaryHospitalId'?: string;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof HospitalGroupModel
48
+ */
49
+ 'languageCode'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof HospitalGroupModel
54
+ */
55
+ 'name'?: string | null;
56
+ /**
57
+ *
58
+ * @type {boolean}
59
+ * @memberof HospitalGroupModel
60
+ */
61
+ 'isConfirmed'?: boolean;
62
+ /**
63
+ *
64
+ * @type {AuditableEntityModel}
65
+ * @memberof HospitalGroupModel
66
+ */
67
+ 'auditableEntity'?: AuditableEntityModel;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof HospitalGroupModel
72
+ */
73
+ 'description'?: string | null;
74
+ /**
75
+ *
76
+ * @type {string}
77
+ * @memberof HospitalGroupModel
78
+ */
79
+ 'overview'?: string | null;
80
+ /**
81
+ *
82
+ * @type {string}
83
+ * @memberof HospitalGroupModel
84
+ */
85
+ 'content'?: string | null;
86
+ }
87
+
@@ -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 { HospitalGroupItemModel } from './hospital-group-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 HospitalGroupsModel
27
+ */
28
+ export interface HospitalGroupsModel {
29
+ /**
30
+ *
31
+ * @type {Array<HospitalGroupItemModel>}
32
+ * @memberof HospitalGroupsModel
33
+ */
34
+ 'items'?: Array<HospitalGroupItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof HospitalGroupsModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -135,11 +135,13 @@ export * from './create-faq-tag-command';
135
135
  export * from './create-grade-command';
136
136
  export * from './create-hospital-accreditation-command';
137
137
  export * from './create-hospital-bank-account-info-command';
138
+ export * from './create-hospital-branch-command';
138
139
  export * from './create-hospital-command';
139
140
  export * from './create-hospital-consultation-timetable-command';
140
141
  export * from './create-hospital-contact-command';
141
142
  export * from './create-hospital-equipment-command';
142
143
  export * from './create-hospital-evaluation-command';
144
+ export * from './create-hospital-group-command';
143
145
  export * from './create-hospital-language-command';
144
146
  export * from './create-hospital-payment-method-command';
145
147
  export * from './create-hospital-service-command';
@@ -242,6 +244,9 @@ export * from './header-navigation-item-model';
242
244
  export * from './hospital-accreditation-item-model';
243
245
  export * from './hospital-accreditation-model';
244
246
  export * from './hospital-accreditations-model';
247
+ export * from './hospital-branch-item-model';
248
+ export * from './hospital-branch-model';
249
+ export * from './hospital-branches-model';
245
250
  export * from './hospital-consultation-option-model';
246
251
  export * from './hospital-consultation-timetable-item-model';
247
252
  export * from './hospital-consultation-timetable-model';
@@ -258,6 +263,9 @@ export * from './hospital-equipments-model';
258
263
  export * from './hospital-evaluation-item-model';
259
264
  export * from './hospital-evaluation-model';
260
265
  export * from './hospital-evaluations-model';
266
+ export * from './hospital-group-item-model';
267
+ export * from './hospital-group-model';
268
+ export * from './hospital-groups-model';
261
269
  export * from './hospital-item-model';
262
270
  export * from './hospital-language-item-model';
263
271
  export * from './hospital-languages-model';
@@ -485,10 +493,12 @@ export * from './update-faq-category-command';
485
493
  export * from './update-faq-command';
486
494
  export * from './update-grade-command';
487
495
  export * from './update-hospital-bank-account-info-command';
496
+ export * from './update-hospital-branch-command';
488
497
  export * from './update-hospital-command';
489
498
  export * from './update-hospital-consultation-timetable-command';
490
499
  export * from './update-hospital-contact-command';
491
500
  export * from './update-hospital-equipment-command';
501
+ export * from './update-hospital-group-command';
492
502
  export * from './update-hospital-language-command';
493
503
  export * from './update-hospital-payment-method-command';
494
504
  export * from './update-hospital-service-command';
@@ -0,0 +1,66 @@
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 UpdateHospitalBranchCommand
21
+ */
22
+ export interface UpdateHospitalBranchCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof UpdateHospitalBranchCommand
27
+ */
28
+ 'languageCode'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof UpdateHospitalBranchCommand
33
+ */
34
+ 'name'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof UpdateHospitalBranchCommand
39
+ */
40
+ 'description'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof UpdateHospitalBranchCommand
45
+ */
46
+ 'overview'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof UpdateHospitalBranchCommand
51
+ */
52
+ 'content'?: string | null;
53
+ /**
54
+ *
55
+ * @type {boolean}
56
+ * @memberof UpdateHospitalBranchCommand
57
+ */
58
+ 'isConfirmed'?: boolean;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof UpdateHospitalBranchCommand
63
+ */
64
+ 'order'?: number | null;
65
+ }
66
+
@@ -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 UpdateHospitalGroupCommand
21
+ */
22
+ export interface UpdateHospitalGroupCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof UpdateHospitalGroupCommand
27
+ */
28
+ 'languageCode'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof UpdateHospitalGroupCommand
33
+ */
34
+ 'name'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof UpdateHospitalGroupCommand
39
+ */
40
+ 'description'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof UpdateHospitalGroupCommand
45
+ */
46
+ 'overview'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof UpdateHospitalGroupCommand
51
+ */
52
+ 'content'?: string | null;
53
+ /**
54
+ *
55
+ * @type {boolean}
56
+ * @memberof UpdateHospitalGroupCommand
57
+ */
58
+ 'isConfirmed'?: boolean;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof UpdateHospitalGroupCommand
63
+ */
64
+ 'logo'?: string | null;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof UpdateHospitalGroupCommand
69
+ */
70
+ 'primaryHospitalId'?: string | null;
71
+ }
72
+