ch-admin-api-client-typescript 5.19.10 → 5.19.15

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 (53) hide show
  1. package/lib/api/appointments-api.d.ts +55 -0
  2. package/lib/api/appointments-api.d.ts.map +1 -1
  3. package/lib/api/appointments-api.js +91 -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/appointment-model.d.ts +14 -0
  8. package/lib/models/appointment-model.d.ts.map +1 -1
  9. package/lib/models/appointment-refund-bank-transfer-model.d.ts +43 -0
  10. package/lib/models/appointment-refund-bank-transfer-model.d.ts.map +1 -0
  11. package/lib/models/appointment-refund-bank-transfer-model.js +15 -0
  12. package/lib/models/appointment-refund-upi-model.d.ts +31 -0
  13. package/lib/models/appointment-refund-upi-model.d.ts.map +1 -0
  14. package/lib/models/appointment-refund-upi-model.js +15 -0
  15. package/lib/models/appointment-status.d.ts +1 -0
  16. package/lib/models/appointment-status.d.ts.map +1 -1
  17. package/lib/models/appointment-status.js +1 -0
  18. package/lib/models/create-notice-command.d.ts +62 -0
  19. package/lib/models/create-notice-command.d.ts.map +1 -0
  20. package/lib/models/create-notice-command.js +15 -0
  21. package/lib/models/index.d.ts +8 -0
  22. package/lib/models/index.d.ts.map +1 -1
  23. package/lib/models/index.js +8 -0
  24. package/lib/models/notice-item-model.d.ts +87 -0
  25. package/lib/models/notice-item-model.d.ts.map +1 -0
  26. package/lib/models/notice-item-model.js +15 -0
  27. package/lib/models/notice-model.d.ts +105 -0
  28. package/lib/models/notice-model.d.ts.map +1 -0
  29. package/lib/models/notice-model.js +15 -0
  30. package/lib/models/notice-status.d.ts +23 -0
  31. package/lib/models/notice-status.d.ts.map +1 -0
  32. package/lib/models/notice-status.js +26 -0
  33. package/lib/models/notices-model.d.ts +33 -0
  34. package/lib/models/notices-model.d.ts.map +1 -0
  35. package/lib/models/notices-model.js +15 -0
  36. package/lib/models/update-notice-command.d.ts +62 -0
  37. package/lib/models/update-notice-command.d.ts.map +1 -0
  38. package/lib/models/update-notice-command.js +15 -0
  39. package/package.json +1 -1
  40. package/src/.openapi-generator/FILES +8 -0
  41. package/src/api/appointments-api.ts +101 -0
  42. package/src/api/hospitals-api.ts +758 -4
  43. package/src/models/appointment-model.ts +18 -0
  44. package/src/models/appointment-refund-bank-transfer-model.ts +48 -0
  45. package/src/models/appointment-refund-upi-model.ts +36 -0
  46. package/src/models/appointment-status.ts +1 -0
  47. package/src/models/create-notice-command.ts +69 -0
  48. package/src/models/index.ts +8 -0
  49. package/src/models/notice-item-model.ts +96 -0
  50. package/src/models/notice-model.ts +114 -0
  51. package/src/models/notice-status.ts +32 -0
  52. package/src/models/notices-model.ts +42 -0
  53. package/src/models/update-notice-command.ts +69 -0
@@ -18,6 +18,12 @@
18
18
  import { AppointmentChangeLogModel } from './appointment-change-log-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
+ import { AppointmentRefundBankTransferModel } from './appointment-refund-bank-transfer-model';
22
+ // May contain unused imports in some cases
23
+ // @ts-ignore
24
+ import { AppointmentRefundUpiModel } from './appointment-refund-upi-model';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
21
27
  import { AppointmentStatus } from './appointment-status';
22
28
  // May contain unused imports in some cases
23
29
  // @ts-ignore
@@ -326,5 +332,17 @@ export interface AppointmentModel {
326
332
  * @memberof AppointmentModel
327
333
  */
328
334
  'payment'?: PaymentModel;
335
+ /**
336
+ *
337
+ * @type {AppointmentRefundBankTransferModel}
338
+ * @memberof AppointmentModel
339
+ */
340
+ 'refundBankTransfer'?: AppointmentRefundBankTransferModel;
341
+ /**
342
+ *
343
+ * @type {AppointmentRefundUpiModel}
344
+ * @memberof AppointmentModel
345
+ */
346
+ 'refundUpi'?: AppointmentRefundUpiModel;
329
347
  }
330
348
 
