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.
- package/lib/api/appointments-api.d.ts +46 -0
- package/lib/api/appointments-api.d.ts.map +1 -1
- package/lib/api/appointments-api.js +85 -0
- package/lib/api/hospitals-api.d.ts +109 -36
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +141 -38
- package/lib/api/web-apps-api.d.ts +46 -0
- package/lib/api/web-apps-api.d.ts.map +1 -1
- package/lib/api/web-apps-api.js +85 -0
- package/lib/models/application.d.ts +7 -0
- package/lib/models/application.d.ts.map +1 -1
- package/lib/models/appointment-status.d.ts +1 -0
- package/lib/models/appointment-status.d.ts.map +1 -1
- package/lib/models/appointment-status.js +2 -1
- package/lib/models/create-hospital-working-day-command.d.ts +6 -0
- package/lib/models/create-hospital-working-day-command.d.ts.map +1 -1
- package/lib/models/create-service-review-command.d.ts +6 -0
- package/lib/models/create-service-review-command.d.ts.map +1 -1
- package/lib/models/hospital-contact-item-model.d.ts +7 -0
- package/lib/models/hospital-contact-item-model.d.ts.map +1 -1
- package/lib/models/hospital-contact-model.d.ts +7 -0
- package/lib/models/hospital-contact-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +1 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +1 -0
- package/lib/models/privacy-settings.d.ts +25 -0
- package/lib/models/privacy-settings.d.ts.map +1 -0
- package/lib/models/privacy-settings.js +15 -0
- package/lib/models/service-review-item-model.d.ts +9 -3
- package/lib/models/service-review-item-model.d.ts.map +1 -1
- package/lib/models/service-review-model.d.ts +9 -3
- package/lib/models/service-review-model.d.ts.map +1 -1
- package/lib/models/update-hospital-working-day-command.d.ts +6 -0
- package/lib/models/update-hospital-working-day-command.d.ts.map +1 -1
- package/lib/models/update-service-review-command.d.ts +6 -0
- package/lib/models/update-service-review-command.d.ts.map +1 -1
- package/lib/models/voice.d.ts +18 -0
- package/lib/models/voice.d.ts.map +1 -1
- package/lib/models/working-day-item-model.d.ts +6 -0
- package/lib/models/working-day-item-model.d.ts.map +1 -1
- package/lib/models/working-day-model.d.ts +6 -0
- package/lib/models/working-day-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +1 -0
- package/src/api/appointments-api.ts +85 -0
- package/src/api/hospitals-api.ts +187 -61
- package/src/api/web-apps-api.ts +85 -0
- package/src/models/application.ts +9 -0
- package/src/models/appointment-status.ts +2 -1
- package/src/models/create-hospital-working-day-command.ts +6 -0
- package/src/models/create-service-review-command.ts +6 -0
- package/src/models/hospital-contact-item-model.ts +9 -0
- package/src/models/hospital-contact-model.ts +9 -0
- package/src/models/index.ts +1 -0
- package/src/models/privacy-settings.ts +30 -0
- package/src/models/service-review-item-model.ts +9 -3
- package/src/models/service-review-model.ts +9 -3
- package/src/models/update-hospital-working-day-command.ts +6 -0
- package/src/models/update-service-review-command.ts +6 -0
- package/src/models/voice.ts +18 -0
- package/src/models/working-day-item-model.ts +6 -0
- package/src/models/working-day-model.ts +6 -0
|
@@ -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
|
|
package/src/models/index.ts
CHANGED
|
@@ -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 {
|
|
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 {
|
|
142
|
+
* @type {AuditableEntityModel}
|
|
137
143
|
* @memberof ServiceReviewItemModel
|
|
138
144
|
*/
|
|
139
|
-
'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 {
|
|
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 {
|
|
142
|
+
* @type {AuditableEntityModel}
|
|
137
143
|
* @memberof ServiceReviewModel
|
|
138
144
|
*/
|
|
139
|
-
'auditableEntity'?:
|
|
145
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
140
146
|
/**
|
|
141
147
|
*
|
|
142
148
|
* @type {string}
|
|
@@ -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}
|
package/src/models/voice.ts
CHANGED
|
@@ -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
|
|