ch-api-client-typescript2 3.4.1 → 3.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +662 -345
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +362 -203
- package/package.json +1 -1
- package/src/api.ts +894 -501
package/lib/api.d.ts
CHANGED
|
@@ -493,13 +493,13 @@ export interface ArticleContributorModel {
|
|
|
493
493
|
* @type {string}
|
|
494
494
|
* @memberof ArticleContributorModel
|
|
495
495
|
*/
|
|
496
|
-
'
|
|
496
|
+
'contributorOverview'?: string | null;
|
|
497
497
|
/**
|
|
498
498
|
*
|
|
499
499
|
* @type {string}
|
|
500
500
|
* @memberof ArticleContributorModel
|
|
501
501
|
*/
|
|
502
|
-
'
|
|
502
|
+
'contributorContent'?: string | null;
|
|
503
503
|
/**
|
|
504
504
|
*
|
|
505
505
|
* @type {Array<SnsHandle>}
|
|
@@ -597,19 +597,13 @@ export interface ArticleItemModel {
|
|
|
597
597
|
* @type {string}
|
|
598
598
|
* @memberof ArticleItemModel
|
|
599
599
|
*/
|
|
600
|
-
'
|
|
601
|
-
/**
|
|
602
|
-
*
|
|
603
|
-
* @type {Array<ArticleTagItemModel>}
|
|
604
|
-
* @memberof ArticleItemModel
|
|
605
|
-
*/
|
|
606
|
-
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
600
|
+
'hospitalName'?: string | null;
|
|
607
601
|
/**
|
|
608
602
|
*
|
|
609
|
-
* @type {
|
|
603
|
+
* @type {string}
|
|
610
604
|
* @memberof ArticleItemModel
|
|
611
605
|
*/
|
|
612
|
-
'
|
|
606
|
+
'hospitalSlug'?: string | null;
|
|
613
607
|
/**
|
|
614
608
|
*
|
|
615
609
|
* @type {AuditableEntity}
|
|
@@ -682,31 +676,55 @@ export interface ArticleModel {
|
|
|
682
676
|
* @type {string}
|
|
683
677
|
* @memberof ArticleModel
|
|
684
678
|
*/
|
|
685
|
-
'
|
|
679
|
+
'hospitalName'?: string | null;
|
|
686
680
|
/**
|
|
687
681
|
*
|
|
688
|
-
* @type {
|
|
682
|
+
* @type {string}
|
|
689
683
|
* @memberof ArticleModel
|
|
690
684
|
*/
|
|
691
|
-
'
|
|
685
|
+
'hospitalSlug'?: string | null;
|
|
692
686
|
/**
|
|
693
687
|
*
|
|
694
|
-
* @type {
|
|
688
|
+
* @type {AuditableEntity}
|
|
695
689
|
* @memberof ArticleModel
|
|
696
690
|
*/
|
|
697
|
-
'
|
|
691
|
+
'auditableEntity'?: AuditableEntity;
|
|
698
692
|
/**
|
|
699
693
|
*
|
|
700
|
-
* @type {
|
|
694
|
+
* @type {string}
|
|
701
695
|
* @memberof ArticleModel
|
|
702
696
|
*/
|
|
703
|
-
'
|
|
697
|
+
'description'?: string | null;
|
|
698
|
+
/**
|
|
699
|
+
*
|
|
700
|
+
* @type {string}
|
|
701
|
+
* @memberof ArticleModel
|
|
702
|
+
*/
|
|
703
|
+
'overview'?: string | null;
|
|
704
704
|
/**
|
|
705
705
|
*
|
|
706
706
|
* @type {string}
|
|
707
707
|
* @memberof ArticleModel
|
|
708
708
|
*/
|
|
709
709
|
'content'?: string | null;
|
|
710
|
+
/**
|
|
711
|
+
*
|
|
712
|
+
* @type {string}
|
|
713
|
+
* @memberof ArticleModel
|
|
714
|
+
*/
|
|
715
|
+
'youtubeUrl'?: string | null;
|
|
716
|
+
/**
|
|
717
|
+
*
|
|
718
|
+
* @type {Array<ArticleTagItemModel>}
|
|
719
|
+
* @memberof ArticleModel
|
|
720
|
+
*/
|
|
721
|
+
'articleTags'?: Array<ArticleTagItemModel> | null;
|
|
722
|
+
/**
|
|
723
|
+
*
|
|
724
|
+
* @type {Array<MediaModel>}
|
|
725
|
+
* @memberof ArticleModel
|
|
726
|
+
*/
|
|
727
|
+
'medias'?: Array<MediaModel> | null;
|
|
710
728
|
/**
|
|
711
729
|
*
|
|
712
730
|
* @type {Array<LocalizedUrlModel>}
|
|
@@ -960,6 +978,12 @@ export interface BookingItemModel {
|
|
|
960
978
|
* @memberof BookingItemModel
|
|
961
979
|
*/
|
|
962
980
|
'id'?: string;
|
|
981
|
+
/**
|
|
982
|
+
*
|
|
983
|
+
* @type {string}
|
|
984
|
+
* @memberof BookingItemModel
|
|
985
|
+
*/
|
|
986
|
+
'languageCode'?: string | null;
|
|
963
987
|
/**
|
|
964
988
|
*
|
|
965
989
|
* @type {string}
|
|
@@ -983,103 +1007,103 @@ export interface BookingItemModel {
|
|
|
983
1007
|
* @type {string}
|
|
984
1008
|
* @memberof BookingItemModel
|
|
985
1009
|
*/
|
|
986
|
-
'
|
|
1010
|
+
'firstName'?: string | null;
|
|
987
1011
|
/**
|
|
988
1012
|
*
|
|
989
1013
|
* @type {string}
|
|
990
1014
|
* @memberof BookingItemModel
|
|
991
1015
|
*/
|
|
992
|
-
'
|
|
1016
|
+
'lastName'?: string | null;
|
|
993
1017
|
/**
|
|
994
1018
|
*
|
|
995
1019
|
* @type {string}
|
|
996
1020
|
* @memberof BookingItemModel
|
|
997
1021
|
*/
|
|
998
|
-
'
|
|
1022
|
+
'email'?: string | null;
|
|
999
1023
|
/**
|
|
1000
1024
|
*
|
|
1001
1025
|
* @type {string}
|
|
1002
1026
|
* @memberof BookingItemModel
|
|
1003
1027
|
*/
|
|
1004
|
-
'
|
|
1028
|
+
'phone'?: string | null;
|
|
1005
1029
|
/**
|
|
1006
1030
|
*
|
|
1007
|
-
* @type {
|
|
1031
|
+
* @type {Date}
|
|
1008
1032
|
* @memberof BookingItemModel
|
|
1009
1033
|
*/
|
|
1010
|
-
'
|
|
1034
|
+
'dateOfBirth'?: Date | null;
|
|
1011
1035
|
/**
|
|
1012
1036
|
*
|
|
1013
|
-
* @type {
|
|
1037
|
+
* @type {Gender}
|
|
1014
1038
|
* @memberof BookingItemModel
|
|
1015
1039
|
*/
|
|
1016
|
-
'
|
|
1040
|
+
'gender'?: Gender;
|
|
1017
1041
|
/**
|
|
1018
1042
|
*
|
|
1019
1043
|
* @type {string}
|
|
1020
1044
|
* @memberof BookingItemModel
|
|
1021
1045
|
*/
|
|
1022
|
-
'
|
|
1046
|
+
'comment'?: string | null;
|
|
1023
1047
|
/**
|
|
1024
1048
|
*
|
|
1025
1049
|
* @type {string}
|
|
1026
1050
|
* @memberof BookingItemModel
|
|
1027
1051
|
*/
|
|
1028
|
-
'
|
|
1052
|
+
'hospitalId'?: string;
|
|
1029
1053
|
/**
|
|
1030
1054
|
*
|
|
1031
|
-
* @type {
|
|
1055
|
+
* @type {string}
|
|
1032
1056
|
* @memberof BookingItemModel
|
|
1033
1057
|
*/
|
|
1034
|
-
'
|
|
1058
|
+
'hospitalName'?: string | null;
|
|
1035
1059
|
/**
|
|
1036
1060
|
*
|
|
1037
|
-
* @type {
|
|
1061
|
+
* @type {string}
|
|
1038
1062
|
* @memberof BookingItemModel
|
|
1039
1063
|
*/
|
|
1040
|
-
'
|
|
1064
|
+
'hospitalSlug'?: string | null;
|
|
1041
1065
|
/**
|
|
1042
1066
|
*
|
|
1043
1067
|
* @type {string}
|
|
1044
1068
|
* @memberof BookingItemModel
|
|
1045
1069
|
*/
|
|
1046
|
-
'
|
|
1070
|
+
'hospitalTimeZone'?: string | null;
|
|
1047
1071
|
/**
|
|
1048
1072
|
*
|
|
1049
1073
|
* @type {string}
|
|
1050
1074
|
* @memberof BookingItemModel
|
|
1051
1075
|
*/
|
|
1052
|
-
'
|
|
1076
|
+
'dealId'?: string;
|
|
1053
1077
|
/**
|
|
1054
1078
|
*
|
|
1055
1079
|
* @type {string}
|
|
1056
1080
|
* @memberof BookingItemModel
|
|
1057
1081
|
*/
|
|
1058
|
-
'
|
|
1082
|
+
'dealName'?: string | null;
|
|
1059
1083
|
/**
|
|
1060
1084
|
*
|
|
1061
1085
|
* @type {string}
|
|
1062
1086
|
* @memberof BookingItemModel
|
|
1063
1087
|
*/
|
|
1064
|
-
'
|
|
1088
|
+
'dealSlug'?: string | null;
|
|
1065
1089
|
/**
|
|
1066
1090
|
*
|
|
1067
|
-
* @type {
|
|
1091
|
+
* @type {string}
|
|
1068
1092
|
* @memberof BookingItemModel
|
|
1069
1093
|
*/
|
|
1070
|
-
'
|
|
1094
|
+
'dealPackageId'?: string;
|
|
1071
1095
|
/**
|
|
1072
1096
|
*
|
|
1073
|
-
* @type {
|
|
1097
|
+
* @type {RefundPolicy}
|
|
1074
1098
|
* @memberof BookingItemModel
|
|
1075
1099
|
*/
|
|
1076
|
-
'
|
|
1100
|
+
'refundPolicy'?: RefundPolicy;
|
|
1077
1101
|
/**
|
|
1078
1102
|
*
|
|
1079
|
-
* @type {
|
|
1103
|
+
* @type {number}
|
|
1080
1104
|
* @memberof BookingItemModel
|
|
1081
1105
|
*/
|
|
1082
|
-
'
|
|
1106
|
+
'quantity'?: number;
|
|
1083
1107
|
/**
|
|
1084
1108
|
*
|
|
1085
1109
|
* @type {Date}
|
|
@@ -1152,12 +1176,6 @@ export interface BookingItemModel {
|
|
|
1152
1176
|
* @memberof BookingItemModel
|
|
1153
1177
|
*/
|
|
1154
1178
|
'isOpen'?: boolean;
|
|
1155
|
-
/**
|
|
1156
|
-
*
|
|
1157
|
-
* @type {number}
|
|
1158
|
-
* @memberof BookingItemModel
|
|
1159
|
-
*/
|
|
1160
|
-
'completionRate'?: number;
|
|
1161
1179
|
/**
|
|
1162
1180
|
*
|
|
1163
1181
|
* @type {boolean}
|
|
@@ -1177,6 +1195,12 @@ export interface BookingModel {
|
|
|
1177
1195
|
* @memberof BookingModel
|
|
1178
1196
|
*/
|
|
1179
1197
|
'id'?: string;
|
|
1198
|
+
/**
|
|
1199
|
+
*
|
|
1200
|
+
* @type {string}
|
|
1201
|
+
* @memberof BookingModel
|
|
1202
|
+
*/
|
|
1203
|
+
'languageCode'?: string | null;
|
|
1180
1204
|
/**
|
|
1181
1205
|
*
|
|
1182
1206
|
* @type {string}
|
|
@@ -1200,103 +1224,103 @@ export interface BookingModel {
|
|
|
1200
1224
|
* @type {string}
|
|
1201
1225
|
* @memberof BookingModel
|
|
1202
1226
|
*/
|
|
1203
|
-
'
|
|
1227
|
+
'firstName'?: string | null;
|
|
1204
1228
|
/**
|
|
1205
1229
|
*
|
|
1206
1230
|
* @type {string}
|
|
1207
1231
|
* @memberof BookingModel
|
|
1208
1232
|
*/
|
|
1209
|
-
'
|
|
1233
|
+
'lastName'?: string | null;
|
|
1210
1234
|
/**
|
|
1211
1235
|
*
|
|
1212
1236
|
* @type {string}
|
|
1213
1237
|
* @memberof BookingModel
|
|
1214
1238
|
*/
|
|
1215
|
-
'
|
|
1239
|
+
'email'?: string | null;
|
|
1216
1240
|
/**
|
|
1217
1241
|
*
|
|
1218
1242
|
* @type {string}
|
|
1219
1243
|
* @memberof BookingModel
|
|
1220
1244
|
*/
|
|
1221
|
-
'
|
|
1245
|
+
'phone'?: string | null;
|
|
1222
1246
|
/**
|
|
1223
1247
|
*
|
|
1224
|
-
* @type {
|
|
1248
|
+
* @type {Date}
|
|
1225
1249
|
* @memberof BookingModel
|
|
1226
1250
|
*/
|
|
1227
|
-
'
|
|
1251
|
+
'dateOfBirth'?: Date | null;
|
|
1228
1252
|
/**
|
|
1229
1253
|
*
|
|
1230
|
-
* @type {
|
|
1254
|
+
* @type {Gender}
|
|
1231
1255
|
* @memberof BookingModel
|
|
1232
1256
|
*/
|
|
1233
|
-
'
|
|
1257
|
+
'gender'?: Gender;
|
|
1234
1258
|
/**
|
|
1235
1259
|
*
|
|
1236
1260
|
* @type {string}
|
|
1237
1261
|
* @memberof BookingModel
|
|
1238
1262
|
*/
|
|
1239
|
-
'
|
|
1263
|
+
'comment'?: string | null;
|
|
1240
1264
|
/**
|
|
1241
1265
|
*
|
|
1242
1266
|
* @type {string}
|
|
1243
1267
|
* @memberof BookingModel
|
|
1244
1268
|
*/
|
|
1245
|
-
'
|
|
1269
|
+
'hospitalId'?: string;
|
|
1246
1270
|
/**
|
|
1247
1271
|
*
|
|
1248
|
-
* @type {
|
|
1272
|
+
* @type {string}
|
|
1249
1273
|
* @memberof BookingModel
|
|
1250
1274
|
*/
|
|
1251
|
-
'
|
|
1275
|
+
'hospitalName'?: string | null;
|
|
1252
1276
|
/**
|
|
1253
1277
|
*
|
|
1254
|
-
* @type {
|
|
1278
|
+
* @type {string}
|
|
1255
1279
|
* @memberof BookingModel
|
|
1256
1280
|
*/
|
|
1257
|
-
'
|
|
1281
|
+
'hospitalSlug'?: string | null;
|
|
1258
1282
|
/**
|
|
1259
1283
|
*
|
|
1260
1284
|
* @type {string}
|
|
1261
1285
|
* @memberof BookingModel
|
|
1262
1286
|
*/
|
|
1263
|
-
'
|
|
1287
|
+
'hospitalTimeZone'?: string | null;
|
|
1264
1288
|
/**
|
|
1265
1289
|
*
|
|
1266
1290
|
* @type {string}
|
|
1267
1291
|
* @memberof BookingModel
|
|
1268
1292
|
*/
|
|
1269
|
-
'
|
|
1293
|
+
'dealId'?: string;
|
|
1270
1294
|
/**
|
|
1271
1295
|
*
|
|
1272
1296
|
* @type {string}
|
|
1273
1297
|
* @memberof BookingModel
|
|
1274
1298
|
*/
|
|
1275
|
-
'
|
|
1299
|
+
'dealName'?: string | null;
|
|
1276
1300
|
/**
|
|
1277
1301
|
*
|
|
1278
1302
|
* @type {string}
|
|
1279
1303
|
* @memberof BookingModel
|
|
1280
1304
|
*/
|
|
1281
|
-
'
|
|
1305
|
+
'dealSlug'?: string | null;
|
|
1282
1306
|
/**
|
|
1283
1307
|
*
|
|
1284
|
-
* @type {
|
|
1308
|
+
* @type {string}
|
|
1285
1309
|
* @memberof BookingModel
|
|
1286
1310
|
*/
|
|
1287
|
-
'
|
|
1311
|
+
'dealPackageId'?: string;
|
|
1288
1312
|
/**
|
|
1289
1313
|
*
|
|
1290
|
-
* @type {
|
|
1314
|
+
* @type {RefundPolicy}
|
|
1291
1315
|
* @memberof BookingModel
|
|
1292
1316
|
*/
|
|
1293
|
-
'
|
|
1317
|
+
'refundPolicy'?: RefundPolicy;
|
|
1294
1318
|
/**
|
|
1295
1319
|
*
|
|
1296
|
-
* @type {
|
|
1320
|
+
* @type {number}
|
|
1297
1321
|
* @memberof BookingModel
|
|
1298
1322
|
*/
|
|
1299
|
-
'
|
|
1323
|
+
'quantity'?: number;
|
|
1300
1324
|
/**
|
|
1301
1325
|
*
|
|
1302
1326
|
* @type {Date}
|
|
@@ -1369,12 +1393,6 @@ export interface BookingModel {
|
|
|
1369
1393
|
* @memberof BookingModel
|
|
1370
1394
|
*/
|
|
1371
1395
|
'isOpen'?: boolean;
|
|
1372
|
-
/**
|
|
1373
|
-
*
|
|
1374
|
-
* @type {number}
|
|
1375
|
-
* @memberof BookingModel
|
|
1376
|
-
*/
|
|
1377
|
-
'completionRate'?: number;
|
|
1378
1396
|
/**
|
|
1379
1397
|
*
|
|
1380
1398
|
* @type {boolean}
|
|
@@ -1620,6 +1638,12 @@ export interface ConsultationItemModel {
|
|
|
1620
1638
|
* @memberof ConsultationItemModel
|
|
1621
1639
|
*/
|
|
1622
1640
|
'id'?: string;
|
|
1641
|
+
/**
|
|
1642
|
+
*
|
|
1643
|
+
* @type {string}
|
|
1644
|
+
* @memberof ConsultationItemModel
|
|
1645
|
+
*/
|
|
1646
|
+
'languageCode'?: string | null;
|
|
1623
1647
|
/**
|
|
1624
1648
|
*
|
|
1625
1649
|
* @type {ConsultationType}
|
|
@@ -1649,139 +1673,115 @@ export interface ConsultationItemModel {
|
|
|
1649
1673
|
* @type {string}
|
|
1650
1674
|
* @memberof ConsultationItemModel
|
|
1651
1675
|
*/
|
|
1652
|
-
'
|
|
1653
|
-
/**
|
|
1654
|
-
*
|
|
1655
|
-
* @type {string}
|
|
1656
|
-
* @memberof ConsultationItemModel
|
|
1657
|
-
*/
|
|
1658
|
-
'hospitalId'?: string;
|
|
1676
|
+
'firstName'?: string | null;
|
|
1659
1677
|
/**
|
|
1660
1678
|
*
|
|
1661
1679
|
* @type {string}
|
|
1662
1680
|
* @memberof ConsultationItemModel
|
|
1663
1681
|
*/
|
|
1664
|
-
'
|
|
1682
|
+
'lastName'?: string | null;
|
|
1665
1683
|
/**
|
|
1666
1684
|
*
|
|
1667
1685
|
* @type {string}
|
|
1668
1686
|
* @memberof ConsultationItemModel
|
|
1669
1687
|
*/
|
|
1670
|
-
'
|
|
1688
|
+
'email'?: string | null;
|
|
1671
1689
|
/**
|
|
1672
1690
|
*
|
|
1673
1691
|
* @type {string}
|
|
1674
1692
|
* @memberof ConsultationItemModel
|
|
1675
1693
|
*/
|
|
1676
|
-
'
|
|
1694
|
+
'phone'?: string | null;
|
|
1677
1695
|
/**
|
|
1678
1696
|
*
|
|
1679
|
-
* @type {
|
|
1697
|
+
* @type {Date}
|
|
1680
1698
|
* @memberof ConsultationItemModel
|
|
1681
1699
|
*/
|
|
1682
|
-
'
|
|
1700
|
+
'dateOfBirth'?: Date | null;
|
|
1683
1701
|
/**
|
|
1684
1702
|
*
|
|
1685
|
-
* @type {
|
|
1703
|
+
* @type {Gender}
|
|
1686
1704
|
* @memberof ConsultationItemModel
|
|
1687
1705
|
*/
|
|
1688
|
-
'
|
|
1706
|
+
'gender'?: Gender;
|
|
1689
1707
|
/**
|
|
1690
1708
|
*
|
|
1691
1709
|
* @type {string}
|
|
1692
1710
|
* @memberof ConsultationItemModel
|
|
1693
1711
|
*/
|
|
1694
|
-
'
|
|
1712
|
+
'comment'?: string | null;
|
|
1695
1713
|
/**
|
|
1696
1714
|
*
|
|
1697
1715
|
* @type {string}
|
|
1698
1716
|
* @memberof ConsultationItemModel
|
|
1699
1717
|
*/
|
|
1700
|
-
'
|
|
1718
|
+
'hospitalId'?: string;
|
|
1701
1719
|
/**
|
|
1702
1720
|
*
|
|
1703
1721
|
* @type {string}
|
|
1704
1722
|
* @memberof ConsultationItemModel
|
|
1705
1723
|
*/
|
|
1706
|
-
'
|
|
1724
|
+
'hospitalName'?: string | null;
|
|
1707
1725
|
/**
|
|
1708
1726
|
*
|
|
1709
1727
|
* @type {string}
|
|
1710
1728
|
* @memberof ConsultationItemModel
|
|
1711
1729
|
*/
|
|
1712
|
-
'
|
|
1730
|
+
'hospitalSlug'?: string | null;
|
|
1713
1731
|
/**
|
|
1714
1732
|
*
|
|
1715
1733
|
* @type {string}
|
|
1716
1734
|
* @memberof ConsultationItemModel
|
|
1717
1735
|
*/
|
|
1718
|
-
'
|
|
1736
|
+
'hospitalTimeZone'?: string | null;
|
|
1719
1737
|
/**
|
|
1720
1738
|
*
|
|
1721
1739
|
* @type {string}
|
|
1722
1740
|
* @memberof ConsultationItemModel
|
|
1723
1741
|
*/
|
|
1724
|
-
'
|
|
1742
|
+
'doctorId'?: string | null;
|
|
1725
1743
|
/**
|
|
1726
1744
|
*
|
|
1727
1745
|
* @type {string}
|
|
1728
1746
|
* @memberof ConsultationItemModel
|
|
1729
1747
|
*/
|
|
1730
|
-
'
|
|
1748
|
+
'doctorName'?: string | null;
|
|
1731
1749
|
/**
|
|
1732
1750
|
*
|
|
1733
1751
|
* @type {string}
|
|
1734
1752
|
* @memberof ConsultationItemModel
|
|
1735
1753
|
*/
|
|
1736
|
-
'
|
|
1737
|
-
/**
|
|
1738
|
-
*
|
|
1739
|
-
* @type {boolean}
|
|
1740
|
-
* @memberof ConsultationItemModel
|
|
1741
|
-
*/
|
|
1742
|
-
'isAccountHolder'?: boolean;
|
|
1754
|
+
'doctorSlug'?: string | null;
|
|
1743
1755
|
/**
|
|
1744
1756
|
*
|
|
1745
1757
|
* @type {string}
|
|
1746
1758
|
* @memberof ConsultationItemModel
|
|
1747
1759
|
*/
|
|
1748
|
-
'
|
|
1760
|
+
'dealId'?: string | null;
|
|
1749
1761
|
/**
|
|
1750
1762
|
*
|
|
1751
1763
|
* @type {string}
|
|
1752
1764
|
* @memberof ConsultationItemModel
|
|
1753
1765
|
*/
|
|
1754
|
-
'
|
|
1766
|
+
'dealName'?: string | null;
|
|
1755
1767
|
/**
|
|
1756
1768
|
*
|
|
1757
1769
|
* @type {string}
|
|
1758
1770
|
* @memberof ConsultationItemModel
|
|
1759
1771
|
*/
|
|
1760
|
-
'
|
|
1772
|
+
'dealSlug'?: string | null;
|
|
1761
1773
|
/**
|
|
1762
1774
|
*
|
|
1763
1775
|
* @type {string}
|
|
1764
1776
|
* @memberof ConsultationItemModel
|
|
1765
1777
|
*/
|
|
1766
|
-
'
|
|
1767
|
-
/**
|
|
1768
|
-
*
|
|
1769
|
-
* @type {Date}
|
|
1770
|
-
* @memberof ConsultationItemModel
|
|
1771
|
-
*/
|
|
1772
|
-
'dateOfBirth'?: Date | null;
|
|
1773
|
-
/**
|
|
1774
|
-
*
|
|
1775
|
-
* @type {Gender}
|
|
1776
|
-
* @memberof ConsultationItemModel
|
|
1777
|
-
*/
|
|
1778
|
-
'gender'?: Gender;
|
|
1778
|
+
'language'?: string | null;
|
|
1779
1779
|
/**
|
|
1780
1780
|
*
|
|
1781
|
-
* @type {
|
|
1781
|
+
* @type {boolean}
|
|
1782
1782
|
* @memberof ConsultationItemModel
|
|
1783
1783
|
*/
|
|
1784
|
-
'
|
|
1784
|
+
'isAccountHolder'?: boolean;
|
|
1785
1785
|
/**
|
|
1786
1786
|
*
|
|
1787
1787
|
* @type {string}
|
|
@@ -1812,18 +1812,6 @@ export interface ConsultationItemModel {
|
|
|
1812
1812
|
* @memberof ConsultationItemModel
|
|
1813
1813
|
*/
|
|
1814
1814
|
'confirmedDateEnd'?: Date | null;
|
|
1815
|
-
/**
|
|
1816
|
-
*
|
|
1817
|
-
* @type {string}
|
|
1818
|
-
* @memberof ConsultationItemModel
|
|
1819
|
-
*/
|
|
1820
|
-
'callerName'?: string | null;
|
|
1821
|
-
/**
|
|
1822
|
-
*
|
|
1823
|
-
* @type {string}
|
|
1824
|
-
* @memberof ConsultationItemModel
|
|
1825
|
-
*/
|
|
1826
|
-
'callerId'?: string | null;
|
|
1827
1815
|
/**
|
|
1828
1816
|
*
|
|
1829
1817
|
* @type {number}
|
|
@@ -1848,6 +1836,12 @@ export interface ConsultationItemModel {
|
|
|
1848
1836
|
* @memberof ConsultationItemModel
|
|
1849
1837
|
*/
|
|
1850
1838
|
'requestDate'?: Date;
|
|
1839
|
+
/**
|
|
1840
|
+
*
|
|
1841
|
+
* @type {string}
|
|
1842
|
+
* @memberof ConsultationItemModel
|
|
1843
|
+
*/
|
|
1844
|
+
'domain'?: string | null;
|
|
1851
1845
|
/**
|
|
1852
1846
|
*
|
|
1853
1847
|
* @type {ConsultationStatus}
|
|
@@ -1872,6 +1866,12 @@ export interface ConsultationItemModel {
|
|
|
1872
1866
|
* @memberof ConsultationItemModel
|
|
1873
1867
|
*/
|
|
1874
1868
|
'paymentId'?: string | null;
|
|
1869
|
+
/**
|
|
1870
|
+
*
|
|
1871
|
+
* @type {boolean}
|
|
1872
|
+
* @memberof ConsultationItemModel
|
|
1873
|
+
*/
|
|
1874
|
+
'paymentEnabled'?: boolean;
|
|
1875
1875
|
/**
|
|
1876
1876
|
*
|
|
1877
1877
|
* @type {number}
|
|
@@ -1897,6 +1897,12 @@ export interface ConsultationModel {
|
|
|
1897
1897
|
* @memberof ConsultationModel
|
|
1898
1898
|
*/
|
|
1899
1899
|
'id'?: string;
|
|
1900
|
+
/**
|
|
1901
|
+
*
|
|
1902
|
+
* @type {string}
|
|
1903
|
+
* @memberof ConsultationModel
|
|
1904
|
+
*/
|
|
1905
|
+
'languageCode'?: string | null;
|
|
1900
1906
|
/**
|
|
1901
1907
|
*
|
|
1902
1908
|
* @type {ConsultationType}
|
|
@@ -1926,139 +1932,115 @@ export interface ConsultationModel {
|
|
|
1926
1932
|
* @type {string}
|
|
1927
1933
|
* @memberof ConsultationModel
|
|
1928
1934
|
*/
|
|
1929
|
-
'
|
|
1930
|
-
/**
|
|
1931
|
-
*
|
|
1932
|
-
* @type {string}
|
|
1933
|
-
* @memberof ConsultationModel
|
|
1934
|
-
*/
|
|
1935
|
-
'hospitalId'?: string;
|
|
1935
|
+
'firstName'?: string | null;
|
|
1936
1936
|
/**
|
|
1937
1937
|
*
|
|
1938
1938
|
* @type {string}
|
|
1939
1939
|
* @memberof ConsultationModel
|
|
1940
1940
|
*/
|
|
1941
|
-
'
|
|
1941
|
+
'lastName'?: string | null;
|
|
1942
1942
|
/**
|
|
1943
1943
|
*
|
|
1944
1944
|
* @type {string}
|
|
1945
1945
|
* @memberof ConsultationModel
|
|
1946
1946
|
*/
|
|
1947
|
-
'
|
|
1947
|
+
'email'?: string | null;
|
|
1948
1948
|
/**
|
|
1949
1949
|
*
|
|
1950
1950
|
* @type {string}
|
|
1951
1951
|
* @memberof ConsultationModel
|
|
1952
1952
|
*/
|
|
1953
|
-
'
|
|
1953
|
+
'phone'?: string | null;
|
|
1954
1954
|
/**
|
|
1955
1955
|
*
|
|
1956
|
-
* @type {
|
|
1956
|
+
* @type {Date}
|
|
1957
1957
|
* @memberof ConsultationModel
|
|
1958
1958
|
*/
|
|
1959
|
-
'
|
|
1959
|
+
'dateOfBirth'?: Date | null;
|
|
1960
1960
|
/**
|
|
1961
1961
|
*
|
|
1962
|
-
* @type {
|
|
1962
|
+
* @type {Gender}
|
|
1963
1963
|
* @memberof ConsultationModel
|
|
1964
1964
|
*/
|
|
1965
|
-
'
|
|
1965
|
+
'gender'?: Gender;
|
|
1966
1966
|
/**
|
|
1967
1967
|
*
|
|
1968
1968
|
* @type {string}
|
|
1969
1969
|
* @memberof ConsultationModel
|
|
1970
1970
|
*/
|
|
1971
|
-
'
|
|
1971
|
+
'comment'?: string | null;
|
|
1972
1972
|
/**
|
|
1973
1973
|
*
|
|
1974
1974
|
* @type {string}
|
|
1975
1975
|
* @memberof ConsultationModel
|
|
1976
1976
|
*/
|
|
1977
|
-
'
|
|
1977
|
+
'hospitalId'?: string;
|
|
1978
1978
|
/**
|
|
1979
1979
|
*
|
|
1980
1980
|
* @type {string}
|
|
1981
1981
|
* @memberof ConsultationModel
|
|
1982
1982
|
*/
|
|
1983
|
-
'
|
|
1983
|
+
'hospitalName'?: string | null;
|
|
1984
1984
|
/**
|
|
1985
1985
|
*
|
|
1986
1986
|
* @type {string}
|
|
1987
1987
|
* @memberof ConsultationModel
|
|
1988
1988
|
*/
|
|
1989
|
-
'
|
|
1989
|
+
'hospitalSlug'?: string | null;
|
|
1990
1990
|
/**
|
|
1991
1991
|
*
|
|
1992
1992
|
* @type {string}
|
|
1993
1993
|
* @memberof ConsultationModel
|
|
1994
1994
|
*/
|
|
1995
|
-
'
|
|
1995
|
+
'hospitalTimeZone'?: string | null;
|
|
1996
1996
|
/**
|
|
1997
1997
|
*
|
|
1998
1998
|
* @type {string}
|
|
1999
1999
|
* @memberof ConsultationModel
|
|
2000
2000
|
*/
|
|
2001
|
-
'
|
|
2001
|
+
'doctorId'?: string | null;
|
|
2002
2002
|
/**
|
|
2003
2003
|
*
|
|
2004
2004
|
* @type {string}
|
|
2005
2005
|
* @memberof ConsultationModel
|
|
2006
2006
|
*/
|
|
2007
|
-
'
|
|
2007
|
+
'doctorName'?: string | null;
|
|
2008
2008
|
/**
|
|
2009
2009
|
*
|
|
2010
2010
|
* @type {string}
|
|
2011
2011
|
* @memberof ConsultationModel
|
|
2012
2012
|
*/
|
|
2013
|
-
'
|
|
2014
|
-
/**
|
|
2015
|
-
*
|
|
2016
|
-
* @type {boolean}
|
|
2017
|
-
* @memberof ConsultationModel
|
|
2018
|
-
*/
|
|
2019
|
-
'isAccountHolder'?: boolean;
|
|
2013
|
+
'doctorSlug'?: string | null;
|
|
2020
2014
|
/**
|
|
2021
2015
|
*
|
|
2022
2016
|
* @type {string}
|
|
2023
2017
|
* @memberof ConsultationModel
|
|
2024
2018
|
*/
|
|
2025
|
-
'
|
|
2019
|
+
'dealId'?: string | null;
|
|
2026
2020
|
/**
|
|
2027
2021
|
*
|
|
2028
2022
|
* @type {string}
|
|
2029
2023
|
* @memberof ConsultationModel
|
|
2030
2024
|
*/
|
|
2031
|
-
'
|
|
2025
|
+
'dealName'?: string | null;
|
|
2032
2026
|
/**
|
|
2033
2027
|
*
|
|
2034
2028
|
* @type {string}
|
|
2035
2029
|
* @memberof ConsultationModel
|
|
2036
2030
|
*/
|
|
2037
|
-
'
|
|
2031
|
+
'dealSlug'?: string | null;
|
|
2038
2032
|
/**
|
|
2039
2033
|
*
|
|
2040
2034
|
* @type {string}
|
|
2041
2035
|
* @memberof ConsultationModel
|
|
2042
2036
|
*/
|
|
2043
|
-
'
|
|
2044
|
-
/**
|
|
2045
|
-
*
|
|
2046
|
-
* @type {Date}
|
|
2047
|
-
* @memberof ConsultationModel
|
|
2048
|
-
*/
|
|
2049
|
-
'dateOfBirth'?: Date | null;
|
|
2050
|
-
/**
|
|
2051
|
-
*
|
|
2052
|
-
* @type {Gender}
|
|
2053
|
-
* @memberof ConsultationModel
|
|
2054
|
-
*/
|
|
2055
|
-
'gender'?: Gender;
|
|
2037
|
+
'language'?: string | null;
|
|
2056
2038
|
/**
|
|
2057
2039
|
*
|
|
2058
|
-
* @type {
|
|
2040
|
+
* @type {boolean}
|
|
2059
2041
|
* @memberof ConsultationModel
|
|
2060
2042
|
*/
|
|
2061
|
-
'
|
|
2043
|
+
'isAccountHolder'?: boolean;
|
|
2062
2044
|
/**
|
|
2063
2045
|
*
|
|
2064
2046
|
* @type {string}
|
|
@@ -2089,18 +2071,6 @@ export interface ConsultationModel {
|
|
|
2089
2071
|
* @memberof ConsultationModel
|
|
2090
2072
|
*/
|
|
2091
2073
|
'confirmedDateEnd'?: Date | null;
|
|
2092
|
-
/**
|
|
2093
|
-
*
|
|
2094
|
-
* @type {string}
|
|
2095
|
-
* @memberof ConsultationModel
|
|
2096
|
-
*/
|
|
2097
|
-
'callerName'?: string | null;
|
|
2098
|
-
/**
|
|
2099
|
-
*
|
|
2100
|
-
* @type {string}
|
|
2101
|
-
* @memberof ConsultationModel
|
|
2102
|
-
*/
|
|
2103
|
-
'callerId'?: string | null;
|
|
2104
2074
|
/**
|
|
2105
2075
|
*
|
|
2106
2076
|
* @type {number}
|
|
@@ -2125,6 +2095,12 @@ export interface ConsultationModel {
|
|
|
2125
2095
|
* @memberof ConsultationModel
|
|
2126
2096
|
*/
|
|
2127
2097
|
'requestDate'?: Date;
|
|
2098
|
+
/**
|
|
2099
|
+
*
|
|
2100
|
+
* @type {string}
|
|
2101
|
+
* @memberof ConsultationModel
|
|
2102
|
+
*/
|
|
2103
|
+
'domain'?: string | null;
|
|
2128
2104
|
/**
|
|
2129
2105
|
*
|
|
2130
2106
|
* @type {ConsultationStatus}
|
|
@@ -2149,6 +2125,12 @@ export interface ConsultationModel {
|
|
|
2149
2125
|
* @memberof ConsultationModel
|
|
2150
2126
|
*/
|
|
2151
2127
|
'paymentId'?: string | null;
|
|
2128
|
+
/**
|
|
2129
|
+
*
|
|
2130
|
+
* @type {boolean}
|
|
2131
|
+
* @memberof ConsultationModel
|
|
2132
|
+
*/
|
|
2133
|
+
'paymentEnabled'?: boolean;
|
|
2152
2134
|
/**
|
|
2153
2135
|
*
|
|
2154
2136
|
* @type {number}
|
|
@@ -3251,6 +3233,12 @@ export interface DealPackageItemModel {
|
|
|
3251
3233
|
* @memberof DealPackageItemModel
|
|
3252
3234
|
*/
|
|
3253
3235
|
'id'?: string;
|
|
3236
|
+
/**
|
|
3237
|
+
*
|
|
3238
|
+
* @type {string}
|
|
3239
|
+
* @memberof DealPackageItemModel
|
|
3240
|
+
*/
|
|
3241
|
+
'languageCode'?: string | null;
|
|
3254
3242
|
/**
|
|
3255
3243
|
*
|
|
3256
3244
|
* @type {string}
|
|
@@ -3268,37 +3256,31 @@ export interface DealPackageItemModel {
|
|
|
3268
3256
|
* @type {string}
|
|
3269
3257
|
* @memberof DealPackageItemModel
|
|
3270
3258
|
*/
|
|
3271
|
-
'
|
|
3259
|
+
'dealSlug'?: string | null;
|
|
3272
3260
|
/**
|
|
3273
3261
|
*
|
|
3274
3262
|
* @type {string}
|
|
3275
3263
|
* @memberof DealPackageItemModel
|
|
3276
3264
|
*/
|
|
3277
|
-
'
|
|
3278
|
-
/**
|
|
3279
|
-
*
|
|
3280
|
-
* @type {RefundPolicy}
|
|
3281
|
-
* @memberof DealPackageItemModel
|
|
3282
|
-
*/
|
|
3283
|
-
'refundPolicy'?: RefundPolicy;
|
|
3265
|
+
'hospitalId'?: string;
|
|
3284
3266
|
/**
|
|
3285
3267
|
*
|
|
3286
3268
|
* @type {string}
|
|
3287
3269
|
* @memberof DealPackageItemModel
|
|
3288
3270
|
*/
|
|
3289
|
-
'
|
|
3271
|
+
'hospitalName'?: string | null;
|
|
3290
3272
|
/**
|
|
3291
3273
|
*
|
|
3292
3274
|
* @type {string}
|
|
3293
3275
|
* @memberof DealPackageItemModel
|
|
3294
3276
|
*/
|
|
3295
|
-
'
|
|
3277
|
+
'hospitalSlug'?: string | null;
|
|
3296
3278
|
/**
|
|
3297
3279
|
*
|
|
3298
|
-
* @type {
|
|
3280
|
+
* @type {RefundPolicy}
|
|
3299
3281
|
* @memberof DealPackageItemModel
|
|
3300
3282
|
*/
|
|
3301
|
-
'
|
|
3283
|
+
'refundPolicy'?: RefundPolicy;
|
|
3302
3284
|
/**
|
|
3303
3285
|
*
|
|
3304
3286
|
* @type {string}
|
|
@@ -3335,49 +3317,49 @@ export interface DealPackageModel {
|
|
|
3335
3317
|
* @type {string}
|
|
3336
3318
|
* @memberof DealPackageModel
|
|
3337
3319
|
*/
|
|
3338
|
-
'
|
|
3320
|
+
'languageCode'?: string | null;
|
|
3339
3321
|
/**
|
|
3340
3322
|
*
|
|
3341
3323
|
* @type {string}
|
|
3342
3324
|
* @memberof DealPackageModel
|
|
3343
3325
|
*/
|
|
3344
|
-
'
|
|
3326
|
+
'dealId'?: string;
|
|
3345
3327
|
/**
|
|
3346
3328
|
*
|
|
3347
3329
|
* @type {string}
|
|
3348
3330
|
* @memberof DealPackageModel
|
|
3349
3331
|
*/
|
|
3350
|
-
'
|
|
3332
|
+
'dealName'?: string | null;
|
|
3351
3333
|
/**
|
|
3352
3334
|
*
|
|
3353
3335
|
* @type {string}
|
|
3354
3336
|
* @memberof DealPackageModel
|
|
3355
3337
|
*/
|
|
3356
|
-
'
|
|
3338
|
+
'dealSlug'?: string | null;
|
|
3357
3339
|
/**
|
|
3358
3340
|
*
|
|
3359
|
-
* @type {
|
|
3341
|
+
* @type {string}
|
|
3360
3342
|
* @memberof DealPackageModel
|
|
3361
3343
|
*/
|
|
3362
|
-
'
|
|
3344
|
+
'hospitalId'?: string;
|
|
3363
3345
|
/**
|
|
3364
3346
|
*
|
|
3365
3347
|
* @type {string}
|
|
3366
3348
|
* @memberof DealPackageModel
|
|
3367
3349
|
*/
|
|
3368
|
-
'
|
|
3350
|
+
'hospitalName'?: string | null;
|
|
3369
3351
|
/**
|
|
3370
3352
|
*
|
|
3371
3353
|
* @type {string}
|
|
3372
3354
|
* @memberof DealPackageModel
|
|
3373
3355
|
*/
|
|
3374
|
-
'
|
|
3356
|
+
'hospitalSlug'?: string | null;
|
|
3375
3357
|
/**
|
|
3376
3358
|
*
|
|
3377
|
-
* @type {
|
|
3359
|
+
* @type {RefundPolicy}
|
|
3378
3360
|
* @memberof DealPackageModel
|
|
3379
3361
|
*/
|
|
3380
|
-
'
|
|
3362
|
+
'refundPolicy'?: RefundPolicy;
|
|
3381
3363
|
/**
|
|
3382
3364
|
*
|
|
3383
3365
|
* @type {string}
|
|
@@ -3396,6 +3378,24 @@ export interface DealPackageModel {
|
|
|
3396
3378
|
* @memberof DealPackageModel
|
|
3397
3379
|
*/
|
|
3398
3380
|
'auditableEntity'?: AuditableEntity;
|
|
3381
|
+
/**
|
|
3382
|
+
*
|
|
3383
|
+
* @type {string}
|
|
3384
|
+
* @memberof DealPackageModel
|
|
3385
|
+
*/
|
|
3386
|
+
'additionalServices'?: string | null;
|
|
3387
|
+
/**
|
|
3388
|
+
*
|
|
3389
|
+
* @type {string}
|
|
3390
|
+
* @memberof DealPackageModel
|
|
3391
|
+
*/
|
|
3392
|
+
'accomodation'?: string | null;
|
|
3393
|
+
/**
|
|
3394
|
+
*
|
|
3395
|
+
* @type {string}
|
|
3396
|
+
* @memberof DealPackageModel
|
|
3397
|
+
*/
|
|
3398
|
+
'transfer'?: string | null;
|
|
3399
3399
|
}
|
|
3400
3400
|
/**
|
|
3401
3401
|
*
|
|
@@ -3422,6 +3422,12 @@ export interface DealPackagesModel {
|
|
|
3422
3422
|
* @interface DealServiceItemModel
|
|
3423
3423
|
*/
|
|
3424
3424
|
export interface DealServiceItemModel {
|
|
3425
|
+
/**
|
|
3426
|
+
*
|
|
3427
|
+
* @type {string}
|
|
3428
|
+
* @memberof DealServiceItemModel
|
|
3429
|
+
*/
|
|
3430
|
+
'languageCode'?: string | null;
|
|
3425
3431
|
/**
|
|
3426
3432
|
*
|
|
3427
3433
|
* @type {string}
|
|
@@ -3434,6 +3440,12 @@ export interface DealServiceItemModel {
|
|
|
3434
3440
|
* @memberof DealServiceItemModel
|
|
3435
3441
|
*/
|
|
3436
3442
|
'dealName'?: string | null;
|
|
3443
|
+
/**
|
|
3444
|
+
*
|
|
3445
|
+
* @type {string}
|
|
3446
|
+
* @memberof DealServiceItemModel
|
|
3447
|
+
*/
|
|
3448
|
+
'dealSlug'?: string | null;
|
|
3437
3449
|
/**
|
|
3438
3450
|
*
|
|
3439
3451
|
* @type {string}
|
|
@@ -3446,6 +3458,12 @@ export interface DealServiceItemModel {
|
|
|
3446
3458
|
* @memberof DealServiceItemModel
|
|
3447
3459
|
*/
|
|
3448
3460
|
'serviceName'?: string | null;
|
|
3461
|
+
/**
|
|
3462
|
+
*
|
|
3463
|
+
* @type {string}
|
|
3464
|
+
* @memberof DealServiceItemModel
|
|
3465
|
+
*/
|
|
3466
|
+
'serviceSlug'?: string | null;
|
|
3449
3467
|
/**
|
|
3450
3468
|
*
|
|
3451
3469
|
* @type {number}
|
|
@@ -3459,6 +3477,12 @@ export interface DealServiceItemModel {
|
|
|
3459
3477
|
* @interface DealServiceModel
|
|
3460
3478
|
*/
|
|
3461
3479
|
export interface DealServiceModel {
|
|
3480
|
+
/**
|
|
3481
|
+
*
|
|
3482
|
+
* @type {string}
|
|
3483
|
+
* @memberof DealServiceModel
|
|
3484
|
+
*/
|
|
3485
|
+
'languageCode'?: string | null;
|
|
3462
3486
|
/**
|
|
3463
3487
|
*
|
|
3464
3488
|
* @type {string}
|
|
@@ -3471,6 +3495,12 @@ export interface DealServiceModel {
|
|
|
3471
3495
|
* @memberof DealServiceModel
|
|
3472
3496
|
*/
|
|
3473
3497
|
'dealName'?: string | null;
|
|
3498
|
+
/**
|
|
3499
|
+
*
|
|
3500
|
+
* @type {string}
|
|
3501
|
+
* @memberof DealServiceModel
|
|
3502
|
+
*/
|
|
3503
|
+
'dealSlug'?: string | null;
|
|
3474
3504
|
/**
|
|
3475
3505
|
*
|
|
3476
3506
|
* @type {string}
|
|
@@ -3483,6 +3513,12 @@ export interface DealServiceModel {
|
|
|
3483
3513
|
* @memberof DealServiceModel
|
|
3484
3514
|
*/
|
|
3485
3515
|
'serviceName'?: string | null;
|
|
3516
|
+
/**
|
|
3517
|
+
*
|
|
3518
|
+
* @type {string}
|
|
3519
|
+
* @memberof DealServiceModel
|
|
3520
|
+
*/
|
|
3521
|
+
'serviceSlug'?: string | null;
|
|
3486
3522
|
/**
|
|
3487
3523
|
*
|
|
3488
3524
|
* @type {number}
|
|
@@ -3558,7 +3594,7 @@ export interface DoctorAffiliationItemModel {
|
|
|
3558
3594
|
* @type {string}
|
|
3559
3595
|
* @memberof DoctorAffiliationItemModel
|
|
3560
3596
|
*/
|
|
3561
|
-
'
|
|
3597
|
+
'id'?: string;
|
|
3562
3598
|
/**
|
|
3563
3599
|
*
|
|
3564
3600
|
* @type {string}
|
|
@@ -3577,6 +3613,60 @@ export interface DoctorAffiliationItemModel {
|
|
|
3577
3613
|
* @memberof DoctorAffiliationItemModel
|
|
3578
3614
|
*/
|
|
3579
3615
|
'hospitalSlug'?: string | null;
|
|
3616
|
+
/**
|
|
3617
|
+
*
|
|
3618
|
+
* @type {string}
|
|
3619
|
+
* @memberof DoctorAffiliationItemModel
|
|
3620
|
+
*/
|
|
3621
|
+
'doctorId'?: string;
|
|
3622
|
+
/**
|
|
3623
|
+
*
|
|
3624
|
+
* @type {string}
|
|
3625
|
+
* @memberof DoctorAffiliationItemModel
|
|
3626
|
+
*/
|
|
3627
|
+
'languageCode'?: string | null;
|
|
3628
|
+
/**
|
|
3629
|
+
*
|
|
3630
|
+
* @type {string}
|
|
3631
|
+
* @memberof DoctorAffiliationItemModel
|
|
3632
|
+
*/
|
|
3633
|
+
'name'?: string | null;
|
|
3634
|
+
/**
|
|
3635
|
+
*
|
|
3636
|
+
* @type {string}
|
|
3637
|
+
* @memberof DoctorAffiliationItemModel
|
|
3638
|
+
*/
|
|
3639
|
+
'slug'?: string | null;
|
|
3640
|
+
/**
|
|
3641
|
+
*
|
|
3642
|
+
* @type {boolean}
|
|
3643
|
+
* @memberof DoctorAffiliationItemModel
|
|
3644
|
+
*/
|
|
3645
|
+
'confirmed'?: boolean;
|
|
3646
|
+
/**
|
|
3647
|
+
*
|
|
3648
|
+
* @type {string}
|
|
3649
|
+
* @memberof DoctorAffiliationItemModel
|
|
3650
|
+
*/
|
|
3651
|
+
'photo'?: string | null;
|
|
3652
|
+
/**
|
|
3653
|
+
*
|
|
3654
|
+
* @type {string}
|
|
3655
|
+
* @memberof DoctorAffiliationItemModel
|
|
3656
|
+
*/
|
|
3657
|
+
'photoThumbnail'?: string | null;
|
|
3658
|
+
/**
|
|
3659
|
+
*
|
|
3660
|
+
* @type {boolean}
|
|
3661
|
+
* @memberof DoctorAffiliationItemModel
|
|
3662
|
+
*/
|
|
3663
|
+
'consultationEnabled'?: boolean | null;
|
|
3664
|
+
/**
|
|
3665
|
+
*
|
|
3666
|
+
* @type {number}
|
|
3667
|
+
* @memberof DoctorAffiliationItemModel
|
|
3668
|
+
*/
|
|
3669
|
+
'consultationFee'?: number | null;
|
|
3580
3670
|
/**
|
|
3581
3671
|
*
|
|
3582
3672
|
* @type {number}
|
|
@@ -3595,7 +3685,7 @@ export interface DoctorAffiliationModel {
|
|
|
3595
3685
|
* @type {string}
|
|
3596
3686
|
* @memberof DoctorAffiliationModel
|
|
3597
3687
|
*/
|
|
3598
|
-
'
|
|
3688
|
+
'id'?: string;
|
|
3599
3689
|
/**
|
|
3600
3690
|
*
|
|
3601
3691
|
* @type {string}
|
|
@@ -3614,12 +3704,114 @@ export interface DoctorAffiliationModel {
|
|
|
3614
3704
|
* @memberof DoctorAffiliationModel
|
|
3615
3705
|
*/
|
|
3616
3706
|
'hospitalSlug'?: string | null;
|
|
3707
|
+
/**
|
|
3708
|
+
*
|
|
3709
|
+
* @type {string}
|
|
3710
|
+
* @memberof DoctorAffiliationModel
|
|
3711
|
+
*/
|
|
3712
|
+
'doctorId'?: string;
|
|
3713
|
+
/**
|
|
3714
|
+
*
|
|
3715
|
+
* @type {string}
|
|
3716
|
+
* @memberof DoctorAffiliationModel
|
|
3717
|
+
*/
|
|
3718
|
+
'languageCode'?: string | null;
|
|
3719
|
+
/**
|
|
3720
|
+
*
|
|
3721
|
+
* @type {string}
|
|
3722
|
+
* @memberof DoctorAffiliationModel
|
|
3723
|
+
*/
|
|
3724
|
+
'name'?: string | null;
|
|
3725
|
+
/**
|
|
3726
|
+
*
|
|
3727
|
+
* @type {string}
|
|
3728
|
+
* @memberof DoctorAffiliationModel
|
|
3729
|
+
*/
|
|
3730
|
+
'slug'?: string | null;
|
|
3731
|
+
/**
|
|
3732
|
+
*
|
|
3733
|
+
* @type {boolean}
|
|
3734
|
+
* @memberof DoctorAffiliationModel
|
|
3735
|
+
*/
|
|
3736
|
+
'confirmed'?: boolean;
|
|
3737
|
+
/**
|
|
3738
|
+
*
|
|
3739
|
+
* @type {string}
|
|
3740
|
+
* @memberof DoctorAffiliationModel
|
|
3741
|
+
*/
|
|
3742
|
+
'photo'?: string | null;
|
|
3743
|
+
/**
|
|
3744
|
+
*
|
|
3745
|
+
* @type {string}
|
|
3746
|
+
* @memberof DoctorAffiliationModel
|
|
3747
|
+
*/
|
|
3748
|
+
'photoThumbnail'?: string | null;
|
|
3749
|
+
/**
|
|
3750
|
+
*
|
|
3751
|
+
* @type {boolean}
|
|
3752
|
+
* @memberof DoctorAffiliationModel
|
|
3753
|
+
*/
|
|
3754
|
+
'consultationEnabled'?: boolean | null;
|
|
3755
|
+
/**
|
|
3756
|
+
*
|
|
3757
|
+
* @type {number}
|
|
3758
|
+
* @memberof DoctorAffiliationModel
|
|
3759
|
+
*/
|
|
3760
|
+
'consultationFee'?: number | null;
|
|
3617
3761
|
/**
|
|
3618
3762
|
*
|
|
3619
3763
|
* @type {number}
|
|
3620
3764
|
* @memberof DoctorAffiliationModel
|
|
3621
3765
|
*/
|
|
3622
3766
|
'order'?: number;
|
|
3767
|
+
/**
|
|
3768
|
+
*
|
|
3769
|
+
* @type {string}
|
|
3770
|
+
* @memberof DoctorAffiliationModel
|
|
3771
|
+
*/
|
|
3772
|
+
'description'?: string | null;
|
|
3773
|
+
/**
|
|
3774
|
+
*
|
|
3775
|
+
* @type {string}
|
|
3776
|
+
* @memberof DoctorAffiliationModel
|
|
3777
|
+
*/
|
|
3778
|
+
'overview'?: string | null;
|
|
3779
|
+
/**
|
|
3780
|
+
*
|
|
3781
|
+
* @type {string}
|
|
3782
|
+
* @memberof DoctorAffiliationModel
|
|
3783
|
+
*/
|
|
3784
|
+
'content'?: string | null;
|
|
3785
|
+
/**
|
|
3786
|
+
*
|
|
3787
|
+
* @type {string}
|
|
3788
|
+
* @memberof DoctorAffiliationModel
|
|
3789
|
+
*/
|
|
3790
|
+
'background'?: string | null;
|
|
3791
|
+
/**
|
|
3792
|
+
*
|
|
3793
|
+
* @type {string}
|
|
3794
|
+
* @memberof DoctorAffiliationModel
|
|
3795
|
+
*/
|
|
3796
|
+
'backgroundThumbnail'?: string | null;
|
|
3797
|
+
/**
|
|
3798
|
+
*
|
|
3799
|
+
* @type {string}
|
|
3800
|
+
* @memberof DoctorAffiliationModel
|
|
3801
|
+
*/
|
|
3802
|
+
'customStyle'?: string | null;
|
|
3803
|
+
/**
|
|
3804
|
+
*
|
|
3805
|
+
* @type {Array<LocalizedUrlModel>}
|
|
3806
|
+
* @memberof DoctorAffiliationModel
|
|
3807
|
+
*/
|
|
3808
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
3809
|
+
/**
|
|
3810
|
+
*
|
|
3811
|
+
* @type {Array<MediaModel>}
|
|
3812
|
+
* @memberof DoctorAffiliationModel
|
|
3813
|
+
*/
|
|
3814
|
+
'medias'?: Array<MediaModel> | null;
|
|
3623
3815
|
}
|
|
3624
3816
|
/**
|
|
3625
3817
|
*
|
|
@@ -6015,7 +6207,13 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6015
6207
|
* @type {string}
|
|
6016
6208
|
* @memberof HospitalSpecialtyItemModel
|
|
6017
6209
|
*/
|
|
6018
|
-
'slug'?: string | null;
|
|
6210
|
+
'slug'?: string | null;
|
|
6211
|
+
/**
|
|
6212
|
+
*
|
|
6213
|
+
* @type {boolean}
|
|
6214
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6215
|
+
*/
|
|
6216
|
+
'confirmed'?: boolean;
|
|
6019
6217
|
/**
|
|
6020
6218
|
*
|
|
6021
6219
|
* @type {number}
|
|
@@ -6058,6 +6256,12 @@ export interface HospitalSpecialtyItemModel {
|
|
|
6058
6256
|
* @memberof HospitalSpecialtyItemModel
|
|
6059
6257
|
*/
|
|
6060
6258
|
'specialtyId'?: string;
|
|
6259
|
+
/**
|
|
6260
|
+
*
|
|
6261
|
+
* @type {AuditableEntity}
|
|
6262
|
+
* @memberof HospitalSpecialtyItemModel
|
|
6263
|
+
*/
|
|
6264
|
+
'auditableEntity'?: AuditableEntity;
|
|
6061
6265
|
}
|
|
6062
6266
|
/**
|
|
6063
6267
|
*
|
|
@@ -6089,6 +6293,12 @@ export interface HospitalSpecialtyModel {
|
|
|
6089
6293
|
* @memberof HospitalSpecialtyModel
|
|
6090
6294
|
*/
|
|
6091
6295
|
'slug'?: string | null;
|
|
6296
|
+
/**
|
|
6297
|
+
*
|
|
6298
|
+
* @type {boolean}
|
|
6299
|
+
* @memberof HospitalSpecialtyModel
|
|
6300
|
+
*/
|
|
6301
|
+
'confirmed'?: boolean;
|
|
6092
6302
|
/**
|
|
6093
6303
|
*
|
|
6094
6304
|
* @type {number}
|
|
@@ -6131,6 +6341,12 @@ export interface HospitalSpecialtyModel {
|
|
|
6131
6341
|
* @memberof HospitalSpecialtyModel
|
|
6132
6342
|
*/
|
|
6133
6343
|
'specialtyId'?: string;
|
|
6344
|
+
/**
|
|
6345
|
+
*
|
|
6346
|
+
* @type {AuditableEntity}
|
|
6347
|
+
* @memberof HospitalSpecialtyModel
|
|
6348
|
+
*/
|
|
6349
|
+
'auditableEntity'?: AuditableEntity;
|
|
6134
6350
|
/**
|
|
6135
6351
|
*
|
|
6136
6352
|
* @type {string}
|
|
@@ -6142,13 +6358,13 @@ export interface HospitalSpecialtyModel {
|
|
|
6142
6358
|
* @type {string}
|
|
6143
6359
|
* @memberof HospitalSpecialtyModel
|
|
6144
6360
|
*/
|
|
6145
|
-
'
|
|
6361
|
+
'overview'?: string | null;
|
|
6146
6362
|
/**
|
|
6147
6363
|
*
|
|
6148
|
-
* @type {
|
|
6364
|
+
* @type {string}
|
|
6149
6365
|
* @memberof HospitalSpecialtyModel
|
|
6150
6366
|
*/
|
|
6151
|
-
'
|
|
6367
|
+
'content'?: string | null;
|
|
6152
6368
|
/**
|
|
6153
6369
|
*
|
|
6154
6370
|
* @type {string}
|
|
@@ -6228,6 +6444,12 @@ export interface HospitalSpecialtySimpleItemModel {
|
|
|
6228
6444
|
* @memberof HospitalSpecialtySimpleItemModel
|
|
6229
6445
|
*/
|
|
6230
6446
|
'slug'?: string | null;
|
|
6447
|
+
/**
|
|
6448
|
+
*
|
|
6449
|
+
* @type {boolean}
|
|
6450
|
+
* @memberof HospitalSpecialtySimpleItemModel
|
|
6451
|
+
*/
|
|
6452
|
+
'confirmed'?: boolean;
|
|
6231
6453
|
/**
|
|
6232
6454
|
*
|
|
6233
6455
|
* @type {number}
|
|
@@ -8008,6 +8230,15 @@ export declare enum SnsType {
|
|
|
8008
8230
|
Youtube = "Youtube",
|
|
8009
8231
|
KakaoTalk = "KakaoTalk"
|
|
8010
8232
|
}
|
|
8233
|
+
/**
|
|
8234
|
+
*
|
|
8235
|
+
* @export
|
|
8236
|
+
* @enum {string}
|
|
8237
|
+
*/
|
|
8238
|
+
export declare enum SortingOrder {
|
|
8239
|
+
Ascending = "Ascending",
|
|
8240
|
+
Descending = "Descending"
|
|
8241
|
+
}
|
|
8011
8242
|
/**
|
|
8012
8243
|
*
|
|
8013
8244
|
* @export
|
|
@@ -9653,11 +9884,10 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9653
9884
|
* @summary Get Article.
|
|
9654
9885
|
* @param {string} articleId
|
|
9655
9886
|
* @param {string} [languageCode]
|
|
9656
|
-
* @param {boolean} [returnDefaultValue]
|
|
9657
9887
|
* @param {*} [options] Override http request option.
|
|
9658
9888
|
* @throws {RequiredError}
|
|
9659
9889
|
*/
|
|
9660
|
-
apiV2ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined,
|
|
9890
|
+
apiV2ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9661
9891
|
/**
|
|
9662
9892
|
*
|
|
9663
9893
|
* @summary Get all ArticleMedias.
|
|
@@ -9796,11 +10026,10 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
9796
10026
|
* @summary Get Article.
|
|
9797
10027
|
* @param {string} articleId
|
|
9798
10028
|
* @param {string} [languageCode]
|
|
9799
|
-
* @param {boolean} [returnDefaultValue]
|
|
9800
10029
|
* @param {*} [options] Override http request option.
|
|
9801
10030
|
* @throws {RequiredError}
|
|
9802
10031
|
*/
|
|
9803
|
-
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined,
|
|
10032
|
+
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
9804
10033
|
/**
|
|
9805
10034
|
*
|
|
9806
10035
|
* @summary Get all ArticleMedias.
|
|
@@ -9939,11 +10168,10 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
9939
10168
|
* @summary Get Article.
|
|
9940
10169
|
* @param {string} articleId
|
|
9941
10170
|
* @param {string} [languageCode]
|
|
9942
|
-
* @param {boolean} [returnDefaultValue]
|
|
9943
10171
|
* @param {*} [options] Override http request option.
|
|
9944
10172
|
* @throws {RequiredError}
|
|
9945
10173
|
*/
|
|
9946
|
-
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined,
|
|
10174
|
+
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
9947
10175
|
/**
|
|
9948
10176
|
*
|
|
9949
10177
|
* @summary Get all ArticleMedias.
|
|
@@ -10086,12 +10314,11 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
10086
10314
|
* @summary Get Article.
|
|
10087
10315
|
* @param {string} articleId
|
|
10088
10316
|
* @param {string} [languageCode]
|
|
10089
|
-
* @param {boolean} [returnDefaultValue]
|
|
10090
10317
|
* @param {*} [options] Override http request option.
|
|
10091
10318
|
* @throws {RequiredError}
|
|
10092
10319
|
* @memberof ArticlesApi
|
|
10093
10320
|
*/
|
|
10094
|
-
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string,
|
|
10321
|
+
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel, any>>;
|
|
10095
10322
|
/**
|
|
10096
10323
|
*
|
|
10097
10324
|
* @summary Get all ArticleMedias.
|
|
@@ -10209,10 +10436,11 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10209
10436
|
*
|
|
10210
10437
|
* @summary Get booking.
|
|
10211
10438
|
* @param {string} bookingId
|
|
10439
|
+
* @param {string} [languageCode]
|
|
10212
10440
|
* @param {*} [options] Override http request option.
|
|
10213
10441
|
* @throws {RequiredError}
|
|
10214
10442
|
*/
|
|
10215
|
-
apiV2BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10443
|
+
apiV2BookingsBookingIdGet: (bookingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10216
10444
|
/**
|
|
10217
10445
|
*
|
|
10218
10446
|
* @summary Pay booking.
|
|
@@ -10233,19 +10461,26 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
10233
10461
|
/**
|
|
10234
10462
|
*
|
|
10235
10463
|
* @summary Get all bookings.
|
|
10236
|
-
* @param {string} [
|
|
10464
|
+
* @param {string} [hospitalId]
|
|
10465
|
+
* @param {string} [hospitalName]
|
|
10466
|
+
* @param {string} [dealId]
|
|
10467
|
+
* @param {string} [dealName]
|
|
10237
10468
|
* @param {boolean} [isOpen]
|
|
10238
10469
|
* @param {boolean} [isCompleted]
|
|
10239
10470
|
* @param {BookingStatus} [status]
|
|
10240
10471
|
* @param {string} [dealPackageId]
|
|
10241
|
-
* @param {
|
|
10472
|
+
* @param {SortingOrder} [sortRequestDate]
|
|
10473
|
+
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
10474
|
+
* @param {boolean} [isExternal]
|
|
10475
|
+
* @param {boolean} [paymentEnabled]
|
|
10476
|
+
* @param {string} [languageCode]
|
|
10242
10477
|
* @param {number} [page]
|
|
10243
10478
|
* @param {number} [limit]
|
|
10244
10479
|
* @param {Date} [lastRetrieved]
|
|
10245
10480
|
* @param {*} [options] Override http request option.
|
|
10246
10481
|
* @throws {RequiredError}
|
|
10247
10482
|
*/
|
|
10248
|
-
apiV2BookingsGet: (
|
|
10483
|
+
apiV2BookingsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10249
10484
|
/**
|
|
10250
10485
|
*
|
|
10251
10486
|
* @summary Create booking.
|
|
@@ -10265,10 +10500,11 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
10265
10500
|
*
|
|
10266
10501
|
* @summary Get booking.
|
|
10267
10502
|
* @param {string} bookingId
|
|
10503
|
+
* @param {string} [languageCode]
|
|
10268
10504
|
* @param {*} [options] Override http request option.
|
|
10269
10505
|
* @throws {RequiredError}
|
|
10270
10506
|
*/
|
|
10271
|
-
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
10507
|
+
apiV2BookingsBookingIdGet(bookingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
10272
10508
|
/**
|
|
10273
10509
|
*
|
|
10274
10510
|
* @summary Pay booking.
|
|
@@ -10289,19 +10525,26 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
10289
10525
|
/**
|
|
10290
10526
|
*
|
|
10291
10527
|
* @summary Get all bookings.
|
|
10292
|
-
* @param {string} [
|
|
10528
|
+
* @param {string} [hospitalId]
|
|
10529
|
+
* @param {string} [hospitalName]
|
|
10530
|
+
* @param {string} [dealId]
|
|
10531
|
+
* @param {string} [dealName]
|
|
10293
10532
|
* @param {boolean} [isOpen]
|
|
10294
10533
|
* @param {boolean} [isCompleted]
|
|
10295
10534
|
* @param {BookingStatus} [status]
|
|
10296
10535
|
* @param {string} [dealPackageId]
|
|
10297
|
-
* @param {
|
|
10536
|
+
* @param {SortingOrder} [sortRequestDate]
|
|
10537
|
+
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
10538
|
+
* @param {boolean} [isExternal]
|
|
10539
|
+
* @param {boolean} [paymentEnabled]
|
|
10540
|
+
* @param {string} [languageCode]
|
|
10298
10541
|
* @param {number} [page]
|
|
10299
10542
|
* @param {number} [limit]
|
|
10300
10543
|
* @param {Date} [lastRetrieved]
|
|
10301
10544
|
* @param {*} [options] Override http request option.
|
|
10302
10545
|
* @throws {RequiredError}
|
|
10303
10546
|
*/
|
|
10304
|
-
apiV2BookingsGet(
|
|
10547
|
+
apiV2BookingsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
|
|
10305
10548
|
/**
|
|
10306
10549
|
*
|
|
10307
10550
|
* @summary Create booking.
|
|
@@ -10321,10 +10564,11 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
10321
10564
|
*
|
|
10322
10565
|
* @summary Get booking.
|
|
10323
10566
|
* @param {string} bookingId
|
|
10567
|
+
* @param {string} [languageCode]
|
|
10324
10568
|
* @param {*} [options] Override http request option.
|
|
10325
10569
|
* @throws {RequiredError}
|
|
10326
10570
|
*/
|
|
10327
|
-
apiV2BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
|
|
10571
|
+
apiV2BookingsBookingIdGet(bookingId: string, languageCode?: string | undefined, options?: any): AxiosPromise<BookingModel>;
|
|
10328
10572
|
/**
|
|
10329
10573
|
*
|
|
10330
10574
|
* @summary Pay booking.
|
|
@@ -10345,19 +10589,26 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
|
|
|
10345
10589
|
/**
|
|
10346
10590
|
*
|
|
10347
10591
|
* @summary Get all bookings.
|
|
10348
|
-
* @param {string} [
|
|
10592
|
+
* @param {string} [hospitalId]
|
|
10593
|
+
* @param {string} [hospitalName]
|
|
10594
|
+
* @param {string} [dealId]
|
|
10595
|
+
* @param {string} [dealName]
|
|
10349
10596
|
* @param {boolean} [isOpen]
|
|
10350
10597
|
* @param {boolean} [isCompleted]
|
|
10351
10598
|
* @param {BookingStatus} [status]
|
|
10352
10599
|
* @param {string} [dealPackageId]
|
|
10353
|
-
* @param {
|
|
10600
|
+
* @param {SortingOrder} [sortRequestDate]
|
|
10601
|
+
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
10602
|
+
* @param {boolean} [isExternal]
|
|
10603
|
+
* @param {boolean} [paymentEnabled]
|
|
10604
|
+
* @param {string} [languageCode]
|
|
10354
10605
|
* @param {number} [page]
|
|
10355
10606
|
* @param {number} [limit]
|
|
10356
10607
|
* @param {Date} [lastRetrieved]
|
|
10357
10608
|
* @param {*} [options] Override http request option.
|
|
10358
10609
|
* @throws {RequiredError}
|
|
10359
10610
|
*/
|
|
10360
|
-
apiV2BookingsGet(
|
|
10611
|
+
apiV2BookingsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
|
|
10361
10612
|
/**
|
|
10362
10613
|
*
|
|
10363
10614
|
* @summary Create booking.
|
|
@@ -10379,11 +10630,12 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
10379
10630
|
*
|
|
10380
10631
|
* @summary Get booking.
|
|
10381
10632
|
* @param {string} bookingId
|
|
10633
|
+
* @param {string} [languageCode]
|
|
10382
10634
|
* @param {*} [options] Override http request option.
|
|
10383
10635
|
* @throws {RequiredError}
|
|
10384
10636
|
* @memberof BookingsApi
|
|
10385
10637
|
*/
|
|
10386
|
-
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
10638
|
+
apiV2BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
10387
10639
|
/**
|
|
10388
10640
|
*
|
|
10389
10641
|
* @summary Pay booking.
|
|
@@ -10406,12 +10658,19 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
10406
10658
|
/**
|
|
10407
10659
|
*
|
|
10408
10660
|
* @summary Get all bookings.
|
|
10409
|
-
* @param {string} [
|
|
10661
|
+
* @param {string} [hospitalId]
|
|
10662
|
+
* @param {string} [hospitalName]
|
|
10663
|
+
* @param {string} [dealId]
|
|
10664
|
+
* @param {string} [dealName]
|
|
10410
10665
|
* @param {boolean} [isOpen]
|
|
10411
10666
|
* @param {boolean} [isCompleted]
|
|
10412
10667
|
* @param {BookingStatus} [status]
|
|
10413
10668
|
* @param {string} [dealPackageId]
|
|
10414
|
-
* @param {
|
|
10669
|
+
* @param {SortingOrder} [sortRequestDate]
|
|
10670
|
+
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
10671
|
+
* @param {boolean} [isExternal]
|
|
10672
|
+
* @param {boolean} [paymentEnabled]
|
|
10673
|
+
* @param {string} [languageCode]
|
|
10415
10674
|
* @param {number} [page]
|
|
10416
10675
|
* @param {number} [limit]
|
|
10417
10676
|
* @param {Date} [lastRetrieved]
|
|
@@ -10419,7 +10678,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
10419
10678
|
* @throws {RequiredError}
|
|
10420
10679
|
* @memberof BookingsApi
|
|
10421
10680
|
*/
|
|
10422
|
-
apiV2BookingsGet(
|
|
10681
|
+
apiV2BookingsGet(hospitalId?: string, hospitalName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel, any>>;
|
|
10423
10682
|
/**
|
|
10424
10683
|
*
|
|
10425
10684
|
* @summary Create booking.
|
|
@@ -10789,10 +11048,11 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
10789
11048
|
*
|
|
10790
11049
|
* @summary Get consultation.
|
|
10791
11050
|
* @param {string} consultationId
|
|
11051
|
+
* @param {string} [languageCode]
|
|
10792
11052
|
* @param {*} [options] Override http request option.
|
|
10793
11053
|
* @throws {RequiredError}
|
|
10794
11054
|
*/
|
|
10795
|
-
apiV2ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11055
|
+
apiV2ConsultationsConsultationIdGet: (consultationId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10796
11056
|
/**
|
|
10797
11057
|
*
|
|
10798
11058
|
* @summary Pay consultation.
|
|
@@ -10813,19 +11073,24 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
|
|
|
10813
11073
|
/**
|
|
10814
11074
|
*
|
|
10815
11075
|
* @summary Get all consultations.
|
|
10816
|
-
* @param {string} [
|
|
11076
|
+
* @param {string} [hospitalId]
|
|
11077
|
+
* @param {string} [hospitalName]
|
|
11078
|
+
* @param {string} [doctorId]
|
|
11079
|
+
* @param {string} [doctorName]
|
|
11080
|
+
* @param {string} [dealId]
|
|
11081
|
+
* @param {string} [dealName]
|
|
10817
11082
|
* @param {boolean} [isOpen]
|
|
10818
11083
|
* @param {boolean} [isCompleted]
|
|
10819
11084
|
* @param {ConsultationStatus} [status]
|
|
10820
11085
|
* @param {ConsultationType} [consultationType]
|
|
10821
|
-
* @param {string} [
|
|
11086
|
+
* @param {string} [languageCode]
|
|
10822
11087
|
* @param {number} [page]
|
|
10823
11088
|
* @param {number} [limit]
|
|
10824
11089
|
* @param {Date} [lastRetrieved]
|
|
10825
11090
|
* @param {*} [options] Override http request option.
|
|
10826
11091
|
* @throws {RequiredError}
|
|
10827
11092
|
*/
|
|
10828
|
-
apiV2ConsultationsGet: (
|
|
11093
|
+
apiV2ConsultationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10829
11094
|
/**
|
|
10830
11095
|
*
|
|
10831
11096
|
* @summary Create consultation.
|
|
@@ -10845,10 +11110,11 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
10845
11110
|
*
|
|
10846
11111
|
* @summary Get consultation.
|
|
10847
11112
|
* @param {string} consultationId
|
|
11113
|
+
* @param {string} [languageCode]
|
|
10848
11114
|
* @param {*} [options] Override http request option.
|
|
10849
11115
|
* @throws {RequiredError}
|
|
10850
11116
|
*/
|
|
10851
|
-
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
11117
|
+
apiV2ConsultationsConsultationIdGet(consultationId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
10852
11118
|
/**
|
|
10853
11119
|
*
|
|
10854
11120
|
* @summary Pay consultation.
|
|
@@ -10869,19 +11135,24 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
10869
11135
|
/**
|
|
10870
11136
|
*
|
|
10871
11137
|
* @summary Get all consultations.
|
|
10872
|
-
* @param {string} [
|
|
11138
|
+
* @param {string} [hospitalId]
|
|
11139
|
+
* @param {string} [hospitalName]
|
|
11140
|
+
* @param {string} [doctorId]
|
|
11141
|
+
* @param {string} [doctorName]
|
|
11142
|
+
* @param {string} [dealId]
|
|
11143
|
+
* @param {string} [dealName]
|
|
10873
11144
|
* @param {boolean} [isOpen]
|
|
10874
11145
|
* @param {boolean} [isCompleted]
|
|
10875
11146
|
* @param {ConsultationStatus} [status]
|
|
10876
11147
|
* @param {ConsultationType} [consultationType]
|
|
10877
|
-
* @param {string} [
|
|
11148
|
+
* @param {string} [languageCode]
|
|
10878
11149
|
* @param {number} [page]
|
|
10879
11150
|
* @param {number} [limit]
|
|
10880
11151
|
* @param {Date} [lastRetrieved]
|
|
10881
11152
|
* @param {*} [options] Override http request option.
|
|
10882
11153
|
* @throws {RequiredError}
|
|
10883
11154
|
*/
|
|
10884
|
-
apiV2ConsultationsGet(
|
|
11155
|
+
apiV2ConsultationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
10885
11156
|
/**
|
|
10886
11157
|
*
|
|
10887
11158
|
* @summary Create consultation.
|
|
@@ -10901,10 +11172,11 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
10901
11172
|
*
|
|
10902
11173
|
* @summary Get consultation.
|
|
10903
11174
|
* @param {string} consultationId
|
|
11175
|
+
* @param {string} [languageCode]
|
|
10904
11176
|
* @param {*} [options] Override http request option.
|
|
10905
11177
|
* @throws {RequiredError}
|
|
10906
11178
|
*/
|
|
10907
|
-
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
|
|
11179
|
+
apiV2ConsultationsConsultationIdGet(consultationId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ConsultationModel>;
|
|
10908
11180
|
/**
|
|
10909
11181
|
*
|
|
10910
11182
|
* @summary Pay consultation.
|
|
@@ -10925,19 +11197,24 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
|
|
|
10925
11197
|
/**
|
|
10926
11198
|
*
|
|
10927
11199
|
* @summary Get all consultations.
|
|
10928
|
-
* @param {string} [
|
|
11200
|
+
* @param {string} [hospitalId]
|
|
11201
|
+
* @param {string} [hospitalName]
|
|
11202
|
+
* @param {string} [doctorId]
|
|
11203
|
+
* @param {string} [doctorName]
|
|
11204
|
+
* @param {string} [dealId]
|
|
11205
|
+
* @param {string} [dealName]
|
|
10929
11206
|
* @param {boolean} [isOpen]
|
|
10930
11207
|
* @param {boolean} [isCompleted]
|
|
10931
11208
|
* @param {ConsultationStatus} [status]
|
|
10932
11209
|
* @param {ConsultationType} [consultationType]
|
|
10933
|
-
* @param {string} [
|
|
11210
|
+
* @param {string} [languageCode]
|
|
10934
11211
|
* @param {number} [page]
|
|
10935
11212
|
* @param {number} [limit]
|
|
10936
11213
|
* @param {Date} [lastRetrieved]
|
|
10937
11214
|
* @param {*} [options] Override http request option.
|
|
10938
11215
|
* @throws {RequiredError}
|
|
10939
11216
|
*/
|
|
10940
|
-
apiV2ConsultationsGet(
|
|
11217
|
+
apiV2ConsultationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
|
|
10941
11218
|
/**
|
|
10942
11219
|
*
|
|
10943
11220
|
* @summary Create consultation.
|
|
@@ -10959,11 +11236,12 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
10959
11236
|
*
|
|
10960
11237
|
* @summary Get consultation.
|
|
10961
11238
|
* @param {string} consultationId
|
|
11239
|
+
* @param {string} [languageCode]
|
|
10962
11240
|
* @param {*} [options] Override http request option.
|
|
10963
11241
|
* @throws {RequiredError}
|
|
10964
11242
|
* @memberof ConsultationsApi
|
|
10965
11243
|
*/
|
|
10966
|
-
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
|
|
11244
|
+
apiV2ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
|
|
10967
11245
|
/**
|
|
10968
11246
|
*
|
|
10969
11247
|
* @summary Pay consultation.
|
|
@@ -10986,12 +11264,17 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
10986
11264
|
/**
|
|
10987
11265
|
*
|
|
10988
11266
|
* @summary Get all consultations.
|
|
10989
|
-
* @param {string} [
|
|
11267
|
+
* @param {string} [hospitalId]
|
|
11268
|
+
* @param {string} [hospitalName]
|
|
11269
|
+
* @param {string} [doctorId]
|
|
11270
|
+
* @param {string} [doctorName]
|
|
11271
|
+
* @param {string} [dealId]
|
|
11272
|
+
* @param {string} [dealName]
|
|
10990
11273
|
* @param {boolean} [isOpen]
|
|
10991
11274
|
* @param {boolean} [isCompleted]
|
|
10992
11275
|
* @param {ConsultationStatus} [status]
|
|
10993
11276
|
* @param {ConsultationType} [consultationType]
|
|
10994
|
-
* @param {string} [
|
|
11277
|
+
* @param {string} [languageCode]
|
|
10995
11278
|
* @param {number} [page]
|
|
10996
11279
|
* @param {number} [limit]
|
|
10997
11280
|
* @param {Date} [lastRetrieved]
|
|
@@ -10999,7 +11282,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
10999
11282
|
* @throws {RequiredError}
|
|
11000
11283
|
* @memberof ConsultationsApi
|
|
11001
11284
|
*/
|
|
11002
|
-
apiV2ConsultationsGet(
|
|
11285
|
+
apiV2ConsultationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel, any>>;
|
|
11003
11286
|
/**
|
|
11004
11287
|
*
|
|
11005
11288
|
* @summary Create consultation.
|
|
@@ -12084,15 +12367,18 @@ export declare class DealsApi extends BaseAPI {
|
|
|
12084
12367
|
apiV2DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel, any>>;
|
|
12085
12368
|
}
|
|
12086
12369
|
/**
|
|
12087
|
-
*
|
|
12370
|
+
* DoctorAffiliationsApi - axios parameter creator
|
|
12088
12371
|
* @export
|
|
12089
12372
|
*/
|
|
12090
|
-
export declare const
|
|
12373
|
+
export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
12091
12374
|
/**
|
|
12092
12375
|
*
|
|
12093
12376
|
* @summary Get all doctor affiliations.
|
|
12094
|
-
* @param {string}
|
|
12377
|
+
* @param {string} [hospitalId]
|
|
12095
12378
|
* @param {string} [hospitalName]
|
|
12379
|
+
* @param {string} [doctorId]
|
|
12380
|
+
* @param {string} [doctorName]
|
|
12381
|
+
* @param {string} [doctorSlug]
|
|
12096
12382
|
* @param {string} [languageCode]
|
|
12097
12383
|
* @param {number} [page]
|
|
12098
12384
|
* @param {number} [limit]
|
|
@@ -12100,16 +12386,119 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12100
12386
|
* @param {*} [options] Override http request option.
|
|
12101
12387
|
* @throws {RequiredError}
|
|
12102
12388
|
*/
|
|
12103
|
-
|
|
12389
|
+
apiV2DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12104
12390
|
/**
|
|
12105
12391
|
*
|
|
12106
12392
|
* @summary Get doctor affiliation.
|
|
12107
|
-
* @param {string}
|
|
12108
|
-
* @param {string}
|
|
12393
|
+
* @param {string} id
|
|
12394
|
+
* @param {string} [languageCode]
|
|
12395
|
+
* @param {*} [options] Override http request option.
|
|
12396
|
+
* @throws {RequiredError}
|
|
12397
|
+
*/
|
|
12398
|
+
apiV2DoctoraffiliationsIdGet: (id: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12399
|
+
};
|
|
12400
|
+
/**
|
|
12401
|
+
* DoctorAffiliationsApi - functional programming interface
|
|
12402
|
+
* @export
|
|
12403
|
+
*/
|
|
12404
|
+
export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | undefined) => {
|
|
12405
|
+
/**
|
|
12406
|
+
*
|
|
12407
|
+
* @summary Get all doctor affiliations.
|
|
12408
|
+
* @param {string} [hospitalId]
|
|
12409
|
+
* @param {string} [hospitalName]
|
|
12410
|
+
* @param {string} [doctorId]
|
|
12411
|
+
* @param {string} [doctorName]
|
|
12412
|
+
* @param {string} [doctorSlug]
|
|
12413
|
+
* @param {string} [languageCode]
|
|
12414
|
+
* @param {number} [page]
|
|
12415
|
+
* @param {number} [limit]
|
|
12416
|
+
* @param {Date} [lastRetrieved]
|
|
12417
|
+
* @param {*} [options] Override http request option.
|
|
12418
|
+
* @throws {RequiredError}
|
|
12419
|
+
*/
|
|
12420
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
12421
|
+
/**
|
|
12422
|
+
*
|
|
12423
|
+
* @summary Get doctor affiliation.
|
|
12424
|
+
* @param {string} id
|
|
12425
|
+
* @param {string} [languageCode]
|
|
12426
|
+
* @param {*} [options] Override http request option.
|
|
12427
|
+
* @throws {RequiredError}
|
|
12428
|
+
*/
|
|
12429
|
+
apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
12430
|
+
};
|
|
12431
|
+
/**
|
|
12432
|
+
* DoctorAffiliationsApi - factory interface
|
|
12433
|
+
* @export
|
|
12434
|
+
*/
|
|
12435
|
+
export declare const DoctorAffiliationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
12436
|
+
/**
|
|
12437
|
+
*
|
|
12438
|
+
* @summary Get all doctor affiliations.
|
|
12439
|
+
* @param {string} [hospitalId]
|
|
12440
|
+
* @param {string} [hospitalName]
|
|
12441
|
+
* @param {string} [doctorId]
|
|
12442
|
+
* @param {string} [doctorName]
|
|
12443
|
+
* @param {string} [doctorSlug]
|
|
12444
|
+
* @param {string} [languageCode]
|
|
12445
|
+
* @param {number} [page]
|
|
12446
|
+
* @param {number} [limit]
|
|
12447
|
+
* @param {Date} [lastRetrieved]
|
|
12448
|
+
* @param {*} [options] Override http request option.
|
|
12449
|
+
* @throws {RequiredError}
|
|
12450
|
+
*/
|
|
12451
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
12452
|
+
/**
|
|
12453
|
+
*
|
|
12454
|
+
* @summary Get doctor affiliation.
|
|
12455
|
+
* @param {string} id
|
|
12456
|
+
* @param {string} [languageCode]
|
|
12457
|
+
* @param {*} [options] Override http request option.
|
|
12458
|
+
* @throws {RequiredError}
|
|
12459
|
+
*/
|
|
12460
|
+
apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
12461
|
+
};
|
|
12462
|
+
/**
|
|
12463
|
+
* DoctorAffiliationsApi - object-oriented interface
|
|
12464
|
+
* @export
|
|
12465
|
+
* @class DoctorAffiliationsApi
|
|
12466
|
+
* @extends {BaseAPI}
|
|
12467
|
+
*/
|
|
12468
|
+
export declare class DoctorAffiliationsApi extends BaseAPI {
|
|
12469
|
+
/**
|
|
12470
|
+
*
|
|
12471
|
+
* @summary Get all doctor affiliations.
|
|
12472
|
+
* @param {string} [hospitalId]
|
|
12473
|
+
* @param {string} [hospitalName]
|
|
12474
|
+
* @param {string} [doctorId]
|
|
12475
|
+
* @param {string} [doctorName]
|
|
12476
|
+
* @param {string} [doctorSlug]
|
|
12477
|
+
* @param {string} [languageCode]
|
|
12478
|
+
* @param {number} [page]
|
|
12479
|
+
* @param {number} [limit]
|
|
12480
|
+
* @param {Date} [lastRetrieved]
|
|
12109
12481
|
* @param {*} [options] Override http request option.
|
|
12110
12482
|
* @throws {RequiredError}
|
|
12483
|
+
* @memberof DoctorAffiliationsApi
|
|
12111
12484
|
*/
|
|
12112
|
-
|
|
12485
|
+
apiV2DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
12486
|
+
/**
|
|
12487
|
+
*
|
|
12488
|
+
* @summary Get doctor affiliation.
|
|
12489
|
+
* @param {string} id
|
|
12490
|
+
* @param {string} [languageCode]
|
|
12491
|
+
* @param {*} [options] Override http request option.
|
|
12492
|
+
* @throws {RequiredError}
|
|
12493
|
+
* @memberof DoctorAffiliationsApi
|
|
12494
|
+
*/
|
|
12495
|
+
apiV2DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel, any>>;
|
|
12496
|
+
}
|
|
12497
|
+
/**
|
|
12498
|
+
* DoctorsApi - axios parameter creator
|
|
12499
|
+
* @export
|
|
12500
|
+
*/
|
|
12501
|
+
export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
12113
12502
|
/**
|
|
12114
12503
|
*
|
|
12115
12504
|
* @summary Get DoctorCertificate.
|
|
@@ -12243,14 +12632,13 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12243
12632
|
* @param {string} [specialtyId]
|
|
12244
12633
|
* @param {string} [specialtyName]
|
|
12245
12634
|
* @param {string} [languageCode]
|
|
12246
|
-
* @param {boolean} [showHidden]
|
|
12247
12635
|
* @param {number} [page]
|
|
12248
12636
|
* @param {number} [limit]
|
|
12249
12637
|
* @param {Date} [lastRetrieved]
|
|
12250
12638
|
* @param {*} [options] Override http request option.
|
|
12251
12639
|
* @throws {RequiredError}
|
|
12252
12640
|
*/
|
|
12253
|
-
apiV2DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined,
|
|
12641
|
+
apiV2DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12254
12642
|
/**
|
|
12255
12643
|
*
|
|
12256
12644
|
* @summary Get DoctorSpecialty
|
|
@@ -12324,28 +12712,6 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
12324
12712
|
* @export
|
|
12325
12713
|
*/
|
|
12326
12714
|
export declare const DoctorsApiFp: (configuration?: Configuration | undefined) => {
|
|
12327
|
-
/**
|
|
12328
|
-
*
|
|
12329
|
-
* @summary Get all doctor affiliations.
|
|
12330
|
-
* @param {string} doctorId
|
|
12331
|
-
* @param {string} [hospitalName]
|
|
12332
|
-
* @param {string} [languageCode]
|
|
12333
|
-
* @param {number} [page]
|
|
12334
|
-
* @param {number} [limit]
|
|
12335
|
-
* @param {Date} [lastRetrieved]
|
|
12336
|
-
* @param {*} [options] Override http request option.
|
|
12337
|
-
* @throws {RequiredError}
|
|
12338
|
-
*/
|
|
12339
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
12340
|
-
/**
|
|
12341
|
-
*
|
|
12342
|
-
* @summary Get doctor affiliation.
|
|
12343
|
-
* @param {string} doctorId
|
|
12344
|
-
* @param {string} hospitalId
|
|
12345
|
-
* @param {*} [options] Override http request option.
|
|
12346
|
-
* @throws {RequiredError}
|
|
12347
|
-
*/
|
|
12348
|
-
apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
12349
12715
|
/**
|
|
12350
12716
|
*
|
|
12351
12717
|
* @summary Get DoctorCertificate.
|
|
@@ -12479,14 +12845,13 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
12479
12845
|
* @param {string} [specialtyId]
|
|
12480
12846
|
* @param {string} [specialtyName]
|
|
12481
12847
|
* @param {string} [languageCode]
|
|
12482
|
-
* @param {boolean} [showHidden]
|
|
12483
12848
|
* @param {number} [page]
|
|
12484
12849
|
* @param {number} [limit]
|
|
12485
12850
|
* @param {Date} [lastRetrieved]
|
|
12486
12851
|
* @param {*} [options] Override http request option.
|
|
12487
12852
|
* @throws {RequiredError}
|
|
12488
12853
|
*/
|
|
12489
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined,
|
|
12854
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
12490
12855
|
/**
|
|
12491
12856
|
*
|
|
12492
12857
|
* @summary Get DoctorSpecialty
|
|
@@ -12560,28 +12925,6 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
12560
12925
|
* @export
|
|
12561
12926
|
*/
|
|
12562
12927
|
export declare const DoctorsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
12563
|
-
/**
|
|
12564
|
-
*
|
|
12565
|
-
* @summary Get all doctor affiliations.
|
|
12566
|
-
* @param {string} doctorId
|
|
12567
|
-
* @param {string} [hospitalName]
|
|
12568
|
-
* @param {string} [languageCode]
|
|
12569
|
-
* @param {number} [page]
|
|
12570
|
-
* @param {number} [limit]
|
|
12571
|
-
* @param {Date} [lastRetrieved]
|
|
12572
|
-
* @param {*} [options] Override http request option.
|
|
12573
|
-
* @throws {RequiredError}
|
|
12574
|
-
*/
|
|
12575
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
|
|
12576
|
-
/**
|
|
12577
|
-
*
|
|
12578
|
-
* @summary Get doctor affiliation.
|
|
12579
|
-
* @param {string} doctorId
|
|
12580
|
-
* @param {string} hospitalId
|
|
12581
|
-
* @param {*} [options] Override http request option.
|
|
12582
|
-
* @throws {RequiredError}
|
|
12583
|
-
*/
|
|
12584
|
-
apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
|
|
12585
12928
|
/**
|
|
12586
12929
|
*
|
|
12587
12930
|
* @summary Get DoctorCertificate.
|
|
@@ -12715,14 +13058,13 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
12715
13058
|
* @param {string} [specialtyId]
|
|
12716
13059
|
* @param {string} [specialtyName]
|
|
12717
13060
|
* @param {string} [languageCode]
|
|
12718
|
-
* @param {boolean} [showHidden]
|
|
12719
13061
|
* @param {number} [page]
|
|
12720
13062
|
* @param {number} [limit]
|
|
12721
13063
|
* @param {Date} [lastRetrieved]
|
|
12722
13064
|
* @param {*} [options] Override http request option.
|
|
12723
13065
|
* @throws {RequiredError}
|
|
12724
13066
|
*/
|
|
12725
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined,
|
|
13067
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
|
|
12726
13068
|
/**
|
|
12727
13069
|
*
|
|
12728
13070
|
* @summary Get DoctorSpecialty
|
|
@@ -12798,30 +13140,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
12798
13140
|
* @extends {BaseAPI}
|
|
12799
13141
|
*/
|
|
12800
13142
|
export declare class DoctorsApi extends BaseAPI {
|
|
12801
|
-
/**
|
|
12802
|
-
*
|
|
12803
|
-
* @summary Get all doctor affiliations.
|
|
12804
|
-
* @param {string} doctorId
|
|
12805
|
-
* @param {string} [hospitalName]
|
|
12806
|
-
* @param {string} [languageCode]
|
|
12807
|
-
* @param {number} [page]
|
|
12808
|
-
* @param {number} [limit]
|
|
12809
|
-
* @param {Date} [lastRetrieved]
|
|
12810
|
-
* @param {*} [options] Override http request option.
|
|
12811
|
-
* @throws {RequiredError}
|
|
12812
|
-
* @memberof DoctorsApi
|
|
12813
|
-
*/
|
|
12814
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
12815
|
-
/**
|
|
12816
|
-
*
|
|
12817
|
-
* @summary Get doctor affiliation.
|
|
12818
|
-
* @param {string} doctorId
|
|
12819
|
-
* @param {string} hospitalId
|
|
12820
|
-
* @param {*} [options] Override http request option.
|
|
12821
|
-
* @throws {RequiredError}
|
|
12822
|
-
* @memberof DoctorsApi
|
|
12823
|
-
*/
|
|
12824
|
-
apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel, any>>;
|
|
12825
13143
|
/**
|
|
12826
13144
|
*
|
|
12827
13145
|
* @summary Get DoctorCertificate.
|
|
@@ -12966,7 +13284,6 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
12966
13284
|
* @param {string} [specialtyId]
|
|
12967
13285
|
* @param {string} [specialtyName]
|
|
12968
13286
|
* @param {string} [languageCode]
|
|
12969
|
-
* @param {boolean} [showHidden]
|
|
12970
13287
|
* @param {number} [page]
|
|
12971
13288
|
* @param {number} [limit]
|
|
12972
13289
|
* @param {Date} [lastRetrieved]
|
|
@@ -12974,7 +13291,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
12974
13291
|
* @throws {RequiredError}
|
|
12975
13292
|
* @memberof DoctorsApi
|
|
12976
13293
|
*/
|
|
12977
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string,
|
|
13294
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel, any>>;
|
|
12978
13295
|
/**
|
|
12979
13296
|
*
|
|
12980
13297
|
* @summary Get DoctorSpecialty
|