ch-api-client-typescript2 4.7.5 → 4.7.7

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.js CHANGED
@@ -53,7 +53,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
53
53
  function verb(n) { return function (v) { return step([n, v]); }; }
54
54
  function step(op) {
55
55
  if (f) throw new TypeError("Generator is already executing.");
56
- while (_) try {
56
+ while (g && (g = 0, op[0] && (_ = 0)), _) try {
57
57
  if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
58
58
  if (y = 0, t) op = [op[0] & 2, t.value];
59
59
  switch (op[0]) {
@@ -93,245 +93,226 @@ var base_1 = require("./base");
93
93
  * @export
94
94
  * @enum {string}
95
95
  */
96
- var BookingStatus;
97
- (function (BookingStatus) {
98
- BookingStatus["New"] = "New";
99
- BookingStatus["Rejected"] = "Rejected";
100
- BookingStatus["Approved"] = "Approved";
101
- BookingStatus["Paid"] = "Paid";
102
- BookingStatus["Canceled"] = "Canceled";
103
- BookingStatus["RefundRequested"] = "RefundRequested";
104
- BookingStatus["Refunded"] = "Refunded";
105
- })(BookingStatus = exports.BookingStatus || (exports.BookingStatus = {}));
96
+ exports.BookingStatus = {
97
+ New: 'New',
98
+ Rejected: 'Rejected',
99
+ Approved: 'Approved',
100
+ Paid: 'Paid',
101
+ Canceled: 'Canceled',
102
+ RefundRequested: 'RefundRequested',
103
+ Refunded: 'Refunded'
104
+ };
106
105
  /**
107
106
  *
108
107
  * @export
109
108
  * @enum {string}
110
109
  */
111
- var ConsultationStatus;
112
- (function (ConsultationStatus) {
113
- ConsultationStatus["New"] = "New";
114
- ConsultationStatus["Rejected"] = "Rejected";
115
- ConsultationStatus["Approved"] = "Approved";
116
- ConsultationStatus["Paid"] = "Paid";
117
- ConsultationStatus["Canceled"] = "Canceled";
118
- ConsultationStatus["RefundRequested"] = "RefundRequested";
119
- ConsultationStatus["Refunded"] = "Refunded";
120
- })(ConsultationStatus = exports.ConsultationStatus || (exports.ConsultationStatus = {}));
110
+ exports.ConsultationStatus = {
111
+ New: 'New',
112
+ Rejected: 'Rejected',
113
+ Approved: 'Approved',
114
+ Paid: 'Paid',
115
+ Canceled: 'Canceled',
116
+ RefundRequested: 'RefundRequested',
117
+ Refunded: 'Refunded'
118
+ };
121
119
  /**
122
120
  *
123
121
  * @export
124
122
  * @enum {string}
125
123
  */
126
- var ConsultationTimetableStatus;
127
- (function (ConsultationTimetableStatus) {
128
- ConsultationTimetableStatus["Available"] = "Available";
129
- ConsultationTimetableStatus["Unavailable"] = "Unavailable";
130
- })(ConsultationTimetableStatus = exports.ConsultationTimetableStatus || (exports.ConsultationTimetableStatus = {}));
124
+ exports.ConsultationTimetableStatus = {
125
+ Available: 'Available',
126
+ Unavailable: 'Unavailable'
127
+ };
131
128
  /**
132
129
  *
133
130
  * @export
134
131
  * @enum {string}
135
132
  */
136
- var ConsultationType;
137
- (function (ConsultationType) {
138
- ConsultationType["Hospital"] = "Hospital";
139
- ConsultationType["Doctor"] = "Doctor";
140
- ConsultationType["Deal"] = "Deal";
141
- })(ConsultationType = exports.ConsultationType || (exports.ConsultationType = {}));
133
+ exports.ConsultationType = {
134
+ Hospital: 'Hospital',
135
+ Doctor: 'Doctor',
136
+ Deal: 'Deal'
137
+ };
142
138
  /**
143
139
  *
144
140
  * @export
145
141
  * @enum {string}
146
142
  */
147
- var ContributionType;
148
- (function (ContributionType) {
149
- ContributionType["ReviewedBy"] = "ReviewedBy";
150
- ContributionType["WrittenBy"] = "WrittenBy";
151
- ContributionType["InterviewWith"] = "InterviewWith";
152
- })(ContributionType = exports.ContributionType || (exports.ContributionType = {}));
143
+ exports.ContributionType = {
144
+ ReviewedBy: 'ReviewedBy',
145
+ WrittenBy: 'WrittenBy',
146
+ InterviewWith: 'InterviewWith'
147
+ };
153
148
  /**
154
149
  *
155
150
  * @export
156
151
  * @enum {string}
157
152
  */
158
- var DayOfWeek;
159
- (function (DayOfWeek) {
160
- DayOfWeek["Sunday"] = "Sunday";
161
- DayOfWeek["Monday"] = "Monday";
162
- DayOfWeek["Tuesday"] = "Tuesday";
163
- DayOfWeek["Wednesday"] = "Wednesday";
164
- DayOfWeek["Thursday"] = "Thursday";
165
- DayOfWeek["Friday"] = "Friday";
166
- DayOfWeek["Saturday"] = "Saturday";
167
- })(DayOfWeek = exports.DayOfWeek || (exports.DayOfWeek = {}));
153
+ exports.DayOfWeek = {
154
+ Sunday: 'Sunday',
155
+ Monday: 'Monday',
156
+ Tuesday: 'Tuesday',
157
+ Wednesday: 'Wednesday',
158
+ Thursday: 'Thursday',
159
+ Friday: 'Friday',
160
+ Saturday: 'Saturday'
161
+ };
168
162
  /**
169
163
  *
170
164
  * @export
171
165
  * @enum {string}
172
166
  */
173
- var Gender;
174
- (function (Gender) {
175
- Gender["NotSpecified"] = "NotSpecified";
176
- Gender["Male"] = "Male";
177
- Gender["Female"] = "Female";
178
- Gender["NonBinary"] = "NonBinary";
179
- Gender["PreferNotToSay"] = "PreferNotToSay";
180
- })(Gender = exports.Gender || (exports.Gender = {}));
167
+ exports.Gender = {
168
+ NotSpecified: 'NotSpecified',
169
+ Male: 'Male',
170
+ Female: 'Female',
171
+ NonBinary: 'NonBinary',
172
+ PreferNotToSay: 'PreferNotToSay'
173
+ };
181
174
  /**
182
175
  *
183
176
  * @export
184
177
  * @enum {string}
185
178
  */
186
- var MarketingType;
187
- (function (MarketingType) {
188
- MarketingType["Both"] = "Both";
189
- MarketingType["GeneralHealth"] = "GeneralHealth";
190
- MarketingType["Beauty"] = "Beauty";
191
- })(MarketingType = exports.MarketingType || (exports.MarketingType = {}));
179
+ exports.MarketingType = {
180
+ Both: 'Both',
181
+ GeneralHealth: 'GeneralHealth',
182
+ Beauty: 'Beauty'
183
+ };
192
184
  /**
193
185
  *
194
186
  * @export
195
187
  * @enum {string}
196
188
  */
197
- var MediaType;
198
- (function (MediaType) {
199
- MediaType["Photo"] = "Photo";
200
- MediaType["Video"] = "Video";
201
- MediaType["Youtube"] = "Youtube";
202
- MediaType["Document"] = "Document";
203
- MediaType["Frontal"] = "Frontal";
204
- MediaType["Diagonal"] = "Diagonal";
205
- MediaType["Side"] = "Side";
206
- })(MediaType = exports.MediaType || (exports.MediaType = {}));
189
+ exports.MediaType = {
190
+ Photo: 'Photo',
191
+ Video: 'Video',
192
+ Youtube: 'Youtube',
193
+ Document: 'Document',
194
+ Frontal: 'Frontal',
195
+ Diagonal: 'Diagonal',
196
+ Side: 'Side'
197
+ };
207
198
  /**
208
199
  *
209
200
  * @export
210
201
  * @enum {string}
211
202
  */
212
- var NotificationCode;
213
- (function (NotificationCode) {
214
- NotificationCode["WelcomeEmail"] = "WelcomeEmail";
215
- NotificationCode["DirectMessageSent"] = "DirectMessageSent";
216
- NotificationCode["BookingNew"] = "BookingNew";
217
- NotificationCode["BookingUpdated"] = "BookingUpdated";
218
- NotificationCode["BookingRejected"] = "BookingRejected";
219
- NotificationCode["BookingApproved"] = "BookingApproved";
220
- NotificationCode["BookingPaid"] = "BookingPaid";
221
- NotificationCode["BookingCanceled"] = "BookingCanceled";
222
- NotificationCode["BookingRefundRequested"] = "BookingRefundRequested";
223
- NotificationCode["BookingRefunded"] = "BookingRefunded";
224
- NotificationCode["ConsultationNew"] = "ConsultationNew";
225
- NotificationCode["ConsultationUpdated"] = "ConsultationUpdated";
226
- NotificationCode["ConsultationRejected"] = "ConsultationRejected";
227
- NotificationCode["ConsultationApproved"] = "ConsultationApproved";
228
- NotificationCode["ConsultationPaid"] = "ConsultationPaid";
229
- NotificationCode["ConsultationCanceled"] = "ConsultationCanceled";
230
- NotificationCode["ConsultationRefundRequested"] = "ConsultationRefundRequested";
231
- NotificationCode["ConsultationRefunded"] = "ConsultationRefunded";
232
- NotificationCode["ConsultationReady"] = "ConsultationReady";
233
- })(NotificationCode = exports.NotificationCode || (exports.NotificationCode = {}));
203
+ exports.NotificationCode = {
204
+ WelcomeEmail: 'WelcomeEmail',
205
+ DirectMessageSent: 'DirectMessageSent',
206
+ BookingNew: 'BookingNew',
207
+ BookingUpdated: 'BookingUpdated',
208
+ BookingRejected: 'BookingRejected',
209
+ BookingApproved: 'BookingApproved',
210
+ BookingPaid: 'BookingPaid',
211
+ BookingCanceled: 'BookingCanceled',
212
+ BookingRefundRequested: 'BookingRefundRequested',
213
+ BookingRefunded: 'BookingRefunded',
214
+ ConsultationNew: 'ConsultationNew',
215
+ ConsultationUpdated: 'ConsultationUpdated',
216
+ ConsultationRejected: 'ConsultationRejected',
217
+ ConsultationApproved: 'ConsultationApproved',
218
+ ConsultationPaid: 'ConsultationPaid',
219
+ ConsultationCanceled: 'ConsultationCanceled',
220
+ ConsultationRefundRequested: 'ConsultationRefundRequested',
221
+ ConsultationRefunded: 'ConsultationRefunded',
222
+ ConsultationReady: 'ConsultationReady'
223
+ };
234
224
  /**
235
225
  *
236
226
  * @export
237
227
  * @enum {string}
238
228
  */
239
- var Platform;
240
- (function (Platform) {
241
- Platform["Web"] = "Web";
242
- Platform["IOs"] = "iOS";
243
- Platform["Android"] = "Android";
244
- })(Platform = exports.Platform || (exports.Platform = {}));
229
+ exports.Platform = {
230
+ Web: 'Web',
231
+ IOs: 'iOS',
232
+ Android: 'Android'
233
+ };
245
234
  /**
246
235
  *
247
236
  * @export
248
237
  * @enum {string}
249
238
  */
250
- var Procedure;
251
- (function (Procedure) {
252
- Procedure["Treatment"] = "Treatment";
253
- Procedure["Diagnostic"] = "Diagnostic";
254
- })(Procedure = exports.Procedure || (exports.Procedure = {}));
239
+ exports.Procedure = {
240
+ Treatment: 'Treatment',
241
+ Diagnostic: 'Diagnostic'
242
+ };
255
243
  /**
256
244
  *
257
245
  * @export
258
246
  * @enum {string}
259
247
  */
260
- var RecurringInterval;
261
- (function (RecurringInterval) {
262
- RecurringInterval["Day"] = "Day";
263
- RecurringInterval["Week"] = "Week";
264
- RecurringInterval["Month"] = "Month";
265
- RecurringInterval["Year"] = "Year";
266
- })(RecurringInterval = exports.RecurringInterval || (exports.RecurringInterval = {}));
248
+ exports.RecurringInterval = {
249
+ Day: 'Day',
250
+ Week: 'Week',
251
+ Month: 'Month',
252
+ Year: 'Year'
253
+ };
267
254
  /**
268
255
  *
269
256
  * @export
270
257
  * @enum {string}
271
258
  */
272
- var RefundPolicy;
273
- (function (RefundPolicy) {
274
- RefundPolicy["NonRefundable"] = "NonRefundable";
275
- RefundPolicy["Refundable"] = "Refundable";
276
- RefundPolicy["PartialRefundable"] = "PartialRefundable";
277
- })(RefundPolicy = exports.RefundPolicy || (exports.RefundPolicy = {}));
259
+ exports.RefundPolicy = {
260
+ NonRefundable: 'NonRefundable',
261
+ Refundable: 'Refundable',
262
+ PartialRefundable: 'PartialRefundable'
263
+ };
278
264
  /**
279
265
  *
280
266
  * @export
281
267
  * @enum {string}
282
268
  */
283
- var RejectReason;
284
- (function (RejectReason) {
285
- RejectReason["AssessmentNotCompleted"] = "AssessmentNotCompleted";
286
- RejectReason["PaymentNotCompleted"] = "PaymentNotCompleted";
287
- RejectReason["ScheduleNotAvailable"] = "ScheduleNotAvailable";
288
- RejectReason["OtherReason"] = "OtherReason";
289
- })(RejectReason = exports.RejectReason || (exports.RejectReason = {}));
269
+ exports.RejectReason = {
270
+ AssessmentNotCompleted: 'AssessmentNotCompleted',
271
+ PaymentNotCompleted: 'PaymentNotCompleted',
272
+ ScheduleNotAvailable: 'ScheduleNotAvailable',
273
+ OtherReason: 'OtherReason'
274
+ };
290
275
  /**
291
276
  *
292
277
  * @export
293
278
  * @enum {string}
294
279
  */
295
- var ReviewType;
296
- (function (ReviewType) {
297
- ReviewType["Photo"] = "Photo";
298
- ReviewType["SurgeryReview"] = "SurgeryReview";
299
- ReviewType["RealStory"] = "RealStory";
300
- })(ReviewType = exports.ReviewType || (exports.ReviewType = {}));
280
+ exports.ReviewType = {
281
+ Photo: 'Photo',
282
+ SurgeryReview: 'SurgeryReview',
283
+ RealStory: 'RealStory'
284
+ };
301
285
  /**
302
286
  *
303
287
  * @export
304
288
  * @enum {string}
305
289
  */
306
- var SnsType;
307
- (function (SnsType) {
308
- SnsType["Twitter"] = "Twitter";
309
- SnsType["Facebook"] = "Facebook";
310
- SnsType["Instagram"] = "Instagram";
311
- SnsType["LinkedIn"] = "LinkedIn";
312
- SnsType["Youtube"] = "Youtube";
313
- SnsType["KakaoTalk"] = "KakaoTalk";
314
- })(SnsType = exports.SnsType || (exports.SnsType = {}));
290
+ exports.SnsType = {
291
+ Twitter: 'Twitter',
292
+ Facebook: 'Facebook',
293
+ Instagram: 'Instagram',
294
+ LinkedIn: 'LinkedIn',
295
+ Youtube: 'Youtube',
296
+ KakaoTalk: 'KakaoTalk'
297
+ };
315
298
  /**
316
299
  *
317
300
  * @export
318
301
  * @enum {string}
319
302
  */
320
- var SortingOrder;
321
- (function (SortingOrder) {
322
- SortingOrder["Ascending"] = "Ascending";
323
- SortingOrder["Descending"] = "Descending";
324
- })(SortingOrder = exports.SortingOrder || (exports.SortingOrder = {}));
303
+ exports.SortingOrder = {
304
+ Ascending: 'Ascending',
305
+ Descending: 'Descending'
306
+ };
325
307
  /**
326
308
  *
327
309
  * @export
328
310
  * @enum {string}
329
311
  */
330
- var UserLocationType;
331
- (function (UserLocationType) {
332
- UserLocationType["LivesIn"] = "LivesIn";
333
- UserLocationType["BirthPlace"] = "BirthPlace";
334
- })(UserLocationType = exports.UserLocationType || (exports.UserLocationType = {}));
312
+ exports.UserLocationType = {
313
+ LivesIn: 'LivesIn',
314
+ BirthPlace: 'BirthPlace'
315
+ };
335
316
  /**
336
317
  * AboutUsApi - axios parameter creator
337
318
  * @export
@@ -453,6 +434,7 @@ var AboutUsApiAxiosParamCreator = function (configuration) {
453
434
  },
454
435
  /**
455
436
  *
437
+ * @summary
456
438
  * @param {string} slug
457
439
  * @param {string} [languageCode]
458
440
  * @param {boolean} [returnDefaultValue]
@@ -554,6 +536,7 @@ var AboutUsApiFp = function (configuration) {
554
536
  },
555
537
  /**
556
538
  *
539
+ * @summary
557
540
  * @param {string} slug
558
541
  * @param {string} [languageCode]
559
542
  * @param {boolean} [returnDefaultValue]
@@ -616,6 +599,7 @@ var AboutUsApiFactory = function (configuration, basePath, axios) {
616
599
  },
617
600
  /**
618
601
  *
602
+ * @summary
619
603
  * @param {string} slug
620
604
  * @param {string} [languageCode]
621
605
  * @param {boolean} [returnDefaultValue]
@@ -676,6 +660,7 @@ var AboutUsApi = /** @class */ (function (_super) {
676
660
  };
677
661
  /**
678
662
  *
663
+ * @summary
679
664
  * @param {string} slug
680
665
  * @param {string} [languageCode]
681
666
  * @param {boolean} [returnDefaultValue]
@@ -1569,6 +1554,7 @@ var ArticlesApiAxiosParamCreator = function (configuration) {
1569
1554
  },
1570
1555
  /**
1571
1556
  *
1557
+ * @summary
1572
1558
  * @param {string} slug
1573
1559
  * @param {string} [languageCode]
1574
1560
  * @param {boolean} [returnDefaultValue]
@@ -1865,6 +1851,7 @@ var ArticlesApiFp = function (configuration) {
1865
1851
  },
1866
1852
  /**
1867
1853
  *
1854
+ * @summary
1868
1855
  * @param {string} slug
1869
1856
  * @param {string} [languageCode]
1870
1857
  * @param {boolean} [returnDefaultValue]
@@ -2042,6 +2029,7 @@ var ArticlesApiFactory = function (configuration, basePath, axios) {
2042
2029
  },
2043
2030
  /**
2044
2031
  *
2032
+ * @summary
2045
2033
  * @param {string} slug
2046
2034
  * @param {string} [languageCode]
2047
2035
  * @param {boolean} [returnDefaultValue]
@@ -2233,6 +2221,7 @@ var ArticlesApi = /** @class */ (function (_super) {
2233
2221
  };
2234
2222
  /**
2235
2223
  *
2224
+ * @summary
2236
2225
  * @param {string} slug
2237
2226
  * @param {string} [languageCode]
2238
2227
  * @param {boolean} [returnDefaultValue]
@@ -4856,6 +4845,7 @@ var CountriesApiAxiosParamCreator = function (configuration) {
4856
4845
  return {
4857
4846
  /**
4858
4847
  *
4848
+ * @summary
4859
4849
  * @param {string} countryId
4860
4850
  * @param {string} [languageCode]
4861
4851
  * @param {boolean} [returnDefaultValue]
@@ -5061,6 +5051,7 @@ var CountriesApiAxiosParamCreator = function (configuration) {
5061
5051
  },
5062
5052
  /**
5063
5053
  *
5054
+ * @summary
5064
5055
  * @param {string} slug
5065
5056
  * @param {string} [languageCode]
5066
5057
  * @param {boolean} [returnDefaultValue]
@@ -5111,6 +5102,7 @@ var CountriesApiFp = function (configuration) {
5111
5102
  return {
5112
5103
  /**
5113
5104
  *
5105
+ * @summary
5114
5106
  * @param {string} countryId
5115
5107
  * @param {string} [languageCode]
5116
5108
  * @param {boolean} [returnDefaultValue]
@@ -5207,6 +5199,7 @@ var CountriesApiFp = function (configuration) {
5207
5199
  },
5208
5200
  /**
5209
5201
  *
5202
+ * @summary
5210
5203
  * @param {string} slug
5211
5204
  * @param {string} [languageCode]
5212
5205
  * @param {boolean} [returnDefaultValue]
@@ -5238,6 +5231,7 @@ var CountriesApiFactory = function (configuration, basePath, axios) {
5238
5231
  return {
5239
5232
  /**
5240
5233
  *
5234
+ * @summary
5241
5235
  * @param {string} countryId
5242
5236
  * @param {string} [languageCode]
5243
5237
  * @param {boolean} [returnDefaultValue]
@@ -5294,6 +5288,7 @@ var CountriesApiFactory = function (configuration, basePath, axios) {
5294
5288
  },
5295
5289
  /**
5296
5290
  *
5291
+ * @summary
5297
5292
  * @param {string} slug
5298
5293
  * @param {string} [languageCode]
5299
5294
  * @param {boolean} [returnDefaultValue]
@@ -5319,6 +5314,7 @@ var CountriesApi = /** @class */ (function (_super) {
5319
5314
  }
5320
5315
  /**
5321
5316
  *
5317
+ * @summary
5322
5318
  * @param {string} countryId
5323
5319
  * @param {string} [languageCode]
5324
5320
  * @param {boolean} [returnDefaultValue]
@@ -5383,6 +5379,7 @@ var CountriesApi = /** @class */ (function (_super) {
5383
5379
  };
5384
5380
  /**
5385
5381
  *
5382
+ * @summary
5386
5383
  * @param {string} slug
5387
5384
  * @param {string} [languageCode]
5388
5385
  * @param {boolean} [returnDefaultValue]
@@ -7352,6 +7349,7 @@ var DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
7352
7349
  },
7353
7350
  /**
7354
7351
  *
7352
+ * @summary
7355
7353
  * @param {string} slug
7356
7354
  * @param {string} [languageCode]
7357
7355
  * @param {*} [options] Override http request option.
@@ -7498,6 +7496,7 @@ var DoctorAffiliationsApiFp = function (configuration) {
7498
7496
  },
7499
7497
  /**
7500
7498
  *
7499
+ * @summary
7501
7500
  * @param {string} slug
7502
7501
  * @param {string} [languageCode]
7503
7502
  * @param {*} [options] Override http request option.
@@ -7588,6 +7587,7 @@ var DoctorAffiliationsApiFactory = function (configuration, basePath, axios) {
7588
7587
  },
7589
7588
  /**
7590
7589
  *
7590
+ * @summary
7591
7591
  * @param {string} slug
7592
7592
  * @param {string} [languageCode]
7593
7593
  * @param {*} [options] Override http request option.
@@ -7680,6 +7680,7 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
7680
7680
  };
7681
7681
  /**
7682
7682
  *
7683
+ * @summary
7683
7684
  * @param {string} slug
7684
7685
  * @param {string} [languageCode]
7685
7686
  * @param {*} [options] Override http request option.
@@ -7916,6 +7917,7 @@ var DoctorsApiAxiosParamCreator = function (configuration) {
7916
7917
  },
7917
7918
  /**
7918
7919
  *
7920
+ * @summary
7919
7921
  * @param {string} doctorId
7920
7922
  * @param {string} [languageCode]
7921
7923
  * @param {boolean} [returnDefaultValue]
@@ -8634,6 +8636,7 @@ var DoctorsApiFp = function (configuration) {
8634
8636
  },
8635
8637
  /**
8636
8638
  *
8639
+ * @summary
8637
8640
  * @param {string} doctorId
8638
8641
  * @param {string} [languageCode]
8639
8642
  * @param {boolean} [returnDefaultValue]
@@ -8978,6 +8981,7 @@ var DoctorsApiFactory = function (configuration, basePath, axios) {
8978
8981
  },
8979
8982
  /**
8980
8983
  *
8984
+ * @summary
8981
8985
  * @param {string} doctorId
8982
8986
  * @param {string} [languageCode]
8983
8987
  * @param {boolean} [returnDefaultValue]
@@ -9224,6 +9228,7 @@ var DoctorsApi = /** @class */ (function (_super) {
9224
9228
  };
9225
9229
  /**
9226
9230
  *
9231
+ * @summary
9227
9232
  * @param {string} doctorId
9228
9233
  * @param {string} [languageCode]
9229
9234
  * @param {boolean} [returnDefaultValue]
@@ -11663,6 +11668,7 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
11663
11668
  },
11664
11669
  /**
11665
11670
  *
11671
+ * @summary
11666
11672
  * @param {string} hospitalId
11667
11673
  * @param {string} [languageCode]
11668
11674
  * @param {boolean} [returnDefaultValue]
@@ -12895,6 +12901,7 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
12895
12901
  },
12896
12902
  /**
12897
12903
  *
12904
+ * @summary
12898
12905
  * @param {string} slug
12899
12906
  * @param {string} [languageCode]
12900
12907
  * @param {boolean} [returnDefaultValue]
@@ -13173,6 +13180,7 @@ var HospitalsApiFp = function (configuration) {
13173
13180
  },
13174
13181
  /**
13175
13182
  *
13183
+ * @summary
13176
13184
  * @param {string} hospitalId
13177
13185
  * @param {string} [languageCode]
13178
13186
  * @param {boolean} [returnDefaultValue]
@@ -13729,6 +13737,7 @@ var HospitalsApiFp = function (configuration) {
13729
13737
  },
13730
13738
  /**
13731
13739
  *
13740
+ * @summary
13732
13741
  * @param {string} slug
13733
13742
  * @param {string} [languageCode]
13734
13743
  * @param {boolean} [returnDefaultValue]
@@ -13898,6 +13907,7 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
13898
13907
  },
13899
13908
  /**
13900
13909
  *
13910
+ * @summary
13901
13911
  * @param {string} hospitalId
13902
13912
  * @param {string} [languageCode]
13903
13913
  * @param {boolean} [returnDefaultValue]
@@ -14234,6 +14244,7 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
14234
14244
  },
14235
14245
  /**
14236
14246
  *
14247
+ * @summary
14237
14248
  * @param {string} slug
14238
14249
  * @param {string} [languageCode]
14239
14250
  * @param {boolean} [returnDefaultValue]
@@ -14415,6 +14426,7 @@ var HospitalsApi = /** @class */ (function (_super) {
14415
14426
  };
14416
14427
  /**
14417
14428
  *
14429
+ * @summary
14418
14430
  * @param {string} hospitalId
14419
14431
  * @param {string} [languageCode]
14420
14432
  * @param {boolean} [returnDefaultValue]
@@ -14795,6 +14807,7 @@ var HospitalsApi = /** @class */ (function (_super) {
14795
14807
  };
14796
14808
  /**
14797
14809
  *
14810
+ * @summary
14798
14811
  * @param {string} slug
14799
14812
  * @param {string} [languageCode]
14800
14813
  * @param {boolean} [returnDefaultValue]
@@ -14975,7 +14988,7 @@ var ImagesApiAxiosParamCreator = function (configuration) {
14975
14988
  return {
14976
14989
  /**
14977
14990
  *
14978
- * @param {Array<any>} [files]
14991
+ * @param {Array<File>} [files]
14979
14992
  * @param {*} [options] Override http request option.
14980
14993
  * @throws {RequiredError}
14981
14994
  */
@@ -15032,7 +15045,7 @@ var ImagesApiFp = function (configuration) {
15032
15045
  return {
15033
15046
  /**
15034
15047
  *
15035
- * @param {Array<any>} [files]
15048
+ * @param {Array<File>} [files]
15036
15049
  * @param {*} [options] Override http request option.
15037
15050
  * @throws {RequiredError}
15038
15051
  */
@@ -15061,7 +15074,7 @@ var ImagesApiFactory = function (configuration, basePath, axios) {
15061
15074
  return {
15062
15075
  /**
15063
15076
  *
15064
- * @param {Array<any>} [files]
15077
+ * @param {Array<File>} [files]
15065
15078
  * @param {*} [options] Override http request option.
15066
15079
  * @throws {RequiredError}
15067
15080
  */
@@ -15084,7 +15097,7 @@ var ImagesApi = /** @class */ (function (_super) {
15084
15097
  }
15085
15098
  /**
15086
15099
  *
15087
- * @param {Array<any>} [files]
15100
+ * @param {Array<File>} [files]
15088
15101
  * @param {*} [options] Override http request option.
15089
15102
  * @throws {RequiredError}
15090
15103
  * @memberof ImagesApi
@@ -17483,6 +17496,7 @@ var ServiceReviewsApiAxiosParamCreator = function (configuration) {
17483
17496
  },
17484
17497
  /**
17485
17498
  *
17499
+ * @summary
17486
17500
  * @param {string} serviceReviewId
17487
17501
  * @param {string} [languageCode]
17488
17502
  * @param {*} [options] Override http request option.
@@ -17885,6 +17899,7 @@ var ServiceReviewsApiFp = function (configuration) {
17885
17899
  },
17886
17900
  /**
17887
17901
  *
17902
+ * @summary
17888
17903
  * @param {string} serviceReviewId
17889
17904
  * @param {string} [languageCode]
17890
17905
  * @param {*} [options] Override http request option.
@@ -18091,6 +18106,7 @@ var ServiceReviewsApiFactory = function (configuration, basePath, axios) {
18091
18106
  },
18092
18107
  /**
18093
18108
  *
18109
+ * @summary
18094
18110
  * @param {string} serviceReviewId
18095
18111
  * @param {string} [languageCode]
18096
18112
  * @param {*} [options] Override http request option.
@@ -18237,6 +18253,7 @@ var ServiceReviewsApi = /** @class */ (function (_super) {
18237
18253
  };
18238
18254
  /**
18239
18255
  *
18256
+ * @summary
18240
18257
  * @param {string} serviceReviewId
18241
18258
  * @param {string} [languageCode]
18242
18259
  * @param {*} [options] Override http request option.
@@ -18451,6 +18468,7 @@ var ServicesApiAxiosParamCreator = function (configuration) {
18451
18468
  },
18452
18469
  /**
18453
18470
  *
18471
+ * @summary
18454
18472
  * @param {string} serviceId
18455
18473
  * @param {string} [languageCode]
18456
18474
  * @param {boolean} [returnDefaultValue]
@@ -18491,6 +18509,7 @@ var ServicesApiAxiosParamCreator = function (configuration) {
18491
18509
  },
18492
18510
  /**
18493
18511
  *
18512
+ * @summary
18494
18513
  * @param {string} slug
18495
18514
  * @param {string} [languageCode]
18496
18515
  * @param {boolean} [returnDefaultValue]
@@ -18579,6 +18598,7 @@ var ServicesApiFp = function (configuration) {
18579
18598
  },
18580
18599
  /**
18581
18600
  *
18601
+ * @summary
18582
18602
  * @param {string} serviceId
18583
18603
  * @param {string} [languageCode]
18584
18604
  * @param {boolean} [returnDefaultValue]
@@ -18600,6 +18620,7 @@ var ServicesApiFp = function (configuration) {
18600
18620
  },
18601
18621
  /**
18602
18622
  *
18623
+ * @summary
18603
18624
  * @param {string} slug
18604
18625
  * @param {string} [languageCode]
18605
18626
  * @param {boolean} [returnDefaultValue]
@@ -18659,6 +18680,7 @@ var ServicesApiFactory = function (configuration, basePath, axios) {
18659
18680
  },
18660
18681
  /**
18661
18682
  *
18683
+ * @summary
18662
18684
  * @param {string} serviceId
18663
18685
  * @param {string} [languageCode]
18664
18686
  * @param {boolean} [returnDefaultValue]
@@ -18670,6 +18692,7 @@ var ServicesApiFactory = function (configuration, basePath, axios) {
18670
18692
  },
18671
18693
  /**
18672
18694
  *
18695
+ * @summary
18673
18696
  * @param {string} slug
18674
18697
  * @param {string} [languageCode]
18675
18698
  * @param {boolean} [returnDefaultValue]
@@ -18725,6 +18748,7 @@ var ServicesApi = /** @class */ (function (_super) {
18725
18748
  };
18726
18749
  /**
18727
18750
  *
18751
+ * @summary
18728
18752
  * @param {string} serviceId
18729
18753
  * @param {string} [languageCode]
18730
18754
  * @param {boolean} [returnDefaultValue]
@@ -18738,6 +18762,7 @@ var ServicesApi = /** @class */ (function (_super) {
18738
18762
  };
18739
18763
  /**
18740
18764
  *
18765
+ * @summary
18741
18766
  * @param {string} slug
18742
18767
  * @param {string} [languageCode]
18743
18768
  * @param {boolean} [returnDefaultValue]
@@ -19155,6 +19180,7 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
19155
19180
  },
19156
19181
  /**
19157
19182
  *
19183
+ * @summary
19158
19184
  * @param {string} slug
19159
19185
  * @param {string} [languageCode]
19160
19186
  * @param {boolean} [returnDefaultValue]
@@ -19195,6 +19221,7 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
19195
19221
  },
19196
19222
  /**
19197
19223
  *
19224
+ * @summary
19198
19225
  * @param {string} specialtyId
19199
19226
  * @param {string} [languageCode]
19200
19227
  * @param {boolean} [returnDefaultValue]
@@ -19401,6 +19428,7 @@ var SpecialtiesApiFp = function (configuration) {
19401
19428
  },
19402
19429
  /**
19403
19430
  *
19431
+ * @summary
19404
19432
  * @param {string} slug
19405
19433
  * @param {string} [languageCode]
19406
19434
  * @param {boolean} [returnDefaultValue]
@@ -19422,6 +19450,7 @@ var SpecialtiesApiFp = function (configuration) {
19422
19450
  },
19423
19451
  /**
19424
19452
  *
19453
+ * @summary
19425
19454
  * @param {string} specialtyId
19426
19455
  * @param {string} [languageCode]
19427
19456
  * @param {boolean} [returnDefaultValue]
@@ -19543,6 +19572,7 @@ var SpecialtiesApiFactory = function (configuration, basePath, axios) {
19543
19572
  },
19544
19573
  /**
19545
19574
  *
19575
+ * @summary
19546
19576
  * @param {string} slug
19547
19577
  * @param {string} [languageCode]
19548
19578
  * @param {boolean} [returnDefaultValue]
@@ -19554,6 +19584,7 @@ var SpecialtiesApiFactory = function (configuration, basePath, axios) {
19554
19584
  },
19555
19585
  /**
19556
19586
  *
19587
+ * @summary
19557
19588
  * @param {string} specialtyId
19558
19589
  * @param {string} [languageCode]
19559
19590
  * @param {boolean} [returnDefaultValue]
@@ -19653,6 +19684,7 @@ var SpecialtiesApi = /** @class */ (function (_super) {
19653
19684
  };
19654
19685
  /**
19655
19686
  *
19687
+ * @summary
19656
19688
  * @param {string} slug
19657
19689
  * @param {string} [languageCode]
19658
19690
  * @param {boolean} [returnDefaultValue]
@@ -19666,6 +19698,7 @@ var SpecialtiesApi = /** @class */ (function (_super) {
19666
19698
  };
19667
19699
  /**
19668
19700
  *
19701
+ * @summary
19669
19702
  * @param {string} specialtyId
19670
19703
  * @param {string} [languageCode]
19671
19704
  * @param {boolean} [returnDefaultValue]
@@ -19897,6 +19930,7 @@ var SpecialtyTypesApiAxiosParamCreator = function (configuration) {
19897
19930
  },
19898
19931
  /**
19899
19932
  *
19933
+ * @summary
19900
19934
  * @param {string} slug
19901
19935
  * @param {string} [languageCode]
19902
19936
  * @param {boolean} [returnDefaultValue]
@@ -19937,6 +19971,7 @@ var SpecialtyTypesApiAxiosParamCreator = function (configuration) {
19937
19971
  },
19938
19972
  /**
19939
19973
  *
19974
+ * @summary
19940
19975
  * @param {string} specialtyTypeId
19941
19976
  * @param {string} [languageCode]
19942
19977
  * @param {boolean} [returnDefaultValue]
@@ -20145,6 +20180,7 @@ var SpecialtyTypesApiFp = function (configuration) {
20145
20180
  },
20146
20181
  /**
20147
20182
  *
20183
+ * @summary
20148
20184
  * @param {string} slug
20149
20185
  * @param {string} [languageCode]
20150
20186
  * @param {boolean} [returnDefaultValue]
@@ -20166,6 +20202,7 @@ var SpecialtyTypesApiFp = function (configuration) {
20166
20202
  },
20167
20203
  /**
20168
20204
  *
20205
+ * @summary
20169
20206
  * @param {string} specialtyTypeId
20170
20207
  * @param {string} [languageCode]
20171
20208
  * @param {boolean} [returnDefaultValue]
@@ -20289,6 +20326,7 @@ var SpecialtyTypesApiFactory = function (configuration, basePath, axios) {
20289
20326
  },
20290
20327
  /**
20291
20328
  *
20329
+ * @summary
20292
20330
  * @param {string} slug
20293
20331
  * @param {string} [languageCode]
20294
20332
  * @param {boolean} [returnDefaultValue]
@@ -20300,6 +20338,7 @@ var SpecialtyTypesApiFactory = function (configuration, basePath, axios) {
20300
20338
  },
20301
20339
  /**
20302
20340
  *
20341
+ * @summary
20303
20342
  * @param {string} specialtyTypeId
20304
20343
  * @param {string} [languageCode]
20305
20344
  * @param {boolean} [returnDefaultValue]
@@ -20401,6 +20440,7 @@ var SpecialtyTypesApi = /** @class */ (function (_super) {
20401
20440
  };
20402
20441
  /**
20403
20442
  *
20443
+ * @summary
20404
20444
  * @param {string} slug
20405
20445
  * @param {string} [languageCode]
20406
20446
  * @param {boolean} [returnDefaultValue]
@@ -20414,6 +20454,7 @@ var SpecialtyTypesApi = /** @class */ (function (_super) {
20414
20454
  };
20415
20455
  /**
20416
20456
  *
20457
+ * @summary
20417
20458
  * @param {string} specialtyTypeId
20418
20459
  * @param {string} [languageCode]
20419
20460
  * @param {boolean} [returnDefaultValue]