ch-admin-api-client-typescript 5.19.8 → 5.19.13

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 (59) hide show
  1. package/lib/api/hospital-branches-api.d.ts +185 -0
  2. package/lib/api/hospital-branches-api.d.ts.map +1 -1
  3. package/lib/api/hospital-branches-api.js +283 -0
  4. package/lib/api/hospitals-api.d.ts +434 -0
  5. package/lib/api/hospitals-api.d.ts.map +1 -1
  6. package/lib/api/hospitals-api.js +612 -0
  7. package/lib/models/add-hospital-into-branch-command.d.ts +31 -0
  8. package/lib/models/add-hospital-into-branch-command.d.ts.map +1 -0
  9. package/lib/models/add-hospital-into-branch-command.js +15 -0
  10. package/lib/models/create-hospital-branch-command.d.ts +0 -6
  11. package/lib/models/create-hospital-branch-command.d.ts.map +1 -1
  12. package/lib/models/create-notice-command.d.ts +62 -0
  13. package/lib/models/create-notice-command.d.ts.map +1 -0
  14. package/lib/models/create-notice-command.js +15 -0
  15. package/lib/models/hospital-branch-item-mapping-model.d.ts +38 -0
  16. package/lib/models/hospital-branch-item-mapping-model.d.ts.map +1 -0
  17. package/lib/models/hospital-branch-item-mapping-model.js +15 -0
  18. package/lib/models/hospital-branch-item-model.d.ts +0 -12
  19. package/lib/models/hospital-branch-item-model.d.ts.map +1 -1
  20. package/lib/models/hospital-branch-model.d.ts +6 -11
  21. package/lib/models/hospital-branch-model.d.ts.map +1 -1
  22. package/lib/models/index.d.ts +9 -0
  23. package/lib/models/index.d.ts.map +1 -1
  24. package/lib/models/index.js +9 -0
  25. package/lib/models/notice-item-model.d.ts +87 -0
  26. package/lib/models/notice-item-model.d.ts.map +1 -0
  27. package/lib/models/notice-item-model.js +15 -0
  28. package/lib/models/notice-model.d.ts +105 -0
  29. package/lib/models/notice-model.d.ts.map +1 -0
  30. package/lib/models/notice-model.js +15 -0
  31. package/lib/models/notice-status.d.ts +23 -0
  32. package/lib/models/notice-status.d.ts.map +1 -0
  33. package/lib/models/notice-status.js +26 -0
  34. package/lib/models/notices-model.d.ts +33 -0
  35. package/lib/models/notices-model.d.ts.map +1 -0
  36. package/lib/models/notices-model.js +15 -0
  37. package/lib/models/update-hospital-branch-item-command.d.ts +31 -0
  38. package/lib/models/update-hospital-branch-item-command.d.ts.map +1 -0
  39. package/lib/models/update-hospital-branch-item-command.js +15 -0
  40. package/lib/models/update-notice-command.d.ts +62 -0
  41. package/lib/models/update-notice-command.d.ts.map +1 -0
  42. package/lib/models/update-notice-command.js +15 -0
  43. package/package.json +1 -1
  44. package/src/.openapi-generator/FILES +9 -0
  45. package/src/api/hospital-branches-api.ts +324 -0
  46. package/src/api/hospitals-api.ts +758 -4
  47. package/src/models/add-hospital-into-branch-command.ts +36 -0
  48. package/src/models/create-hospital-branch-command.ts +0 -6
  49. package/src/models/create-notice-command.ts +69 -0
  50. package/src/models/hospital-branch-item-mapping-model.ts +45 -0
  51. package/src/models/hospital-branch-item-model.ts +0 -12
  52. package/src/models/hospital-branch-model.ts +8 -11
  53. package/src/models/index.ts +9 -0
  54. package/src/models/notice-item-model.ts +96 -0
  55. package/src/models/notice-model.ts +114 -0
  56. package/src/models/notice-status.ts +32 -0
  57. package/src/models/notices-model.ts +42 -0
  58. package/src/models/update-hospital-branch-item-command.ts +36 -0
  59. package/src/models/update-notice-command.ts +69 -0
