ch-api-client-typescript2 5.20.1 → 5.20.14

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 (40) hide show
  1. package/lib/api/services-api.d.ts +12 -3
  2. package/lib/api/services-api.d.ts.map +1 -1
  3. package/lib/api/services-api.js +12 -6
  4. package/lib/models/doctor-document-model.d.ts +7 -0
  5. package/lib/models/doctor-document-model.d.ts.map +1 -1
  6. package/lib/models/hospital-document-model.d.ts +7 -0
  7. package/lib/models/hospital-document-model.d.ts.map +1 -1
  8. package/lib/models/hospital-specialty-document-model.d.ts +14 -0
  9. package/lib/models/hospital-specialty-document-model.d.ts.map +1 -1
  10. package/lib/models/index.d.ts +1 -0
  11. package/lib/models/index.d.ts.map +1 -1
  12. package/lib/models/index.js +1 -0
  13. package/lib/models/page-block-model.d.ts +13 -0
  14. package/lib/models/page-block-model.d.ts.map +1 -1
  15. package/lib/models/page-block-type.d.ts +1 -0
  16. package/lib/models/page-block-type.d.ts.map +1 -1
  17. package/lib/models/page-block-type.js +2 -1
  18. package/lib/models/page-section-list-type.d.ts +1 -0
  19. package/lib/models/page-section-list-type.d.ts.map +1 -1
  20. package/lib/models/page-section-list-type.js +2 -1
  21. package/lib/models/service-document-model.d.ts +14 -0
  22. package/lib/models/service-document-model.d.ts.map +1 -1
  23. package/lib/models/specialty-names-model.d.ts +241 -0
  24. package/lib/models/specialty-names-model.d.ts.map +1 -0
  25. package/lib/models/specialty-names-model.js +15 -0
  26. package/lib/models/translation-item-document-model.d.ts +0 -6
  27. package/lib/models/translation-item-document-model.d.ts.map +1 -1
  28. package/package.json +1 -1
  29. package/src/.openapi-generator/FILES +1 -0
  30. package/src/api/services-api.ts +20 -6
  31. package/src/models/doctor-document-model.ts +9 -0
  32. package/src/models/hospital-document-model.ts +9 -0
  33. package/src/models/hospital-specialty-document-model.ts +18 -0
  34. package/src/models/index.ts +1 -0
  35. package/src/models/page-block-model.ts +15 -0
  36. package/src/models/page-block-type.ts +2 -1
  37. package/src/models/page-section-list-type.ts +2 -1
  38. package/src/models/service-document-model.ts +18 -0
  39. package/src/models/specialty-names-model.ts +246 -0
  40. package/src/models/translation-item-document-model.ts +0 -6
