ch-admin-api-client-typescript 5.5.5 → 5.5.7

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 (77) hide show
  1. package/lib/api/hospitals-api.d.ts +629 -0
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +949 -41
  4. package/lib/api/web-apps-api.d.ts +394 -0
  5. package/lib/api/web-apps-api.d.ts.map +1 -0
  6. package/lib/api/web-apps-api.js +636 -0
  7. package/lib/api.d.ts +1 -0
  8. package/lib/api.d.ts.map +1 -1
  9. package/lib/api.js +1 -0
  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/create-web-app-command.d.ts +104 -0
  16. package/lib/models/create-web-app-command.d.ts.map +1 -0
  17. package/lib/models/create-web-app-command.js +15 -0
  18. package/lib/models/deploy-status.d.ts +28 -0
  19. package/lib/models/deploy-status.d.ts.map +1 -0
  20. package/lib/models/deploy-status.js +31 -0
  21. package/lib/models/domain-type.d.ts +22 -0
  22. package/lib/models/domain-type.d.ts.map +1 -0
  23. package/lib/models/domain-type.js +25 -0
  24. package/lib/models/hospital-model.d.ts +26 -0
  25. package/lib/models/hospital-model.d.ts.map +1 -1
  26. package/lib/models/hospital-tag-item-model.d.ts +31 -0
  27. package/lib/models/hospital-tag-item-model.d.ts.map +1 -0
  28. package/lib/models/hospital-tag-item-model.js +15 -0
  29. package/lib/models/hospital-tag-model.d.ts +37 -0
  30. package/lib/models/hospital-tag-model.d.ts.map +1 -0
  31. package/lib/models/hospital-tag-model.js +15 -0
  32. package/lib/models/hospital-tags-model.d.ts +33 -0
  33. package/lib/models/hospital-tags-model.d.ts.map +1 -0
  34. package/lib/models/hospital-tags-model.js +15 -0
  35. package/lib/models/index.d.ts +11 -0
  36. package/lib/models/index.d.ts.map +1 -1
  37. package/lib/models/index.js +11 -0
  38. package/lib/models/search-curation-item-input-model.d.ts +6 -0
  39. package/lib/models/search-curation-item-input-model.d.ts.map +1 -1
  40. package/lib/models/search-curation-item-model.d.ts +6 -0
  41. package/lib/models/search-curation-item-model.d.ts.map +1 -1
  42. package/lib/models/update-hospital-command.d.ts +7 -0
  43. package/lib/models/update-hospital-command.d.ts.map +1 -1
  44. package/lib/models/update-web-app-command.d.ts +105 -0
  45. package/lib/models/update-web-app-command.d.ts.map +1 -0
  46. package/lib/models/update-web-app-command.js +15 -0
  47. package/lib/models/web-app-item-model.d.ts +148 -0
  48. package/lib/models/web-app-item-model.d.ts.map +1 -0
  49. package/lib/models/web-app-item-model.js +15 -0
  50. package/lib/models/web-app-model.d.ts +148 -0
  51. package/lib/models/web-app-model.d.ts.map +1 -0
  52. package/lib/models/web-app-model.js +15 -0
  53. package/lib/models/web-apps-model.d.ts +33 -0
  54. package/lib/models/web-apps-model.d.ts.map +1 -0
  55. package/lib/models/web-apps-model.js +15 -0
  56. package/package.json +1 -1
  57. package/src/.openapi-generator/FILES +12 -0
  58. package/src/api/hospitals-api.ts +1194 -91
  59. package/src/api/web-apps-api.ts +681 -0
  60. package/src/api.ts +1 -0
  61. package/src/models/create-hospital-command.ts +9 -0
  62. package/src/models/create-hospital-tag-command.ts +36 -0
  63. package/src/models/create-web-app-command.ts +111 -0
  64. package/src/models/deploy-status.ts +37 -0
  65. package/src/models/domain-type.ts +31 -0
  66. package/src/models/hospital-model.ts +30 -0
  67. package/src/models/hospital-tag-item-model.ts +36 -0
  68. package/src/models/hospital-tag-model.ts +42 -0
  69. package/src/models/hospital-tags-model.ts +42 -0
  70. package/src/models/index.ts +11 -0
  71. package/src/models/search-curation-item-input-model.ts +6 -0
  72. package/src/models/search-curation-item-model.ts +6 -0
  73. package/src/models/update-hospital-command.ts +9 -0
  74. package/src/models/update-web-app-command.ts +114 -0
  75. package/src/models/web-app-item-model.ts +159 -0
  76. package/src/models/web-app-model.ts +159 -0
  77. package/src/models/web-apps-model.ts +42 -0
