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,101 @@
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 { MediaModel } from './media-model';
13
+ import { PageBlockLinkInputModel } from './page-block-link-input-model';
14
+ import { PageBlockLocationInputModel } from './page-block-location-input-model';
15
+ import { PageBlockType } from './page-block-type';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface PageBlockInputModel
20
+ */
21
+ export interface PageBlockInputModel {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof PageBlockInputModel
26
+ */
27
+ 'id'?: string | null;
28
+ /**
29
+ *
30
+ * @type {PageBlockType}
31
+ * @memberof PageBlockInputModel
32
+ */
33
+ 'blockType'?: PageBlockType;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof PageBlockInputModel
38
+ */
39
+ 'icon'?: string | null;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof PageBlockInputModel
44
+ */
45
+ 'customStyle'?: string | null;
46
+ /**
47
+ *
48
+ * @type {number}
49
+ * @memberof PageBlockInputModel
50
+ */
51
+ 'order'?: number;
52
+ /**
53
+ *
54
+ * @type {string}
55
+ * @memberof PageBlockInputModel
56
+ */
57
+ 'name'?: string | null;
58
+ /**
59
+ *
60
+ * @type {string}
61
+ * @memberof PageBlockInputModel
62
+ */
63
+ 'subtitle'?: string | null;
64
+ /**
65
+ *
66
+ * @type {string}
67
+ * @memberof PageBlockInputModel
68
+ */
69
+ 'description'?: string | null;
70
+ /**
71
+ *
72
+ * @type {string}
73
+ * @memberof PageBlockInputModel
74
+ */
75
+ 'overview'?: string | null;
76
+ /**
77
+ *
78
+ * @type {string}
79
+ * @memberof PageBlockInputModel
80
+ */
81
+ 'content'?: string | null;
82
+ /**
83
+ *
84
+ * @type {Array<MediaModel>}
85
+ * @memberof PageBlockInputModel
86
+ */
87
+ 'medias'?: Array<MediaModel> | null;
88
+ /**
89
+ *
90
+ * @type {Array<PageBlockLinkInputModel>}
91
+ * @memberof PageBlockInputModel
92
+ */
93
+ 'links'?: Array<PageBlockLinkInputModel> | null;
94
+ /**
95
+ *
96
+ * @type {Array<PageBlockLocationInputModel>}
97
+ * @memberof PageBlockInputModel
98
+ */
99
+ 'locations'?: Array<PageBlockLocationInputModel> | null;
100
+ }
101
+ //# sourceMappingURL=page-block-input-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-block-input-model.d.ts","sourceRoot":"","sources":["../../src/models/page-block-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAG3C,OAAO,EAAE,uBAAuB,EAAE,MAAM,+BAA+B,CAAC;AAGxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAC;AAGhF,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAElD;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,WAAW,CAAC,EAAE,aAAa,CAAC;IAC5B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;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,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC;IAChD;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC;CAC3D"}
@@ -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,56 @@
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 { PageBlockLinkType } from './page-block-link-type';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PageBlockLinkInputModel
17
+ */
18
+ export interface PageBlockLinkInputModel {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof PageBlockLinkInputModel
23
+ */
24
+ 'id'?: string | null;
25
+ /**
26
+ *
27
+ * @type {PageBlockLinkType}
28
+ * @memberof PageBlockLinkInputModel
29
+ */
30
+ 'linkType'?: PageBlockLinkType;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof PageBlockLinkInputModel
35
+ */
36
+ 'name'?: string | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof PageBlockLinkInputModel
41
+ */
42
+ 'url'?: string | null;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof PageBlockLinkInputModel
47
+ */
48
+ 'customStyle'?: string | null;
49
+ /**
50
+ *
51
+ * @type {number}
52
+ * @memberof PageBlockLinkInputModel
53
+ */
54
+ 'order'?: number;
55
+ }
56
+ //# sourceMappingURL=page-block-link-input-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-block-link-input-model.d.ts","sourceRoot":"","sources":["../../src/models/page-block-link-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;GAIG;AACH,MAAM,WAAW,uBAAuB;IACpC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;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,68 @@
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 { PageBlockLinkType } from './page-block-link-type';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PageBlockLinkModel
17
+ */
18
+ export interface PageBlockLinkModel {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof PageBlockLinkModel
23
+ */
24
+ 'id'?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof PageBlockLinkModel
29
+ */
30
+ 'languageCode'?: string | null;
31
+ /**
32
+ *
33
+ * @type {PageBlockLinkType}
34
+ * @memberof PageBlockLinkModel
35
+ */
36
+ 'linkType'?: PageBlockLinkType;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof PageBlockLinkModel
41
+ */
42
+ 'customStyle'?: string | null;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof PageBlockLinkModel
47
+ */
48
+ 'name'?: string | null;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof PageBlockLinkModel
53
+ */
54
+ 'url'?: string | null;
55
+ /**
56
+ *
57
+ * @type {boolean}
58
+ * @memberof PageBlockLinkModel
59
+ */
60
+ 'isConfirmed'?: boolean;
61
+ /**
62
+ *
63
+ * @type {number}
64
+ * @memberof PageBlockLinkModel
65
+ */
66
+ 'order'?: number;
67
+ }
68
+ //# sourceMappingURL=page-block-link-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-block-link-model.d.ts","sourceRoot":"","sources":["../../src/models/page-block-link-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,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,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,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,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 PageBlockLinkType: {
18
+ readonly Button: "Button";
19
+ readonly Anchor: "Anchor";
20
+ };
21
+ export type PageBlockLinkType = typeof PageBlockLinkType[keyof typeof PageBlockLinkType];
22
+ //# sourceMappingURL=page-block-link-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-block-link-type.d.ts","sourceRoot":"","sources":["../../src/models/page-block-link-type.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,iBAAiB;;;CAGpB,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,OAAO,iBAAiB,CAAC,MAAM,OAAO,iBAAiB,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.PageBlockLinkType = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.PageBlockLinkType = {
23
+ Button: 'Button',
24
+ Anchor: 'Anchor'
25
+ };
@@ -0,0 +1,49 @@
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 PageBlockLocationInputModel
16
+ */
17
+ export interface PageBlockLocationInputModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof PageBlockLocationInputModel
22
+ */
23
+ 'id'?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PageBlockLocationInputModel
28
+ */
29
+ 'vender'?: string | null;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof PageBlockLocationInputModel
34
+ */
35
+ 'rating'?: number;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof PageBlockLocationInputModel
40
+ */
41
+ 'placeId'?: string | null;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof PageBlockLocationInputModel
46
+ */
47
+ 'order'?: number;
48
+ }
49
+ //# sourceMappingURL=page-block-location-input-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-block-location-input-model.d.ts","sourceRoot":"","sources":["../../src/models/page-block-location-input-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2BAA2B;IACxC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;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,49 @@
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 PageBlockLocationModel
16
+ */
17
+ export interface PageBlockLocationModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof PageBlockLocationModel
22
+ */
23
+ 'id'?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof PageBlockLocationModel
28
+ */
29
+ 'vender'?: string | null;
30
+ /**
31
+ *
32
+ * @type {number}
33
+ * @memberof PageBlockLocationModel
34
+ */
35
+ 'rating'?: number;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof PageBlockLocationModel
40
+ */
41
+ 'placeId'?: string | null;
42
+ /**
43
+ *
44
+ * @type {number}
45
+ * @memberof PageBlockLocationModel
46
+ */
47
+ 'order'?: number;
48
+ }
49
+ //# sourceMappingURL=page-block-location-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-block-location-model.d.ts","sourceRoot":"","sources":["../../src/models/page-block-location-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACnC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;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,113 @@
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 { MediaModel } from './media-model';
13
+ import { PageBlockLinkModel } from './page-block-link-model';
14
+ import { PageBlockLocationModel } from './page-block-location-model';
15
+ import { PageBlockType } from './page-block-type';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface PageBlockModel
20
+ */
21
+ export interface PageBlockModel {
22
+ /**
23
+ *
24
+ * @type {string}
25
+ * @memberof PageBlockModel
26
+ */
27
+ 'id'?: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof PageBlockModel
32
+ */
33
+ 'languageCode'?: string | null;
34
+ /**
35
+ *
36
+ * @type {PageBlockType}
37
+ * @memberof PageBlockModel
38
+ */
39
+ 'blockType'?: PageBlockType;
40
+ /**
41
+ *
42
+ * @type {string}
43
+ * @memberof PageBlockModel
44
+ */
45
+ 'icon'?: string | null;
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof PageBlockModel
50
+ */
51
+ 'customStyle'?: string | null;
52
+ /**
53
+ *
54
+ * @type {number}
55
+ * @memberof PageBlockModel
56
+ */
57
+ 'order'?: number;
58
+ /**
59
+ *
60
+ * @type {string}
61
+ * @memberof PageBlockModel
62
+ */
63
+ 'name'?: string | null;
64
+ /**
65
+ *
66
+ * @type {string}
67
+ * @memberof PageBlockModel
68
+ */
69
+ 'subtitle'?: string | null;
70
+ /**
71
+ *
72
+ * @type {string}
73
+ * @memberof PageBlockModel
74
+ */
75
+ 'description'?: string | null;
76
+ /**
77
+ *
78
+ * @type {string}
79
+ * @memberof PageBlockModel
80
+ */
81
+ 'overview'?: string | null;
82
+ /**
83
+ *
84
+ * @type {string}
85
+ * @memberof PageBlockModel
86
+ */
87
+ 'content'?: string | null;
88
+ /**
89
+ *
90
+ * @type {boolean}
91
+ * @memberof PageBlockModel
92
+ */
93
+ 'isConfirmed'?: boolean;
94
+ /**
95
+ *
96
+ * @type {Array<MediaModel>}
97
+ * @memberof PageBlockModel
98
+ */
99
+ 'medias'?: Array<MediaModel> | null;
100
+ /**
101
+ *
102
+ * @type {Array<PageBlockLinkModel>}
103
+ * @memberof PageBlockModel
104
+ */
105
+ 'links'?: Array<PageBlockLinkModel> | null;
106
+ /**
107
+ *
108
+ * @type {Array<PageBlockLocationModel>}
109
+ * @memberof PageBlockModel
110
+ */
111
+ 'locations'?: Array<PageBlockLocationModel> | null;
112
+ }
113
+ //# sourceMappingURL=page-block-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-block-model.d.ts","sourceRoot":"","sources":["../../src/models/page-block-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAG3C,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAG7D,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAGrE,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAElD;;;;GAIG;AACH,MAAM,WAAW,cAAc;IAC3B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,aAAa,CAAC;IAC5B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;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,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC;IAC3C;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC;CACtD"}
@@ -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,29 @@
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 PageBlockType: {
18
+ readonly Title: "Title";
19
+ readonly Title1: "Title1";
20
+ readonly Title2: "Title2";
21
+ readonly Title3: "Title3";
22
+ readonly Title4: "Title4";
23
+ readonly About: "About";
24
+ readonly ListItem: "ListItem";
25
+ readonly Award: "Award";
26
+ readonly Press: "Press";
27
+ };
28
+ export type PageBlockType = typeof PageBlockType[keyof typeof PageBlockType];
29
+ //# sourceMappingURL=page-block-type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-block-type.d.ts","sourceRoot":"","sources":["../../src/models/page-block-type.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;CAUhB,CAAC;AAEX,MAAM,MAAM,aAAa,GAAG,OAAO,aAAa,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC"}
@@ -0,0 +1,32 @@
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.PageBlockType = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.PageBlockType = {
23
+ Title: 'Title',
24
+ Title1: 'Title1',
25
+ Title2: 'Title2',
26
+ Title3: 'Title3',
27
+ Title4: 'Title4',
28
+ About: 'About',
29
+ ListItem: 'ListItem',
30
+ Award: 'Award',
31
+ Press: 'Press'
32
+ };