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.
Files changed (98) hide show
  1. package/lib/api/contributors-api.d.ts +3 -12
  2. package/lib/api/contributors-api.d.ts.map +1 -1
  3. package/lib/api/contributors-api.js +6 -12
  4. package/lib/api/grades-api.d.ts +339 -0
  5. package/lib/api/grades-api.d.ts.map +1 -0
  6. package/lib/api/grades-api.js +600 -0
  7. package/lib/api/hospitals-api.d.ts +333 -0
  8. package/lib/api/hospitals-api.d.ts.map +1 -1
  9. package/lib/api/hospitals-api.js +491 -0
  10. package/lib/api/survey-results-api.d.ts +12 -3
  11. package/lib/api/survey-results-api.d.ts.map +1 -1
  12. package/lib/api/survey-results-api.js +12 -6
  13. package/lib/api.d.ts +1 -0
  14. package/lib/api.d.ts.map +1 -1
  15. package/lib/api.js +1 -0
  16. package/lib/models/create-grade-command.d.ts +44 -0
  17. package/lib/models/create-grade-command.d.ts.map +1 -0
  18. package/lib/models/create-hospital-command.d.ts +6 -0
  19. package/lib/models/create-hospital-command.d.ts.map +1 -1
  20. package/lib/models/create-hospital-contact-command.d.ts +55 -0
  21. package/lib/models/create-hospital-contact-command.d.ts.map +1 -0
  22. package/lib/models/create-hospital-contact-command.js +15 -0
  23. package/lib/models/create-survey-form-command.d.ts +6 -0
  24. package/lib/models/create-survey-form-command.d.ts.map +1 -1
  25. package/lib/models/grade-item-model.d.ts +57 -0
  26. package/lib/models/grade-item-model.d.ts.map +1 -0
  27. package/lib/models/grade-item-model.js +15 -0
  28. package/lib/models/grade-model.d.ts +57 -0
  29. package/lib/models/grade-model.d.ts.map +1 -0
  30. package/lib/models/grade-model.js +15 -0
  31. package/lib/models/grade-targets.d.ts +22 -0
  32. package/lib/models/grade-targets.d.ts.map +1 -0
  33. package/lib/models/grade-targets.js +25 -0
  34. package/lib/models/grades-model.d.ts +33 -0
  35. package/lib/models/grades-model.d.ts.map +1 -0
  36. package/lib/models/grades-model.js +15 -0
  37. package/lib/models/{survey-result-item-model.d.ts → hospital-contact-item-model.d.ts} +18 -25
  38. package/lib/models/hospital-contact-item-model.d.ts.map +1 -0
  39. package/lib/models/hospital-contact-item-model.js +15 -0
  40. package/lib/models/hospital-contact-model.d.ts +67 -0
  41. package/lib/models/hospital-contact-model.d.ts.map +1 -0
  42. package/lib/models/hospital-contact-model.js +15 -0
  43. package/lib/models/hospital-contacts-model.d.ts +33 -0
  44. package/lib/models/hospital-contacts-model.d.ts.map +1 -0
  45. package/lib/models/hospital-contacts-model.js +15 -0
  46. package/lib/models/hospital-item-model.d.ts +13 -0
  47. package/lib/models/hospital-item-model.d.ts.map +1 -1
  48. package/lib/models/hospital-model.d.ts +13 -0
  49. package/lib/models/hospital-model.d.ts.map +1 -1
  50. package/lib/models/index.d.ts +11 -1
  51. package/lib/models/index.d.ts.map +1 -1
  52. package/lib/models/index.js +11 -1
  53. package/lib/models/survey-form-item-model.d.ts +6 -0
  54. package/lib/models/survey-form-item-model.d.ts.map +1 -1
  55. package/lib/models/survey-form-model.d.ts +6 -0
  56. package/lib/models/survey-form-model.d.ts.map +1 -1
  57. package/lib/models/survey-results-model.d.ts +3 -3
  58. package/lib/models/survey-results-model.d.ts.map +1 -1
  59. package/lib/models/update-grade-command.d.ts +37 -0
  60. package/lib/models/update-grade-command.d.ts.map +1 -0
  61. package/lib/models/update-grade-command.js +15 -0
  62. package/lib/models/update-hospital-command.d.ts +6 -0
  63. package/lib/models/update-hospital-command.d.ts.map +1 -1
  64. package/lib/models/update-hospital-contact-command.d.ts +55 -0
  65. package/lib/models/update-hospital-contact-command.d.ts.map +1 -0
  66. package/lib/models/update-hospital-contact-command.js +15 -0
  67. package/lib/models/update-survey-form-command.d.ts +6 -0
  68. package/lib/models/update-survey-form-command.d.ts.map +1 -1
  69. package/package.json +1 -1
  70. package/src/.openapi-generator/FILES +12 -1
  71. package/src/api/contributors-api.ts +6 -20
  72. package/src/api/grades-api.ts +595 -0
  73. package/src/api/hospitals-api.ts +584 -0
  74. package/src/api/survey-results-api.ts +20 -6
  75. package/src/api.ts +1 -0
  76. package/src/models/create-grade-command.ts +51 -0
  77. package/src/models/create-hospital-command.ts +6 -0
  78. package/src/models/create-hospital-contact-command.ts +60 -0
  79. package/src/models/create-survey-form-command.ts +6 -0
  80. package/src/models/grade-item-model.ts +66 -0
  81. package/src/models/grade-model.ts +66 -0
  82. package/src/models/grade-targets.ts +31 -0
  83. package/src/models/grades-model.ts +42 -0
  84. package/src/models/{survey-result-item-model.ts → hospital-contact-item-model.ts} +17 -26
  85. package/src/models/hospital-contact-model.ts +72 -0
  86. package/src/models/hospital-contacts-model.ts +42 -0
  87. package/src/models/hospital-item-model.ts +15 -0
  88. package/src/models/hospital-model.ts +15 -0
  89. package/src/models/index.ts +11 -1
  90. package/src/models/survey-form-item-model.ts +6 -0
  91. package/src/models/survey-form-model.ts +6 -0
  92. package/src/models/survey-results-model.ts +3 -3
  93. package/src/models/update-grade-command.ts +42 -0
  94. package/src/models/update-hospital-command.ts +6 -0
  95. package/src/models/update-hospital-contact-command.ts +60 -0
  96. package/src/models/update-survey-form-command.ts +6 -0
  97. package/lib/models/survey-result-item-model.d.ts.map +0 -1
  98. /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}
@@ -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}
@@ -53,6 +53,12 @@ export interface SurveyFormModel {
53
53
  * @memberof SurveyFormModel
54
54
  */
55
55
  'status'?: SurveyFormStatus;
56
+ /**
57
+ *
58
+ * @type {string}
59
+ * @memberof SurveyFormModel
60
+ */
61
+ 'urlAfterDone'?: string | null;
56
62
  /**
57
63
  *
58
64
  * @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 { SurveyResultItemModel } from './survey-result-item-model';
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<SurveyResultItemModel>}
31
+ * @type {Array<SurveyResultModel>}
32
32
  * @memberof SurveyResultsModel
33
33
  */
34
- 'items'?: Array<SurveyResultItemModel> | null;
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"}