@@ -0,0 +1,246 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 SpecialtyNamesModel
21
+ */
22
+ export interface SpecialtyNamesModel {
23
+ /**
24
+ *
25
+ * @type {Array<string>}
26
+ * @memberof SpecialtyNamesModel
27
+ */
28
+ 'en'?: Array<string> | null;
29
+ /**
30
+ *
31
+ * @type {Array<string>}
32
+ * @memberof SpecialtyNamesModel
33
+ */
34
+ 'ru'?: Array<string> | null;
35
+ /**
36
+ *
37
+ * @type {Array<string>}
38
+ * @memberof SpecialtyNamesModel
39
+ */
40
+ 'zh'?: Array<string> | null;
41
+ /**
42
+ *
43
+ * @type {Array<string>}
44
+ * @memberof SpecialtyNamesModel
45
+ */
46
+ 'es'?: Array<string> | null;
47
+ /**
48
+ *
49
+ * @type {Array<string>}
50
+ * @memberof SpecialtyNamesModel
51
+ */
52
+ 'id'?: Array<string> | null;
53
+ /**
54
+ *
55
+ * @type {Array<string>}
56
+ * @memberof SpecialtyNamesModel
57
+ */
58
+ 'pt'?: Array<string> | null;
59
+ /**
60
+ *
61
+ * @type {Array<string>}
62
+ * @memberof SpecialtyNamesModel
63
+ */
64
+ 'fr'?: Array<string> | null;
65
+ /**
66
+ *
67
+ * @type {Array<string>}
68
+ * @memberof SpecialtyNamesModel
69
+ */
70
+ 'vi'?: Array<string> | null;
71
+ /**
72
+ *
73
+ * @type {Array<string>}
74
+ * @memberof SpecialtyNamesModel
75
+ */
76
+ 'th'?: Array<string> | null;
77
+ /**
78
+ *
79
+ * @type {Array<string>}
80
+ * @memberof SpecialtyNamesModel
81
+ */
82
+ 'ar'?: Array<string> | null;
83
+ /**
84
+ *
85
+ * @type {Array<string>}
86
+ * @memberof SpecialtyNamesModel
87
+ */
88
+ 'ko'?: Array<string> | null;
89
+ /**
90
+ *
91
+ * @type {Array<string>}
92
+ * @memberof SpecialtyNamesModel
93
+ */
94
+ 'bg'?: Array<string> | null;
95
+ /**
96
+ *
97
+ * @type {Array<string>}
98
+ * @memberof SpecialtyNamesModel
99
+ */
100
+ 'cs'?: Array<string> | null;
101
+ /**
102
+ *
103
+ * @type {Array<string>}
104
+ * @memberof SpecialtyNamesModel
105
+ */
106
+ 'de'?: Array<string> | null;
107
+ /**
108
+ *
109
+ * @type {Array<string>}
110
+ * @memberof SpecialtyNamesModel
111
+ */
112
+ 'hi'?: Array<string> | null;
113
+ /**
114
+ *
115
+ * @type {Array<string>}
116
+ * @memberof SpecialtyNamesModel
117
+ */
118
+ 'hr'?: Array<string> | null;
119
+ /**
120
+ *
121
+ * @type {Array<string>}
122
+ * @memberof SpecialtyNamesModel
123
+ */
124
+ 'hu'?: Array<string> | null;
125
+ /**
126
+ *
127
+ * @type {Array<string>}
128
+ * @memberof SpecialtyNamesModel
129
+ */
130
+ 'it'?: Array<string> | null;
131
+ /**
132
+ *
133
+ * @type {Array<string>}
134
+ * @memberof SpecialtyNamesModel
135
+ */
136
+ 'ja'?: Array<string> | null;
137
+ /**
138
+ *
139
+ * @type {Array<string>}
140
+ * @memberof SpecialtyNamesModel
141
+ */
142
+ 'kk'?: Array<string> | null;
143
+ /**
144
+ *
145
+ * @type {Array<string>}
146
+ * @memberof SpecialtyNamesModel
147
+ */
148
+ 'ky'?: Array<string> | null;
149
+ /**
150
+ *
151
+ * @type {Array<string>}
152
+ * @memberof SpecialtyNamesModel
153
+ */
154
+ 'lo'?: Array<string> | null;
155
+ /**
156
+ *
157
+ * @type {Array<string>}
158
+ * @memberof SpecialtyNamesModel
159
+ */
160
+ 'lt'?: Array<string> | null;
161
+ /**
162
+ *
163
+ * @type {Array<string>}
164
+ * @memberof SpecialtyNamesModel
165
+ */
166
+ 'lv'?: Array<string> | null;
167
+ /**
168
+ *
169
+ * @type {Array<string>}
170
+ * @memberof SpecialtyNamesModel
171
+ */
172
+ 'my'?: Array<string> | null;
173
+ /**
174
+ *
175
+ * @type {Array<string>}
176
+ * @memberof SpecialtyNamesModel
177
+ */
178
+ 'nl'?: Array<string> | null;
179
+ /**
180
+ *
181
+ * @type {Array<string>}
182
+ * @memberof SpecialtyNamesModel
183
+ */
184
+ 'pl'?: Array<string> | null;
185
+ /**
186
+ *
187
+ * @type {Array<string>}
188
+ * @memberof SpecialtyNamesModel
189
+ */
190
+ 'ro'?: Array<string> | null;
191
+ /**
192
+ *
193
+ * @type {Array<string>}
194
+ * @memberof SpecialtyNamesModel
195
+ */
196
+ 'sl'?: Array<string> | null;
197
+ /**
198
+ *
199
+ * @type {Array<string>}
200
+ * @memberof SpecialtyNamesModel
201
+ */
202
+ 'sv'?: Array<string> | null;
203
+ /**
204
+ *
205
+ * @type {Array<string>}
206
+ * @memberof SpecialtyNamesModel
207
+ */
208
+ 'sw'?: Array<string> | null;
209
+ /**
210
+ *
211
+ * @type {Array<string>}
212
+ * @memberof SpecialtyNamesModel
213
+ */
214
+ 'tr'?: Array<string> | null;
215
+ /**
216
+ *
217
+ * @type {Array<string>}
218
+ * @memberof SpecialtyNamesModel
219
+ */
220
+ 'uk'?: Array<string> | null;
221
+ /**
222
+ *
223
+ * @type {Array<string>}
224
+ * @memberof SpecialtyNamesModel
225
+ */
226
+ 'uz'?: Array<string> | null;
227
+ /**
228
+ *
229
+ * @type {Array<string>}
230
+ * @memberof SpecialtyNamesModel
231
+ */
232
+ 'bn'?: Array<string> | null;
233
+ /**
234
+ *
235
+ * @type {Array<string>}
236
+ * @memberof SpecialtyNamesModel
237
+ */
238
+ 'az'?: Array<string> | null;
239
+ /**
240
+ *
241
+ * @type {Array<string>}
242
+ * @memberof SpecialtyNamesModel
243
+ */
244
+ 'ka'?: Array<string> | null;
245
+ }
246
+
@@ -32,11 +32,5 @@ export interface TranslationItemDocumentModel {
32
32
  * @memberof TranslationItemDocumentModel
33
33
  */
34
34
  'Name'?: string | null;
35
- /**
36
- *
37
- * @type {string}
38
- * @memberof TranslationItemDocumentModel
39
- */
40
- 'Description'?: string | null;
41
35
  }
42
36