ch-admin-api-client-typescript 5.19.69 → 5.19.71

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 (98) hide show
  1. package/lib/api/hospitals-api.d.ts +773 -6
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +1172 -69
  4. package/lib/models/create-hospital-rating-command.d.ts +61 -0
  5. package/lib/models/create-hospital-rating-command.d.ts.map +1 -0
  6. package/lib/models/create-hospital-rating-command.js +15 -0
  7. package/lib/models/create-page-command.d.ts +75 -0
  8. package/lib/models/create-page-command.d.ts.map +1 -0
  9. package/lib/models/create-page-command.js +15 -0
  10. package/lib/models/hospital-rating-item-model.d.ts +67 -0
  11. package/lib/models/hospital-rating-item-model.d.ts.map +1 -0
  12. package/lib/models/hospital-rating-item-model.js +15 -0
  13. package/lib/models/hospital-rating-model.d.ts +67 -0
  14. package/lib/models/hospital-rating-model.d.ts.map +1 -0
  15. package/lib/models/hospital-rating-model.js +15 -0
  16. package/lib/models/hospital-ratings-model.d.ts +33 -0
  17. package/lib/models/hospital-ratings-model.d.ts.map +1 -0
  18. package/lib/models/hospital-ratings-model.js +15 -0
  19. package/lib/models/index.d.ts +22 -0
  20. package/lib/models/index.d.ts.map +1 -1
  21. package/lib/models/index.js +22 -0
  22. package/lib/models/page-block-input-model.d.ts +101 -0
  23. package/lib/models/page-block-input-model.d.ts.map +1 -0
  24. package/lib/models/page-block-input-model.js +15 -0
  25. package/lib/models/page-block-link-input-model.d.ts +56 -0
  26. package/lib/models/page-block-link-input-model.d.ts.map +1 -0
  27. package/lib/models/page-block-link-input-model.js +15 -0
  28. package/lib/models/page-block-link-model.d.ts +68 -0
  29. package/lib/models/page-block-link-model.d.ts.map +1 -0
  30. package/lib/models/page-block-link-model.js +15 -0
  31. package/lib/models/page-block-link-type.d.ts +22 -0
  32. package/lib/models/page-block-link-type.d.ts.map +1 -0
  33. package/lib/models/page-block-link-type.js +25 -0
  34. package/lib/models/page-block-location-input-model.d.ts +49 -0
  35. package/lib/models/page-block-location-input-model.d.ts.map +1 -0
  36. package/lib/models/page-block-location-input-model.js +15 -0
  37. package/lib/models/page-block-location-model.d.ts +49 -0
  38. package/lib/models/page-block-location-model.d.ts.map +1 -0
  39. package/lib/models/page-block-location-model.js +15 -0
  40. package/lib/models/page-block-model.d.ts +113 -0
  41. package/lib/models/page-block-model.d.ts.map +1 -0
  42. package/lib/models/page-block-model.js +15 -0
  43. package/lib/models/page-block-type.d.ts +29 -0
  44. package/lib/models/page-block-type.d.ts.map +1 -0
  45. package/lib/models/page-block-type.js +32 -0
  46. package/lib/models/page-item-item-model.d.ts +69 -0
  47. package/lib/models/page-item-item-model.d.ts.map +1 -0
  48. package/lib/models/page-item-item-model.js +15 -0
  49. package/lib/models/page-item-model.d.ts +100 -0
  50. package/lib/models/page-item-model.d.ts.map +1 -0
  51. package/lib/models/page-item-model.js +15 -0
  52. package/lib/models/page-item-status.d.ts +23 -0
  53. package/lib/models/page-item-status.d.ts.map +1 -0
  54. package/lib/models/page-item-status.js +26 -0
  55. package/lib/models/page-items-model.d.ts +33 -0
  56. package/lib/models/page-items-model.d.ts.map +1 -0
  57. package/lib/models/page-items-model.js +15 -0
  58. package/lib/models/page-section-input-model.d.ts +51 -0
  59. package/lib/models/page-section-input-model.d.ts.map +1 -0
  60. package/lib/models/page-section-input-model.js +15 -0
  61. package/lib/models/page-section-list-type.d.ts +23 -0
  62. package/lib/models/page-section-list-type.d.ts.map +1 -0
  63. package/lib/models/page-section-list-type.js +26 -0
  64. package/lib/models/page-section-model.d.ts +51 -0
  65. package/lib/models/page-section-model.d.ts.map +1 -0
  66. package/lib/models/page-section-model.js +15 -0
  67. package/lib/models/update-hospital-rating-command.d.ts +61 -0
  68. package/lib/models/update-hospital-rating-command.d.ts.map +1 -0
  69. package/lib/models/update-hospital-rating-command.js +15 -0
  70. package/lib/models/update-page-command.d.ts +75 -0
  71. package/lib/models/update-page-command.d.ts.map +1 -0
  72. package/lib/models/update-page-command.js +15 -0
  73. package/package.json +1 -1
  74. package/src/.openapi-generator/FILES +22 -0
  75. package/src/api/hospitals-api.ts +1539 -201
  76. package/src/models/create-hospital-rating-command.ts +66 -0
  77. package/src/models/create-page-command.ts +84 -0
  78. package/src/models/hospital-rating-item-model.ts +72 -0
  79. package/src/models/hospital-rating-model.ts +72 -0
  80. package/src/models/hospital-ratings-model.ts +42 -0
  81. package/src/models/index.ts +22 -0
  82. package/src/models/page-block-input-model.ts +114 -0
  83. package/src/models/page-block-link-input-model.ts +63 -0
  84. package/src/models/page-block-link-model.ts +75 -0
  85. package/src/models/page-block-link-type.ts +31 -0
  86. package/src/models/page-block-location-input-model.ts +54 -0
  87. package/src/models/page-block-location-model.ts +54 -0
  88. package/src/models/page-block-model.ts +126 -0
  89. package/src/models/page-block-type.ts +38 -0
  90. package/src/models/page-item-item-model.ts +78 -0
  91. package/src/models/page-item-model.ts +111 -0
  92. package/src/models/page-item-status.ts +32 -0
  93. package/src/models/page-items-model.ts +42 -0
  94. package/src/models/page-section-input-model.ts +60 -0
  95. package/src/models/page-section-list-type.ts +32 -0
  96. package/src/models/page-section-model.ts +60 -0
  97. package/src/models/update-hospital-rating-command.ts +66 -0
  98. package/src/models/update-page-command.ts +84 -0
