ch-admin-api-client-typescript 5.1.8 → 5.2.0
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/contributors-api.d.ts +3 -12
- package/lib/api/contributors-api.d.ts.map +1 -1
- package/lib/api/contributors-api.js +6 -12
- package/lib/api/grades-api.d.ts +339 -0
- package/lib/api/grades-api.d.ts.map +1 -0
- package/lib/api/grades-api.js +600 -0
- package/lib/api/hospitals-api.d.ts +333 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +491 -0
- package/lib/api/survey-results-api.d.ts +12 -3
- package/lib/api/survey-results-api.d.ts.map +1 -1
- package/lib/api/survey-results-api.js +12 -6
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/create-grade-command.d.ts +44 -0
- package/lib/models/create-grade-command.d.ts.map +1 -0
- package/lib/models/create-hospital-command.d.ts +6 -0
- package/lib/models/create-hospital-command.d.ts.map +1 -1
- package/lib/models/create-hospital-contact-command.d.ts +55 -0
- package/lib/models/create-hospital-contact-command.d.ts.map +1 -0
- package/lib/models/create-hospital-contact-command.js +15 -0
- package/lib/models/create-survey-form-command.d.ts +6 -0
- package/lib/models/create-survey-form-command.d.ts.map +1 -1
- package/lib/models/grade-item-model.d.ts +57 -0
- package/lib/models/grade-item-model.d.ts.map +1 -0
- package/lib/models/grade-item-model.js +15 -0
- package/lib/models/grade-model.d.ts +57 -0
- package/lib/models/grade-model.d.ts.map +1 -0
- package/lib/models/grade-model.js +15 -0
- package/lib/models/grade-targets.d.ts +22 -0
- package/lib/models/grade-targets.d.ts.map +1 -0
- package/lib/models/grade-targets.js +25 -0
- package/lib/models/grades-model.d.ts +33 -0
- package/lib/models/grades-model.d.ts.map +1 -0
- package/lib/models/grades-model.js +15 -0
- package/lib/models/{survey-result-item-model.d.ts → hospital-contact-item-model.d.ts} +18 -25
- package/lib/models/hospital-contact-item-model.d.ts.map +1 -0
- package/lib/models/hospital-contact-item-model.js +15 -0
- package/lib/models/hospital-contact-model.d.ts +67 -0
- package/lib/models/hospital-contact-model.d.ts.map +1 -0
- package/lib/models/hospital-contact-model.js +15 -0
- package/lib/models/hospital-contacts-model.d.ts +33 -0
- package/lib/models/hospital-contacts-model.d.ts.map +1 -0
- package/lib/models/hospital-contacts-model.js +15 -0
- package/lib/models/hospital-item-model.d.ts +13 -0
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +13 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/index.d.ts +11 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +11 -1
- package/lib/models/survey-form-item-model.d.ts +6 -0
- package/lib/models/survey-form-item-model.d.ts.map +1 -1
- package/lib/models/survey-form-model.d.ts +6 -0
- package/lib/models/survey-form-model.d.ts.map +1 -1
- package/lib/models/survey-results-model.d.ts +3 -3
- package/lib/models/survey-results-model.d.ts.map +1 -1
- package/lib/models/update-grade-command.d.ts +37 -0
- package/lib/models/update-grade-command.d.ts.map +1 -0
- package/lib/models/update-grade-command.js +15 -0
- package/lib/models/update-hospital-command.d.ts +6 -0
- package/lib/models/update-hospital-command.d.ts.map +1 -1
- package/lib/models/update-hospital-contact-command.d.ts +55 -0
- package/lib/models/update-hospital-contact-command.d.ts.map +1 -0
- package/lib/models/update-hospital-contact-command.js +15 -0
- package/lib/models/update-survey-form-command.d.ts +6 -0
- package/lib/models/update-survey-form-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +12 -1
- package/src/api/contributors-api.ts +6 -20
- package/src/api/grades-api.ts +595 -0
- package/src/api/hospitals-api.ts +584 -0
- package/src/api/survey-results-api.ts +20 -6
- package/src/api.ts +1 -0
- package/src/models/create-grade-command.ts +51 -0
- package/src/models/create-hospital-command.ts +6 -0
- package/src/models/create-hospital-contact-command.ts +60 -0
- package/src/models/create-survey-form-command.ts +6 -0
- package/src/models/grade-item-model.ts +66 -0
- package/src/models/grade-model.ts +66 -0
- package/src/models/grade-targets.ts +31 -0
- package/src/models/grades-model.ts +42 -0
- package/src/models/{survey-result-item-model.ts → hospital-contact-item-model.ts} +17 -26
- package/src/models/hospital-contact-model.ts +72 -0
- package/src/models/hospital-contacts-model.ts +42 -0
- package/src/models/hospital-item-model.ts +15 -0
- package/src/models/hospital-model.ts +15 -0
- package/src/models/index.ts +11 -1
- package/src/models/survey-form-item-model.ts +6 -0
- package/src/models/survey-form-model.ts +6 -0
- package/src/models/survey-results-model.ts +3 -3
- package/src/models/update-grade-command.ts +42 -0
- package/src/models/update-hospital-command.ts +6 -0
- package/src/models/update-hospital-contact-command.ts +60 -0
- package/src/models/update-survey-form-command.ts +6 -0
- package/lib/models/survey-result-item-model.d.ts.map +0 -1
- /package/lib/models/{survey-result-item-model.js → create-grade-command.js} +0 -0
|
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
|
|
|
21
21
|
import { AuditableEntity } from './auditable-entity';
|
|
22
22
|
// May contain unused imports in some cases
|
|
23
23
|
// @ts-ignore
|
|
24
|
+
import { GradeModel } from './grade-model';
|
|
25
|
+
// May contain unused imports in some cases
|
|
26
|
+
// @ts-ignore
|
|
24
27
|
import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
|
|
25
28
|
// May contain unused imports in some cases
|
|
26
29
|
// @ts-ignore
|
|
@@ -149,6 +152,18 @@ export interface HospitalModel {
|
|
|
149
152
|
* @memberof HospitalModel
|
|
150
153
|
*/
|
|
151
154
|
'appointmentOption'?: AppointmentOptionModel;
|
|
155
|
+
/**
|
|
156
|
+
*
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof HospitalModel
|
|
159
|
+
*/
|
|
160
|
+
'gradeId'?: string | null;
|
|
161
|
+
/**
|
|
162
|
+
*
|
|
163
|
+
* @type {GradeModel}
|
|
164
|
+
* @memberof HospitalModel
|
|
165
|
+
*/
|
|
166
|
+
'grade'?: GradeModel;
|
|
152
167
|
/**
|
|
153
168
|
*
|
|
154
169
|
* @type {AuditableEntity}
|
package/src/models/index.ts
CHANGED
|
@@ -105,9 +105,11 @@ export * from './create-doctor-specialty-command';
|
|
|
105
105
|
export * from './create-faq-category-command';
|
|
106
106
|
export * from './create-faq-command';
|
|
107
107
|
export * from './create-faq-tag-command';
|
|
108
|
+
export * from './create-grade-command';
|
|
108
109
|
export * from './create-hospital-accreditation-command';
|
|
109
110
|
export * from './create-hospital-command';
|
|
110
111
|
export * from './create-hospital-consultation-timetable-command';
|
|
112
|
+
export * from './create-hospital-contact-command';
|
|
111
113
|
export * from './create-hospital-equipment-command';
|
|
112
114
|
export * from './create-hospital-evaluation-command';
|
|
113
115
|
export * from './create-hospital-language-command';
|
|
@@ -178,6 +180,10 @@ export * from './faq-tag-model';
|
|
|
178
180
|
export * from './faq-tags-model';
|
|
179
181
|
export * from './faqs-model';
|
|
180
182
|
export * from './gender';
|
|
183
|
+
export * from './grade-item-model';
|
|
184
|
+
export * from './grade-model';
|
|
185
|
+
export * from './grade-targets';
|
|
186
|
+
export * from './grades-model';
|
|
181
187
|
export * from './group-channel';
|
|
182
188
|
export * from './group-channel-list';
|
|
183
189
|
export * from './header-navigation-item-model';
|
|
@@ -191,6 +197,9 @@ export * from './hospital-consultation-timetable-override-item-model';
|
|
|
191
197
|
export * from './hospital-consultation-timetable-override-model';
|
|
192
198
|
export * from './hospital-consultation-timetable-overrides-model';
|
|
193
199
|
export * from './hospital-consultation-timetables-model';
|
|
200
|
+
export * from './hospital-contact-item-model';
|
|
201
|
+
export * from './hospital-contact-model';
|
|
202
|
+
export * from './hospital-contacts-model';
|
|
194
203
|
export * from './hospital-equipment-item-model';
|
|
195
204
|
export * from './hospital-equipment-model';
|
|
196
205
|
export * from './hospital-equipments-model';
|
|
@@ -320,7 +329,6 @@ export * from './survey-form-status';
|
|
|
320
329
|
export * from './survey-forms-model';
|
|
321
330
|
export * from './survey-result-element-model';
|
|
322
331
|
export * from './survey-result-element-value-model';
|
|
323
|
-
export * from './survey-result-item-model';
|
|
324
332
|
export * from './survey-result-model';
|
|
325
333
|
export * from './survey-result-user-model';
|
|
326
334
|
export * from './survey-results-model';
|
|
@@ -359,8 +367,10 @@ export * from './update-doctor-portfolio-command';
|
|
|
359
367
|
export * from './update-doctor-specialty-command';
|
|
360
368
|
export * from './update-faq-category-command';
|
|
361
369
|
export * from './update-faq-command';
|
|
370
|
+
export * from './update-grade-command';
|
|
362
371
|
export * from './update-hospital-command';
|
|
363
372
|
export * from './update-hospital-consultation-timetable-command';
|
|
373
|
+
export * from './update-hospital-contact-command';
|
|
364
374
|
export * from './update-hospital-equipment-command';
|
|
365
375
|
export * from './update-hospital-language-command';
|
|
366
376
|
export * from './update-hospital-service-command';
|
|
@@ -50,6 +50,12 @@ export interface SurveyFormItemModel {
|
|
|
50
50
|
* @memberof SurveyFormItemModel
|
|
51
51
|
*/
|
|
52
52
|
'status'?: SurveyFormStatus;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof SurveyFormItemModel
|
|
57
|
+
*/
|
|
58
|
+
'urlAfterDone'?: string | null;
|
|
53
59
|
/**
|
|
54
60
|
*
|
|
55
61
|
* @type {string}
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
import { PagedListMetaData } from './paged-list-meta-data';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
-
import {
|
|
21
|
+
import { SurveyResultModel } from './survey-result-model';
|
|
22
22
|
|
|
23
23
|
/**
|
|
24
24
|
*
|
|
@@ -28,10 +28,10 @@ import { SurveyResultItemModel } from './survey-result-item-model';
|
|
|
28
28
|
export interface SurveyResultsModel {
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {Array<
|
|
31
|
+
* @type {Array<SurveyResultModel>}
|
|
32
32
|
* @memberof SurveyResultsModel
|
|
33
33
|
*/
|
|
34
|
-
'items'?: Array<
|
|
34
|
+
'items'?: Array<SurveyResultModel> | null;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
37
|
* @type {PagedListMetaData}
|
|
@@ -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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface UpdateGradeCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateGradeCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateGradeCommand
|
|
27
|
+
*/
|
|
28
|
+
'name'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof UpdateGradeCommand
|
|
33
|
+
*/
|
|
34
|
+
'searchBonus'?: number;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof UpdateGradeCommand
|
|
39
|
+
*/
|
|
40
|
+
'order'?: number;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -170,6 +170,12 @@ export interface UpdateHospitalCommand {
|
|
|
170
170
|
* @memberof UpdateHospitalCommand
|
|
171
171
|
*/
|
|
172
172
|
'confirmed'?: boolean;
|
|
173
|
+
/**
|
|
174
|
+
*
|
|
175
|
+
* @type {string}
|
|
176
|
+
* @memberof UpdateHospitalCommand
|
|
177
|
+
*/
|
|
178
|
+
'gradeId'?: string | null;
|
|
173
179
|
/**
|
|
174
180
|
*
|
|
175
181
|
* @type {AppointmentOptionModel}
|
|
@@ -0,0 +1,60 @@
|
|
|
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 UpdateHospitalContactCommand
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateHospitalContactCommand {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateHospitalContactCommand
|
|
27
|
+
*/
|
|
28
|
+
'name'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateHospitalContactCommand
|
|
33
|
+
*/
|
|
34
|
+
'tel'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateHospitalContactCommand
|
|
39
|
+
*/
|
|
40
|
+
'targetTel'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UpdateHospitalContactCommand
|
|
45
|
+
*/
|
|
46
|
+
'email'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof UpdateHospitalContactCommand
|
|
51
|
+
*/
|
|
52
|
+
'languageCode'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof UpdateHospitalContactCommand
|
|
57
|
+
*/
|
|
58
|
+
'order'?: number;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -38,6 +38,12 @@ export interface UpdateSurveyFormCommand {
|
|
|
38
38
|
* @memberof UpdateSurveyFormCommand
|
|
39
39
|
*/
|
|
40
40
|
'status'?: SurveyFormStatus;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UpdateSurveyFormCommand
|
|
45
|
+
*/
|
|
46
|
+
'urlAfterDone'?: string | null;
|
|
41
47
|
/**
|
|
42
48
|
*
|
|
43
49
|
* @type {string}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"survey-result-item-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-result-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,MAAM,CAAC,EAAE,qBAAqB,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,CAAC;CACxB"}
|
|
File without changes
|