@@ -0,0 +1,105 @@
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 { NoticeStatus } from './notice-status';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface NoticeModel
18
+ */
19
+ export interface NoticeModel {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof NoticeModel
24
+ */
25
+ 'id'?: string;
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof NoticeModel
30
+ */
31
+ 'hospitalId'?: string;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof NoticeModel
36
+ */
37
+ 'languageCode'?: string | null;
38
+ /**
39
+ *
40
+ * @type {NoticeStatus}
41
+ * @memberof NoticeModel
42
+ */
43
+ 'status'?: NoticeStatus;
44
+ /**
45
+ *
46
+ * @type {number}
47
+ * @memberof NoticeModel
48
+ */
49
+ 'order'?: number;
50
+ /**
51
+ *
52
+ * @type {AuditableEntityModel}
53
+ * @memberof NoticeModel
54
+ */
55
+ 'auditableEntity'?: AuditableEntityModel;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof NoticeModel
60
+ */
61
+ 'hospitalName'?: string | null;
62
+ /**
63
+ *
64
+ * @type {string}
65
+ * @memberof NoticeModel
66
+ */
67
+ 'name'?: string | null;
68
+ /**
69
+ *
70
+ * @type {string}
71
+ * @memberof NoticeModel
72
+ */
73
+ 'slug'?: string | null;
74
+ /**
75
+ *
76
+ * @type {string}
77
+ * @memberof NoticeModel
78
+ */
79
+ 'url'?: string | null;
80
+ /**
81
+ *
82
+ * @type {boolean}
83
+ * @memberof NoticeModel
84
+ */
85
+ 'isConfirmed'?: boolean;
86
+ /**
87
+ *
88
+ * @type {string}
89
+ * @memberof NoticeModel
90
+ */
91
+ 'description'?: string | null;
92
+ /**
93
+ *
94
+ * @type {string}
95
+ * @memberof NoticeModel
96
+ */
97
+ 'overview'?: string | null;
98
+ /**
99
+ *
100
+ * @type {string}
101
+ * @memberof NoticeModel
102
+ */
103
+ 'content'?: string | null;
104
+ }
105
+ //# sourceMappingURL=notice-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notice-model.d.ts","sourceRoot":"","sources":["../../src/models/notice-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,WAAW;IACxB;;;;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,YAAY,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;IACzC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;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,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 NoticeStatus: {
18
+ readonly Draft: "Draft";
19
+ readonly Active: "Active";
20
+ readonly Archived: "Archived";
21
+ };
22
+ export type NoticeStatus = typeof NoticeStatus[keyof typeof NoticeStatus];
23
+ //# sourceMappingURL=notice-status.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notice-status.d.ts","sourceRoot":"","sources":["../../src/models/notice-status.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,YAAY;;;;CAIf,CAAC;AAEX,MAAM,MAAM,YAAY,GAAG,OAAO,YAAY,CAAC,MAAM,OAAO,YAAY,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.NoticeStatus = void 0;
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+ exports.NoticeStatus = {
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 { NoticeItemModel } from './notice-item-model';
13
+ import { PagedListMetaData } from './paged-list-meta-data';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface NoticesModel
18
+ */
19
+ export interface NoticesModel {
20
+ /**
21
+ *
22
+ * @type {Array<NoticeItemModel>}
23
+ * @memberof NoticesModel
24
+ */
25
+ 'items'?: Array<NoticeItemModel> | null;
26
+ /**
27
+ *
28
+ * @type {PagedListMetaData}
29
+ * @memberof NoticesModel
30
+ */
31
+ 'metaData'?: PagedListMetaData;
32
+ }
33
+ //# sourceMappingURL=notices-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notices-model.d.ts","sourceRoot":"","sources":["../../src/models/notices-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAGtD,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC;IACxC;;;;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,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 UpdateHospitalBranchItemCommand
16
+ */
17
+ export interface UpdateHospitalBranchItemCommand {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UpdateHospitalBranchItemCommand
22
+ */
23
+ 'languageCode'?: string | null;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof UpdateHospitalBranchItemCommand
28
+ */
29
+ 'order'?: number;
30
+ }
31
+ //# sourceMappingURL=update-hospital-branch-item-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-hospital-branch-item-command.d.ts","sourceRoot":"","sources":["../../src/models/update-hospital-branch-item-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;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,62 @@
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 { NoticeStatus } from './notice-status';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateNoticeCommand
17
+ */
18
+ export interface UpdateNoticeCommand {
19
+ /**
20
+ *
21
+ * @type {NoticeStatus}
22
+ * @memberof UpdateNoticeCommand
23
+ */
24
+ 'status'?: NoticeStatus;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof UpdateNoticeCommand
29
+ */
30
+ 'order'?: number | null;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof UpdateNoticeCommand
35
+ */
36
+ 'languageCode'?: string | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof UpdateNoticeCommand
41
+ */
42
+ 'name'?: string | null;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof UpdateNoticeCommand
47
+ */
48
+ 'url'?: string | null;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof UpdateNoticeCommand
53
+ */
54
+ 'description'?: string | null;
55
+ /**
56
+ *
57
+ * @type {boolean}
58
+ * @memberof UpdateNoticeCommand
59
+ */
60
+ 'isConfirmed'?: boolean;
61
+ }
62
+ //# sourceMappingURL=update-notice-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-notice-command.d.ts","sourceRoot":"","sources":["../../src/models/update-notice-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,YAAY,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,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,aAAa,CAAC,EAAE,OAAO,CAAC;CAC3B"}
@@ -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 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-admin-api-client-typescript",
3
- "version": "5.19.8",
3
+ "version": "5.19.13",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital admin",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -66,6 +66,7 @@ models/account-settings-result.ts
66
66
  models/accreditation-item-model.ts
67
67
  models/accreditation-model.ts
68
68
  models/accreditations-model.ts
69
+ models/add-hospital-into-branch-command.ts
69
70
  models/admin-message-model.ts
70
71
  models/app-version-item-model.ts
71
72
  models/app-version-model.ts
@@ -197,6 +198,7 @@ models/create-language-command.ts
197
198
  models/create-manager-affiliation-command.ts
198
199
  models/create-manager-command.ts
199
200
  models/create-media-command.ts
201
+ models/create-notice-command.ts
200
202
  models/create-patient-command.ts
201
203
  models/create-plan-command.ts
202
204
  models/create-plan-hospital-command.ts
@@ -287,6 +289,7 @@ models/header-navigation-item-model.ts
287
289
  models/hospital-accreditation-item-model.ts
288
290
  models/hospital-accreditation-model.ts
289
291
  models/hospital-accreditations-model.ts
292
+ models/hospital-branch-item-mapping-model.ts
290
293
  models/hospital-branch-item-model.ts
291
294
  models/hospital-branch-model.ts
292
295
  models/hospital-branches-model.ts
@@ -364,6 +367,10 @@ models/message-type.ts
364
367
  models/messages.ts
365
368
  models/metadata.ts
366
369
  models/model-file.ts
370
+ models/notice-item-model.ts
371
+ models/notice-model.ts
372
+ models/notice-status.ts
373
+ models/notices-model.ts
367
374
  models/notification-code.ts
368
375
  models/notification-model.ts
369
376
  models/notifications-model.ts
@@ -531,6 +538,7 @@ models/update-faq-command.ts
531
538
  models/update-grade-command.ts
532
539
  models/update-hospital-bank-account-info-command.ts
533
540
  models/update-hospital-branch-command.ts
541
+ models/update-hospital-branch-item-command.ts
534
542
  models/update-hospital-command.ts
535
543
  models/update-hospital-contact-command.ts
536
544
  models/update-hospital-equipment-command.ts
@@ -545,6 +553,7 @@ models/update-landing-command.ts
545
553
  models/update-language-command.ts
546
554
  models/update-manager-command.ts
547
555
  models/update-media-command.ts
556
+ models/update-notice-command.ts
548
557
  models/update-number-command.ts
549
558
  models/update-patient-command.ts
550
559
  models/update-plan-command.ts