ch-api-client-typescript2 2.9.6 → 2.9.9
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 +553 -484
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +633 -986
- package/package.json +1 -1
- package/src/api.ts +852 -923
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
|
|
@@ -1317,12 +1279,6 @@ export interface BookingItemModel {
|
|
|
1317
1279
|
* @memberof BookingItemModel
|
|
1318
1280
|
*/
|
|
1319
1281
|
'requestDate'?: Date;
|
|
1320
|
-
/**
|
|
1321
|
-
*
|
|
1322
|
-
* @type {string}
|
|
1323
|
-
* @memberof BookingItemModel
|
|
1324
|
-
*/
|
|
1325
|
-
'domain'?: string | null;
|
|
1326
1282
|
/**
|
|
1327
1283
|
*
|
|
1328
1284
|
* @type {BookingStatus}
|
|
@@ -1353,6 +1309,12 @@ export interface BookingItemModel {
|
|
|
1353
1309
|
* @memberof BookingItemModel
|
|
1354
1310
|
*/
|
|
1355
1311
|
'completionRate'?: number;
|
|
1312
|
+
/**
|
|
1313
|
+
*
|
|
1314
|
+
* @type {boolean}
|
|
1315
|
+
* @memberof BookingItemModel
|
|
1316
|
+
*/
|
|
1317
|
+
'isExternal'?: boolean;
|
|
1356
1318
|
}
|
|
1357
1319
|
/**
|
|
1358
1320
|
*
|
|
@@ -1534,12 +1496,6 @@ export interface BookingModel {
|
|
|
1534
1496
|
* @memberof BookingModel
|
|
1535
1497
|
*/
|
|
1536
1498
|
'requestDate'?: Date;
|
|
1537
|
-
/**
|
|
1538
|
-
*
|
|
1539
|
-
* @type {string}
|
|
1540
|
-
* @memberof BookingModel
|
|
1541
|
-
*/
|
|
1542
|
-
'domain'?: string | null;
|
|
1543
1499
|
/**
|
|
1544
1500
|
*
|
|
1545
1501
|
* @type {BookingStatus}
|
|
@@ -1570,6 +1526,12 @@ export interface BookingModel {
|
|
|
1570
1526
|
* @memberof BookingModel
|
|
1571
1527
|
*/
|
|
1572
1528
|
'completionRate'?: number;
|
|
1529
|
+
/**
|
|
1530
|
+
*
|
|
1531
|
+
* @type {boolean}
|
|
1532
|
+
* @memberof BookingModel
|
|
1533
|
+
*/
|
|
1534
|
+
'isExternal'?: boolean;
|
|
1573
1535
|
/**
|
|
1574
1536
|
*
|
|
1575
1537
|
* @type {Array<BookingChangeLogModel>}
|
|
@@ -2037,12 +1999,6 @@ export interface ConsultationItemModel {
|
|
|
2037
1999
|
* @memberof ConsultationItemModel
|
|
2038
2000
|
*/
|
|
2039
2001
|
'requestDate'?: Date;
|
|
2040
|
-
/**
|
|
2041
|
-
*
|
|
2042
|
-
* @type {string}
|
|
2043
|
-
* @memberof ConsultationItemModel
|
|
2044
|
-
*/
|
|
2045
|
-
'domain'?: string | null;
|
|
2046
2002
|
/**
|
|
2047
2003
|
*
|
|
2048
2004
|
* @type {ConsultationStatus}
|
|
@@ -2073,6 +2029,12 @@ export interface ConsultationItemModel {
|
|
|
2073
2029
|
* @memberof ConsultationItemModel
|
|
2074
2030
|
*/
|
|
2075
2031
|
'completionRate'?: number;
|
|
2032
|
+
/**
|
|
2033
|
+
*
|
|
2034
|
+
* @type {boolean}
|
|
2035
|
+
* @memberof ConsultationItemModel
|
|
2036
|
+
*/
|
|
2037
|
+
'isExternal'?: boolean;
|
|
2076
2038
|
}
|
|
2077
2039
|
/**
|
|
2078
2040
|
*
|
|
@@ -2314,12 +2276,6 @@ export interface ConsultationModel {
|
|
|
2314
2276
|
* @memberof ConsultationModel
|
|
2315
2277
|
*/
|
|
2316
2278
|
'requestDate'?: Date;
|
|
2317
|
-
/**
|
|
2318
|
-
*
|
|
2319
|
-
* @type {string}
|
|
2320
|
-
* @memberof ConsultationModel
|
|
2321
|
-
*/
|
|
2322
|
-
'domain'?: string | null;
|
|
2323
2279
|
/**
|
|
2324
2280
|
*
|
|
2325
2281
|
* @type {ConsultationStatus}
|
|
@@ -2350,6 +2306,12 @@ export interface ConsultationModel {
|
|
|
2350
2306
|
* @memberof ConsultationModel
|
|
2351
2307
|
*/
|
|
2352
2308
|
'completionRate'?: number;
|
|
2309
|
+
/**
|
|
2310
|
+
*
|
|
2311
|
+
* @type {boolean}
|
|
2312
|
+
* @memberof ConsultationModel
|
|
2313
|
+
*/
|
|
2314
|
+
'isExternal'?: boolean;
|
|
2353
2315
|
/**
|
|
2354
2316
|
*
|
|
2355
2317
|
* @type {Array<ConsultationChangeLogModel>}
|
|
@@ -2927,6 +2889,12 @@ export interface CreateBookingCommand {
|
|
|
2927
2889
|
* @memberof CreateBookingCommand
|
|
2928
2890
|
*/
|
|
2929
2891
|
'timeZone'?: string | null;
|
|
2892
|
+
/**
|
|
2893
|
+
*
|
|
2894
|
+
* @type {boolean}
|
|
2895
|
+
* @memberof CreateBookingCommand
|
|
2896
|
+
*/
|
|
2897
|
+
'isExternal'?: boolean;
|
|
2930
2898
|
}
|
|
2931
2899
|
/**
|
|
2932
2900
|
*
|
|
@@ -3079,6 +3047,12 @@ export interface CreateConsultationCommand {
|
|
|
3079
3047
|
* @memberof CreateConsultationCommand
|
|
3080
3048
|
*/
|
|
3081
3049
|
'timeZone'?: string | null;
|
|
3050
|
+
/**
|
|
3051
|
+
*
|
|
3052
|
+
* @type {boolean}
|
|
3053
|
+
* @memberof CreateConsultationCommand
|
|
3054
|
+
*/
|
|
3055
|
+
'isExternal'?: boolean;
|
|
3082
3056
|
}
|
|
3083
3057
|
/**
|
|
3084
3058
|
*
|
|
@@ -6223,6 +6197,30 @@ export interface HospitalModel {
|
|
|
6223
6197
|
* @memberof HospitalModel
|
|
6224
6198
|
*/
|
|
6225
6199
|
'languageCode'?: string | null;
|
|
6200
|
+
/**
|
|
6201
|
+
*
|
|
6202
|
+
* @type {string}
|
|
6203
|
+
* @memberof HospitalModel
|
|
6204
|
+
*/
|
|
6205
|
+
'contactTel'?: string | null;
|
|
6206
|
+
/**
|
|
6207
|
+
*
|
|
6208
|
+
* @type {string}
|
|
6209
|
+
* @memberof HospitalModel
|
|
6210
|
+
*/
|
|
6211
|
+
'contactEmail'?: string | null;
|
|
6212
|
+
/**
|
|
6213
|
+
*
|
|
6214
|
+
* @type {Array<WorkingDay>}
|
|
6215
|
+
* @memberof HospitalModel
|
|
6216
|
+
*/
|
|
6217
|
+
'hospitalWorkingDays'?: Array<WorkingDay> | null;
|
|
6218
|
+
/**
|
|
6219
|
+
*
|
|
6220
|
+
* @type {Array<SnsHandle>}
|
|
6221
|
+
* @memberof HospitalModel
|
|
6222
|
+
*/
|
|
6223
|
+
'hospitalSnsHandles'?: Array<SnsHandle> | null;
|
|
6226
6224
|
}
|
|
6227
6225
|
/**
|
|
6228
6226
|
*
|
|
@@ -6362,6 +6360,12 @@ export interface HospitalServiceItemModel {
|
|
|
6362
6360
|
* @memberof HospitalServiceItemModel
|
|
6363
6361
|
*/
|
|
6364
6362
|
'order'?: number;
|
|
6363
|
+
/**
|
|
6364
|
+
*
|
|
6365
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6366
|
+
* @memberof HospitalServiceItemModel
|
|
6367
|
+
*/
|
|
6368
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6365
6369
|
/**
|
|
6366
6370
|
*
|
|
6367
6371
|
* @type {boolean}
|
|
@@ -6531,6 +6535,12 @@ export interface HospitalServiceModel {
|
|
|
6531
6535
|
* @memberof HospitalServiceModel
|
|
6532
6536
|
*/
|
|
6533
6537
|
'order'?: number;
|
|
6538
|
+
/**
|
|
6539
|
+
*
|
|
6540
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6541
|
+
* @memberof HospitalServiceModel
|
|
6542
|
+
*/
|
|
6543
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6534
6544
|
/**
|
|
6535
6545
|
*
|
|
6536
6546
|
* @type {boolean}
|
|
@@ -6612,6 +6622,25 @@ export interface HospitalSimpleItemModel {
|
|
|
6612
6622
|
*/
|
|
6613
6623
|
'confirmed'?: boolean;
|
|
6614
6624
|
}
|
|
6625
|
+
/**
|
|
6626
|
+
*
|
|
6627
|
+
* @export
|
|
6628
|
+
* @interface HospitalSnsHandlesModel
|
|
6629
|
+
*/
|
|
6630
|
+
export interface HospitalSnsHandlesModel {
|
|
6631
|
+
/**
|
|
6632
|
+
*
|
|
6633
|
+
* @type {Array<SnsHandleModel>}
|
|
6634
|
+
* @memberof HospitalSnsHandlesModel
|
|
6635
|
+
*/
|
|
6636
|
+
'items'?: Array<SnsHandleModel> | null;
|
|
6637
|
+
/**
|
|
6638
|
+
*
|
|
6639
|
+
* @type {PagedListMetaData}
|
|
6640
|
+
* @memberof HospitalSnsHandlesModel
|
|
6641
|
+
*/
|
|
6642
|
+
'metaData'?: PagedListMetaData;
|
|
6643
|
+
}
|
|
6615
6644
|
/**
|
|
6616
6645
|
*
|
|
6617
6646
|
* @export
|
|
@@ -6788,6 +6817,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6788
6817
|
* @memberof HospitalSpecialtyItemModel
|
|
6789
6818
|
*/
|
|
6790
6819
|
'backgroundThumbnail'?: string | null;
|
|
6820
|
+
/**
|
|
6821
|
+
*
|
|
6822
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6823
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6824
|
+
*/
|
|
6825
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6791
6826
|
/**
|
|
6792
6827
|
*
|
|
6793
6828
|
* @type {Array<MediaModel>}
|
|
@@ -6939,6 +6974,12 @@ export interface HospitalSpecialtyModel {
|
|
|
6939
6974
|
* @memberof HospitalSpecialtyModel
|
|
6940
6975
|
*/
|
|
6941
6976
|
'backgroundThumbnail'?: string | null;
|
|
6977
|
+
/**
|
|
6978
|
+
*
|
|
6979
|
+
* @type {Array<LocalizedUrlModel>}
|
|
6980
|
+
* @memberof HospitalSpecialtyModel
|
|
6981
|
+
*/
|
|
6982
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
6942
6983
|
/**
|
|
6943
6984
|
*
|
|
6944
6985
|
* @type {Array<MediaModel>}
|
|
@@ -7000,6 +7041,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
7000
7041
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
7001
7042
|
*/
|
|
7002
7043
|
'confirmed'?: boolean;
|
|
7044
|
+
/**
|
|
7045
|
+
*
|
|
7046
|
+
* @type {Array<LocalizedUrlModel>}
|
|
7047
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
7048
|
+
*/
|
|
7049
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
7003
7050
|
}
|
|
7004
7051
|
/**
|
|
7005
7052
|
*
|
|
@@ -8135,44 +8182,6 @@ export declare enum RefundPolicy {
|
|
|
8135
8182
|
Refundable = "Refundable",
|
|
8136
8183
|
PartialRefundable = "PartialRefundable"
|
|
8137
8184
|
}
|
|
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
8185
|
/**
|
|
8177
8186
|
*
|
|
8178
8187
|
* @export
|
|
@@ -8730,6 +8739,31 @@ export interface ServiceReviewsModel {
|
|
|
8730
8739
|
*/
|
|
8731
8740
|
'metaData'?: PagedListMetaData;
|
|
8732
8741
|
}
|
|
8742
|
+
/**
|
|
8743
|
+
*
|
|
8744
|
+
* @export
|
|
8745
|
+
* @interface SnsHandle
|
|
8746
|
+
*/
|
|
8747
|
+
export interface SnsHandle {
|
|
8748
|
+
/**
|
|
8749
|
+
*
|
|
8750
|
+
* @type {string}
|
|
8751
|
+
* @memberof SnsHandle
|
|
8752
|
+
*/
|
|
8753
|
+
'id'?: string;
|
|
8754
|
+
/**
|
|
8755
|
+
*
|
|
8756
|
+
* @type {SnsType}
|
|
8757
|
+
* @memberof SnsHandle
|
|
8758
|
+
*/
|
|
8759
|
+
'snsType'?: SnsType;
|
|
8760
|
+
/**
|
|
8761
|
+
*
|
|
8762
|
+
* @type {string}
|
|
8763
|
+
* @memberof SnsHandle
|
|
8764
|
+
*/
|
|
8765
|
+
'handle'?: string | null;
|
|
8766
|
+
}
|
|
8733
8767
|
/**
|
|
8734
8768
|
*
|
|
8735
8769
|
* @export
|
|
@@ -8763,7 +8797,9 @@ export interface SnsHandleModel {
|
|
|
8763
8797
|
export declare enum SnsType {
|
|
8764
8798
|
Twitter = "Twitter",
|
|
8765
8799
|
Facebook = "Facebook",
|
|
8766
|
-
Instagram = "Instagram"
|
|
8800
|
+
Instagram = "Instagram",
|
|
8801
|
+
LinkedIn = "LinkedIn",
|
|
8802
|
+
Youtube = "Youtube"
|
|
8767
8803
|
}
|
|
8768
8804
|
/**
|
|
8769
8805
|
*
|
|
@@ -8881,6 +8917,12 @@ export interface SpecialtyItemModel {
|
|
|
8881
8917
|
* @memberof SpecialtyItemModel
|
|
8882
8918
|
*/
|
|
8883
8919
|
'confirmed'?: boolean;
|
|
8920
|
+
/**
|
|
8921
|
+
*
|
|
8922
|
+
* @type {Array<LocalizedUrlModel>}
|
|
8923
|
+
* @memberof SpecialtyItemModel
|
|
8924
|
+
*/
|
|
8925
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8884
8926
|
/**
|
|
8885
8927
|
*
|
|
8886
8928
|
* @type {AuditableEntity}
|
|
@@ -8966,6 +9008,12 @@ export interface SpecialtyModel {
|
|
|
8966
9008
|
* @memberof SpecialtyModel
|
|
8967
9009
|
*/
|
|
8968
9010
|
'confirmed'?: boolean;
|
|
9011
|
+
/**
|
|
9012
|
+
*
|
|
9013
|
+
* @type {Array<LocalizedUrlModel>}
|
|
9014
|
+
* @memberof SpecialtyModel
|
|
9015
|
+
*/
|
|
9016
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
8969
9017
|
/**
|
|
8970
9018
|
*
|
|
8971
9019
|
* @type {AuditableEntity}
|
|
@@ -9902,71 +9950,143 @@ export interface UserModel {
|
|
|
9902
9950
|
'locations'?: Array<UserLocationModel> | null;
|
|
9903
9951
|
}
|
|
9904
9952
|
/**
|
|
9905
|
-
*
|
|
9953
|
+
*
|
|
9906
9954
|
* @export
|
|
9955
|
+
* @interface WorkingDay
|
|
9907
9956
|
*/
|
|
9908
|
-
export
|
|
9957
|
+
export interface WorkingDay {
|
|
9909
9958
|
/**
|
|
9910
9959
|
*
|
|
9911
|
-
* @
|
|
9912
|
-
* @
|
|
9913
|
-
* @param {string} [languageCode]
|
|
9914
|
-
* @param {boolean} [returnDefaultValue]
|
|
9915
|
-
* @param {*} [options] Override http request option.
|
|
9916
|
-
* @throws {RequiredError}
|
|
9960
|
+
* @type {string}
|
|
9961
|
+
* @memberof WorkingDay
|
|
9917
9962
|
*/
|
|
9918
|
-
|
|
9963
|
+
'id'?: string;
|
|
9919
9964
|
/**
|
|
9920
9965
|
*
|
|
9921
|
-
* @
|
|
9922
|
-
* @
|
|
9923
|
-
* @param {string} [hospitalName]
|
|
9924
|
-
* @param {string} [hospitalSlug]
|
|
9925
|
-
* @param {string} [overviewTitle]
|
|
9926
|
-
* @param {string} [normalizedOverviewTitle]
|
|
9927
|
-
* @param {string} [overview]
|
|
9928
|
-
* @param {string} [content]
|
|
9929
|
-
* @param {string} [customStyle]
|
|
9930
|
-
* @param {string} [background]
|
|
9931
|
-
* @param {string} [backgroundThumbnail]
|
|
9932
|
-
* @param {string} [languageCode]
|
|
9933
|
-
* @param {boolean} [returnDefaultValue]
|
|
9934
|
-
* @param {boolean} [confirmed]
|
|
9935
|
-
* @param {number} [page]
|
|
9936
|
-
* @param {number} [limit]
|
|
9937
|
-
* @param {Date} [lastRetrieved]
|
|
9938
|
-
* @param {*} [options] Override http request option.
|
|
9939
|
-
* @throws {RequiredError}
|
|
9966
|
+
* @type {string}
|
|
9967
|
+
* @memberof WorkingDay
|
|
9940
9968
|
*/
|
|
9941
|
-
|
|
9969
|
+
'dayOfWeek'?: string | null;
|
|
9942
9970
|
/**
|
|
9943
9971
|
*
|
|
9944
|
-
* @
|
|
9945
|
-
* @
|
|
9946
|
-
* @param {boolean} [returnDefaultValue]
|
|
9947
|
-
* @param {*} [options] Override http request option.
|
|
9948
|
-
* @throws {RequiredError}
|
|
9972
|
+
* @type {Date}
|
|
9973
|
+
* @memberof WorkingDay
|
|
9949
9974
|
*/
|
|
9950
|
-
|
|
9951
|
-
};
|
|
9952
|
-
/**
|
|
9953
|
-
* AboutUsApi - functional programming interface
|
|
9954
|
-
* @export
|
|
9955
|
-
*/
|
|
9956
|
-
export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
|
|
9975
|
+
'timeFrom'?: Date;
|
|
9957
9976
|
/**
|
|
9958
9977
|
*
|
|
9959
|
-
* @
|
|
9960
|
-
* @
|
|
9961
|
-
* @param {string} [languageCode]
|
|
9962
|
-
* @param {boolean} [returnDefaultValue]
|
|
9963
|
-
* @param {*} [options] Override http request option.
|
|
9964
|
-
* @throws {RequiredError}
|
|
9978
|
+
* @type {Date}
|
|
9979
|
+
* @memberof WorkingDay
|
|
9965
9980
|
*/
|
|
9966
|
-
|
|
9981
|
+
'timeTo'?: Date;
|
|
9967
9982
|
/**
|
|
9968
9983
|
*
|
|
9969
|
-
* @
|
|
9984
|
+
* @type {boolean}
|
|
9985
|
+
* @memberof WorkingDay
|
|
9986
|
+
*/
|
|
9987
|
+
'checkHoliday'?: boolean;
|
|
9988
|
+
}
|
|
9989
|
+
/**
|
|
9990
|
+
*
|
|
9991
|
+
* @export
|
|
9992
|
+
* @interface WorkingDayItemModel
|
|
9993
|
+
*/
|
|
9994
|
+
export interface WorkingDayItemModel {
|
|
9995
|
+
/**
|
|
9996
|
+
*
|
|
9997
|
+
* @type {string}
|
|
9998
|
+
* @memberof WorkingDayItemModel
|
|
9999
|
+
*/
|
|
10000
|
+
'id'?: string;
|
|
10001
|
+
/**
|
|
10002
|
+
*
|
|
10003
|
+
* @type {string}
|
|
10004
|
+
* @memberof WorkingDayItemModel
|
|
10005
|
+
*/
|
|
10006
|
+
'dayOfWeek'?: string | null;
|
|
10007
|
+
/**
|
|
10008
|
+
*
|
|
10009
|
+
* @type {Date}
|
|
10010
|
+
* @memberof WorkingDayItemModel
|
|
10011
|
+
*/
|
|
10012
|
+
'timeFrom'?: Date;
|
|
10013
|
+
/**
|
|
10014
|
+
*
|
|
10015
|
+
* @type {Date}
|
|
10016
|
+
* @memberof WorkingDayItemModel
|
|
10017
|
+
*/
|
|
10018
|
+
'timeTo'?: Date;
|
|
10019
|
+
/**
|
|
10020
|
+
*
|
|
10021
|
+
* @type {boolean}
|
|
10022
|
+
* @memberof WorkingDayItemModel
|
|
10023
|
+
*/
|
|
10024
|
+
'checkHoliday'?: boolean;
|
|
10025
|
+
}
|
|
10026
|
+
/**
|
|
10027
|
+
*
|
|
10028
|
+
* @export
|
|
10029
|
+
* @interface WorkingDayModel
|
|
10030
|
+
*/
|
|
10031
|
+
export interface WorkingDayModel {
|
|
10032
|
+
/**
|
|
10033
|
+
*
|
|
10034
|
+
* @type {string}
|
|
10035
|
+
* @memberof WorkingDayModel
|
|
10036
|
+
*/
|
|
10037
|
+
'id'?: string;
|
|
10038
|
+
/**
|
|
10039
|
+
*
|
|
10040
|
+
* @type {string}
|
|
10041
|
+
* @memberof WorkingDayModel
|
|
10042
|
+
*/
|
|
10043
|
+
'dayOfWeek'?: string | null;
|
|
10044
|
+
/**
|
|
10045
|
+
*
|
|
10046
|
+
* @type {Date}
|
|
10047
|
+
* @memberof WorkingDayModel
|
|
10048
|
+
*/
|
|
10049
|
+
'timeFrom'?: Date;
|
|
10050
|
+
/**
|
|
10051
|
+
*
|
|
10052
|
+
* @type {Date}
|
|
10053
|
+
* @memberof WorkingDayModel
|
|
10054
|
+
*/
|
|
10055
|
+
'timeTo'?: Date;
|
|
10056
|
+
/**
|
|
10057
|
+
*
|
|
10058
|
+
* @type {boolean}
|
|
10059
|
+
* @memberof WorkingDayModel
|
|
10060
|
+
*/
|
|
10061
|
+
'checkHoliday'?: boolean;
|
|
10062
|
+
}
|
|
10063
|
+
/**
|
|
10064
|
+
*
|
|
10065
|
+
* @export
|
|
10066
|
+
* @interface WorkingDaysModel
|
|
10067
|
+
*/
|
|
10068
|
+
export interface WorkingDaysModel {
|
|
10069
|
+
/**
|
|
10070
|
+
*
|
|
10071
|
+
* @type {Array<WorkingDayItemModel>}
|
|
10072
|
+
* @memberof WorkingDaysModel
|
|
10073
|
+
*/
|
|
10074
|
+
'items'?: Array<WorkingDayItemModel> | null;
|
|
10075
|
+
/**
|
|
10076
|
+
*
|
|
10077
|
+
* @type {PagedListMetaData}
|
|
10078
|
+
* @memberof WorkingDaysModel
|
|
10079
|
+
*/
|
|
10080
|
+
'metaData'?: PagedListMetaData;
|
|
10081
|
+
}
|
|
10082
|
+
/**
|
|
10083
|
+
* AboutUsApi - axios parameter creator
|
|
10084
|
+
* @export
|
|
10085
|
+
*/
|
|
10086
|
+
export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
10087
|
+
/**
|
|
10088
|
+
*
|
|
10089
|
+
* @summary Get all AboutUsList.
|
|
9970
10090
|
* @param {string} [hospitalId]
|
|
9971
10091
|
* @param {string} [hospitalName]
|
|
9972
10092
|
* @param {string} [hospitalSlug]
|
|
@@ -9986,7 +10106,17 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
|
|
|
9986
10106
|
* @param {*} [options] Override http request option.
|
|
9987
10107
|
* @throws {RequiredError}
|
|
9988
10108
|
*/
|
|
9989
|
-
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
|
|
10109
|
+
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>;
|
|
10110
|
+
/**
|
|
10111
|
+
*
|
|
10112
|
+
* @summary Get AboutUs.
|
|
10113
|
+
* @param {string} hospitalId
|
|
10114
|
+
* @param {string} [languageCode]
|
|
10115
|
+
* @param {boolean} [returnDefaultValue]
|
|
10116
|
+
* @param {*} [options] Override http request option.
|
|
10117
|
+
* @throws {RequiredError}
|
|
10118
|
+
*/
|
|
10119
|
+
apiV2AboutusHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9990
10120
|
/**
|
|
9991
10121
|
*
|
|
9992
10122
|
* @param {string} slug
|
|
@@ -9995,23 +10125,61 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
|
|
|
9995
10125
|
* @param {*} [options] Override http request option.
|
|
9996
10126
|
* @throws {RequiredError}
|
|
9997
10127
|
*/
|
|
9998
|
-
apiV2AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig
|
|
10128
|
+
apiV2AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9999
10129
|
};
|
|
10000
10130
|
/**
|
|
10001
|
-
* AboutUsApi -
|
|
10131
|
+
* AboutUsApi - functional programming interface
|
|
10002
10132
|
* @export
|
|
10003
10133
|
*/
|
|
10004
|
-
export declare const
|
|
10134
|
+
export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
|
|
10135
|
+
/**
|
|
10136
|
+
*
|
|
10137
|
+
* @summary Get all AboutUsList.
|
|
10138
|
+
* @param {string} [hospitalId]
|
|
10139
|
+
* @param {string} [hospitalName]
|
|
10140
|
+
* @param {string} [hospitalSlug]
|
|
10141
|
+
* @param {string} [overviewTitle]
|
|
10142
|
+
* @param {string} [normalizedOverviewTitle]
|
|
10143
|
+
* @param {string} [overview]
|
|
10144
|
+
* @param {string} [content]
|
|
10145
|
+
* @param {string} [customStyle]
|
|
10146
|
+
* @param {string} [background]
|
|
10147
|
+
* @param {string} [backgroundThumbnail]
|
|
10148
|
+
* @param {string} [languageCode]
|
|
10149
|
+
* @param {boolean} [returnDefaultValue]
|
|
10150
|
+
* @param {boolean} [confirmed]
|
|
10151
|
+
* @param {number} [page]
|
|
10152
|
+
* @param {number} [limit]
|
|
10153
|
+
* @param {Date} [lastRetrieved]
|
|
10154
|
+
* @param {*} [options] Override http request option.
|
|
10155
|
+
* @throws {RequiredError}
|
|
10156
|
+
*/
|
|
10157
|
+
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>>;
|
|
10005
10158
|
/**
|
|
10006
10159
|
*
|
|
10007
10160
|
* @summary Get AboutUs.
|
|
10008
|
-
* @param {string}
|
|
10161
|
+
* @param {string} hospitalId
|
|
10162
|
+
* @param {string} [languageCode]
|
|
10163
|
+
* @param {boolean} [returnDefaultValue]
|
|
10164
|
+
* @param {*} [options] Override http request option.
|
|
10165
|
+
* @throws {RequiredError}
|
|
10166
|
+
*/
|
|
10167
|
+
apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
10168
|
+
/**
|
|
10169
|
+
*
|
|
10170
|
+
* @param {string} slug
|
|
10009
10171
|
* @param {string} [languageCode]
|
|
10010
10172
|
* @param {boolean} [returnDefaultValue]
|
|
10011
10173
|
* @param {*} [options] Override http request option.
|
|
10012
10174
|
* @throws {RequiredError}
|
|
10013
10175
|
*/
|
|
10014
|
-
|
|
10176
|
+
apiV2AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
|
|
10177
|
+
};
|
|
10178
|
+
/**
|
|
10179
|
+
* AboutUsApi - factory interface
|
|
10180
|
+
* @export
|
|
10181
|
+
*/
|
|
10182
|
+
export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
10015
10183
|
/**
|
|
10016
10184
|
*
|
|
10017
10185
|
* @summary Get all AboutUsList.
|
|
@@ -10035,6 +10203,16 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
|
|
|
10035
10203
|
* @throws {RequiredError}
|
|
10036
10204
|
*/
|
|
10037
10205
|
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>;
|
|
10206
|
+
/**
|
|
10207
|
+
*
|
|
10208
|
+
* @summary Get AboutUs.
|
|
10209
|
+
* @param {string} hospitalId
|
|
10210
|
+
* @param {string} [languageCode]
|
|
10211
|
+
* @param {boolean} [returnDefaultValue]
|
|
10212
|
+
* @param {*} [options] Override http request option.
|
|
10213
|
+
* @throws {RequiredError}
|
|
10214
|
+
*/
|
|
10215
|
+
apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
|
|
10038
10216
|
/**
|
|
10039
10217
|
*
|
|
10040
10218
|
* @param {string} slug
|
|
@@ -10052,17 +10230,6 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
|
|
|
10052
10230
|
* @extends {BaseAPI}
|
|
10053
10231
|
*/
|
|
10054
10232
|
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
10233
|
/**
|
|
10067
10234
|
*
|
|
10068
10235
|
* @summary Get all AboutUsList.
|
|
@@ -10087,6 +10254,17 @@ export declare class AboutUsApi extends BaseAPI {
|
|
|
10087
10254
|
* @memberof AboutUsApi
|
|
10088
10255
|
*/
|
|
10089
10256
|
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>>;
|
|
10257
|
+
/**
|
|
10258
|
+
*
|
|
10259
|
+
* @summary Get AboutUs.
|
|
10260
|
+
* @param {string} hospitalId
|
|
10261
|
+
* @param {string} [languageCode]
|
|
10262
|
+
* @param {boolean} [returnDefaultValue]
|
|
10263
|
+
* @param {*} [options] Override http request option.
|
|
10264
|
+
* @throws {RequiredError}
|
|
10265
|
+
* @memberof AboutUsApi
|
|
10266
|
+
*/
|
|
10267
|
+
apiV2AboutusHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel, any>>;
|
|
10090
10268
|
/**
|
|
10091
10269
|
*
|
|
10092
10270
|
* @param {string} slug
|
|
@@ -10796,31 +10974,6 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
10796
10974
|
* @export
|
|
10797
10975
|
*/
|
|
10798
10976
|
export declare const BookingsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
10799
|
-
/**
|
|
10800
|
-
*
|
|
10801
|
-
* @summary Approve booking.
|
|
10802
|
-
* @param {string} bookingId
|
|
10803
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
10804
|
-
* @param {*} [options] Override http request option.
|
|
10805
|
-
* @throws {RequiredError}
|
|
10806
|
-
*/
|
|
10807
|
-
apiV2BookingsBookingIdApprovePut: (bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10808
|
-
/**
|
|
10809
|
-
*
|
|
10810
|
-
* @summary Cancel booking.
|
|
10811
|
-
* @param {string} bookingId
|
|
10812
|
-
* @param {*} [options] Override http request option.
|
|
10813
|
-
* @throws {RequiredError}
|
|
10814
|
-
*/
|
|
10815
|
-
apiV2BookingsBookingIdCancelPut: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10816
|
-
/**
|
|
10817
|
-
*
|
|
10818
|
-
* @summary Delete booking.
|
|
10819
|
-
* @param {string} bookingId
|
|
10820
|
-
* @param {*} [options] Override http request option.
|
|
10821
|
-
* @throws {RequiredError}
|
|
10822
|
-
*/
|
|
10823
|
-
apiV2BookingsBookingIdDelete: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10824
10977
|
/**
|
|
10825
10978
|
*
|
|
10826
10979
|
* @summary Get booking.
|
|
@@ -10829,14 +10982,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10829
10982
|
* @throws {RequiredError}
|
|
10830
10983
|
*/
|
|
10831
10984
|
apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10832
|
-
/**
|
|
10833
|
-
*
|
|
10834
|
-
* @summary Mark as Paid booking.
|
|
10835
|
-
* @param {string} bookingId
|
|
10836
|
-
* @param {*} [options] Override http request option.
|
|
10837
|
-
* @throws {RequiredError}
|
|
10838
|
-
*/
|
|
10839
|
-
apiV2BookingsBookingIdPaidPost: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10840
10985
|
/**
|
|
10841
10986
|
*
|
|
10842
10987
|
* @summary Pay booking.
|
|
@@ -10854,15 +10999,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10854
10999
|
* @throws {RequiredError}
|
|
10855
11000
|
*/
|
|
10856
11001
|
apiV2BookingsBookingIdPut: (bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10857
|
-
/**
|
|
10858
|
-
*
|
|
10859
|
-
* @summary Reject booking.
|
|
10860
|
-
* @param {string} bookingId
|
|
10861
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
10862
|
-
* @param {*} [options] Override http request option.
|
|
10863
|
-
* @throws {RequiredError}
|
|
10864
|
-
*/
|
|
10865
|
-
apiV2BookingsBookingIdRejectPut: (bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10866
11002
|
/**
|
|
10867
11003
|
*
|
|
10868
11004
|
* @summary Get all bookings.
|
|
@@ -10894,31 +11030,6 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10894
11030
|
* @export
|
|
10895
11031
|
*/
|
|
10896
11032
|
export declare const BookingsApiFp: (configuration?: Configuration | undefined) => {
|
|
10897
|
-
/**
|
|
10898
|
-
*
|
|
10899
|
-
* @summary Approve booking.
|
|
10900
|
-
* @param {string} bookingId
|
|
10901
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
10902
|
-
* @param {*} [options] Override http request option.
|
|
10903
|
-
* @throws {RequiredError}
|
|
10904
|
-
*/
|
|
10905
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
10906
|
-
/**
|
|
10907
|
-
*
|
|
10908
|
-
* @summary Cancel booking.
|
|
10909
|
-
* @param {string} bookingId
|
|
10910
|
-
* @param {*} [options] Override http request option.
|
|
10911
|
-
* @throws {RequiredError}
|
|
10912
|
-
*/
|
|
10913
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
10914
|
-
/**
|
|
10915
|
-
*
|
|
10916
|
-
* @summary Delete booking.
|
|
10917
|
-
* @param {string} bookingId
|
|
10918
|
-
* @param {*} [options] Override http request option.
|
|
10919
|
-
* @throws {RequiredError}
|
|
10920
|
-
*/
|
|
10921
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
10922
11033
|
/**
|
|
10923
11034
|
*
|
|
10924
11035
|
* @summary Get booking.
|
|
@@ -10927,14 +11038,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
10927
11038
|
* @throws {RequiredError}
|
|
10928
11039
|
*/
|
|
10929
11040
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
10930
|
-
/**
|
|
10931
|
-
*
|
|
10932
|
-
* @summary Mark as Paid booking.
|
|
10933
|
-
* @param {string} bookingId
|
|
10934
|
-
* @param {*} [options] Override http request option.
|
|
10935
|
-
* @throws {RequiredError}
|
|
10936
|
-
*/
|
|
10937
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
10938
11041
|
/**
|
|
10939
11042
|
*
|
|
10940
11043
|
* @summary Pay booking.
|
|
@@ -10952,15 +11055,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
10952
11055
|
* @throws {RequiredError}
|
|
10953
11056
|
*/
|
|
10954
11057
|
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
10955
|
-
/**
|
|
10956
|
-
*
|
|
10957
|
-
* @summary Reject booking.
|
|
10958
|
-
* @param {string} bookingId
|
|
10959
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
10960
|
-
* @param {*} [options] Override http request option.
|
|
10961
|
-
* @throws {RequiredError}
|
|
10962
|
-
*/
|
|
10963
|
-
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
10964
11058
|
/**
|
|
10965
11059
|
*
|
|
10966
11060
|
* @summary Get all bookings.
|
|
@@ -10992,31 +11086,6 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
10992
11086
|
* @export
|
|
10993
11087
|
*/
|
|
10994
11088
|
export declare const BookingsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
10995
|
-
/**
|
|
10996
|
-
*
|
|
10997
|
-
* @summary Approve booking.
|
|
10998
|
-
* @param {string} bookingId
|
|
10999
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
11000
|
-
* @param {*} [options] Override http request option.
|
|
11001
|
-
* @throws {RequiredError}
|
|
11002
|
-
*/
|
|
11003
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11004
|
-
/**
|
|
11005
|
-
*
|
|
11006
|
-
* @summary Cancel booking.
|
|
11007
|
-
* @param {string} bookingId
|
|
11008
|
-
* @param {*} [options] Override http request option.
|
|
11009
|
-
* @throws {RequiredError}
|
|
11010
|
-
*/
|
|
11011
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: any): AxiosPromise<boolean>;
|
|
11012
|
-
/**
|
|
11013
|
-
*
|
|
11014
|
-
* @summary Delete booking.
|
|
11015
|
-
* @param {string} bookingId
|
|
11016
|
-
* @param {*} [options] Override http request option.
|
|
11017
|
-
* @throws {RequiredError}
|
|
11018
|
-
*/
|
|
11019
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: any): AxiosPromise<boolean>;
|
|
11020
11089
|
/**
|
|
11021
11090
|
*
|
|
11022
11091
|
* @summary Get booking.
|
|
@@ -11025,14 +11094,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11025
11094
|
* @throws {RequiredError}
|
|
11026
11095
|
*/
|
|
11027
11096
|
apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
|
|
11028
|
-
/**
|
|
11029
|
-
*
|
|
11030
|
-
* @summary Mark as Paid booking.
|
|
11031
|
-
* @param {string} bookingId
|
|
11032
|
-
* @param {*} [options] Override http request option.
|
|
11033
|
-
* @throws {RequiredError}
|
|
11034
|
-
*/
|
|
11035
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: any): AxiosPromise<string>;
|
|
11036
11097
|
/**
|
|
11037
11098
|
*
|
|
11038
11099
|
* @summary Pay booking.
|
|
@@ -11050,15 +11111,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11050
11111
|
* @throws {RequiredError}
|
|
11051
11112
|
*/
|
|
11052
11113
|
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: any): AxiosPromise<BookingModel>;
|
|
11053
|
-
/**
|
|
11054
|
-
*
|
|
11055
|
-
* @summary Reject booking.
|
|
11056
|
-
* @param {string} bookingId
|
|
11057
|
-
* @param {RejectBookingCommand} [rejectBookingCommand]
|
|
11058
|
-
* @param {*} [options] Override http request option.
|
|
11059
|
-
* @throws {RequiredError}
|
|
11060
|
-
*/
|
|
11061
|
-
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11062
11114
|
/**
|
|
11063
11115
|
*
|
|
11064
11116
|
* @summary Get all bookings.
|
|
@@ -11092,34 +11144,6 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
11092
11144
|
* @extends {BaseAPI}
|
|
11093
11145
|
*/
|
|
11094
11146
|
export declare class BookingsApi extends BaseAPI {
|
|
11095
|
-
/**
|
|
11096
|
-
*
|
|
11097
|
-
* @summary Approve booking.
|
|
11098
|
-
* @param {string} bookingId
|
|
11099
|
-
* @param {ApproveBookingCommand} [approveBookingCommand]
|
|
11100
|
-
* @param {*} [options] Override http request option.
|
|
11101
|
-
* @throws {RequiredError}
|
|
11102
|
-
* @memberof BookingsApi
|
|
11103
|
-
*/
|
|
11104
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11105
|
-
/**
|
|
11106
|
-
*
|
|
11107
|
-
* @summary Cancel booking.
|
|
11108
|
-
* @param {string} bookingId
|
|
11109
|
-
* @param {*} [options] Override http request option.
|
|
11110
|
-
* @throws {RequiredError}
|
|
11111
|
-
* @memberof BookingsApi
|
|
11112
|
-
*/
|
|
11113
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11114
|
-
/**
|
|
11115
|
-
*
|
|
11116
|
-
* @summary Delete booking.
|
|
11117
|
-
* @param {string} bookingId
|
|
11118
|
-
* @param {*} [options] Override http request option.
|
|
11119
|
-
* @throws {RequiredError}
|
|
11120
|
-
* @memberof BookingsApi
|
|
11121
|
-
*/
|
|
11122
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11123
11147
|
/**
|
|
11124
11148
|
*
|
|
11125
11149
|
* @summary Get booking.
|
|
@@ -11129,15 +11153,6 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
11129
11153
|
* @memberof BookingsApi
|
|
11130
11154
|
*/
|
|
11131
11155
|
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
11132
|
-
/**
|
|
11133
|
-
*
|
|
11134
|
-
* @summary Mark as Paid booking.
|
|
11135
|
-
* @param {string} bookingId
|
|
11136
|
-
* @param {*} [options] Override http request option.
|
|
11137
|
-
* @throws {RequiredError}
|
|
11138
|
-
* @memberof BookingsApi
|
|
11139
|
-
*/
|
|
11140
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
11141
11156
|
/**
|
|
11142
11157
|
*
|
|
11143
11158
|
* @summary Pay booking.
|
|
@@ -11146,27 +11161,17 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
11146
11161
|
* @throws {RequiredError}
|
|
11147
11162
|
* @memberof BookingsApi
|
|
11148
11163
|
*/
|
|
11149
|
-
apiV2BookingsBookingIdPayPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
11150
|
-
/**
|
|
11151
|
-
*
|
|
11152
|
-
* @summary Update booking.
|
|
11153
|
-
* @param {string} bookingId
|
|
11154
|
-
* @param {UpdateBookingCommand} [updateBookingCommand]
|
|
11155
|
-
* @param {*} [options] Override http request option.
|
|
11156
|
-
* @throws {RequiredError}
|
|
11157
|
-
* @memberof BookingsApi
|
|
11158
|
-
*/
|
|
11159
|
-
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
11164
|
+
apiV2BookingsBookingIdPayPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
11160
11165
|
/**
|
|
11161
11166
|
*
|
|
11162
|
-
* @summary
|
|
11167
|
+
* @summary Update booking.
|
|
11163
11168
|
* @param {string} bookingId
|
|
11164
|
-
* @param {
|
|
11169
|
+
* @param {UpdateBookingCommand} [updateBookingCommand]
|
|
11165
11170
|
* @param {*} [options] Override http request option.
|
|
11166
11171
|
* @throws {RequiredError}
|
|
11167
11172
|
* @memberof BookingsApi
|
|
11168
11173
|
*/
|
|
11169
|
-
|
|
11174
|
+
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
11170
11175
|
/**
|
|
11171
11176
|
*
|
|
11172
11177
|
* @summary Get all bookings.
|
|
@@ -11549,31 +11554,6 @@ export declare class CommunicationsApi extends BaseAPI {
|
|
|
11549
11554
|
* @export
|
|
11550
11555
|
*/
|
|
11551
11556
|
export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
11552
|
-
/**
|
|
11553
|
-
*
|
|
11554
|
-
* @summary Approve consultation.
|
|
11555
|
-
* @param {string} consultationId
|
|
11556
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11557
|
-
* @param {*} [options] Override http request option.
|
|
11558
|
-
* @throws {RequiredError}
|
|
11559
|
-
*/
|
|
11560
|
-
apiV2ConsultationsConsultationIdApprovePut: (consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11561
|
-
/**
|
|
11562
|
-
*
|
|
11563
|
-
* @summary Cancel consultation.
|
|
11564
|
-
* @param {string} consultationId
|
|
11565
|
-
* @param {*} [options] Override http request option.
|
|
11566
|
-
* @throws {RequiredError}
|
|
11567
|
-
*/
|
|
11568
|
-
apiV2ConsultationsConsultationIdCancelPut: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11569
|
-
/**
|
|
11570
|
-
*
|
|
11571
|
-
* @summary Delete consultation.
|
|
11572
|
-
* @param {string} consultationId
|
|
11573
|
-
* @param {*} [options] Override http request option.
|
|
11574
|
-
* @throws {RequiredError}
|
|
11575
|
-
*/
|
|
11576
|
-
apiV2ConsultationsConsultationIdDelete: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11577
11557
|
/**
|
|
11578
11558
|
*
|
|
11579
11559
|
* @summary Get consultation.
|
|
@@ -11599,15 +11579,6 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
11599
11579
|
* @throws {RequiredError}
|
|
11600
11580
|
*/
|
|
11601
11581
|
apiV2ConsultationsConsultationIdPut: (consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11602
|
-
/**
|
|
11603
|
-
*
|
|
11604
|
-
* @summary Reject consultation.
|
|
11605
|
-
* @param {string} consultationId
|
|
11606
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
11607
|
-
* @param {*} [options] Override http request option.
|
|
11608
|
-
* @throws {RequiredError}
|
|
11609
|
-
*/
|
|
11610
|
-
apiV2ConsultationsConsultationIdRejectPut: (consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11611
11582
|
/**
|
|
11612
11583
|
*
|
|
11613
11584
|
* @summary Get all consultations.
|
|
@@ -11639,31 +11610,6 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
11639
11610
|
* @export
|
|
11640
11611
|
*/
|
|
11641
11612
|
export declare const ConsultationsApiFp: (configuration?: Configuration | undefined) => {
|
|
11642
|
-
/**
|
|
11643
|
-
*
|
|
11644
|
-
* @summary Approve consultation.
|
|
11645
|
-
* @param {string} consultationId
|
|
11646
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11647
|
-
* @param {*} [options] Override http request option.
|
|
11648
|
-
* @throws {RequiredError}
|
|
11649
|
-
*/
|
|
11650
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11651
|
-
/**
|
|
11652
|
-
*
|
|
11653
|
-
* @summary Cancel consultation.
|
|
11654
|
-
* @param {string} consultationId
|
|
11655
|
-
* @param {*} [options] Override http request option.
|
|
11656
|
-
* @throws {RequiredError}
|
|
11657
|
-
*/
|
|
11658
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11659
|
-
/**
|
|
11660
|
-
*
|
|
11661
|
-
* @summary Delete consultation.
|
|
11662
|
-
* @param {string} consultationId
|
|
11663
|
-
* @param {*} [options] Override http request option.
|
|
11664
|
-
* @throws {RequiredError}
|
|
11665
|
-
*/
|
|
11666
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11667
11613
|
/**
|
|
11668
11614
|
*
|
|
11669
11615
|
* @summary Get consultation.
|
|
@@ -11689,15 +11635,6 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
11689
11635
|
* @throws {RequiredError}
|
|
11690
11636
|
*/
|
|
11691
11637
|
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
11692
|
-
/**
|
|
11693
|
-
*
|
|
11694
|
-
* @summary Reject consultation.
|
|
11695
|
-
* @param {string} consultationId
|
|
11696
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
11697
|
-
* @param {*} [options] Override http request option.
|
|
11698
|
-
* @throws {RequiredError}
|
|
11699
|
-
*/
|
|
11700
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
11701
11638
|
/**
|
|
11702
11639
|
*
|
|
11703
11640
|
* @summary Get all consultations.
|
|
@@ -11729,31 +11666,6 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
11729
11666
|
* @export
|
|
11730
11667
|
*/
|
|
11731
11668
|
export declare const ConsultationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
11732
|
-
/**
|
|
11733
|
-
*
|
|
11734
|
-
* @summary Approve consultation.
|
|
11735
|
-
* @param {string} consultationId
|
|
11736
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11737
|
-
* @param {*} [options] Override http request option.
|
|
11738
|
-
* @throws {RequiredError}
|
|
11739
|
-
*/
|
|
11740
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11741
|
-
/**
|
|
11742
|
-
*
|
|
11743
|
-
* @summary Cancel consultation.
|
|
11744
|
-
* @param {string} consultationId
|
|
11745
|
-
* @param {*} [options] Override http request option.
|
|
11746
|
-
* @throws {RequiredError}
|
|
11747
|
-
*/
|
|
11748
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: any): AxiosPromise<boolean>;
|
|
11749
|
-
/**
|
|
11750
|
-
*
|
|
11751
|
-
* @summary Delete consultation.
|
|
11752
|
-
* @param {string} consultationId
|
|
11753
|
-
* @param {*} [options] Override http request option.
|
|
11754
|
-
* @throws {RequiredError}
|
|
11755
|
-
*/
|
|
11756
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: any): AxiosPromise<boolean>;
|
|
11757
11669
|
/**
|
|
11758
11670
|
*
|
|
11759
11671
|
* @summary Get consultation.
|
|
@@ -11779,15 +11691,6 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
11779
11691
|
* @throws {RequiredError}
|
|
11780
11692
|
*/
|
|
11781
11693
|
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: any): AxiosPromise<ConsultationModel>;
|
|
11782
|
-
/**
|
|
11783
|
-
*
|
|
11784
|
-
* @summary Reject consultation.
|
|
11785
|
-
* @param {string} consultationId
|
|
11786
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
11787
|
-
* @param {*} [options] Override http request option.
|
|
11788
|
-
* @throws {RequiredError}
|
|
11789
|
-
*/
|
|
11790
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
11791
11694
|
/**
|
|
11792
11695
|
*
|
|
11793
11696
|
* @summary Get all consultations.
|
|
@@ -11821,34 +11724,6 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
11821
11724
|
* @extends {BaseAPI}
|
|
11822
11725
|
*/
|
|
11823
11726
|
export declare class ConsultationsApi extends BaseAPI {
|
|
11824
|
-
/**
|
|
11825
|
-
*
|
|
11826
|
-
* @summary Approve consultation.
|
|
11827
|
-
* @param {string} consultationId
|
|
11828
|
-
* @param {ApproveConsultationCommand} [approveConsultationCommand]
|
|
11829
|
-
* @param {*} [options] Override http request option.
|
|
11830
|
-
* @throws {RequiredError}
|
|
11831
|
-
* @memberof ConsultationsApi
|
|
11832
|
-
*/
|
|
11833
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11834
|
-
/**
|
|
11835
|
-
*
|
|
11836
|
-
* @summary Cancel consultation.
|
|
11837
|
-
* @param {string} consultationId
|
|
11838
|
-
* @param {*} [options] Override http request option.
|
|
11839
|
-
* @throws {RequiredError}
|
|
11840
|
-
* @memberof ConsultationsApi
|
|
11841
|
-
*/
|
|
11842
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11843
|
-
/**
|
|
11844
|
-
*
|
|
11845
|
-
* @summary Delete consultation.
|
|
11846
|
-
* @param {string} consultationId
|
|
11847
|
-
* @param {*} [options] Override http request option.
|
|
11848
|
-
* @throws {RequiredError}
|
|
11849
|
-
* @memberof ConsultationsApi
|
|
11850
|
-
*/
|
|
11851
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11852
11727
|
/**
|
|
11853
11728
|
*
|
|
11854
11729
|
* @summary Get consultation.
|
|
@@ -11877,16 +11752,6 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
11877
11752
|
* @memberof ConsultationsApi
|
|
11878
11753
|
*/
|
|
11879
11754
|
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
|
|
11880
|
-
/**
|
|
11881
|
-
*
|
|
11882
|
-
* @summary Reject consultation.
|
|
11883
|
-
* @param {string} consultationId
|
|
11884
|
-
* @param {RejectConsultationCommand} [rejectConsultationCommand]
|
|
11885
|
-
* @param {*} [options] Override http request option.
|
|
11886
|
-
* @throws {RequiredError}
|
|
11887
|
-
* @memberof ConsultationsApi
|
|
11888
|
-
*/
|
|
11889
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
11890
11755
|
/**
|
|
11891
11756
|
*
|
|
11892
11757
|
* @summary Get all consultations.
|
|
@@ -14561,6 +14426,30 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14561
14426
|
* @throws {RequiredError}
|
|
14562
14427
|
*/
|
|
14563
14428
|
apiV2HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14429
|
+
/**
|
|
14430
|
+
*
|
|
14431
|
+
* @summary Get all HospitalHandles.
|
|
14432
|
+
* @param {string} hospitalId
|
|
14433
|
+
* @param {string} [hospitalId2]
|
|
14434
|
+
* @param {string} [id]
|
|
14435
|
+
* @param {SnsType} [snsType]
|
|
14436
|
+
* @param {string} [handle]
|
|
14437
|
+
* @param {number} [page]
|
|
14438
|
+
* @param {number} [limit]
|
|
14439
|
+
* @param {Date} [lastRetrieved]
|
|
14440
|
+
* @param {*} [options] Override http request option.
|
|
14441
|
+
* @throws {RequiredError}
|
|
14442
|
+
*/
|
|
14443
|
+
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>;
|
|
14444
|
+
/**
|
|
14445
|
+
*
|
|
14446
|
+
* @summary Get HospitalHandle.
|
|
14447
|
+
* @param {string} hospitalId
|
|
14448
|
+
* @param {string} handleId
|
|
14449
|
+
* @param {*} [options] Override http request option.
|
|
14450
|
+
* @throws {RequiredError}
|
|
14451
|
+
*/
|
|
14452
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet: (hospitalId: string, handleId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14564
14453
|
/**
|
|
14565
14454
|
*
|
|
14566
14455
|
* @summary Get all HospitalMedias.
|
|
@@ -14705,6 +14594,32 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14705
14594
|
* @throws {RequiredError}
|
|
14706
14595
|
*/
|
|
14707
14596
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet: (hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14597
|
+
/**
|
|
14598
|
+
*
|
|
14599
|
+
* @summary Get all HospitalWorkingDays.
|
|
14600
|
+
* @param {string} hospitalId
|
|
14601
|
+
* @param {string} [hospitalId2]
|
|
14602
|
+
* @param {string} [id]
|
|
14603
|
+
* @param {string} [dayOfWeek]
|
|
14604
|
+
* @param {Date} [timeFrom]
|
|
14605
|
+
* @param {Date} [timeTo]
|
|
14606
|
+
* @param {boolean} [checkHoliday]
|
|
14607
|
+
* @param {number} [page]
|
|
14608
|
+
* @param {number} [limit]
|
|
14609
|
+
* @param {Date} [lastRetrieved]
|
|
14610
|
+
* @param {*} [options] Override http request option.
|
|
14611
|
+
* @throws {RequiredError}
|
|
14612
|
+
*/
|
|
14613
|
+
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>;
|
|
14614
|
+
/**
|
|
14615
|
+
*
|
|
14616
|
+
* @summary Get HospitalWorkingDay.
|
|
14617
|
+
* @param {string} hospitalId
|
|
14618
|
+
* @param {string} workingDayId
|
|
14619
|
+
* @param {*} [options] Override http request option.
|
|
14620
|
+
* @throws {RequiredError}
|
|
14621
|
+
*/
|
|
14622
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet: (hospitalId: string, workingDayId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14708
14623
|
/**
|
|
14709
14624
|
*
|
|
14710
14625
|
* @summary Get all Hospitals.
|
|
@@ -14871,6 +14786,30 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
14871
14786
|
* @throws {RequiredError}
|
|
14872
14787
|
*/
|
|
14873
14788
|
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
14789
|
+
/**
|
|
14790
|
+
*
|
|
14791
|
+
* @summary Get all HospitalHandles.
|
|
14792
|
+
* @param {string} hospitalId
|
|
14793
|
+
* @param {string} [hospitalId2]
|
|
14794
|
+
* @param {string} [id]
|
|
14795
|
+
* @param {SnsType} [snsType]
|
|
14796
|
+
* @param {string} [handle]
|
|
14797
|
+
* @param {number} [page]
|
|
14798
|
+
* @param {number} [limit]
|
|
14799
|
+
* @param {Date} [lastRetrieved]
|
|
14800
|
+
* @param {*} [options] Override http request option.
|
|
14801
|
+
* @throws {RequiredError}
|
|
14802
|
+
*/
|
|
14803
|
+
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>>;
|
|
14804
|
+
/**
|
|
14805
|
+
*
|
|
14806
|
+
* @summary Get HospitalHandle.
|
|
14807
|
+
* @param {string} hospitalId
|
|
14808
|
+
* @param {string} handleId
|
|
14809
|
+
* @param {*} [options] Override http request option.
|
|
14810
|
+
* @throws {RequiredError}
|
|
14811
|
+
*/
|
|
14812
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
14874
14813
|
/**
|
|
14875
14814
|
*
|
|
14876
14815
|
* @summary Get all HospitalMedias.
|
|
@@ -15015,6 +14954,32 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
15015
14954
|
* @throws {RequiredError}
|
|
15016
14955
|
*/
|
|
15017
14956
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
14957
|
+
/**
|
|
14958
|
+
*
|
|
14959
|
+
* @summary Get all HospitalWorkingDays.
|
|
14960
|
+
* @param {string} hospitalId
|
|
14961
|
+
* @param {string} [hospitalId2]
|
|
14962
|
+
* @param {string} [id]
|
|
14963
|
+
* @param {string} [dayOfWeek]
|
|
14964
|
+
* @param {Date} [timeFrom]
|
|
14965
|
+
* @param {Date} [timeTo]
|
|
14966
|
+
* @param {boolean} [checkHoliday]
|
|
14967
|
+
* @param {number} [page]
|
|
14968
|
+
* @param {number} [limit]
|
|
14969
|
+
* @param {Date} [lastRetrieved]
|
|
14970
|
+
* @param {*} [options] Override http request option.
|
|
14971
|
+
* @throws {RequiredError}
|
|
14972
|
+
*/
|
|
14973
|
+
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>>;
|
|
14974
|
+
/**
|
|
14975
|
+
*
|
|
14976
|
+
* @summary Get HospitalWorkingDay.
|
|
14977
|
+
* @param {string} hospitalId
|
|
14978
|
+
* @param {string} workingDayId
|
|
14979
|
+
* @param {*} [options] Override http request option.
|
|
14980
|
+
* @throws {RequiredError}
|
|
14981
|
+
*/
|
|
14982
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WorkingDayModel>>;
|
|
15018
14983
|
/**
|
|
15019
14984
|
*
|
|
15020
14985
|
* @summary Get all Hospitals.
|
|
@@ -15181,6 +15146,30 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15181
15146
|
* @throws {RequiredError}
|
|
15182
15147
|
*/
|
|
15183
15148
|
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
15149
|
+
/**
|
|
15150
|
+
*
|
|
15151
|
+
* @summary Get all HospitalHandles.
|
|
15152
|
+
* @param {string} hospitalId
|
|
15153
|
+
* @param {string} [hospitalId2]
|
|
15154
|
+
* @param {string} [id]
|
|
15155
|
+
* @param {SnsType} [snsType]
|
|
15156
|
+
* @param {string} [handle]
|
|
15157
|
+
* @param {number} [page]
|
|
15158
|
+
* @param {number} [limit]
|
|
15159
|
+
* @param {Date} [lastRetrieved]
|
|
15160
|
+
* @param {*} [options] Override http request option.
|
|
15161
|
+
* @throws {RequiredError}
|
|
15162
|
+
*/
|
|
15163
|
+
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>;
|
|
15164
|
+
/**
|
|
15165
|
+
*
|
|
15166
|
+
* @summary Get HospitalHandle.
|
|
15167
|
+
* @param {string} hospitalId
|
|
15168
|
+
* @param {string} handleId
|
|
15169
|
+
* @param {*} [options] Override http request option.
|
|
15170
|
+
* @throws {RequiredError}
|
|
15171
|
+
*/
|
|
15172
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: any): AxiosPromise<SnsHandleModel>;
|
|
15184
15173
|
/**
|
|
15185
15174
|
*
|
|
15186
15175
|
* @summary Get all HospitalMedias.
|
|
@@ -15325,6 +15314,32 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
15325
15314
|
* @throws {RequiredError}
|
|
15326
15315
|
*/
|
|
15327
15316
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel>;
|
|
15317
|
+
/**
|
|
15318
|
+
*
|
|
15319
|
+
* @summary Get all HospitalWorkingDays.
|
|
15320
|
+
* @param {string} hospitalId
|
|
15321
|
+
* @param {string} [hospitalId2]
|
|
15322
|
+
* @param {string} [id]
|
|
15323
|
+
* @param {string} [dayOfWeek]
|
|
15324
|
+
* @param {Date} [timeFrom]
|
|
15325
|
+
* @param {Date} [timeTo]
|
|
15326
|
+
* @param {boolean} [checkHoliday]
|
|
15327
|
+
* @param {number} [page]
|
|
15328
|
+
* @param {number} [limit]
|
|
15329
|
+
* @param {Date} [lastRetrieved]
|
|
15330
|
+
* @param {*} [options] Override http request option.
|
|
15331
|
+
* @throws {RequiredError}
|
|
15332
|
+
*/
|
|
15333
|
+
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>;
|
|
15334
|
+
/**
|
|
15335
|
+
*
|
|
15336
|
+
* @summary Get HospitalWorkingDay.
|
|
15337
|
+
* @param {string} hospitalId
|
|
15338
|
+
* @param {string} workingDayId
|
|
15339
|
+
* @param {*} [options] Override http request option.
|
|
15340
|
+
* @throws {RequiredError}
|
|
15341
|
+
*/
|
|
15342
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: any): AxiosPromise<WorkingDayModel>;
|
|
15328
15343
|
/**
|
|
15329
15344
|
*
|
|
15330
15345
|
* @summary Get all Hospitals.
|
|
@@ -15503,6 +15518,32 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15503
15518
|
* @memberof HospitalsApi
|
|
15504
15519
|
*/
|
|
15505
15520
|
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel, any>>;
|
|
15521
|
+
/**
|
|
15522
|
+
*
|
|
15523
|
+
* @summary Get all HospitalHandles.
|
|
15524
|
+
* @param {string} hospitalId
|
|
15525
|
+
* @param {string} [hospitalId2]
|
|
15526
|
+
* @param {string} [id]
|
|
15527
|
+
* @param {SnsType} [snsType]
|
|
15528
|
+
* @param {string} [handle]
|
|
15529
|
+
* @param {number} [page]
|
|
15530
|
+
* @param {number} [limit]
|
|
15531
|
+
* @param {Date} [lastRetrieved]
|
|
15532
|
+
* @param {*} [options] Override http request option.
|
|
15533
|
+
* @throws {RequiredError}
|
|
15534
|
+
* @memberof HospitalsApi
|
|
15535
|
+
*/
|
|
15536
|
+
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>>;
|
|
15537
|
+
/**
|
|
15538
|
+
*
|
|
15539
|
+
* @summary Get HospitalHandle.
|
|
15540
|
+
* @param {string} hospitalId
|
|
15541
|
+
* @param {string} handleId
|
|
15542
|
+
* @param {*} [options] Override http request option.
|
|
15543
|
+
* @throws {RequiredError}
|
|
15544
|
+
* @memberof HospitalsApi
|
|
15545
|
+
*/
|
|
15546
|
+
apiV2HospitalsHospitalIdHandlesHandleIdGet(hospitalId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel, any>>;
|
|
15506
15547
|
/**
|
|
15507
15548
|
*
|
|
15508
15549
|
* @summary Get all HospitalMedias.
|
|
@@ -15656,6 +15697,34 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
15656
15697
|
* @memberof HospitalsApi
|
|
15657
15698
|
*/
|
|
15658
15699
|
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
15700
|
+
/**
|
|
15701
|
+
*
|
|
15702
|
+
* @summary Get all HospitalWorkingDays.
|
|
15703
|
+
* @param {string} hospitalId
|
|
15704
|
+
* @param {string} [hospitalId2]
|
|
15705
|
+
* @param {string} [id]
|
|
15706
|
+
* @param {string} [dayOfWeek]
|
|
15707
|
+
* @param {Date} [timeFrom]
|
|
15708
|
+
* @param {Date} [timeTo]
|
|
15709
|
+
* @param {boolean} [checkHoliday]
|
|
15710
|
+
* @param {number} [page]
|
|
15711
|
+
* @param {number} [limit]
|
|
15712
|
+
* @param {Date} [lastRetrieved]
|
|
15713
|
+
* @param {*} [options] Override http request option.
|
|
15714
|
+
* @throws {RequiredError}
|
|
15715
|
+
* @memberof HospitalsApi
|
|
15716
|
+
*/
|
|
15717
|
+
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>>;
|
|
15718
|
+
/**
|
|
15719
|
+
*
|
|
15720
|
+
* @summary Get HospitalWorkingDay.
|
|
15721
|
+
* @param {string} hospitalId
|
|
15722
|
+
* @param {string} workingDayId
|
|
15723
|
+
* @param {*} [options] Override http request option.
|
|
15724
|
+
* @throws {RequiredError}
|
|
15725
|
+
* @memberof HospitalsApi
|
|
15726
|
+
*/
|
|
15727
|
+
apiV2HospitalsHospitalIdWorkingdaysWorkingDayIdGet(hospitalId: string, workingDayId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WorkingDayModel, any>>;
|
|
15659
15728
|
/**
|
|
15660
15729
|
*
|
|
15661
15730
|
* @summary Get all Hospitals.
|