ch-api-client-typescript2 5.2.0 → 5.2.3
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/hospitals-api.d.ts +111 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +119 -0
- package/lib/models/contact-scope.d.ts +22 -0
- package/lib/models/contact-scope.d.ts.map +1 -0
- package/lib/models/contact-scope.js +25 -0
- package/lib/models/hospital-contact-document-model.d.ts +2 -8
- package/lib/models/hospital-contact-document-model.d.ts.map +1 -1
- package/lib/models/hospital-contact-item-model.d.ts +80 -0
- 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 +4 -9
- package/lib/models/hospital-contact-model.d.ts.map +1 -1
- 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/index.d.ts +3 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +3 -0
- package/lib/models/survey-form-element-types.d.ts +1 -0
- package/lib/models/survey-form-element-types.d.ts.map +1 -1
- package/lib/models/survey-form-element-types.js +2 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +3 -0
- package/src/api/hospitals-api.ts +185 -0
- package/src/models/contact-scope.ts +31 -0
- package/src/models/hospital-contact-document-model.ts +2 -8
- package/src/models/hospital-contact-item-model.ts +87 -0
- package/src/models/hospital-contact-model.ts +6 -9
- package/src/models/hospital-contacts-model.ts +42 -0
- package/src/models/index.ts +3 -0
- package/src/models/survey-form-element-types.ts +2 -1
package/src/models/index.ts
CHANGED
|
@@ -54,6 +54,7 @@ export * from './consultation-timetable-status';
|
|
|
54
54
|
export * from './consultation-timetable-time-slot-model';
|
|
55
55
|
export * from './consultation-type';
|
|
56
56
|
export * from './consultations-model';
|
|
57
|
+
export * from './contact-scope';
|
|
57
58
|
export * from './contribution-type';
|
|
58
59
|
export * from './contributor-document-model';
|
|
59
60
|
export * from './contributor-item-model';
|
|
@@ -148,7 +149,9 @@ export * from './hospital-accreditation-model';
|
|
|
148
149
|
export * from './hospital-accreditations-model';
|
|
149
150
|
export * from './hospital-consultation-option-model';
|
|
150
151
|
export * from './hospital-contact-document-model';
|
|
152
|
+
export * from './hospital-contact-item-model';
|
|
151
153
|
export * from './hospital-contact-model';
|
|
154
|
+
export * from './hospital-contacts-model';
|
|
152
155
|
export * from './hospital-document-model';
|
|
153
156
|
export * from './hospital-equipment-item-model';
|
|
154
157
|
export * from './hospital-equipment-model';
|
|
@@ -34,7 +34,8 @@ export const SurveyFormElementTypes = {
|
|
|
34
34
|
Radio: 'Radio',
|
|
35
35
|
File: 'File',
|
|
36
36
|
Countries: 'Countries',
|
|
37
|
-
Phone: 'Phone'
|
|
37
|
+
Phone: 'Phone',
|
|
38
|
+
HospitalContacts: 'HospitalContacts'
|
|
38
39
|
} as const;
|
|
39
40
|
|
|
40
41
|
export type SurveyFormElementTypes = typeof SurveyFormElementTypes[keyof typeof SurveyFormElementTypes];
|