@@ -0,0 +1,48 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface AppointmentRefundBankTransferModel
21
+ */
22
+ export interface AppointmentRefundBankTransferModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof AppointmentRefundBankTransferModel
27
+ */
28
+ 'bank'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof AppointmentRefundBankTransferModel
33
+ */
34
+ 'accountNumber'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof AppointmentRefundBankTransferModel
39
+ */
40
+ 'depositor'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof AppointmentRefundBankTransferModel
45
+ */
46
+ 'swiftCode'?: string | null;
47
+ }
48
+
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface AppointmentRefundUpiModel
21
+ */
22
+ export interface AppointmentRefundUpiModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof AppointmentRefundUpiModel
27
+ */
28
+ 'upiId'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof AppointmentRefundUpiModel
33
+ */
34
+ 'name'?: string | null;
35
+ }
36
+
@@ -24,6 +24,7 @@ export const AppointmentStatus = {
24
24
  New: 'New',
25
25
  Rejected: 'Rejected',
26
26
  Approved: 'Approved',
27
+ RescheduleRequested: 'RescheduleRequested',
27
28
  Paid: 'Paid',
28
29
  Canceled: 'Canceled',
29
30
  RefundRequested: 'RefundRequested',
@@ -0,0 +1,69 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { NoticeStatus } from './notice-status';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface CreateNoticeCommand
24
+ */
25
+ export interface CreateNoticeCommand {
26
+ /**
27
+ *
28
+ * @type {NoticeStatus}
29
+ * @memberof CreateNoticeCommand
30
+ */
31
+ 'status'?: NoticeStatus;
32
+ /**
33
+ *
34
+ * @type {number}
35
+ * @memberof CreateNoticeCommand
36
+ */
37
+ 'order'?: number;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof CreateNoticeCommand
42
+ */
43
+ 'languageCode'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof CreateNoticeCommand
48
+ */
49
+ 'name'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof CreateNoticeCommand
54
+ */
55
+ 'url'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof CreateNoticeCommand
60
+ */
61
+ 'description'?: string | null;
62
+ /**
63
+ *
64
+ * @type {boolean}
65
+ * @memberof CreateNoticeCommand
66
+ */
67
+ 'isConfirmed'?: boolean;
68
+ }
69
+
@@ -20,6 +20,8 @@ export * from './appointment-item-model';
20
20
  export * from './appointment-model';
21
21
  export * from './appointment-option-input-model';
22
22
  export * from './appointment-option-model';
23
+ export * from './appointment-refund-bank-transfer-model';
24
+ export * from './appointment-refund-upi-model';
23
25
  export * from './appointment-statistics-model';
24
26
  export * from './appointment-status';
25
27
  export * from './appointment-timetable-model';
@@ -137,6 +139,7 @@ export * from './create-language-command';
137
139
  export * from './create-manager-affiliation-command';
138
140
  export * from './create-manager-command';
139
141
  export * from './create-media-command';
142
+ export * from './create-notice-command';
140
143
  export * from './create-patient-command';
141
144
  export * from './create-plan-command';
142
145
  export * from './create-plan-hospital-command';
@@ -304,6 +307,10 @@ export * from './message-type';
304
307
  export * from './messages';
305
308
  export * from './metadata';
306
309
  export * from './model-file';
310
+ export * from './notice-item-model';
311
+ export * from './notice-model';
312
+ export * from './notice-status';
313
+ export * from './notices-model';
307
314
  export * from './notification-code';
308
315
  export * from './notification-model';
309
316
  export * from './notifications-model';
@@ -486,6 +493,7 @@ export * from './update-landing-command';
486
493
  export * from './update-language-command';
487
494
  export * from './update-manager-command';
488
495
  export * from './update-media-command';
496
+ export * from './update-notice-command';
489
497
  export * from './update-number-command';
490
498
  export * from './update-patient-command';
491
499
  export * from './update-plan-command';
@@ -0,0 +1,96 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { NoticeStatus } from './notice-status';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface NoticeItemModel
27
+ */
28
+ export interface NoticeItemModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof NoticeItemModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof NoticeItemModel
39
+ */
40
+ 'hospitalId'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof NoticeItemModel
45
+ */
46
+ 'languageCode'?: string | null;
47
+ /**
48
+ *
49
+ * @type {NoticeStatus}
50
+ * @memberof NoticeItemModel
51
+ */
52
+ 'status'?: NoticeStatus;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof NoticeItemModel
57
+ */
58
+ 'order'?: number;
59
+ /**
60
+ *
61
+ * @type {AuditableEntityModel}
62
+ * @memberof NoticeItemModel
63
+ */
64
+ 'auditableEntity'?: AuditableEntityModel;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof NoticeItemModel
69
+ */
70
+ 'hospitalName'?: string | null;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof NoticeItemModel
75
+ */
76
+ 'name'?: string | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof NoticeItemModel
81
+ */
82
+ 'slug'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof NoticeItemModel
87
+ */
88
+ 'url'?: string | null;
89
+ /**
90
+ *
91
+ * @type {boolean}
92
+ * @memberof NoticeItemModel
93
+ */
94
+ 'isConfirmed'?: boolean;
95
+ }
96
+
@@ -0,0 +1,114 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { NoticeStatus } from './notice-status';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface NoticeModel
27
+ */
28
+ export interface NoticeModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof NoticeModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof NoticeModel
39
+ */
40
+ 'hospitalId'?: string;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof NoticeModel
45
+ */
46
+ 'languageCode'?: string | null;
47
+ /**
48
+ *
49
+ * @type {NoticeStatus}
50
+ * @memberof NoticeModel
51
+ */
52
+ 'status'?: NoticeStatus;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof NoticeModel
57
+ */
58
+ 'order'?: number;
59
+ /**
60
+ *
61
+ * @type {AuditableEntityModel}
62
+ * @memberof NoticeModel
63
+ */
64
+ 'auditableEntity'?: AuditableEntityModel;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof NoticeModel
69
+ */
70
+ 'hospitalName'?: string | null;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof NoticeModel
75
+ */
76
+ 'name'?: string | null;
77
+ /**
78
+ *
79
+ * @type {string}
80
+ * @memberof NoticeModel
81
+ */
82
+ 'slug'?: string | null;
83
+ /**
84
+ *
85
+ * @type {string}
86
+ * @memberof NoticeModel
87
+ */
88
+ 'url'?: string | null;
89
+ /**
90
+ *
91
+ * @type {boolean}
92
+ * @memberof NoticeModel
93
+ */
94
+ 'isConfirmed'?: boolean;
95
+ /**
96
+ *
97
+ * @type {string}
98
+ * @memberof NoticeModel
99
+ */
100
+ 'description'?: string | null;
101
+ /**
102
+ *
103
+ * @type {string}
104
+ * @memberof NoticeModel
105
+ */
106
+ 'overview'?: string | null;
107
+ /**
108
+ *
109
+ * @type {string}
110
+ * @memberof NoticeModel
111
+ */
112
+ 'content'?: string | null;
113
+ }
114
+
@@ -0,0 +1,32 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+
23
+ export const NoticeStatus = {
24
+ Draft: 'Draft',
25
+ Active: 'Active',
26
+ Archived: 'Archived'
27
+ } as const;
28
+
29
+ export type NoticeStatus = typeof NoticeStatus[keyof typeof NoticeStatus];
30
+
31
+
32
+
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { NoticeItemModel } from './notice-item-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PagedListMetaData } from './paged-list-meta-data';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface NoticesModel
27
+ */
28
+ export interface NoticesModel {
29
+ /**
30
+ *
31
+ * @type {Array<NoticeItemModel>}
32
+ * @memberof NoticesModel
33
+ */
34
+ 'items'?: Array<NoticeItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof NoticesModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -0,0 +1,69 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Admin Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: hyounoosung@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { NoticeStatus } from './notice-status';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface UpdateNoticeCommand
24
+ */
25
+ export interface UpdateNoticeCommand {
26
+ /**
27
+ *
28
+ * @type {NoticeStatus}
29
+ * @memberof UpdateNoticeCommand
30
+ */
31
+ 'status'?: NoticeStatus;
32
+ /**
33
+ *
34
+ * @type {number}
35
+ * @memberof UpdateNoticeCommand
36
+ */
37
+ 'order'?: number | null;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof UpdateNoticeCommand
42
+ */
43
+ 'languageCode'?: string | null;
44
+ /**
45
+ *
46
+ * @type {string}
47
+ * @memberof UpdateNoticeCommand
48
+ */
49
+ 'name'?: string | null;
50
+ /**
51
+ *
52
+ * @type {string}
53
+ * @memberof UpdateNoticeCommand
54
+ */
55
+ 'url'?: string | null;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof UpdateNoticeCommand
60
+ */
61
+ 'description'?: string | null;
62
+ /**
63
+ *
64
+ * @type {boolean}
65
+ * @memberof UpdateNoticeCommand
66
+ */
67
+ 'isConfirmed'?: boolean;
68
+ }
69
+