ch-admin-api-client-typescript 3.1.0 → 3.1.1
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 +367 -19
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +544 -28
- package/package.json +1 -1
- package/src/api.ts +617 -30
package/lib/api.d.ts
CHANGED
|
@@ -1202,6 +1202,12 @@ export interface BookingItemModel {
|
|
|
1202
1202
|
* @memberof BookingItemModel
|
|
1203
1203
|
*/
|
|
1204
1204
|
'applicationFee'?: number;
|
|
1205
|
+
/**
|
|
1206
|
+
*
|
|
1207
|
+
* @type {boolean}
|
|
1208
|
+
* @memberof BookingItemModel
|
|
1209
|
+
*/
|
|
1210
|
+
'paymentEnabled'?: boolean;
|
|
1205
1211
|
/**
|
|
1206
1212
|
*
|
|
1207
1213
|
* @type {string}
|
|
@@ -1425,6 +1431,12 @@ export interface BookingModel {
|
|
|
1425
1431
|
* @memberof BookingModel
|
|
1426
1432
|
*/
|
|
1427
1433
|
'applicationFee'?: number;
|
|
1434
|
+
/**
|
|
1435
|
+
*
|
|
1436
|
+
* @type {boolean}
|
|
1437
|
+
* @memberof BookingModel
|
|
1438
|
+
*/
|
|
1439
|
+
'paymentEnabled'?: boolean;
|
|
1428
1440
|
/**
|
|
1429
1441
|
*
|
|
1430
1442
|
* @type {string}
|
|
@@ -2414,6 +2426,12 @@ export interface ConsultationItemModel {
|
|
|
2414
2426
|
* @memberof ConsultationItemModel
|
|
2415
2427
|
*/
|
|
2416
2428
|
'paymentId'?: string | null;
|
|
2429
|
+
/**
|
|
2430
|
+
*
|
|
2431
|
+
* @type {boolean}
|
|
2432
|
+
* @memberof ConsultationItemModel
|
|
2433
|
+
*/
|
|
2434
|
+
'paymentEnabled'?: boolean;
|
|
2417
2435
|
/**
|
|
2418
2436
|
*
|
|
2419
2437
|
* @type {number}
|
|
@@ -2697,6 +2715,12 @@ export interface ConsultationModel {
|
|
|
2697
2715
|
* @memberof ConsultationModel
|
|
2698
2716
|
*/
|
|
2699
2717
|
'paymentId'?: string | null;
|
|
2718
|
+
/**
|
|
2719
|
+
*
|
|
2720
|
+
* @type {boolean}
|
|
2721
|
+
* @memberof ConsultationModel
|
|
2722
|
+
*/
|
|
2723
|
+
'paymentEnabled'?: boolean;
|
|
2700
2724
|
/**
|
|
2701
2725
|
*
|
|
2702
2726
|
* @type {number}
|
|
@@ -3736,6 +3760,12 @@ export interface CreateDealCommand {
|
|
|
3736
3760
|
* @memberof CreateDealCommand
|
|
3737
3761
|
*/
|
|
3738
3762
|
'photoThumbnail'?: string | null;
|
|
3763
|
+
/**
|
|
3764
|
+
*
|
|
3765
|
+
* @type {number}
|
|
3766
|
+
* @memberof CreateDealCommand
|
|
3767
|
+
*/
|
|
3768
|
+
'serviceDuration'?: number;
|
|
3739
3769
|
}
|
|
3740
3770
|
/**
|
|
3741
3771
|
*
|
|
@@ -3965,6 +3995,19 @@ export interface CreateDoctorEducationCommand {
|
|
|
3965
3995
|
*/
|
|
3966
3996
|
'graduationDate'?: Date | null;
|
|
3967
3997
|
}
|
|
3998
|
+
/**
|
|
3999
|
+
*
|
|
4000
|
+
* @export
|
|
4001
|
+
* @interface CreateDoctorLanguageCommand
|
|
4002
|
+
*/
|
|
4003
|
+
export interface CreateDoctorLanguageCommand {
|
|
4004
|
+
/**
|
|
4005
|
+
*
|
|
4006
|
+
* @type {string}
|
|
4007
|
+
* @memberof CreateDoctorLanguageCommand
|
|
4008
|
+
*/
|
|
4009
|
+
'language'?: string | null;
|
|
4010
|
+
}
|
|
3968
4011
|
/**
|
|
3969
4012
|
*
|
|
3970
4013
|
* @export
|
|
@@ -6210,6 +6253,75 @@ export interface DoctorItemSimpleModel {
|
|
|
6210
6253
|
*/
|
|
6211
6254
|
'confirmed'?: boolean;
|
|
6212
6255
|
}
|
|
6256
|
+
/**
|
|
6257
|
+
*
|
|
6258
|
+
* @export
|
|
6259
|
+
* @interface DoctorLanguageItemModel
|
|
6260
|
+
*/
|
|
6261
|
+
export interface DoctorLanguageItemModel {
|
|
6262
|
+
/**
|
|
6263
|
+
*
|
|
6264
|
+
* @type {string}
|
|
6265
|
+
* @memberof DoctorLanguageItemModel
|
|
6266
|
+
*/
|
|
6267
|
+
'id'?: string;
|
|
6268
|
+
/**
|
|
6269
|
+
*
|
|
6270
|
+
* @type {string}
|
|
6271
|
+
* @memberof DoctorLanguageItemModel
|
|
6272
|
+
*/
|
|
6273
|
+
'language'?: string | null;
|
|
6274
|
+
/**
|
|
6275
|
+
*
|
|
6276
|
+
* @type {string}
|
|
6277
|
+
* @memberof DoctorLanguageItemModel
|
|
6278
|
+
*/
|
|
6279
|
+
'userId'?: string;
|
|
6280
|
+
}
|
|
6281
|
+
/**
|
|
6282
|
+
*
|
|
6283
|
+
* @export
|
|
6284
|
+
* @interface DoctorLanguageModel
|
|
6285
|
+
*/
|
|
6286
|
+
export interface DoctorLanguageModel {
|
|
6287
|
+
/**
|
|
6288
|
+
*
|
|
6289
|
+
* @type {string}
|
|
6290
|
+
* @memberof DoctorLanguageModel
|
|
6291
|
+
*/
|
|
6292
|
+
'id'?: string;
|
|
6293
|
+
/**
|
|
6294
|
+
*
|
|
6295
|
+
* @type {string}
|
|
6296
|
+
* @memberof DoctorLanguageModel
|
|
6297
|
+
*/
|
|
6298
|
+
'language'?: string | null;
|
|
6299
|
+
/**
|
|
6300
|
+
*
|
|
6301
|
+
* @type {string}
|
|
6302
|
+
* @memberof DoctorLanguageModel
|
|
6303
|
+
*/
|
|
6304
|
+
'userId'?: string;
|
|
6305
|
+
}
|
|
6306
|
+
/**
|
|
6307
|
+
*
|
|
6308
|
+
* @export
|
|
6309
|
+
* @interface DoctorLanguagesModel
|
|
6310
|
+
*/
|
|
6311
|
+
export interface DoctorLanguagesModel {
|
|
6312
|
+
/**
|
|
6313
|
+
*
|
|
6314
|
+
* @type {Array<DoctorLanguageItemModel>}
|
|
6315
|
+
* @memberof DoctorLanguagesModel
|
|
6316
|
+
*/
|
|
6317
|
+
'items'?: Array<DoctorLanguageItemModel> | null;
|
|
6318
|
+
/**
|
|
6319
|
+
*
|
|
6320
|
+
* @type {PagedListMetaData}
|
|
6321
|
+
* @memberof DoctorLanguagesModel
|
|
6322
|
+
*/
|
|
6323
|
+
'metaData'?: PagedListMetaData;
|
|
6324
|
+
}
|
|
6213
6325
|
/**
|
|
6214
6326
|
*
|
|
6215
6327
|
* @export
|
|
@@ -11944,6 +12056,12 @@ export interface UpdateDealCommand {
|
|
|
11944
12056
|
* @memberof UpdateDealCommand
|
|
11945
12057
|
*/
|
|
11946
12058
|
'photoThumbnail'?: string | null;
|
|
12059
|
+
/**
|
|
12060
|
+
*
|
|
12061
|
+
* @type {number}
|
|
12062
|
+
* @memberof UpdateDealCommand
|
|
12063
|
+
*/
|
|
12064
|
+
'serviceDuration'?: number;
|
|
11947
12065
|
/**
|
|
11948
12066
|
*
|
|
11949
12067
|
* @type {string}
|
|
@@ -12191,6 +12309,19 @@ export interface UpdateDoctorEducationCommand {
|
|
|
12191
12309
|
*/
|
|
12192
12310
|
'graduationDate'?: Date | null;
|
|
12193
12311
|
}
|
|
12312
|
+
/**
|
|
12313
|
+
*
|
|
12314
|
+
* @export
|
|
12315
|
+
* @interface UpdateDoctorLanguageCommand
|
|
12316
|
+
*/
|
|
12317
|
+
export interface UpdateDoctorLanguageCommand {
|
|
12318
|
+
/**
|
|
12319
|
+
*
|
|
12320
|
+
* @type {string}
|
|
12321
|
+
* @memberof UpdateDoctorLanguageCommand
|
|
12322
|
+
*/
|
|
12323
|
+
'language'?: string | null;
|
|
12324
|
+
}
|
|
12194
12325
|
/**
|
|
12195
12326
|
*
|
|
12196
12327
|
* @export
|
|
@@ -15395,13 +15526,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
15395
15526
|
* @param {SortingOrder} [sortRequestDate]
|
|
15396
15527
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15397
15528
|
* @param {boolean} [isExternal]
|
|
15529
|
+
* @param {boolean} [paymentEnabled]
|
|
15398
15530
|
* @param {number} [page]
|
|
15399
15531
|
* @param {number} [limit]
|
|
15400
15532
|
* @param {Date} [lastRetrieved]
|
|
15401
15533
|
* @param {*} [options] Override http request option.
|
|
15402
15534
|
* @throws {RequiredError}
|
|
15403
15535
|
*/
|
|
15404
|
-
apiV1BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15536
|
+
apiV1BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15405
15537
|
};
|
|
15406
15538
|
/**
|
|
15407
15539
|
* BookingsApi - functional programming interface
|
|
@@ -15469,13 +15601,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
15469
15601
|
* @param {SortingOrder} [sortRequestDate]
|
|
15470
15602
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15471
15603
|
* @param {boolean} [isExternal]
|
|
15604
|
+
* @param {boolean} [paymentEnabled]
|
|
15472
15605
|
* @param {number} [page]
|
|
15473
15606
|
* @param {number} [limit]
|
|
15474
15607
|
* @param {Date} [lastRetrieved]
|
|
15475
15608
|
* @param {*} [options] Override http request option.
|
|
15476
15609
|
* @throws {RequiredError}
|
|
15477
15610
|
*/
|
|
15478
|
-
apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
|
|
15611
|
+
apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
|
|
15479
15612
|
};
|
|
15480
15613
|
/**
|
|
15481
15614
|
* BookingsApi - factory interface
|
|
@@ -15543,13 +15676,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
15543
15676
|
* @param {SortingOrder} [sortRequestDate]
|
|
15544
15677
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15545
15678
|
* @param {boolean} [isExternal]
|
|
15679
|
+
* @param {boolean} [paymentEnabled]
|
|
15546
15680
|
* @param {number} [page]
|
|
15547
15681
|
* @param {number} [limit]
|
|
15548
15682
|
* @param {Date} [lastRetrieved]
|
|
15549
15683
|
* @param {*} [options] Override http request option.
|
|
15550
15684
|
* @throws {RequiredError}
|
|
15551
15685
|
*/
|
|
15552
|
-
apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
|
|
15686
|
+
apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
|
|
15553
15687
|
};
|
|
15554
15688
|
/**
|
|
15555
15689
|
* BookingsApi - object-oriented interface
|
|
@@ -15625,6 +15759,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
15625
15759
|
* @param {SortingOrder} [sortRequestDate]
|
|
15626
15760
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15627
15761
|
* @param {boolean} [isExternal]
|
|
15762
|
+
* @param {boolean} [paymentEnabled]
|
|
15628
15763
|
* @param {number} [page]
|
|
15629
15764
|
* @param {number} [limit]
|
|
15630
15765
|
* @param {Date} [lastRetrieved]
|
|
@@ -15632,7 +15767,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
15632
15767
|
* @throws {RequiredError}
|
|
15633
15768
|
* @memberof BookingsApi
|
|
15634
15769
|
*/
|
|
15635
|
-
apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
|
|
15770
|
+
apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
|
|
15636
15771
|
}
|
|
15637
15772
|
/**
|
|
15638
15773
|
* CHAdminsApi - axios parameter creator
|
|
@@ -16511,13 +16646,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
16511
16646
|
* @param {SortingOrder} [sortRequestDate]
|
|
16512
16647
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16513
16648
|
* @param {boolean} [isExternal]
|
|
16649
|
+
* @param {boolean} [paymentEnabled]
|
|
16514
16650
|
* @param {number} [page]
|
|
16515
16651
|
* @param {number} [limit]
|
|
16516
16652
|
* @param {Date} [lastRetrieved]
|
|
16517
16653
|
* @param {*} [options] Override http request option.
|
|
16518
16654
|
* @throws {RequiredError}
|
|
16519
16655
|
*/
|
|
16520
|
-
apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16656
|
+
apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16521
16657
|
};
|
|
16522
16658
|
/**
|
|
16523
16659
|
* ConsultationsApi - functional programming interface
|
|
@@ -16585,13 +16721,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
16585
16721
|
* @param {SortingOrder} [sortRequestDate]
|
|
16586
16722
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16587
16723
|
* @param {boolean} [isExternal]
|
|
16724
|
+
* @param {boolean} [paymentEnabled]
|
|
16588
16725
|
* @param {number} [page]
|
|
16589
16726
|
* @param {number} [limit]
|
|
16590
16727
|
* @param {Date} [lastRetrieved]
|
|
16591
16728
|
* @param {*} [options] Override http request option.
|
|
16592
16729
|
* @throws {RequiredError}
|
|
16593
16730
|
*/
|
|
16594
|
-
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
16731
|
+
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
16595
16732
|
};
|
|
16596
16733
|
/**
|
|
16597
16734
|
* ConsultationsApi - factory interface
|
|
@@ -16659,13 +16796,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
16659
16796
|
* @param {SortingOrder} [sortRequestDate]
|
|
16660
16797
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16661
16798
|
* @param {boolean} [isExternal]
|
|
16799
|
+
* @param {boolean} [paymentEnabled]
|
|
16662
16800
|
* @param {number} [page]
|
|
16663
16801
|
* @param {number} [limit]
|
|
16664
16802
|
* @param {Date} [lastRetrieved]
|
|
16665
16803
|
* @param {*} [options] Override http request option.
|
|
16666
16804
|
* @throws {RequiredError}
|
|
16667
16805
|
*/
|
|
16668
|
-
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
16806
|
+
apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
16669
16807
|
};
|
|
16670
16808
|
/**
|
|
16671
16809
|
* ConsultationsApi - object-oriented interface
|
|
@@ -16741,6 +16879,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
16741
16879
|
* @param {SortingOrder} [sortRequestDate]
|
|
16742
16880
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16743
16881
|
* @param {boolean} [isExternal]
|
|
16882
|
+
* @param {boolean} [paymentEnabled]
|
|
16744
16883
|
* @param {number} [page]
|
|
16745
16884
|
* @param {number} [limit]
|
|
16746
16885
|
* @param {Date} [lastRetrieved]
|
|
@@ -16748,7 +16887,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
16748
16887
|
* @throws {RequiredError}
|
|
16749
16888
|
* @memberof ConsultationsApi
|
|
16750
16889
|
*/
|
|
16751
|
-
apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
|
|
16890
|
+
apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
|
|
16752
16891
|
}
|
|
16753
16892
|
/**
|
|
16754
16893
|
* ContributorsApi - axios parameter creator
|
|
@@ -17977,6 +18116,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
17977
18116
|
* @param {string} [exceptHospitalId]
|
|
17978
18117
|
* @param {string} [exceptDealId]
|
|
17979
18118
|
* @param {Array<string>} [ids]
|
|
18119
|
+
* @param {number} [serviceDuration]
|
|
17980
18120
|
* @param {string} [languageCode]
|
|
17981
18121
|
* @param {boolean} [showHidden]
|
|
17982
18122
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -17986,7 +18126,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
17986
18126
|
* @param {*} [options] Override http request option.
|
|
17987
18127
|
* @throws {RequiredError}
|
|
17988
18128
|
*/
|
|
17989
|
-
apiV1DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18129
|
+
apiV1DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17990
18130
|
/**
|
|
17991
18131
|
*
|
|
17992
18132
|
* @summary Create a deal.
|
|
@@ -18010,6 +18150,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
18010
18150
|
* @param {string} [exceptHospitalId]
|
|
18011
18151
|
* @param {string} [exceptDealId]
|
|
18012
18152
|
* @param {Array<string>} [ids]
|
|
18153
|
+
* @param {number} [serviceDuration]
|
|
18013
18154
|
* @param {string} [languageCode]
|
|
18014
18155
|
* @param {boolean} [showHidden]
|
|
18015
18156
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18019,7 +18160,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
18019
18160
|
* @param {*} [options] Override http request option.
|
|
18020
18161
|
* @throws {RequiredError}
|
|
18021
18162
|
*/
|
|
18022
|
-
apiV1DealsSimpleGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18163
|
+
apiV1DealsSimpleGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18023
18164
|
/**
|
|
18024
18165
|
*
|
|
18025
18166
|
* @summary Get deal by slug.
|
|
@@ -18180,6 +18321,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18180
18321
|
* @param {string} [exceptHospitalId]
|
|
18181
18322
|
* @param {string} [exceptDealId]
|
|
18182
18323
|
* @param {Array<string>} [ids]
|
|
18324
|
+
* @param {number} [serviceDuration]
|
|
18183
18325
|
* @param {string} [languageCode]
|
|
18184
18326
|
* @param {boolean} [showHidden]
|
|
18185
18327
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18189,7 +18331,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18189
18331
|
* @param {*} [options] Override http request option.
|
|
18190
18332
|
* @throws {RequiredError}
|
|
18191
18333
|
*/
|
|
18192
|
-
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
18334
|
+
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
18193
18335
|
/**
|
|
18194
18336
|
*
|
|
18195
18337
|
* @summary Create a deal.
|
|
@@ -18213,6 +18355,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18213
18355
|
* @param {string} [exceptHospitalId]
|
|
18214
18356
|
* @param {string} [exceptDealId]
|
|
18215
18357
|
* @param {Array<string>} [ids]
|
|
18358
|
+
* @param {number} [serviceDuration]
|
|
18216
18359
|
* @param {string} [languageCode]
|
|
18217
18360
|
* @param {boolean} [showHidden]
|
|
18218
18361
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18222,7 +18365,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18222
18365
|
* @param {*} [options] Override http request option.
|
|
18223
18366
|
* @throws {RequiredError}
|
|
18224
18367
|
*/
|
|
18225
|
-
apiV1DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsSimpleModel>>;
|
|
18368
|
+
apiV1DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsSimpleModel>>;
|
|
18226
18369
|
/**
|
|
18227
18370
|
*
|
|
18228
18371
|
* @summary Get deal by slug.
|
|
@@ -18383,6 +18526,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18383
18526
|
* @param {string} [exceptHospitalId]
|
|
18384
18527
|
* @param {string} [exceptDealId]
|
|
18385
18528
|
* @param {Array<string>} [ids]
|
|
18529
|
+
* @param {number} [serviceDuration]
|
|
18386
18530
|
* @param {string} [languageCode]
|
|
18387
18531
|
* @param {boolean} [showHidden]
|
|
18388
18532
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18392,7 +18536,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18392
18536
|
* @param {*} [options] Override http request option.
|
|
18393
18537
|
* @throws {RequiredError}
|
|
18394
18538
|
*/
|
|
18395
|
-
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
18539
|
+
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
18396
18540
|
/**
|
|
18397
18541
|
*
|
|
18398
18542
|
* @summary Create a deal.
|
|
@@ -18416,6 +18560,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18416
18560
|
* @param {string} [exceptHospitalId]
|
|
18417
18561
|
* @param {string} [exceptDealId]
|
|
18418
18562
|
* @param {Array<string>} [ids]
|
|
18563
|
+
* @param {number} [serviceDuration]
|
|
18419
18564
|
* @param {string} [languageCode]
|
|
18420
18565
|
* @param {boolean} [showHidden]
|
|
18421
18566
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18425,7 +18570,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18425
18570
|
* @param {*} [options] Override http request option.
|
|
18426
18571
|
* @throws {RequiredError}
|
|
18427
18572
|
*/
|
|
18428
|
-
apiV1DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsSimpleModel>;
|
|
18573
|
+
apiV1DealsSimpleGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, serviceDuration?: number | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsSimpleModel>;
|
|
18429
18574
|
/**
|
|
18430
18575
|
*
|
|
18431
18576
|
* @summary Get deal by slug.
|
|
@@ -18601,6 +18746,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18601
18746
|
* @param {string} [exceptHospitalId]
|
|
18602
18747
|
* @param {string} [exceptDealId]
|
|
18603
18748
|
* @param {Array<string>} [ids]
|
|
18749
|
+
* @param {number} [serviceDuration]
|
|
18604
18750
|
* @param {string} [languageCode]
|
|
18605
18751
|
* @param {boolean} [showHidden]
|
|
18606
18752
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18611,7 +18757,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18611
18757
|
* @throws {RequiredError}
|
|
18612
18758
|
* @memberof DealsApi
|
|
18613
18759
|
*/
|
|
18614
|
-
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
18760
|
+
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, serviceDuration?: number, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
18615
18761
|
/**
|
|
18616
18762
|
*
|
|
18617
18763
|
* @summary Create a deal.
|
|
@@ -18636,6 +18782,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18636
18782
|
* @param {string} [exceptHospitalId]
|
|
18637
18783
|
* @param {string} [exceptDealId]
|
|
18638
18784
|
* @param {Array<string>} [ids]
|
|
18785
|
+
* @param {number} [serviceDuration]
|
|
18639
18786
|
* @param {string} [languageCode]
|
|
18640
18787
|
* @param {boolean} [showHidden]
|
|
18641
18788
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18646,7 +18793,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18646
18793
|
* @throws {RequiredError}
|
|
18647
18794
|
* @memberof DealsApi
|
|
18648
18795
|
*/
|
|
18649
|
-
apiV1DealsSimpleGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsSimpleModel>>;
|
|
18796
|
+
apiV1DealsSimpleGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, serviceDuration?: number, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsSimpleModel>>;
|
|
18650
18797
|
/**
|
|
18651
18798
|
*
|
|
18652
18799
|
* @summary Get deal by slug.
|
|
@@ -18825,6 +18972,55 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18825
18972
|
* @throws {RequiredError}
|
|
18826
18973
|
*/
|
|
18827
18974
|
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18975
|
+
/**
|
|
18976
|
+
*
|
|
18977
|
+
* @summary Get all DoctorEducations.
|
|
18978
|
+
* @param {string} doctorId
|
|
18979
|
+
* @param {string} [language]
|
|
18980
|
+
* @param {number} [page]
|
|
18981
|
+
* @param {number} [limit]
|
|
18982
|
+
* @param {Date} [lastRetrieved]
|
|
18983
|
+
* @param {*} [options] Override http request option.
|
|
18984
|
+
* @throws {RequiredError}
|
|
18985
|
+
*/
|
|
18986
|
+
apiV1DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18987
|
+
/**
|
|
18988
|
+
*
|
|
18989
|
+
* @summary Delete DoctorEducation
|
|
18990
|
+
* @param {string} doctorId
|
|
18991
|
+
* @param {string} languageId
|
|
18992
|
+
* @param {*} [options] Override http request option.
|
|
18993
|
+
* @throws {RequiredError}
|
|
18994
|
+
*/
|
|
18995
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18996
|
+
/**
|
|
18997
|
+
*
|
|
18998
|
+
* @summary Get DoctorEducation.
|
|
18999
|
+
* @param {string} doctorId
|
|
19000
|
+
* @param {string} languageId
|
|
19001
|
+
* @param {*} [options] Override http request option.
|
|
19002
|
+
* @throws {RequiredError}
|
|
19003
|
+
*/
|
|
19004
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19005
|
+
/**
|
|
19006
|
+
*
|
|
19007
|
+
* @summary Update DoctorEducation.
|
|
19008
|
+
* @param {string} doctorId
|
|
19009
|
+
* @param {string} languageId
|
|
19010
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19011
|
+
* @param {*} [options] Override http request option.
|
|
19012
|
+
* @throws {RequiredError}
|
|
19013
|
+
*/
|
|
19014
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut: (doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19015
|
+
/**
|
|
19016
|
+
*
|
|
19017
|
+
* @summary Create DoctorEducation.
|
|
19018
|
+
* @param {string} doctorId
|
|
19019
|
+
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19020
|
+
* @param {*} [options] Override http request option.
|
|
19021
|
+
* @throws {RequiredError}
|
|
19022
|
+
*/
|
|
19023
|
+
apiV1DoctorsDoctorIdLanguagesPost: (doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18828
19024
|
/**
|
|
18829
19025
|
*
|
|
18830
19026
|
* @summary Get all DoctorMedias.
|
|
@@ -19216,6 +19412,55 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19216
19412
|
* @throws {RequiredError}
|
|
19217
19413
|
*/
|
|
19218
19414
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
19415
|
+
/**
|
|
19416
|
+
*
|
|
19417
|
+
* @summary Get all DoctorEducations.
|
|
19418
|
+
* @param {string} doctorId
|
|
19419
|
+
* @param {string} [language]
|
|
19420
|
+
* @param {number} [page]
|
|
19421
|
+
* @param {number} [limit]
|
|
19422
|
+
* @param {Date} [lastRetrieved]
|
|
19423
|
+
* @param {*} [options] Override http request option.
|
|
19424
|
+
* @throws {RequiredError}
|
|
19425
|
+
*/
|
|
19426
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguagesModel>>;
|
|
19427
|
+
/**
|
|
19428
|
+
*
|
|
19429
|
+
* @summary Delete DoctorEducation
|
|
19430
|
+
* @param {string} doctorId
|
|
19431
|
+
* @param {string} languageId
|
|
19432
|
+
* @param {*} [options] Override http request option.
|
|
19433
|
+
* @throws {RequiredError}
|
|
19434
|
+
*/
|
|
19435
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19436
|
+
/**
|
|
19437
|
+
*
|
|
19438
|
+
* @summary Get DoctorEducation.
|
|
19439
|
+
* @param {string} doctorId
|
|
19440
|
+
* @param {string} languageId
|
|
19441
|
+
* @param {*} [options] Override http request option.
|
|
19442
|
+
* @throws {RequiredError}
|
|
19443
|
+
*/
|
|
19444
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
19445
|
+
/**
|
|
19446
|
+
*
|
|
19447
|
+
* @summary Update DoctorEducation.
|
|
19448
|
+
* @param {string} doctorId
|
|
19449
|
+
* @param {string} languageId
|
|
19450
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19451
|
+
* @param {*} [options] Override http request option.
|
|
19452
|
+
* @throws {RequiredError}
|
|
19453
|
+
*/
|
|
19454
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
19455
|
+
/**
|
|
19456
|
+
*
|
|
19457
|
+
* @summary Create DoctorEducation.
|
|
19458
|
+
* @param {string} doctorId
|
|
19459
|
+
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19460
|
+
* @param {*} [options] Override http request option.
|
|
19461
|
+
* @throws {RequiredError}
|
|
19462
|
+
*/
|
|
19463
|
+
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
19219
19464
|
/**
|
|
19220
19465
|
*
|
|
19221
19466
|
* @summary Get all DoctorMedias.
|
|
@@ -19607,6 +19852,55 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19607
19852
|
* @throws {RequiredError}
|
|
19608
19853
|
*/
|
|
19609
19854
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
19855
|
+
/**
|
|
19856
|
+
*
|
|
19857
|
+
* @summary Get all DoctorEducations.
|
|
19858
|
+
* @param {string} doctorId
|
|
19859
|
+
* @param {string} [language]
|
|
19860
|
+
* @param {number} [page]
|
|
19861
|
+
* @param {number} [limit]
|
|
19862
|
+
* @param {Date} [lastRetrieved]
|
|
19863
|
+
* @param {*} [options] Override http request option.
|
|
19864
|
+
* @throws {RequiredError}
|
|
19865
|
+
*/
|
|
19866
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
19867
|
+
/**
|
|
19868
|
+
*
|
|
19869
|
+
* @summary Delete DoctorEducation
|
|
19870
|
+
* @param {string} doctorId
|
|
19871
|
+
* @param {string} languageId
|
|
19872
|
+
* @param {*} [options] Override http request option.
|
|
19873
|
+
* @throws {RequiredError}
|
|
19874
|
+
*/
|
|
19875
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: any): AxiosPromise<boolean>;
|
|
19876
|
+
/**
|
|
19877
|
+
*
|
|
19878
|
+
* @summary Get DoctorEducation.
|
|
19879
|
+
* @param {string} doctorId
|
|
19880
|
+
* @param {string} languageId
|
|
19881
|
+
* @param {*} [options] Override http request option.
|
|
19882
|
+
* @throws {RequiredError}
|
|
19883
|
+
*/
|
|
19884
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
19885
|
+
/**
|
|
19886
|
+
*
|
|
19887
|
+
* @summary Update DoctorEducation.
|
|
19888
|
+
* @param {string} doctorId
|
|
19889
|
+
* @param {string} languageId
|
|
19890
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19891
|
+
* @param {*} [options] Override http request option.
|
|
19892
|
+
* @throws {RequiredError}
|
|
19893
|
+
*/
|
|
19894
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
19895
|
+
/**
|
|
19896
|
+
*
|
|
19897
|
+
* @summary Create DoctorEducation.
|
|
19898
|
+
* @param {string} doctorId
|
|
19899
|
+
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19900
|
+
* @param {*} [options] Override http request option.
|
|
19901
|
+
* @throws {RequiredError}
|
|
19902
|
+
*/
|
|
19903
|
+
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand | undefined, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
19610
19904
|
/**
|
|
19611
19905
|
*
|
|
19612
19906
|
* @summary Get all DoctorMedias.
|
|
@@ -20016,6 +20310,60 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20016
20310
|
* @memberof DoctorsApi
|
|
20017
20311
|
*/
|
|
20018
20312
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20313
|
+
/**
|
|
20314
|
+
*
|
|
20315
|
+
* @summary Get all DoctorEducations.
|
|
20316
|
+
* @param {string} doctorId
|
|
20317
|
+
* @param {string} [language]
|
|
20318
|
+
* @param {number} [page]
|
|
20319
|
+
* @param {number} [limit]
|
|
20320
|
+
* @param {Date} [lastRetrieved]
|
|
20321
|
+
* @param {*} [options] Override http request option.
|
|
20322
|
+
* @throws {RequiredError}
|
|
20323
|
+
* @memberof DoctorsApi
|
|
20324
|
+
*/
|
|
20325
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel>>;
|
|
20326
|
+
/**
|
|
20327
|
+
*
|
|
20328
|
+
* @summary Delete DoctorEducation
|
|
20329
|
+
* @param {string} doctorId
|
|
20330
|
+
* @param {string} languageId
|
|
20331
|
+
* @param {*} [options] Override http request option.
|
|
20332
|
+
* @throws {RequiredError}
|
|
20333
|
+
* @memberof DoctorsApi
|
|
20334
|
+
*/
|
|
20335
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20336
|
+
/**
|
|
20337
|
+
*
|
|
20338
|
+
* @summary Get DoctorEducation.
|
|
20339
|
+
* @param {string} doctorId
|
|
20340
|
+
* @param {string} languageId
|
|
20341
|
+
* @param {*} [options] Override http request option.
|
|
20342
|
+
* @throws {RequiredError}
|
|
20343
|
+
* @memberof DoctorsApi
|
|
20344
|
+
*/
|
|
20345
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20346
|
+
/**
|
|
20347
|
+
*
|
|
20348
|
+
* @summary Update DoctorEducation.
|
|
20349
|
+
* @param {string} doctorId
|
|
20350
|
+
* @param {string} languageId
|
|
20351
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20352
|
+
* @param {*} [options] Override http request option.
|
|
20353
|
+
* @throws {RequiredError}
|
|
20354
|
+
* @memberof DoctorsApi
|
|
20355
|
+
*/
|
|
20356
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20357
|
+
/**
|
|
20358
|
+
*
|
|
20359
|
+
* @summary Create DoctorEducation.
|
|
20360
|
+
* @param {string} doctorId
|
|
20361
|
+
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
20362
|
+
* @param {*} [options] Override http request option.
|
|
20363
|
+
* @throws {RequiredError}
|
|
20364
|
+
* @memberof DoctorsApi
|
|
20365
|
+
*/
|
|
20366
|
+
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20019
20367
|
/**
|
|
20020
20368
|
*
|
|
20021
20369
|
* @summary Get all DoctorMedias.
|
|
@@ -22552,7 +22900,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22552
22900
|
* @param {*} [options] Override http request option.
|
|
22553
22901
|
* @throws {RequiredError}
|
|
22554
22902
|
*/
|
|
22555
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
22903
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
|
|
22556
22904
|
/**
|
|
22557
22905
|
*
|
|
22558
22906
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -23220,7 +23568,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23220
23568
|
* @param {*} [options] Override http request option.
|
|
23221
23569
|
* @throws {RequiredError}
|
|
23222
23570
|
*/
|
|
23223
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<
|
|
23571
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<WorkingDaysModel>;
|
|
23224
23572
|
/**
|
|
23225
23573
|
*
|
|
23226
23574
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -23941,7 +24289,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23941
24289
|
* @throws {RequiredError}
|
|
23942
24290
|
* @memberof HospitalsApi
|
|
23943
24291
|
*/
|
|
23944
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24292
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel>>;
|
|
23945
24293
|
/**
|
|
23946
24294
|
*
|
|
23947
24295
|
* @summary Delete HospitalWorkingDay.
|