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.d.ts +752 -673
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +195 -154
- package/lib/common.d.ts +6 -6
- package/lib/common.d.ts.map +1 -1
- package/lib/common.js +23 -16
- package/openapitools.json +2 -2
- package/package.json +6 -6
- package/src/.openapi-generator/VERSION +1 -1
- package/src/api.ts +255 -138
- package/src/common.ts +22 -12
package/src/api.ts
CHANGED
|
@@ -1532,15 +1532,18 @@ export interface BookingModel {
|
|
|
1532
1532
|
* @enum {string}
|
|
1533
1533
|
*/
|
|
1534
1534
|
|
|
1535
|
-
export
|
|
1536
|
-
New
|
|
1537
|
-
Rejected
|
|
1538
|
-
Approved
|
|
1539
|
-
Paid
|
|
1540
|
-
Canceled
|
|
1541
|
-
RefundRequested
|
|
1542
|
-
Refunded
|
|
1543
|
-
}
|
|
1535
|
+
export const BookingStatus = {
|
|
1536
|
+
New: 'New',
|
|
1537
|
+
Rejected: 'Rejected',
|
|
1538
|
+
Approved: 'Approved',
|
|
1539
|
+
Paid: 'Paid',
|
|
1540
|
+
Canceled: 'Canceled',
|
|
1541
|
+
RefundRequested: 'RefundRequested',
|
|
1542
|
+
Refunded: 'Refunded'
|
|
1543
|
+
} as const;
|
|
1544
|
+
|
|
1545
|
+
export type BookingStatus = typeof BookingStatus[keyof typeof BookingStatus];
|
|
1546
|
+
|
|
1544
1547
|
|
|
1545
1548
|
/**
|
|
1546
1549
|
*
|
|
@@ -2278,15 +2281,18 @@ export interface ConsultationModel {
|
|
|
2278
2281
|
* @enum {string}
|
|
2279
2282
|
*/
|
|
2280
2283
|
|
|
2281
|
-
export
|
|
2282
|
-
New
|
|
2283
|
-
Rejected
|
|
2284
|
-
Approved
|
|
2285
|
-
Paid
|
|
2286
|
-
Canceled
|
|
2287
|
-
RefundRequested
|
|
2288
|
-
Refunded
|
|
2289
|
-
}
|
|
2284
|
+
export const ConsultationStatus = {
|
|
2285
|
+
New: 'New',
|
|
2286
|
+
Rejected: 'Rejected',
|
|
2287
|
+
Approved: 'Approved',
|
|
2288
|
+
Paid: 'Paid',
|
|
2289
|
+
Canceled: 'Canceled',
|
|
2290
|
+
RefundRequested: 'RefundRequested',
|
|
2291
|
+
Refunded: 'Refunded'
|
|
2292
|
+
} as const;
|
|
2293
|
+
|
|
2294
|
+
export type ConsultationStatus = typeof ConsultationStatus[keyof typeof ConsultationStatus];
|
|
2295
|
+
|
|
2290
2296
|
|
|
2291
2297
|
/**
|
|
2292
2298
|
*
|
|
@@ -2368,10 +2374,13 @@ export interface ConsultationTimetableModel {
|
|
|
2368
2374
|
* @enum {string}
|
|
2369
2375
|
*/
|
|
2370
2376
|
|
|
2371
|
-
export
|
|
2372
|
-
Available
|
|
2373
|
-
Unavailable
|
|
2374
|
-
}
|
|
2377
|
+
export const ConsultationTimetableStatus = {
|
|
2378
|
+
Available: 'Available',
|
|
2379
|
+
Unavailable: 'Unavailable'
|
|
2380
|
+
} as const;
|
|
2381
|
+
|
|
2382
|
+
export type ConsultationTimetableStatus = typeof ConsultationTimetableStatus[keyof typeof ConsultationTimetableStatus];
|
|
2383
|
+
|
|
2375
2384
|
|
|
2376
2385
|
/**
|
|
2377
2386
|
*
|
|
@@ -2422,11 +2431,14 @@ export interface ConsultationTimetableTimeSlotModel {
|
|
|
2422
2431
|
* @enum {string}
|
|
2423
2432
|
*/
|
|
2424
2433
|
|
|
2425
|
-
export
|
|
2426
|
-
Hospital
|
|
2427
|
-
Doctor
|
|
2428
|
-
Deal
|
|
2429
|
-
}
|
|
2434
|
+
export const ConsultationType = {
|
|
2435
|
+
Hospital: 'Hospital',
|
|
2436
|
+
Doctor: 'Doctor',
|
|
2437
|
+
Deal: 'Deal'
|
|
2438
|
+
} as const;
|
|
2439
|
+
|
|
2440
|
+
export type ConsultationType = typeof ConsultationType[keyof typeof ConsultationType];
|
|
2441
|
+
|
|
2430
2442
|
|
|
2431
2443
|
/**
|
|
2432
2444
|
*
|
|
@@ -2453,11 +2465,14 @@ export interface ConsultationsModel {
|
|
|
2453
2465
|
* @enum {string}
|
|
2454
2466
|
*/
|
|
2455
2467
|
|
|
2456
|
-
export
|
|
2457
|
-
ReviewedBy
|
|
2458
|
-
WrittenBy
|
|
2459
|
-
InterviewWith
|
|
2460
|
-
}
|
|
2468
|
+
export const ContributionType = {
|
|
2469
|
+
ReviewedBy: 'ReviewedBy',
|
|
2470
|
+
WrittenBy: 'WrittenBy',
|
|
2471
|
+
InterviewWith: 'InterviewWith'
|
|
2472
|
+
} as const;
|
|
2473
|
+
|
|
2474
|
+
export type ContributionType = typeof ContributionType[keyof typeof ContributionType];
|
|
2475
|
+
|
|
2461
2476
|
|
|
2462
2477
|
/**
|
|
2463
2478
|
*
|
|
@@ -3362,15 +3377,18 @@ export interface CreateServiceReviewCommand {
|
|
|
3362
3377
|
* @enum {string}
|
|
3363
3378
|
*/
|
|
3364
3379
|
|
|
3365
|
-
export
|
|
3366
|
-
Sunday
|
|
3367
|
-
Monday
|
|
3368
|
-
Tuesday
|
|
3369
|
-
Wednesday
|
|
3370
|
-
Thursday
|
|
3371
|
-
Friday
|
|
3372
|
-
Saturday
|
|
3373
|
-
}
|
|
3380
|
+
export const DayOfWeek = {
|
|
3381
|
+
Sunday: 'Sunday',
|
|
3382
|
+
Monday: 'Monday',
|
|
3383
|
+
Tuesday: 'Tuesday',
|
|
3384
|
+
Wednesday: 'Wednesday',
|
|
3385
|
+
Thursday: 'Thursday',
|
|
3386
|
+
Friday: 'Friday',
|
|
3387
|
+
Saturday: 'Saturday'
|
|
3388
|
+
} as const;
|
|
3389
|
+
|
|
3390
|
+
export type DayOfWeek = typeof DayOfWeek[keyof typeof DayOfWeek];
|
|
3391
|
+
|
|
3374
3392
|
|
|
3375
3393
|
/**
|
|
3376
3394
|
*
|
|
@@ -5765,13 +5783,16 @@ export interface FaqsModel {
|
|
|
5765
5783
|
* @enum {string}
|
|
5766
5784
|
*/
|
|
5767
5785
|
|
|
5768
|
-
export
|
|
5769
|
-
NotSpecified
|
|
5770
|
-
Male
|
|
5771
|
-
Female
|
|
5772
|
-
NonBinary
|
|
5773
|
-
PreferNotToSay
|
|
5774
|
-
}
|
|
5786
|
+
export const Gender = {
|
|
5787
|
+
NotSpecified: 'NotSpecified',
|
|
5788
|
+
Male: 'Male',
|
|
5789
|
+
Female: 'Female',
|
|
5790
|
+
NonBinary: 'NonBinary',
|
|
5791
|
+
PreferNotToSay: 'PreferNotToSay'
|
|
5792
|
+
} as const;
|
|
5793
|
+
|
|
5794
|
+
export type Gender = typeof Gender[keyof typeof Gender];
|
|
5795
|
+
|
|
5775
5796
|
|
|
5776
5797
|
/**
|
|
5777
5798
|
*
|
|
@@ -7639,11 +7660,14 @@ export interface LocationModel {
|
|
|
7639
7660
|
* @enum {string}
|
|
7640
7661
|
*/
|
|
7641
7662
|
|
|
7642
|
-
export
|
|
7643
|
-
Both
|
|
7644
|
-
GeneralHealth
|
|
7645
|
-
Beauty
|
|
7646
|
-
}
|
|
7663
|
+
export const MarketingType = {
|
|
7664
|
+
Both: 'Both',
|
|
7665
|
+
GeneralHealth: 'GeneralHealth',
|
|
7666
|
+
Beauty: 'Beauty'
|
|
7667
|
+
} as const;
|
|
7668
|
+
|
|
7669
|
+
export type MarketingType = typeof MarketingType[keyof typeof MarketingType];
|
|
7670
|
+
|
|
7647
7671
|
|
|
7648
7672
|
/**
|
|
7649
7673
|
*
|
|
@@ -7694,15 +7718,18 @@ export interface MediaModel {
|
|
|
7694
7718
|
* @enum {string}
|
|
7695
7719
|
*/
|
|
7696
7720
|
|
|
7697
|
-
export
|
|
7698
|
-
Photo
|
|
7699
|
-
Video
|
|
7700
|
-
Youtube
|
|
7701
|
-
Document
|
|
7702
|
-
Frontal
|
|
7703
|
-
Diagonal
|
|
7704
|
-
Side
|
|
7705
|
-
}
|
|
7721
|
+
export const MediaType = {
|
|
7722
|
+
Photo: 'Photo',
|
|
7723
|
+
Video: 'Video',
|
|
7724
|
+
Youtube: 'Youtube',
|
|
7725
|
+
Document: 'Document',
|
|
7726
|
+
Frontal: 'Frontal',
|
|
7727
|
+
Diagonal: 'Diagonal',
|
|
7728
|
+
Side: 'Side'
|
|
7729
|
+
} as const;
|
|
7730
|
+
|
|
7731
|
+
export type MediaType = typeof MediaType[keyof typeof MediaType];
|
|
7732
|
+
|
|
7706
7733
|
|
|
7707
7734
|
/**
|
|
7708
7735
|
*
|
|
@@ -7951,27 +7978,30 @@ export interface Metadata {
|
|
|
7951
7978
|
* @enum {string}
|
|
7952
7979
|
*/
|
|
7953
7980
|
|
|
7954
|
-
export
|
|
7955
|
-
WelcomeEmail
|
|
7956
|
-
DirectMessageSent
|
|
7957
|
-
BookingNew
|
|
7958
|
-
BookingUpdated
|
|
7959
|
-
BookingRejected
|
|
7960
|
-
BookingApproved
|
|
7961
|
-
BookingPaid
|
|
7962
|
-
BookingCanceled
|
|
7963
|
-
BookingRefundRequested
|
|
7964
|
-
BookingRefunded
|
|
7965
|
-
ConsultationNew
|
|
7966
|
-
ConsultationUpdated
|
|
7967
|
-
ConsultationRejected
|
|
7968
|
-
ConsultationApproved
|
|
7969
|
-
ConsultationPaid
|
|
7970
|
-
ConsultationCanceled
|
|
7971
|
-
ConsultationRefundRequested
|
|
7972
|
-
ConsultationRefunded
|
|
7973
|
-
ConsultationReady
|
|
7974
|
-
}
|
|
7981
|
+
export const NotificationCode = {
|
|
7982
|
+
WelcomeEmail: 'WelcomeEmail',
|
|
7983
|
+
DirectMessageSent: 'DirectMessageSent',
|
|
7984
|
+
BookingNew: 'BookingNew',
|
|
7985
|
+
BookingUpdated: 'BookingUpdated',
|
|
7986
|
+
BookingRejected: 'BookingRejected',
|
|
7987
|
+
BookingApproved: 'BookingApproved',
|
|
7988
|
+
BookingPaid: 'BookingPaid',
|
|
7989
|
+
BookingCanceled: 'BookingCanceled',
|
|
7990
|
+
BookingRefundRequested: 'BookingRefundRequested',
|
|
7991
|
+
BookingRefunded: 'BookingRefunded',
|
|
7992
|
+
ConsultationNew: 'ConsultationNew',
|
|
7993
|
+
ConsultationUpdated: 'ConsultationUpdated',
|
|
7994
|
+
ConsultationRejected: 'ConsultationRejected',
|
|
7995
|
+
ConsultationApproved: 'ConsultationApproved',
|
|
7996
|
+
ConsultationPaid: 'ConsultationPaid',
|
|
7997
|
+
ConsultationCanceled: 'ConsultationCanceled',
|
|
7998
|
+
ConsultationRefundRequested: 'ConsultationRefundRequested',
|
|
7999
|
+
ConsultationRefunded: 'ConsultationRefunded',
|
|
8000
|
+
ConsultationReady: 'ConsultationReady'
|
|
8001
|
+
} as const;
|
|
8002
|
+
|
|
8003
|
+
export type NotificationCode = typeof NotificationCode[keyof typeof NotificationCode];
|
|
8004
|
+
|
|
7975
8005
|
|
|
7976
8006
|
/**
|
|
7977
8007
|
*
|
|
@@ -8487,11 +8517,14 @@ export interface PlansModel {
|
|
|
8487
8517
|
* @enum {string}
|
|
8488
8518
|
*/
|
|
8489
8519
|
|
|
8490
|
-
export
|
|
8491
|
-
Web
|
|
8492
|
-
IOs
|
|
8493
|
-
Android
|
|
8494
|
-
}
|
|
8520
|
+
export const Platform = {
|
|
8521
|
+
Web: 'Web',
|
|
8522
|
+
IOs: 'iOS',
|
|
8523
|
+
Android: 'Android'
|
|
8524
|
+
} as const;
|
|
8525
|
+
|
|
8526
|
+
export type Platform = typeof Platform[keyof typeof Platform];
|
|
8527
|
+
|
|
8495
8528
|
|
|
8496
8529
|
/**
|
|
8497
8530
|
*
|
|
@@ -8499,10 +8532,13 @@ export enum Platform {
|
|
|
8499
8532
|
* @enum {string}
|
|
8500
8533
|
*/
|
|
8501
8534
|
|
|
8502
|
-
export
|
|
8503
|
-
Treatment
|
|
8504
|
-
Diagnostic
|
|
8505
|
-
}
|
|
8535
|
+
export const Procedure = {
|
|
8536
|
+
Treatment: 'Treatment',
|
|
8537
|
+
Diagnostic: 'Diagnostic'
|
|
8538
|
+
} as const;
|
|
8539
|
+
|
|
8540
|
+
export type Procedure = typeof Procedure[keyof typeof Procedure];
|
|
8541
|
+
|
|
8506
8542
|
|
|
8507
8543
|
/**
|
|
8508
8544
|
*
|
|
@@ -8510,12 +8546,15 @@ export enum Procedure {
|
|
|
8510
8546
|
* @enum {string}
|
|
8511
8547
|
*/
|
|
8512
8548
|
|
|
8513
|
-
export
|
|
8514
|
-
Day
|
|
8515
|
-
Week
|
|
8516
|
-
Month
|
|
8517
|
-
Year
|
|
8518
|
-
}
|
|
8549
|
+
export const RecurringInterval = {
|
|
8550
|
+
Day: 'Day',
|
|
8551
|
+
Week: 'Week',
|
|
8552
|
+
Month: 'Month',
|
|
8553
|
+
Year: 'Year'
|
|
8554
|
+
} as const;
|
|
8555
|
+
|
|
8556
|
+
export type RecurringInterval = typeof RecurringInterval[keyof typeof RecurringInterval];
|
|
8557
|
+
|
|
8519
8558
|
|
|
8520
8559
|
/**
|
|
8521
8560
|
*
|
|
@@ -8523,11 +8562,14 @@ export enum RecurringInterval {
|
|
|
8523
8562
|
* @enum {string}
|
|
8524
8563
|
*/
|
|
8525
8564
|
|
|
8526
|
-
export
|
|
8527
|
-
NonRefundable
|
|
8528
|
-
Refundable
|
|
8529
|
-
PartialRefundable
|
|
8530
|
-
}
|
|
8565
|
+
export const RefundPolicy = {
|
|
8566
|
+
NonRefundable: 'NonRefundable',
|
|
8567
|
+
Refundable: 'Refundable',
|
|
8568
|
+
PartialRefundable: 'PartialRefundable'
|
|
8569
|
+
} as const;
|
|
8570
|
+
|
|
8571
|
+
export type RefundPolicy = typeof RefundPolicy[keyof typeof RefundPolicy];
|
|
8572
|
+
|
|
8531
8573
|
|
|
8532
8574
|
/**
|
|
8533
8575
|
*
|
|
@@ -8535,12 +8577,15 @@ export enum RefundPolicy {
|
|
|
8535
8577
|
* @enum {string}
|
|
8536
8578
|
*/
|
|
8537
8579
|
|
|
8538
|
-
export
|
|
8539
|
-
AssessmentNotCompleted
|
|
8540
|
-
PaymentNotCompleted
|
|
8541
|
-
ScheduleNotAvailable
|
|
8542
|
-
OtherReason
|
|
8543
|
-
}
|
|
8580
|
+
export const RejectReason = {
|
|
8581
|
+
AssessmentNotCompleted: 'AssessmentNotCompleted',
|
|
8582
|
+
PaymentNotCompleted: 'PaymentNotCompleted',
|
|
8583
|
+
ScheduleNotAvailable: 'ScheduleNotAvailable',
|
|
8584
|
+
OtherReason: 'OtherReason'
|
|
8585
|
+
} as const;
|
|
8586
|
+
|
|
8587
|
+
export type RejectReason = typeof RejectReason[keyof typeof RejectReason];
|
|
8588
|
+
|
|
8544
8589
|
|
|
8545
8590
|
/**
|
|
8546
8591
|
*
|
|
@@ -8548,11 +8593,14 @@ export enum RejectReason {
|
|
|
8548
8593
|
* @enum {string}
|
|
8549
8594
|
*/
|
|
8550
8595
|
|
|
8551
|
-
export
|
|
8552
|
-
Photo
|
|
8553
|
-
SurgeryReview
|
|
8554
|
-
RealStory
|
|
8555
|
-
}
|
|
8596
|
+
export const ReviewType = {
|
|
8597
|
+
Photo: 'Photo',
|
|
8598
|
+
SurgeryReview: 'SurgeryReview',
|
|
8599
|
+
RealStory: 'RealStory'
|
|
8600
|
+
} as const;
|
|
8601
|
+
|
|
8602
|
+
export type ReviewType = typeof ReviewType[keyof typeof ReviewType];
|
|
8603
|
+
|
|
8556
8604
|
|
|
8557
8605
|
/**
|
|
8558
8606
|
*
|
|
@@ -9206,14 +9254,17 @@ export interface SnsHandleModel {
|
|
|
9206
9254
|
* @enum {string}
|
|
9207
9255
|
*/
|
|
9208
9256
|
|
|
9209
|
-
export
|
|
9210
|
-
Twitter
|
|
9211
|
-
Facebook
|
|
9212
|
-
Instagram
|
|
9213
|
-
LinkedIn
|
|
9214
|
-
Youtube
|
|
9215
|
-
KakaoTalk
|
|
9216
|
-
}
|
|
9257
|
+
export const SnsType = {
|
|
9258
|
+
Twitter: 'Twitter',
|
|
9259
|
+
Facebook: 'Facebook',
|
|
9260
|
+
Instagram: 'Instagram',
|
|
9261
|
+
LinkedIn: 'LinkedIn',
|
|
9262
|
+
Youtube: 'Youtube',
|
|
9263
|
+
KakaoTalk: 'KakaoTalk'
|
|
9264
|
+
} as const;
|
|
9265
|
+
|
|
9266
|
+
export type SnsType = typeof SnsType[keyof typeof SnsType];
|
|
9267
|
+
|
|
9217
9268
|
|
|
9218
9269
|
/**
|
|
9219
9270
|
*
|
|
@@ -9221,10 +9272,13 @@ export enum SnsType {
|
|
|
9221
9272
|
* @enum {string}
|
|
9222
9273
|
*/
|
|
9223
9274
|
|
|
9224
|
-
export
|
|
9225
|
-
Ascending
|
|
9226
|
-
Descending
|
|
9227
|
-
}
|
|
9275
|
+
export const SortingOrder = {
|
|
9276
|
+
Ascending: 'Ascending',
|
|
9277
|
+
Descending: 'Descending'
|
|
9278
|
+
} as const;
|
|
9279
|
+
|
|
9280
|
+
export type SortingOrder = typeof SortingOrder[keyof typeof SortingOrder];
|
|
9281
|
+
|
|
9228
9282
|
|
|
9229
9283
|
/**
|
|
9230
9284
|
*
|
|
@@ -10579,10 +10633,13 @@ export interface UserLocationModel {
|
|
|
10579
10633
|
* @enum {string}
|
|
10580
10634
|
*/
|
|
10581
10635
|
|
|
10582
|
-
export
|
|
10583
|
-
LivesIn
|
|
10584
|
-
BirthPlace
|
|
10585
|
-
}
|
|
10636
|
+
export const UserLocationType = {
|
|
10637
|
+
LivesIn: 'LivesIn',
|
|
10638
|
+
BirthPlace: 'BirthPlace'
|
|
10639
|
+
} as const;
|
|
10640
|
+
|
|
10641
|
+
export type UserLocationType = typeof UserLocationType[keyof typeof UserLocationType];
|
|
10642
|
+
|
|
10586
10643
|
|
|
10587
10644
|
/**
|
|
10588
10645
|
*
|
|
@@ -10921,6 +10978,7 @@ export const AboutUsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
10921
10978
|
},
|
|
10922
10979
|
/**
|
|
10923
10980
|
*
|
|
10981
|
+
* @summary
|
|
10924
10982
|
* @param {string} slug
|
|
10925
10983
|
* @param {string} [languageCode]
|
|
10926
10984
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -11007,6 +11065,7 @@ export const AboutUsApiFp = function(configuration?: Configuration) {
|
|
|
11007
11065
|
},
|
|
11008
11066
|
/**
|
|
11009
11067
|
*
|
|
11068
|
+
* @summary
|
|
11010
11069
|
* @param {string} slug
|
|
11011
11070
|
* @param {string} [languageCode]
|
|
11012
11071
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -11060,6 +11119,7 @@ export const AboutUsApiFactory = function (configuration?: Configuration, basePa
|
|
|
11060
11119
|
},
|
|
11061
11120
|
/**
|
|
11062
11121
|
*
|
|
11122
|
+
* @summary
|
|
11063
11123
|
* @param {string} slug
|
|
11064
11124
|
* @param {string} [languageCode]
|
|
11065
11125
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -11116,6 +11176,7 @@ export class AboutUsApi extends BaseAPI {
|
|
|
11116
11176
|
|
|
11117
11177
|
/**
|
|
11118
11178
|
*
|
|
11179
|
+
* @summary
|
|
11119
11180
|
* @param {string} slug
|
|
11120
11181
|
* @param {string} [languageCode]
|
|
11121
11182
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12030,6 +12091,7 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
12030
12091
|
},
|
|
12031
12092
|
/**
|
|
12032
12093
|
*
|
|
12094
|
+
* @summary
|
|
12033
12095
|
* @param {string} slug
|
|
12034
12096
|
* @param {string} [languageCode]
|
|
12035
12097
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12239,6 +12301,7 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
|
|
|
12239
12301
|
},
|
|
12240
12302
|
/**
|
|
12241
12303
|
*
|
|
12304
|
+
* @summary
|
|
12242
12305
|
* @param {string} slug
|
|
12243
12306
|
* @param {string} [languageCode]
|
|
12244
12307
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12407,6 +12470,7 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
|
|
|
12407
12470
|
},
|
|
12408
12471
|
/**
|
|
12409
12472
|
*
|
|
12473
|
+
* @summary
|
|
12410
12474
|
* @param {string} slug
|
|
12411
12475
|
* @param {string} [languageCode]
|
|
12412
12476
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -12594,6 +12658,7 @@ export class ArticlesApi extends BaseAPI {
|
|
|
12594
12658
|
|
|
12595
12659
|
/**
|
|
12596
12660
|
*
|
|
12661
|
+
* @summary
|
|
12597
12662
|
* @param {string} slug
|
|
12598
12663
|
* @param {string} [languageCode]
|
|
12599
12664
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -14945,6 +15010,7 @@ export const CountriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
14945
15010
|
return {
|
|
14946
15011
|
/**
|
|
14947
15012
|
*
|
|
15013
|
+
* @summary
|
|
14948
15014
|
* @param {string} countryId
|
|
14949
15015
|
* @param {string} [languageCode]
|
|
14950
15016
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15171,6 +15237,7 @@ export const CountriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
15171
15237
|
},
|
|
15172
15238
|
/**
|
|
15173
15239
|
*
|
|
15240
|
+
* @summary
|
|
15174
15241
|
* @param {string} slug
|
|
15175
15242
|
* @param {string} [languageCode]
|
|
15176
15243
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15224,6 +15291,7 @@ export const CountriesApiFp = function(configuration?: Configuration) {
|
|
|
15224
15291
|
return {
|
|
15225
15292
|
/**
|
|
15226
15293
|
*
|
|
15294
|
+
* @summary
|
|
15227
15295
|
* @param {string} countryId
|
|
15228
15296
|
* @param {string} [languageCode]
|
|
15229
15297
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15284,6 +15352,7 @@ export const CountriesApiFp = function(configuration?: Configuration) {
|
|
|
15284
15352
|
},
|
|
15285
15353
|
/**
|
|
15286
15354
|
*
|
|
15355
|
+
* @summary
|
|
15287
15356
|
* @param {string} slug
|
|
15288
15357
|
* @param {string} [languageCode]
|
|
15289
15358
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15306,6 +15375,7 @@ export const CountriesApiFactory = function (configuration?: Configuration, base
|
|
|
15306
15375
|
return {
|
|
15307
15376
|
/**
|
|
15308
15377
|
*
|
|
15378
|
+
* @summary
|
|
15309
15379
|
* @param {string} countryId
|
|
15310
15380
|
* @param {string} [languageCode]
|
|
15311
15381
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15362,6 +15432,7 @@ export const CountriesApiFactory = function (configuration?: Configuration, base
|
|
|
15362
15432
|
},
|
|
15363
15433
|
/**
|
|
15364
15434
|
*
|
|
15435
|
+
* @summary
|
|
15365
15436
|
* @param {string} slug
|
|
15366
15437
|
* @param {string} [languageCode]
|
|
15367
15438
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15383,6 +15454,7 @@ export const CountriesApiFactory = function (configuration?: Configuration, base
|
|
|
15383
15454
|
export class CountriesApi extends BaseAPI {
|
|
15384
15455
|
/**
|
|
15385
15456
|
*
|
|
15457
|
+
* @summary
|
|
15386
15458
|
* @param {string} countryId
|
|
15387
15459
|
* @param {string} [languageCode]
|
|
15388
15460
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -15447,6 +15519,7 @@ export class CountriesApi extends BaseAPI {
|
|
|
15447
15519
|
|
|
15448
15520
|
/**
|
|
15449
15521
|
*
|
|
15522
|
+
* @summary
|
|
15450
15523
|
* @param {string} slug
|
|
15451
15524
|
* @param {string} [languageCode]
|
|
15452
15525
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -17355,6 +17428,7 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
17355
17428
|
},
|
|
17356
17429
|
/**
|
|
17357
17430
|
*
|
|
17431
|
+
* @summary
|
|
17358
17432
|
* @param {string} slug
|
|
17359
17433
|
* @param {string} [languageCode]
|
|
17360
17434
|
* @param {*} [options] Override http request option.
|
|
@@ -17467,6 +17541,7 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
17467
17541
|
},
|
|
17468
17542
|
/**
|
|
17469
17543
|
*
|
|
17544
|
+
* @summary
|
|
17470
17545
|
* @param {string} slug
|
|
17471
17546
|
* @param {string} [languageCode]
|
|
17472
17547
|
* @param {*} [options] Override http request option.
|
|
@@ -17548,6 +17623,7 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
17548
17623
|
},
|
|
17549
17624
|
/**
|
|
17550
17625
|
*
|
|
17626
|
+
* @summary
|
|
17551
17627
|
* @param {string} slug
|
|
17552
17628
|
* @param {string} [languageCode]
|
|
17553
17629
|
* @param {*} [options] Override http request option.
|
|
@@ -17636,6 +17712,7 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
17636
17712
|
|
|
17637
17713
|
/**
|
|
17638
17714
|
*
|
|
17715
|
+
* @summary
|
|
17639
17716
|
* @param {string} slug
|
|
17640
17717
|
* @param {string} [languageCode]
|
|
17641
17718
|
* @param {*} [options] Override http request option.
|
|
@@ -17890,6 +17967,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
17890
17967
|
},
|
|
17891
17968
|
/**
|
|
17892
17969
|
*
|
|
17970
|
+
* @summary
|
|
17893
17971
|
* @param {string} doctorId
|
|
17894
17972
|
* @param {string} [languageCode]
|
|
17895
17973
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18638,6 +18716,7 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
18638
18716
|
},
|
|
18639
18717
|
/**
|
|
18640
18718
|
*
|
|
18719
|
+
* @summary
|
|
18641
18720
|
* @param {string} doctorId
|
|
18642
18721
|
* @param {string} [languageCode]
|
|
18643
18722
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18883,6 +18962,7 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
18883
18962
|
},
|
|
18884
18963
|
/**
|
|
18885
18964
|
*
|
|
18965
|
+
* @summary
|
|
18886
18966
|
* @param {string} doctorId
|
|
18887
18967
|
* @param {string} [languageCode]
|
|
18888
18968
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -19125,6 +19205,7 @@ export class DoctorsApi extends BaseAPI {
|
|
|
19125
19205
|
|
|
19126
19206
|
/**
|
|
19127
19207
|
*
|
|
19208
|
+
* @summary
|
|
19128
19209
|
* @param {string} doctorId
|
|
19129
19210
|
* @param {string} [languageCode]
|
|
19130
19211
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -21474,6 +21555,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21474
21555
|
},
|
|
21475
21556
|
/**
|
|
21476
21557
|
*
|
|
21558
|
+
* @summary
|
|
21477
21559
|
* @param {string} hospitalId
|
|
21478
21560
|
* @param {string} [languageCode]
|
|
21479
21561
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -22831,6 +22913,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
22831
22913
|
},
|
|
22832
22914
|
/**
|
|
22833
22915
|
*
|
|
22916
|
+
* @summary
|
|
22834
22917
|
* @param {string} slug
|
|
22835
22918
|
* @param {string} [languageCode]
|
|
22836
22919
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23031,6 +23114,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
23031
23114
|
},
|
|
23032
23115
|
/**
|
|
23033
23116
|
*
|
|
23117
|
+
* @summary
|
|
23034
23118
|
* @param {string} hospitalId
|
|
23035
23119
|
* @param {string} [languageCode]
|
|
23036
23120
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23389,6 +23473,7 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
23389
23473
|
},
|
|
23390
23474
|
/**
|
|
23391
23475
|
*
|
|
23476
|
+
* @summary
|
|
23392
23477
|
* @param {string} slug
|
|
23393
23478
|
* @param {string} [languageCode]
|
|
23394
23479
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23549,6 +23634,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
23549
23634
|
},
|
|
23550
23635
|
/**
|
|
23551
23636
|
*
|
|
23637
|
+
* @summary
|
|
23552
23638
|
* @param {string} hospitalId
|
|
23553
23639
|
* @param {string} [languageCode]
|
|
23554
23640
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -23885,6 +23971,7 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
23885
23971
|
},
|
|
23886
23972
|
/**
|
|
23887
23973
|
*
|
|
23974
|
+
* @summary
|
|
23888
23975
|
* @param {string} slug
|
|
23889
23976
|
* @param {string} [languageCode]
|
|
23890
23977
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -24062,6 +24149,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
24062
24149
|
|
|
24063
24150
|
/**
|
|
24064
24151
|
*
|
|
24152
|
+
* @summary
|
|
24065
24153
|
* @param {string} hospitalId
|
|
24066
24154
|
* @param {string} [languageCode]
|
|
24067
24155
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -24442,6 +24530,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
24442
24530
|
|
|
24443
24531
|
/**
|
|
24444
24532
|
*
|
|
24533
|
+
* @summary
|
|
24445
24534
|
* @param {string} slug
|
|
24446
24535
|
* @param {string} [languageCode]
|
|
24447
24536
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -24604,11 +24693,11 @@ export const ImagesApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
24604
24693
|
return {
|
|
24605
24694
|
/**
|
|
24606
24695
|
*
|
|
24607
|
-
* @param {Array<
|
|
24696
|
+
* @param {Array<File>} [files]
|
|
24608
24697
|
* @param {*} [options] Override http request option.
|
|
24609
24698
|
* @throws {RequiredError}
|
|
24610
24699
|
*/
|
|
24611
|
-
apiV2ImagesPost: async (files?: Array<
|
|
24700
|
+
apiV2ImagesPost: async (files?: Array<File>, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24612
24701
|
const localVarPath = `/api/v2/images`;
|
|
24613
24702
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24614
24703
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -24658,11 +24747,11 @@ export const ImagesApiFp = function(configuration?: Configuration) {
|
|
|
24658
24747
|
return {
|
|
24659
24748
|
/**
|
|
24660
24749
|
*
|
|
24661
|
-
* @param {Array<
|
|
24750
|
+
* @param {Array<File>} [files]
|
|
24662
24751
|
* @param {*} [options] Override http request option.
|
|
24663
24752
|
* @throws {RequiredError}
|
|
24664
24753
|
*/
|
|
24665
|
-
async apiV2ImagesPost(files?: Array<
|
|
24754
|
+
async apiV2ImagesPost(files?: Array<File>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MediaModel>>> {
|
|
24666
24755
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2ImagesPost(files, options);
|
|
24667
24756
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24668
24757
|
},
|
|
@@ -24678,11 +24767,11 @@ export const ImagesApiFactory = function (configuration?: Configuration, basePat
|
|
|
24678
24767
|
return {
|
|
24679
24768
|
/**
|
|
24680
24769
|
*
|
|
24681
|
-
* @param {Array<
|
|
24770
|
+
* @param {Array<File>} [files]
|
|
24682
24771
|
* @param {*} [options] Override http request option.
|
|
24683
24772
|
* @throws {RequiredError}
|
|
24684
24773
|
*/
|
|
24685
|
-
apiV2ImagesPost(files?: Array<
|
|
24774
|
+
apiV2ImagesPost(files?: Array<File>, options?: any): AxiosPromise<Array<MediaModel>> {
|
|
24686
24775
|
return localVarFp.apiV2ImagesPost(files, options).then((request) => request(axios, basePath));
|
|
24687
24776
|
},
|
|
24688
24777
|
};
|
|
@@ -24697,12 +24786,12 @@ export const ImagesApiFactory = function (configuration?: Configuration, basePat
|
|
|
24697
24786
|
export class ImagesApi extends BaseAPI {
|
|
24698
24787
|
/**
|
|
24699
24788
|
*
|
|
24700
|
-
* @param {Array<
|
|
24789
|
+
* @param {Array<File>} [files]
|
|
24701
24790
|
* @param {*} [options] Override http request option.
|
|
24702
24791
|
* @throws {RequiredError}
|
|
24703
24792
|
* @memberof ImagesApi
|
|
24704
24793
|
*/
|
|
24705
|
-
public apiV2ImagesPost(files?: Array<
|
|
24794
|
+
public apiV2ImagesPost(files?: Array<File>, options?: AxiosRequestConfig) {
|
|
24706
24795
|
return ImagesApiFp(this.configuration).apiV2ImagesPost(files, options).then((request) => request(this.axios, this.basePath));
|
|
24707
24796
|
}
|
|
24708
24797
|
}
|
|
@@ -26846,6 +26935,7 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
26846
26935
|
},
|
|
26847
26936
|
/**
|
|
26848
26937
|
*
|
|
26938
|
+
* @summary
|
|
26849
26939
|
* @param {string} serviceReviewId
|
|
26850
26940
|
* @param {string} [languageCode]
|
|
26851
26941
|
* @param {*} [options] Override http request option.
|
|
@@ -27213,6 +27303,7 @@ export const ServiceReviewsApiFp = function(configuration?: Configuration) {
|
|
|
27213
27303
|
},
|
|
27214
27304
|
/**
|
|
27215
27305
|
*
|
|
27306
|
+
* @summary
|
|
27216
27307
|
* @param {string} serviceReviewId
|
|
27217
27308
|
* @param {string} [languageCode]
|
|
27218
27309
|
* @param {*} [options] Override http request option.
|
|
@@ -27356,6 +27447,7 @@ export const ServiceReviewsApiFactory = function (configuration?: Configuration,
|
|
|
27356
27447
|
},
|
|
27357
27448
|
/**
|
|
27358
27449
|
*
|
|
27450
|
+
* @summary
|
|
27359
27451
|
* @param {string} serviceReviewId
|
|
27360
27452
|
* @param {string} [languageCode]
|
|
27361
27453
|
* @param {*} [options] Override http request option.
|
|
@@ -27498,6 +27590,7 @@ export class ServiceReviewsApi extends BaseAPI {
|
|
|
27498
27590
|
|
|
27499
27591
|
/**
|
|
27500
27592
|
*
|
|
27593
|
+
* @summary
|
|
27501
27594
|
* @param {string} serviceReviewId
|
|
27502
27595
|
* @param {string} [languageCode]
|
|
27503
27596
|
* @param {*} [options] Override http request option.
|
|
@@ -27730,6 +27823,7 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
27730
27823
|
},
|
|
27731
27824
|
/**
|
|
27732
27825
|
*
|
|
27826
|
+
* @summary
|
|
27733
27827
|
* @param {string} serviceId
|
|
27734
27828
|
* @param {string} [languageCode]
|
|
27735
27829
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27773,6 +27867,7 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
27773
27867
|
},
|
|
27774
27868
|
/**
|
|
27775
27869
|
*
|
|
27870
|
+
* @summary
|
|
27776
27871
|
* @param {string} slug
|
|
27777
27872
|
* @param {string} [languageCode]
|
|
27778
27873
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27855,6 +27950,7 @@ export const ServicesApiFp = function(configuration?: Configuration) {
|
|
|
27855
27950
|
},
|
|
27856
27951
|
/**
|
|
27857
27952
|
*
|
|
27953
|
+
* @summary
|
|
27858
27954
|
* @param {string} serviceId
|
|
27859
27955
|
* @param {string} [languageCode]
|
|
27860
27956
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27867,6 +27963,7 @@ export const ServicesApiFp = function(configuration?: Configuration) {
|
|
|
27867
27963
|
},
|
|
27868
27964
|
/**
|
|
27869
27965
|
*
|
|
27966
|
+
* @summary
|
|
27870
27967
|
* @param {string} slug
|
|
27871
27968
|
* @param {string} [languageCode]
|
|
27872
27969
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27917,6 +28014,7 @@ export const ServicesApiFactory = function (configuration?: Configuration, baseP
|
|
|
27917
28014
|
},
|
|
27918
28015
|
/**
|
|
27919
28016
|
*
|
|
28017
|
+
* @summary
|
|
27920
28018
|
* @param {string} serviceId
|
|
27921
28019
|
* @param {string} [languageCode]
|
|
27922
28020
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27928,6 +28026,7 @@ export const ServicesApiFactory = function (configuration?: Configuration, baseP
|
|
|
27928
28026
|
},
|
|
27929
28027
|
/**
|
|
27930
28028
|
*
|
|
28029
|
+
* @summary
|
|
27931
28030
|
* @param {string} slug
|
|
27932
28031
|
* @param {string} [languageCode]
|
|
27933
28032
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27979,6 +28078,7 @@ export class ServicesApi extends BaseAPI {
|
|
|
27979
28078
|
|
|
27980
28079
|
/**
|
|
27981
28080
|
*
|
|
28081
|
+
* @summary
|
|
27982
28082
|
* @param {string} serviceId
|
|
27983
28083
|
* @param {string} [languageCode]
|
|
27984
28084
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -27992,6 +28092,7 @@ export class ServicesApi extends BaseAPI {
|
|
|
27992
28092
|
|
|
27993
28093
|
/**
|
|
27994
28094
|
*
|
|
28095
|
+
* @summary
|
|
27995
28096
|
* @param {string} slug
|
|
27996
28097
|
* @param {string} [languageCode]
|
|
27997
28098
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28418,6 +28519,7 @@ export const SpecialtiesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
28418
28519
|
},
|
|
28419
28520
|
/**
|
|
28420
28521
|
*
|
|
28522
|
+
* @summary
|
|
28421
28523
|
* @param {string} slug
|
|
28422
28524
|
* @param {string} [languageCode]
|
|
28423
28525
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28461,6 +28563,7 @@ export const SpecialtiesApiAxiosParamCreator = function (configuration?: Configu
|
|
|
28461
28563
|
},
|
|
28462
28564
|
/**
|
|
28463
28565
|
*
|
|
28566
|
+
* @summary
|
|
28464
28567
|
* @param {string} specialtyId
|
|
28465
28568
|
* @param {string} [languageCode]
|
|
28466
28569
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28659,6 +28762,7 @@ export const SpecialtiesApiFp = function(configuration?: Configuration) {
|
|
|
28659
28762
|
},
|
|
28660
28763
|
/**
|
|
28661
28764
|
*
|
|
28765
|
+
* @summary
|
|
28662
28766
|
* @param {string} slug
|
|
28663
28767
|
* @param {string} [languageCode]
|
|
28664
28768
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28671,6 +28775,7 @@ export const SpecialtiesApiFp = function(configuration?: Configuration) {
|
|
|
28671
28775
|
},
|
|
28672
28776
|
/**
|
|
28673
28777
|
*
|
|
28778
|
+
* @summary
|
|
28674
28779
|
* @param {string} specialtyId
|
|
28675
28780
|
* @param {string} [languageCode]
|
|
28676
28781
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28765,6 +28870,7 @@ export const SpecialtiesApiFactory = function (configuration?: Configuration, ba
|
|
|
28765
28870
|
},
|
|
28766
28871
|
/**
|
|
28767
28872
|
*
|
|
28873
|
+
* @summary
|
|
28768
28874
|
* @param {string} slug
|
|
28769
28875
|
* @param {string} [languageCode]
|
|
28770
28876
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28776,6 +28882,7 @@ export const SpecialtiesApiFactory = function (configuration?: Configuration, ba
|
|
|
28776
28882
|
},
|
|
28777
28883
|
/**
|
|
28778
28884
|
*
|
|
28885
|
+
* @summary
|
|
28779
28886
|
* @param {string} specialtyId
|
|
28780
28887
|
* @param {string} [languageCode]
|
|
28781
28888
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28871,6 +28978,7 @@ export class SpecialtiesApi extends BaseAPI {
|
|
|
28871
28978
|
|
|
28872
28979
|
/**
|
|
28873
28980
|
*
|
|
28981
|
+
* @summary
|
|
28874
28982
|
* @param {string} slug
|
|
28875
28983
|
* @param {string} [languageCode]
|
|
28876
28984
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -28884,6 +28992,7 @@ export class SpecialtiesApi extends BaseAPI {
|
|
|
28884
28992
|
|
|
28885
28993
|
/**
|
|
28886
28994
|
*
|
|
28995
|
+
* @summary
|
|
28887
28996
|
* @param {string} specialtyId
|
|
28888
28997
|
* @param {string} [languageCode]
|
|
28889
28998
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -29143,6 +29252,7 @@ export const SpecialtyTypesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
29143
29252
|
},
|
|
29144
29253
|
/**
|
|
29145
29254
|
*
|
|
29255
|
+
* @summary
|
|
29146
29256
|
* @param {string} slug
|
|
29147
29257
|
* @param {string} [languageCode]
|
|
29148
29258
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -29186,6 +29296,7 @@ export const SpecialtyTypesApiAxiosParamCreator = function (configuration?: Conf
|
|
|
29186
29296
|
},
|
|
29187
29297
|
/**
|
|
29188
29298
|
*
|
|
29299
|
+
* @summary
|
|
29189
29300
|
* @param {string} specialtyTypeId
|
|
29190
29301
|
* @param {string} [languageCode]
|
|
29191
29302
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -29386,6 +29497,7 @@ export const SpecialtyTypesApiFp = function(configuration?: Configuration) {
|
|
|
29386
29497
|
},
|
|
29387
29498
|
/**
|
|
29388
29499
|
*
|
|
29500
|
+
* @summary
|
|
29389
29501
|
* @param {string} slug
|
|
29390
29502
|
* @param {string} [languageCode]
|
|
29391
29503
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -29398,6 +29510,7 @@ export const SpecialtyTypesApiFp = function(configuration?: Configuration) {
|
|
|
29398
29510
|
},
|
|
29399
29511
|
/**
|
|
29400
29512
|
*
|
|
29513
|
+
* @summary
|
|
29401
29514
|
* @param {string} specialtyTypeId
|
|
29402
29515
|
* @param {string} [languageCode]
|
|
29403
29516
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -29494,6 +29607,7 @@ export const SpecialtyTypesApiFactory = function (configuration?: Configuration,
|
|
|
29494
29607
|
},
|
|
29495
29608
|
/**
|
|
29496
29609
|
*
|
|
29610
|
+
* @summary
|
|
29497
29611
|
* @param {string} slug
|
|
29498
29612
|
* @param {string} [languageCode]
|
|
29499
29613
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -29505,6 +29619,7 @@ export const SpecialtyTypesApiFactory = function (configuration?: Configuration,
|
|
|
29505
29619
|
},
|
|
29506
29620
|
/**
|
|
29507
29621
|
*
|
|
29622
|
+
* @summary
|
|
29508
29623
|
* @param {string} specialtyTypeId
|
|
29509
29624
|
* @param {string} [languageCode]
|
|
29510
29625
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -29602,6 +29717,7 @@ export class SpecialtyTypesApi extends BaseAPI {
|
|
|
29602
29717
|
|
|
29603
29718
|
/**
|
|
29604
29719
|
*
|
|
29720
|
+
* @summary
|
|
29605
29721
|
* @param {string} slug
|
|
29606
29722
|
* @param {string} [languageCode]
|
|
29607
29723
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -29615,6 +29731,7 @@ export class SpecialtyTypesApi extends BaseAPI {
|
|
|
29615
29731
|
|
|
29616
29732
|
/**
|
|
29617
29733
|
*
|
|
29734
|
+
* @summary
|
|
29618
29735
|
* @param {string} specialtyTypeId
|
|
29619
29736
|
* @param {string} [languageCode]
|
|
29620
29737
|
* @param {boolean} [returnDefaultValue]
|