@@ -0,0 +1,69 @@
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 { AuditableEntityModel } from './auditable-entity-model';
13
+ import { PageItemStatus } from './page-item-status';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PageItemItemModel
18
+ */
19
+ export interface PageItemItemModel {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof PageItemItemModel
24
+ */
25
+ 'id'?: string;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof PageItemItemModel
30
+ */
31
+ 'hospitalId'?: string;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof PageItemItemModel
36
+ */
37
+ 'languageCode'?: string | null;
38
+ /**
39
+ *
40
+ * @type {PageItemStatus}
41
+ * @memberof PageItemItemModel
42
+ */
43
+ 'status'?: PageItemStatus;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof PageItemItemModel
48
+ */
49
+ 'name'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof PageItemItemModel
54
+ */
55
+ 'slug'?: string | null;
56
+ /**
57
+ *
58
+ * @type {boolean}
59
+ * @memberof PageItemItemModel
60
+ */
61
+ 'isConfirmed'?: boolean;
62
+ /**
63
+ *
64
+ * @type {AuditableEntityModel}
65
+ * @memberof PageItemItemModel
66
+ */
67
+ 'auditableEntity'?: AuditableEntityModel;
68
+ }
69
+ //# sourceMappingURL=page-item-item-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-item-item-model.d.ts","sourceRoot":"","sources":["../../src/models/page-item-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAEpD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
@@ -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,100 @@
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 { AuditableEntityModel } from './auditable-entity-model';
13
+ import { PageItemStatus } from './page-item-status';
14
+ import { PageSectionModel } from './page-section-model';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface PageItemModel
19
+ */
20
+ export interface PageItemModel {
21
+ /**
22
+ *
23
+ * @type {string}
24
+ * @memberof PageItemModel
25
+ */
26
+ 'id'?: string;
27
+ /**
28
+ *
29
+ * @type {string}
30
+ * @memberof PageItemModel
31
+ */
32
+ 'hospitalId'?: string;
33
+ /**
34
+ *
35
+ * @type {string}
36
+ * @memberof PageItemModel
37
+ */
38
+ 'languageCode'?: string | null;
39
+ /**
40
+ *
41
+ * @type {PageItemStatus}
42
+ * @memberof PageItemModel
43
+ */
44
+ 'status'?: PageItemStatus;
45
+ /**
46
+ *
47
+ * @type {string}
48
+ * @memberof PageItemModel
49
+ */
50
+ 'name'?: string | null;
51
+ /**
52
+ *
53
+ * @type {string}
54
+ * @memberof PageItemModel
55
+ */
56
+ 'slug'?: string | null;
57
+ /**
58
+ *
59
+ * @type {boolean}
60
+ * @memberof PageItemModel
61
+ */
62
+ 'isConfirmed'?: boolean;
63
+ /**
64
+ *
65
+ * @type {AuditableEntityModel}
66
+ * @memberof PageItemModel
67
+ */
68
+ 'auditableEntity'?: AuditableEntityModel;
69
+ /**
70
+ *
71
+ * @type {string}
72
+ * @memberof PageItemModel
73
+ */
74
+ 'customStyle'?: string | null;
75
+ /**
76
+ *
77
+ * @type {Array<PageSectionModel>}
78
+ * @memberof PageItemModel
79
+ */
80
+ 'sections'?: Array<PageSectionModel> | null;
81
+ /**
82
+ *
83
+ * @type {string}
84
+ * @memberof PageItemModel
85
+ */
86
+ 'description'?: string | null;
87
+ /**
88
+ *
89
+ * @type {string}
90
+ * @memberof PageItemModel
91
+ */
92
+ 'overview'?: string | null;
93
+ /**
94
+ *
95
+ * @type {string}
96
+ * @memberof PageItemModel
97
+ */
98
+ 'content'?: string | null;
99
+ }
100
+ //# sourceMappingURL=page-item-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-item-model.d.ts","sourceRoot":"","sources":["../../src/models/page-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAGpD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC1B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC;IAC5C;;;;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;CAC7B"}
@@ -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,23 @@
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 PageItemStatus: {
18
+ readonly Draft: "Draft";
19
+ readonly Active: "Active";
20
+ readonly Archived: "Archived";
21
+ };
22
+ export type PageItemStatus = typeof PageItemStatus[keyof typeof PageItemStatus];
23
+ //# sourceMappingURL=page-item-status.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-item-status.d.ts","sourceRoot":"","sources":["../../src/models/page-item-status.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,cAAc;;;;CAIjB,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,OAAO,cAAc,CAAC,MAAM,OAAO,cAAc,CAAC,CAAC"}
@@ -0,0 +1,26 @@
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.PageItemStatus = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.PageItemStatus = {
23
+ Draft: 'Draft',
24
+ Active: 'Active',
25
+ Archived: 'Archived'
26
+ };
@@ -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 { PageItemItemModel } from './page-item-item-model';
13
+ import { PagedListMetaData } from './paged-list-meta-data';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PageItemsModel
18
+ */
19
+ export interface PageItemsModel {
20
+ /**
21
+ *
22
+ * @type {Array<PageItemItemModel>}
23
+ * @memberof PageItemsModel
24
+ */
25
+ 'items'?: Array<PageItemItemModel> | null;
26
+ /**
27
+ *
28
+ * @type {PagedListMetaData}
29
+ * @memberof PageItemsModel
30
+ */
31
+ 'metaData'?: PagedListMetaData;
32
+ }
33
+ //# sourceMappingURL=page-items-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-items-model.d.ts","sourceRoot":"","sources":["../../src/models/page-items-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAG3D,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;IAC1C;;;;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 });
@@ -0,0 +1,51 @@
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 { PageBlockInputModel } from './page-block-input-model';
13
+ import { PageSectionListType } from './page-section-list-type';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PageSectionInputModel
18
+ */
19
+ export interface PageSectionInputModel {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof PageSectionInputModel
24
+ */
25
+ 'id'?: string | null;
26
+ /**
27
+ *
28
+ * @type {PageSectionListType}
29
+ * @memberof PageSectionInputModel
30
+ */
31
+ 'listType'?: PageSectionListType;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof PageSectionInputModel
36
+ */
37
+ 'customStyle'?: string | null;
38
+ /**
39
+ *
40
+ * @type {number}
41
+ * @memberof PageSectionInputModel
42
+ */
43
+ 'order'?: number;
44
+ /**
45
+ *
46
+ * @type {Array<PageBlockInputModel>}
47
+ * @memberof PageSectionInputModel
48
+ */
49
+ 'blocks'?: Array<PageBlockInputModel> | null;
50
+ }
51
+ //# sourceMappingURL=page-section-input-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-section-input-model.d.ts","sourceRoot":"","sources":["../../src/models/page-section-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAG/D,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC;CAChD"}
@@ -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,23 @@
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 PageSectionListType: {
18
+ readonly None: "None";
19
+ readonly List: "List";
20
+ readonly Grid: "Grid";
21
+ };
22
+ export type PageSectionListType = typeof PageSectionListType[keyof typeof PageSectionListType];
23
+ //# sourceMappingURL=page-section-list-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-section-list-type.d.ts","sourceRoot":"","sources":["../../src/models/page-section-list-type.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,mBAAmB;;;;CAItB,CAAC;AAEX,MAAM,MAAM,mBAAmB,GAAG,OAAO,mBAAmB,CAAC,MAAM,OAAO,mBAAmB,CAAC,CAAC"}
@@ -0,0 +1,26 @@
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.PageSectionListType = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.PageSectionListType = {
23
+ None: 'None',
24
+ List: 'List',
25
+ Grid: 'Grid'
26
+ };
@@ -0,0 +1,51 @@
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 { PageBlockModel } from './page-block-model';
13
+ import { PageSectionListType } from './page-section-list-type';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface PageSectionModel
18
+ */
19
+ export interface PageSectionModel {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof PageSectionModel
24
+ */
25
+ 'id'?: string;
26
+ /**
27
+ *
28
+ * @type {PageSectionListType}
29
+ * @memberof PageSectionModel
30
+ */
31
+ 'listType'?: PageSectionListType;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof PageSectionModel
36
+ */
37
+ 'customStyle'?: string | null;
38
+ /**
39
+ *
40
+ * @type {number}
41
+ * @memberof PageSectionModel
42
+ */
43
+ 'order'?: number;
44
+ /**
45
+ *
46
+ * @type {Array<PageBlockModel>}
47
+ * @memberof PageSectionModel
48
+ */
49
+ 'blocks'?: Array<PageBlockModel> | null;
50
+ }
51
+ //# sourceMappingURL=page-section-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-section-model.d.ts","sourceRoot":"","sources":["../../src/models/page-section-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAGpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAE/D;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,mBAAmB,CAAC;IACjC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;CAC3C"}
@@ -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,61 @@
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 UpdateHospitalRatingCommand
16
+ */
17
+ export interface UpdateHospitalRatingCommand {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UpdateHospitalRatingCommand
22
+ */
23
+ 'vender'?: string | null;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof UpdateHospitalRatingCommand
28
+ */
29
+ 'rating'?: number;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof UpdateHospitalRatingCommand
34
+ */
35
+ 'order'?: number;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof UpdateHospitalRatingCommand
40
+ */
41
+ 'isConfirmed'?: boolean;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof UpdateHospitalRatingCommand
46
+ */
47
+ 'placeId'?: string | null;
48
+ /**
49
+ *
50
+ * @type {number}
51
+ * @memberof UpdateHospitalRatingCommand
52
+ */
53
+ 'numberOfPeople'?: number;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof UpdateHospitalRatingCommand
58
+ */
59
+ 'url'?: string | null;
60
+ }
61
+ //# sourceMappingURL=update-hospital-rating-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-hospital-rating-command.d.ts","sourceRoot":"","sources":["../../src/models/update-hospital-rating-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,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,75 @@
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 { PageItemStatus } from './page-item-status';
13
+ import { PageSectionInputModel } from './page-section-input-model';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface UpdatePageCommand
18
+ */
19
+ export interface UpdatePageCommand {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof UpdatePageCommand
24
+ */
25
+ 'languageCode'?: string | null;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof UpdatePageCommand
30
+ */
31
+ 'name'?: string | null;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof UpdatePageCommand
36
+ */
37
+ 'description'?: string | null;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof UpdatePageCommand
42
+ */
43
+ 'overview'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof UpdatePageCommand
48
+ */
49
+ 'content'?: string | null;
50
+ /**
51
+ *
52
+ * @type {boolean}
53
+ * @memberof UpdatePageCommand
54
+ */
55
+ 'isConfirmed'?: boolean;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof UpdatePageCommand
60
+ */
61
+ 'customStyle'?: string | null;
62
+ /**
63
+ *
64
+ * @type {PageItemStatus}
65
+ * @memberof UpdatePageCommand
66
+ */
67
+ 'status'?: PageItemStatus;
68
+ /**
69
+ *
70
+ * @type {Array<PageSectionInputModel>}
71
+ * @memberof UpdatePageCommand
72
+ */
73
+ 'sections'?: Array<PageSectionInputModel> | null;
74
+ }
75
+ //# sourceMappingURL=update-page-command.d.ts.map