ch-admin-api-client-typescript 5.19.50 → 5.19.58

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 (62) hide show
  1. package/lib/api/appointments-api.d.ts +46 -0
  2. package/lib/api/appointments-api.d.ts.map +1 -1
  3. package/lib/api/appointments-api.js +85 -0
  4. package/lib/api/hospitals-api.d.ts +109 -36
  5. package/lib/api/hospitals-api.d.ts.map +1 -1
  6. package/lib/api/hospitals-api.js +141 -38
  7. package/lib/api/web-apps-api.d.ts +46 -0
  8. package/lib/api/web-apps-api.d.ts.map +1 -1
  9. package/lib/api/web-apps-api.js +85 -0
  10. package/lib/models/application.d.ts +7 -0
  11. package/lib/models/application.d.ts.map +1 -1
  12. package/lib/models/appointment-status.d.ts +1 -0
  13. package/lib/models/appointment-status.d.ts.map +1 -1
  14. package/lib/models/appointment-status.js +2 -1
  15. package/lib/models/create-hospital-working-day-command.d.ts +6 -0
  16. package/lib/models/create-hospital-working-day-command.d.ts.map +1 -1
  17. package/lib/models/create-service-review-command.d.ts +6 -0
  18. package/lib/models/create-service-review-command.d.ts.map +1 -1
  19. package/lib/models/hospital-contact-item-model.d.ts +7 -0
  20. package/lib/models/hospital-contact-item-model.d.ts.map +1 -1
  21. package/lib/models/hospital-contact-model.d.ts +7 -0
  22. package/lib/models/hospital-contact-model.d.ts.map +1 -1
  23. package/lib/models/index.d.ts +1 -0
  24. package/lib/models/index.d.ts.map +1 -1
  25. package/lib/models/index.js +1 -0
  26. package/lib/models/privacy-settings.d.ts +25 -0
  27. package/lib/models/privacy-settings.d.ts.map +1 -0
  28. package/lib/models/privacy-settings.js +15 -0
  29. package/lib/models/service-review-item-model.d.ts +9 -3
  30. package/lib/models/service-review-item-model.d.ts.map +1 -1
  31. package/lib/models/service-review-model.d.ts +9 -3
  32. package/lib/models/service-review-model.d.ts.map +1 -1
  33. package/lib/models/update-hospital-working-day-command.d.ts +6 -0
  34. package/lib/models/update-hospital-working-day-command.d.ts.map +1 -1
  35. package/lib/models/update-service-review-command.d.ts +6 -0
  36. package/lib/models/update-service-review-command.d.ts.map +1 -1
  37. package/lib/models/voice.d.ts +18 -0
  38. package/lib/models/voice.d.ts.map +1 -1
  39. package/lib/models/working-day-item-model.d.ts +6 -0
  40. package/lib/models/working-day-item-model.d.ts.map +1 -1
  41. package/lib/models/working-day-model.d.ts +6 -0
  42. package/lib/models/working-day-model.d.ts.map +1 -1
  43. package/package.json +1 -1
  44. package/src/.openapi-generator/FILES +1 -0
  45. package/src/api/appointments-api.ts +85 -0
  46. package/src/api/hospitals-api.ts +187 -61
  47. package/src/api/web-apps-api.ts +85 -0
  48. package/src/models/application.ts +9 -0
  49. package/src/models/appointment-status.ts +2 -1
  50. package/src/models/create-hospital-working-day-command.ts +6 -0
  51. package/src/models/create-service-review-command.ts +6 -0
  52. package/src/models/hospital-contact-item-model.ts +9 -0
  53. package/src/models/hospital-contact-model.ts +9 -0
  54. package/src/models/index.ts +1 -0
  55. package/src/models/privacy-settings.ts +30 -0
  56. package/src/models/service-review-item-model.ts +9 -3
  57. package/src/models/service-review-model.ts +9 -3
  58. package/src/models/update-hospital-working-day-command.ts +6 -0
  59. package/src/models/update-service-review-command.ts +6 -0
  60. package/src/models/voice.ts +18 -0
  61. package/src/models/working-day-item-model.ts +6 -0
  62. package/src/models/working-day-model.ts +6 -0
@@ -44,5 +44,11 @@ export interface CreateHospitalWorkingDayCommand {
44
44
  * @memberof CreateHospitalWorkingDayCommand
45
45
  */
46
46
  'checkHoliday'?: boolean;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof CreateHospitalWorkingDayCommand
51
+ */
52
+ 'order'?: number;
47
53
  }
48
54
 
@@ -77,6 +77,12 @@ export interface CreateServiceReviewCommand {
77
77
  * @memberof CreateServiceReviewCommand
78
78
  */
79
79
  'rate'?: number;
80
+ /**
81
+ *
82
+ * @type {Date}
83
+ * @memberof CreateServiceReviewCommand
84
+ */
85
+ 'surgeryDate'?: Date;
80
86
  /**
81
87
  *
82
88
  * @type {ReviewType}
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import { ContactType } from './contact-type';
@@ -83,5 +86,11 @@ export interface HospitalContactItemModel {
83
86
  * @memberof HospitalContactItemModel
84
87
  */
85
88
  'languageLocalizedName'?: string | null;
89
+ /**
90
+ *
91
+ * @type {AuditableEntityModel}
92
+ * @memberof HospitalContactItemModel
93
+ */
94
+ 'auditableEntity'?: AuditableEntityModel;
86
95
  }
87
96
 
@@ -13,6 +13,9 @@
13
13
  */