@@ -12,6 +12,7 @@
12
12
  import { AppointmentOptionModel } from './appointment-option-model';
13
13
  import { FeatureInputModel } from './feature-input-model';
14
14
  import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
15
+ import { HospitalTagItemModel } from './hospital-tag-item-model';
15
16
  import { LocationModel } from './location-model';
16
17
  import { MarketingType } from './marketing-type';
17
18
  /**
@@ -182,5 +183,11 @@ export interface CreateHospitalCommand {
182
183
  * @memberof CreateHospitalCommand
183
184
  */
184
185
  'feature'?: FeatureInputModel;
186
+ /**
187
+ *
188
+ * @type {Array<HospitalTagItemModel>}
189
+ * @memberof CreateHospitalCommand
190
+ */
191
+ 'tags'?: Array<HospitalTagItemModel> | null;
185
192
  }
186
193
  //# sourceMappingURL=create-hospital-command.d.ts.map
@@ -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,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAG1D,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,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;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;IAC7C;;;;OAIG;IACH,SAAS,CAAC,EAAE,iBAAiB,CAAC;CACjC"}
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,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAG1D,OAAO,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAC;AAGvF,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAGjE,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,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;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;IAC7C;;;;OAIG;IACH,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC;CAC/C"}
@@ -0,0 +1,31 @@
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
+ * @interface CreateHospitalTagCommand
16
+ */
17
+ export interface CreateHospitalTagCommand {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof CreateHospitalTagCommand
22
+ */
23
+ 'tagId'?: string | null;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof CreateHospitalTagCommand
28
+ */
29
+ 'order'?: number;
30
+ }
31
+ //# sourceMappingURL=create-hospital-tag-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-hospital-tag-command.d.ts","sourceRoot":"","sources":["../../src/models/create-hospital-tag-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;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 });
@@ -0,0 +1,104 @@
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 { DomainType } from './domain-type';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateWebAppCommand
17
+ */
18
+ export interface CreateWebAppCommand {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof CreateWebAppCommand
23
+ */
24
+ 'hospitalId'?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof CreateWebAppCommand
29
+ */
30
+ 'stsClientId'?: string | null;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof CreateWebAppCommand
35
+ */
36
+ 'stsClientSecret'?: string | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof CreateWebAppCommand
41
+ */
42
+ 'colorPrimary'?: string | null;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof CreateWebAppCommand
47
+ */
48
+ 'colorSecondary'?: string | null;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof CreateWebAppCommand
53
+ */
54
+ 'colorNeutral'?: string | null;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof CreateWebAppCommand
59
+ */
60
+ 'colorDark'?: string | null;
61
+ /**
62
+ *
63
+ * @type {string}
64
+ * @memberof CreateWebAppCommand
65
+ */
66
+ 'colorLight'?: string | null;
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof CreateWebAppCommand
71
+ */
72
+ 'template'?: string | null;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof CreateWebAppCommand
77
+ */
78
+ 'googleClientId'?: string | null;
79
+ /**
80
+ *
81
+ * @type {DomainType}
82
+ * @memberof CreateWebAppCommand
83
+ */
84
+ 'domainType'?: DomainType;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof CreateWebAppCommand
89
+ */
90
+ 'ipAddress'?: string | null;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof CreateWebAppCommand
95
+ */
96
+ 'domainVerificationId'?: string | null;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof CreateWebAppCommand
101
+ */
102
+ 'domain'?: string | null;
103
+ }
104
+ //# sourceMappingURL=create-web-app-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-web-app-command.d.ts","sourceRoot":"","sources":["../../src/models/create-web-app-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC5B"}
@@ -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,28 @@
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 DeployStatus: {
18
+ readonly New: "New";
19
+ readonly Paid: "Paid";
20
+ readonly RefundRequested: "RefundRequested";
21
+ readonly Refunded: "Refunded";
22
+ readonly Approved: "Approved";
23
+ readonly Deploying: "Deploying";
24
+ readonly Deployed: "Deployed";
25
+ readonly Suspended: "Suspended";
26
+ };
27
+ export type DeployStatus = typeof DeployStatus[keyof typeof DeployStatus];
28
+ //# sourceMappingURL=deploy-status.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deploy-status.d.ts","sourceRoot":"","sources":["../../src/models/deploy-status.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,YAAY;;;;;;;;;CASf,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,OAAO,YAAY,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC"}
@@ -0,0 +1,31 @@
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.DeployStatus = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.DeployStatus = {
23
+ New: 'New',
24
+ Paid: 'Paid',
25
+ RefundRequested: 'RefundRequested',
26
+ Refunded: 'Refunded',
27
+ Approved: 'Approved',
28
+ Deploying: 'Deploying',
29
+ Deployed: 'Deployed',
30
+ Suspended: 'Suspended'
31
+ };
@@ -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 DomainType: {
18
+ readonly Subdomain: "Subdomain";
19
+ readonly Customdomain: "Customdomain";
20
+ };
21
+ export type DomainType = typeof DomainType[keyof typeof DomainType];
22
+ //# sourceMappingURL=domain-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"domain-type.d.ts","sourceRoot":"","sources":["../../src/models/domain-type.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,UAAU;;;CAGb,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,OAAO,UAAU,CAAC,MAAM,OAAO,UAAU,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.DomainType = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.DomainType = {
23
+ Subdomain: 'Subdomain',
24
+ Customdomain: 'Customdomain'
25
+ };
@@ -11,10 +11,12 @@
11
11
  */
