ch-api-client-typescript2 2.9.5 → 2.9.8
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 +496 -435
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +647 -993
- package/package.json +1 -1
- package/src/api.ts +886 -961
package/lib/api.d.ts
CHANGED
|
@@ -355,44 +355,6 @@ export interface AdminMessageModel {
|
|
|
355
355
|
*/
|
|
356
356
|
'updated_at'?: number;
|
|
357
357
|
}
|
|
358
|
-
/**
|
|
359
|
-
*
|
|
360
|
-
* @export
|
|
361
|
-
* @interface ApproveBookingCommand
|
|
362
|
-
*/
|
|
363
|
-
export interface ApproveBookingCommand {
|
|
364
|
-
/**
|
|
365
|
-
*
|
|
366
|
-
* @type {Date}
|
|
367
|
-
* @memberof ApproveBookingCommand
|
|
368
|
-
*/
|
|
369
|
-
'confirmedDateStart'?: Date | null;
|
|
370
|
-
/**
|
|
371
|
-
*
|
|
372
|
-
* @type {Date}
|
|
373
|
-
* @memberof ApproveBookingCommand
|
|
374
|
-
*/
|
|
375
|
-
'confirmedDateEnd'?: Date | null;
|
|
376
|
-
}
|
|
377
|
-
/**
|
|
378
|
-
*
|
|
379
|
-
* @export
|
|
380
|
-
* @interface ApproveConsultationCommand
|
|
381
|
-
*/
|
|
382
|
-
export interface ApproveConsultationCommand {
|
|
383
|
-
/**
|
|
384
|
-
*
|
|
385
|
-
* @type {Date}
|
|
386
|
-
* @memberof ApproveConsultationCommand
|
|
387
|
-
*/
|
|
388
|
-
'confirmedDateStart'?: Date | null;
|
|
389
|
-
/**
|
|
390
|
-
*
|
|
391
|
-
* @type {Date}
|
|
392
|
-
* @memberof ApproveConsultationCommand
|
|
393
|
-
*/
|
|
394
|
-
'confirmedDateEnd'?: Date | null;
|
|
395
|
-
}
|
|
396
358
|
/**
|
|
397
359
|
*
|
|
398
360
|
* @export
|
|
@@ -6223,6 +6185,30 @@ export interface HospitalModel {
|
|
|
6223
6185
|
* @memberof HospitalModel
|
|
6224
6186
|
*/
|
|
6225
6187
|
'languageCode'?: string | null;
|
|
6188
|
+
/**
|
|
6189
|
+
*
|
|
6190
|
+
* @type {string}
|
|
6191
|
+
* @memberof HospitalModel
|
|
6192
|
+
*/
|
|
6193
|
+
'contactTel'?: string | null;
|
|
6194
|
+
/**
|
|
6195
|
+
*
|
|
6196
|
+
* @type {string}
|
|
6197
|
+
* @memberof HospitalModel
|
|
6198
|
+
*/
|
|
6199
|
+
'contactEmail'?: string | null;
|
|
6200
|
+
/**
|
|
6201
|
+
*
|
|
6202
|
+
* @type {Array<WorkingDay>}
|
|
6203
|
+
* @memberof HospitalModel
|
|
6204
|
+
*/
|
|
6205
|
+
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
6206
|
+
/**
|
|
6207
|
+
*
|
|
6208
|
+
* @type {Array<SnsHandle>}
|
|
6209
|
+
* @memberof HospitalModel
|
|
6210
|
+
*/
|
|
6211
|
+
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
6226
6212
|
}
|
|
6227
6213
|
/**
|
|
6228
6214
|
*
|
|
@@ -6362,6 +6348,12 @@ export interface HospitalServiceItemModel {
|
|
|
6362
6348
|
* @memberof HospitalServiceItemModel
|
|
6363
6349
|
*/
|
|
6364
6350
|
'order'?: number;
|
|
6351
|
+
/**
|
|
6352
|
+
*
|
|
6353
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6354
|
+
* @memberof HospitalServiceItemModel
|
|
6355
|
+
*/
|
|
6356
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6365
6357
|
/**
|
|
6366
6358
|
*
|
|
6367
6359
|
* @type {boolean}
|
|
@@ -6531,6 +6523,12 @@ export interface HospitalServiceModel {
|
|
|
6531
6523
|
* @memberof HospitalServiceModel
|
|
6532
6524
|
*/
|
|
6533
6525
|
'order'?: number;
|
|
6526
|
+
/**
|
|
6527
|
+
*
|
|
6528
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6529
|
+
* @memberof HospitalServiceModel
|
|
6530
|
+
*/
|
|
6531
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6534
6532
|
/**
|
|
6535
6533
|
*
|
|
6536
6534
|
* @type {boolean}
|
|
@@ -6612,6 +6610,25 @@ export interface HospitalSimpleItemModel {
|
|
|
6612
6610
|
*/
|
|
6613
6611
|
'confirmed'?: boolean;
|
|
6614
6612
|
}
|
|
6613
|
+
/**
|
|
6614
|
+
*
|
|
6615
|
+
* @export
|
|
6616
|
+
* @interface HospitalSnsHandlesModel
|
|
6617
|
+
*/
|
|
6618
|
+
export interface HospitalSnsHandlesModel {
|
|
6619
|
+
/**
|
|
6620
|
+
*
|
|
6621
|
+
* @type {Array<SnsHandleModel>}
|
|
6622
|
+
* @memberof HospitalSnsHandlesModel
|
|
6623
|
+
*/
|
|
6624
|
+
'items'?: Array<SnsHandleModel> | null;
|
|
6625
|
+
/**
|
|
6626
|
+
*
|
|
6627
|
+
* @type {PagedListMetaData}
|
|
6628
|
+
* @memberof HospitalSnsHandlesModel
|
|
6629
|
+
*/
|
|
6630
|
+
'metaData'?: PagedListMetaData;
|
|
6631
|
+
}
|
|
6615
6632
|
/**
|
|
6616
6633
|
*
|
|
6617
6634
|
* @export
|
|
@@ -6788,6 +6805,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6788
6805
|
* @memberof HospitalSpecialtyItemModel
|
|
6789
6806
|
*/
|
|
6790
6807
|
'backgroundThumbnail'?: string | null;
|
|
6808
|
+
/**
|
|
6809
|
+
*
|
|
6810
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6811
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6812
|
+
*/
|
|
6813
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6791
6814
|
/**
|
|
6792
6815
|
*
|
|
6793
6816
|
* @type {Array<MediaModel>}
|
|
@@ -6939,6 +6962,12 @@ export interface HospitalSpecialtyModel {
|
|
|
6939
6962
|
* @memberof HospitalSpecialtyModel
|
|
6940
6963
|
*/
|
|
6941
6964
|
'backgroundThumbnail'?: string | null;
|
|
6965
|
+
/**
|
|
6966
|
+
*
|
|
6967
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6968
|
+
* @memberof HospitalSpecialtyModel
|
|
6969
|
+
*/
|
|
6970
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6942
6971
|
/**
|
|
6943
6972
|
*
|
|
6944
6973
|
* @type {Array<MediaModel>}
|
|
@@ -7000,6 +7029,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
7000
7029
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
7001
7030
|
*/
|
|
7002
7031
|
'confirmed'?: boolean;
|
|
7032
|
+
/**
|
|
7033
|
+
*
|
|
7034
|
+
* @type {Array<LocalizedUrlModel>}
|
|
7035
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7036
|
+
*/
|
|
7037
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
7003
7038
|
}
|
|
7004
7039
|
/**
|
|
7005
7040
|
*
|
|
@@ -8135,44 +8170,6 @@ export declare enum RefundPolicy {
|
|
|
8135
8170
|
Refundable = "Refundable",
|
|
8136
8171
|
PartialRefundable = "PartialRefundable"
|
|
8137
8172
|
}
|
|
8138
|
-
/**
|
|
8139
|
-
*
|
|
8140
|
-
* @export
|
|
8141
|
-
* @interface RejectBookingCommand
|
|
8142
|
-
*/
|
|
8143
|
-
export interface RejectBookingCommand {
|
|
8144
|
-
/**
|
|
8145
|
-
*
|
|
8146
|
-
* @type {RejectReason}
|
|
8147
|
-
* @memberof RejectBookingCommand
|
|
8148
|
-
*/
|
|
8149
|
-
'rejectReason'?: RejectReason;
|
|
8150
|
-
/**
|
|
8151
|
-
*
|
|
8152
|
-
* @type {string}
|
|
8153
|
-
* @memberof RejectBookingCommand
|
|
8154
|
-
*/
|
|
8155
|
-
'rejectComment'?: string | null;
|
|
8156
|
-
}
|
|
8157
|
-
/**
|
|
8158
|
-
*
|
|
8159
|
-
* @export
|
|
8160
|
-
* @interface RejectConsultationCommand
|
|
8161
|
-
*/
|
|
8162
|
-
export interface RejectConsultationCommand {
|
|
8163
|
-
/**
|
|
8164
|
-
*
|
|
8165
|
-
* @type {RejectReason}
|
|
8166
|
-
* @memberof RejectConsultationCommand
|
|
8167
|
-
*/
|
|
8168
|
-
'rejectReason'?: RejectReason;
|
|
8169
|
-
/**
|
|
8170
|
-
*
|
|
8171
|
-
* @type {string}
|
|
8172
|
-
* @memberof RejectConsultationCommand
|
|
8173
|
-
*/
|
|
8174
|
-
'rejectComment'?: string | null;
|
|
8175
|
-
}
|
|
8176
8173
|
/**
|
|
8177
8174
|
*
|
|
8178
8175
|
* @export
|
|
@@ -8730,6 +8727,31 @@ export interface ServiceReviewsModel {
|
|
|
8730
8727
|
*/
|
|
8731
8728
|
'metaData'?: PagedListMetaData;
|
|
8732
8729
|
}
|
|
8730
|
+
/**
|
|
8731
|
+
*
|
|
8732
|
+
* @export
|
|
8733
|
+
* @interface SnsHandle
|
|
8734
|
+
*/
|
|
8735
|
+
export interface SnsHandle {
|
|
8736
|
+
/**
|
|
8737
|
+
*
|
|
8738
|
+
* @type {string}
|
|
8739
|
+
* @memberof SnsHandle
|
|
8740
|
+
*/
|
|
8741
|
+
'id'?: string;
|
|
8742
|
+
/**
|
|
8743
|
+
*
|
|
8744
|
+
* @type {SnsType}
|
|
8745
|
+
* @memberof SnsHandle
|
|
8746
|
+
*/
|
|
8747
|
+
'snsType'?: SnsType;
|
|
8748
|
+
/**
|
|
8749
|
+
*
|
|
8750
|
+
* @type {string}
|
|
8751
|
+
* @memberof SnsHandle
|
|
8752
|
+
*/
|
|
8753
|
+
'handle'?: string | null;
|
|
8754
|
+
}
|
|
8733
8755
|
/**
|
|
8734
8756
|
*
|
|
8735
8757
|
* @export
|
|
@@ -8763,7 +8785,9 @@ export interface SnsHandleModel {
|
|
|
8763
8785
|
export declare enum SnsType {
|
|
8764
8786
|
Twitter = "Twitter",
|
|
8765
8787
|
Facebook = "Facebook",
|
|
8766
|
-
Instagram = "Instagram"
|
|
8788
|
+
Instagram = "Instagram",
|
|
8789
|
+
LinkedIn = "LinkedIn",
|
|
8790
|
+
Youtube = "Youtube"
|
|
8767
8791
|
}
|
|
8768
8792
|
/**
|
|
8769
8793
|
*
|
|
@@ -8881,6 +8905,12 @@ export interface SpecialtyItemModel {
|
|
|
8881
8905
|
* @memberof SpecialtyItemModel
|
|
8882
8906
|
*/
|
|
8883
8907
|
'confirmed'?: boolean;
|
|
8908
|
+
/**
|
|
8909
|
+
*
|
|
8910
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8911
|
+
* @memberof SpecialtyItemModel
|
|
8912
|
+
*/
|
|
8913
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8884
8914
|
/**
|
|
8885
8915
|
*
|
|
8886
8916
|
* @type {AuditableEntity}
|
|
@@ -8966,6 +8996,12 @@ export interface SpecialtyModel {
|
|
|
8966
8996
|
* @memberof SpecialtyModel
|
|
8967
8997
|
*/
|
|
8968
8998
|
'confirmed'?: boolean;
|
|
8999
|
+
/**
|
|
9000
|
+
*
|
|
9001
|
+
* @type {Array<LocalizedUrlModel>}
|
|
9002
|
+
* @memberof SpecialtyModel
|
|
9003
|
+
*/
|
|
9004
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8969
9005
|
/**
|
|
8970
9006
|
*
|
|
8971
9007
|
* @type {AuditableEntity}
|
|
@@ -9902,20 +9938,140 @@ export interface UserModel {
|
|
|
9902
9938
|
'locations'?: Array<UserLocationModel> | null;
|
|
9903
9939
|
}
|
|
9904
9940
|
/**
|
|
9905
|
-
*
|
|
9941
|
+
*
|
|
9906
9942
|
* @export
|
|
9943
|
+
* @interface WorkingDay
|
|
9907
9944
|
*/
|
|
9908
|
-
export
|
|
9945
|
+
export interface WorkingDay {
|
|
9909
9946
|
/**
|
|
9910
9947
|
*
|
|
9911
|
-
* @
|
|
9912
|
-
* @
|
|
9913
|
-
|
|
9914
|
-
|
|
9915
|
-
|
|
9916
|
-
*
|
|
9948
|
+
* @type {string}
|
|
9949
|
+
* @memberof WorkingDay
|
|
9950
|
+
*/
|
|
9951
|
+
'id'?: string;
|
|
9952
|
+
/**
|
|
9953
|
+
*
|
|
9954
|
+
* @type {string}
|
|
9955
|
+
* @memberof WorkingDay
|
|
9956
|
+
*/
|
|
9957
|
+
'dayOfWeek'?: string | null;
|
|
9958
|
+
/**
|
|
9959
|
+
*
|
|
9960
|
+
* @type {Date}
|
|
9961
|
+
* @memberof WorkingDay
|
|
9962
|
+
*/
|
|
9963
|
+
'timeFrom'?: Date;
|
|
9964
|
+
/**
|
|
9965
|
+
*
|
|
9966
|
+
* @type {Date}
|
|
9967
|
+
* @memberof WorkingDay
|
|
9968
|
+
*/
|
|
9969
|
+
'timeTo'?: Date;
|
|
9970
|
+
/**
|
|
9971
|
+
*
|
|
9972
|
+
* @type {boolean}
|
|
9973
|
+
* @memberof WorkingDay
|
|
9974
|
+
*/
|
|
9975
|
+
'checkHoliday'?: boolean;
|
|
9976
|
+
}
|
|
9977
|
+
/**
|
|
9978
|
+
*
|
|
9979
|
+
* @export
|
|
9980
|
+
* @interface WorkingDayItemModel
|
|
9981
|
+
*/
|
|
9982
|
+
export interface WorkingDayItemModel {
|
|
9983
|
+
/**
|
|
9984
|
+
*
|
|
9985
|
+
* @type {string}
|
|
9986
|
+
* @memberof WorkingDayItemModel
|
|
9987
|
+
*/
|
|
9988
|
+
'id'?: string;
|
|
9989
|
+
/**
|
|
9990
|
+
*
|
|
9991
|
+
* @type {string}
|
|
9992
|
+
* @memberof WorkingDayItemModel
|
|
9993
|
+
*/
|
|
9994
|
+
'dayOfWeek'?: string | null;
|
|
9995
|
+
/**
|
|
9996
|
+
*
|
|
9997
|
+
* @type {Date}
|
|
9998
|
+
* @memberof WorkingDayItemModel
|
|
9999
|
+
*/
|
|
10000
|
+
'timeFrom'?: Date;
|
|
10001
|
+
/**
|
|
10002
|
+
*
|
|
10003
|
+
* @type {Date}
|
|
10004
|
+
* @memberof WorkingDayItemModel
|
|
10005
|
+
*/
|
|
10006
|
+
'timeTo'?: Date;
|
|
10007
|
+
/**
|
|
10008
|
+
*
|
|
10009
|
+
* @type {boolean}
|
|
10010
|
+
* @memberof WorkingDayItemModel
|
|
10011
|
+
*/
|
|
10012
|
+
'checkHoliday'?: boolean;
|
|
10013
|
+
}
|
|
10014
|
+
/**
|
|
10015
|
+
*
|
|
10016
|
+
* @export
|
|
10017
|
+
* @interface WorkingDayModel
|
|
10018
|
+
*/
|
|
10019
|
+
export interface WorkingDayModel {
|
|
10020
|
+
/**
|
|
10021
|
+
*
|
|
10022
|
+
* @type {string}
|
|
10023
|
+
* @memberof WorkingDayModel
|
|
10024
|
+
*/
|
|
10025
|
+
'id'?: string;
|
|
10026
|
+
/**
|
|
10027
|
+
*
|
|
10028
|
+
* @type {string}
|
|
10029
|
+
* @memberof WorkingDayModel
|
|
10030
|
+
*/
|
|
10031
|
+
'dayOfWeek'?: string | null;
|
|
10032
|
+
/**
|
|
10033
|
+
*
|
|
10034
|
+
* @type {Date}
|
|
10035
|
+
* @memberof WorkingDayModel
|
|
10036
|
+
*/
|
|
10037
|
+
'timeFrom'?: Date;
|
|
10038
|
+
/**
|
|
10039
|
+
*
|
|
10040
|
+
* @type {Date}
|
|
10041
|
+
* @memberof WorkingDayModel
|
|
10042
|
+
*/
|
|
10043
|
+
'timeTo'?: Date;
|
|
10044
|
+
/**
|
|
10045
|
+
*
|
|
10046
|
+
* @type {boolean}
|
|
10047
|
+
* @memberof WorkingDayModel
|
|
10048
|
+
*/
|
|
10049
|
+
'checkHoliday'?: boolean;
|
|
10050
|
+
}
|
|
10051
|
+
/**
|
|
10052
|
+
*
|
|
10053
|
+
* @export
|
|
10054
|
+
* @interface WorkingDaysModel
|
|
10055
|
+
*/
|
|
10056
|
+
export interface WorkingDaysModel {
|
|
10057
|
+
/**
|
|
10058
|
+
*
|
|
10059
|
+
* @type {Array<WorkingDayItemModel>}
|
|
10060
|
+
* @memberof WorkingDaysModel
|
|
10061
|
+
*/
|
|
10062
|
+
'items'?: Array<WorkingDayItemModel> | null;
|
|
10063
|
+
/**
|
|
10064
|
+
*
|
|
10065
|
+
* @type {PagedListMetaData}
|
|
10066
|
+
* @memberof WorkingDaysModel
|
|
9917
10067
|
*/
|
|
9918
|
-
|
|
10068
|
+
'metaData'?: PagedListMetaData;
|
|
10069
|
+
}
|
|
10070
|
+
/**
|
|
10071
|
+
* AboutUsApi - axios parameter creator
|
|
10072
|
+
* @export
|
|
10073
|
+
*/
|
|
10074
|
+
export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
9919
10075
|
/**
|
|
9920
10076
|
*
|
|
9921
10077
|
* @summary Get all AboutUsList.
|
|
@@ -9941,29 +10097,29 @@ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
9941
10097
|
apiV2AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9942
10098
|
/**
|
|
9943
10099
|
*
|
|
9944
|
-
* @
|
|
10100
|
+
* @summary Get AboutUs.
|
|
10101
|
+
* @param {string} hospitalId
|
|
9945
10102
|
* @param {string} [languageCode]
|
|
9946
10103
|
* @param {boolean} [returnDefaultValue]
|
|
9947
10104
|
* @param {*} [options] Override http request option.
|
|
9948
10105
|
* @throws {RequiredError}
|
|
9949
10106
|
*/
|
|
9950
|
-
|
|
9951
|
-
};
|
|
9952
|
-
/**
|
|
9953
|
-
* AboutUsApi - functional programming interface
|
|
9954
|
-
* @export
|
|
9955
|
-
*/
|
|
9956
|
-
export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
|
|
10107
|
+
apiV2AboutusHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9957
10108
|
/**
|
|
9958
10109
|
*
|
|
9959
|
-
* @
|
|
9960
|
-
* @param {string} aboutUsId
|
|
10110
|
+
* @param {string} slug
|
|
9961
10111
|
* @param {string} [languageCode]
|
|
9962
10112
|
* @param {boolean} [returnDefaultValue]
|
|
9963
10113
|
* @param {*} [options] Override http request option.
|
|
9964
10114
|
* @throws {RequiredError}
|
|
9965
10115
|
*/
|
|
9966
|
-
|
|
10116
|
+
apiV2AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10117
|
+
};
|
|
10118
|
+
/**
|
|
10119
|
+
* AboutUsApi - functional programming interface
|
|
10120
|
+
* @export
|
|
10121
|
+
*/
|
|
10122
|
+
export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
|
|
9967
10123
|
/**
|
|
9968
10124
|
*
|
|
9969
10125
|
* @summary Get all AboutUsList.
|
|
@@ -9987,6 +10143,16 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
|
|
|
9987
10143
|
* @throws {RequiredError}
|
|
9988
10144
|
*/
|
|
9989
10145
|
apiV2AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
|
|
10146
|
+
/**
|
|
10147
|
+
*
|
|
10148
|
+
* @summary Get AboutUs.
|
|
10149
|
+
* @param {string} hospitalId
|
|
10150
|
+
* @param {string} [languageCode]
|
|
10151
|
+
* @param {boolean} [returnDefaultValue]
|
|
10152
|
+
* @param {*} [options] Override http request option.
|
|
10153
|
+
* @throws {RequiredError}
|
|
10154
|
+
*/
|
|
10155
|
+
apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
9990
10156
|
/**
|
|
9991
10157
|
*
|
|
9992
10158
|
* @param {string} slug
|
|
@@ -10002,16 +10168,6 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
|
|
|
10002
10168
|
* @export
|
|
10003
10169
|
*/
|
|
10004
10170
|
export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
10005
|
-
/**
|
|
10006
|
-
*
|
|
10007
|
-
* @summary Get AboutUs.
|
|
10008
|
-
* @param {string} aboutUsId
|
|
10009
|
-
* @param {string} [languageCode]
|
|
10010
|
-
* @param {boolean} [returnDefaultValue]
|
|
10011
|
-
* @param {*} [options] Override http request option.
|
|
10012
|
-
* @throws {RequiredError}
|
|
10013
|
-
*/
|
|
10014
|
-
apiV2AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
10015
10171
|
/**
|
|
10016
10172
|
*
|
|
10017
10173
|
* @summary Get all AboutUsList.
|
|
@@ -10035,6 +10191,16 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
|
|
|
10035
10191
|
* @throws {RequiredError}
|
|
10036
10192
|
*/
|
|
10037
10193
|
apiV2AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
|
|
10194
|
+
/**
|
|
10195
|
+
*
|
|
10196
|
+
* @summary Get AboutUs.
|
|
10197
|
+
* @param {string} hospitalId
|
|
10198
|
+
* @param {string} [languageCode]
|
|
10199
|
+
* @param {boolean} [returnDefaultValue]
|
|
10200
|
+
* @param {*} [options] Override http request option.
|
|
10201
|
+
* @throws {RequiredError}
|
|
10202
|
+
*/
|
|
10203
|
+
apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
10038
10204
|
/**
|
|
10039
10205
|
*
|
|
10040
10206
|
* @param {string} slug
|
|
@@ -10052,17 +10218,6 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
|
|
|
10052
10218
|
* @extends {BaseAPI}
|
|
10053
10219
|
*/
|
|
10054
10220
|
export declare class AboutUsApi extends BaseAPI {
|
|
10055
|
-
/**
|
|
10056
|
-
*
|
|
10057
|
-
* @summary Get AboutUs.
|
|
10058
|
-
* @param {string} aboutUsId
|
|
10059
|
-
* @param {string} [languageCode]
|
|
10060
|
-
* @param {boolean} [returnDefaultValue]
|
|
10061
|
-
* @param {*} [options] Override http request option.
|
|
10062
|
-
* @throws {RequiredError}
|
|
10063
|
-
* @memberof AboutUsApi
|
|
10064
|
-
*/
|
|
10065
|
-
apiV2AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel, any>>;
|
|
10066
10221
|
/**
|
|
10067
10222
|
*
|
|
10068
10223
|
* @summary Get all AboutUsList.
|
|
@@ -10087,6 +10242,17 @@ export declare class AboutUsApi extends BaseAPI {
|
|
|
10087
10242
|
* @memberof AboutUsApi
|
|
10088
10243
|
*/
|
|
10089
10244
|
apiV2AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, overviewTitle?: string, normalizedOverviewTitle?: string, overview?: string, content?: string, customStyle?: string, background?: string, backgroundThumbnail?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPagesModel, any>>;
|
|
10245
|
+
/**
|
|
10246
|
+
*
|
|
10247
|
+
* @summary Get AboutUs.
|
|
10248
|
+
* @param {string} hospitalId
|
|
10249
|
+
* @param {string} [languageCode]
|
|
10250
|
+
* @param {boolean} [returnDefaultValue]
|
|
10251
|
+
* @param {*} [options] Override http request option.
|
|
10252
|
+
* @throws {RequiredError}
|
|
10253
|
+
* @memberof AboutUsApi
|
|
10254
|
+
*/
|
|
10255
|
+
apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel, any>>;
|
|
10090
10256
|
/**
|
|
10091
10257
|
*
|
|
10092
10258
|
* @param {string} slug
|
|
@@ -10329,6 +10495,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10329
10495
|
* @param {string} [hospitalName]
|
|
10330
10496
|
* @param {string} [countryId]
|
|
10331
10497
|
* @param {string} [tag]
|
|
10498
|
+
* @param {string} [exceptArticleId]
|
|
10332
10499
|
* @param {string} [exceptHospitalId]
|
|
10333
10500
|
* @param {string} [contributorId]
|
|
10334
10501
|
* @param {string} [languageCode]
|
|
@@ -10340,7 +10507,7 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10340
10507
|
* @param {*} [options] Override http request option.
|
|
10341
10508
|
* @throws {RequiredError}
|
|
10342
10509
|
*/
|
|
10343
|
-
apiV2ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10510
|
+
apiV2ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10344
10511
|
/**
|
|
10345
10512
|
*
|
|
10346
10513
|
* @param {string} slug
|
|
@@ -10470,6 +10637,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
10470
10637
|
* @param {string} [hospitalName]
|
|
10471
10638
|
* @param {string} [countryId]
|
|
10472
10639
|
* @param {string} [tag]
|
|
10640
|
+
* @param {string} [exceptArticleId]
|
|
10473
10641
|
* @param {string} [exceptHospitalId]
|
|
10474
10642
|
* @param {string} [contributorId]
|
|
10475
10643
|
* @param {string} [languageCode]
|
|
@@ -10481,7 +10649,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
10481
10649
|
* @param {*} [options] Override http request option.
|
|
10482
10650
|
* @throws {RequiredError}
|
|
10483
10651
|
*/
|
|
10484
|
-
apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
|
|
10652
|
+
apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
|
|
10485
10653
|
/**
|
|
10486
10654
|
*
|
|
10487
10655
|
* @param {string} slug
|
|
@@ -10611,6 +10779,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
10611
10779
|
* @param {string} [hospitalName]
|
|
10612
10780
|
* @param {string} [countryId]
|
|
10613
10781
|
* @param {string} [tag]
|
|
10782
|
+
* @param {string} [exceptArticleId]
|
|
10614
10783
|
* @param {string} [exceptHospitalId]
|
|
10615
10784
|
* @param {string} [contributorId]
|
|
10616
10785
|
* @param {string} [languageCode]
|
|
@@ -10622,7 +10791,7 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
10622
10791
|
* @param {*} [options] Override http request option.
|
|
10623
10792
|
* @throws {RequiredError}
|
|
10624
10793
|
*/
|
|
10625
|
-
apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
|
|
10794
|
+
apiV2ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
|
|
10626
10795
|
/**
|
|
10627
10796
|
*
|
|
10628
10797
|
* @param {string} slug
|
|
@@ -10763,6 +10932,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
10763
10932
|
* @param {string} [hospitalName]
|
|
10764
10933
|
* @param {string} [countryId]
|
|
10765
10934
|
* @param {string} [tag]
|
|
10935
|
+
* @param {string} [exceptArticleId]
|
|
10766
10936
|
* @param {string} [exceptHospitalId]
|
|
10767
10937
|
* @param {string} [contributorId]
|
|
10768
10938
|
* @param {string} [languageCode]
|
|
@@ -10775,7 +10945,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
10775
10945
|
* @throws {RequiredError}
|
|
10776
10946
|
* @memberof ArticlesApi
|
|
10777
10947
|
*/
|
|
10778
|
-
apiV2ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel, any>>;
|
|
10948
|
+
apiV2ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel, any>>;
|
|
10779
10949
|
/**
|
|
10780
10950
|
*
|
|
10781
10951
|
* @param {string} slug
|
|
@@ -10792,31 +10962,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
10792
10962
|
* @export
|
|
10793
10963
|
*/
|
|
10794
10964
|
export declare const BookingsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
10795
|
-
/**
|
|
10796
|
-
*
|
|
10797
|
-
* @summary Approve booking.
|
|
10798
|
-
* @param {string} bookingId
|
|
10799
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
10800
|
-
* @param {*} [options] Override http request option.
|
|
10801
|
-
* @throws {RequiredError}
|
|
10802
|
-
*/
|
|
10803
|
-
apiV2BookingsBookingIdApprovePut: (bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10804
|
-
/**
|
|
10805
|
-
*
|
|
10806
|
-
* @summary Cancel booking.
|
|
10807
|
-
* @param {string} bookingId
|
|
10808
|
-
* @param {*} [options] Override http request option.
|
|
10809
|
-
* @throws {RequiredError}
|
|
10810
|
-
*/
|
|
10811
|
-
apiV2BookingsBookingIdCancelPut: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10812
|
-
/**
|
|
10813
|
-
*
|
|
10814
|
-
* @summary Delete booking.
|
|
10815
|
-
* @param {string} bookingId
|
|
10816
|
-
* @param {*} [options] Override http request option.
|
|
10817
|
-
* @throws {RequiredError}
|
|
10818
|
-
*/
|
|
10819
|
-
apiV2BookingsBookingIdDelete: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10820
10965
|
/**
|
|
10821
10966
|
*
|
|
10822
10967
|
* @summary Get booking.
|
|
@@ -10825,14 +10970,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10825
10970
|
* @throws {RequiredError}
|
|
10826
10971
|
*/
|
|
10827
10972
|
apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10828
|
-
/**
|
|
10829
|
-
*
|
|
10830
|
-
* @summary Mark as Paid booking.
|
|
10831
|
-
* @param {string} bookingId
|
|
10832
|
-
* @param {*} [options] Override http request option.
|
|
10833
|
-
* @throws {RequiredError}
|
|
10834
|
-
*/
|
|
10835
|
-
apiV2BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10836
10973
|
/**
|
|
10837
10974
|
*
|
|
10838
10975
|
* @summary Pay booking.
|
|
@@ -10850,15 +10987,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10850
10987
|
* @throws {RequiredError}
|
|
10851
10988
|
*/
|
|
10852
10989
|
apiV2BookingsBookingIdPut: (bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10853
|
-
/**
|
|
10854
|
-
*
|
|
10855
|
-
* @summary Reject booking.
|
|
10856
|
-
* @param {string} bookingId
|
|
10857
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
10858
|
-
* @param {*} [options] Override http request option.
|
|
10859
|
-
* @throws {RequiredError}
|
|
10860
|
-
*/
|
|
10861
|
-
apiV2BookingsBookingIdRejectPut: (bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10862
10990
|
/**
|
|
10863
10991
|
*
|
|
10864
10992
|
* @summary Get all bookings.
|
|
@@ -10890,31 +11018,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10890
11018
|
* @export
|
|
10891
11019
|
*/
|
|
10892
11020
|
export declare const BookingsApiFp: (configuration?: Configuration | undefined) => {
|
|
10893
|
-
/**
|
|
10894
|
-
*
|
|
10895
|
-
* @summary Approve booking.
|
|
10896
|
-
* @param {string} bookingId
|
|
10897
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
10898
|
-
* @param {*} [options] Override http request option.
|
|
10899
|
-
* @throws {RequiredError}
|
|
10900
|
-
*/
|
|
10901
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
10902
|
-
/**
|
|
10903
|
-
*
|
|
10904
|
-
* @summary Cancel booking.
|
|
10905
|
-
* @param {string} bookingId
|
|
10906
|
-
* @param {*} [options] Override http request option.
|
|
10907
|
-
* @throws {RequiredError}
|
|
10908
|
-
*/
|
|
10909
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
10910
|
-
/**
|
|
10911
|
-
*
|
|
10912
|
-
* @summary Delete booking.
|
|
10913
|
-
* @param {string} bookingId
|
|
10914
|
-
* @param {*} [options] Override http request option.
|
|
10915
|
-
* @throws {RequiredError}
|
|
10916
|
-
*/
|
|
10917
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
10918
11021
|
/**
|
|
10919
11022
|
*
|
|
10920
11023
|
* @summary Get booking.
|
|
@@ -10923,14 +11026,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
10923
11026
|
* @throws {RequiredError}
|
|
10924
11027
|
*/
|
|
10925
11028
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
10926
|
-
/**
|
|
10927
|
-
*
|
|
10928
|
-
* @summary Mark as Paid booking.
|
|
10929
|
-
* @param {string} bookingId
|
|
10930
|
-
* @param {*} [options] Override http request option.
|
|
10931
|
-
* @throws {RequiredError}
|
|
10932
|
-
*/
|
|
10933
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
10934
11029
|
/**
|
|
10935
11030
|
*
|
|
10936
11031
|
* @summary Pay booking.
|
|
@@ -10948,15 +11043,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
10948
11043
|
* @throws {RequiredError}
|
|
10949
11044
|
*/
|
|
10950
11045
|
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
10951
|
-
/**
|
|
10952
|
-
*
|
|
10953
|
-
* @summary Reject booking.
|
|
10954
|
-
* @param {string} bookingId
|
|
10955
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
10956
|
-
* @param {*} [options] Override http request option.
|
|
10957
|
-
* @throws {RequiredError}
|
|
10958
|
-
*/
|
|
10959
|
-
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
10960
11046
|
/**
|
|
10961
11047
|
*
|
|
10962
11048
|
* @summary Get all bookings.
|
|
@@ -10988,31 +11074,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
10988
11074
|
* @export
|
|
10989
11075
|
*/
|
|
10990
11076
|
export declare const BookingsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
10991
|
-
/**
|
|
10992
|
-
*
|
|
10993
|
-
* @summary Approve booking.
|
|
10994
|
-
* @param {string} bookingId
|
|
10995
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
10996
|
-
* @param {*} [options] Override http request option.
|
|
10997
|
-
* @throws {RequiredError}
|
|
10998
|
-
*/
|
|
10999
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11000
|
-
/**
|
|
11001
|
-
*
|
|
11002
|
-
* @summary Cancel booking.
|
|
11003
|
-
* @param {string} bookingId
|
|
11004
|
-
* @param {*} [options] Override http request option.
|
|
11005
|
-
* @throws {RequiredError}
|
|
11006
|
-
*/
|
|
11007
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: any): AxiosPromise<boolean>;
|
|
11008
|
-
/**
|
|
11009
|
-
*
|
|
11010
|
-
* @summary Delete booking.
|
|
11011
|
-
* @param {string} bookingId
|
|
11012
|
-
* @param {*} [options] Override http request option.
|
|
11013
|
-
* @throws {RequiredError}
|
|
11014
|
-
*/
|
|
11015
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: any): AxiosPromise<boolean>;
|
|
11016
11077
|
/**
|
|
11017
11078
|
*
|
|
11018
11079
|
* @summary Get booking.
|
|
@@ -11021,14 +11082,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11021
11082
|
* @throws {RequiredError}
|
|
11022
11083
|
*/
|
|
11023
11084
|
apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
|
|
11024
|
-
/**
|
|
11025
|
-
*
|
|
11026
|
-
* @summary Mark as Paid booking.
|
|
11027
|
-
* @param {string} bookingId
|
|
11028
|
-
* @param {*} [options] Override http request option.
|
|
11029
|
-
* @throws {RequiredError}
|
|
11030
|
-
*/
|
|
11031
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
|
|
11032
11085
|
/**
|
|
11033
11086
|
*
|
|
11034
11087
|
* @summary Pay booking.
|
|
@@ -11046,15 +11099,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11046
11099
|
* @throws {RequiredError}
|
|
11047
11100
|
*/
|
|
11048
11101
|
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: any): AxiosPromise<BookingModel>;
|
|
11049
|
-
/**
|
|
11050
|
-
*
|
|
11051
|
-
* @summary Reject booking.
|
|
11052
|
-
* @param {string} bookingId
|
|
11053
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
11054
|
-
* @param {*} [options] Override http request option.
|
|
11055
|
-
* @throws {RequiredError}
|
|
11056
|
-
*/
|
|
11057
|
-
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11058
11102
|
/**
|
|
11059
11103
|
*
|
|
11060
11104
|
* @summary Get all bookings.
|
|
@@ -11088,34 +11132,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11088
11132
|
* @extends {BaseAPI}
|
|
11089
11133
|
*/
|
|
11090
11134
|
export declare class BookingsApi extends BaseAPI {
|
|
11091
|
-
/**
|
|
11092
|
-
*
|
|
11093
|
-
* @summary Approve booking.
|
|
11094
|
-
* @param {string} bookingId
|
|
11095
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
11096
|
-
* @param {*} [options] Override http request option.
|
|
11097
|
-
* @throws {RequiredError}
|
|
11098
|
-
* @memberof BookingsApi
|
|
11099
|
-
*/
|
|
11100
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11101
|
-
/**
|
|
11102
|
-
*
|
|
11103
|
-
* @summary Cancel booking.
|
|
11104
|
-
* @param {string} bookingId
|
|
11105
|
-
* @param {*} [options] Override http request option.
|
|
11106
|
-
* @throws {RequiredError}
|
|
11107
|
-
* @memberof BookingsApi
|
|
11108
|
-
*/
|
|
11109
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11110
|
-
/**
|
|
11111
|
-
*
|
|
11112
|
-
* @summary Delete booking.
|
|
11113
|
-
* @param {string} bookingId
|
|
11114
|
-
* @param {*} [options] Override http request option.
|
|
11115
|
-
* @throws {RequiredError}
|
|
11116
|
-
* @memberof BookingsApi
|
|
11117
|
-
*/
|
|
11118
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11119
11135
|
/**
|
|
11120
11136
|
*
|
|
11121
11137
|
* @summary Get booking.
|
|
@@ -11125,15 +11141,6 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
11125
11141
|
* @memberof BookingsApi
|
|
11126
11142
|
*/
|
|
11127
11143
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
11128
|
-
/**
|
|
11129
|
-
*
|
|
11130
|
-
* @summary Mark as Paid booking.
|
|
11131
|
-
* @param {string} bookingId
|
|
11132
|
-
* @param {*} [options] Override http request option.
|
|
11133
|
-
* @throws {RequiredError}
|
|
11134
|
-
* @memberof BookingsApi
|
|
11135
|
-
*/
|
|
11136
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
11137
11144
|
/**
|
|
11138
11145
|
*
|
|
11139
11146
|
* @summary Pay booking.
|
|
@@ -11153,16 +11160,6 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
11153
11160
|
* @memberof BookingsApi
|
|
11154
11161
|
*/
|
|
11155
11162
|
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
11156
|
-
/**
|
|
11157
|
-
*
|
|
11158
|
-
* @summary Reject booking.
|
|
11159
|
-
* @param {string} bookingId
|
|
11160
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
11161
|
-
* @param {*} [options] Override http request option.
|
|
11162
|
-
* @throws {RequiredError}
|
|
11163
|
-
* @memberof BookingsApi
|
|
11164
|
-
*/
|
|
11165
|
-
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11166
11163
|
/**
|
|
11167
11164
|
*
|
|
11168
11165
|
* @summary Get all bookings.
|
|
@@ -11545,31 +11542,6 @@ export declare class CommunicationsApi extends BaseAPI {
|
|
|
11545
11542
|
* @export
|
|
11546
11543
|
*/
|
|
11547
11544
|
export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
11548
|
-
/**
|
|
11549
|
-
*
|
|
11550
|
-
* @summary Approve consultation.
|
|
11551
|
-
* @param {string} consultationId
|
|
11552
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11553
|
-
* @param {*} [options] Override http request option.
|
|
11554
|
-
* @throws {RequiredError}
|
|
11555
|
-
*/
|
|
11556
|
-
apiV2ConsultationsConsultationIdApprovePut: (consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11557
|
-
/**
|
|
11558
|
-
*
|
|
11559
|
-
* @summary Cancel consultation.
|
|
11560
|
-
* @param {string} consultationId
|
|
11561
|
-
* @param {*} [options] Override http request option.
|
|
11562
|
-
* @throws {RequiredError}
|
|
11563
|
-
*/
|
|
11564
|
-
apiV2ConsultationsConsultationIdCancelPut: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11565
|
-
/**
|
|
11566
|
-
*
|
|
11567
|
-
* @summary Delete consultation.
|
|
11568
|
-
* @param {string} consultationId
|
|
11569
|
-
* @param {*} [options] Override http request option.
|
|
11570
|
-
* @throws {RequiredError}
|
|
11571
|
-
*/
|
|
11572
|
-
apiV2ConsultationsConsultationIdDelete: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11573
11545
|
/**
|
|
11574
11546
|
*
|
|
11575
11547
|
* @summary Get consultation.
|
|
@@ -11595,15 +11567,6 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
11595
11567
|
* @throws {RequiredError}
|
|
11596
11568
|
*/
|
|
11597
11569
|
apiV2ConsultationsConsultationIdPut: (consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11598
|
-
/**
|
|
11599
|
-
*
|
|
11600
|
-
* @summary Reject consultation.
|
|
11601
|
-
* @param {string} consultationId
|
|
11602
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
11603
|
-
* @param {*} [options] Override http request option.
|
|
11604
|
-
* @throws {RequiredError}
|
|
11605
|
-
*/
|
|
11606
|
-
apiV2ConsultationsConsultationIdRejectPut: (consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11607
11570
|
/**
|
|
11608
11571
|
*
|
|
11609
11572
|
* @summary Get all consultations.
|
|
@@ -11635,31 +11598,6 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
11635
11598
|
* @export
|
|
11636
11599
|
*/
|
|
11637
11600
|
export declare const ConsultationsApiFp: (configuration?: Configuration | undefined) => {
|
|
11638
|
-
/**
|
|
11639
|
-
*
|
|
11640
|
-
* @summary Approve consultation.
|
|
11641
|
-
* @param {string} consultationId
|
|
11642
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11643
|
-
* @param {*} [options] Override http request option.
|
|
11644
|
-
* @throws {RequiredError}
|
|
11645
|
-
*/
|
|
11646
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11647
|
-
/**
|
|
11648
|
-
*
|
|
11649
|
-
* @summary Cancel consultation.
|
|
11650
|
-
* @param {string} consultationId
|
|
11651
|
-
* @param {*} [options] Override http request option.
|
|
11652
|
-
* @throws {RequiredError}
|
|
11653
|
-
*/
|
|
11654
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11655
|
-
/**
|
|
11656
|
-
*
|
|
11657
|
-
* @summary Delete consultation.
|
|
11658
|
-
* @param {string} consultationId
|
|
11659
|
-
* @param {*} [options] Override http request option.
|
|
11660
|
-
* @throws {RequiredError}
|
|
11661
|
-
*/
|
|
11662
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11663
11601
|
/**
|
|
11664
11602
|
*
|
|
11665
11603
|
* @summary Get consultation.
|
|
@@ -11685,15 +11623,6 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
11685
11623
|
* @throws {RequiredError}
|
|
11686
11624
|
*/
|
|
11687
11625
|
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
11688
|
-
/**
|
|
11689
|
-
*
|
|
11690
|
-
* @summary Reject consultation.
|
|
11691
|
-
* @param {string} consultationId
|
|
11692
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
11693
|
-
* @param {*} [options] Override http request option.
|
|
11694
|
-
* @throws {RequiredError}
|
|
11695
|
-
*/
|
|
11696
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11697
11626
|
/**
|
|
11698
11627
|
*
|
|
11699
11628
|
* @summary Get all consultations.
|
|
@@ -11725,31 +11654,6 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
11725
11654
|
* @export
|
|
11726
11655
|
*/
|
|
11727
11656
|
export declare const ConsultationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
11728
|
-
/**
|
|
11729
|
-
*
|
|
11730
|
-
* @summary Approve consultation.
|
|
11731
|
-
* @param {string} consultationId
|
|
11732
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11733
|
-
* @param {*} [options] Override http request option.
|
|
11734
|
-
* @throws {RequiredError}
|
|
11735
|
-
*/
|
|
11736
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11737
|
-
/**
|
|
11738
|
-
*
|
|
11739
|
-
* @summary Cancel consultation.
|
|
11740
|
-
* @param {string} consultationId
|
|
11741
|
-
* @param {*} [options] Override http request option.
|
|
11742
|
-
* @throws {RequiredError}
|
|
11743
|
-
*/
|
|
11744
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: any): AxiosPromise<boolean>;
|
|
11745
|
-
/**
|
|
11746
|
-
*
|
|
11747
|
-
* @summary Delete consultation.
|
|
11748
|
-
* @param {string} consultationId
|
|
11749
|
-
* @param {*} [options] Override http request option.
|
|
11750
|
-
* @throws {RequiredError}
|
|
11751
|
-
*/
|
|
11752
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: any): AxiosPromise<boolean>;
|
|
11753
11657
|
/**
|
|
11754
11658
|
*
|
|
11755
11659
|
* @summary Get consultation.
|
|
@@ -11775,15 +11679,6 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
11775
11679
|
* @throws {RequiredError}
|
|
11776
11680
|
*/
|
|
11777
11681
|
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: any): AxiosPromise<ConsultationModel>;
|
|
11778
|
-
/**
|
|
11779
|
-
*
|
|
11780
|
-
* @summary Reject consultation.
|
|
11781
|
-
* @param {string} consultationId
|
|
11782
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
11783
|
-
* @param {*} [options] Override http request option.
|
|
11784
|
-
* @throws {RequiredError}
|
|
11785
|
-
*/
|
|
11786
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11787
11682
|
/**
|
|
11788
11683
|
*
|
|
11789
11684
|
* @summary Get all consultations.
|
|
@@ -11817,34 +11712,6 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
11817
11712
|
* @extends {BaseAPI}
|
|
11818
11713
|
*/
|
|
11819
11714
|
export declare class ConsultationsApi extends BaseAPI {
|
|
11820
|
-
/**
|
|
11821
|
-
*
|
|
11822
|
-
* @summary Approve consultation.
|
|
11823
|
-
* @param {string} consultationId
|
|
11824
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11825
|
-
* @param {*} [options] Override http request option.
|
|
11826
|
-
* @throws {RequiredError}
|
|
11827
|
-
* @memberof ConsultationsApi
|
|
11828
|
-
*/
|
|
11829
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11830
|
-
/**
|
|
11831
|
-
*
|
|
11832
|
-
* @summary Cancel consultation.
|
|
11833
|
-
* @param {string} consultationId
|
|
11834
|
-
* @param {*} [options] Override http request option.
|
|
11835
|
-
* @throws {RequiredError}
|
|
11836
|
-
* @memberof ConsultationsApi
|
|
11837
|
-
*/
|
|
11838
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11839
|
-
/**
|
|
11840
|
-
*
|
|
11841
|
-
* @summary Delete consultation.
|
|
11842
|
-
* @param {string} consultationId
|
|
11843
|
-
* @param {*} [options] Override http request option.
|
|
11844
|
-
* @throws {RequiredError}
|
|
11845
|
-
* @memberof ConsultationsApi
|
|
11846
|
-
*/
|
|
11847
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11848
11715
|
/**
|
|
11849
11716
|
*
|
|
11850
11717
|
* @summary Get consultation.
|
|
@@ -11873,16 +11740,6 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
11873
11740
|
* @memberof ConsultationsApi
|
|
11874
11741
|
*/
|
|
11875
11742
|
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
|
|
11876
|
-
/**
|
|
11877
|
-
*
|
|
11878
|
-
* @summary Reject consultation.
|
|
11879
|
-
* @param {string} consultationId
|
|
11880
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
11881
|
-
* @param {*} [options] Override http request option.
|
|
11882
|
-
* @throws {RequiredError}
|
|
11883
|
-
* @memberof ConsultationsApi
|
|
11884
|
-
*/
|
|
11885
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11886
11743
|
/**
|
|
11887
11744
|
*
|
|
11888
11745
|
* @summary Get all consultations.
|
|
@@ -14557,6 +14414,30 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14557
14414
|
* @throws {RequiredError}
|
|
14558
14415
|
*/
|
|
14559
14416
|
apiV2HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14417
|
+
/**
|
|
14418
|
+
*
|
|
14419
|
+
* @summary Get all HospitalHandles.
|
|
14420
|
+
* @param {string} hospitalId
|
|
14421
|
+
* @param {string} [hospitalId2]
|
|
14422
|
+
* @param {string} [id]
|
|
14423
|
+
* @param {SnsType} [snsType]
|
|
14424
|
+
* @param {string} [handle]
|
|
14425
|
+
* @param {number} [page]
|
|
14426
|
+
* @param {number} [limit]
|
|
14427
|
+
* @param {Date} [lastRetrieved]
|
|
14428
|
+
* @param {*} [options] Override http request option.
|
|
14429
|
+
* @throws {RequiredError}
|
|
14430
|
+
*/
|
|
14431
|
+
apiV2HospitalsHospitalIdHandlesGet: (hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14432
|
+
/**
|
|
14433
|
+
*
|
|
14434
|
+
* @summary Get HospitalHandle.
|
|
14435
|
+
* @param {string} hospitalId
|
|
14436
|
+
* @param {string} handleId
|
|
14437
|
+
* @param {*} [options] Override http request option.
|
|
14438
|
+
* @throws {RequiredError}
|
|
14439
|
+
*/
|
|
14440
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14560
14441
|
/**
|
|
14561
14442
|
*
|
|
14562
14443
|
* @summary Get all HospitalMedias.
|
|
@@ -14701,6 +14582,32 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14701
14582
|
* @throws {RequiredError}
|
|
14702
14583
|
*/
|
|
14703
14584
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14585
|
+
/**
|
|
14586
|
+
*
|
|
14587
|
+
* @summary Get all HospitalWorkingDays.
|
|
14588
|
+
* @param {string} hospitalId
|
|
14589
|
+
* @param {string} [hospitalId2]
|
|
14590
|
+
* @param {string} [id]
|
|
14591
|
+
* @param {string} [dayOfWeek]
|
|
14592
|
+
* @param {Date} [timeFrom]
|
|
14593
|
+
* @param {Date} [timeTo]
|
|
14594
|
+
* @param {boolean} [checkHoliday]
|
|
14595
|
+
* @param {number} [page]
|
|
14596
|
+
* @param {number} [limit]
|
|
14597
|
+
* @param {Date} [lastRetrieved]
|
|
14598
|
+
* @param {*} [options] Override http request option.
|
|
14599
|
+
* @throws {RequiredError}
|
|
14600
|
+
*/
|
|
14601
|
+
apiV2HospitalsHospitalIdWorkingdaysGet: (hospitalId: string, hospitalId2?: string | undefined, 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>;
|
|
14602
|
+
/**
|
|
14603
|
+
*
|
|
14604
|
+
* @summary Get HospitalWorkingDay.
|
|
14605
|
+
* @param {string} hospitalId
|
|
14606
|
+
* @param {string} workingDayId
|
|
14607
|
+
* @param {*} [options] Override http request option.
|
|
14608
|
+
* @throws {RequiredError}
|
|
14609
|
+
*/
|
|
14610
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14704
14611
|
/**
|
|
14705
14612
|
*
|
|
14706
14613
|
* @summary Get all Hospitals.
|
|
@@ -14867,6 +14774,30 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14867
14774
|
* @throws {RequiredError}
|
|
14868
14775
|
*/
|
|
14869
14776
|
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
14777
|
+
/**
|
|
14778
|
+
*
|
|
14779
|
+
* @summary Get all HospitalHandles.
|
|
14780
|
+
* @param {string} hospitalId
|
|
14781
|
+
* @param {string} [hospitalId2]
|
|
14782
|
+
* @param {string} [id]
|
|
14783
|
+
* @param {SnsType} [snsType]
|
|
14784
|
+
* @param {string} [handle]
|
|
14785
|
+
* @param {number} [page]
|
|
14786
|
+
* @param {number} [limit]
|
|
14787
|
+
* @param {Date} [lastRetrieved]
|
|
14788
|
+
* @param {*} [options] Override http request option.
|
|
14789
|
+
* @throws {RequiredError}
|
|
14790
|
+
*/
|
|
14791
|
+
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSnsHandlesModel>>;
|
|
14792
|
+
/**
|
|
14793
|
+
*
|
|
14794
|
+
* @summary Get HospitalHandle.
|
|
14795
|
+
* @param {string} hospitalId
|
|
14796
|
+
* @param {string} handleId
|
|
14797
|
+
* @param {*} [options] Override http request option.
|
|
14798
|
+
* @throws {RequiredError}
|
|
14799
|
+
*/
|
|
14800
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14870
14801
|
/**
|
|
14871
14802
|
*
|
|
14872
14803
|
* @summary Get all HospitalMedias.
|
|
@@ -15011,6 +14942,32 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15011
14942
|
* @throws {RequiredError}
|
|
15012
14943
|
*/
|
|
15013
14944
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
14945
|
+
/**
|
|
14946
|
+
*
|
|
14947
|
+
* @summary Get all HospitalWorkingDays.
|
|
14948
|
+
* @param {string} hospitalId
|
|
14949
|
+
* @param {string} [hospitalId2]
|
|
14950
|
+
* @param {string} [id]
|
|
14951
|
+
* @param {string} [dayOfWeek]
|
|
14952
|
+
* @param {Date} [timeFrom]
|
|
14953
|
+
* @param {Date} [timeTo]
|
|
14954
|
+
* @param {boolean} [checkHoliday]
|
|
14955
|
+
* @param {number} [page]
|
|
14956
|
+
* @param {number} [limit]
|
|
14957
|
+
* @param {Date} [lastRetrieved]
|
|
14958
|
+
* @param {*} [options] Override http request option.
|
|
14959
|
+
* @throws {RequiredError}
|
|
14960
|
+
*/
|
|
14961
|
+
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, 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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDaysModel>>;
|
|
14962
|
+
/**
|
|
14963
|
+
*
|
|
14964
|
+
* @summary Get HospitalWorkingDay.
|
|
14965
|
+
* @param {string} hospitalId
|
|
14966
|
+
* @param {string} workingDayId
|
|
14967
|
+
* @param {*} [options] Override http request option.
|
|
14968
|
+
* @throws {RequiredError}
|
|
14969
|
+
*/
|
|
14970
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
15014
14971
|
/**
|
|
15015
14972
|
*
|
|
15016
14973
|
* @summary Get all Hospitals.
|
|
@@ -15177,6 +15134,30 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15177
15134
|
* @throws {RequiredError}
|
|
15178
15135
|
*/
|
|
15179
15136
|
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
15137
|
+
/**
|
|
15138
|
+
*
|
|
15139
|
+
* @summary Get all HospitalHandles.
|
|
15140
|
+
* @param {string} hospitalId
|
|
15141
|
+
* @param {string} [hospitalId2]
|
|
15142
|
+
* @param {string} [id]
|
|
15143
|
+
* @param {SnsType} [snsType]
|
|
15144
|
+
* @param {string} [handle]
|
|
15145
|
+
* @param {number} [page]
|
|
15146
|
+
* @param {number} [limit]
|
|
15147
|
+
* @param {Date} [lastRetrieved]
|
|
15148
|
+
* @param {*} [options] Override http request option.
|
|
15149
|
+
* @throws {RequiredError}
|
|
15150
|
+
*/
|
|
15151
|
+
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSnsHandlesModel>;
|
|
15152
|
+
/**
|
|
15153
|
+
*
|
|
15154
|
+
* @summary Get HospitalHandle.
|
|
15155
|
+
* @param {string} hospitalId
|
|
15156
|
+
* @param {string} handleId
|
|
15157
|
+
* @param {*} [options] Override http request option.
|
|
15158
|
+
* @throws {RequiredError}
|
|
15159
|
+
*/
|
|
15160
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
15180
15161
|
/**
|
|
15181
15162
|
*
|
|
15182
15163
|
* @summary Get all HospitalMedias.
|
|
@@ -15321,6 +15302,32 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15321
15302
|
* @throws {RequiredError}
|
|
15322
15303
|
*/
|
|
15323
15304
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
15305
|
+
/**
|
|
15306
|
+
*
|
|
15307
|
+
* @summary Get all HospitalWorkingDays.
|
|
15308
|
+
* @param {string} hospitalId
|
|
15309
|
+
* @param {string} [hospitalId2]
|
|
15310
|
+
* @param {string} [id]
|
|
15311
|
+
* @param {string} [dayOfWeek]
|
|
15312
|
+
* @param {Date} [timeFrom]
|
|
15313
|
+
* @param {Date} [timeTo]
|
|
15314
|
+
* @param {boolean} [checkHoliday]
|
|
15315
|
+
* @param {number} [page]
|
|
15316
|
+
* @param {number} [limit]
|
|
15317
|
+
* @param {Date} [lastRetrieved]
|
|
15318
|
+
* @param {*} [options] Override http request option.
|
|
15319
|
+
* @throws {RequiredError}
|
|
15320
|
+
*/
|
|
15321
|
+
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string | undefined, 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>;
|
|
15322
|
+
/**
|
|
15323
|
+
*
|
|
15324
|
+
* @summary Get HospitalWorkingDay.
|
|
15325
|
+
* @param {string} hospitalId
|
|
15326
|
+
* @param {string} workingDayId
|
|
15327
|
+
* @param {*} [options] Override http request option.
|
|
15328
|
+
* @throws {RequiredError}
|
|
15329
|
+
*/
|
|
15330
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<WorkingDayModel>;
|
|
15324
15331
|
/**
|
|
15325
15332
|
*
|
|
15326
15333
|
* @summary Get all Hospitals.
|
|
@@ -15499,6 +15506,32 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15499
15506
|
* @memberof HospitalsApi
|
|
15500
15507
|
*/
|
|
15501
15508
|
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel, any>>;
|
|
15509
|
+
/**
|
|
15510
|
+
*
|
|
15511
|
+
* @summary Get all HospitalHandles.
|
|
15512
|
+
* @param {string} hospitalId
|
|
15513
|
+
* @param {string} [hospitalId2]
|
|
15514
|
+
* @param {string} [id]
|
|
15515
|
+
* @param {SnsType} [snsType]
|
|
15516
|
+
* @param {string} [handle]
|
|
15517
|
+
* @param {number} [page]
|
|
15518
|
+
* @param {number} [limit]
|
|
15519
|
+
* @param {Date} [lastRetrieved]
|
|
15520
|
+
* @param {*} [options] Override http request option.
|
|
15521
|
+
* @throws {RequiredError}
|
|
15522
|
+
* @memberof HospitalsApi
|
|
15523
|
+
*/
|
|
15524
|
+
apiV2HospitalsHospitalIdHandlesGet(hospitalId: string, hospitalId2?: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSnsHandlesModel, any>>;
|
|
15525
|
+
/**
|
|
15526
|
+
*
|
|
15527
|
+
* @summary Get HospitalHandle.
|
|
15528
|
+
* @param {string} hospitalId
|
|
15529
|
+
* @param {string} handleId
|
|
15530
|
+
* @param {*} [options] Override http request option.
|
|
15531
|
+
* @throws {RequiredError}
|
|
15532
|
+
* @memberof HospitalsApi
|
|
15533
|
+
*/
|
|
15534
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel, any>>;
|
|
15502
15535
|
/**
|
|
15503
15536
|
*
|
|
15504
15537
|
* @summary Get all HospitalMedias.
|
|
@@ -15652,6 +15685,34 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15652
15685
|
* @memberof HospitalsApi
|
|
15653
15686
|
*/
|
|
15654
15687
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
15688
|
+
/**
|
|
15689
|
+
*
|
|
15690
|
+
* @summary Get all HospitalWorkingDays.
|
|
15691
|
+
* @param {string} hospitalId
|
|
15692
|
+
* @param {string} [hospitalId2]
|
|
15693
|
+
* @param {string} [id]
|
|
15694
|
+
* @param {string} [dayOfWeek]
|
|
15695
|
+
* @param {Date} [timeFrom]
|
|
15696
|
+
* @param {Date} [timeTo]
|
|
15697
|
+
* @param {boolean} [checkHoliday]
|
|
15698
|
+
* @param {number} [page]
|
|
15699
|
+
* @param {number} [limit]
|
|
15700
|
+
* @param {Date} [lastRetrieved]
|
|
15701
|
+
* @param {*} [options] Override http request option.
|
|
15702
|
+
* @throws {RequiredError}
|
|
15703
|
+
* @memberof HospitalsApi
|
|
15704
|
+
*/
|
|
15705
|
+
apiV2HospitalsHospitalIdWorkingdaysGet(hospitalId: string, hospitalId2?: string, id?: string, dayOfWeek?: string, timeFrom?: Date, timeTo?: Date, checkHoliday?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDaysModel, any>>;
|
|
15706
|
+
/**
|
|
15707
|
+
*
|
|
15708
|
+
* @summary Get HospitalWorkingDay.
|
|
15709
|
+
* @param {string} hospitalId
|
|
15710
|
+
* @param {string} workingDayId
|
|
15711
|
+
* @param {*} [options] Override http request option.
|
|
15712
|
+
* @throws {RequiredError}
|
|
15713
|
+
* @memberof HospitalsApi
|
|
15714
|
+
*/
|
|
15715
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel, any>>;
|
|
15655
15716
|
/**
|
|
15656
15717
|
*
|
|
15657
15718
|
* @summary Get all Hospitals.
|