ch-admin-api-client-typescript 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 +566 -447
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +388 -276
- package/package.json +1 -1
- package/src/api.ts +753 -570
package/src/api.ts
CHANGED
|
@@ -474,6 +474,30 @@ export interface ArticleContributorModel {
|
|
|
474
474
|
* @memberof ArticleContributorModel
|
|
475
475
|
*/
|
|
476
476
|
'auditableEntity'?: AuditableEntity;
|
|
477
|
+
/**
|
|
478
|
+
*
|
|
479
|
+
* @type {string}
|
|
480
|
+
* @memberof ArticleContributorModel
|
|
481
|
+
*/
|
|
482
|
+
'contributorDescription'?: string | null;
|
|
483
|
+
/**
|
|
484
|
+
*
|
|
485
|
+
* @type {string}
|
|
486
|
+
* @memberof ArticleContributorModel
|
|
487
|
+
*/
|
|
488
|
+
'contributorOverview'?: string | null;
|
|
489
|
+
/**
|
|
490
|
+
*
|
|
491
|
+
* @type {string}
|
|
492
|
+
* @memberof ArticleContributorModel
|
|
493
|
+
*/
|
|
494
|
+
'contributorContent'?: string | null;
|
|
495
|
+
/**
|
|
496
|
+
*
|
|
497
|
+
* @type {Array<SnsHandle>}
|
|
498
|
+
* @memberof ArticleContributorModel
|
|
499
|
+
*/
|
|
500
|
+
'contributorSnsHandles'?: Array<SnsHandle> | null;
|
|
477
501
|
}
|
|
478
502
|
/**
|
|
479
503
|
*
|
|
@@ -554,6 +578,18 @@ export interface ArticleItemModel {
|
|
|
554
578
|
* @memberof ArticleItemModel
|
|
555
579
|
*/
|
|
556
580
|
'hospitalId'?: string;
|
|
581
|
+
/**
|
|
582
|
+
*
|
|
583
|
+
* @type {string}
|
|
584
|
+
* @memberof ArticleItemModel
|
|
585
|
+
*/
|
|
586
|
+
'hospitalName'?: string | null;
|
|
587
|
+
/**
|
|
588
|
+
*
|
|
589
|
+
* @type {string}
|
|
590
|
+
* @memberof ArticleItemModel
|
|
591
|
+
*/
|
|
592
|
+
'hospitalSlug'?: string | null;
|
|
557
593
|
/**
|
|
558
594
|
*
|
|
559
595
|
* @type {AuditableEntity}
|
|
@@ -621,6 +657,18 @@ export interface ArticleModel {
|
|
|
621
657
|
* @memberof ArticleModel
|
|
622
658
|
*/
|
|
623
659
|
'hospitalId'?: string;
|
|
660
|
+
/**
|
|
661
|
+
*
|
|
662
|
+
* @type {string}
|
|
663
|
+
* @memberof ArticleModel
|
|
664
|
+
*/
|
|
665
|
+
'hospitalName'?: string | null;
|
|
666
|
+
/**
|
|
667
|
+
*
|
|
668
|
+
* @type {string}
|
|
669
|
+
* @memberof ArticleModel
|
|
670
|
+
*/
|
|
671
|
+
'hospitalSlug'?: string | null;
|
|
624
672
|
/**
|
|
625
673
|
*
|
|
626
674
|
* @type {AuditableEntity}
|
|
@@ -881,6 +929,12 @@ export interface BookingItemModel {
|
|
|
881
929
|
* @memberof BookingItemModel
|
|
882
930
|
*/
|
|
883
931
|
'id'?: string;
|
|
932
|
+
/**
|
|
933
|
+
*
|
|
934
|
+
* @type {string}
|
|
935
|
+
* @memberof BookingItemModel
|
|
936
|
+
*/
|
|
937
|
+
'languageCode'?: string | null;
|
|
884
938
|
/**
|
|
885
939
|
*
|
|
886
940
|
* @type {string}
|
|
@@ -904,103 +958,103 @@ export interface BookingItemModel {
|
|
|
904
958
|
* @type {string}
|
|
905
959
|
* @memberof BookingItemModel
|
|
906
960
|
*/
|
|
907
|
-
'
|
|
961
|
+
'firstName'?: string | null;
|
|
908
962
|
/**
|
|
909
963
|
*
|
|
910
964
|
* @type {string}
|
|
911
965
|
* @memberof BookingItemModel
|
|
912
966
|
*/
|
|
913
|
-
'
|
|
967
|
+
'lastName'?: string | null;
|
|
914
968
|
/**
|
|
915
969
|
*
|
|
916
970
|
* @type {string}
|
|
917
971
|
* @memberof BookingItemModel
|
|
918
972
|
*/
|
|
919
|
-
'
|
|
973
|
+
'email'?: string | null;
|
|
920
974
|
/**
|
|
921
975
|
*
|
|
922
976
|
* @type {string}
|
|
923
977
|
* @memberof BookingItemModel
|
|
924
978
|
*/
|
|
925
|
-
'
|
|
979
|
+
'phone'?: string | null;
|
|
926
980
|
/**
|
|
927
981
|
*
|
|
928
|
-
* @type {
|
|
982
|
+
* @type {Date}
|
|
929
983
|
* @memberof BookingItemModel
|
|
930
984
|
*/
|
|
931
|
-
'
|
|
985
|
+
'dateOfBirth'?: Date | null;
|
|
932
986
|
/**
|
|
933
987
|
*
|
|
934
|
-
* @type {
|
|
988
|
+
* @type {Gender}
|
|
935
989
|
* @memberof BookingItemModel
|
|
936
990
|
*/
|
|
937
|
-
'
|
|
991
|
+
'gender'?: Gender;
|
|
938
992
|
/**
|
|
939
993
|
*
|
|
940
994
|
* @type {string}
|
|
941
995
|
* @memberof BookingItemModel
|
|
942
996
|
*/
|
|
943
|
-
'
|
|
997
|
+
'comment'?: string | null;
|
|
944
998
|
/**
|
|
945
999
|
*
|
|
946
1000
|
* @type {string}
|
|
947
1001
|
* @memberof BookingItemModel
|
|
948
1002
|
*/
|
|
949
|
-
'
|
|
1003
|
+
'hospitalId'?: string;
|
|
950
1004
|
/**
|
|
951
1005
|
*
|
|
952
|
-
* @type {
|
|
1006
|
+
* @type {string}
|
|
953
1007
|
* @memberof BookingItemModel
|
|
954
1008
|
*/
|
|
955
|
-
'
|
|
1009
|
+
'hospitalName'?: string | null;
|
|
956
1010
|
/**
|
|
957
1011
|
*
|
|
958
|
-
* @type {
|
|
1012
|
+
* @type {string}
|
|
959
1013
|
* @memberof BookingItemModel
|
|
960
1014
|
*/
|
|
961
|
-
'
|
|
1015
|
+
'hospitalSlug'?: string | null;
|
|
962
1016
|
/**
|
|
963
1017
|
*
|
|
964
1018
|
* @type {string}
|
|
965
1019
|
* @memberof BookingItemModel
|
|
966
1020
|
*/
|
|
967
|
-
'
|
|
1021
|
+
'hospitalTimeZone'?: string | null;
|
|
968
1022
|
/**
|
|
969
1023
|
*
|
|
970
1024
|
* @type {string}
|
|
971
1025
|
* @memberof BookingItemModel
|
|
972
1026
|
*/
|
|
973
|
-
'
|
|
1027
|
+
'dealId'?: string;
|
|
974
1028
|
/**
|
|
975
1029
|
*
|
|
976
1030
|
* @type {string}
|
|
977
1031
|
* @memberof BookingItemModel
|
|
978
1032
|
*/
|
|
979
|
-
'
|
|
1033
|
+
'dealName'?: string | null;
|
|
980
1034
|
/**
|
|
981
1035
|
*
|
|
982
1036
|
* @type {string}
|
|
983
1037
|
* @memberof BookingItemModel
|
|
984
1038
|
*/
|
|
985
|
-
'
|
|
1039
|
+
'dealSlug'?: string | null;
|
|
986
1040
|
/**
|
|
987
1041
|
*
|
|
988
|
-
* @type {
|
|
1042
|
+
* @type {string}
|
|
989
1043
|
* @memberof BookingItemModel
|
|
990
1044
|
*/
|
|
991
|
-
'
|
|
1045
|
+
'dealPackageId'?: string;
|
|
992
1046
|
/**
|
|
993
1047
|
*
|
|
994
|
-
* @type {
|
|
1048
|
+
* @type {RefundPolicy}
|
|
995
1049
|
* @memberof BookingItemModel
|
|
996
1050
|
*/
|
|
997
|
-
'
|
|
1051
|
+
'refundPolicy'?: RefundPolicy;
|
|
998
1052
|
/**
|
|
999
1053
|
*
|
|
1000
|
-
* @type {
|
|
1054
|
+
* @type {number}
|
|
1001
1055
|
* @memberof BookingItemModel
|
|
1002
1056
|
*/
|
|
1003
|
-
'
|
|
1057
|
+
'quantity'?: number;
|
|
1004
1058
|
/**
|
|
1005
1059
|
*
|
|
1006
1060
|
* @type {Date}
|
|
@@ -1085,12 +1139,6 @@ export interface BookingItemModel {
|
|
|
1085
1139
|
* @memberof BookingItemModel
|
|
1086
1140
|
*/
|
|
1087
1141
|
'isOpen'?: boolean;
|
|
1088
|
-
/**
|
|
1089
|
-
*
|
|
1090
|
-
* @type {number}
|
|
1091
|
-
* @memberof BookingItemModel
|
|
1092
|
-
*/
|
|
1093
|
-
'completionRate'?: number;
|
|
1094
1142
|
/**
|
|
1095
1143
|
*
|
|
1096
1144
|
* @type {boolean}
|
|
@@ -1110,6 +1158,12 @@ export interface BookingModel {
|
|
|
1110
1158
|
* @memberof BookingModel
|
|
1111
1159
|
*/
|
|
1112
1160
|
'id'?: string;
|
|
1161
|
+
/**
|
|
1162
|
+
*
|
|
1163
|
+
* @type {string}
|
|
1164
|
+
* @memberof BookingModel
|
|
1165
|
+
*/
|
|
1166
|
+
'languageCode'?: string | null;
|
|
1113
1167
|
/**
|
|
1114
1168
|
*
|
|
1115
1169
|
* @type {string}
|
|
@@ -1133,103 +1187,103 @@ export interface BookingModel {
|
|
|
1133
1187
|
* @type {string}
|
|
1134
1188
|
* @memberof BookingModel
|
|
1135
1189
|
*/
|
|
1136
|
-
'
|
|
1190
|
+
'firstName'?: string | null;
|
|
1137
1191
|
/**
|
|
1138
1192
|
*
|
|
1139
1193
|
* @type {string}
|
|
1140
1194
|
* @memberof BookingModel
|
|
1141
1195
|
*/
|
|
1142
|
-
'
|
|
1196
|
+
'lastName'?: string | null;
|
|
1143
1197
|
/**
|
|
1144
1198
|
*
|
|
1145
1199
|
* @type {string}
|
|
1146
1200
|
* @memberof BookingModel
|
|
1147
1201
|
*/
|
|
1148
|
-
'
|
|
1202
|
+
'email'?: string | null;
|
|
1149
1203
|
/**
|
|
1150
1204
|
*
|
|
1151
1205
|
* @type {string}
|
|
1152
1206
|
* @memberof BookingModel
|
|
1153
1207
|
*/
|
|
1154
|
-
'
|
|
1208
|
+
'phone'?: string | null;
|
|
1155
1209
|
/**
|
|
1156
1210
|
*
|
|
1157
|
-
* @type {
|
|
1211
|
+
* @type {Date}
|
|
1158
1212
|
* @memberof BookingModel
|
|
1159
1213
|
*/
|
|
1160
|
-
'
|
|
1214
|
+
'dateOfBirth'?: Date | null;
|
|
1161
1215
|
/**
|
|
1162
1216
|
*
|
|
1163
|
-
* @type {
|
|
1217
|
+
* @type {Gender}
|
|
1164
1218
|
* @memberof BookingModel
|
|
1165
1219
|
*/
|
|
1166
|
-
'
|
|
1220
|
+
'gender'?: Gender;
|
|
1167
1221
|
/**
|
|
1168
1222
|
*
|
|
1169
1223
|
* @type {string}
|
|
1170
1224
|
* @memberof BookingModel
|
|
1171
1225
|
*/
|
|
1172
|
-
'
|
|
1226
|
+
'comment'?: string | null;
|
|
1173
1227
|
/**
|
|
1174
1228
|
*
|
|
1175
1229
|
* @type {string}
|
|
1176
1230
|
* @memberof BookingModel
|
|
1177
1231
|
*/
|
|
1178
|
-
'
|
|
1232
|
+
'hospitalId'?: string;
|
|
1179
1233
|
/**
|
|
1180
1234
|
*
|
|
1181
|
-
* @type {
|
|
1235
|
+
* @type {string}
|
|
1182
1236
|
* @memberof BookingModel
|
|
1183
1237
|
*/
|
|
1184
|
-
'
|
|
1238
|
+
'hospitalName'?: string | null;
|
|
1185
1239
|
/**
|
|
1186
1240
|
*
|
|
1187
|
-
* @type {
|
|
1241
|
+
* @type {string}
|
|
1188
1242
|
* @memberof BookingModel
|
|
1189
1243
|
*/
|
|
1190
|
-
'
|
|
1244
|
+
'hospitalSlug'?: string | null;
|
|
1191
1245
|
/**
|
|
1192
1246
|
*
|
|
1193
1247
|
* @type {string}
|
|
1194
1248
|
* @memberof BookingModel
|
|
1195
1249
|
*/
|
|
1196
|
-
'
|
|
1250
|
+
'hospitalTimeZone'?: string | null;
|
|
1197
1251
|
/**
|
|
1198
1252
|
*
|
|
1199
1253
|
* @type {string}
|
|
1200
1254
|
* @memberof BookingModel
|
|
1201
1255
|
*/
|
|
1202
|
-
'
|
|
1256
|
+
'dealId'?: string;
|
|
1203
1257
|
/**
|
|
1204
1258
|
*
|
|
1205
1259
|
* @type {string}
|
|
1206
1260
|
* @memberof BookingModel
|
|
1207
1261
|
*/
|
|
1208
|
-
'
|
|
1262
|
+
'dealName'?: string | null;
|
|
1209
1263
|
/**
|
|
1210
1264
|
*
|
|
1211
1265
|
* @type {string}
|
|
1212
1266
|
* @memberof BookingModel
|
|
1213
1267
|
*/
|
|
1214
|
-
'
|
|
1268
|
+
'dealSlug'?: string | null;
|
|
1215
1269
|
/**
|
|
1216
1270
|
*
|
|
1217
|
-
* @type {
|
|
1271
|
+
* @type {string}
|
|
1218
1272
|
* @memberof BookingModel
|
|
1219
1273
|
*/
|
|
1220
|
-
'
|
|
1274
|
+
'dealPackageId'?: string;
|
|
1221
1275
|
/**
|
|
1222
1276
|
*
|
|
1223
|
-
* @type {
|
|
1277
|
+
* @type {RefundPolicy}
|
|
1224
1278
|
* @memberof BookingModel
|
|
1225
1279
|
*/
|
|
1226
|
-
'
|
|
1280
|
+
'refundPolicy'?: RefundPolicy;
|
|
1227
1281
|
/**
|
|
1228
1282
|
*
|
|
1229
|
-
* @type {
|
|
1283
|
+
* @type {number}
|
|
1230
1284
|
* @memberof BookingModel
|
|
1231
1285
|
*/
|
|
1232
|
-
'
|
|
1286
|
+
'quantity'?: number;
|
|
1233
1287
|
/**
|
|
1234
1288
|
*
|
|
1235
1289
|
* @type {Date}
|
|
@@ -1314,12 +1368,6 @@ export interface BookingModel {
|
|
|
1314
1368
|
* @memberof BookingModel
|
|
1315
1369
|
*/
|
|
1316
1370
|
'isOpen'?: boolean;
|
|
1317
|
-
/**
|
|
1318
|
-
*
|
|
1319
|
-
* @type {number}
|
|
1320
|
-
* @memberof BookingModel
|
|
1321
|
-
*/
|
|
1322
|
-
'completionRate'?: number;
|
|
1323
1371
|
/**
|
|
1324
1372
|
*
|
|
1325
1373
|
* @type {boolean}
|
|
@@ -2005,6 +2053,12 @@ export interface ConsultationItemModel {
|
|
|
2005
2053
|
* @memberof ConsultationItemModel
|
|
2006
2054
|
*/
|
|
2007
2055
|
'id'?: string;
|
|
2056
|
+
/**
|
|
2057
|
+
*
|
|
2058
|
+
* @type {string}
|
|
2059
|
+
* @memberof ConsultationItemModel
|
|
2060
|
+
*/
|
|
2061
|
+
'languageCode'?: string | null;
|
|
2008
2062
|
/**
|
|
2009
2063
|
*
|
|
2010
2064
|
* @type {ConsultationType}
|
|
@@ -2034,139 +2088,115 @@ export interface ConsultationItemModel {
|
|
|
2034
2088
|
* @type {string}
|
|
2035
2089
|
* @memberof ConsultationItemModel
|
|
2036
2090
|
*/
|
|
2037
|
-
'
|
|
2038
|
-
/**
|
|
2039
|
-
*
|
|
2040
|
-
* @type {string}
|
|
2041
|
-
* @memberof ConsultationItemModel
|
|
2042
|
-
*/
|
|
2043
|
-
'hospitalId'?: string;
|
|
2091
|
+
'firstName'?: string | null;
|
|
2044
2092
|
/**
|
|
2045
2093
|
*
|
|
2046
2094
|
* @type {string}
|
|
2047
2095
|
* @memberof ConsultationItemModel
|
|
2048
2096
|
*/
|
|
2049
|
-
'
|
|
2097
|
+
'lastName'?: string | null;
|
|
2050
2098
|
/**
|
|
2051
2099
|
*
|
|
2052
2100
|
* @type {string}
|
|
2053
2101
|
* @memberof ConsultationItemModel
|
|
2054
2102
|
*/
|
|
2055
|
-
'
|
|
2103
|
+
'email'?: string | null;
|
|
2056
2104
|
/**
|
|
2057
2105
|
*
|
|
2058
2106
|
* @type {string}
|
|
2059
2107
|
* @memberof ConsultationItemModel
|
|
2060
2108
|
*/
|
|
2061
|
-
'
|
|
2109
|
+
'phone'?: string | null;
|
|
2062
2110
|
/**
|
|
2063
2111
|
*
|
|
2064
|
-
* @type {
|
|
2112
|
+
* @type {Date}
|
|
2065
2113
|
* @memberof ConsultationItemModel
|
|
2066
2114
|
*/
|
|
2067
|
-
'
|
|
2115
|
+
'dateOfBirth'?: Date | null;
|
|
2068
2116
|
/**
|
|
2069
2117
|
*
|
|
2070
|
-
* @type {
|
|
2118
|
+
* @type {Gender}
|
|
2071
2119
|
* @memberof ConsultationItemModel
|
|
2072
2120
|
*/
|
|
2073
|
-
'
|
|
2121
|
+
'gender'?: Gender;
|
|
2074
2122
|
/**
|
|
2075
2123
|
*
|
|
2076
2124
|
* @type {string}
|
|
2077
2125
|
* @memberof ConsultationItemModel
|
|
2078
2126
|
*/
|
|
2079
|
-
'
|
|
2127
|
+
'comment'?: string | null;
|
|
2080
2128
|
/**
|
|
2081
2129
|
*
|
|
2082
2130
|
* @type {string}
|
|
2083
2131
|
* @memberof ConsultationItemModel
|
|
2084
2132
|
*/
|
|
2085
|
-
'
|
|
2133
|
+
'hospitalId'?: string;
|
|
2086
2134
|
/**
|
|
2087
2135
|
*
|
|
2088
2136
|
* @type {string}
|
|
2089
2137
|
* @memberof ConsultationItemModel
|
|
2090
2138
|
*/
|
|
2091
|
-
'
|
|
2139
|
+
'hospitalName'?: string | null;
|
|
2092
2140
|
/**
|
|
2093
2141
|
*
|
|
2094
2142
|
* @type {string}
|
|
2095
2143
|
* @memberof ConsultationItemModel
|
|
2096
2144
|
*/
|
|
2097
|
-
'
|
|
2145
|
+
'hospitalSlug'?: string | null;
|
|
2098
2146
|
/**
|
|
2099
2147
|
*
|
|
2100
2148
|
* @type {string}
|
|
2101
2149
|
* @memberof ConsultationItemModel
|
|
2102
2150
|
*/
|
|
2103
|
-
'
|
|
2151
|
+
'hospitalTimeZone'?: string | null;
|
|
2104
2152
|
/**
|
|
2105
2153
|
*
|
|
2106
2154
|
* @type {string}
|
|
2107
2155
|
* @memberof ConsultationItemModel
|
|
2108
2156
|
*/
|
|
2109
|
-
'
|
|
2157
|
+
'doctorId'?: string | null;
|
|
2110
2158
|
/**
|
|
2111
2159
|
*
|
|
2112
2160
|
* @type {string}
|
|
2113
2161
|
* @memberof ConsultationItemModel
|
|
2114
2162
|
*/
|
|
2115
|
-
'
|
|
2163
|
+
'doctorName'?: string | null;
|
|
2116
2164
|
/**
|
|
2117
2165
|
*
|
|
2118
2166
|
* @type {string}
|
|
2119
2167
|
* @memberof ConsultationItemModel
|
|
2120
2168
|
*/
|
|
2121
|
-
'
|
|
2122
|
-
/**
|
|
2123
|
-
*
|
|
2124
|
-
* @type {boolean}
|
|
2125
|
-
* @memberof ConsultationItemModel
|
|
2126
|
-
*/
|
|
2127
|
-
'isAccountHolder'?: boolean;
|
|
2169
|
+
'doctorSlug'?: string | null;
|
|
2128
2170
|
/**
|
|
2129
2171
|
*
|
|
2130
2172
|
* @type {string}
|
|
2131
2173
|
* @memberof ConsultationItemModel
|
|
2132
2174
|
*/
|
|
2133
|
-
'
|
|
2175
|
+
'dealId'?: string | null;
|
|
2134
2176
|
/**
|
|
2135
2177
|
*
|
|
2136
2178
|
* @type {string}
|
|
2137
2179
|
* @memberof ConsultationItemModel
|
|
2138
2180
|
*/
|
|
2139
|
-
'
|
|
2181
|
+
'dealName'?: string | null;
|
|
2140
2182
|
/**
|
|
2141
2183
|
*
|
|
2142
2184
|
* @type {string}
|
|
2143
2185
|
* @memberof ConsultationItemModel
|
|
2144
2186
|
*/
|
|
2145
|
-
'
|
|
2187
|
+
'dealSlug'?: string | null;
|
|
2146
2188
|
/**
|
|
2147
2189
|
*
|
|
2148
2190
|
* @type {string}
|
|
2149
2191
|
* @memberof ConsultationItemModel
|
|
2150
2192
|
*/
|
|
2151
|
-
'
|
|
2152
|
-
/**
|
|
2153
|
-
*
|
|
2154
|
-
* @type {Date}
|
|
2155
|
-
* @memberof ConsultationItemModel
|
|
2156
|
-
*/
|
|
2157
|
-
'dateOfBirth'?: Date | null;
|
|
2158
|
-
/**
|
|
2159
|
-
*
|
|
2160
|
-
* @type {Gender}
|
|
2161
|
-
* @memberof ConsultationItemModel
|
|
2162
|
-
*/
|
|
2163
|
-
'gender'?: Gender;
|
|
2193
|
+
'language'?: string | null;
|
|
2164
2194
|
/**
|
|
2165
2195
|
*
|
|
2166
|
-
* @type {
|
|
2196
|
+
* @type {boolean}
|
|
2167
2197
|
* @memberof ConsultationItemModel
|
|
2168
2198
|
*/
|
|
2169
|
-
'
|
|
2199
|
+
'isAccountHolder'?: boolean;
|
|
2170
2200
|
/**
|
|
2171
2201
|
*
|
|
2172
2202
|
* @type {string}
|
|
@@ -2197,18 +2227,6 @@ export interface ConsultationItemModel {
|
|
|
2197
2227
|
* @memberof ConsultationItemModel
|
|
2198
2228
|
*/
|
|
2199
2229
|
'confirmedDateEnd'?: Date | null;
|
|
2200
|
-
/**
|
|
2201
|
-
*
|
|
2202
|
-
* @type {string}
|
|
2203
|
-
* @memberof ConsultationItemModel
|
|
2204
|
-
*/
|
|
2205
|
-
'callerName'?: string | null;
|
|
2206
|
-
/**
|
|
2207
|
-
*
|
|
2208
|
-
* @type {string}
|
|
2209
|
-
* @memberof ConsultationItemModel
|
|
2210
|
-
*/
|
|
2211
|
-
'callerId'?: string | null;
|
|
2212
2230
|
/**
|
|
2213
2231
|
*
|
|
2214
2232
|
* @type {number}
|
|
@@ -2294,6 +2312,12 @@ export interface ConsultationModel {
|
|
|
2294
2312
|
* @memberof ConsultationModel
|
|
2295
2313
|
*/
|
|
2296
2314
|
'id'?: string;
|
|
2315
|
+
/**
|
|
2316
|
+
*
|
|
2317
|
+
* @type {string}
|
|
2318
|
+
* @memberof ConsultationModel
|
|
2319
|
+
*/
|
|
2320
|
+
'languageCode'?: string | null;
|
|
2297
2321
|
/**
|
|
2298
2322
|
*
|
|
2299
2323
|
* @type {ConsultationType}
|
|
@@ -2323,139 +2347,115 @@ export interface ConsultationModel {
|
|
|
2323
2347
|
* @type {string}
|
|
2324
2348
|
* @memberof ConsultationModel
|
|
2325
2349
|
*/
|
|
2326
|
-
'
|
|
2327
|
-
/**
|
|
2328
|
-
*
|
|
2329
|
-
* @type {string}
|
|
2330
|
-
* @memberof ConsultationModel
|
|
2331
|
-
*/
|
|
2332
|
-
'hospitalId'?: string;
|
|
2350
|
+
'firstName'?: string | null;
|
|
2333
2351
|
/**
|
|
2334
2352
|
*
|
|
2335
2353
|
* @type {string}
|
|
2336
2354
|
* @memberof ConsultationModel
|
|
2337
2355
|
*/
|
|
2338
|
-
'
|
|
2356
|
+
'lastName'?: string | null;
|
|
2339
2357
|
/**
|
|
2340
2358
|
*
|
|
2341
2359
|
* @type {string}
|
|
2342
2360
|
* @memberof ConsultationModel
|
|
2343
2361
|
*/
|
|
2344
|
-
'
|
|
2362
|
+
'email'?: string | null;
|
|
2345
2363
|
/**
|
|
2346
2364
|
*
|
|
2347
2365
|
* @type {string}
|
|
2348
2366
|
* @memberof ConsultationModel
|
|
2349
2367
|
*/
|
|
2350
|
-
'
|
|
2368
|
+
'phone'?: string | null;
|
|
2351
2369
|
/**
|
|
2352
2370
|
*
|
|
2353
|
-
* @type {
|
|
2371
|
+
* @type {Date}
|
|
2354
2372
|
* @memberof ConsultationModel
|
|
2355
2373
|
*/
|
|
2356
|
-
'
|
|
2374
|
+
'dateOfBirth'?: Date | null;
|
|
2357
2375
|
/**
|
|
2358
2376
|
*
|
|
2359
|
-
* @type {
|
|
2377
|
+
* @type {Gender}
|
|
2360
2378
|
* @memberof ConsultationModel
|
|
2361
2379
|
*/
|
|
2362
|
-
'
|
|
2380
|
+
'gender'?: Gender;
|
|
2363
2381
|
/**
|
|
2364
2382
|
*
|
|
2365
2383
|
* @type {string}
|
|
2366
2384
|
* @memberof ConsultationModel
|
|
2367
2385
|
*/
|
|
2368
|
-
'
|
|
2386
|
+
'comment'?: string | null;
|
|
2369
2387
|
/**
|
|
2370
2388
|
*
|
|
2371
2389
|
* @type {string}
|
|
2372
2390
|
* @memberof ConsultationModel
|
|
2373
2391
|
*/
|
|
2374
|
-
'
|
|
2392
|
+
'hospitalId'?: string;
|
|
2375
2393
|
/**
|
|
2376
2394
|
*
|
|
2377
2395
|
* @type {string}
|
|
2378
2396
|
* @memberof ConsultationModel
|
|
2379
2397
|
*/
|
|
2380
|
-
'
|
|
2398
|
+
'hospitalName'?: string | null;
|
|
2381
2399
|
/**
|
|
2382
2400
|
*
|
|
2383
2401
|
* @type {string}
|
|
2384
2402
|
* @memberof ConsultationModel
|
|
2385
2403
|
*/
|
|
2386
|
-
'
|
|
2404
|
+
'hospitalSlug'?: string | null;
|
|
2387
2405
|
/**
|
|
2388
2406
|
*
|
|
2389
2407
|
* @type {string}
|
|
2390
2408
|
* @memberof ConsultationModel
|
|
2391
2409
|
*/
|
|
2392
|
-
'
|
|
2410
|
+
'hospitalTimeZone'?: string | null;
|
|
2393
2411
|
/**
|
|
2394
2412
|
*
|
|
2395
2413
|
* @type {string}
|
|
2396
2414
|
* @memberof ConsultationModel
|
|
2397
2415
|
*/
|
|
2398
|
-
'
|
|
2416
|
+
'doctorId'?: string | null;
|
|
2399
2417
|
/**
|
|
2400
2418
|
*
|
|
2401
2419
|
* @type {string}
|
|
2402
2420
|
* @memberof ConsultationModel
|
|
2403
2421
|
*/
|
|
2404
|
-
'
|
|
2422
|
+
'doctorName'?: string | null;
|
|
2405
2423
|
/**
|
|
2406
2424
|
*
|
|
2407
2425
|
* @type {string}
|
|
2408
2426
|
* @memberof ConsultationModel
|
|
2409
2427
|
*/
|
|
2410
|
-
'
|
|
2411
|
-
/**
|
|
2412
|
-
*
|
|
2413
|
-
* @type {boolean}
|
|
2414
|
-
* @memberof ConsultationModel
|
|
2415
|
-
*/
|
|
2416
|
-
'isAccountHolder'?: boolean;
|
|
2428
|
+
'doctorSlug'?: string | null;
|
|
2417
2429
|
/**
|
|
2418
2430
|
*
|
|
2419
2431
|
* @type {string}
|
|
2420
2432
|
* @memberof ConsultationModel
|
|
2421
2433
|
*/
|
|
2422
|
-
'
|
|
2434
|
+
'dealId'?: string | null;
|
|
2423
2435
|
/**
|
|
2424
2436
|
*
|
|
2425
2437
|
* @type {string}
|
|
2426
2438
|
* @memberof ConsultationModel
|
|
2427
2439
|
*/
|
|
2428
|
-
'
|
|
2440
|
+
'dealName'?: string | null;
|
|
2429
2441
|
/**
|
|
2430
2442
|
*
|
|
2431
2443
|
* @type {string}
|
|
2432
2444
|
* @memberof ConsultationModel
|
|
2433
2445
|
*/
|
|
2434
|
-
'
|
|
2446
|
+
'dealSlug'?: string | null;
|
|
2435
2447
|
/**
|
|
2436
2448
|
*
|
|
2437
2449
|
* @type {string}
|
|
2438
2450
|
* @memberof ConsultationModel
|
|
2439
2451
|
*/
|
|
2440
|
-
'
|
|
2441
|
-
/**
|
|
2442
|
-
*
|
|
2443
|
-
* @type {Date}
|
|
2444
|
-
* @memberof ConsultationModel
|
|
2445
|
-
*/
|
|
2446
|
-
'dateOfBirth'?: Date | null;
|
|
2447
|
-
/**
|
|
2448
|
-
*
|
|
2449
|
-
* @type {Gender}
|
|
2450
|
-
* @memberof ConsultationModel
|
|
2451
|
-
*/
|
|
2452
|
-
'gender'?: Gender;
|
|
2452
|
+
'language'?: string | null;
|
|
2453
2453
|
/**
|
|
2454
2454
|
*
|
|
2455
|
-
* @type {
|
|
2455
|
+
* @type {boolean}
|
|
2456
2456
|
* @memberof ConsultationModel
|
|
2457
2457
|
*/
|
|
2458
|
-
'
|
|
2458
|
+
'isAccountHolder'?: boolean;
|
|
2459
2459
|
/**
|
|
2460
2460
|
*
|
|
2461
2461
|
* @type {string}
|
|
@@ -2486,18 +2486,6 @@ export interface ConsultationModel {
|
|
|
2486
2486
|
* @memberof ConsultationModel
|
|
2487
2487
|
*/
|
|
2488
2488
|
'confirmedDateEnd'?: Date | null;
|
|
2489
|
-
/**
|
|
2490
|
-
*
|
|
2491
|
-
* @type {string}
|
|
2492
|
-
* @memberof ConsultationModel
|
|
2493
|
-
*/
|
|
2494
|
-
'callerName'?: string | null;
|
|
2495
|
-
/**
|
|
2496
|
-
*
|
|
2497
|
-
* @type {string}
|
|
2498
|
-
* @memberof ConsultationModel
|
|
2499
|
-
*/
|
|
2500
|
-
'callerId'?: string | null;
|
|
2501
2489
|
/**
|
|
2502
2490
|
*
|
|
2503
2491
|
* @type {number}
|
|
@@ -5236,49 +5224,49 @@ export interface DealPackageItemModel {
|
|
|
5236
5224
|
* @type {string}
|
|
5237
5225
|
* @memberof DealPackageItemModel
|
|
5238
5226
|
*/
|
|
5239
|
-
'
|
|
5227
|
+
'languageCode'?: string | null;
|
|
5240
5228
|
/**
|
|
5241
5229
|
*
|
|
5242
5230
|
* @type {string}
|
|
5243
5231
|
* @memberof DealPackageItemModel
|
|
5244
5232
|
*/
|
|
5245
|
-
'
|
|
5233
|
+
'dealId'?: string;
|
|
5246
5234
|
/**
|
|
5247
5235
|
*
|
|
5248
5236
|
* @type {string}
|
|
5249
5237
|
* @memberof DealPackageItemModel
|
|
5250
5238
|
*/
|
|
5251
|
-
'
|
|
5239
|
+
'dealName'?: string | null;
|
|
5252
5240
|
/**
|
|
5253
5241
|
*
|
|
5254
5242
|
* @type {string}
|
|
5255
5243
|
* @memberof DealPackageItemModel
|
|
5256
5244
|
*/
|
|
5257
|
-
'
|
|
5245
|
+
'dealSlug'?: string | null;
|
|
5258
5246
|
/**
|
|
5259
5247
|
*
|
|
5260
|
-
* @type {
|
|
5248
|
+
* @type {string}
|
|
5261
5249
|
* @memberof DealPackageItemModel
|
|
5262
5250
|
*/
|
|
5263
|
-
'
|
|
5251
|
+
'hospitalId'?: string;
|
|
5264
5252
|
/**
|
|
5265
5253
|
*
|
|
5266
5254
|
* @type {string}
|
|
5267
5255
|
* @memberof DealPackageItemModel
|
|
5268
5256
|
*/
|
|
5269
|
-
'
|
|
5257
|
+
'hospitalName'?: string | null;
|
|
5270
5258
|
/**
|
|
5271
5259
|
*
|
|
5272
5260
|
* @type {string}
|
|
5273
5261
|
* @memberof DealPackageItemModel
|
|
5274
5262
|
*/
|
|
5275
|
-
'
|
|
5263
|
+
'hospitalSlug'?: string | null;
|
|
5276
5264
|
/**
|
|
5277
5265
|
*
|
|
5278
|
-
* @type {
|
|
5266
|
+
* @type {RefundPolicy}
|
|
5279
5267
|
* @memberof DealPackageItemModel
|
|
5280
5268
|
*/
|
|
5281
|
-
'
|
|
5269
|
+
'refundPolicy'?: RefundPolicy;
|
|
5282
5270
|
/**
|
|
5283
5271
|
*
|
|
5284
5272
|
* @type {string}
|
|
@@ -5315,49 +5303,49 @@ export interface DealPackageModel {
|
|
|
5315
5303
|
* @type {string}
|
|
5316
5304
|
* @memberof DealPackageModel
|
|
5317
5305
|
*/
|
|
5318
|
-
'
|
|
5306
|
+
'languageCode'?: string | null;
|
|
5319
5307
|
/**
|
|
5320
5308
|
*
|
|
5321
5309
|
* @type {string}
|
|
5322
5310
|
* @memberof DealPackageModel
|
|
5323
5311
|
*/
|
|
5324
|
-
'
|
|
5312
|
+
'dealId'?: string;
|
|
5325
5313
|
/**
|
|
5326
5314
|
*
|
|
5327
5315
|
* @type {string}
|
|
5328
5316
|
* @memberof DealPackageModel
|
|
5329
5317
|
*/
|
|
5330
|
-
'
|
|
5318
|
+
'dealName'?: string | null;
|
|
5331
5319
|
/**
|
|
5332
5320
|
*
|
|
5333
5321
|
* @type {string}
|
|
5334
5322
|
* @memberof DealPackageModel
|
|
5335
5323
|
*/
|
|
5336
|
-
'
|
|
5324
|
+
'dealSlug'?: string | null;
|
|
5337
5325
|
/**
|
|
5338
5326
|
*
|
|
5339
|
-
* @type {
|
|
5327
|
+
* @type {string}
|
|
5340
5328
|
* @memberof DealPackageModel
|
|
5341
5329
|
*/
|
|
5342
|
-
'
|
|
5330
|
+
'hospitalId'?: string;
|
|
5343
5331
|
/**
|
|
5344
5332
|
*
|
|
5345
5333
|
* @type {string}
|
|
5346
5334
|
* @memberof DealPackageModel
|
|
5347
5335
|
*/
|
|
5348
|
-
'
|
|
5336
|
+
'hospitalName'?: string | null;
|
|
5349
5337
|
/**
|
|
5350
5338
|
*
|
|
5351
5339
|
* @type {string}
|
|
5352
5340
|
* @memberof DealPackageModel
|
|
5353
5341
|
*/
|
|
5354
|
-
'
|
|
5342
|
+
'hospitalSlug'?: string | null;
|
|
5355
5343
|
/**
|
|
5356
5344
|
*
|
|
5357
|
-
* @type {
|
|
5345
|
+
* @type {RefundPolicy}
|
|
5358
5346
|
* @memberof DealPackageModel
|
|
5359
5347
|
*/
|
|
5360
|
-
'
|
|
5348
|
+
'refundPolicy'?: RefundPolicy;
|
|
5361
5349
|
/**
|
|
5362
5350
|
*
|
|
5363
5351
|
* @type {string}
|
|
@@ -5376,6 +5364,24 @@ export interface DealPackageModel {
|
|
|
5376
5364
|
* @memberof DealPackageModel
|
|
5377
5365
|
*/
|
|
5378
5366
|
'auditableEntity'?: AuditableEntity;
|
|
5367
|
+
/**
|
|
5368
|
+
*
|
|
5369
|
+
* @type {string}
|
|
5370
|
+
* @memberof DealPackageModel
|
|
5371
|
+
*/
|
|
5372
|
+
'additionalServices'?: string | null;
|
|
5373
|
+
/**
|
|
5374
|
+
*
|
|
5375
|
+
* @type {string}
|
|
5376
|
+
* @memberof DealPackageModel
|
|
5377
|
+
*/
|
|
5378
|
+
'accomodation'?: string | null;
|
|
5379
|
+
/**
|
|
5380
|
+
*
|
|
5381
|
+
* @type {string}
|
|
5382
|
+
* @memberof DealPackageModel
|
|
5383
|
+
*/
|
|
5384
|
+
'transfer'?: string | null;
|
|
5379
5385
|
}
|
|
5380
5386
|
/**
|
|
5381
5387
|
*
|
|
@@ -5402,6 +5408,12 @@ export interface DealPackagesModel {
|
|
|
5402
5408
|
* @interface DealServiceItemModel
|
|
5403
5409
|
*/
|
|
5404
5410
|
export interface DealServiceItemModel {
|
|
5411
|
+
/**
|
|
5412
|
+
*
|
|
5413
|
+
* @type {string}
|
|
5414
|
+
* @memberof DealServiceItemModel
|
|
5415
|
+
*/
|
|
5416
|
+
'languageCode'?: string | null;
|
|
5405
5417
|
/**
|
|
5406
5418
|
*
|
|
5407
5419
|
* @type {string}
|
|
@@ -5414,6 +5426,12 @@ export interface DealServiceItemModel {
|
|
|
5414
5426
|
* @memberof DealServiceItemModel
|
|
5415
5427
|
*/
|
|
5416
5428
|
'dealName'?: string | null;
|
|
5429
|
+
/**
|
|
5430
|
+
*
|
|
5431
|
+
* @type {string}
|
|
5432
|
+
* @memberof DealServiceItemModel
|
|
5433
|
+
*/
|
|
5434
|
+
'dealSlug'?: string | null;
|
|
5417
5435
|
/**
|
|
5418
5436
|
*
|
|
5419
5437
|
* @type {string}
|
|
@@ -5426,6 +5444,12 @@ export interface DealServiceItemModel {
|
|
|
5426
5444
|
* @memberof DealServiceItemModel
|
|
5427
5445
|
*/
|
|
5428
5446
|
'serviceName'?: string | null;
|
|
5447
|
+
/**
|
|
5448
|
+
*
|
|
5449
|
+
* @type {string}
|
|
5450
|
+
* @memberof DealServiceItemModel
|
|
5451
|
+
*/
|
|
5452
|
+
'serviceSlug'?: string | null;
|
|
5429
5453
|
/**
|
|
5430
5454
|
*
|
|
5431
5455
|
* @type {number}
|
|
@@ -5439,6 +5463,12 @@ export interface DealServiceItemModel {
|
|
|
5439
5463
|
* @interface DealServiceModel
|
|
5440
5464
|
*/
|
|
5441
5465
|
export interface DealServiceModel {
|
|
5466
|
+
/**
|
|
5467
|
+
*
|
|
5468
|
+
* @type {string}
|
|
5469
|
+
* @memberof DealServiceModel
|
|
5470
|
+
*/
|
|
5471
|
+
'languageCode'?: string | null;
|
|
5442
5472
|
/**
|
|
5443
5473
|
*
|
|
5444
5474
|
* @type {string}
|
|
@@ -5451,6 +5481,12 @@ export interface DealServiceModel {
|
|
|
5451
5481
|
* @memberof DealServiceModel
|
|
5452
5482
|
*/
|
|
5453
5483
|
'dealName'?: string | null;
|
|
5484
|
+
/**
|
|
5485
|
+
*
|
|
5486
|
+
* @type {string}
|
|
5487
|
+
* @memberof DealServiceModel
|
|
5488
|
+
*/
|
|
5489
|
+
'dealSlug'?: string | null;
|
|
5454
5490
|
/**
|
|
5455
5491
|
*
|
|
5456
5492
|
* @type {string}
|
|
@@ -5463,6 +5499,12 @@ export interface DealServiceModel {
|
|
|
5463
5499
|
* @memberof DealServiceModel
|
|
5464
5500
|
*/
|
|
5465
5501
|
'serviceName'?: string | null;
|
|
5502
|
+
/**
|
|
5503
|
+
*
|
|
5504
|
+
* @type {string}
|
|
5505
|
+
* @memberof DealServiceModel
|
|
5506
|
+
*/
|
|
5507
|
+
'serviceSlug'?: string | null;
|
|
5466
5508
|
/**
|
|
5467
5509
|
*
|
|
5468
5510
|
* @type {number}
|
|
@@ -5571,6 +5613,18 @@ export interface DoctorAffiliationItemModel {
|
|
|
5571
5613
|
* @memberof DoctorAffiliationItemModel
|
|
5572
5614
|
*/
|
|
5573
5615
|
'hospitalId'?: string;
|
|
5616
|
+
/**
|
|
5617
|
+
*
|
|
5618
|
+
* @type {string}
|
|
5619
|
+
* @memberof DoctorAffiliationItemModel
|
|
5620
|
+
*/
|
|
5621
|
+
'hospitalName'?: string | null;
|
|
5622
|
+
/**
|
|
5623
|
+
*
|
|
5624
|
+
* @type {string}
|
|
5625
|
+
* @memberof DoctorAffiliationItemModel
|
|
5626
|
+
*/
|
|
5627
|
+
'hospitalSlug'?: string | null;
|
|
5574
5628
|
/**
|
|
5575
5629
|
*
|
|
5576
5630
|
* @type {string}
|
|
@@ -5650,6 +5704,18 @@ export interface DoctorAffiliationModel {
|
|
|
5650
5704
|
* @memberof DoctorAffiliationModel
|
|
5651
5705
|
*/
|
|
5652
5706
|
'hospitalId'?: string;
|
|
5707
|
+
/**
|
|
5708
|
+
*
|
|
5709
|
+
* @type {string}
|
|
5710
|
+
* @memberof DoctorAffiliationModel
|
|
5711
|
+
*/
|
|
5712
|
+
'hospitalName'?: string | null;
|
|
5713
|
+
/**
|
|
5714
|
+
*
|
|
5715
|
+
* @type {string}
|
|
5716
|
+
* @memberof DoctorAffiliationModel
|
|
5717
|
+
*/
|
|
5718
|
+
'hospitalSlug'?: string | null;
|
|
5653
5719
|
/**
|
|
5654
5720
|
*
|
|
5655
5721
|
* @type {string}
|
|
@@ -5728,18 +5794,6 @@ export interface DoctorAffiliationModel {
|
|
|
5728
5794
|
* @memberof DoctorAffiliationModel
|
|
5729
5795
|
*/
|
|
5730
5796
|
'content'?: string | null;
|
|
5731
|
-
/**
|
|
5732
|
-
*
|
|
5733
|
-
* @type {string}
|
|
5734
|
-
* @memberof DoctorAffiliationModel
|
|
5735
|
-
*/
|
|
5736
|
-
'hospitalName'?: string | null;
|
|
5737
|
-
/**
|
|
5738
|
-
*
|
|
5739
|
-
* @type {string}
|
|
5740
|
-
* @memberof DoctorAffiliationModel
|
|
5741
|
-
*/
|
|
5742
|
-
'hospitalSlug'?: string | null;
|
|
5743
5797
|
/**
|
|
5744
5798
|
*
|
|
5745
5799
|
* @type {string}
|
|
@@ -5758,12 +5812,6 @@ export interface DoctorAffiliationModel {
|
|
|
5758
5812
|
* @memberof DoctorAffiliationModel
|
|
5759
5813
|
*/
|
|
5760
5814
|
'customStyle'?: string | null;
|
|
5761
|
-
/**
|
|
5762
|
-
*
|
|
5763
|
-
* @type {Array<LocalizedUrlModel>}
|
|
5764
|
-
* @memberof DoctorAffiliationModel
|
|
5765
|
-
*/
|
|
5766
|
-
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
5767
5815
|
/**
|
|
5768
5816
|
*
|
|
5769
5817
|
* @type {Array<MediaModel>}
|
|
@@ -6628,6 +6676,12 @@ export interface DoctorSpecialtiesModel {
|
|
|
6628
6676
|
* @interface DoctorSpecialtyModel
|
|
6629
6677
|
*/
|
|
6630
6678
|
export interface DoctorSpecialtyModel {
|
|
6679
|
+
/**
|
|
6680
|
+
*
|
|
6681
|
+
* @type {string}
|
|
6682
|
+
* @memberof DoctorSpecialtyModel
|
|
6683
|
+
*/
|
|
6684
|
+
'languageCode'?: string | null;
|
|
6631
6685
|
/**
|
|
6632
6686
|
*
|
|
6633
6687
|
* @type {string}
|
|
@@ -6664,18 +6718,6 @@ export interface DoctorSpecialtyModel {
|
|
|
6664
6718
|
* @memberof DoctorSpecialtyModel
|
|
6665
6719
|
*/
|
|
6666
6720
|
'order'?: number;
|
|
6667
|
-
/**
|
|
6668
|
-
*
|
|
6669
|
-
* @type {string}
|
|
6670
|
-
* @memberof DoctorSpecialtyModel
|
|
6671
|
-
*/
|
|
6672
|
-
'doctorId'?: string;
|
|
6673
|
-
/**
|
|
6674
|
-
*
|
|
6675
|
-
* @type {string}
|
|
6676
|
-
* @memberof DoctorSpecialtyModel
|
|
6677
|
-
*/
|
|
6678
|
-
'doctorName'?: string | null;
|
|
6679
6721
|
}
|
|
6680
6722
|
/**
|
|
6681
6723
|
*
|
|
@@ -8701,6 +8743,12 @@ export interface LocationModel {
|
|
|
8701
8743
|
* @interface ManagerAffiliationItemModel
|
|
8702
8744
|
*/
|
|
8703
8745
|
export interface ManagerAffiliationItemModel {
|
|
8746
|
+
/**
|
|
8747
|
+
*
|
|
8748
|
+
* @type {string}
|
|
8749
|
+
* @memberof ManagerAffiliationItemModel
|
|
8750
|
+
*/
|
|
8751
|
+
'languageCode'?: string | null;
|
|
8704
8752
|
/**
|
|
8705
8753
|
*
|
|
8706
8754
|
* @type {string}
|
|
@@ -8726,6 +8774,12 @@ export interface ManagerAffiliationItemModel {
|
|
|
8726
8774
|
* @interface ManagerAffiliationModel
|
|
8727
8775
|
*/
|
|
8728
8776
|
export interface ManagerAffiliationModel {
|
|
8777
|
+
/**
|
|
8778
|
+
*
|
|
8779
|
+
* @type {string}
|
|
8780
|
+
* @memberof ManagerAffiliationModel
|
|
8781
|
+
*/
|
|
8782
|
+
'languageCode'?: string | null;
|
|
8729
8783
|
/**
|
|
8730
8784
|
*
|
|
8731
8785
|
* @type {string}
|
|
@@ -8854,36 +8908,6 @@ export interface ManagerItemModel {
|
|
|
8854
8908
|
* @memberof ManagerItemModel
|
|
8855
8909
|
*/
|
|
8856
8910
|
'auditableEntity'?: AuditableEntity;
|
|
8857
|
-
/**
|
|
8858
|
-
*
|
|
8859
|
-
* @type {string}
|
|
8860
|
-
* @memberof ManagerItemModel
|
|
8861
|
-
*/
|
|
8862
|
-
'userType'?: string | null;
|
|
8863
|
-
/**
|
|
8864
|
-
*
|
|
8865
|
-
* @type {Array<UserLanguageModel>}
|
|
8866
|
-
* @memberof ManagerItemModel
|
|
8867
|
-
*/
|
|
8868
|
-
'languages'?: Array<UserLanguageModel> | null;
|
|
8869
|
-
/**
|
|
8870
|
-
*
|
|
8871
|
-
* @type {Array<UserLocationModel>}
|
|
8872
|
-
* @memberof ManagerItemModel
|
|
8873
|
-
*/
|
|
8874
|
-
'locations'?: Array<UserLocationModel> | null;
|
|
8875
|
-
/**
|
|
8876
|
-
*
|
|
8877
|
-
* @type {string}
|
|
8878
|
-
* @memberof ManagerItemModel
|
|
8879
|
-
*/
|
|
8880
|
-
'hospitalId'?: string | null;
|
|
8881
|
-
/**
|
|
8882
|
-
*
|
|
8883
|
-
* @type {string}
|
|
8884
|
-
* @memberof ManagerItemModel
|
|
8885
|
-
*/
|
|
8886
|
-
'hospitalName'?: string | null;
|
|
8887
8911
|
/**
|
|
8888
8912
|
*
|
|
8889
8913
|
* @type {number}
|
|
@@ -8999,18 +9023,6 @@ export interface ManagerModel {
|
|
|
8999
9023
|
* @memberof ManagerModel
|
|
9000
9024
|
*/
|
|
9001
9025
|
'locations'?: Array<UserLocationModel> | null;
|
|
9002
|
-
/**
|
|
9003
|
-
*
|
|
9004
|
-
* @type {string}
|
|
9005
|
-
* @memberof ManagerModel
|
|
9006
|
-
*/
|
|
9007
|
-
'hospitalId'?: string | null;
|
|
9008
|
-
/**
|
|
9009
|
-
*
|
|
9010
|
-
* @type {string}
|
|
9011
|
-
* @memberof ManagerModel
|
|
9012
|
-
*/
|
|
9013
|
-
'hospitalName'?: string | null;
|
|
9014
9026
|
/**
|
|
9015
9027
|
*
|
|
9016
9028
|
* @type {number}
|
|
@@ -10293,6 +10305,12 @@ export interface ServiceReviewItemModel {
|
|
|
10293
10305
|
* @memberof ServiceReviewItemModel
|
|
10294
10306
|
*/
|
|
10295
10307
|
'id'?: string;
|
|
10308
|
+
/**
|
|
10309
|
+
*
|
|
10310
|
+
* @type {string}
|
|
10311
|
+
* @memberof ServiceReviewItemModel
|
|
10312
|
+
*/
|
|
10313
|
+
'languageCode'?: string | null;
|
|
10296
10314
|
/**
|
|
10297
10315
|
*
|
|
10298
10316
|
* @type {string}
|
|
@@ -10305,6 +10323,12 @@ export interface ServiceReviewItemModel {
|
|
|
10305
10323
|
* @memberof ServiceReviewItemModel
|
|
10306
10324
|
*/
|
|
10307
10325
|
'serviceName'?: string | null;
|
|
10326
|
+
/**
|
|
10327
|
+
*
|
|
10328
|
+
* @type {string}
|
|
10329
|
+
* @memberof ServiceReviewItemModel
|
|
10330
|
+
*/
|
|
10331
|
+
'serviceSlug'?: string | null;
|
|
10308
10332
|
/**
|
|
10309
10333
|
*
|
|
10310
10334
|
* @type {string}
|
|
@@ -10335,12 +10359,6 @@ export interface ServiceReviewItemModel {
|
|
|
10335
10359
|
* @memberof ServiceReviewItemModel
|
|
10336
10360
|
*/
|
|
10337
10361
|
'reviewType'?: ReviewType;
|
|
10338
|
-
/**
|
|
10339
|
-
*
|
|
10340
|
-
* @type {string}
|
|
10341
|
-
* @memberof ServiceReviewItemModel
|
|
10342
|
-
*/
|
|
10343
|
-
'body'?: string | null;
|
|
10344
10362
|
/**
|
|
10345
10363
|
*
|
|
10346
10364
|
* @type {Array<MediaModel>}
|
|
@@ -10366,6 +10384,12 @@ export interface ServiceReviewModel {
|
|
|
10366
10384
|
* @memberof ServiceReviewModel
|
|
10367
10385
|
*/
|
|
10368
10386
|
'id'?: string;
|
|
10387
|
+
/**
|
|
10388
|
+
*
|
|
10389
|
+
* @type {string}
|
|
10390
|
+
* @memberof ServiceReviewModel
|
|
10391
|
+
*/
|
|
10392
|
+
'languageCode'?: string | null;
|
|
10369
10393
|
/**
|
|
10370
10394
|
*
|
|
10371
10395
|
* @type {string}
|
|
@@ -10378,6 +10402,12 @@ export interface ServiceReviewModel {
|
|
|
10378
10402
|
* @memberof ServiceReviewModel
|
|
10379
10403
|
*/
|
|
10380
10404
|
'serviceName'?: string | null;
|
|
10405
|
+
/**
|
|
10406
|
+
*
|
|
10407
|
+
* @type {string}
|
|
10408
|
+
* @memberof ServiceReviewModel
|
|
10409
|
+
*/
|
|
10410
|
+
'serviceSlug'?: string | null;
|
|
10381
10411
|
/**
|
|
10382
10412
|
*
|
|
10383
10413
|
* @type {string}
|
|
@@ -10408,12 +10438,6 @@ export interface ServiceReviewModel {
|
|
|
10408
10438
|
* @memberof ServiceReviewModel
|
|
10409
10439
|
*/
|
|
10410
10440
|
'reviewType'?: ReviewType;
|
|
10411
|
-
/**
|
|
10412
|
-
*
|
|
10413
|
-
* @type {string}
|
|
10414
|
-
* @memberof ServiceReviewModel
|
|
10415
|
-
*/
|
|
10416
|
-
'body'?: string | null;
|
|
10417
10441
|
/**
|
|
10418
10442
|
*
|
|
10419
10443
|
* @type {Array<MediaModel>}
|
|
@@ -10426,6 +10450,12 @@ export interface ServiceReviewModel {
|
|
|
10426
10450
|
* @memberof ServiceReviewModel
|
|
10427
10451
|
*/
|
|
10428
10452
|
'auditableEntity'?: AuditableEntity;
|
|
10453
|
+
/**
|
|
10454
|
+
*
|
|
10455
|
+
* @type {string}
|
|
10456
|
+
* @memberof ServiceReviewModel
|
|
10457
|
+
*/
|
|
10458
|
+
'body'?: string | null;
|
|
10429
10459
|
}
|
|
10430
10460
|
/**
|
|
10431
10461
|
*
|
|
@@ -10446,6 +10476,31 @@ export interface ServiceReviewsModel {
|
|
|
10446
10476
|
*/
|
|
10447
10477
|
'metaData'?: PagedListMetaData;
|
|
10448
10478
|
}
|
|
10479
|
+
/**
|
|
10480
|
+
*
|
|
10481
|
+
* @export
|
|
10482
|
+
* @interface SnsHandle
|
|
10483
|
+
*/
|
|
10484
|
+
export interface SnsHandle {
|
|
10485
|
+
/**
|
|
10486
|
+
*
|
|
10487
|
+
* @type {string}
|
|
10488
|
+
* @memberof SnsHandle
|
|
10489
|
+
*/
|
|
10490
|
+
'id'?: string;
|
|
10491
|
+
/**
|
|
10492
|
+
*
|
|
10493
|
+
* @type {SnsType}
|
|
10494
|
+
* @memberof SnsHandle
|
|
10495
|
+
*/
|
|
10496
|
+
'snsType'?: SnsType;
|
|
10497
|
+
/**
|
|
10498
|
+
*
|
|
10499
|
+
* @type {string}
|
|
10500
|
+
* @memberof SnsHandle
|
|
10501
|
+
*/
|
|
10502
|
+
'handle'?: string | null;
|
|
10503
|
+
}
|
|
10449
10504
|
/**
|
|
10450
10505
|
*
|
|
10451
10506
|
* @export
|
|
@@ -13707,16 +13762,17 @@ export const AboutUsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
13707
13762
|
* @param {string} [hospitalName]
|
|
13708
13763
|
* @param {string} [hospitalSlug]
|
|
13709
13764
|
* @param {string} [name]
|
|
13710
|
-
* @param {string} [languageCode]
|
|
13711
13765
|
* @param {boolean} [returnDefaultValue]
|
|
13712
13766
|
* @param {boolean} [confirmed]
|
|
13767
|
+
* @param {string} [languageCode]
|
|
13768
|
+
* @param {boolean} [showHidden]
|
|
13713
13769
|
* @param {number} [page]
|
|
13714
13770
|
* @param {number} [limit]
|
|
13715
13771
|
* @param {Date} [lastRetrieved]
|
|
13716
13772
|
* @param {*} [options] Override http request option.
|
|
13717
13773
|
* @throws {RequiredError}
|
|
13718
13774
|
*/
|
|
13719
|
-
apiV1AboutusGet: async (hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string,
|
|
13775
|
+
apiV1AboutusGet: async (hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, returnDefaultValue?: boolean, confirmed?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
13720
13776
|
const localVarPath = `/api/v1/aboutus`;
|
|
13721
13777
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
13722
13778
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -13749,10 +13805,6 @@ export const AboutUsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
13749
13805
|
localVarQueryParameter['Name'] = name;
|
|
13750
13806
|
}
|
|
13751
13807
|
|
|
13752
|
-
if (languageCode !== undefined) {
|
|
13753
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
13754
|
-
}
|
|
13755
|
-
|
|
13756
13808
|
if (returnDefaultValue !== undefined) {
|
|
13757
13809
|
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
13758
13810
|
}
|
|
@@ -13761,6 +13813,14 @@ export const AboutUsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
13761
13813
|
localVarQueryParameter['Confirmed'] = confirmed;
|
|
13762
13814
|
}
|
|
13763
13815
|
|
|
13816
|
+
if (languageCode !== undefined) {
|
|
13817
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
13818
|
+
}
|
|
13819
|
+
|
|
13820
|
+
if (showHidden !== undefined) {
|
|
13821
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
13822
|
+
}
|
|
13823
|
+
|
|
13764
13824
|
if (page !== undefined) {
|
|
13765
13825
|
localVarQueryParameter['page'] = page;
|
|
13766
13826
|
}
|
|
@@ -14016,17 +14076,18 @@ export const AboutUsApiFp = function(configuration?: Configuration) {
|
|
|
14016
14076
|
* @param {string} [hospitalName]
|
|
14017
14077
|
* @param {string} [hospitalSlug]
|
|
14018
14078
|
* @param {string} [name]
|
|
14019
|
-
* @param {string} [languageCode]
|
|
14020
14079
|
* @param {boolean} [returnDefaultValue]
|
|
14021
14080
|
* @param {boolean} [confirmed]
|
|
14081
|
+
* @param {string} [languageCode]
|
|
14082
|
+
* @param {boolean} [showHidden]
|
|
14022
14083
|
* @param {number} [page]
|
|
14023
14084
|
* @param {number} [limit]
|
|
14024
14085
|
* @param {Date} [lastRetrieved]
|
|
14025
14086
|
* @param {*} [options] Override http request option.
|
|
14026
14087
|
* @throws {RequiredError}
|
|
14027
14088
|
*/
|
|
14028
|
-
async apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string,
|
|
14029
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name,
|
|
14089
|
+
async apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, returnDefaultValue?: boolean, confirmed?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AboutUsPagesModel>> {
|
|
14090
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
14030
14091
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
14031
14092
|
},
|
|
14032
14093
|
/**
|
|
@@ -14105,17 +14166,18 @@ export const AboutUsApiFactory = function (configuration?: Configuration, basePa
|
|
|
14105
14166
|
* @param {string} [hospitalName]
|
|
14106
14167
|
* @param {string} [hospitalSlug]
|
|
14107
14168
|
* @param {string} [name]
|
|
14108
|
-
* @param {string} [languageCode]
|
|
14109
14169
|
* @param {boolean} [returnDefaultValue]
|
|
14110
14170
|
* @param {boolean} [confirmed]
|
|
14171
|
+
* @param {string} [languageCode]
|
|
14172
|
+
* @param {boolean} [showHidden]
|
|
14111
14173
|
* @param {number} [page]
|
|
14112
14174
|
* @param {number} [limit]
|
|
14113
14175
|
* @param {Date} [lastRetrieved]
|
|
14114
14176
|
* @param {*} [options] Override http request option.
|
|
14115
14177
|
* @throws {RequiredError}
|
|
14116
14178
|
*/
|
|
14117
|
-
apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string,
|
|
14118
|
-
return localVarFp.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name,
|
|
14179
|
+
apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, returnDefaultValue?: boolean, confirmed?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AboutUsPagesModel> {
|
|
14180
|
+
return localVarFp.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
14119
14181
|
},
|
|
14120
14182
|
/**
|
|
14121
14183
|
*
|
|
@@ -14188,9 +14250,10 @@ export class AboutUsApi extends BaseAPI {
|
|
|
14188
14250
|
* @param {string} [hospitalName]
|
|
14189
14251
|
* @param {string} [hospitalSlug]
|
|
14190
14252
|
* @param {string} [name]
|
|
14191
|
-
* @param {string} [languageCode]
|
|
14192
14253
|
* @param {boolean} [returnDefaultValue]
|
|
14193
14254
|
* @param {boolean} [confirmed]
|
|
14255
|
+
* @param {string} [languageCode]
|
|
14256
|
+
* @param {boolean} [showHidden]
|
|
14194
14257
|
* @param {number} [page]
|
|
14195
14258
|
* @param {number} [limit]
|
|
14196
14259
|
* @param {Date} [lastRetrieved]
|
|
@@ -14198,8 +14261,8 @@ export class AboutUsApi extends BaseAPI {
|
|
|
14198
14261
|
* @throws {RequiredError}
|
|
14199
14262
|
* @memberof AboutUsApi
|
|
14200
14263
|
*/
|
|
14201
|
-
public apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string,
|
|
14202
|
-
return AboutUsApiFp(this.configuration).apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name,
|
|
14264
|
+
public apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, returnDefaultValue?: boolean, confirmed?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
14265
|
+
return AboutUsApiFp(this.configuration).apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
14203
14266
|
}
|
|
14204
14267
|
|
|
14205
14268
|
/**
|
|
@@ -15785,14 +15848,13 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
15785
15848
|
* @param {string} [contributorId]
|
|
15786
15849
|
* @param {string} [languageCode]
|
|
15787
15850
|
* @param {boolean} [showHidden]
|
|
15788
|
-
* @param {boolean} [returnDefaultValue]
|
|
15789
15851
|
* @param {number} [page]
|
|
15790
15852
|
* @param {number} [limit]
|
|
15791
15853
|
* @param {Date} [lastRetrieved]
|
|
15792
15854
|
* @param {*} [options] Override http request option.
|
|
15793
15855
|
* @throws {RequiredError}
|
|
15794
15856
|
*/
|
|
15795
|
-
apiV1ArticlesGet: async (id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean,
|
|
15857
|
+
apiV1ArticlesGet: async (id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15796
15858
|
const localVarPath = `/api/v1/articles`;
|
|
15797
15859
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15798
15860
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -15873,10 +15935,6 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
15873
15935
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
15874
15936
|
}
|
|
15875
15937
|
|
|
15876
|
-
if (returnDefaultValue !== undefined) {
|
|
15877
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
15878
|
-
}
|
|
15879
|
-
|
|
15880
15938
|
if (page !== undefined) {
|
|
15881
15939
|
localVarQueryParameter['page'] = page;
|
|
15882
15940
|
}
|
|
@@ -16304,15 +16362,14 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
|
|
|
16304
16362
|
* @param {string} [contributorId]
|
|
16305
16363
|
* @param {string} [languageCode]
|
|
16306
16364
|
* @param {boolean} [showHidden]
|
|
16307
|
-
* @param {boolean} [returnDefaultValue]
|
|
16308
16365
|
* @param {number} [page]
|
|
16309
16366
|
* @param {number} [limit]
|
|
16310
16367
|
* @param {Date} [lastRetrieved]
|
|
16311
16368
|
* @param {*} [options] Override http request option.
|
|
16312
16369
|
* @throws {RequiredError}
|
|
16313
16370
|
*/
|
|
16314
|
-
async apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean,
|
|
16315
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden,
|
|
16371
|
+
async apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticlesModel>> {
|
|
16372
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
16316
16373
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16317
16374
|
},
|
|
16318
16375
|
/**
|
|
@@ -16633,15 +16690,14 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
|
|
|
16633
16690
|
* @param {string} [contributorId]
|
|
16634
16691
|
* @param {string} [languageCode]
|
|
16635
16692
|
* @param {boolean} [showHidden]
|
|
16636
|
-
* @param {boolean} [returnDefaultValue]
|
|
16637
16693
|
* @param {number} [page]
|
|
16638
16694
|
* @param {number} [limit]
|
|
16639
16695
|
* @param {Date} [lastRetrieved]
|
|
16640
16696
|
* @param {*} [options] Override http request option.
|
|
16641
16697
|
* @throws {RequiredError}
|
|
16642
16698
|
*/
|
|
16643
|
-
apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean,
|
|
16644
|
-
return localVarFp.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden,
|
|
16699
|
+
apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ArticlesModel> {
|
|
16700
|
+
return localVarFp.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
16645
16701
|
},
|
|
16646
16702
|
/**
|
|
16647
16703
|
*
|
|
@@ -17003,7 +17059,6 @@ export class ArticlesApi extends BaseAPI {
|
|
|
17003
17059
|
* @param {string} [contributorId]
|
|
17004
17060
|
* @param {string} [languageCode]
|
|
17005
17061
|
* @param {boolean} [showHidden]
|
|
17006
|
-
* @param {boolean} [returnDefaultValue]
|
|
17007
17062
|
* @param {number} [page]
|
|
17008
17063
|
* @param {number} [limit]
|
|
17009
17064
|
* @param {Date} [lastRetrieved]
|
|
@@ -17011,8 +17066,8 @@ export class ArticlesApi extends BaseAPI {
|
|
|
17011
17066
|
* @throws {RequiredError}
|
|
17012
17067
|
* @memberof ArticlesApi
|
|
17013
17068
|
*/
|
|
17014
|
-
public apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean,
|
|
17015
|
-
return ArticlesApiFp(this.configuration).apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden,
|
|
17069
|
+
public apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
17070
|
+
return ArticlesApiFp(this.configuration).apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
17016
17071
|
}
|
|
17017
17072
|
|
|
17018
17073
|
/**
|
|
@@ -17171,10 +17226,11 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
17171
17226
|
*
|
|
17172
17227
|
* @summary Get booking.
|
|
17173
17228
|
* @param {string} bookingId
|
|
17229
|
+
* @param {string} [languageCode]
|
|
17174
17230
|
* @param {*} [options] Override http request option.
|
|
17175
17231
|
* @throws {RequiredError}
|
|
17176
17232
|
*/
|
|
17177
|
-
apiV1BookingsBookingIdGet: async (bookingId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
17233
|
+
apiV1BookingsBookingIdGet: async (bookingId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
17178
17234
|
// verify required parameter 'bookingId' is not null or undefined
|
|
17179
17235
|
assertParamExists('apiV1BookingsBookingIdGet', 'bookingId', bookingId)
|
|
17180
17236
|
const localVarPath = `/api/v1/bookings/{bookingId}`
|
|
@@ -17194,6 +17250,10 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
17194
17250
|
// oauth required
|
|
17195
17251
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
17196
17252
|
|
|
17253
|
+
if (languageCode !== undefined) {
|
|
17254
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
17255
|
+
}
|
|
17256
|
+
|
|
17197
17257
|
|
|
17198
17258
|
|
|
17199
17259
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -17288,7 +17348,12 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
17288
17348
|
/**
|
|
17289
17349
|
*
|
|
17290
17350
|
* @summary Get all bookings.
|
|
17291
|
-
* @param {string} [
|
|
17351
|
+
* @param {string} [userId]
|
|
17352
|
+
* @param {string} [userName]
|
|
17353
|
+
* @param {string} [hospitalId]
|
|
17354
|
+
* @param {string} [hospitalName]
|
|
17355
|
+
* @param {string} [dealId]
|
|
17356
|
+
* @param {string} [dealName]
|
|
17292
17357
|
* @param {boolean} [isOpen]
|
|
17293
17358
|
* @param {boolean} [isCompleted]
|
|
17294
17359
|
* @param {BookingStatus} [status]
|
|
@@ -17297,13 +17362,15 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
17297
17362
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
17298
17363
|
* @param {boolean} [isExternal]
|
|
17299
17364
|
* @param {boolean} [paymentEnabled]
|
|
17365
|
+
* @param {string} [languageCode]
|
|
17366
|
+
* @param {boolean} [showHidden]
|
|
17300
17367
|
* @param {number} [page]
|
|
17301
17368
|
* @param {number} [limit]
|
|
17302
17369
|
* @param {Date} [lastRetrieved]
|
|
17303
17370
|
* @param {*} [options] Override http request option.
|
|
17304
17371
|
* @throws {RequiredError}
|
|
17305
17372
|
*/
|
|
17306
|
-
apiV1BookingsGet: async (
|
|
17373
|
+
apiV1BookingsGet: async (userId?: string, userName?: string, 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, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
17307
17374
|
const localVarPath = `/api/v1/bookings`;
|
|
17308
17375
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
17309
17376
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -17320,8 +17387,28 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
17320
17387
|
// oauth required
|
|
17321
17388
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
17322
17389
|
|
|
17323
|
-
if (
|
|
17324
|
-
localVarQueryParameter['
|
|
17390
|
+
if (userId !== undefined) {
|
|
17391
|
+
localVarQueryParameter['UserId'] = userId;
|
|
17392
|
+
}
|
|
17393
|
+
|
|
17394
|
+
if (userName !== undefined) {
|
|
17395
|
+
localVarQueryParameter['UserName'] = userName;
|
|
17396
|
+
}
|
|
17397
|
+
|
|
17398
|
+
if (hospitalId !== undefined) {
|
|
17399
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
17400
|
+
}
|
|
17401
|
+
|
|
17402
|
+
if (hospitalName !== undefined) {
|
|
17403
|
+
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
17404
|
+
}
|
|
17405
|
+
|
|
17406
|
+
if (dealId !== undefined) {
|
|
17407
|
+
localVarQueryParameter['DealId'] = dealId;
|
|
17408
|
+
}
|
|
17409
|
+
|
|
17410
|
+
if (dealName !== undefined) {
|
|
17411
|
+
localVarQueryParameter['DealName'] = dealName;
|
|
17325
17412
|
}
|
|
17326
17413
|
|
|
17327
17414
|
if (isOpen !== undefined) {
|
|
@@ -17356,6 +17443,14 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
17356
17443
|
localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
|
|
17357
17444
|
}
|
|
17358
17445
|
|
|
17446
|
+
if (languageCode !== undefined) {
|
|
17447
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
17448
|
+
}
|
|
17449
|
+
|
|
17450
|
+
if (showHidden !== undefined) {
|
|
17451
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
17452
|
+
}
|
|
17453
|
+
|
|
17359
17454
|
if (page !== undefined) {
|
|
17360
17455
|
localVarQueryParameter['page'] = page;
|
|
17361
17456
|
}
|
|
@@ -17429,11 +17524,12 @@ export const BookingsApiFp = function(configuration?: Configuration) {
|
|
|
17429
17524
|
*
|
|
17430
17525
|
* @summary Get booking.
|
|
17431
17526
|
* @param {string} bookingId
|
|
17527
|
+
* @param {string} [languageCode]
|
|
17432
17528
|
* @param {*} [options] Override http request option.
|
|
17433
17529
|
* @throws {RequiredError}
|
|
17434
17530
|
*/
|
|
17435
|
-
async apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingModel>> {
|
|
17436
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1BookingsBookingIdGet(bookingId, options);
|
|
17531
|
+
async apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingModel>> {
|
|
17532
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1BookingsBookingIdGet(bookingId, languageCode, options);
|
|
17437
17533
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
17438
17534
|
},
|
|
17439
17535
|
/**
|
|
@@ -17462,7 +17558,12 @@ export const BookingsApiFp = function(configuration?: Configuration) {
|
|
|
17462
17558
|
/**
|
|
17463
17559
|
*
|
|
17464
17560
|
* @summary Get all bookings.
|
|
17465
|
-
* @param {string} [
|
|
17561
|
+
* @param {string} [userId]
|
|
17562
|
+
* @param {string} [userName]
|
|
17563
|
+
* @param {string} [hospitalId]
|
|
17564
|
+
* @param {string} [hospitalName]
|
|
17565
|
+
* @param {string} [dealId]
|
|
17566
|
+
* @param {string} [dealName]
|
|
17466
17567
|
* @param {boolean} [isOpen]
|
|
17467
17568
|
* @param {boolean} [isCompleted]
|
|
17468
17569
|
* @param {BookingStatus} [status]
|
|
@@ -17471,14 +17572,16 @@ export const BookingsApiFp = function(configuration?: Configuration) {
|
|
|
17471
17572
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
17472
17573
|
* @param {boolean} [isExternal]
|
|
17473
17574
|
* @param {boolean} [paymentEnabled]
|
|
17575
|
+
* @param {string} [languageCode]
|
|
17576
|
+
* @param {boolean} [showHidden]
|
|
17474
17577
|
* @param {number} [page]
|
|
17475
17578
|
* @param {number} [limit]
|
|
17476
17579
|
* @param {Date} [lastRetrieved]
|
|
17477
17580
|
* @param {*} [options] Override http request option.
|
|
17478
17581
|
* @throws {RequiredError}
|
|
17479
17582
|
*/
|
|
17480
|
-
async apiV1BookingsGet(
|
|
17481
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1BookingsGet(
|
|
17583
|
+
async apiV1BookingsGet(userId?: string, userName?: string, 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, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingsModel>> {
|
|
17584
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1BookingsGet(userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
17482
17585
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
17483
17586
|
},
|
|
17484
17587
|
}
|
|
@@ -17526,11 +17629,12 @@ export const BookingsApiFactory = function (configuration?: Configuration, baseP
|
|
|
17526
17629
|
*
|
|
17527
17630
|
* @summary Get booking.
|
|
17528
17631
|
* @param {string} bookingId
|
|
17632
|
+
* @param {string} [languageCode]
|
|
17529
17633
|
* @param {*} [options] Override http request option.
|
|
17530
17634
|
* @throws {RequiredError}
|
|
17531
17635
|
*/
|
|
17532
|
-
apiV1BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel> {
|
|
17533
|
-
return localVarFp.apiV1BookingsBookingIdGet(bookingId, options).then((request) => request(axios, basePath));
|
|
17636
|
+
apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: any): AxiosPromise<BookingModel> {
|
|
17637
|
+
return localVarFp.apiV1BookingsBookingIdGet(bookingId, languageCode, options).then((request) => request(axios, basePath));
|
|
17534
17638
|
},
|
|
17535
17639
|
/**
|
|
17536
17640
|
*
|
|
@@ -17556,7 +17660,12 @@ export const BookingsApiFactory = function (configuration?: Configuration, baseP
|
|
|
17556
17660
|
/**
|
|
17557
17661
|
*
|
|
17558
17662
|
* @summary Get all bookings.
|
|
17559
|
-
* @param {string} [
|
|
17663
|
+
* @param {string} [userId]
|
|
17664
|
+
* @param {string} [userName]
|
|
17665
|
+
* @param {string} [hospitalId]
|
|
17666
|
+
* @param {string} [hospitalName]
|
|
17667
|
+
* @param {string} [dealId]
|
|
17668
|
+
* @param {string} [dealName]
|
|
17560
17669
|
* @param {boolean} [isOpen]
|
|
17561
17670
|
* @param {boolean} [isCompleted]
|
|
17562
17671
|
* @param {BookingStatus} [status]
|
|
@@ -17565,14 +17674,16 @@ export const BookingsApiFactory = function (configuration?: Configuration, baseP
|
|
|
17565
17674
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
17566
17675
|
* @param {boolean} [isExternal]
|
|
17567
17676
|
* @param {boolean} [paymentEnabled]
|
|
17677
|
+
* @param {string} [languageCode]
|
|
17678
|
+
* @param {boolean} [showHidden]
|
|
17568
17679
|
* @param {number} [page]
|
|
17569
17680
|
* @param {number} [limit]
|
|
17570
17681
|
* @param {Date} [lastRetrieved]
|
|
17571
17682
|
* @param {*} [options] Override http request option.
|
|
17572
17683
|
* @throws {RequiredError}
|
|
17573
17684
|
*/
|
|
17574
|
-
apiV1BookingsGet(
|
|
17575
|
-
return localVarFp.apiV1BookingsGet(
|
|
17685
|
+
apiV1BookingsGet(userId?: string, userName?: string, 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, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<BookingsModel> {
|
|
17686
|
+
return localVarFp.apiV1BookingsGet(userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
17576
17687
|
},
|
|
17577
17688
|
};
|
|
17578
17689
|
};
|
|
@@ -17625,12 +17736,13 @@ export class BookingsApi extends BaseAPI {
|
|
|
17625
17736
|
*
|
|
17626
17737
|
* @summary Get booking.
|
|
17627
17738
|
* @param {string} bookingId
|
|
17739
|
+
* @param {string} [languageCode]
|
|
17628
17740
|
* @param {*} [options] Override http request option.
|
|
17629
17741
|
* @throws {RequiredError}
|
|
17630
17742
|
* @memberof BookingsApi
|
|
17631
17743
|
*/
|
|
17632
|
-
public apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig) {
|
|
17633
|
-
return BookingsApiFp(this.configuration).apiV1BookingsBookingIdGet(bookingId, options).then((request) => request(this.axios, this.basePath));
|
|
17744
|
+
public apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
17745
|
+
return BookingsApiFp(this.configuration).apiV1BookingsBookingIdGet(bookingId, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
17634
17746
|
}
|
|
17635
17747
|
|
|
17636
17748
|
/**
|
|
@@ -17661,7 +17773,12 @@ export class BookingsApi extends BaseAPI {
|
|
|
17661
17773
|
/**
|
|
17662
17774
|
*
|
|
17663
17775
|
* @summary Get all bookings.
|
|
17664
|
-
* @param {string} [
|
|
17776
|
+
* @param {string} [userId]
|
|
17777
|
+
* @param {string} [userName]
|
|
17778
|
+
* @param {string} [hospitalId]
|
|
17779
|
+
* @param {string} [hospitalName]
|
|
17780
|
+
* @param {string} [dealId]
|
|
17781
|
+
* @param {string} [dealName]
|
|
17665
17782
|
* @param {boolean} [isOpen]
|
|
17666
17783
|
* @param {boolean} [isCompleted]
|
|
17667
17784
|
* @param {BookingStatus} [status]
|
|
@@ -17670,6 +17787,8 @@ export class BookingsApi extends BaseAPI {
|
|
|
17670
17787
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
17671
17788
|
* @param {boolean} [isExternal]
|
|
17672
17789
|
* @param {boolean} [paymentEnabled]
|
|
17790
|
+
* @param {string} [languageCode]
|
|
17791
|
+
* @param {boolean} [showHidden]
|
|
17673
17792
|
* @param {number} [page]
|
|
17674
17793
|
* @param {number} [limit]
|
|
17675
17794
|
* @param {Date} [lastRetrieved]
|
|
@@ -17677,8 +17796,8 @@ export class BookingsApi extends BaseAPI {
|
|
|
17677
17796
|
* @throws {RequiredError}
|
|
17678
17797
|
* @memberof BookingsApi
|
|
17679
17798
|
*/
|
|
17680
|
-
public apiV1BookingsGet(
|
|
17681
|
-
return BookingsApiFp(this.configuration).apiV1BookingsGet(
|
|
17799
|
+
public apiV1BookingsGet(userId?: string, userName?: string, 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, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
17800
|
+
return BookingsApiFp(this.configuration).apiV1BookingsGet(userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
17682
17801
|
}
|
|
17683
17802
|
}
|
|
17684
17803
|
|
|
@@ -19492,10 +19611,11 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
19492
19611
|
*
|
|
19493
19612
|
* @summary Get consultation.
|
|
19494
19613
|
* @param {string} consultationId
|
|
19614
|
+
* @param {string} [languageCode]
|
|
19495
19615
|
* @param {*} [options] Override http request option.
|
|
19496
19616
|
* @throws {RequiredError}
|
|
19497
19617
|
*/
|
|
19498
|
-
apiV1ConsultationsConsultationIdGet: async (consultationId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19618
|
+
apiV1ConsultationsConsultationIdGet: async (consultationId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19499
19619
|
// verify required parameter 'consultationId' is not null or undefined
|
|
19500
19620
|
assertParamExists('apiV1ConsultationsConsultationIdGet', 'consultationId', consultationId)
|
|
19501
19621
|
const localVarPath = `/api/v1/consultations/{consultationId}`
|
|
@@ -19515,6 +19635,10 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
19515
19635
|
// oauth required
|
|
19516
19636
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
19517
19637
|
|
|
19638
|
+
if (languageCode !== undefined) {
|
|
19639
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
19640
|
+
}
|
|
19641
|
+
|
|
19518
19642
|
|
|
19519
19643
|
|
|
19520
19644
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -19609,7 +19733,14 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
19609
19733
|
/**
|
|
19610
19734
|
*
|
|
19611
19735
|
* @summary Get all consultations.
|
|
19612
|
-
* @param {string} [
|
|
19736
|
+
* @param {string} [userId]
|
|
19737
|
+
* @param {string} [userName]
|
|
19738
|
+
* @param {string} [hospitalId]
|
|
19739
|
+
* @param {string} [hospitalName]
|
|
19740
|
+
* @param {string} [doctorId]
|
|
19741
|
+
* @param {string} [doctorName]
|
|
19742
|
+
* @param {string} [dealId]
|
|
19743
|
+
* @param {string} [dealName]
|
|
19613
19744
|
* @param {boolean} [isOpen]
|
|
19614
19745
|
* @param {boolean} [isCompleted]
|
|
19615
19746
|
* @param {ConsultationStatus} [status]
|
|
@@ -19618,13 +19749,15 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
19618
19749
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
19619
19750
|
* @param {boolean} [isExternal]
|
|
19620
19751
|
* @param {boolean} [paymentEnabled]
|
|
19752
|
+
* @param {string} [languageCode]
|
|
19753
|
+
* @param {boolean} [showHidden]
|
|
19621
19754
|
* @param {number} [page]
|
|
19622
19755
|
* @param {number} [limit]
|
|
19623
19756
|
* @param {Date} [lastRetrieved]
|
|
19624
19757
|
* @param {*} [options] Override http request option.
|
|
19625
19758
|
* @throws {RequiredError}
|
|
19626
19759
|
*/
|
|
19627
|
-
apiV1ConsultationsGet: async (
|
|
19760
|
+
apiV1ConsultationsGet: async (userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19628
19761
|
const localVarPath = `/api/v1/consultations`;
|
|
19629
19762
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
19630
19763
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -19641,8 +19774,36 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
19641
19774
|
// oauth required
|
|
19642
19775
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
19643
19776
|
|
|
19644
|
-
if (
|
|
19645
|
-
localVarQueryParameter['
|
|
19777
|
+
if (userId !== undefined) {
|
|
19778
|
+
localVarQueryParameter['UserId'] = userId;
|
|
19779
|
+
}
|
|
19780
|
+
|
|
19781
|
+
if (userName !== undefined) {
|
|
19782
|
+
localVarQueryParameter['UserName'] = userName;
|
|
19783
|
+
}
|
|
19784
|
+
|
|
19785
|
+
if (hospitalId !== undefined) {
|
|
19786
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
19787
|
+
}
|
|
19788
|
+
|
|
19789
|
+
if (hospitalName !== undefined) {
|
|
19790
|
+
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
19791
|
+
}
|
|
19792
|
+
|
|
19793
|
+
if (doctorId !== undefined) {
|
|
19794
|
+
localVarQueryParameter['DoctorId'] = doctorId;
|
|
19795
|
+
}
|
|
19796
|
+
|
|
19797
|
+
if (doctorName !== undefined) {
|
|
19798
|
+
localVarQueryParameter['DoctorName'] = doctorName;
|
|
19799
|
+
}
|
|
19800
|
+
|
|
19801
|
+
if (dealId !== undefined) {
|
|
19802
|
+
localVarQueryParameter['DealId'] = dealId;
|
|
19803
|
+
}
|
|
19804
|
+
|
|
19805
|
+
if (dealName !== undefined) {
|
|
19806
|
+
localVarQueryParameter['DealName'] = dealName;
|
|
19646
19807
|
}
|
|
19647
19808
|
|
|
19648
19809
|
if (isOpen !== undefined) {
|
|
@@ -19677,6 +19838,14 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
19677
19838
|
localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
|
|
19678
19839
|
}
|
|
19679
19840
|
|
|
19841
|
+
if (languageCode !== undefined) {
|
|
19842
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
19843
|
+
}
|
|
19844
|
+
|
|
19845
|
+
if (showHidden !== undefined) {
|
|
19846
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
19847
|
+
}
|
|
19848
|
+
|
|
19680
19849
|
if (page !== undefined) {
|
|
19681
19850
|
localVarQueryParameter['page'] = page;
|
|
19682
19851
|
}
|
|
@@ -19750,11 +19919,12 @@ export const ConsultationsApiFp = function(configuration?: Configuration) {
|
|
|
19750
19919
|
*
|
|
19751
19920
|
* @summary Get consultation.
|
|
19752
19921
|
* @param {string} consultationId
|
|
19922
|
+
* @param {string} [languageCode]
|
|
19753
19923
|
* @param {*} [options] Override http request option.
|
|
19754
19924
|
* @throws {RequiredError}
|
|
19755
19925
|
*/
|
|
19756
|
-
async apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationModel>> {
|
|
19757
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ConsultationsConsultationIdGet(consultationId, options);
|
|
19926
|
+
async apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationModel>> {
|
|
19927
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ConsultationsConsultationIdGet(consultationId, languageCode, options);
|
|
19758
19928
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
19759
19929
|
},
|
|
19760
19930
|
/**
|
|
@@ -19783,7 +19953,14 @@ export const ConsultationsApiFp = function(configuration?: Configuration) {
|
|
|
19783
19953
|
/**
|
|
19784
19954
|
*
|
|
19785
19955
|
* @summary Get all consultations.
|
|
19786
|
-
* @param {string} [
|
|
19956
|
+
* @param {string} [userId]
|
|
19957
|
+
* @param {string} [userName]
|
|
19958
|
+
* @param {string} [hospitalId]
|
|
19959
|
+
* @param {string} [hospitalName]
|
|
19960
|
+
* @param {string} [doctorId]
|
|
19961
|
+
* @param {string} [doctorName]
|
|
19962
|
+
* @param {string} [dealId]
|
|
19963
|
+
* @param {string} [dealName]
|
|
19787
19964
|
* @param {boolean} [isOpen]
|
|
19788
19965
|
* @param {boolean} [isCompleted]
|
|
19789
19966
|
* @param {ConsultationStatus} [status]
|
|
@@ -19792,14 +19969,16 @@ export const ConsultationsApiFp = function(configuration?: Configuration) {
|
|
|
19792
19969
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
19793
19970
|
* @param {boolean} [isExternal]
|
|
19794
19971
|
* @param {boolean} [paymentEnabled]
|
|
19972
|
+
* @param {string} [languageCode]
|
|
19973
|
+
* @param {boolean} [showHidden]
|
|
19795
19974
|
* @param {number} [page]
|
|
19796
19975
|
* @param {number} [limit]
|
|
19797
19976
|
* @param {Date} [lastRetrieved]
|
|
19798
19977
|
* @param {*} [options] Override http request option.
|
|
19799
19978
|
* @throws {RequiredError}
|
|
19800
19979
|
*/
|
|
19801
|
-
async apiV1ConsultationsGet(
|
|
19802
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ConsultationsGet(
|
|
19980
|
+
async apiV1ConsultationsGet(userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationsModel>> {
|
|
19981
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ConsultationsGet(userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
19803
19982
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
19804
19983
|
},
|
|
19805
19984
|
}
|
|
@@ -19847,11 +20026,12 @@ export const ConsultationsApiFactory = function (configuration?: Configuration,
|
|
|
19847
20026
|
*
|
|
19848
20027
|
* @summary Get consultation.
|
|
19849
20028
|
* @param {string} consultationId
|
|
20029
|
+
* @param {string} [languageCode]
|
|
19850
20030
|
* @param {*} [options] Override http request option.
|
|
19851
20031
|
* @throws {RequiredError}
|
|
19852
20032
|
*/
|
|
19853
|
-
apiV1ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel> {
|
|
19854
|
-
return localVarFp.apiV1ConsultationsConsultationIdGet(consultationId, options).then((request) => request(axios, basePath));
|
|
20033
|
+
apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: any): AxiosPromise<ConsultationModel> {
|
|
20034
|
+
return localVarFp.apiV1ConsultationsConsultationIdGet(consultationId, languageCode, options).then((request) => request(axios, basePath));
|
|
19855
20035
|
},
|
|
19856
20036
|
/**
|
|
19857
20037
|
*
|
|
@@ -19877,7 +20057,14 @@ export const ConsultationsApiFactory = function (configuration?: Configuration,
|
|
|
19877
20057
|
/**
|
|
19878
20058
|
*
|
|
19879
20059
|
* @summary Get all consultations.
|
|
19880
|
-
* @param {string} [
|
|
20060
|
+
* @param {string} [userId]
|
|
20061
|
+
* @param {string} [userName]
|
|
20062
|
+
* @param {string} [hospitalId]
|
|
20063
|
+
* @param {string} [hospitalName]
|
|
20064
|
+
* @param {string} [doctorId]
|
|
20065
|
+
* @param {string} [doctorName]
|
|
20066
|
+
* @param {string} [dealId]
|
|
20067
|
+
* @param {string} [dealName]
|
|
19881
20068
|
* @param {boolean} [isOpen]
|
|
19882
20069
|
* @param {boolean} [isCompleted]
|
|
19883
20070
|
* @param {ConsultationStatus} [status]
|
|
@@ -19886,14 +20073,16 @@ export const ConsultationsApiFactory = function (configuration?: Configuration,
|
|
|
19886
20073
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
19887
20074
|
* @param {boolean} [isExternal]
|
|
19888
20075
|
* @param {boolean} [paymentEnabled]
|
|
20076
|
+
* @param {string} [languageCode]
|
|
20077
|
+
* @param {boolean} [showHidden]
|
|
19889
20078
|
* @param {number} [page]
|
|
19890
20079
|
* @param {number} [limit]
|
|
19891
20080
|
* @param {Date} [lastRetrieved]
|
|
19892
20081
|
* @param {*} [options] Override http request option.
|
|
19893
20082
|
* @throws {RequiredError}
|
|
19894
20083
|
*/
|
|
19895
|
-
apiV1ConsultationsGet(
|
|
19896
|
-
return localVarFp.apiV1ConsultationsGet(
|
|
20084
|
+
apiV1ConsultationsGet(userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ConsultationsModel> {
|
|
20085
|
+
return localVarFp.apiV1ConsultationsGet(userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
19897
20086
|
},
|
|
19898
20087
|
};
|
|
19899
20088
|
};
|
|
@@ -19946,12 +20135,13 @@ export class ConsultationsApi extends BaseAPI {
|
|
|
19946
20135
|
*
|
|
19947
20136
|
* @summary Get consultation.
|
|
19948
20137
|
* @param {string} consultationId
|
|
20138
|
+
* @param {string} [languageCode]
|
|
19949
20139
|
* @param {*} [options] Override http request option.
|
|
19950
20140
|
* @throws {RequiredError}
|
|
19951
20141
|
* @memberof ConsultationsApi
|
|
19952
20142
|
*/
|
|
19953
|
-
public apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig) {
|
|
19954
|
-
return ConsultationsApiFp(this.configuration).apiV1ConsultationsConsultationIdGet(consultationId, options).then((request) => request(this.axios, this.basePath));
|
|
20143
|
+
public apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
20144
|
+
return ConsultationsApiFp(this.configuration).apiV1ConsultationsConsultationIdGet(consultationId, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
19955
20145
|
}
|
|
19956
20146
|
|
|
19957
20147
|
/**
|
|
@@ -19982,7 +20172,14 @@ export class ConsultationsApi extends BaseAPI {
|
|
|
19982
20172
|
/**
|
|
19983
20173
|
*
|
|
19984
20174
|
* @summary Get all consultations.
|
|
19985
|
-
* @param {string} [
|
|
20175
|
+
* @param {string} [userId]
|
|
20176
|
+
* @param {string} [userName]
|
|
20177
|
+
* @param {string} [hospitalId]
|
|
20178
|
+
* @param {string} [hospitalName]
|
|
20179
|
+
* @param {string} [doctorId]
|
|
20180
|
+
* @param {string} [doctorName]
|
|
20181
|
+
* @param {string} [dealId]
|
|
20182
|
+
* @param {string} [dealName]
|
|
19986
20183
|
* @param {boolean} [isOpen]
|
|
19987
20184
|
* @param {boolean} [isCompleted]
|
|
19988
20185
|
* @param {ConsultationStatus} [status]
|
|
@@ -19991,6 +20188,8 @@ export class ConsultationsApi extends BaseAPI {
|
|
|
19991
20188
|
* @param {SortingOrder} [sortConfirmedDateStart]
|
|
19992
20189
|
* @param {boolean} [isExternal]
|
|
19993
20190
|
* @param {boolean} [paymentEnabled]
|
|
20191
|
+
* @param {string} [languageCode]
|
|
20192
|
+
* @param {boolean} [showHidden]
|
|
19994
20193
|
* @param {number} [page]
|
|
19995
20194
|
* @param {number} [limit]
|
|
19996
20195
|
* @param {Date} [lastRetrieved]
|
|
@@ -19998,8 +20197,8 @@ export class ConsultationsApi extends BaseAPI {
|
|
|
19998
20197
|
* @throws {RequiredError}
|
|
19999
20198
|
* @memberof ConsultationsApi
|
|
20000
20199
|
*/
|
|
20001
|
-
public apiV1ConsultationsGet(
|
|
20002
|
-
return ConsultationsApiFp(this.configuration).apiV1ConsultationsGet(
|
|
20200
|
+
public apiV1ConsultationsGet(userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
20201
|
+
return ConsultationsApiFp(this.configuration).apiV1ConsultationsGet(userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
20003
20202
|
}
|
|
20004
20203
|
}
|
|
20005
20204
|
|
|
@@ -21464,14 +21663,13 @@ export const CountriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21464
21663
|
* @param {Date} [createdDate]
|
|
21465
21664
|
* @param {string} [languageCode]
|
|
21466
21665
|
* @param {boolean} [showHidden]
|
|
21467
|
-
* @param {boolean} [returnDefaultValue]
|
|
21468
21666
|
* @param {number} [page]
|
|
21469
21667
|
* @param {number} [limit]
|
|
21470
21668
|
* @param {Date} [lastRetrieved]
|
|
21471
21669
|
* @param {*} [options] Override http request option.
|
|
21472
21670
|
* @throws {RequiredError}
|
|
21473
21671
|
*/
|
|
21474
|
-
apiV1CountriesGet: async (id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean,
|
|
21672
|
+
apiV1CountriesGet: async (id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
21475
21673
|
const localVarPath = `/api/v1/countries`;
|
|
21476
21674
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21477
21675
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -21514,10 +21712,6 @@ export const CountriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
21514
21712
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
21515
21713
|
}
|
|
21516
21714
|
|
|
21517
|
-
if (returnDefaultValue !== undefined) {
|
|
21518
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
21519
|
-
}
|
|
21520
|
-
|
|
21521
21715
|
if (page !== undefined) {
|
|
21522
21716
|
localVarQueryParameter['page'] = page;
|
|
21523
21717
|
}
|
|
@@ -21759,15 +21953,14 @@ export const CountriesApiFp = function(configuration?: Configuration) {
|
|
|
21759
21953
|
* @param {Date} [createdDate]
|
|
21760
21954
|
* @param {string} [languageCode]
|
|
21761
21955
|
* @param {boolean} [showHidden]
|
|
21762
|
-
* @param {boolean} [returnDefaultValue]
|
|
21763
21956
|
* @param {number} [page]
|
|
21764
21957
|
* @param {number} [limit]
|
|
21765
21958
|
* @param {Date} [lastRetrieved]
|
|
21766
21959
|
* @param {*} [options] Override http request option.
|
|
21767
21960
|
* @throws {RequiredError}
|
|
21768
21961
|
*/
|
|
21769
|
-
async apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean,
|
|
21770
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden,
|
|
21962
|
+
async apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CountriesModel>> {
|
|
21963
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
21771
21964
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
21772
21965
|
},
|
|
21773
21966
|
/**
|
|
@@ -21915,15 +22108,14 @@ export const CountriesApiFactory = function (configuration?: Configuration, base
|
|
|
21915
22108
|
* @param {Date} [createdDate]
|
|
21916
22109
|
* @param {string} [languageCode]
|
|
21917
22110
|
* @param {boolean} [showHidden]
|
|
21918
|
-
* @param {boolean} [returnDefaultValue]
|
|
21919
22111
|
* @param {number} [page]
|
|
21920
22112
|
* @param {number} [limit]
|
|
21921
22113
|
* @param {Date} [lastRetrieved]
|
|
21922
22114
|
* @param {*} [options] Override http request option.
|
|
21923
22115
|
* @throws {RequiredError}
|
|
21924
22116
|
*/
|
|
21925
|
-
apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean,
|
|
21926
|
-
return localVarFp.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden,
|
|
22117
|
+
apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<CountriesModel> {
|
|
22118
|
+
return localVarFp.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
21927
22119
|
},
|
|
21928
22120
|
/**
|
|
21929
22121
|
*
|
|
@@ -22086,7 +22278,6 @@ export class CountriesApi extends BaseAPI {
|
|
|
22086
22278
|
* @param {Date} [createdDate]
|
|
22087
22279
|
* @param {string} [languageCode]
|
|
22088
22280
|
* @param {boolean} [showHidden]
|
|
22089
|
-
* @param {boolean} [returnDefaultValue]
|
|
22090
22281
|
* @param {number} [page]
|
|
22091
22282
|
* @param {number} [limit]
|
|
22092
22283
|
* @param {Date} [lastRetrieved]
|
|
@@ -22094,8 +22285,8 @@ export class CountriesApi extends BaseAPI {
|
|
|
22094
22285
|
* @throws {RequiredError}
|
|
22095
22286
|
* @memberof CountriesApi
|
|
22096
22287
|
*/
|
|
22097
|
-
public apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean,
|
|
22098
|
-
return CountriesApiFp(this.configuration).apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden,
|
|
22288
|
+
public apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
22289
|
+
return CountriesApiFp(this.configuration).apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
22099
22290
|
}
|
|
22100
22291
|
|
|
22101
22292
|
/**
|
|
@@ -22283,11 +22474,10 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
22283
22474
|
* @summary Get deal.
|
|
22284
22475
|
* @param {string} dealId
|
|
22285
22476
|
* @param {string} [languageCode]
|
|
22286
|
-
* @param {boolean} [returnDefaultValue]
|
|
22287
22477
|
* @param {*} [options] Override http request option.
|
|
22288
22478
|
* @throws {RequiredError}
|
|
22289
22479
|
*/
|
|
22290
|
-
apiV1DealsDealIdGet: async (dealId: string, languageCode?: string,
|
|
22480
|
+
apiV1DealsDealIdGet: async (dealId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
22291
22481
|
// verify required parameter 'dealId' is not null or undefined
|
|
22292
22482
|
assertParamExists('apiV1DealsDealIdGet', 'dealId', dealId)
|
|
22293
22483
|
const localVarPath = `/api/v1/deals/{dealId}`
|
|
@@ -22311,10 +22501,6 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
22311
22501
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
22312
22502
|
}
|
|
22313
22503
|
|
|
22314
|
-
if (returnDefaultValue !== undefined) {
|
|
22315
|
-
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
22316
|
-
}
|
|
22317
|
-
|
|
22318
22504
|
|
|
22319
22505
|
|
|
22320
22506
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -22336,13 +22522,15 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
22336
22522
|
* @param {string} [countryId]
|
|
22337
22523
|
* @param {string} [hospitalId]
|
|
22338
22524
|
* @param {string} [hospitalName]
|
|
22525
|
+
* @param {string} [languageCode]
|
|
22526
|
+
* @param {boolean} [showHidden]
|
|
22339
22527
|
* @param {number} [page]
|
|
22340
22528
|
* @param {number} [limit]
|
|
22341
22529
|
* @param {Date} [lastRetrieved]
|
|
22342
22530
|
* @param {*} [options] Override http request option.
|
|
22343
22531
|
* @throws {RequiredError}
|
|
22344
22532
|
*/
|
|
22345
|
-
apiV1DealsDealIdPackagesGet: async (dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
22533
|
+
apiV1DealsDealIdPackagesGet: async (dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
22346
22534
|
// verify required parameter 'dealId' is not null or undefined
|
|
22347
22535
|
assertParamExists('apiV1DealsDealIdPackagesGet', 'dealId', dealId)
|
|
22348
22536
|
const localVarPath = `/api/v1/deals/{dealId}/packages`
|
|
@@ -22386,6 +22574,14 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
22386
22574
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
22387
22575
|
}
|
|
22388
22576
|
|
|
22577
|
+
if (languageCode !== undefined) {
|
|
22578
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
22579
|
+
}
|
|
22580
|
+
|
|
22581
|
+
if (showHidden !== undefined) {
|
|
22582
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
22583
|
+
}
|
|
22584
|
+
|
|
22389
22585
|
if (page !== undefined) {
|
|
22390
22586
|
localVarQueryParameter['page'] = page;
|
|
22391
22587
|
}
|
|
@@ -22458,10 +22654,11 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
22458
22654
|
* @summary Get DealPackage.
|
|
22459
22655
|
* @param {string} dealId
|
|
22460
22656
|
* @param {string} packageId
|
|
22657
|
+
* @param {string} [languageCode]
|
|
22461
22658
|
* @param {*} [options] Override http request option.
|
|
22462
22659
|
* @throws {RequiredError}
|
|
22463
22660
|
*/
|
|
22464
|
-
apiV1DealsDealIdPackagesPackageIdGet: async (dealId: string, packageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
22661
|
+
apiV1DealsDealIdPackagesPackageIdGet: async (dealId: string, packageId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
22465
22662
|
// verify required parameter 'dealId' is not null or undefined
|
|
22466
22663
|
assertParamExists('apiV1DealsDealIdPackagesPackageIdGet', 'dealId', dealId)
|
|
22467
22664
|
// verify required parameter 'packageId' is not null or undefined
|
|
@@ -22484,6 +22681,10 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
22484
22681
|
// oauth required
|
|
22485
22682
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
22486
22683
|
|
|
22684
|
+
if (languageCode !== undefined) {
|
|
22685
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
22686
|
+
}
|
|
22687
|
+
|
|
22487
22688
|
|
|
22488
22689
|
|
|
22489
22690
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -23256,12 +23457,11 @@ export const DealsApiFp = function(configuration?: Configuration) {
|
|
|
23256
23457
|
* @summary Get deal.
|
|
23257
23458
|
* @param {string} dealId
|
|
23258
23459
|
* @param {string} [languageCode]
|
|
23259
|
-
* @param {boolean} [returnDefaultValue]
|
|
23260
23460
|
* @param {*} [options] Override http request option.
|
|
23261
23461
|
* @throws {RequiredError}
|
|
23262
23462
|
*/
|
|
23263
|
-
async apiV1DealsDealIdGet(dealId: string, languageCode?: string,
|
|
23264
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdGet(dealId, languageCode,
|
|
23463
|
+
async apiV1DealsDealIdGet(dealId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealModel>> {
|
|
23464
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdGet(dealId, languageCode, options);
|
|
23265
23465
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
23266
23466
|
},
|
|
23267
23467
|
/**
|
|
@@ -23274,14 +23474,16 @@ export const DealsApiFp = function(configuration?: Configuration) {
|
|
|
23274
23474
|
* @param {string} [countryId]
|
|
23275
23475
|
* @param {string} [hospitalId]
|
|
23276
23476
|
* @param {string} [hospitalName]
|
|
23477
|
+
* @param {string} [languageCode]
|
|
23478
|
+
* @param {boolean} [showHidden]
|
|
23277
23479
|
* @param {number} [page]
|
|
23278
23480
|
* @param {number} [limit]
|
|
23279
23481
|
* @param {Date} [lastRetrieved]
|
|
23280
23482
|
* @param {*} [options] Override http request option.
|
|
23281
23483
|
* @throws {RequiredError}
|
|
23282
23484
|
*/
|
|
23283
|
-
async apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealPackagesModel>> {
|
|
23284
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options);
|
|
23485
|
+
async apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealPackagesModel>> {
|
|
23486
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
23285
23487
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
23286
23488
|
},
|
|
23287
23489
|
/**
|
|
@@ -23301,11 +23503,12 @@ export const DealsApiFp = function(configuration?: Configuration) {
|
|
|
23301
23503
|
* @summary Get DealPackage.
|
|
23302
23504
|
* @param {string} dealId
|
|
23303
23505
|
* @param {string} packageId
|
|
23506
|
+
* @param {string} [languageCode]
|
|
23304
23507
|
* @param {*} [options] Override http request option.
|
|
23305
23508
|
* @throws {RequiredError}
|
|
23306
23509
|
*/
|
|
23307
|
-
async apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealPackageModel>> {
|
|
23308
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, options);
|
|
23510
|
+
async apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealPackageModel>> {
|
|
23511
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, languageCode, options);
|
|
23309
23512
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
23310
23513
|
},
|
|
23311
23514
|
/**
|
|
@@ -23521,12 +23724,11 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath
|
|
|
23521
23724
|
* @summary Get deal.
|
|
23522
23725
|
* @param {string} dealId
|
|
23523
23726
|
* @param {string} [languageCode]
|
|
23524
|
-
* @param {boolean} [returnDefaultValue]
|
|
23525
23727
|
* @param {*} [options] Override http request option.
|
|
23526
23728
|
* @throws {RequiredError}
|
|
23527
23729
|
*/
|
|
23528
|
-
apiV1DealsDealIdGet(dealId: string, languageCode?: string,
|
|
23529
|
-
return localVarFp.apiV1DealsDealIdGet(dealId, languageCode,
|
|
23730
|
+
apiV1DealsDealIdGet(dealId: string, languageCode?: string, options?: any): AxiosPromise<DealModel> {
|
|
23731
|
+
return localVarFp.apiV1DealsDealIdGet(dealId, languageCode, options).then((request) => request(axios, basePath));
|
|
23530
23732
|
},
|
|
23531
23733
|
/**
|
|
23532
23734
|
*
|
|
@@ -23538,14 +23740,16 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath
|
|
|
23538
23740
|
* @param {string} [countryId]
|
|
23539
23741
|
* @param {string} [hospitalId]
|
|
23540
23742
|
* @param {string} [hospitalName]
|
|
23743
|
+
* @param {string} [languageCode]
|
|
23744
|
+
* @param {boolean} [showHidden]
|
|
23541
23745
|
* @param {number} [page]
|
|
23542
23746
|
* @param {number} [limit]
|
|
23543
23747
|
* @param {Date} [lastRetrieved]
|
|
23544
23748
|
* @param {*} [options] Override http request option.
|
|
23545
23749
|
* @throws {RequiredError}
|
|
23546
23750
|
*/
|
|
23547
|
-
apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DealPackagesModel> {
|
|
23548
|
-
return localVarFp.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
23751
|
+
apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DealPackagesModel> {
|
|
23752
|
+
return localVarFp.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
23549
23753
|
},
|
|
23550
23754
|
/**
|
|
23551
23755
|
*
|
|
@@ -23563,11 +23767,12 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath
|
|
|
23563
23767
|
* @summary Get DealPackage.
|
|
23564
23768
|
* @param {string} dealId
|
|
23565
23769
|
* @param {string} packageId
|
|
23770
|
+
* @param {string} [languageCode]
|
|
23566
23771
|
* @param {*} [options] Override http request option.
|
|
23567
23772
|
* @throws {RequiredError}
|
|
23568
23773
|
*/
|
|
23569
|
-
apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: any): AxiosPromise<DealPackageModel> {
|
|
23570
|
-
return localVarFp.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, options).then((request) => request(axios, basePath));
|
|
23774
|
+
apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string, options?: any): AxiosPromise<DealPackageModel> {
|
|
23775
|
+
return localVarFp.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, languageCode, options).then((request) => request(axios, basePath));
|
|
23571
23776
|
},
|
|
23572
23777
|
/**
|
|
23573
23778
|
*
|
|
@@ -23772,13 +23977,12 @@ export class DealsApi extends BaseAPI {
|
|
|
23772
23977
|
* @summary Get deal.
|
|
23773
23978
|
* @param {string} dealId
|
|
23774
23979
|
* @param {string} [languageCode]
|
|
23775
|
-
* @param {boolean} [returnDefaultValue]
|
|
23776
23980
|
* @param {*} [options] Override http request option.
|
|
23777
23981
|
* @throws {RequiredError}
|
|
23778
23982
|
* @memberof DealsApi
|
|
23779
23983
|
*/
|
|
23780
|
-
public apiV1DealsDealIdGet(dealId: string, languageCode?: string,
|
|
23781
|
-
return DealsApiFp(this.configuration).apiV1DealsDealIdGet(dealId, languageCode,
|
|
23984
|
+
public apiV1DealsDealIdGet(dealId: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
23985
|
+
return DealsApiFp(this.configuration).apiV1DealsDealIdGet(dealId, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
23782
23986
|
}
|
|
23783
23987
|
|
|
23784
23988
|
/**
|
|
@@ -23791,6 +23995,8 @@ export class DealsApi extends BaseAPI {
|
|
|
23791
23995
|
* @param {string} [countryId]
|
|
23792
23996
|
* @param {string} [hospitalId]
|
|
23793
23997
|
* @param {string} [hospitalName]
|
|
23998
|
+
* @param {string} [languageCode]
|
|
23999
|
+
* @param {boolean} [showHidden]
|
|
23794
24000
|
* @param {number} [page]
|
|
23795
24001
|
* @param {number} [limit]
|
|
23796
24002
|
* @param {Date} [lastRetrieved]
|
|
@@ -23798,8 +24004,8 @@ export class DealsApi extends BaseAPI {
|
|
|
23798
24004
|
* @throws {RequiredError}
|
|
23799
24005
|
* @memberof DealsApi
|
|
23800
24006
|
*/
|
|
23801
|
-
public apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
23802
|
-
return DealsApiFp(this.configuration).apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
24007
|
+
public apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
24008
|
+
return DealsApiFp(this.configuration).apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
23803
24009
|
}
|
|
23804
24010
|
|
|
23805
24011
|
/**
|
|
@@ -23820,12 +24026,13 @@ export class DealsApi extends BaseAPI {
|
|
|
23820
24026
|
* @summary Get DealPackage.
|
|
23821
24027
|
* @param {string} dealId
|
|
23822
24028
|
* @param {string} packageId
|
|
24029
|
+
* @param {string} [languageCode]
|
|
23823
24030
|
* @param {*} [options] Override http request option.
|
|
23824
24031
|
* @throws {RequiredError}
|
|
23825
24032
|
* @memberof DealsApi
|
|
23826
24033
|
*/
|
|
23827
|
-
public apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig) {
|
|
23828
|
-
return DealsApiFp(this.configuration).apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, options).then((request) => request(this.axios, this.basePath));
|
|
24034
|
+
public apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
24035
|
+
return DealsApiFp(this.configuration).apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
23829
24036
|
}
|
|
23830
24037
|
|
|
23831
24038
|
/**
|
|
@@ -24042,8 +24249,8 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
24042
24249
|
* @param {string} [hospitalId]
|
|
24043
24250
|
* @param {string} [hospitalName]
|
|
24044
24251
|
* @param {string} [doctorId]
|
|
24045
|
-
* @param {string} [
|
|
24046
|
-
* @param {string} [
|
|
24252
|
+
* @param {string} [doctorName]
|
|
24253
|
+
* @param {string} [doctorSlug]
|
|
24047
24254
|
* @param {string} [languageCode]
|
|
24048
24255
|
* @param {boolean} [showHidden]
|
|
24049
24256
|
* @param {number} [page]
|
|
@@ -24052,7 +24259,7 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
24052
24259
|
* @param {*} [options] Override http request option.
|
|
24053
24260
|
* @throws {RequiredError}
|
|
24054
24261
|
*/
|
|
24055
|
-
apiV1DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string,
|
|
24262
|
+
apiV1DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24056
24263
|
const localVarPath = `/api/v1/doctoraffiliations`;
|
|
24057
24264
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24058
24265
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -24081,12 +24288,12 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
24081
24288
|
localVarQueryParameter['DoctorId'] = doctorId;
|
|
24082
24289
|
}
|
|
24083
24290
|
|
|
24084
|
-
if (
|
|
24085
|
-
localVarQueryParameter['
|
|
24291
|
+
if (doctorName !== undefined) {
|
|
24292
|
+
localVarQueryParameter['DoctorName'] = doctorName;
|
|
24086
24293
|
}
|
|
24087
24294
|
|
|
24088
|
-
if (
|
|
24089
|
-
localVarQueryParameter['
|
|
24295
|
+
if (doctorSlug !== undefined) {
|
|
24296
|
+
localVarQueryParameter['DoctorSlug'] = doctorSlug;
|
|
24090
24297
|
}
|
|
24091
24298
|
|
|
24092
24299
|
if (languageCode !== undefined) {
|
|
@@ -24164,10 +24371,11 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
24164
24371
|
*
|
|
24165
24372
|
* @summary Get doctor affiliation.
|
|
24166
24373
|
* @param {string} id
|
|
24374
|
+
* @param {string} [languageCode]
|
|
24167
24375
|
* @param {*} [options] Override http request option.
|
|
24168
24376
|
* @throws {RequiredError}
|
|
24169
24377
|
*/
|
|
24170
|
-
apiV1DoctoraffiliationsIdGet: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24378
|
+
apiV1DoctoraffiliationsIdGet: async (id: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24171
24379
|
// verify required parameter 'id' is not null or undefined
|
|
24172
24380
|
assertParamExists('apiV1DoctoraffiliationsIdGet', 'id', id)
|
|
24173
24381
|
const localVarPath = `/api/v1/doctoraffiliations/{id}`
|
|
@@ -24187,6 +24395,10 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
24187
24395
|
// oauth required
|
|
24188
24396
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
24189
24397
|
|
|
24398
|
+
if (languageCode !== undefined) {
|
|
24399
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
24400
|
+
}
|
|
24401
|
+
|
|
24190
24402
|
|
|
24191
24403
|
|
|
24192
24404
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -24293,8 +24505,8 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
24293
24505
|
* @param {string} [hospitalId]
|
|
24294
24506
|
* @param {string} [hospitalName]
|
|
24295
24507
|
* @param {string} [doctorId]
|
|
24296
|
-
* @param {string} [
|
|
24297
|
-
* @param {string} [
|
|
24508
|
+
* @param {string} [doctorName]
|
|
24509
|
+
* @param {string} [doctorSlug]
|
|
24298
24510
|
* @param {string} [languageCode]
|
|
24299
24511
|
* @param {boolean} [showHidden]
|
|
24300
24512
|
* @param {number} [page]
|
|
@@ -24303,8 +24515,8 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
24303
24515
|
* @param {*} [options] Override http request option.
|
|
24304
24516
|
* @throws {RequiredError}
|
|
24305
24517
|
*/
|
|
24306
|
-
async apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string,
|
|
24307
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId,
|
|
24518
|
+
async apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
|
|
24519
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
24308
24520
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24309
24521
|
},
|
|
24310
24522
|
/**
|
|
@@ -24322,11 +24534,12 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
24322
24534
|
*
|
|
24323
24535
|
* @summary Get doctor affiliation.
|
|
24324
24536
|
* @param {string} id
|
|
24537
|
+
* @param {string} [languageCode]
|
|
24325
24538
|
* @param {*} [options] Override http request option.
|
|
24326
24539
|
* @throws {RequiredError}
|
|
24327
24540
|
*/
|
|
24328
|
-
async apiV1DoctoraffiliationsIdGet(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
24329
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsIdGet(id, options);
|
|
24541
|
+
async apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
|
|
24542
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsIdGet(id, languageCode, options);
|
|
24330
24543
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
24331
24544
|
},
|
|
24332
24545
|
/**
|
|
@@ -24367,8 +24580,8 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
24367
24580
|
* @param {string} [hospitalId]
|
|
24368
24581
|
* @param {string} [hospitalName]
|
|
24369
24582
|
* @param {string} [doctorId]
|
|
24370
|
-
* @param {string} [
|
|
24371
|
-
* @param {string} [
|
|
24583
|
+
* @param {string} [doctorName]
|
|
24584
|
+
* @param {string} [doctorSlug]
|
|
24372
24585
|
* @param {string} [languageCode]
|
|
24373
24586
|
* @param {boolean} [showHidden]
|
|
24374
24587
|
* @param {number} [page]
|
|
@@ -24377,8 +24590,8 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
24377
24590
|
* @param {*} [options] Override http request option.
|
|
24378
24591
|
* @throws {RequiredError}
|
|
24379
24592
|
*/
|
|
24380
|
-
apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string,
|
|
24381
|
-
return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId,
|
|
24593
|
+
apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
|
|
24594
|
+
return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
24382
24595
|
},
|
|
24383
24596
|
/**
|
|
24384
24597
|
*
|
|
@@ -24394,11 +24607,12 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
24394
24607
|
*
|
|
24395
24608
|
* @summary Get doctor affiliation.
|
|
24396
24609
|
* @param {string} id
|
|
24610
|
+
* @param {string} [languageCode]
|
|
24397
24611
|
* @param {*} [options] Override http request option.
|
|
24398
24612
|
* @throws {RequiredError}
|
|
24399
24613
|
*/
|
|
24400
|
-
apiV1DoctoraffiliationsIdGet(id: string, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
24401
|
-
return localVarFp.apiV1DoctoraffiliationsIdGet(id, options).then((request) => request(axios, basePath));
|
|
24614
|
+
apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: any): AxiosPromise<DoctorAffiliationModel> {
|
|
24615
|
+
return localVarFp.apiV1DoctoraffiliationsIdGet(id, languageCode, options).then((request) => request(axios, basePath));
|
|
24402
24616
|
},
|
|
24403
24617
|
/**
|
|
24404
24618
|
*
|
|
@@ -24436,8 +24650,8 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
24436
24650
|
* @param {string} [hospitalId]
|
|
24437
24651
|
* @param {string} [hospitalName]
|
|
24438
24652
|
* @param {string} [doctorId]
|
|
24439
|
-
* @param {string} [
|
|
24440
|
-
* @param {string} [
|
|
24653
|
+
* @param {string} [doctorName]
|
|
24654
|
+
* @param {string} [doctorSlug]
|
|
24441
24655
|
* @param {string} [languageCode]
|
|
24442
24656
|
* @param {boolean} [showHidden]
|
|
24443
24657
|
* @param {number} [page]
|
|
@@ -24447,8 +24661,8 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
24447
24661
|
* @throws {RequiredError}
|
|
24448
24662
|
* @memberof DoctorAffiliationsApi
|
|
24449
24663
|
*/
|
|
24450
|
-
public apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string,
|
|
24451
|
-
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId,
|
|
24664
|
+
public apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
24665
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
24452
24666
|
}
|
|
24453
24667
|
|
|
24454
24668
|
/**
|
|
@@ -24467,12 +24681,13 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
24467
24681
|
*
|
|
24468
24682
|
* @summary Get doctor affiliation.
|
|
24469
24683
|
* @param {string} id
|
|
24684
|
+
* @param {string} [languageCode]
|
|
24470
24685
|
* @param {*} [options] Override http request option.
|
|
24471
24686
|
* @throws {RequiredError}
|
|
24472
24687
|
* @memberof DoctorAffiliationsApi
|
|
24473
24688
|
*/
|
|
24474
|
-
public apiV1DoctoraffiliationsIdGet(id: string, options?: AxiosRequestConfig) {
|
|
24475
|
-
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdGet(id, options).then((request) => request(this.axios, this.basePath));
|
|
24689
|
+
public apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
24690
|
+
return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdGet(id, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
24476
24691
|
}
|
|
24477
24692
|
|
|
24478
24693
|
/**
|
|
@@ -25862,13 +26077,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
25862
26077
|
* @param {string} [doctorName]
|
|
25863
26078
|
* @param {string} [specialtyId]
|
|
25864
26079
|
* @param {string} [specialtyName]
|
|
26080
|
+
* @param {string} [languageCode]
|
|
25865
26081
|
* @param {number} [page]
|
|
25866
26082
|
* @param {number} [limit]
|
|
25867
26083
|
* @param {Date} [lastRetrieved]
|
|
25868
26084
|
* @param {*} [options] Override http request option.
|
|
25869
26085
|
* @throws {RequiredError}
|
|
25870
26086
|
*/
|
|
25871
|
-
apiV1DoctorsDoctorIdSpecialtiesGet: async (doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
26087
|
+
apiV1DoctorsDoctorIdSpecialtiesGet: async (doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
25872
26088
|
// verify required parameter 'doctorId' is not null or undefined
|
|
25873
26089
|
assertParamExists('apiV1DoctorsDoctorIdSpecialtiesGet', 'doctorId', doctorId)
|
|
25874
26090
|
const localVarPath = `/api/v1/doctors/{doctorId}/specialties`
|
|
@@ -25900,6 +26116,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
25900
26116
|
localVarQueryParameter['SpecialtyName'] = specialtyName;
|
|
25901
26117
|
}
|
|
25902
26118
|
|
|
26119
|
+
if (languageCode !== undefined) {
|
|
26120
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
26121
|
+
}
|
|
26122
|
+
|
|
25903
26123
|
if (page !== undefined) {
|
|
25904
26124
|
localVarQueryParameter['page'] = page;
|
|
25905
26125
|
}
|
|
@@ -26805,14 +27025,15 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
|
|
|
26805
27025
|
* @param {string} [doctorName]
|
|
26806
27026
|
* @param {string} [specialtyId]
|
|
26807
27027
|
* @param {string} [specialtyName]
|
|
27028
|
+
* @param {string} [languageCode]
|
|
26808
27029
|
* @param {number} [page]
|
|
26809
27030
|
* @param {number} [limit]
|
|
26810
27031
|
* @param {Date} [lastRetrieved]
|
|
26811
27032
|
* @param {*} [options] Override http request option.
|
|
26812
27033
|
* @throws {RequiredError}
|
|
26813
27034
|
*/
|
|
26814
|
-
async apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtiesModel>> {
|
|
26815
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options);
|
|
27035
|
+
async apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtiesModel>> {
|
|
27036
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options);
|
|
26816
27037
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26817
27038
|
},
|
|
26818
27039
|
/**
|
|
@@ -27294,14 +27515,15 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
|
|
|
27294
27515
|
* @param {string} [doctorName]
|
|
27295
27516
|
* @param {string} [specialtyId]
|
|
27296
27517
|
* @param {string} [specialtyName]
|
|
27518
|
+
* @param {string} [languageCode]
|
|
27297
27519
|
* @param {number} [page]
|
|
27298
27520
|
* @param {number} [limit]
|
|
27299
27521
|
* @param {Date} [lastRetrieved]
|
|
27300
27522
|
* @param {*} [options] Override http request option.
|
|
27301
27523
|
* @throws {RequiredError}
|
|
27302
27524
|
*/
|
|
27303
|
-
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorSpecialtiesModel> {
|
|
27304
|
-
return localVarFp.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
27525
|
+
apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorSpecialtiesModel> {
|
|
27526
|
+
return localVarFp.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
27305
27527
|
},
|
|
27306
27528
|
/**
|
|
27307
27529
|
*
|
|
@@ -27830,6 +28052,7 @@ export class DoctorsApi extends BaseAPI {
|
|
|
27830
28052
|
* @param {string} [doctorName]
|
|
27831
28053
|
* @param {string} [specialtyId]
|
|
27832
28054
|
* @param {string} [specialtyName]
|
|
28055
|
+
* @param {string} [languageCode]
|
|
27833
28056
|
* @param {number} [page]
|
|
27834
28057
|
* @param {number} [limit]
|
|
27835
28058
|
* @param {Date} [lastRetrieved]
|
|
@@ -27837,8 +28060,8 @@ export class DoctorsApi extends BaseAPI {
|
|
|
27837
28060
|
* @throws {RequiredError}
|
|
27838
28061
|
* @memberof DoctorsApi
|
|
27839
28062
|
*/
|
|
27840
|
-
public apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
27841
|
-
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
28063
|
+
public apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
28064
|
+
return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
27842
28065
|
}
|
|
27843
28066
|
|
|
27844
28067
|
/**
|
|
@@ -30529,7 +30752,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
30529
30752
|
* @param {boolean} [showHidden]
|
|
30530
30753
|
* @param {string} [languageCode]
|
|
30531
30754
|
* @param {Array<string>} [ids]
|
|
30532
|
-
* @param {boolean} [returnDefaultValue]
|
|
30533
30755
|
* @param {boolean} [paymentEnabled]
|
|
30534
30756
|
* @param {number} [page]
|
|
30535
30757
|
* @param {number} [limit]
|
|
@@ -30537,7 +30759,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
30537
30759
|
* @param {*} [options] Override http request option.
|
|
30538
30760
|
* @throws {RequiredError}
|
|
30539
30761
|
*/
|
|
30540
|
-
apiV1HospitalsGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>,
|
|
30762
|
+
apiV1HospitalsGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
30541
30763
|
const localVarPath = `/api/v1/hospitals`;
|
|
30542
30764
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
30543
30765
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -30600,10 +30822,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
30600
30822
|
localVarQueryParameter['Ids'] = ids;
|
|
30601
30823
|
}
|
|
30602
30824
|
|
|
30603
|
-
if (returnDefaultValue !== undefined) {
|
|
30604
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
30605
|
-
}
|
|
30606
|
-
|
|
30607
30825
|
if (paymentEnabled !== undefined) {
|
|
30608
30826
|
localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
|
|
30609
30827
|
}
|
|
@@ -32245,8 +32463,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32245
32463
|
* @param {string} [name]
|
|
32246
32464
|
* @param {string} [slug]
|
|
32247
32465
|
* @param {MarketingType} [marketingType]
|
|
32248
|
-
* @param {boolean} [returnDefaultValue]
|
|
32249
|
-
* @param {boolean} [includeServices]
|
|
32250
32466
|
* @param {string} [languageCode]
|
|
32251
32467
|
* @param {boolean} [showHidden]
|
|
32252
32468
|
* @param {number} [page]
|
|
@@ -32255,7 +32471,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32255
32471
|
* @param {*} [options] Override http request option.
|
|
32256
32472
|
* @throws {RequiredError}
|
|
32257
32473
|
*/
|
|
32258
|
-
apiV1HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
32474
|
+
apiV1HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32259
32475
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
32260
32476
|
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesGet', 'hospitalId', hospitalId)
|
|
32261
32477
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties`
|
|
@@ -32307,14 +32523,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32307
32523
|
localVarQueryParameter['MarketingType'] = marketingType;
|
|
32308
32524
|
}
|
|
32309
32525
|
|
|
32310
|
-
if (returnDefaultValue !== undefined) {
|
|
32311
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
32312
|
-
}
|
|
32313
|
-
|
|
32314
|
-
if (includeServices !== undefined) {
|
|
32315
|
-
localVarQueryParameter['IncludeServices'] = includeServices;
|
|
32316
|
-
}
|
|
32317
|
-
|
|
32318
32526
|
if (languageCode !== undefined) {
|
|
32319
32527
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
32320
32528
|
}
|
|
@@ -32659,8 +32867,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32659
32867
|
* @param {string} [name]
|
|
32660
32868
|
* @param {string} [slug]
|
|
32661
32869
|
* @param {MarketingType} [marketingType]
|
|
32662
|
-
* @param {boolean} [returnDefaultValue]
|
|
32663
|
-
* @param {boolean} [includeServices]
|
|
32664
32870
|
* @param {string} [languageCode]
|
|
32665
32871
|
* @param {boolean} [showHidden]
|
|
32666
32872
|
* @param {number} [page]
|
|
@@ -32669,7 +32875,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32669
32875
|
* @param {*} [options] Override http request option.
|
|
32670
32876
|
* @throws {RequiredError}
|
|
32671
32877
|
*/
|
|
32672
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: async (hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
32878
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet: async (hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32673
32879
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
32674
32880
|
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSimpleGet', 'hospitalId', hospitalId)
|
|
32675
32881
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties/simple`
|
|
@@ -32721,14 +32927,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32721
32927
|
localVarQueryParameter['MarketingType'] = marketingType;
|
|
32722
32928
|
}
|
|
32723
32929
|
|
|
32724
|
-
if (returnDefaultValue !== undefined) {
|
|
32725
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
32726
|
-
}
|
|
32727
|
-
|
|
32728
|
-
if (includeServices !== undefined) {
|
|
32729
|
-
localVarQueryParameter['IncludeServices'] = includeServices;
|
|
32730
|
-
}
|
|
32731
|
-
|
|
32732
32930
|
if (languageCode !== undefined) {
|
|
32733
32931
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
32734
32932
|
}
|
|
@@ -32867,12 +33065,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32867
33065
|
* @param {string} hospitalId
|
|
32868
33066
|
* @param {string} specialtyId
|
|
32869
33067
|
* @param {string} [languageCode]
|
|
32870
|
-
* @param {boolean} [returnDefaultValue]
|
|
32871
|
-
* @param {boolean} [includeServices]
|
|
32872
33068
|
* @param {*} [options] Override http request option.
|
|
32873
33069
|
* @throws {RequiredError}
|
|
32874
33070
|
*/
|
|
32875
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: async (hospitalId: string, specialtyId: string, languageCode?: string,
|
|
33071
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: async (hospitalId: string, specialtyId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32876
33072
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
32877
33073
|
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet', 'hospitalId', hospitalId)
|
|
32878
33074
|
// verify required parameter 'specialtyId' is not null or undefined
|
|
@@ -32899,14 +33095,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32899
33095
|
localVarQueryParameter['languageCode'] = languageCode;
|
|
32900
33096
|
}
|
|
32901
33097
|
|
|
32902
|
-
if (returnDefaultValue !== undefined) {
|
|
32903
|
-
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
32904
|
-
}
|
|
32905
|
-
|
|
32906
|
-
if (includeServices !== undefined) {
|
|
32907
|
-
localVarQueryParameter['includeServices'] = includeServices;
|
|
32908
|
-
}
|
|
32909
|
-
|
|
32910
33098
|
|
|
32911
33099
|
|
|
32912
33100
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -32976,15 +33164,15 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
32976
33164
|
* @param {MarketingType} [marketingType]
|
|
32977
33165
|
* @param {Procedure} [procedure]
|
|
32978
33166
|
* @param {Date} [created]
|
|
33167
|
+
* @param {boolean} [showHidden]
|
|
32979
33168
|
* @param {string} [languageCode]
|
|
32980
|
-
* @param {boolean} [returnDefaultValue]
|
|
32981
33169
|
* @param {number} [page]
|
|
32982
33170
|
* @param {number} [limit]
|
|
32983
33171
|
* @param {Date} [lastRetrieved]
|
|
32984
33172
|
* @param {*} [options] Override http request option.
|
|
32985
33173
|
* @throws {RequiredError}
|
|
32986
33174
|
*/
|
|
32987
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: async (hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date,
|
|
33175
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: async (hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
32988
33176
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
32989
33177
|
assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet', 'hospitalId', hospitalId)
|
|
32990
33178
|
// verify required parameter 'specialtyId' is not null or undefined
|
|
@@ -33037,12 +33225,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
33037
33225
|
created;
|
|
33038
33226
|
}
|
|
33039
33227
|
|
|
33040
|
-
if (
|
|
33041
|
-
localVarQueryParameter['
|
|
33228
|
+
if (showHidden !== undefined) {
|
|
33229
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
33042
33230
|
}
|
|
33043
33231
|
|
|
33044
|
-
if (
|
|
33045
|
-
localVarQueryParameter['
|
|
33232
|
+
if (languageCode !== undefined) {
|
|
33233
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
33046
33234
|
}
|
|
33047
33235
|
|
|
33048
33236
|
if (page !== undefined) {
|
|
@@ -33889,7 +34077,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
33889
34077
|
* @param {boolean} [showHidden]
|
|
33890
34078
|
* @param {string} [languageCode]
|
|
33891
34079
|
* @param {Array<string>} [ids]
|
|
33892
|
-
* @param {boolean} [returnDefaultValue]
|
|
33893
34080
|
* @param {boolean} [paymentEnabled]
|
|
33894
34081
|
* @param {number} [page]
|
|
33895
34082
|
* @param {number} [limit]
|
|
@@ -33897,7 +34084,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
33897
34084
|
* @param {*} [options] Override http request option.
|
|
33898
34085
|
* @throws {RequiredError}
|
|
33899
34086
|
*/
|
|
33900
|
-
apiV1HospitalsSimpleGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>,
|
|
34087
|
+
apiV1HospitalsSimpleGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
33901
34088
|
const localVarPath = `/api/v1/hospitals/simple`;
|
|
33902
34089
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
33903
34090
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -33960,10 +34147,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
33960
34147
|
localVarQueryParameter['Ids'] = ids;
|
|
33961
34148
|
}
|
|
33962
34149
|
|
|
33963
|
-
if (returnDefaultValue !== undefined) {
|
|
33964
|
-
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
33965
|
-
}
|
|
33966
|
-
|
|
33967
34150
|
if (paymentEnabled !== undefined) {
|
|
33968
34151
|
localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
|
|
33969
34152
|
}
|
|
@@ -34064,7 +34247,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34064
34247
|
* @param {boolean} [showHidden]
|
|
34065
34248
|
* @param {string} [languageCode]
|
|
34066
34249
|
* @param {Array<string>} [ids]
|
|
34067
|
-
* @param {boolean} [returnDefaultValue]
|
|
34068
34250
|
* @param {boolean} [paymentEnabled]
|
|
34069
34251
|
* @param {number} [page]
|
|
34070
34252
|
* @param {number} [limit]
|
|
@@ -34072,8 +34254,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34072
34254
|
* @param {*} [options] Override http request option.
|
|
34073
34255
|
* @throws {RequiredError}
|
|
34074
34256
|
*/
|
|
34075
|
-
async apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>,
|
|
34076
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
34257
|
+
async apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>> {
|
|
34258
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options);
|
|
34077
34259
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
34078
34260
|
},
|
|
34079
34261
|
/**
|
|
@@ -34524,8 +34706,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34524
34706
|
* @param {string} [name]
|
|
34525
34707
|
* @param {string} [slug]
|
|
34526
34708
|
* @param {MarketingType} [marketingType]
|
|
34527
|
-
* @param {boolean} [returnDefaultValue]
|
|
34528
|
-
* @param {boolean} [includeServices]
|
|
34529
34709
|
* @param {string} [languageCode]
|
|
34530
34710
|
* @param {boolean} [showHidden]
|
|
34531
34711
|
* @param {number} [page]
|
|
@@ -34534,8 +34714,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34534
34714
|
* @param {*} [options] Override http request option.
|
|
34535
34715
|
* @throws {RequiredError}
|
|
34536
34716
|
*/
|
|
34537
|
-
async apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
34538
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
34717
|
+
async apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesModel>> {
|
|
34718
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
34539
34719
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
34540
34720
|
},
|
|
34541
34721
|
/**
|
|
@@ -34632,8 +34812,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34632
34812
|
* @param {string} [name]
|
|
34633
34813
|
* @param {string} [slug]
|
|
34634
34814
|
* @param {MarketingType} [marketingType]
|
|
34635
|
-
* @param {boolean} [returnDefaultValue]
|
|
34636
|
-
* @param {boolean} [includeServices]
|
|
34637
34815
|
* @param {string} [languageCode]
|
|
34638
34816
|
* @param {boolean} [showHidden]
|
|
34639
34817
|
* @param {number} [page]
|
|
@@ -34642,8 +34820,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34642
34820
|
* @param {*} [options] Override http request option.
|
|
34643
34821
|
* @throws {RequiredError}
|
|
34644
34822
|
*/
|
|
34645
|
-
async apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
34646
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
34823
|
+
async apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesSimpleModel>> {
|
|
34824
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
34647
34825
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
34648
34826
|
},
|
|
34649
34827
|
/**
|
|
@@ -34679,13 +34857,11 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34679
34857
|
* @param {string} hospitalId
|
|
34680
34858
|
* @param {string} specialtyId
|
|
34681
34859
|
* @param {string} [languageCode]
|
|
34682
|
-
* @param {boolean} [returnDefaultValue]
|
|
34683
|
-
* @param {boolean} [includeServices]
|
|
34684
34860
|
* @param {*} [options] Override http request option.
|
|
34685
34861
|
* @throws {RequiredError}
|
|
34686
34862
|
*/
|
|
34687
|
-
async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string,
|
|
34688
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode,
|
|
34863
|
+
async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>> {
|
|
34864
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options);
|
|
34689
34865
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
34690
34866
|
},
|
|
34691
34867
|
/**
|
|
@@ -34713,16 +34889,16 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34713
34889
|
* @param {MarketingType} [marketingType]
|
|
34714
34890
|
* @param {Procedure} [procedure]
|
|
34715
34891
|
* @param {Date} [created]
|
|
34892
|
+
* @param {boolean} [showHidden]
|
|
34716
34893
|
* @param {string} [languageCode]
|
|
34717
|
-
* @param {boolean} [returnDefaultValue]
|
|
34718
34894
|
* @param {number} [page]
|
|
34719
34895
|
* @param {number} [limit]
|
|
34720
34896
|
* @param {Date} [lastRetrieved]
|
|
34721
34897
|
* @param {*} [options] Override http request option.
|
|
34722
34898
|
* @throws {RequiredError}
|
|
34723
34899
|
*/
|
|
34724
|
-
async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date,
|
|
34725
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created,
|
|
34900
|
+
async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServicesModel>> {
|
|
34901
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options);
|
|
34726
34902
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
34727
34903
|
},
|
|
34728
34904
|
/**
|
|
@@ -34957,7 +35133,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34957
35133
|
* @param {boolean} [showHidden]
|
|
34958
35134
|
* @param {string} [languageCode]
|
|
34959
35135
|
* @param {Array<string>} [ids]
|
|
34960
|
-
* @param {boolean} [returnDefaultValue]
|
|
34961
35136
|
* @param {boolean} [paymentEnabled]
|
|
34962
35137
|
* @param {number} [page]
|
|
34963
35138
|
* @param {number} [limit]
|
|
@@ -34965,8 +35140,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
34965
35140
|
* @param {*} [options] Override http request option.
|
|
34966
35141
|
* @throws {RequiredError}
|
|
34967
35142
|
*/
|
|
34968
|
-
async apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>,
|
|
34969
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
35143
|
+
async apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>> {
|
|
35144
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options);
|
|
34970
35145
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
34971
35146
|
},
|
|
34972
35147
|
/**
|
|
@@ -35005,7 +35180,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
35005
35180
|
* @param {boolean} [showHidden]
|
|
35006
35181
|
* @param {string} [languageCode]
|
|
35007
35182
|
* @param {Array<string>} [ids]
|
|
35008
|
-
* @param {boolean} [returnDefaultValue]
|
|
35009
35183
|
* @param {boolean} [paymentEnabled]
|
|
35010
35184
|
* @param {number} [page]
|
|
35011
35185
|
* @param {number} [limit]
|
|
@@ -35013,8 +35187,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
35013
35187
|
* @param {*} [options] Override http request option.
|
|
35014
35188
|
* @throws {RequiredError}
|
|
35015
35189
|
*/
|
|
35016
|
-
apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>,
|
|
35017
|
-
return localVarFp.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
35190
|
+
apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel> {
|
|
35191
|
+
return localVarFp.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
35018
35192
|
},
|
|
35019
35193
|
/**
|
|
35020
35194
|
*
|
|
@@ -35431,8 +35605,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
35431
35605
|
* @param {string} [name]
|
|
35432
35606
|
* @param {string} [slug]
|
|
35433
35607
|
* @param {MarketingType} [marketingType]
|
|
35434
|
-
* @param {boolean} [returnDefaultValue]
|
|
35435
|
-
* @param {boolean} [includeServices]
|
|
35436
35608
|
* @param {string} [languageCode]
|
|
35437
35609
|
* @param {boolean} [showHidden]
|
|
35438
35610
|
* @param {number} [page]
|
|
@@ -35441,8 +35613,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
35441
35613
|
* @param {*} [options] Override http request option.
|
|
35442
35614
|
* @throws {RequiredError}
|
|
35443
35615
|
*/
|
|
35444
|
-
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
35445
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
35616
|
+
apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesModel> {
|
|
35617
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
35446
35618
|
},
|
|
35447
35619
|
/**
|
|
35448
35620
|
*
|
|
@@ -35532,8 +35704,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
35532
35704
|
* @param {string} [name]
|
|
35533
35705
|
* @param {string} [slug]
|
|
35534
35706
|
* @param {MarketingType} [marketingType]
|
|
35535
|
-
* @param {boolean} [returnDefaultValue]
|
|
35536
|
-
* @param {boolean} [includeServices]
|
|
35537
35707
|
* @param {string} [languageCode]
|
|
35538
35708
|
* @param {boolean} [showHidden]
|
|
35539
35709
|
* @param {number} [page]
|
|
@@ -35542,8 +35712,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
35542
35712
|
* @param {*} [options] Override http request option.
|
|
35543
35713
|
* @throws {RequiredError}
|
|
35544
35714
|
*/
|
|
35545
|
-
apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
35546
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
35715
|
+
apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel> {
|
|
35716
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
35547
35717
|
},
|
|
35548
35718
|
/**
|
|
35549
35719
|
*
|
|
@@ -35576,13 +35746,11 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
35576
35746
|
* @param {string} hospitalId
|
|
35577
35747
|
* @param {string} specialtyId
|
|
35578
35748
|
* @param {string} [languageCode]
|
|
35579
|
-
* @param {boolean} [returnDefaultValue]
|
|
35580
|
-
* @param {boolean} [includeServices]
|
|
35581
35749
|
* @param {*} [options] Override http request option.
|
|
35582
35750
|
* @throws {RequiredError}
|
|
35583
35751
|
*/
|
|
35584
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string,
|
|
35585
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode,
|
|
35752
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: any): AxiosPromise<HospitalSpecialtyModel> {
|
|
35753
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then((request) => request(axios, basePath));
|
|
35586
35754
|
},
|
|
35587
35755
|
/**
|
|
35588
35756
|
*
|
|
@@ -35608,16 +35776,16 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
35608
35776
|
* @param {MarketingType} [marketingType]
|
|
35609
35777
|
* @param {Procedure} [procedure]
|
|
35610
35778
|
* @param {Date} [created]
|
|
35779
|
+
* @param {boolean} [showHidden]
|
|
35611
35780
|
* @param {string} [languageCode]
|
|
35612
|
-
* @param {boolean} [returnDefaultValue]
|
|
35613
35781
|
* @param {number} [page]
|
|
35614
35782
|
* @param {number} [limit]
|
|
35615
35783
|
* @param {Date} [lastRetrieved]
|
|
35616
35784
|
* @param {*} [options] Override http request option.
|
|
35617
35785
|
* @throws {RequiredError}
|
|
35618
35786
|
*/
|
|
35619
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date,
|
|
35620
|
-
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created,
|
|
35787
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalServicesModel> {
|
|
35788
|
+
return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
35621
35789
|
},
|
|
35622
35790
|
/**
|
|
35623
35791
|
*
|
|
@@ -35835,7 +36003,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
35835
36003
|
* @param {boolean} [showHidden]
|
|
35836
36004
|
* @param {string} [languageCode]
|
|
35837
36005
|
* @param {Array<string>} [ids]
|
|
35838
|
-
* @param {boolean} [returnDefaultValue]
|
|
35839
36006
|
* @param {boolean} [paymentEnabled]
|
|
35840
36007
|
* @param {number} [page]
|
|
35841
36008
|
* @param {number} [limit]
|
|
@@ -35843,8 +36010,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
35843
36010
|
* @param {*} [options] Override http request option.
|
|
35844
36011
|
* @throws {RequiredError}
|
|
35845
36012
|
*/
|
|
35846
|
-
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>,
|
|
35847
|
-
return localVarFp.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
36013
|
+
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel> {
|
|
36014
|
+
return localVarFp.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
35848
36015
|
},
|
|
35849
36016
|
/**
|
|
35850
36017
|
*
|
|
@@ -35881,7 +36048,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
35881
36048
|
* @param {boolean} [showHidden]
|
|
35882
36049
|
* @param {string} [languageCode]
|
|
35883
36050
|
* @param {Array<string>} [ids]
|
|
35884
|
-
* @param {boolean} [returnDefaultValue]
|
|
35885
36051
|
* @param {boolean} [paymentEnabled]
|
|
35886
36052
|
* @param {number} [page]
|
|
35887
36053
|
* @param {number} [limit]
|
|
@@ -35890,8 +36056,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
35890
36056
|
* @throws {RequiredError}
|
|
35891
36057
|
* @memberof HospitalsApi
|
|
35892
36058
|
*/
|
|
35893
|
-
public apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>,
|
|
35894
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
36059
|
+
public apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
36060
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
35895
36061
|
}
|
|
35896
36062
|
|
|
35897
36063
|
/**
|
|
@@ -36375,8 +36541,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
36375
36541
|
* @param {string} [name]
|
|
36376
36542
|
* @param {string} [slug]
|
|
36377
36543
|
* @param {MarketingType} [marketingType]
|
|
36378
|
-
* @param {boolean} [returnDefaultValue]
|
|
36379
|
-
* @param {boolean} [includeServices]
|
|
36380
36544
|
* @param {string} [languageCode]
|
|
36381
36545
|
* @param {boolean} [showHidden]
|
|
36382
36546
|
* @param {number} [page]
|
|
@@ -36386,8 +36550,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
36386
36550
|
* @throws {RequiredError}
|
|
36387
36551
|
* @memberof HospitalsApi
|
|
36388
36552
|
*/
|
|
36389
|
-
public apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
36390
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
36553
|
+
public apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
36554
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
36391
36555
|
}
|
|
36392
36556
|
|
|
36393
36557
|
/**
|
|
@@ -36490,8 +36654,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
36490
36654
|
* @param {string} [name]
|
|
36491
36655
|
* @param {string} [slug]
|
|
36492
36656
|
* @param {MarketingType} [marketingType]
|
|
36493
|
-
* @param {boolean} [returnDefaultValue]
|
|
36494
|
-
* @param {boolean} [includeServices]
|
|
36495
36657
|
* @param {string} [languageCode]
|
|
36496
36658
|
* @param {boolean} [showHidden]
|
|
36497
36659
|
* @param {number} [page]
|
|
@@ -36501,8 +36663,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
36501
36663
|
* @throws {RequiredError}
|
|
36502
36664
|
* @memberof HospitalsApi
|
|
36503
36665
|
*/
|
|
36504
|
-
public apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType,
|
|
36505
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType,
|
|
36666
|
+
public apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
36667
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
36506
36668
|
}
|
|
36507
36669
|
|
|
36508
36670
|
/**
|
|
@@ -36540,14 +36702,12 @@ export class HospitalsApi extends BaseAPI {
|
|
|
36540
36702
|
* @param {string} hospitalId
|
|
36541
36703
|
* @param {string} specialtyId
|
|
36542
36704
|
* @param {string} [languageCode]
|
|
36543
|
-
* @param {boolean} [returnDefaultValue]
|
|
36544
|
-
* @param {boolean} [includeServices]
|
|
36545
36705
|
* @param {*} [options] Override http request option.
|
|
36546
36706
|
* @throws {RequiredError}
|
|
36547
36707
|
* @memberof HospitalsApi
|
|
36548
36708
|
*/
|
|
36549
|
-
public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string,
|
|
36550
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode,
|
|
36709
|
+
public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig) {
|
|
36710
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
36551
36711
|
}
|
|
36552
36712
|
|
|
36553
36713
|
/**
|
|
@@ -36576,8 +36736,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
36576
36736
|
* @param {MarketingType} [marketingType]
|
|
36577
36737
|
* @param {Procedure} [procedure]
|
|
36578
36738
|
* @param {Date} [created]
|
|
36739
|
+
* @param {boolean} [showHidden]
|
|
36579
36740
|
* @param {string} [languageCode]
|
|
36580
|
-
* @param {boolean} [returnDefaultValue]
|
|
36581
36741
|
* @param {number} [page]
|
|
36582
36742
|
* @param {number} [limit]
|
|
36583
36743
|
* @param {Date} [lastRetrieved]
|
|
@@ -36585,8 +36745,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
36585
36745
|
* @throws {RequiredError}
|
|
36586
36746
|
* @memberof HospitalsApi
|
|
36587
36747
|
*/
|
|
36588
|
-
public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date,
|
|
36589
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created,
|
|
36748
|
+
public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
36749
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
36590
36750
|
}
|
|
36591
36751
|
|
|
36592
36752
|
/**
|
|
@@ -36837,7 +36997,6 @@ export class HospitalsApi extends BaseAPI {
|
|
|
36837
36997
|
* @param {boolean} [showHidden]
|
|
36838
36998
|
* @param {string} [languageCode]
|
|
36839
36999
|
* @param {Array<string>} [ids]
|
|
36840
|
-
* @param {boolean} [returnDefaultValue]
|
|
36841
37000
|
* @param {boolean} [paymentEnabled]
|
|
36842
37001
|
* @param {number} [page]
|
|
36843
37002
|
* @param {number} [limit]
|
|
@@ -36846,8 +37005,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
36846
37005
|
* @throws {RequiredError}
|
|
36847
37006
|
* @memberof HospitalsApi
|
|
36848
37007
|
*/
|
|
36849
|
-
public apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>,
|
|
36850
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids,
|
|
37008
|
+
public apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
37009
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
36851
37010
|
}
|
|
36852
37011
|
|
|
36853
37012
|
/**
|
|
@@ -37586,14 +37745,16 @@ export const ManagersApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
37586
37745
|
*
|
|
37587
37746
|
* @summary Get all manager affiliations.
|
|
37588
37747
|
* @param {string} managerId
|
|
37748
|
+
* @param {string} [hospitalId]
|
|
37589
37749
|
* @param {string} [hospitalName]
|
|
37750
|
+
* @param {string} [languageCode]
|
|
37590
37751
|
* @param {number} [page]
|
|
37591
37752
|
* @param {number} [limit]
|
|
37592
37753
|
* @param {Date} [lastRetrieved]
|
|
37593
37754
|
* @param {*} [options] Override http request option.
|
|
37594
37755
|
* @throws {RequiredError}
|
|
37595
37756
|
*/
|
|
37596
|
-
apiV1ManagersManagerIdAffiliationsGet: async (managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37757
|
+
apiV1ManagersManagerIdAffiliationsGet: async (managerId: string, hospitalId?: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37597
37758
|
// verify required parameter 'managerId' is not null or undefined
|
|
37598
37759
|
assertParamExists('apiV1ManagersManagerIdAffiliationsGet', 'managerId', managerId)
|
|
37599
37760
|
const localVarPath = `/api/v1/managers/{managerId}/affiliations`
|
|
@@ -37613,10 +37774,18 @@ export const ManagersApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
37613
37774
|
// oauth required
|
|
37614
37775
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
37615
37776
|
|
|
37777
|
+
if (hospitalId !== undefined) {
|
|
37778
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
37779
|
+
}
|
|
37780
|
+
|
|
37616
37781
|
if (hospitalName !== undefined) {
|
|
37617
37782
|
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
37618
37783
|
}
|
|
37619
37784
|
|
|
37785
|
+
if (languageCode !== undefined) {
|
|
37786
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
37787
|
+
}
|
|
37788
|
+
|
|
37620
37789
|
if (page !== undefined) {
|
|
37621
37790
|
localVarQueryParameter['page'] = page;
|
|
37622
37791
|
}
|
|
@@ -37958,15 +38127,17 @@ export const ManagersApiFp = function(configuration?: Configuration) {
|
|
|
37958
38127
|
*
|
|
37959
38128
|
* @summary Get all manager affiliations.
|
|
37960
38129
|
* @param {string} managerId
|
|
38130
|
+
* @param {string} [hospitalId]
|
|
37961
38131
|
* @param {string} [hospitalName]
|
|
38132
|
+
* @param {string} [languageCode]
|
|
37962
38133
|
* @param {number} [page]
|
|
37963
38134
|
* @param {number} [limit]
|
|
37964
38135
|
* @param {Date} [lastRetrieved]
|
|
37965
38136
|
* @param {*} [options] Override http request option.
|
|
37966
38137
|
* @throws {RequiredError}
|
|
37967
38138
|
*/
|
|
37968
|
-
async apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagerAffiliationsModel>> {
|
|
37969
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalName, page, limit, lastRetrieved, options);
|
|
38139
|
+
async apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalId?: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagerAffiliationsModel>> {
|
|
38140
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options);
|
|
37970
38141
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37971
38142
|
},
|
|
37972
38143
|
/**
|
|
@@ -38083,15 +38254,17 @@ export const ManagersApiFactory = function (configuration?: Configuration, baseP
|
|
|
38083
38254
|
*
|
|
38084
38255
|
* @summary Get all manager affiliations.
|
|
38085
38256
|
* @param {string} managerId
|
|
38257
|
+
* @param {string} [hospitalId]
|
|
38086
38258
|
* @param {string} [hospitalName]
|
|
38259
|
+
* @param {string} [languageCode]
|
|
38087
38260
|
* @param {number} [page]
|
|
38088
38261
|
* @param {number} [limit]
|
|
38089
38262
|
* @param {Date} [lastRetrieved]
|
|
38090
38263
|
* @param {*} [options] Override http request option.
|
|
38091
38264
|
* @throws {RequiredError}
|
|
38092
38265
|
*/
|
|
38093
|
-
apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ManagerAffiliationsModel> {
|
|
38094
|
-
return localVarFp.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
38266
|
+
apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalId?: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ManagerAffiliationsModel> {
|
|
38267
|
+
return localVarFp.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
38095
38268
|
},
|
|
38096
38269
|
/**
|
|
38097
38270
|
*
|
|
@@ -38202,7 +38375,9 @@ export class ManagersApi extends BaseAPI {
|
|
|
38202
38375
|
*
|
|
38203
38376
|
* @summary Get all manager affiliations.
|
|
38204
38377
|
* @param {string} managerId
|
|
38378
|
+
* @param {string} [hospitalId]
|
|
38205
38379
|
* @param {string} [hospitalName]
|
|
38380
|
+
* @param {string} [languageCode]
|
|
38206
38381
|
* @param {number} [page]
|
|
38207
38382
|
* @param {number} [limit]
|
|
38208
38383
|
* @param {Date} [lastRetrieved]
|
|
@@ -38210,8 +38385,8 @@ export class ManagersApi extends BaseAPI {
|
|
|
38210
38385
|
* @throws {RequiredError}
|
|
38211
38386
|
* @memberof ManagersApi
|
|
38212
38387
|
*/
|
|
38213
|
-
public apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
38214
|
-
return ManagersApiFp(this.configuration).apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
38388
|
+
public apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalId?: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
38389
|
+
return ManagersApiFp(this.configuration).apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
38215
38390
|
}
|
|
38216
38391
|
|
|
38217
38392
|
/**
|
|
@@ -41012,13 +41187,14 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
41012
41187
|
* @param {number} [rate]
|
|
41013
41188
|
* @param {ReviewType} [reviewType]
|
|
41014
41189
|
* @param {string} [languageCode]
|
|
41190
|
+
* @param {boolean} [showHidden]
|
|
41015
41191
|
* @param {number} [page]
|
|
41016
41192
|
* @param {number} [limit]
|
|
41017
41193
|
* @param {Date} [lastRetrieved]
|
|
41018
41194
|
* @param {*} [options] Override http request option.
|
|
41019
41195
|
* @throws {RequiredError}
|
|
41020
41196
|
*/
|
|
41021
|
-
apiV1ServicereviewsGet: async (serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41197
|
+
apiV1ServicereviewsGet: async (serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41022
41198
|
const localVarPath = `/api/v1/servicereviews`;
|
|
41023
41199
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
41024
41200
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -41071,6 +41247,10 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
41071
41247
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
41072
41248
|
}
|
|
41073
41249
|
|
|
41250
|
+
if (showHidden !== undefined) {
|
|
41251
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
41252
|
+
}
|
|
41253
|
+
|
|
41074
41254
|
if (page !== undefined) {
|
|
41075
41255
|
localVarQueryParameter['page'] = page;
|
|
41076
41256
|
}
|
|
@@ -41510,14 +41690,15 @@ export const ServiceReviewsApiFp = function(configuration?: Configuration) {
|
|
|
41510
41690
|
* @param {number} [rate]
|
|
41511
41691
|
* @param {ReviewType} [reviewType]
|
|
41512
41692
|
* @param {string} [languageCode]
|
|
41693
|
+
* @param {boolean} [showHidden]
|
|
41513
41694
|
* @param {number} [page]
|
|
41514
41695
|
* @param {number} [limit]
|
|
41515
41696
|
* @param {Date} [lastRetrieved]
|
|
41516
41697
|
* @param {*} [options] Override http request option.
|
|
41517
41698
|
* @throws {RequiredError}
|
|
41518
41699
|
*/
|
|
41519
|
-
async apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
|
|
41520
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options);
|
|
41700
|
+
async apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
|
|
41701
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
41521
41702
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
41522
41703
|
},
|
|
41523
41704
|
/**
|
|
@@ -41651,14 +41832,15 @@ export const ServiceReviewsApiFactory = function (configuration?: Configuration,
|
|
|
41651
41832
|
* @param {number} [rate]
|
|
41652
41833
|
* @param {ReviewType} [reviewType]
|
|
41653
41834
|
* @param {string} [languageCode]
|
|
41835
|
+
* @param {boolean} [showHidden]
|
|
41654
41836
|
* @param {number} [page]
|
|
41655
41837
|
* @param {number} [limit]
|
|
41656
41838
|
* @param {Date} [lastRetrieved]
|
|
41657
41839
|
* @param {*} [options] Override http request option.
|
|
41658
41840
|
* @throws {RequiredError}
|
|
41659
41841
|
*/
|
|
41660
|
-
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceReviewsModel> {
|
|
41661
|
-
return localVarFp.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
41842
|
+
apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceReviewsModel> {
|
|
41843
|
+
return localVarFp.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
41662
41844
|
},
|
|
41663
41845
|
/**
|
|
41664
41846
|
*
|
|
@@ -41782,6 +41964,7 @@ export class ServiceReviewsApi extends BaseAPI {
|
|
|
41782
41964
|
* @param {number} [rate]
|
|
41783
41965
|
* @param {ReviewType} [reviewType]
|
|
41784
41966
|
* @param {string} [languageCode]
|
|
41967
|
+
* @param {boolean} [showHidden]
|
|
41785
41968
|
* @param {number} [page]
|
|
41786
41969
|
* @param {number} [limit]
|
|
41787
41970
|
* @param {Date} [lastRetrieved]
|
|
@@ -41789,8 +41972,8 @@ export class ServiceReviewsApi extends BaseAPI {
|
|
|
41789
41972
|
* @throws {RequiredError}
|
|
41790
41973
|
* @memberof ServiceReviewsApi
|
|
41791
41974
|
*/
|
|
41792
|
-
public apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
41793
|
-
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
41975
|
+
public apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
41976
|
+
return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
41794
41977
|
}
|
|
41795
41978
|
|
|
41796
41979
|
/**
|
|
@@ -41936,15 +42119,15 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
41936
42119
|
* @param {MarketingType} [marketingType]
|
|
41937
42120
|
* @param {Procedure} [procedure]
|
|
41938
42121
|
* @param {Date} [created]
|
|
42122
|
+
* @param {boolean} [showHidden]
|
|
41939
42123
|
* @param {string} [languageCode]
|
|
41940
|
-
* @param {boolean} [returnDefaultValue]
|
|
41941
42124
|
* @param {number} [page]
|
|
41942
42125
|
* @param {number} [limit]
|
|
41943
42126
|
* @param {Date} [lastRetrieved]
|
|
41944
42127
|
* @param {*} [options] Override http request option.
|
|
41945
42128
|
* @throws {RequiredError}
|
|
41946
42129
|
*/
|
|
41947
|
-
apiV1ServicesGet: async (id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date,
|
|
42130
|
+
apiV1ServicesGet: async (id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
41948
42131
|
const localVarPath = `/api/v1/services`;
|
|
41949
42132
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
41950
42133
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -42019,12 +42202,12 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
42019
42202
|
created;
|
|
42020
42203
|
}
|
|
42021
42204
|
|
|
42022
|
-
if (
|
|
42023
|
-
localVarQueryParameter['
|
|
42205
|
+
if (showHidden !== undefined) {
|
|
42206
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
42024
42207
|
}
|
|
42025
42208
|
|
|
42026
|
-
if (
|
|
42027
|
-
localVarQueryParameter['
|
|
42209
|
+
if (languageCode !== undefined) {
|
|
42210
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
42028
42211
|
}
|
|
42029
42212
|
|
|
42030
42213
|
if (page !== undefined) {
|
|
@@ -42173,16 +42356,16 @@ export const ServicesApiFp = function(configuration?: Configuration) {
|
|
|
42173
42356
|
* @param {MarketingType} [marketingType]
|
|
42174
42357
|
* @param {Procedure} [procedure]
|
|
42175
42358
|
* @param {Date} [created]
|
|
42359
|
+
* @param {boolean} [showHidden]
|
|
42176
42360
|
* @param {string} [languageCode]
|
|
42177
|
-
* @param {boolean} [returnDefaultValue]
|
|
42178
42361
|
* @param {number} [page]
|
|
42179
42362
|
* @param {number} [limit]
|
|
42180
42363
|
* @param {Date} [lastRetrieved]
|
|
42181
42364
|
* @param {*} [options] Override http request option.
|
|
42182
42365
|
* @throws {RequiredError}
|
|
42183
42366
|
*/
|
|
42184
|
-
async apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date,
|
|
42185
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created,
|
|
42367
|
+
async apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServicesModel>> {
|
|
42368
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options);
|
|
42186
42369
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
42187
42370
|
},
|
|
42188
42371
|
/**
|
|
@@ -42236,16 +42419,16 @@ export const ServicesApiFactory = function (configuration?: Configuration, baseP
|
|
|
42236
42419
|
* @param {MarketingType} [marketingType]
|
|
42237
42420
|
* @param {Procedure} [procedure]
|
|
42238
42421
|
* @param {Date} [created]
|
|
42422
|
+
* @param {boolean} [showHidden]
|
|
42239
42423
|
* @param {string} [languageCode]
|
|
42240
|
-
* @param {boolean} [returnDefaultValue]
|
|
42241
42424
|
* @param {number} [page]
|
|
42242
42425
|
* @param {number} [limit]
|
|
42243
42426
|
* @param {Date} [lastRetrieved]
|
|
42244
42427
|
* @param {*} [options] Override http request option.
|
|
42245
42428
|
* @throws {RequiredError}
|
|
42246
42429
|
*/
|
|
42247
|
-
apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date,
|
|
42248
|
-
return localVarFp.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created,
|
|
42430
|
+
apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalServicesModel> {
|
|
42431
|
+
return localVarFp.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
42249
42432
|
},
|
|
42250
42433
|
/**
|
|
42251
42434
|
*
|
|
@@ -42296,8 +42479,8 @@ export class ServicesApi extends BaseAPI {
|
|
|
42296
42479
|
* @param {MarketingType} [marketingType]
|
|
42297
42480
|
* @param {Procedure} [procedure]
|
|
42298
42481
|
* @param {Date} [created]
|
|
42482
|
+
* @param {boolean} [showHidden]
|
|
42299
42483
|
* @param {string} [languageCode]
|
|
42300
|
-
* @param {boolean} [returnDefaultValue]
|
|
42301
42484
|
* @param {number} [page]
|
|
42302
42485
|
* @param {number} [limit]
|
|
42303
42486
|
* @param {Date} [lastRetrieved]
|
|
@@ -42305,8 +42488,8 @@ export class ServicesApi extends BaseAPI {
|
|
|
42305
42488
|
* @throws {RequiredError}
|
|
42306
42489
|
* @memberof ServicesApi
|
|
42307
42490
|
*/
|
|
42308
|
-
public apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date,
|
|
42309
|
-
return ServicesApiFp(this.configuration).apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created,
|
|
42491
|
+
public apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
42492
|
+
return ServicesApiFp(this.configuration).apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
42310
42493
|
}
|
|
42311
42494
|
|
|
42312
42495
|
/**
|