12
12
  import { AppointmentOptionModel } from './appointment-option-model';
13
13
  import { AuditableEntityModel } from './auditable-entity-model';
14
+ import { DeployStatus } from './deploy-status';
14
15
  import { FeatureModel } from './feature-model';
15
16
  import { GradeModel } from './grade-model';
16
17
  import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
17
18
  import { HospitalLanguageItemModel } from './hospital-language-item-model';
19
+ import { HospitalTagItemModel } from './hospital-tag-item-model';
18
20
  import { LocationModel } from './location-model';
19
21
  import { MarketingType } from './marketing-type';
20
22
  import { MediaModel } from './media-model';
@@ -234,5 +236,29 @@ export interface HospitalModel {
234
236
  * @memberof HospitalModel
235
237
  */
236
238
  'feature'?: FeatureModel;
239
+ /**
240
+ *
241
+ * @type {Array<HospitalTagItemModel>}
242
+ * @memberof HospitalModel
243
+ */
244
+ 'tags'?: Array<HospitalTagItemModel> | null;
245
+ /**
246
+ *
247
+ * @type {string}
248
+ * @memberof HospitalModel
249
+ */
250
+ 'webAppId'?: string;
251
+ /**
252
+ *
253
+ * @type {string}
254
+ * @memberof HospitalModel
255
+ */
256
+ 'domain'?: string | null;
257
+ /**
258
+ *
259
+ * @type {DeployStatus}
260
+ * @memberof HospitalModel
261
+ */
262
+ 'deployStatus'?: DeployStatus;
237
263
  }
238
264
  //# sourceMappingURL=hospital-model.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"hospital-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AAGpE,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAG3C,OAAO,EAAE,+BAA+B,EAAE,MAAM,sCAAsC,CAAC;AAGvF,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAG3E,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAGjD,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC1B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;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,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;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,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,UAAU,CAAC,EAAE,aAAa,CAAC;IAC3B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,+BAA+B,CAAC;IACvD;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,sBAAsB,CAAC;IAC7C;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,OAAO,CAAC,EAAE,UAAU,CAAC;IACrB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;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,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC;IACtD;;;;OAIG;IACH,SAAS,CAAC,EAAE,YAAY,CAAC;CAC5B"}