14
14
 
15
15
 
16
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
16
19
  // May contain unused imports in some cases
17
20
  // @ts-ignore
18
21
  import { ContactType } from './contact-type';
@@ -83,5 +86,11 @@ export interface HospitalContactModel {
83
86
  * @memberof HospitalContactModel
84
87
  */
85
88
  'languageLocalizedName'?: string | null;
89
+ /**
90
+ *
91
+ * @type {AuditableEntityModel}
92
+ * @memberof HospitalContactModel
93
+ */
94
+ 'auditableEntity'?: AuditableEntityModel;
86
95
  }
87
96
 
@@ -340,6 +340,7 @@ export * from './policies-model';
340
340
  export * from './policy-item-model';
341
341
  export * from './policy-model';
342
342
  export * from './primary-account';
343
+ export * from './privacy-settings';
343
344
  export * from './problem-details';
344
345
  export * from './procedure';
345
346
  export * from './recurring-interval';
@@ -0,0 +1,30 @@
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 PrivacySettings
21
+ */
22
+ export interface PrivacySettings {
23
+ /**
24
+ *
25
+ * @type {boolean}
26
+ * @memberof PrivacySettings
27
+ */
28
+ 'improveAi'?: boolean;
29
+ }
30
+
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { MediaModel } from './media-model';
@@ -119,6 +119,12 @@ export interface ServiceReviewItemModel {
119
119
  * @memberof ServiceReviewItemModel
120
120
  */
121
121
  'rate'?: number;
122
+ /**
123
+ *
124
+ * @type {Date}
125
+ * @memberof ServiceReviewItemModel
126
+ */
127
+ 'surgeryDate'?: Date | null;
122
128
  /**
123
129
  *
124
130
  * @type {ReviewType}
@@ -133,9 +139,9 @@ export interface ServiceReviewItemModel {
133
139
  'medias'?: Array<MediaModel> | null;
134
140
  /**
135
141
  *
136
- * @type {AuditableEntity}
142
+ * @type {AuditableEntityModel}
137
143
  * @memberof ServiceReviewItemModel
138
144
  */
139
- 'auditableEntity'?: AuditableEntity;
145
+ 'auditableEntity'?: AuditableEntityModel;
140
146
  }
141
147
 
@@ -15,7 +15,7 @@
15
15
 
16
16
  // May contain unused imports in some cases
17
17
  // @ts-ignore
18
- import { AuditableEntity } from './auditable-entity';
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import { MediaModel } from './media-model';
@@ -119,6 +119,12 @@ export interface ServiceReviewModel {
119
119
  * @memberof ServiceReviewModel
120
120
  */
121
121
  'rate'?: number;
122
+ /**
123
+ *
124
+ * @type {Date}
125
+ * @memberof ServiceReviewModel
126
+ */
127
+ 'surgeryDate'?: Date | null;
122
128
  /**
123
129
  *
124
130
  * @type {ReviewType}
@@ -133,10 +139,10 @@ export interface ServiceReviewModel {
133
139
  'medias'?: Array<MediaModel> | null;
134
140
  /**
135
141
  *
136
- * @type {AuditableEntity}
142
+ * @type {AuditableEntityModel}
137
143
  * @memberof ServiceReviewModel
138
144
  */
139
- 'auditableEntity'?: AuditableEntity;
145
+ 'auditableEntity'?: AuditableEntityModel;
140
146
  /**
141
147
  *
142
148
  * @type {string}
@@ -44,5 +44,11 @@ export interface UpdateHospitalWorkingDayCommand {
44
44
  * @memberof UpdateHospitalWorkingDayCommand
45
45
  */
46
46
  'checkHoliday'?: boolean;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof UpdateHospitalWorkingDayCommand
51
+ */
52
+ 'order'?: number;
47
53
  }
48
54
 
@@ -68,6 +68,12 @@ export interface UpdateServiceReviewCommand {
68
68
  * @memberof UpdateServiceReviewCommand
69
69
  */
70
70
  'rate'?: number | null;
71
+ /**
72
+ *
73
+ * @type {Date}
74
+ * @memberof UpdateServiceReviewCommand
75
+ */
76
+ 'surgeryDate'?: Date | null;
71
77
  /**
72
78
  *
73
79
  * @type {boolean}
@@ -29,5 +29,23 @@ export interface Voice {
29
29
  * @memberof Voice
30
30
  */
31
31
  'webhooks'?: { [key: string]: Webhook; } | null;
32
+ /**
33
+ *
34
+ * @type {number}
35
+ * @memberof Voice
36
+ */
37
+ 'conversationsTimeToLive'?: number;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof Voice
42
+ */
43
+ 'region'?: string | null;
44
+ /**
45
+ *
46
+ * @type {boolean}
47
+ * @memberof Voice
48
+ */
49
+ 'signedCallbacks'?: boolean;
32
50
  }
33
51
 
@@ -50,5 +50,11 @@ export interface WorkingDayItemModel {
50
50
  * @memberof WorkingDayItemModel
51
51
  */
52
52
  'checkHoliday'?: boolean;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof WorkingDayItemModel
57
+ */
58
+ 'order'?: number;
53
59
  }
54
60
 
@@ -50,5 +50,11 @@ export interface WorkingDayModel {
50
50
  * @memberof WorkingDayModel
51
51
  */
52
52
  'checkHoliday'?: boolean;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof WorkingDayModel
57
+ */
58
+ 'order'?: number;
53
59
  }
54
60