ch-admin-api-client-typescript 3.1.0 → 3.1.3
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 +443 -63
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +635 -84
- package/package.json +1 -1
- package/src/api.ts +814 -175
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
|
|
@@ -4057,6 +4100,12 @@ export interface CreateFaqCategoryCommand {
|
|
|
4057
4100
|
* @memberof CreateFaqCategoryCommand
|
|
4058
4101
|
*/
|
|
4059
4102
|
'order'?: number;
|
|
4103
|
+
/**
|
|
4104
|
+
*
|
|
4105
|
+
* @type {string}
|
|
4106
|
+
* @memberof CreateFaqCategoryCommand
|
|
4107
|
+
*/
|
|
4108
|
+
'hospitalId'?: string;
|
|
4060
4109
|
}
|
|
4061
4110
|
/**
|
|
4062
4111
|
*
|
|
@@ -4088,12 +4137,6 @@ export interface CreateFaqCommand {
|
|
|
4088
4137
|
* @memberof CreateFaqCommand
|
|
4089
4138
|
*/
|
|
4090
4139
|
'faqCategoryId'?: string | null;
|
|
4091
|
-
/**
|
|
4092
|
-
*
|
|
4093
|
-
* @type {string}
|
|
4094
|
-
* @memberof CreateFaqCommand
|
|
4095
|
-
*/
|
|
4096
|
-
'hospitalId'?: string;
|
|
4097
4140
|
}
|
|
4098
4141
|
/**
|
|
4099
4142
|
*
|
|
@@ -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
|
|
@@ -6720,10 +6832,16 @@ export interface FaqCategoryItemModel {
|
|
|
6720
6832
|
'order'?: number;
|
|
6721
6833
|
/**
|
|
6722
6834
|
*
|
|
6723
|
-
* @type {
|
|
6835
|
+
* @type {string}
|
|
6724
6836
|
* @memberof FaqCategoryItemModel
|
|
6725
6837
|
*/
|
|
6726
|
-
'
|
|
6838
|
+
'hospitalId'?: string;
|
|
6839
|
+
/**
|
|
6840
|
+
*
|
|
6841
|
+
* @type {string}
|
|
6842
|
+
* @memberof FaqCategoryItemModel
|
|
6843
|
+
*/
|
|
6844
|
+
'hospitalName'?: string | null;
|
|
6727
6845
|
/**
|
|
6728
6846
|
*
|
|
6729
6847
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -6781,10 +6899,16 @@ export interface FaqCategoryModel {
|
|
|
6781
6899
|
'order'?: number;
|
|
6782
6900
|
/**
|
|
6783
6901
|
*
|
|
6784
|
-
* @type {
|
|
6902
|
+
* @type {string}
|
|
6903
|
+
* @memberof FaqCategoryModel
|
|
6904
|
+
*/
|
|
6905
|
+
'hospitalId'?: string;
|
|
6906
|
+
/**
|
|
6907
|
+
*
|
|
6908
|
+
* @type {string}
|
|
6785
6909
|
* @memberof FaqCategoryModel
|
|
6786
6910
|
*/
|
|
6787
|
-
'
|
|
6911
|
+
'hospitalName'?: string | null;
|
|
6788
6912
|
/**
|
|
6789
6913
|
*
|
|
6790
6914
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -7788,13 +7912,13 @@ export interface HospitalModel {
|
|
|
7788
7912
|
* @type {Array<WorkingDay>}
|
|
7789
7913
|
* @memberof HospitalModel
|
|
7790
7914
|
*/
|
|
7791
|
-
'
|
|
7915
|
+
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
7792
7916
|
/**
|
|
7793
7917
|
*
|
|
7794
7918
|
* @type {Array<SnsHandle>}
|
|
7795
7919
|
* @memberof HospitalModel
|
|
7796
7920
|
*/
|
|
7797
|
-
'
|
|
7921
|
+
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
7798
7922
|
}
|
|
7799
7923
|
/**
|
|
7800
7924
|
*
|
|
@@ -11944,6 +12068,12 @@ export interface UpdateDealCommand {
|
|
|
11944
12068
|
* @memberof UpdateDealCommand
|
|
11945
12069
|
*/
|
|
11946
12070
|
'photoThumbnail'?: string | null;
|
|
12071
|
+
/**
|
|
12072
|
+
*
|
|
12073
|
+
* @type {number}
|
|
12074
|
+
* @memberof UpdateDealCommand
|
|
12075
|
+
*/
|
|
12076
|
+
'serviceDuration'?: number;
|
|
11947
12077
|
/**
|
|
11948
12078
|
*
|
|
11949
12079
|
* @type {string}
|
|
@@ -12191,6 +12321,19 @@ export interface UpdateDoctorEducationCommand {
|
|
|
12191
12321
|
*/
|
|
12192
12322
|
'graduationDate'?: Date | null;
|
|
12193
12323
|
}
|
|
12324
|
+
/**
|
|
12325
|
+
*
|
|
12326
|
+
* @export
|
|
12327
|
+
* @interface UpdateDoctorLanguageCommand
|
|
12328
|
+
*/
|
|
12329
|
+
export interface UpdateDoctorLanguageCommand {
|
|
12330
|
+
/**
|
|
12331
|
+
*
|
|
12332
|
+
* @type {string}
|
|
12333
|
+
* @memberof UpdateDoctorLanguageCommand
|
|
12334
|
+
*/
|
|
12335
|
+
'language'?: string | null;
|
|
12336
|
+
}
|
|
12194
12337
|
/**
|
|
12195
12338
|
*
|
|
12196
12339
|
* @export
|
|
@@ -15395,13 +15538,14 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
15395
15538
|
* @param {SortingOrder} [sortRequestDate]
|
|
15396
15539
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15397
15540
|
* @param {boolean} [isExternal]
|
|
15541
|
+
* @param {boolean} [paymentEnabled]
|
|
15398
15542
|
* @param {number} [page]
|
|
15399
15543
|
* @param {number} [limit]
|
|
15400
15544
|
* @param {Date} [lastRetrieved]
|
|
15401
15545
|
* @param {*} [options] Override http request option.
|
|
15402
15546
|
* @throws {RequiredError}
|
|
15403
15547
|
*/
|
|
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>;
|
|
15548
|
+
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
15549
|
};
|
|
15406
15550
|
/**
|
|
15407
15551
|
* BookingsApi - functional programming interface
|
|
@@ -15469,13 +15613,14 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
15469
15613
|
* @param {SortingOrder} [sortRequestDate]
|
|
15470
15614
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15471
15615
|
* @param {boolean} [isExternal]
|
|
15616
|
+
* @param {boolean} [paymentEnabled]
|
|
15472
15617
|
* @param {number} [page]
|
|
15473
15618
|
* @param {number} [limit]
|
|
15474
15619
|
* @param {Date} [lastRetrieved]
|
|
15475
15620
|
* @param {*} [options] Override http request option.
|
|
15476
15621
|
* @throws {RequiredError}
|
|
15477
15622
|
*/
|
|
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>>;
|
|
15623
|
+
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
15624
|
};
|
|
15480
15625
|
/**
|
|
15481
15626
|
* BookingsApi - factory interface
|
|
@@ -15543,13 +15688,14 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
15543
15688
|
* @param {SortingOrder} [sortRequestDate]
|
|
15544
15689
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15545
15690
|
* @param {boolean} [isExternal]
|
|
15691
|
+
* @param {boolean} [paymentEnabled]
|
|
15546
15692
|
* @param {number} [page]
|
|
15547
15693
|
* @param {number} [limit]
|
|
15548
15694
|
* @param {Date} [lastRetrieved]
|
|
15549
15695
|
* @param {*} [options] Override http request option.
|
|
15550
15696
|
* @throws {RequiredError}
|
|
15551
15697
|
*/
|
|
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>;
|
|
15698
|
+
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
15699
|
};
|
|
15554
15700
|
/**
|
|
15555
15701
|
* BookingsApi - object-oriented interface
|
|
@@ -15625,6 +15771,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
15625
15771
|
* @param {SortingOrder} [sortRequestDate]
|
|
15626
15772
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
15627
15773
|
* @param {boolean} [isExternal]
|
|
15774
|
+
* @param {boolean} [paymentEnabled]
|
|
15628
15775
|
* @param {number} [page]
|
|
15629
15776
|
* @param {number} [limit]
|
|
15630
15777
|
* @param {Date} [lastRetrieved]
|
|
@@ -15632,7 +15779,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
15632
15779
|
* @throws {RequiredError}
|
|
15633
15780
|
* @memberof BookingsApi
|
|
15634
15781
|
*/
|
|
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>>;
|
|
15782
|
+
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
15783
|
}
|
|
15637
15784
|
/**
|
|
15638
15785
|
* CHAdminsApi - axios parameter creator
|
|
@@ -16511,13 +16658,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
16511
16658
|
* @param {SortingOrder} [sortRequestDate]
|
|
16512
16659
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16513
16660
|
* @param {boolean} [isExternal]
|
|
16661
|
+
* @param {boolean} [paymentEnabled]
|
|
16514
16662
|
* @param {number} [page]
|
|
16515
16663
|
* @param {number} [limit]
|
|
16516
16664
|
* @param {Date} [lastRetrieved]
|
|
16517
16665
|
* @param {*} [options] Override http request option.
|
|
16518
16666
|
* @throws {RequiredError}
|
|
16519
16667
|
*/
|
|
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>;
|
|
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, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16521
16669
|
};
|
|
16522
16670
|
/**
|
|
16523
16671
|
* ConsultationsApi - functional programming interface
|
|
@@ -16585,13 +16733,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
16585
16733
|
* @param {SortingOrder} [sortRequestDate]
|
|
16586
16734
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16587
16735
|
* @param {boolean} [isExternal]
|
|
16736
|
+
* @param {boolean} [paymentEnabled]
|
|
16588
16737
|
* @param {number} [page]
|
|
16589
16738
|
* @param {number} [limit]
|
|
16590
16739
|
* @param {Date} [lastRetrieved]
|
|
16591
16740
|
* @param {*} [options] Override http request option.
|
|
16592
16741
|
* @throws {RequiredError}
|
|
16593
16742
|
*/
|
|
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>>;
|
|
16743
|
+
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
16744
|
};
|
|
16596
16745
|
/**
|
|
16597
16746
|
* ConsultationsApi - factory interface
|
|
@@ -16659,13 +16808,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
16659
16808
|
* @param {SortingOrder} [sortRequestDate]
|
|
16660
16809
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16661
16810
|
* @param {boolean} [isExternal]
|
|
16811
|
+
* @param {boolean} [paymentEnabled]
|
|
16662
16812
|
* @param {number} [page]
|
|
16663
16813
|
* @param {number} [limit]
|
|
16664
16814
|
* @param {Date} [lastRetrieved]
|
|
16665
16815
|
* @param {*} [options] Override http request option.
|
|
16666
16816
|
* @throws {RequiredError}
|
|
16667
16817
|
*/
|
|
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>;
|
|
16818
|
+
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
16819
|
};
|
|
16670
16820
|
/**
|
|
16671
16821
|
* ConsultationsApi - object-oriented interface
|
|
@@ -16741,6 +16891,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
16741
16891
|
* @param {SortingOrder} [sortRequestDate]
|
|
16742
16892
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
16743
16893
|
* @param {boolean} [isExternal]
|
|
16894
|
+
* @param {boolean} [paymentEnabled]
|
|
16744
16895
|
* @param {number} [page]
|
|
16745
16896
|
* @param {number} [limit]
|
|
16746
16897
|
* @param {Date} [lastRetrieved]
|
|
@@ -16748,7 +16899,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
16748
16899
|
* @throws {RequiredError}
|
|
16749
16900
|
* @memberof ConsultationsApi
|
|
16750
16901
|
*/
|
|
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>>;
|
|
16902
|
+
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
16903
|
}
|
|
16753
16904
|
/**
|
|
16754
16905
|
* ContributorsApi - axios parameter creator
|
|
@@ -17977,6 +18128,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
17977
18128
|
* @param {string} [exceptHospitalId]
|
|
17978
18129
|
* @param {string} [exceptDealId]
|
|
17979
18130
|
* @param {Array<string>} [ids]
|
|
18131
|
+
* @param {number} [serviceDuration]
|
|
17980
18132
|
* @param {string} [languageCode]
|
|
17981
18133
|
* @param {boolean} [showHidden]
|
|
17982
18134
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -17986,7 +18138,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
17986
18138
|
* @param {*} [options] Override http request option.
|
|
17987
18139
|
* @throws {RequiredError}
|
|
17988
18140
|
*/
|
|
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>;
|
|
18141
|
+
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
18142
|
/**
|
|
17991
18143
|
*
|
|
17992
18144
|
* @summary Create a deal.
|
|
@@ -18010,6 +18162,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
18010
18162
|
* @param {string} [exceptHospitalId]
|
|
18011
18163
|
* @param {string} [exceptDealId]
|
|
18012
18164
|
* @param {Array<string>} [ids]
|
|
18165
|
+
* @param {number} [serviceDuration]
|
|
18013
18166
|
* @param {string} [languageCode]
|
|
18014
18167
|
* @param {boolean} [showHidden]
|
|
18015
18168
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18019,7 +18172,7 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
18019
18172
|
* @param {*} [options] Override http request option.
|
|
18020
18173
|
* @throws {RequiredError}
|
|
18021
18174
|
*/
|
|
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>;
|
|
18175
|
+
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
18176
|
/**
|
|
18024
18177
|
*
|
|
18025
18178
|
* @summary Get deal by slug.
|
|
@@ -18180,6 +18333,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18180
18333
|
* @param {string} [exceptHospitalId]
|
|
18181
18334
|
* @param {string} [exceptDealId]
|
|
18182
18335
|
* @param {Array<string>} [ids]
|
|
18336
|
+
* @param {number} [serviceDuration]
|
|
18183
18337
|
* @param {string} [languageCode]
|
|
18184
18338
|
* @param {boolean} [showHidden]
|
|
18185
18339
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18189,7 +18343,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18189
18343
|
* @param {*} [options] Override http request option.
|
|
18190
18344
|
* @throws {RequiredError}
|
|
18191
18345
|
*/
|
|
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>>;
|
|
18346
|
+
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
18347
|
/**
|
|
18194
18348
|
*
|
|
18195
18349
|
* @summary Create a deal.
|
|
@@ -18213,6 +18367,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18213
18367
|
* @param {string} [exceptHospitalId]
|
|
18214
18368
|
* @param {string} [exceptDealId]
|
|
18215
18369
|
* @param {Array<string>} [ids]
|
|
18370
|
+
* @param {number} [serviceDuration]
|
|
18216
18371
|
* @param {string} [languageCode]
|
|
18217
18372
|
* @param {boolean} [showHidden]
|
|
18218
18373
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18222,7 +18377,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18222
18377
|
* @param {*} [options] Override http request option.
|
|
18223
18378
|
* @throws {RequiredError}
|
|
18224
18379
|
*/
|
|
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>>;
|
|
18380
|
+
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
18381
|
/**
|
|
18227
18382
|
*
|
|
18228
18383
|
* @summary Get deal by slug.
|
|
@@ -18383,6 +18538,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18383
18538
|
* @param {string} [exceptHospitalId]
|
|
18384
18539
|
* @param {string} [exceptDealId]
|
|
18385
18540
|
* @param {Array<string>} [ids]
|
|
18541
|
+
* @param {number} [serviceDuration]
|
|
18386
18542
|
* @param {string} [languageCode]
|
|
18387
18543
|
* @param {boolean} [showHidden]
|
|
18388
18544
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18392,7 +18548,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18392
18548
|
* @param {*} [options] Override http request option.
|
|
18393
18549
|
* @throws {RequiredError}
|
|
18394
18550
|
*/
|
|
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>;
|
|
18551
|
+
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
18552
|
/**
|
|
18397
18553
|
*
|
|
18398
18554
|
* @summary Create a deal.
|
|
@@ -18416,6 +18572,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18416
18572
|
* @param {string} [exceptHospitalId]
|
|
18417
18573
|
* @param {string} [exceptDealId]
|
|
18418
18574
|
* @param {Array<string>} [ids]
|
|
18575
|
+
* @param {number} [serviceDuration]
|
|
18419
18576
|
* @param {string} [languageCode]
|
|
18420
18577
|
* @param {boolean} [showHidden]
|
|
18421
18578
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18425,7 +18582,7 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
18425
18582
|
* @param {*} [options] Override http request option.
|
|
18426
18583
|
* @throws {RequiredError}
|
|
18427
18584
|
*/
|
|
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>;
|
|
18585
|
+
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
18586
|
/**
|
|
18430
18587
|
*
|
|
18431
18588
|
* @summary Get deal by slug.
|
|
@@ -18601,6 +18758,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18601
18758
|
* @param {string} [exceptHospitalId]
|
|
18602
18759
|
* @param {string} [exceptDealId]
|
|
18603
18760
|
* @param {Array<string>} [ids]
|
|
18761
|
+
* @param {number} [serviceDuration]
|
|
18604
18762
|
* @param {string} [languageCode]
|
|
18605
18763
|
* @param {boolean} [showHidden]
|
|
18606
18764
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18611,7 +18769,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18611
18769
|
* @throws {RequiredError}
|
|
18612
18770
|
* @memberof DealsApi
|
|
18613
18771
|
*/
|
|
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>>;
|
|
18772
|
+
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
18773
|
/**
|
|
18616
18774
|
*
|
|
18617
18775
|
* @summary Create a deal.
|
|
@@ -18636,6 +18794,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18636
18794
|
* @param {string} [exceptHospitalId]
|
|
18637
18795
|
* @param {string} [exceptDealId]
|
|
18638
18796
|
* @param {Array<string>} [ids]
|
|
18797
|
+
* @param {number} [serviceDuration]
|
|
18639
18798
|
* @param {string} [languageCode]
|
|
18640
18799
|
* @param {boolean} [showHidden]
|
|
18641
18800
|
* @param {boolean} [returnDefaultValue]
|
|
@@ -18646,7 +18805,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
18646
18805
|
* @throws {RequiredError}
|
|
18647
18806
|
* @memberof DealsApi
|
|
18648
18807
|
*/
|
|
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>>;
|
|
18808
|
+
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
18809
|
/**
|
|
18651
18810
|
*
|
|
18652
18811
|
* @summary Get deal by slug.
|
|
@@ -18825,6 +18984,55 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
18825
18984
|
* @throws {RequiredError}
|
|
18826
18985
|
*/
|
|
18827
18986
|
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18987
|
+
/**
|
|
18988
|
+
*
|
|
18989
|
+
* @summary Get all DoctorLanguages.
|
|
18990
|
+
* @param {string} doctorId
|
|
18991
|
+
* @param {string} [language]
|
|
18992
|
+
* @param {number} [page]
|
|
18993
|
+
* @param {number} [limit]
|
|
18994
|
+
* @param {Date} [lastRetrieved]
|
|
18995
|
+
* @param {*} [options] Override http request option.
|
|
18996
|
+
* @throws {RequiredError}
|
|
18997
|
+
*/
|
|
18998
|
+
apiV1DoctorsDoctorIdLanguagesGet: (doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18999
|
+
/**
|
|
19000
|
+
*
|
|
19001
|
+
* @summary Delete DoctorLanguage
|
|
19002
|
+
* @param {string} doctorId
|
|
19003
|
+
* @param {string} languageId
|
|
19004
|
+
* @param {*} [options] Override http request option.
|
|
19005
|
+
* @throws {RequiredError}
|
|
19006
|
+
*/
|
|
19007
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19008
|
+
/**
|
|
19009
|
+
*
|
|
19010
|
+
* @summary Get DoctorLanguage.
|
|
19011
|
+
* @param {string} doctorId
|
|
19012
|
+
* @param {string} languageId
|
|
19013
|
+
* @param {*} [options] Override http request option.
|
|
19014
|
+
* @throws {RequiredError}
|
|
19015
|
+
*/
|
|
19016
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet: (doctorId: string, languageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19017
|
+
/**
|
|
19018
|
+
*
|
|
19019
|
+
* @summary Update DoctorLanguage.
|
|
19020
|
+
* @param {string} doctorId
|
|
19021
|
+
* @param {string} languageId
|
|
19022
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19023
|
+
* @param {*} [options] Override http request option.
|
|
19024
|
+
* @throws {RequiredError}
|
|
19025
|
+
*/
|
|
19026
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut: (doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19027
|
+
/**
|
|
19028
|
+
*
|
|
19029
|
+
* @summary Create DoctorLanguage.
|
|
19030
|
+
* @param {string} doctorId
|
|
19031
|
+
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19032
|
+
* @param {*} [options] Override http request option.
|
|
19033
|
+
* @throws {RequiredError}
|
|
19034
|
+
*/
|
|
19035
|
+
apiV1DoctorsDoctorIdLanguagesPost: (doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18828
19036
|
/**
|
|
18829
19037
|
*
|
|
18830
19038
|
* @summary Get all DoctorMedias.
|
|
@@ -19216,6 +19424,55 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
19216
19424
|
* @throws {RequiredError}
|
|
19217
19425
|
*/
|
|
19218
19426
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
19427
|
+
/**
|
|
19428
|
+
*
|
|
19429
|
+
* @summary Get all DoctorLanguages.
|
|
19430
|
+
* @param {string} doctorId
|
|
19431
|
+
* @param {string} [language]
|
|
19432
|
+
* @param {number} [page]
|
|
19433
|
+
* @param {number} [limit]
|
|
19434
|
+
* @param {Date} [lastRetrieved]
|
|
19435
|
+
* @param {*} [options] Override http request option.
|
|
19436
|
+
* @throws {RequiredError}
|
|
19437
|
+
*/
|
|
19438
|
+
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>>;
|
|
19439
|
+
/**
|
|
19440
|
+
*
|
|
19441
|
+
* @summary Delete DoctorLanguage
|
|
19442
|
+
* @param {string} doctorId
|
|
19443
|
+
* @param {string} languageId
|
|
19444
|
+
* @param {*} [options] Override http request option.
|
|
19445
|
+
* @throws {RequiredError}
|
|
19446
|
+
*/
|
|
19447
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19448
|
+
/**
|
|
19449
|
+
*
|
|
19450
|
+
* @summary Get DoctorLanguage.
|
|
19451
|
+
* @param {string} doctorId
|
|
19452
|
+
* @param {string} languageId
|
|
19453
|
+
* @param {*} [options] Override http request option.
|
|
19454
|
+
* @throws {RequiredError}
|
|
19455
|
+
*/
|
|
19456
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
19457
|
+
/**
|
|
19458
|
+
*
|
|
19459
|
+
* @summary Update DoctorLanguage.
|
|
19460
|
+
* @param {string} doctorId
|
|
19461
|
+
* @param {string} languageId
|
|
19462
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19463
|
+
* @param {*} [options] Override http request option.
|
|
19464
|
+
* @throws {RequiredError}
|
|
19465
|
+
*/
|
|
19466
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
19467
|
+
/**
|
|
19468
|
+
*
|
|
19469
|
+
* @summary Create DoctorLanguage.
|
|
19470
|
+
* @param {string} doctorId
|
|
19471
|
+
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19472
|
+
* @param {*} [options] Override http request option.
|
|
19473
|
+
* @throws {RequiredError}
|
|
19474
|
+
*/
|
|
19475
|
+
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorLanguageModel>>;
|
|
19219
19476
|
/**
|
|
19220
19477
|
*
|
|
19221
19478
|
* @summary Get all DoctorMedias.
|
|
@@ -19607,6 +19864,55 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
19607
19864
|
* @throws {RequiredError}
|
|
19608
19865
|
*/
|
|
19609
19866
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
19867
|
+
/**
|
|
19868
|
+
*
|
|
19869
|
+
* @summary Get all DoctorLanguages.
|
|
19870
|
+
* @param {string} doctorId
|
|
19871
|
+
* @param {string} [language]
|
|
19872
|
+
* @param {number} [page]
|
|
19873
|
+
* @param {number} [limit]
|
|
19874
|
+
* @param {Date} [lastRetrieved]
|
|
19875
|
+
* @param {*} [options] Override http request option.
|
|
19876
|
+
* @throws {RequiredError}
|
|
19877
|
+
*/
|
|
19878
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorLanguagesModel>;
|
|
19879
|
+
/**
|
|
19880
|
+
*
|
|
19881
|
+
* @summary Delete DoctorLanguage
|
|
19882
|
+
* @param {string} doctorId
|
|
19883
|
+
* @param {string} languageId
|
|
19884
|
+
* @param {*} [options] Override http request option.
|
|
19885
|
+
* @throws {RequiredError}
|
|
19886
|
+
*/
|
|
19887
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: any): AxiosPromise<boolean>;
|
|
19888
|
+
/**
|
|
19889
|
+
*
|
|
19890
|
+
* @summary Get DoctorLanguage.
|
|
19891
|
+
* @param {string} doctorId
|
|
19892
|
+
* @param {string} languageId
|
|
19893
|
+
* @param {*} [options] Override http request option.
|
|
19894
|
+
* @throws {RequiredError}
|
|
19895
|
+
*/
|
|
19896
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
19897
|
+
/**
|
|
19898
|
+
*
|
|
19899
|
+
* @summary Update DoctorLanguage.
|
|
19900
|
+
* @param {string} doctorId
|
|
19901
|
+
* @param {string} languageId
|
|
19902
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
19903
|
+
* @param {*} [options] Override http request option.
|
|
19904
|
+
* @throws {RequiredError}
|
|
19905
|
+
*/
|
|
19906
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand | undefined, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
19907
|
+
/**
|
|
19908
|
+
*
|
|
19909
|
+
* @summary Create DoctorLanguage.
|
|
19910
|
+
* @param {string} doctorId
|
|
19911
|
+
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
19912
|
+
* @param {*} [options] Override http request option.
|
|
19913
|
+
* @throws {RequiredError}
|
|
19914
|
+
*/
|
|
19915
|
+
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand | undefined, options?: any): AxiosPromise<DoctorLanguageModel>;
|
|
19610
19916
|
/**
|
|
19611
19917
|
*
|
|
19612
19918
|
* @summary Get all DoctorMedias.
|
|
@@ -20016,6 +20322,60 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
20016
20322
|
* @memberof DoctorsApi
|
|
20017
20323
|
*/
|
|
20018
20324
|
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
20325
|
+
/**
|
|
20326
|
+
*
|
|
20327
|
+
* @summary Get all DoctorLanguages.
|
|
20328
|
+
* @param {string} doctorId
|
|
20329
|
+
* @param {string} [language]
|
|
20330
|
+
* @param {number} [page]
|
|
20331
|
+
* @param {number} [limit]
|
|
20332
|
+
* @param {Date} [lastRetrieved]
|
|
20333
|
+
* @param {*} [options] Override http request option.
|
|
20334
|
+
* @throws {RequiredError}
|
|
20335
|
+
* @memberof DoctorsApi
|
|
20336
|
+
*/
|
|
20337
|
+
apiV1DoctorsDoctorIdLanguagesGet(doctorId: string, language?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguagesModel>>;
|
|
20338
|
+
/**
|
|
20339
|
+
*
|
|
20340
|
+
* @summary Delete DoctorLanguage
|
|
20341
|
+
* @param {string} doctorId
|
|
20342
|
+
* @param {string} languageId
|
|
20343
|
+
* @param {*} [options] Override http request option.
|
|
20344
|
+
* @throws {RequiredError}
|
|
20345
|
+
* @memberof DoctorsApi
|
|
20346
|
+
*/
|
|
20347
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdDelete(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20348
|
+
/**
|
|
20349
|
+
*
|
|
20350
|
+
* @summary Get DoctorLanguage.
|
|
20351
|
+
* @param {string} doctorId
|
|
20352
|
+
* @param {string} languageId
|
|
20353
|
+
* @param {*} [options] Override http request option.
|
|
20354
|
+
* @throws {RequiredError}
|
|
20355
|
+
* @memberof DoctorsApi
|
|
20356
|
+
*/
|
|
20357
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdGet(doctorId: string, languageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20358
|
+
/**
|
|
20359
|
+
*
|
|
20360
|
+
* @summary Update DoctorLanguage.
|
|
20361
|
+
* @param {string} doctorId
|
|
20362
|
+
* @param {string} languageId
|
|
20363
|
+
* @param {UpdateDoctorLanguageCommand} [updateDoctorLanguageCommand]
|
|
20364
|
+
* @param {*} [options] Override http request option.
|
|
20365
|
+
* @throws {RequiredError}
|
|
20366
|
+
* @memberof DoctorsApi
|
|
20367
|
+
*/
|
|
20368
|
+
apiV1DoctorsDoctorIdLanguagesLanguageIdPut(doctorId: string, languageId: string, updateDoctorLanguageCommand?: UpdateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20369
|
+
/**
|
|
20370
|
+
*
|
|
20371
|
+
* @summary Create DoctorLanguage.
|
|
20372
|
+
* @param {string} doctorId
|
|
20373
|
+
* @param {CreateDoctorLanguageCommand} [createDoctorLanguageCommand]
|
|
20374
|
+
* @param {*} [options] Override http request option.
|
|
20375
|
+
* @throws {RequiredError}
|
|
20376
|
+
* @memberof DoctorsApi
|
|
20377
|
+
*/
|
|
20378
|
+
apiV1DoctorsDoctorIdLanguagesPost(doctorId: string, createDoctorLanguageCommand?: CreateDoctorLanguageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorLanguageModel>>;
|
|
20019
20379
|
/**
|
|
20020
20380
|
*
|
|
20021
20381
|
* @summary Get all DoctorMedias.
|
|
@@ -20529,10 +20889,11 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
20529
20889
|
* @summary Get FaqCategory.
|
|
20530
20890
|
* @param {string} faqCategoryId
|
|
20531
20891
|
* @param {string} [languageCode]
|
|
20892
|
+
* @param {boolean} [returnDefaultValue]
|
|
20532
20893
|
* @param {*} [options] Override http request option.
|
|
20533
20894
|
* @throws {RequiredError}
|
|
20534
20895
|
*/
|
|
20535
|
-
apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20896
|
+
apiV1FaqcategoriesFaqCategoryIdGet: (faqCategoryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20536
20897
|
/**
|
|
20537
20898
|
*
|
|
20538
20899
|
* @summary Update FaqCategory.
|
|
@@ -20549,14 +20910,18 @@ export declare const FaqCategoriesApiAxiosParamCreator: (configuration?: Configu
|
|
|
20549
20910
|
* @param {string} [parentId]
|
|
20550
20911
|
* @param {string} [name]
|
|
20551
20912
|
* @param {string} [description]
|
|
20913
|
+
* @param {string} [hospitalId]
|
|
20914
|
+
* @param {string} [hospitalName]
|
|
20552
20915
|
* @param {string} [languageCode]
|
|
20916
|
+
* @param {boolean} [showHidden]
|
|
20917
|
+
* @param {boolean} [returnDefaultValue]
|
|
20553
20918
|
* @param {number} [page]
|
|
20554
20919
|
* @param {number} [limit]
|
|
20555
20920
|
* @param {Date} [lastRetrieved]
|
|
20556
20921
|
* @param {*} [options] Override http request option.
|
|
20557
20922
|
* @throws {RequiredError}
|
|
20558
20923
|
*/
|
|
20559
|
-
apiV1FaqcategoriesGet: (id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20924
|
+
apiV1FaqcategoriesGet: (id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20560
20925
|
/**
|
|
20561
20926
|
*
|
|
20562
20927
|
* @summary Create a FaqCategory.
|
|
@@ -20603,10 +20968,11 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
20603
20968
|
* @summary Get FaqCategory.
|
|
20604
20969
|
* @param {string} faqCategoryId
|
|
20605
20970
|
* @param {string} [languageCode]
|
|
20971
|
+
* @param {boolean} [returnDefaultValue]
|
|
20606
20972
|
* @param {*} [options] Override http request option.
|
|
20607
20973
|
* @throws {RequiredError}
|
|
20608
20974
|
*/
|
|
20609
|
-
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
20975
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
20610
20976
|
/**
|
|
20611
20977
|
*
|
|
20612
20978
|
* @summary Update FaqCategory.
|
|
@@ -20623,14 +20989,18 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
20623
20989
|
* @param {string} [parentId]
|
|
20624
20990
|
* @param {string} [name]
|
|
20625
20991
|
* @param {string} [description]
|
|
20992
|
+
* @param {string} [hospitalId]
|
|
20993
|
+
* @param {string} [hospitalName]
|
|
20626
20994
|
* @param {string} [languageCode]
|
|
20995
|
+
* @param {boolean} [showHidden]
|
|
20996
|
+
* @param {boolean} [returnDefaultValue]
|
|
20627
20997
|
* @param {number} [page]
|
|
20628
20998
|
* @param {number} [limit]
|
|
20629
20999
|
* @param {Date} [lastRetrieved]
|
|
20630
21000
|
* @param {*} [options] Override http request option.
|
|
20631
21001
|
* @throws {RequiredError}
|
|
20632
21002
|
*/
|
|
20633
|
-
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoriesModel>>;
|
|
21003
|
+
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: 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<FaqCategoriesModel>>;
|
|
20634
21004
|
/**
|
|
20635
21005
|
*
|
|
20636
21006
|
* @summary Create a FaqCategory.
|
|
@@ -20677,10 +21047,11 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
20677
21047
|
* @summary Get FaqCategory.
|
|
20678
21048
|
* @param {string} faqCategoryId
|
|
20679
21049
|
* @param {string} [languageCode]
|
|
21050
|
+
* @param {boolean} [returnDefaultValue]
|
|
20680
21051
|
* @param {*} [options] Override http request option.
|
|
20681
21052
|
* @throws {RequiredError}
|
|
20682
21053
|
*/
|
|
20683
|
-
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
21054
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<FaqCategoryModel>;
|
|
20684
21055
|
/**
|
|
20685
21056
|
*
|
|
20686
21057
|
* @summary Update FaqCategory.
|
|
@@ -20697,14 +21068,18 @@ export declare const FaqCategoriesApiFactory: (configuration?: Configuration | u
|
|
|
20697
21068
|
* @param {string} [parentId]
|
|
20698
21069
|
* @param {string} [name]
|
|
20699
21070
|
* @param {string} [description]
|
|
21071
|
+
* @param {string} [hospitalId]
|
|
21072
|
+
* @param {string} [hospitalName]
|
|
20700
21073
|
* @param {string} [languageCode]
|
|
21074
|
+
* @param {boolean} [showHidden]
|
|
21075
|
+
* @param {boolean} [returnDefaultValue]
|
|
20701
21076
|
* @param {number} [page]
|
|
20702
21077
|
* @param {number} [limit]
|
|
20703
21078
|
* @param {Date} [lastRetrieved]
|
|
20704
21079
|
* @param {*} [options] Override http request option.
|
|
20705
21080
|
* @throws {RequiredError}
|
|
20706
21081
|
*/
|
|
20707
|
-
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqCategoriesModel>;
|
|
21082
|
+
apiV1FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqCategoriesModel>;
|
|
20708
21083
|
/**
|
|
20709
21084
|
*
|
|
20710
21085
|
* @summary Create a FaqCategory.
|
|
@@ -20755,11 +21130,12 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
20755
21130
|
* @summary Get FaqCategory.
|
|
20756
21131
|
* @param {string} faqCategoryId
|
|
20757
21132
|
* @param {string} [languageCode]
|
|
21133
|
+
* @param {boolean} [returnDefaultValue]
|
|
20758
21134
|
* @param {*} [options] Override http request option.
|
|
20759
21135
|
* @throws {RequiredError}
|
|
20760
21136
|
* @memberof FaqCategoriesApi
|
|
20761
21137
|
*/
|
|
20762
|
-
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
21138
|
+
apiV1FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
20763
21139
|
/**
|
|
20764
21140
|
*
|
|
20765
21141
|
* @summary Update FaqCategory.
|
|
@@ -20777,7 +21153,11 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
20777
21153
|
* @param {string} [parentId]
|
|
20778
21154
|
* @param {string} [name]
|
|
20779
21155
|
* @param {string} [description]
|
|
21156
|
+
* @param {string} [hospitalId]
|
|
21157
|
+
* @param {string} [hospitalName]
|
|
20780
21158
|
* @param {string} [languageCode]
|
|
21159
|
+
* @param {boolean} [showHidden]
|
|
21160
|
+
* @param {boolean} [returnDefaultValue]
|
|
20781
21161
|
* @param {number} [page]
|
|
20782
21162
|
* @param {number} [limit]
|
|
20783
21163
|
* @param {Date} [lastRetrieved]
|
|
@@ -20785,7 +21165,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
20785
21165
|
* @throws {RequiredError}
|
|
20786
21166
|
* @memberof FaqCategoriesApi
|
|
20787
21167
|
*/
|
|
20788
|
-
apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel>>;
|
|
21168
|
+
apiV1FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel>>;
|
|
20789
21169
|
/**
|
|
20790
21170
|
*
|
|
20791
21171
|
* @summary Create a FaqCategory.
|
|
@@ -20824,10 +21204,11 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
20824
21204
|
* @summary Get faq.
|
|
20825
21205
|
* @param {string} faqId
|
|
20826
21206
|
* @param {string} [languageCode]
|
|
21207
|
+
* @param {boolean} [returnDefaultValue]
|
|
20827
21208
|
* @param {*} [options] Override http request option.
|
|
20828
21209
|
* @throws {RequiredError}
|
|
20829
21210
|
*/
|
|
20830
|
-
apiV1FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21211
|
+
apiV1FaqsFaqIdGet: (faqId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20831
21212
|
/**
|
|
20832
21213
|
*
|
|
20833
21214
|
* @summary Get all FaqMedias.
|
|
@@ -20898,13 +21279,14 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
20898
21279
|
* @param {string} [hospitalName]
|
|
20899
21280
|
* @param {string} [languageCode]
|
|
20900
21281
|
* @param {boolean} [showHidden]
|
|
21282
|
+
* @param {boolean} [returnDefaultValue]
|
|
20901
21283
|
* @param {number} [page]
|
|
20902
21284
|
* @param {number} [limit]
|
|
20903
21285
|
* @param {Date} [lastRetrieved]
|
|
20904
21286
|
* @param {*} [options] Override http request option.
|
|
20905
21287
|
* @throws {RequiredError}
|
|
20906
21288
|
*/
|
|
20907
|
-
apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
21289
|
+
apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
20908
21290
|
/**
|
|
20909
21291
|
*
|
|
20910
21292
|
* @summary Create a faq.
|
|
@@ -20941,10 +21323,11 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
20941
21323
|
* @summary Get faq.
|
|
20942
21324
|
* @param {string} faqId
|
|
20943
21325
|
* @param {string} [languageCode]
|
|
21326
|
+
* @param {boolean} [returnDefaultValue]
|
|
20944
21327
|
* @param {*} [options] Override http request option.
|
|
20945
21328
|
* @throws {RequiredError}
|
|
20946
21329
|
*/
|
|
20947
|
-
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
21330
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
20948
21331
|
/**
|
|
20949
21332
|
*
|
|
20950
21333
|
* @summary Get all FaqMedias.
|
|
@@ -21015,13 +21398,14 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
21015
21398
|
* @param {string} [hospitalName]
|
|
21016
21399
|
* @param {string} [languageCode]
|
|
21017
21400
|
* @param {boolean} [showHidden]
|
|
21401
|
+
* @param {boolean} [returnDefaultValue]
|
|
21018
21402
|
* @param {number} [page]
|
|
21019
21403
|
* @param {number} [limit]
|
|
21020
21404
|
* @param {Date} [lastRetrieved]
|
|
21021
21405
|
* @param {*} [options] Override http request option.
|
|
21022
21406
|
* @throws {RequiredError}
|
|
21023
21407
|
*/
|
|
21024
|
-
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
|
|
21408
|
+
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: 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<FaqsModel>>;
|
|
21025
21409
|
/**
|
|
21026
21410
|
*
|
|
21027
21411
|
* @summary Create a faq.
|
|
@@ -21058,10 +21442,11 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
|
|
|
21058
21442
|
* @summary Get faq.
|
|
21059
21443
|
* @param {string} faqId
|
|
21060
21444
|
* @param {string} [languageCode]
|
|
21445
|
+
* @param {boolean} [returnDefaultValue]
|
|
21061
21446
|
* @param {*} [options] Override http request option.
|
|
21062
21447
|
* @throws {RequiredError}
|
|
21063
21448
|
*/
|
|
21064
|
-
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: any): AxiosPromise<FaqModel>;
|
|
21449
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<FaqModel>;
|
|
21065
21450
|
/**
|
|
21066
21451
|
*
|
|
21067
21452
|
* @summary Get all FaqMedias.
|
|
@@ -21132,13 +21517,14 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
|
|
|
21132
21517
|
* @param {string} [hospitalName]
|
|
21133
21518
|
* @param {string} [languageCode]
|
|
21134
21519
|
* @param {boolean} [showHidden]
|
|
21520
|
+
* @param {boolean} [returnDefaultValue]
|
|
21135
21521
|
* @param {number} [page]
|
|
21136
21522
|
* @param {number} [limit]
|
|
21137
21523
|
* @param {Date} [lastRetrieved]
|
|
21138
21524
|
* @param {*} [options] Override http request option.
|
|
21139
21525
|
* @throws {RequiredError}
|
|
21140
21526
|
*/
|
|
21141
|
-
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
|
|
21527
|
+
apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
|
|
21142
21528
|
/**
|
|
21143
21529
|
*
|
|
21144
21530
|
* @summary Create a faq.
|
|
@@ -21178,11 +21564,12 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
21178
21564
|
* @summary Get faq.
|
|
21179
21565
|
* @param {string} faqId
|
|
21180
21566
|
* @param {string} [languageCode]
|
|
21567
|
+
* @param {boolean} [returnDefaultValue]
|
|
21181
21568
|
* @param {*} [options] Override http request option.
|
|
21182
21569
|
* @throws {RequiredError}
|
|
21183
21570
|
* @memberof FaqsApi
|
|
21184
21571
|
*/
|
|
21185
|
-
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
21572
|
+
apiV1FaqsFaqIdGet(faqId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
21186
21573
|
/**
|
|
21187
21574
|
*
|
|
21188
21575
|
* @summary Get all FaqMedias.
|
|
@@ -21259,6 +21646,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
21259
21646
|
* @param {string} [hospitalName]
|
|
21260
21647
|
* @param {string} [languageCode]
|
|
21261
21648
|
* @param {boolean} [showHidden]
|
|
21649
|
+
* @param {boolean} [returnDefaultValue]
|
|
21262
21650
|
* @param {number} [page]
|
|
21263
21651
|
* @param {number} [limit]
|
|
21264
21652
|
* @param {Date} [lastRetrieved]
|
|
@@ -21266,7 +21654,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
21266
21654
|
* @throws {RequiredError}
|
|
21267
21655
|
* @memberof FaqsApi
|
|
21268
21656
|
*/
|
|
21269
|
-
apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
|
|
21657
|
+
apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
|
|
21270
21658
|
/**
|
|
21271
21659
|
*
|
|
21272
21660
|
* @summary Create a faq.
|
|
@@ -21539,7 +21927,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21539
21927
|
*
|
|
21540
21928
|
* @summary Get all HospitalHandles.
|
|
21541
21929
|
* @param {string} hospitalId
|
|
21542
|
-
* @param {string} [hospitalId2]
|
|
21543
21930
|
* @param {string} [id]
|
|
21544
21931
|
* @param {SnsType} [snsType]
|
|
21545
21932
|
* @param {string} [handle]
|
|
@@ -21549,7 +21936,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21549
21936
|
* @param {*} [options] Override http request option.
|
|
21550
21937
|
* @throws {RequiredError}
|
|
21551
21938
|
*/
|
|
21552
|
-
apiV1HospitalsHospitalIdHandlesGet: (hospitalId: string,
|
|
21939
|
+
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>;
|
|
21553
21940
|
/**
|
|
21554
21941
|
*
|
|
21555
21942
|
* @summary Delete HospitalHandle.
|
|
@@ -21863,7 +22250,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21863
22250
|
*
|
|
21864
22251
|
* @summary Get all HospitalWorkingDays.
|
|
21865
22252
|
* @param {string} hospitalId
|
|
21866
|
-
* @param {string} [hospitalId2]
|
|
21867
22253
|
* @param {string} [id]
|
|
21868
22254
|
* @param {string} [dayOfWeek]
|
|
21869
22255
|
* @param {Date} [timeFrom]
|
|
@@ -21875,7 +22261,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
21875
22261
|
* @param {*} [options] Override http request option.
|
|
21876
22262
|
* @throws {RequiredError}
|
|
21877
22263
|
*/
|
|
21878
|
-
apiV1HospitalsHospitalIdWorkingdaysGet: (hospitalId: string,
|
|
22264
|
+
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>;
|
|
21879
22265
|
/**
|
|
21880
22266
|
*
|
|
21881
22267
|
* @summary Create HospitalWorkingDay.
|
|
@@ -22207,7 +22593,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22207
22593
|
*
|
|
22208
22594
|
* @summary Get all HospitalHandles.
|
|
22209
22595
|
* @param {string} hospitalId
|
|
22210
|
-
* @param {string} [hospitalId2]
|
|
22211
22596
|
* @param {string} [id]
|
|
22212
22597
|
* @param {SnsType} [snsType]
|
|
22213
22598
|
* @param {string} [handle]
|
|
@@ -22217,7 +22602,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22217
22602
|
* @param {*} [options] Override http request option.
|
|
22218
22603
|
* @throws {RequiredError}
|
|
22219
22604
|
*/
|
|
22220
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
22605
|
+
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>>;
|
|
22221
22606
|
/**
|
|
22222
22607
|
*
|
|
22223
22608
|
* @summary Delete HospitalHandle.
|
|
@@ -22531,7 +22916,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22531
22916
|
*
|
|
22532
22917
|
* @summary Get all HospitalWorkingDays.
|
|
22533
22918
|
* @param {string} hospitalId
|
|
22534
|
-
* @param {string} [hospitalId2]
|
|
22535
22919
|
* @param {string} [id]
|
|
22536
22920
|
* @param {string} [dayOfWeek]
|
|
22537
22921
|
* @param {Date} [timeFrom]
|
|
@@ -22543,7 +22927,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22543
22927
|
* @param {*} [options] Override http request option.
|
|
22544
22928
|
* @throws {RequiredError}
|
|
22545
22929
|
*/
|
|
22546
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
22930
|
+
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>>;
|
|
22547
22931
|
/**
|
|
22548
22932
|
*
|
|
22549
22933
|
* @summary Create HospitalWorkingDay.
|
|
@@ -22552,7 +22936,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
22552
22936
|
* @param {*} [options] Override http request option.
|
|
22553
22937
|
* @throws {RequiredError}
|
|
22554
22938
|
*/
|
|
22555
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<
|
|
22939
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
22556
22940
|
/**
|
|
22557
22941
|
*
|
|
22558
22942
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -22875,7 +23259,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
22875
23259
|
*
|
|
22876
23260
|
* @summary Get all HospitalHandles.
|
|
22877
23261
|
* @param {string} hospitalId
|
|
22878
|
-
* @param {string} [hospitalId2]
|
|
22879
23262
|
* @param {string} [id]
|
|
22880
23263
|
* @param {SnsType} [snsType]
|
|
22881
23264
|
* @param {string} [handle]
|
|
@@ -22885,7 +23268,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
22885
23268
|
* @param {*} [options] Override http request option.
|
|
22886
23269
|
* @throws {RequiredError}
|
|
22887
23270
|
*/
|
|
22888
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
23271
|
+
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>;
|
|
22889
23272
|
/**
|
|
22890
23273
|
*
|
|
22891
23274
|
* @summary Delete HospitalHandle.
|
|
@@ -23199,7 +23582,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23199
23582
|
*
|
|
23200
23583
|
* @summary Get all HospitalWorkingDays.
|
|
23201
23584
|
* @param {string} hospitalId
|
|
23202
|
-
* @param {string} [hospitalId2]
|
|
23203
23585
|
* @param {string} [id]
|
|
23204
23586
|
* @param {string} [dayOfWeek]
|
|
23205
23587
|
* @param {Date} [timeFrom]
|
|
@@ -23211,7 +23593,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23211
23593
|
* @param {*} [options] Override http request option.
|
|
23212
23594
|
* @throws {RequiredError}
|
|
23213
23595
|
*/
|
|
23214
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
23596
|
+
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>;
|
|
23215
23597
|
/**
|
|
23216
23598
|
*
|
|
23217
23599
|
* @summary Create HospitalWorkingDay.
|
|
@@ -23220,7 +23602,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
23220
23602
|
* @param {*} [options] Override http request option.
|
|
23221
23603
|
* @throws {RequiredError}
|
|
23222
23604
|
*/
|
|
23223
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<
|
|
23605
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand | undefined, options?: any): AxiosPromise<WorkingDayModel>;
|
|
23224
23606
|
/**
|
|
23225
23607
|
*
|
|
23226
23608
|
* @summary Delete HospitalWorkingDay.
|
|
@@ -23567,7 +23949,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23567
23949
|
*
|
|
23568
23950
|
* @summary Get all HospitalHandles.
|
|
23569
23951
|
* @param {string} hospitalId
|
|
23570
|
-
* @param {string} [hospitalId2]
|
|
23571
23952
|
* @param {string} [id]
|
|
23572
23953
|
* @param {SnsType} [snsType]
|
|
23573
23954
|
* @param {string} [handle]
|
|
@@ -23578,7 +23959,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23578
23959
|
* @throws {RequiredError}
|
|
23579
23960
|
* @memberof HospitalsApi
|
|
23580
23961
|
*/
|
|
23581
|
-
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string,
|
|
23962
|
+
apiV1HospitalsHospitalIdHandlesGet(hospitalId: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel>>;
|
|
23582
23963
|
/**
|
|
23583
23964
|
*
|
|
23584
23965
|
* @summary Delete HospitalHandle.
|
|
@@ -23918,7 +24299,6 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23918
24299
|
*
|
|
23919
24300
|
* @summary Get all HospitalWorkingDays.
|
|
23920
24301
|
* @param {string} hospitalId
|
|
23921
|
-
* @param {string} [hospitalId2]
|
|
23922
24302
|
* @param {string} [id]
|
|
23923
24303
|
* @param {string} [dayOfWeek]
|
|
23924
24304
|
* @param {Date} [timeFrom]
|
|
@@ -23931,7 +24311,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23931
24311
|
* @throws {RequiredError}
|
|
23932
24312
|
* @memberof HospitalsApi
|
|
23933
24313
|
*/
|
|
23934
|
-
apiV1HospitalsHospitalIdWorkingdaysGet(hospitalId: string,
|
|
24314
|
+
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>>;
|
|
23935
24315
|
/**
|
|
23936
24316
|
*
|
|
23937
24317
|
* @summary Create HospitalWorkingDay.
|
|
@@ -23941,7 +24321,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
23941
24321
|
* @throws {RequiredError}
|
|
23942
24322
|
* @memberof HospitalsApi
|
|
23943
24323
|
*/
|
|
23944
|
-
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24324
|
+
apiV1HospitalsHospitalIdWorkingdaysPost(hospitalId: string, createHospitalWorkingDayCommand?: CreateHospitalWorkingDayCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel>>;
|
|
23945
24325
|
/**
|
|
23946
24326
|
*
|
|
23947
24327
|
* @summary Delete HospitalWorkingDay.
|