1
+ {"version":3,"file":"hospital-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-model.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,31 @@
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
+ * @interface HospitalTagItemModel
16
+ */
17
+ export interface HospitalTagItemModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof HospitalTagItemModel
22
+ */
23
+ 'tagId'?: string | null;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof HospitalTagItemModel
28
+ */
29
+ 'order'?: number;
30
+ }
31
+ //# sourceMappingURL=hospital-tag-item-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hospital-tag-item-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-tag-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;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 });
@@ -0,0 +1,37 @@
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
+ * @interface HospitalTagModel
16
+ */
17
+ export interface HospitalTagModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof HospitalTagModel
22
+ */
23
+ 'tagId'?: string | null;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof HospitalTagModel
28
+ */
29
+ 'order'?: number;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof HospitalTagModel
34
+ */
35
+ 'hospitalId'?: string;
36
+ }
37
+ //# sourceMappingURL=hospital-tag-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hospital-tag-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-tag-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB"}
@@ -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,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 { HospitalTagItemModel } from './hospital-tag-item-model';
13
+ import { PagedListMetaData } from './paged-list-meta-data';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface HospitalTagsModel
18
+ */
19
+ export interface HospitalTagsModel {
20
+ /**
21
+ *
22
+ * @type {Array<HospitalTagItemModel>}
23
+ * @memberof HospitalTagsModel
24
+ */
25
+ 'items'?: Array<HospitalTagItemModel> | null;
26
+ /**
27
+ *
28
+ * @type {PagedListMetaData}
29
+ * @memberof HospitalTagsModel
30
+ */
31
+ 'metaData'?: PagedListMetaData;
32
+ }
33
+ //# sourceMappingURL=hospital-tags-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"hospital-tags-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-tags-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAGjE,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC;IAC7C;;;;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 });
@@ -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';
@@ -156,6 +157,7 @@ export * from './create-sub-account-command';
156
157
  export * from './create-survey-form-command';
157
158
  export * from './create-tag-command';
158
159
  export * from './create-template-version-command';
160
+ export * from './create-web-app-command';
159
161
  export * from './dash-board-model';
160
162
  export * from './day-of-week';
161
163
  export * from './deal-item-model';
@@ -176,6 +178,7 @@ export * from './delete-hospital-appointment-timetable-overrides-command';
176
178
  export * from './delete-hospital-consultation-timetable-override-command';
177
179
  export * from './delete-hospital-specialty-appointment-timetable-overrides-command';
178
180
  export * from './delete-service-appointment-timetable-overrides-command';
181
+ export * from './deploy-status';
179
182
  export * from './doctor-affiliation-item-model';
180
183
  export * from './doctor-affiliation-model';
181
184
  export * from './doctor-affiliations-model';
@@ -198,6 +201,7 @@ export * from './doctor-specialties-model';
198
201
  export * from './doctor-specialty-model';
199
202
  export * from './doctors-model';
200
203
  export * from './doctors-simple-model';
204
+ export * from './domain-type';
201
205
  export * from './duration';
202
206
  export * from './faq-categories-model';
203
207
  export * from './faq-category-item-model';
@@ -258,6 +262,9 @@ export * from './hospital-specialties-simple-model';
258
262
  export * from './hospital-specialty-item-model';
259
263
  export * from './hospital-specialty-model';
260
264
  export * from './hospital-specialty-simple-item-model';
265
+ export * from './hospital-tag-item-model';
266
+ export * from './hospital-tag-model';
267
+ export * from './hospital-tags-model';
261
268
  export * from './hospitals-model';
262
269
  export * from './hospitals-simple-model';
263
270
  export * from './http-status-code';
@@ -479,6 +486,7 @@ export * from './update-specialty-command';
479
486
  export * from './update-specialty-type-command';
480
487
  export * from './update-survey-form-command';
481
488
  export * from './update-template-version-command';
489
+ export * from './update-web-app-command';
482
490
  export * from './user';
483
491
  export * from './user-language-model';
484
492
  export * from './user-location-model';
@@ -488,6 +496,9 @@ export * from './vbc';
488
496
  export * from './video';
489
497
  export * from './voice';
490
498
  export * from './vonage-user';
499
+ export * from './web-app-item-model';
500
+ export * from './web-app-model';
501
+ export * from './web-apps-model';
491
502
  export * from './webhook';
492
503
  export * from './working-day-item-model';
493
504
  export * from './working-day-model';