ch-admin-api-client-typescript 3.0.3 → 3.1.2
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 +377 -119
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +559 -162
- package/package.json +1 -1
- package/src/api.ts +708 -262
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
|
|
@@ -7788,13 +7900,13 @@ export interface HospitalModel {
|
|
|
7788
7900
|
* @type {Array<WorkingDay>}
|
|
7789
7901
|
* @memberof HospitalModel
|
|
7790
7902
|
*/
|
|
7791
|
-
'
|
|
7903
|
+
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
7792
7904
|
/**
|
|
7793
7905
|
*
|
|
7794
7906
|
* @type {Array<SnsHandle>}
|
|
7795
7907
|
* @memberof HospitalModel
|
|
7796
7908
|
*/
|
|
7797
|
-
'
|
|
7909
|
+
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
7798
7910
|
}
|
|
7799
7911
|
/**
|
|
7800
7912
|
*
|
|
@@ -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
|
|
@@ -13573,37 +13704,6 @@ export interface UserModel {
|
|
|
13573
13704
|
*/
|
|
13574
13705
|
'locations'?: Array<UserLocationModel> | null;
|
|
13575
13706
|
}
|
|
13576
|
-
/**
|
|
13577
|
-
*
|
|
13578
|
-
* @export
|
|
13579
|
-
* @interface WeatherForecast
|
|
13580
|
-
*/
|
|
13581
|
-
export interface WeatherForecast {
|
|
13582
|
-
/**
|
|
13583
|
-
*
|
|
13584
|
-
* @type {Date}
|
|
13585
|
-
* @memberof WeatherForecast
|
|
13586
|
-
*/
|
|
13587
|
-
'date'?: Date;
|
|
13588
|
-
/**
|
|
13589
|
-
*
|
|
13590
|
-
* @type {number}
|
|
13591
|
-
* @memberof WeatherForecast
|
|
13592
|
-
*/
|
|
13593
|
-
'temperatureC'?: number;
|
|
13594
|
-
/**
|
|
13595
|
-
*
|
|
13596
|
-
* @type {number}
|
|
13597
|
-
* @memberof WeatherForecast
|
|
13598
|
-
*/
|
|
13599
|
-
'temperatureF'?: number;
|
|
13600
|
-
/**
|
|
13601
|
-
*
|
|
13602
|
-
* @type {string}
|
|
13603
|
-
* @memberof WeatherForecast
|
|
13604
|
-
*/
|
|
13605
|
-
'summary'?: string | null;
|
|
13606
|
-
}
|
|
13607
13707
|
/**
|
|
13608
13708
|
*
|
|
13609
13709
|
* @export
|
|
@@ -15426,13 +15526,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
15426
15526
|
* @param {SortingOrder} [sortRequestDate]
|
|
15427
15527
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15428
15528
|
* @param {boolean} [isExternal]
|
|
15529
|
+
* @param {boolean} [paymentEnabled]
|
|
15429
15530
|
* @param {number} [page]
|
|
15430
15531
|
* @param {number} [limit]
|
|
15431
15532
|
* @param {Date} [lastRetrieved]
|
|
15432
15533
|
* @param {*} [options] Override http request option.
|
|
15433
15534
|
* @throws {RequiredError}
|
|
15434
15535
|
*/
|
|
15435
|
-
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>;
|
|
15436
15537
|
};
|
|
15437
15538
|
/**
|
|
15438
15539
|
* BookingsApi - functional programming interface
|
|
@@ -15500,13 +15601,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
15500
15601
|
* @param {SortingOrder} [sortRequestDate]
|
|
15501
15602
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15502
15603
|
* @param {boolean} [isExternal]
|
|
15604
|
+
* @param {boolean} [paymentEnabled]
|
|
15503
15605
|
* @param {number} [page]
|
|
15504
15606
|
* @param {number} [limit]
|
|
15505
15607
|
* @param {Date} [lastRetrieved]
|
|
15506
15608
|
* @param {*} [options] Override http request option.
|
|
15507
15609
|
* @throws {RequiredError}
|
|
15508
15610
|
*/
|
|
15509
|
-
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>>;
|
|
15510
15612
|
};
|
|
15511
15613
|
/**
|
|
15512
15614
|
* BookingsApi - factory interface
|
|
@@ -15574,13 +15676,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
15574
15676
|
* @param {SortingOrder} [sortRequestDate]
|
|
15575
15677
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15576
15678
|
* @param {boolean} [isExternal]
|
|
15679
|
+
* @param {boolean} [paymentEnabled]
|
|
15577
15680
|
* @param {number} [page]
|
|
15578
15681
|
* @param {number} [limit]
|
|
15579
15682
|
* @param {Date} [lastRetrieved]
|
|
15580
15683
|
* @param {*} [options] Override http request option.
|
|
15581
15684
|
* @throws {RequiredError}
|
|
15582
15685
|
*/
|
|
15583
|
-
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>;
|
|
15584
15687
|
};
|
|
15585
15688
|
/**
|
|
15586
15689
|
* BookingsApi - object-oriented interface
|
|
@@ -15656,6 +15759,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
15656
15759
|
* @param {SortingOrder} [sortRequestDate]
|
|
15657
15760
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15658
15761
|
* @param {boolean} [isExternal]
|
|
15762
|
+
* @param {boolean} [paymentEnabled]
|
|
15659
15763
|
* @param {number} [page]
|
|
15660
15764
|
* @param {number} [limit]
|
|
15661
15765
|
* @param {Date} [lastRetrieved]
|
|
@@ -15663,7 +15767,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
15663
15767
|
* @throws {RequiredError}
|
|
15664
15768
|
* @memberof BookingsApi
|
|
15665
15769
|
*/
|
|
15666
|
-
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>>;
|
|
15667
15771
|
}
|
|
15668
15772
|
/**
|
|
15669
15773
|
* CHAdminsApi - axios parameter creator
|
|
@@ -16542,13 +16646,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
16542
16646
|
* @param {SortingOrder} [sortRequestDate]
|
|
16543
16647
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16544
16648
|
* @param {boolean} [isExternal]
|
|
16649
|
+
* @param {boolean} [paymentEnabled]
|
|
16545
16650
|
* @param {number} [page]
|
|
16546
16651
|
* @param {number} [limit]
|
|
16547
16652
|
* @param {Date} [lastRetrieved]
|
|
16548
16653
|
* @param {*} [options] Override http request option.
|
|
16549
16654
|
* @throws {RequiredError}
|
|
16550
16655
|
*/
|
|
16551
|
-
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>;
|
|
16552
16657
|
};
|
|
16553
16658
|
/**
|
|
16554
16659
|
* ConsultationsApi - functional programming interface
|
|
@@ -16616,13 +16721,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
16616
16721
|
* @param {SortingOrder} [sortRequestDate]
|
|
16617
16722
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16618
16723
|
* @param {boolean} [isExternal]
|
|
16724
|
+
* @param {boolean} [paymentEnabled]
|
|
16619
16725
|
* @param {number} [page]
|
|
16620
16726
|
* @param {number} [limit]
|
|
16621
16727
|
* @param {Date} [lastRetrieved]
|
|
16622
16728
|
* @param {*} [options] Override http request option.
|
|
16623
16729
|
* @throws {RequiredError}
|
|
16624
16730
|
*/
|
|
16625
|
-
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>>;
|
|
16626
16732
|
};
|
|
16627
16733
|
/**
|
|
16628
16734
|
* ConsultationsApi - factory interface
|
|
@@ -16690,13 +16796,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
16690
16796
|
* @param {SortingOrder} [sortRequestDate]
|
|
16691
16797
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16692
16798
|
* @param {boolean} [isExternal]
|
|
16799
|
+
* @param {boolean} [paymentEnabled]
|
|
16693
16800
|
* @param {number} [page]
|
|
16694
16801
|
* @param {number} [limit]
|
|
16695
16802
|
* @param {Date} [lastRetrieved]
|
|
16696
16803
|
* @param {*} [options] Override http request option.
|
|
16697
16804
|
* @throws {RequiredError}
|
|
16698
16805
|
*/
|
|
16699
|
-
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>;
|
|
16700
16807
|
};
|
|
16701
16808
|
/**
|
|
16702
16809
|
* ConsultationsApi - object-oriented interface
|
|
@@ -16772,6 +16879,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
16772
16879
|
* @param {SortingOrder} [sortRequestDate]
|
|
16773
16880
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16774
16881
|
* @param {boolean} [isExternal]
|
|
16882
|
+
* @param {boolean} [paymentEnabled]
|
|
16775
16883
|
* @param {number} [page]
|
|
16776
16884
|
* @param {number} [limit]
|
|
16777
16885
|
* @param {Date} [lastRetrieved]
|
|
@@ -16779,7 +16887,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
16779
16887
|
* @throws {RequiredError}
|
|
16780
16888
|
* @memberof ConsultationsApi
|
|
16781
16889
|
*/
|
|
16782
|
-
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>>;
|
|
16783
16891
|
}
|
|
16784
16892
|
/**
|
|
16785
16893
|
* ContributorsApi - axios parameter creator
|
|
@@ -18008,6 +18116,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
18008
18116
|
* @param {string} [exceptHospitalId]
|
|
18009
18117
|
* @param {string} [exceptDealId]
|
|
18010
18118
|
* @param {Array<string>} [ids]
|
|
18119
|
+
* @param {number} [serviceDuration]
|
|
18011
18120
|
* @param {string} [languageCode]
|
|
18012
18121
|
* @param {boolean} [showHidden]
|
|
18013
18122
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18017,7 +18126,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
18017
18126
|
* @param {*} [options] Override http request option.
|
|
18018
18127
|
* @throws {RequiredError}
|
|
18019
18128
|
*/
|
|
18020
|
-
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>;
|
|
18021
18130
|
/**
|
|
18022
18131
|
*
|
|
18023
18132
|
* @summary Create a deal.
|
|
@@ -18041,6 +18150,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
18041
18150
|
* @param {string} [exceptHospitalId]
|
|
18042
18151
|
* @param {string} [exceptDealId]
|
|
18043
18152
|
* @param {Array<string>} [ids]
|
|
18153
|
+
* @param {number} [serviceDuration]
|
|
18044
18154
|
* @param {string} [languageCode]
|
|
18045
18155
|
* @param {boolean} [showHidden]
|
|
18046
18156
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18050,7 +18160,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
18050
18160
|
* @param {*} [options] Override http request option.
|
|
18051
18161
|
* @throws {RequiredError}
|
|
18052
18162
|
*/
|
|
18053
|
-
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>;
|
|
18054
18164
|
/**
|
|
18055
18165
|
*
|
|
18056
18166
|
* @summary Get deal by slug.
|
|
@@ -18211,6 +18321,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18211
18321
|
* @param {string} [exceptHospitalId]
|
|
18212
18322
|
* @param {string} [exceptDealId]
|
|
18213
18323
|
* @param {Array<string>} [ids]
|
|
18324
|
+
* @param {number} [serviceDuration]
|
|
18214
18325
|
* @param {string} [languageCode]
|
|
18215
18326
|
* @param {boolean} [showHidden]
|
|
18216
18327
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18220,7 +18331,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18220
18331
|
* @param {*} [options] Override http request option.
|
|
18221
18332
|
* @throws {RequiredError}
|
|
18222
18333
|
*/
|
|
18223
|
-
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>>;
|
|
18224
18335
|
/**
|
|
18225
18336
|
*
|
|
18226
18337
|
* @summary Create a deal.
|
|
@@ -18244,6 +18355,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18244
18355
|
* @param {string} [exceptHospitalId]
|
|
18245
18356
|
* @param {string} [exceptDealId]
|
|
18246
18357
|
* @param {Array<string>} [ids]
|
|
18358
|
+
* @param {number} [serviceDuration]
|
|
18247
18359
|
* @param {string} [languageCode]
|
|
18248
18360
|
* @param {boolean} [showHidden]
|
|
18249
18361
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18253,7 +18365,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18253
18365
|
* @param {*} [options] Override http request option.
|
|
18254
18366
|
* @throws {RequiredError}
|
|
18255
18367
|
*/
|
|
18256
|
-
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>>;
|
|
18257
18369
|
/**
|
|
18258
18370
|
*
|
|
18259
18371
|
* @summary Get deal by slug.
|
|
@@ -18414,6 +18526,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18414
18526
|
* @param {string} [exceptHospitalId]
|
|
18415
18527
|
* @param {string} [exceptDealId]
|
|
18416
18528
|
* @param {Array<string>} [ids]
|
|
18529
|
+
* @param {number} [serviceDuration]
|
|
18417
18530
|
* @param {string} [languageCode]
|
|
18418
18531
|
* @param {boolean} [showHidden]
|
|
18419
18532
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18423,7 +18536,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18423
18536
|
* @param {*} [options] Override http request option.
|
|
18424
18537
|
* @throws {RequiredError}
|
|
18425
18538
|
*/
|
|
18426
|
-
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>;
|
|
18427
18540
|
/**
|
|
18428
18541
|
*
|
|
18429
18542
|
* @summary Create a deal.
|
|
@@ -18447,6 +18560,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18447
18560
|
* @param {string} [exceptHospitalId]
|
|
18448
18561
|
* @param {string} [exceptDealId]
|
|
18449
18562
|
* @param {Array<string>} [ids]
|
|
18563
|
+
* @param {number} [serviceDuration]
|
|
18450
18564
|
* @param {string} [languageCode]
|
|
18451
18565
|
* @param {boolean} [showHidden]
|
|
18452
18566
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18456,7 +18570,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18456
18570
|
* @param {*} [options] Override http request option.
|
|
18457
18571
|
* @throws {RequiredError}
|
|
18458
18572
|
*/
|
|
18459
|
-
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>;
|
|
18460
18574
|
/**
|
|
18461
18575
|
*
|
|
18462
18576
|
* @summary Get deal by slug.
|
|
@@ -18632,6 +18746,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18632
18746
|
* @param {string} [exceptHospitalId]
|
|
18633
18747
|
* @param {string} [exceptDealId]
|
|
18634
18748
|
* @param {Array<string>} [ids]
|
|
18749
|
+
* @param {number} [serviceDuration]
|
|
18635
18750
|
* @param {string} [languageCode]
|
|
18636
18751
|
* @param {boolean} [showHidden]
|
|
18637
18752
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18642,7 +18757,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18642
18757
|
* @throws {RequiredError}
|
|
18643
18758
|
* @memberof DealsApi
|
|
18644
18759
|
*/
|
|
18645
|
-
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>>;
|
|
18646
18761
|
/**
|
|
18647
18762
|
*
|
|
18648
18763
|
* @summary Create a deal.
|
|
@@ -18667,6 +18782,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18667
18782
|
* @param {string} [exceptHospitalId]
|
|
18668
18783
|
* @param {string} [exceptDealId]
|
|
18669
18784
|
* @param {Array<string>} [ids]
|
|
18785
|
+
* @param {number} [serviceDuration]
|
|
18670
18786
|
* @param {string} [languageCode]
|
|
18671
18787
|
* @param {boolean} [showHidden]
|
|
18672
18788
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18677,7 +18793,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18677
18793
|
* @throws {RequiredError}
|
|
18678
18794
|
* @memberof DealsApi
|
|
18679
18795
|
*/
|
|
18680
|
-
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>>;
|
|
18681
18797
|
/**
|
|
18682
18798
|
*
|
|
18683
18799
|
* @summary Get deal by slug.
|
|
@@ -18856,6 +18972,55 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18856
18972
|
* @throws {RequiredError}
|
|
18857
18973
|
*/
|
|
18858
18974
|
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18975
|
+
/**
|
|
18976
|
+
*
|
|
18977
|
+
* @summary Get all DoctorLanguages.
|
|
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 DoctorLanguage
|
|
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 DoctorLanguage.
|
|
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 DoctorLanguage.
|
|
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 DoctorLanguage.
|
|
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>;
|
|
18859
19024
|
/**
|
|
18860
19025
|
*
|
|
18861
19026
|
* @summary Get all DoctorMedias.
|
|
@@ -19247,6 +19412,55 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19247
19412
|
* @throws {RequiredError}
|
|
19248
19413
|
*/
|
|
19249
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 DoctorLanguages.
|
|
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 DoctorLanguage
|
|
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 DoctorLanguage.
|
|
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 DoctorLanguage.
|
|
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 DoctorLanguage.
|
|
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>>;
|
|
19250
19464
|
/**
|
|
19251
19465
|
*
|
|
19252
19466
|
* @summary Get all DoctorMedias.
|
|
@@ -19638,6 +19852,55 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19638
19852
|
* @throws {RequiredError}
|
|
19639
19853
|
*/
|
|
19640
19854
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
19855
|
+
/**
|
|
19856
|
+
*
|
|
19857
|
+
* @summary Get all DoctorLanguages.
|
|
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 DoctorLanguage
|
|
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 DoctorLanguage.
|
|
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 DoctorLanguage.
|
|
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 DoctorLanguage.
|
|
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>;
|
|
19641
19904
|
/**
|
|
19642
19905
|
*
|
|
19643
19906
|
* @summary Get all DoctorMedias.
|
|
@@ -20047,6 +20310,60 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20047
20310
|
* @memberof DoctorsApi
|
|
20048
20311
|
*/
|
|
20049
20312
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20313
|
+
/**
|
|
20314
|
+
*
|
|
20315
|
+
* @summary Get all DoctorLanguages.
|
|
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 DoctorLanguage
|
|
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 DoctorLanguage.
|
|
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 DoctorLanguage.
|
|
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 DoctorLanguage.
|
|
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>>;
|
|
20050
20367
|
/**
|
|
20051
20368
|
*
|
|
20052
20369
|
* @summary Get all DoctorMedias.
|
|
@@ -21570,7 +21887,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21570
21887
|
*
|
|
21571
21888
|
* @summary Get all HospitalHandles.
|
|
21572
21889
|
* @param {string} hospitalId
|
|
21573
|
-
* @param {string} [hospitalId2]
|
|
21574
21890
|
* @param {string} [id]
|
|
21575
21891
|
* @param {SnsType} [snsType]
|
|
21576
21892
|
* @param {string} [handle]
|
|
@@ -21580,7 +21896,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21580
21896
|
* @param {*} [options] Override http request option.
|
|
21581
21897
|
* @throws {RequiredError}
|
|
21582
21898
|
*/
|
|
21583
|
-
apiV1HospitalsHospitalIdHandlesGet: (hospitalId: string,
|
|
21899
|
+
apiV1HospitalsHospitalIdHandlesGet: (hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21584
21900
|
/**
|
|
21585
21901
|
*
|
|
21586
21902
|
* @summary Delete HospitalHandle.
|
|
@@ -21894,7 +22210,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21894
22210
|
*
|
|
21895
22211
|
* @summary Get all HospitalWorkingDays.
|
|
21896
22212
|
* @param {string} hospitalId
|
|
21897
|
-
* @param {string} [hospitalId2]
|
|
21898
22213
|
* @param {string} [id]
|
|
21899
22214
|
* @param {string} [dayOfWeek]
|
|
21900
22215
|
* @param {Date} [timeFrom]
|
|
@@ -21906,7 +22221,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21906
22221
|
* @param {*} [options] Override http request option.
|
|
21907
22222
|
* @throws {RequiredError}
|
|
21908
22223
|
*/
|
|
21909
|
-
apiV1HospitalsHospitalIdWorkingdaysGet: (hospitalId: string,
|
|
22224
|
+
apiV1HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21910
22225
|
/**
|
|
21911
22226
|
*
|
|
21912
22227
|
* @summary Create HospitalWorkingDay.
|
|
@@ -22238,7 +22553,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22238
22553
|
*
|
|
22239
22554
|
* @summary Get all HospitalHandles.
|
|
22240
22555
|
* @param {string} hospitalId
|
|
22241
|
-
* @param {string} [hospitalId2]
|
|
22242
22556
|
* @param {string} [id]
|
|
22243
22557
|
* @param {SnsType} [snsType]
|
|
22244
22558
|
* @param {string} [handle]
|
|
@@ -22248,7 +22562,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22248
22562
|
* @param {*} [options] Override http request option.
|
|
22249
22563
|
* @throws {RequiredError}
|
|
22250
22564
|
*/
|
|
22251
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
22565
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
|
|
22252
22566
|
/**
|
|
22253
22567
|
*
|
|
22254
22568
|
* @summary Delete HospitalHandle.
|
|
@@ -22562,7 +22876,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22562
22876
|
*
|
|
22563
22877
|
* @summary Get all HospitalWorkingDays.
|
|
22564
22878
|
* @param {string} hospitalId
|
|
22565
|
-
* @param {string} [hospitalId2]
|
|
22566
22879
|
* @param {string} [id]
|
|
22567
22880
|
* @param {string} [dayOfWeek]
|
|
22568
22881
|
* @param {Date} [timeFrom]
|
|
@@ -22574,7 +22887,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22574
22887
|
* @param {*} [options] Override http request option.
|
|
22575
22888
|
* @throws {RequiredError}
|
|
22576
22889
|
*/
|
|
22577
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
22890
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
|
|
22578
22891
|
/**
|
|
22579
22892
|
*
|
|
22580
22893
|
* @summary Create HospitalWorkingDay.
|
|
@@ -22583,7 +22896,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22583
22896
|
* @param {*} [options] Override http request option.
|
|
22584
22897
|
* @throws {RequiredError}
|
|
22585
22898
|
*/
|
|
22586
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
22899
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
22587
22900
|
/**
|
|
22588
22901
|
*
|
|
22589
22902
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -22906,7 +23219,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
22906
23219
|
*
|
|
22907
23220
|
* @summary Get all HospitalHandles.
|
|
22908
23221
|
* @param {string} hospitalId
|
|
22909
|
-
* @param {string} [hospitalId2]
|
|
22910
23222
|
* @param {string} [id]
|
|
22911
23223
|
* @param {SnsType} [snsType]
|
|
22912
23224
|
* @param {string} [handle]
|
|
@@ -22916,7 +23228,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
22916
23228
|
* @param {*} [options] Override http request option.
|
|
22917
23229
|
* @throws {RequiredError}
|
|
22918
23230
|
*/
|
|
22919
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
23231
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
|
|
22920
23232
|
/**
|
|
22921
23233
|
*
|
|
22922
23234
|
* @summary Delete HospitalHandle.
|
|
@@ -23230,7 +23542,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23230
23542
|
*
|
|
23231
23543
|
* @summary Get all HospitalWorkingDays.
|
|
23232
23544
|
* @param {string} hospitalId
|
|
23233
|
-
* @param {string} [hospitalId2]
|
|
23234
23545
|
* @param {string} [id]
|
|
23235
23546
|
* @param {string} [dayOfWeek]
|
|
23236
23547
|
* @param {Date} [timeFrom]
|
|
@@ -23242,7 +23553,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23242
23553
|
* @param {*} [options] Override http request option.
|
|
23243
23554
|
* @throws {RequiredError}
|
|
23244
23555
|
*/
|
|
23245
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
23556
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string | undefined, dayOfWeek?: string | undefined, timeFrom?: Date | undefined, timeTo?: Date | undefined, checkHoliday?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<WorkingDaysModel>;
|
|
23246
23557
|
/**
|
|
23247
23558
|
*
|
|
23248
23559
|
* @summary Create HospitalWorkingDay.
|
|
@@ -23251,7 +23562,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23251
23562
|
* @param {*} [options] Override http request option.
|
|
23252
23563
|
* @throws {RequiredError}
|
|
23253
23564
|
*/
|
|
23254
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<
|
|
23565
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<WorkingDayModel>;
|
|
23255
23566
|
/**
|
|
23256
23567
|
*
|
|
23257
23568
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -23598,7 +23909,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23598
23909
|
*
|
|
23599
23910
|
* @summary Get all HospitalHandles.
|
|
23600
23911
|
* @param {string} hospitalId
|
|
23601
|
-
* @param {string} [hospitalId2]
|
|
23602
23912
|
* @param {string} [id]
|
|
23603
23913
|
* @param {SnsType} [snsType]
|
|
23604
23914
|
* @param {string} [handle]
|
|
@@ -23609,7 +23919,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23609
23919
|
* @throws {RequiredError}
|
|
23610
23920
|
* @memberof HospitalsApi
|
|
23611
23921
|
*/
|
|
23612
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
23922
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel>>;
|
|
23613
23923
|
/**
|
|
23614
23924
|
*
|
|
23615
23925
|
* @summary Delete HospitalHandle.
|
|
@@ -23949,7 +24259,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23949
24259
|
*
|
|
23950
24260
|
* @summary Get all HospitalWorkingDays.
|
|
23951
24261
|
* @param {string} hospitalId
|
|
23952
|
-
* @param {string} [hospitalId2]
|
|
23953
24262
|
* @param {string} [id]
|
|
23954
24263
|
* @param {string} [dayOfWeek]
|
|
23955
24264
|
* @param {Date} [timeFrom]
|
|
@@ -23962,7 +24271,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23962
24271
|
* @throws {RequiredError}
|
|
23963
24272
|
* @memberof HospitalsApi
|
|
23964
24273
|
*/
|
|
23965
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
24274
|
+
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel>>;
|
|
23966
24275
|
/**
|
|
23967
24276
|
*
|
|
23968
24277
|
* @summary Create HospitalWorkingDay.
|
|
@@ -23972,7 +24281,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23972
24281
|
* @throws {RequiredError}
|
|
23973
24282
|
* @memberof HospitalsApi
|
|
23974
24283
|
*/
|
|
23975
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24284
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
|
|
23976
24285
|
/**
|
|
23977
24286
|
*
|
|
23978
24287
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -28577,55 +28886,4 @@ export declare class TranslationApi extends BaseAPI {
|
|
|
28577
28886
|
*/
|
|
28578
28887
|
apiV1TranslationTranslatePost(translateCommand?: TranslateCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
28579
28888
|
}
|
|
28580
|
-
/**
|
|
28581
|
-
* WeatherForecastApi - axios parameter creator
|
|
28582
|
-
* @export
|
|
28583
|
-
*/
|
|
28584
|
-
export declare const WeatherForecastApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
28585
|
-
/**
|
|
28586
|
-
*
|
|
28587
|
-
* @param {*} [options] Override http request option.
|
|
28588
|
-
* @throws {RequiredError}
|
|
28589
|
-
*/
|
|
28590
|
-
apiV1WeatherforecastGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28591
|
-
};
|
|
28592
|
-
/**
|
|
28593
|
-
* WeatherForecastApi - functional programming interface
|
|
28594
|
-
* @export
|
|
28595
|
-
*/
|
|
28596
|
-
export declare const WeatherForecastApiFp: (configuration?: Configuration | undefined) => {
|
|
28597
|
-
/**
|
|
28598
|
-
*
|
|
28599
|
-
* @param {*} [options] Override http request option.
|
|
28600
|
-
* @throws {RequiredError}
|
|
28601
|
-
*/
|
|
28602
|
-
apiV1WeatherforecastGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<WeatherForecast>>>;
|
|
28603
|
-
};
|
|
28604
|
-
/**
|
|
28605
|
-
* WeatherForecastApi - factory interface
|
|
28606
|
-
* @export
|
|
28607
|
-
*/
|
|
28608
|
-
export declare const WeatherForecastApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
28609
|
-
/**
|
|
28610
|
-
*
|
|
28611
|
-
* @param {*} [options] Override http request option.
|
|
28612
|
-
* @throws {RequiredError}
|
|
28613
|
-
*/
|
|
28614
|
-
apiV1WeatherforecastGet(options?: any): AxiosPromise<Array<WeatherForecast>>;
|
|
28615
|
-
};
|
|
28616
|
-
/**
|
|
28617
|
-
* WeatherForecastApi - object-oriented interface
|
|
28618
|
-
* @export
|
|
28619
|
-
* @class WeatherForecastApi
|
|
28620
|
-
* @extends {BaseAPI}
|
|
28621
|
-
*/
|
|
28622
|
-
export declare class WeatherForecastApi extends BaseAPI {
|
|
28623
|
-
/**
|
|
28624
|
-
*
|
|
28625
|
-
* @param {*} [options] Override http request option.
|
|
28626
|
-
* @throws {RequiredError}
|
|
28627
|
-
* @memberof WeatherForecastApi
|
|
28628
|
-
*/
|
|
28629
|
-
apiV1WeatherforecastGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WeatherForecast[]>>;
|
|
28630
|
-
}
|
|
28631
28889
|
//# sourceMappingURL=api.d.ts.map
|