ch-admin-api-client-typescript 3.4.0 → 3.4.6

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 CHANGED
@@ -465,6 +465,30 @@ export interface ArticleContributorModel {
465
465
  * @memberof ArticleContributorModel
466
466
  */
467
467
  'auditableEntity'?: AuditableEntity;
468
+ /**
469
+ *
470
+ * @type {string}
471
+ * @memberof ArticleContributorModel
472
+ */
473
+ 'contributorDescription'?: string | null;
474
+ /**
475
+ *
476
+ * @type {string}
477
+ * @memberof ArticleContributorModel
478
+ */
479
+ 'contributorOverview'?: string | null;
480
+ /**
481
+ *
482
+ * @type {string}
483
+ * @memberof ArticleContributorModel
484
+ */
485
+ 'contributorContent'?: string | null;
486
+ /**
487
+ *
488
+ * @type {Array<SnsHandle>}
489
+ * @memberof ArticleContributorModel
490
+ */
491
+ 'contributorSnsHandles'?: Array<SnsHandle> | null;
468
492
  }
469
493
  /**
470
494
  *
@@ -545,6 +569,18 @@ export interface ArticleItemModel {
545
569
  * @memberof ArticleItemModel
546
570
  */
547
571
  'hospitalId'?: string;
572
+ /**
573
+ *
574
+ * @type {string}
575
+ * @memberof ArticleItemModel
576
+ */
577
+ 'hospitalName'?: string | null;
578
+ /**
579
+ *
580
+ * @type {string}
581
+ * @memberof ArticleItemModel
582
+ */
583
+ 'hospitalSlug'?: string | null;
548
584
  /**
549
585
  *
550
586
  * @type {AuditableEntity}
@@ -612,6 +648,18 @@ export interface ArticleModel {
612
648
  * @memberof ArticleModel
613
649
  */
614
650
  'hospitalId'?: string;
651
+ /**
652
+ *
653
+ * @type {string}
654
+ * @memberof ArticleModel
655
+ */
656
+ 'hospitalName'?: string | null;
657
+ /**
658
+ *
659
+ * @type {string}
660
+ * @memberof ArticleModel
661
+ */
662
+ 'hospitalSlug'?: string | null;
615
663
  /**
616
664
  *
617
665
  * @type {AuditableEntity}
@@ -870,6 +918,12 @@ export interface BookingItemModel {
870
918
  * @memberof BookingItemModel
871
919
  */
872
920
  'id'?: string;
921
+ /**
922
+ *
923
+ * @type {string}
924
+ * @memberof BookingItemModel
925
+ */
926
+ 'languageCode'?: string | null;
873
927
  /**
874
928
  *
875
929
  * @type {string}
@@ -893,103 +947,103 @@ export interface BookingItemModel {
893
947
  * @type {string}
894
948
  * @memberof BookingItemModel
895
949
  */
896
- 'hospitalId'?: string;
950
+ 'firstName'?: string | null;
897
951
  /**
898
952
  *
899
953
  * @type {string}
900
954
  * @memberof BookingItemModel
901
955
  */
902
- 'hospitalName'?: string | null;
956
+ 'lastName'?: string | null;
903
957
  /**
904
958
  *
905
959
  * @type {string}
906
960
  * @memberof BookingItemModel
907
961
  */
908
- 'hospitalSlug'?: string | null;
962
+ 'email'?: string | null;
909
963
  /**
910
964
  *
911
965
  * @type {string}
912
966
  * @memberof BookingItemModel
913
967
  */
914
- 'hospitalTimeZone'?: string | null;
968
+ 'phone'?: string | null;
915
969
  /**
916
970
  *
917
- * @type {string}
971
+ * @type {Date}
918
972
  * @memberof BookingItemModel
919
973
  */
920
- 'dealId'?: string;
974
+ 'dateOfBirth'?: Date | null;
921
975
  /**
922
976
  *
923
- * @type {string}
977
+ * @type {Gender}
924
978
  * @memberof BookingItemModel
925
979
  */
926
- 'dealName'?: string | null;
980
+ 'gender'?: Gender;
927
981
  /**
928
982
  *
929
983
  * @type {string}
930
984
  * @memberof BookingItemModel
931
985
  */
932
- 'dealSlug'?: string | null;
986
+ 'comment'?: string | null;
933
987
  /**
934
988
  *
935
989
  * @type {string}
936
990
  * @memberof BookingItemModel
937
991
  */
938
- 'dealPackageId'?: string;
992
+ 'hospitalId'?: string;
939
993
  /**
940
994
  *
941
- * @type {RefundPolicy}
995
+ * @type {string}
942
996
  * @memberof BookingItemModel
943
997
  */
944
- 'refundPolicy'?: RefundPolicy;
998
+ 'hospitalName'?: string | null;
945
999
  /**
946
1000
  *
947
- * @type {number}
1001
+ * @type {string}
948
1002
  * @memberof BookingItemModel
949
1003
  */
950
- 'quantity'?: number;
1004
+ 'hospitalSlug'?: string | null;
951
1005
  /**
952
1006
  *
953
1007
  * @type {string}
954
1008
  * @memberof BookingItemModel
955
1009
  */
956
- 'firstName'?: string | null;
1010
+ 'hospitalTimeZone'?: string | null;
957
1011
  /**
958
1012
  *
959
1013
  * @type {string}
960
1014
  * @memberof BookingItemModel
961
1015
  */
962
- 'lastName'?: string | null;
1016
+ 'dealId'?: string;
963
1017
  /**
964
1018
  *
965
1019
  * @type {string}
966
1020
  * @memberof BookingItemModel
967
1021
  */
968
- 'email'?: string | null;
1022
+ 'dealName'?: string | null;
969
1023
  /**
970
1024
  *
971
1025
  * @type {string}
972
1026
  * @memberof BookingItemModel
973
1027
  */
974
- 'phone'?: string | null;
1028
+ 'dealSlug'?: string | null;
975
1029
  /**
976
1030
  *
977
- * @type {Date}
1031
+ * @type {string}
978
1032
  * @memberof BookingItemModel
979
1033
  */
980
- 'dateOfBirth'?: Date | null;
1034
+ 'dealPackageId'?: string;
981
1035
  /**
982
1036
  *
983
- * @type {Gender}
1037
+ * @type {RefundPolicy}
984
1038
  * @memberof BookingItemModel
985
1039
  */
986
- 'gender'?: Gender;
1040
+ 'refundPolicy'?: RefundPolicy;
987
1041
  /**
988
1042
  *
989
- * @type {string}
1043
+ * @type {number}
990
1044
  * @memberof BookingItemModel
991
1045
  */
992
- 'comment'?: string | null;
1046
+ 'quantity'?: number;
993
1047
  /**
994
1048
  *
995
1049
  * @type {Date}
@@ -1074,12 +1128,6 @@ export interface BookingItemModel {
1074
1128
  * @memberof BookingItemModel
1075
1129
  */
1076
1130
  'isOpen'?: boolean;
1077
- /**
1078
- *
1079
- * @type {number}
1080
- * @memberof BookingItemModel
1081
- */
1082
- 'completionRate'?: number;
1083
1131
  /**
1084
1132
  *
1085
1133
  * @type {boolean}
@@ -1099,6 +1147,12 @@ export interface BookingModel {
1099
1147
  * @memberof BookingModel
1100
1148
  */
1101
1149
  'id'?: string;
1150
+ /**
1151
+ *
1152
+ * @type {string}
1153
+ * @memberof BookingModel
1154
+ */
1155
+ 'languageCode'?: string | null;
1102
1156
  /**
1103
1157
  *
1104
1158
  * @type {string}
@@ -1122,103 +1176,103 @@ export interface BookingModel {
1122
1176
  * @type {string}
1123
1177
  * @memberof BookingModel
1124
1178
  */
1125
- 'hospitalId'?: string;
1179
+ 'firstName'?: string | null;
1126
1180
  /**
1127
1181
  *
1128
1182
  * @type {string}
1129
1183
  * @memberof BookingModel
1130
1184
  */
1131
- 'hospitalName'?: string | null;
1185
+ 'lastName'?: string | null;
1132
1186
  /**
1133
1187
  *
1134
1188
  * @type {string}
1135
1189
  * @memberof BookingModel
1136
1190
  */
1137
- 'hospitalSlug'?: string | null;
1191
+ 'email'?: string | null;
1138
1192
  /**
1139
1193
  *
1140
1194
  * @type {string}
1141
1195
  * @memberof BookingModel
1142
1196
  */
1143
- 'hospitalTimeZone'?: string | null;
1197
+ 'phone'?: string | null;
1144
1198
  /**
1145
1199
  *
1146
- * @type {string}
1200
+ * @type {Date}
1147
1201
  * @memberof BookingModel
1148
1202
  */
1149
- 'dealId'?: string;
1203
+ 'dateOfBirth'?: Date | null;
1150
1204
  /**
1151
1205
  *
1152
- * @type {string}
1206
+ * @type {Gender}
1153
1207
  * @memberof BookingModel
1154
1208
  */
1155
- 'dealName'?: string | null;
1209
+ 'gender'?: Gender;
1156
1210
  /**
1157
1211
  *
1158
1212
  * @type {string}
1159
1213
  * @memberof BookingModel
1160
1214
  */
1161
- 'dealSlug'?: string | null;
1215
+ 'comment'?: string | null;
1162
1216
  /**
1163
1217
  *
1164
1218
  * @type {string}
1165
1219
  * @memberof BookingModel
1166
1220
  */
1167
- 'dealPackageId'?: string;
1221
+ 'hospitalId'?: string;
1168
1222
  /**
1169
1223
  *
1170
- * @type {RefundPolicy}
1224
+ * @type {string}
1171
1225
  * @memberof BookingModel
1172
1226
  */
1173
- 'refundPolicy'?: RefundPolicy;
1227
+ 'hospitalName'?: string | null;
1174
1228
  /**
1175
1229
  *
1176
- * @type {number}
1230
+ * @type {string}
1177
1231
  * @memberof BookingModel
1178
1232
  */
1179
- 'quantity'?: number;
1233
+ 'hospitalSlug'?: string | null;
1180
1234
  /**
1181
1235
  *
1182
1236
  * @type {string}
1183
1237
  * @memberof BookingModel
1184
1238
  */
1185
- 'firstName'?: string | null;
1239
+ 'hospitalTimeZone'?: string | null;
1186
1240
  /**
1187
1241
  *
1188
1242
  * @type {string}
1189
1243
  * @memberof BookingModel
1190
1244
  */
1191
- 'lastName'?: string | null;
1245
+ 'dealId'?: string;
1192
1246
  /**
1193
1247
  *
1194
1248
  * @type {string}
1195
1249
  * @memberof BookingModel
1196
1250
  */
1197
- 'email'?: string | null;
1251
+ 'dealName'?: string | null;
1198
1252
  /**
1199
1253
  *
1200
1254
  * @type {string}
1201
1255
  * @memberof BookingModel
1202
1256
  */
1203
- 'phone'?: string | null;
1257
+ 'dealSlug'?: string | null;
1204
1258
  /**
1205
1259
  *
1206
- * @type {Date}
1260
+ * @type {string}
1207
1261
  * @memberof BookingModel
1208
1262
  */
1209
- 'dateOfBirth'?: Date | null;
1263
+ 'dealPackageId'?: string;
1210
1264
  /**
1211
1265
  *
1212
- * @type {Gender}
1266
+ * @type {RefundPolicy}
1213
1267
  * @memberof BookingModel
1214
1268
  */
1215
- 'gender'?: Gender;
1269
+ 'refundPolicy'?: RefundPolicy;
1216
1270
  /**
1217
1271
  *
1218
- * @type {string}
1272
+ * @type {number}
1219
1273
  * @memberof BookingModel
1220
1274
  */
1221
- 'comment'?: string | null;
1275
+ 'quantity'?: number;
1222
1276
  /**
1223
1277
  *
1224
1278
  * @type {Date}
@@ -1303,12 +1357,6 @@ export interface BookingModel {
1303
1357
  * @memberof BookingModel
1304
1358
  */
1305
1359
  'isOpen'?: boolean;
1306
- /**
1307
- *
1308
- * @type {number}
1309
- * @memberof BookingModel
1310
- */
1311
- 'completionRate'?: number;
1312
1360
  /**
1313
1361
  *
1314
1362
  * @type {boolean}
@@ -1992,6 +2040,12 @@ export interface ConsultationItemModel {
1992
2040
  * @memberof ConsultationItemModel
1993
2041
  */
1994
2042
  'id'?: string;
2043
+ /**
2044
+ *
2045
+ * @type {string}
2046
+ * @memberof ConsultationItemModel
2047
+ */
2048
+ 'languageCode'?: string | null;
1995
2049
  /**
1996
2050
  *
1997
2051
  * @type {ConsultationType}
@@ -2021,139 +2075,115 @@ export interface ConsultationItemModel {
2021
2075
  * @type {string}
2022
2076
  * @memberof ConsultationItemModel
2023
2077
  */
2024
- 'communicationUserId'?: string | null;
2025
- /**
2026
- *
2027
- * @type {string}
2028
- * @memberof ConsultationItemModel
2029
- */
2030
- 'hospitalId'?: string;
2078
+ 'firstName'?: string | null;
2031
2079
  /**
2032
2080
  *
2033
2081
  * @type {string}
2034
2082
  * @memberof ConsultationItemModel
2035
2083
  */
2036
- 'hospitalName'?: string | null;
2084
+ 'lastName'?: string | null;
2037
2085
  /**
2038
2086
  *
2039
2087
  * @type {string}
2040
2088
  * @memberof ConsultationItemModel
2041
2089
  */
2042
- 'hospitalSlug'?: string | null;
2090
+ 'email'?: string | null;
2043
2091
  /**
2044
2092
  *
2045
2093
  * @type {string}
2046
2094
  * @memberof ConsultationItemModel
2047
2095
  */
2048
- 'hospitalTimeZone'?: string | null;
2096
+ 'phone'?: string | null;
2049
2097
  /**
2050
2098
  *
2051
- * @type {string}
2099
+ * @type {Date}
2052
2100
  * @memberof ConsultationItemModel
2053
2101
  */
2054
- 'specialtyId'?: string | null;
2102
+ 'dateOfBirth'?: Date | null;
2055
2103
  /**
2056
2104
  *
2057
- * @type {string}
2105
+ * @type {Gender}
2058
2106
  * @memberof ConsultationItemModel
2059
2107
  */
2060
- 'specialtyName'?: string | null;
2108
+ 'gender'?: Gender;
2061
2109
  /**
2062
2110
  *
2063
2111
  * @type {string}
2064
2112
  * @memberof ConsultationItemModel
2065
2113
  */
2066
- 'specialtySlug'?: string | null;
2114
+ 'comment'?: string | null;
2067
2115
  /**
2068
2116
  *
2069
2117
  * @type {string}
2070
2118
  * @memberof ConsultationItemModel
2071
2119
  */
2072
- 'doctorId'?: string | null;
2120
+ 'hospitalId'?: string;
2073
2121
  /**
2074
2122
  *
2075
2123
  * @type {string}
2076
2124
  * @memberof ConsultationItemModel
2077
2125
  */
2078
- 'doctorName'?: string | null;
2126
+ 'hospitalName'?: string | null;
2079
2127
  /**
2080
2128
  *
2081
2129
  * @type {string}
2082
2130
  * @memberof ConsultationItemModel
2083
2131
  */
2084
- 'doctorSlug'?: string | null;
2132
+ 'hospitalSlug'?: string | null;
2085
2133
  /**
2086
2134
  *
2087
2135
  * @type {string}
2088
2136
  * @memberof ConsultationItemModel
2089
2137
  */
2090
- 'dealId'?: string | null;
2138
+ 'hospitalTimeZone'?: string | null;
2091
2139
  /**
2092
2140
  *
2093
2141
  * @type {string}
2094
2142
  * @memberof ConsultationItemModel
2095
2143
  */
2096
- 'dealName'?: string | null;
2144
+ 'doctorId'?: string | null;
2097
2145
  /**
2098
2146
  *
2099
2147
  * @type {string}
2100
2148
  * @memberof ConsultationItemModel
2101
2149
  */
2102
- 'dealSlug'?: string | null;
2150
+ 'doctorName'?: string | null;
2103
2151
  /**
2104
2152
  *
2105
2153
  * @type {string}
2106
2154
  * @memberof ConsultationItemModel
2107
2155
  */
2108
- 'language'?: string | null;
2109
- /**
2110
- *
2111
- * @type {boolean}
2112
- * @memberof ConsultationItemModel
2113
- */
2114
- 'isAccountHolder'?: boolean;
2156
+ 'doctorSlug'?: string | null;
2115
2157
  /**
2116
2158
  *
2117
2159
  * @type {string}
2118
2160
  * @memberof ConsultationItemModel
2119
2161
  */
2120
- 'firstName'?: string | null;
2162
+ 'dealId'?: string | null;
2121
2163
  /**
2122
2164
  *
2123
2165
  * @type {string}
2124
2166
  * @memberof ConsultationItemModel
2125
2167
  */
2126
- 'lastName'?: string | null;
2168
+ 'dealName'?: string | null;
2127
2169
  /**
2128
2170
  *
2129
2171
  * @type {string}
2130
2172
  * @memberof ConsultationItemModel
2131
2173
  */
2132
- 'email'?: string | null;
2174
+ 'dealSlug'?: string | null;
2133
2175
  /**
2134
2176
  *
2135
2177
  * @type {string}
2136
2178
  * @memberof ConsultationItemModel
2137
2179
  */
2138
- 'phone'?: string | null;
2139
- /**
2140
- *
2141
- * @type {Date}
2142
- * @memberof ConsultationItemModel
2143
- */
2144
- 'dateOfBirth'?: Date | null;
2145
- /**
2146
- *
2147
- * @type {Gender}
2148
- * @memberof ConsultationItemModel
2149
- */
2150
- 'gender'?: Gender;
2180
+ 'language'?: string | null;
2151
2181
  /**
2152
2182
  *
2153
- * @type {string}
2183
+ * @type {boolean}
2154
2184
  * @memberof ConsultationItemModel
2155
2185
  */
2156
- 'comment'?: string | null;
2186
+ 'isAccountHolder'?: boolean;
2157
2187
  /**
2158
2188
  *
2159
2189
  * @type {string}
@@ -2184,18 +2214,6 @@ export interface ConsultationItemModel {
2184
2214
  * @memberof ConsultationItemModel
2185
2215
  */
2186
2216
  'confirmedDateEnd'?: Date | null;
2187
- /**
2188
- *
2189
- * @type {string}
2190
- * @memberof ConsultationItemModel
2191
- */
2192
- 'callerName'?: string | null;
2193
- /**
2194
- *
2195
- * @type {string}
2196
- * @memberof ConsultationItemModel
2197
- */
2198
- 'callerId'?: string | null;
2199
2217
  /**
2200
2218
  *
2201
2219
  * @type {number}
@@ -2281,6 +2299,12 @@ export interface ConsultationModel {
2281
2299
  * @memberof ConsultationModel
2282
2300
  */
2283
2301
  'id'?: string;
2302
+ /**
2303
+ *
2304
+ * @type {string}
2305
+ * @memberof ConsultationModel
2306
+ */
2307
+ 'languageCode'?: string | null;
2284
2308
  /**
2285
2309
  *
2286
2310
  * @type {ConsultationType}
@@ -2310,139 +2334,115 @@ export interface ConsultationModel {
2310
2334
  * @type {string}
2311
2335
  * @memberof ConsultationModel
2312
2336
  */
2313
- 'communicationUserId'?: string | null;
2337
+ 'firstName'?: string | null;
2314
2338
  /**
2315
2339
  *
2316
2340
  * @type {string}
2317
2341
  * @memberof ConsultationModel
2318
2342
  */
2319
- 'hospitalId'?: string;
2343
+ 'lastName'?: string | null;
2320
2344
  /**
2321
2345
  *
2322
2346
  * @type {string}
2323
2347
  * @memberof ConsultationModel
2324
2348
  */
2325
- 'hospitalName'?: string | null;
2326
- /**
2327
- *
2328
- * @type {string}
2329
- * @memberof ConsultationModel
2330
- */
2331
- 'hospitalSlug'?: string | null;
2349
+ 'email'?: string | null;
2332
2350
  /**
2333
2351
  *
2334
2352
  * @type {string}
2335
2353
  * @memberof ConsultationModel
2336
2354
  */
2337
- 'hospitalTimeZone'?: string | null;
2355
+ 'phone'?: string | null;
2338
2356
  /**
2339
2357
  *
2340
- * @type {string}
2358
+ * @type {Date}
2341
2359
  * @memberof ConsultationModel
2342
2360
  */
2343
- 'specialtyId'?: string | null;
2361
+ 'dateOfBirth'?: Date | null;
2344
2362
  /**
2345
2363
  *
2346
- * @type {string}
2364
+ * @type {Gender}
2347
2365
  * @memberof ConsultationModel
2348
2366
  */
2349
- 'specialtyName'?: string | null;
2367
+ 'gender'?: Gender;
2350
2368
  /**
2351
2369
  *
2352
2370
  * @type {string}
2353
2371
  * @memberof ConsultationModel
2354
2372
  */
2355
- 'specialtySlug'?: string | null;
2373
+ 'comment'?: string | null;
2356
2374
  /**
2357
2375
  *
2358
2376
  * @type {string}
2359
2377
  * @memberof ConsultationModel
2360
2378
  */
2361
- 'doctorId'?: string | null;
2379
+ 'hospitalId'?: string;
2362
2380
  /**
2363
2381
  *
2364
2382
  * @type {string}
2365
2383
  * @memberof ConsultationModel
2366
2384
  */
2367
- 'doctorName'?: string | null;
2385
+ 'hospitalName'?: string | null;
2368
2386
  /**
2369
2387
  *
2370
2388
  * @type {string}
2371
2389
  * @memberof ConsultationModel
2372
2390
  */
2373
- 'doctorSlug'?: string | null;
2391
+ 'hospitalSlug'?: string | null;
2374
2392
  /**
2375
2393
  *
2376
2394
  * @type {string}
2377
2395
  * @memberof ConsultationModel
2378
2396
  */
2379
- 'dealId'?: string | null;
2397
+ 'hospitalTimeZone'?: string | null;
2380
2398
  /**
2381
2399
  *
2382
2400
  * @type {string}
2383
2401
  * @memberof ConsultationModel
2384
2402
  */
2385
- 'dealName'?: string | null;
2403
+ 'doctorId'?: string | null;
2386
2404
  /**
2387
2405
  *
2388
2406
  * @type {string}
2389
2407
  * @memberof ConsultationModel
2390
2408
  */
2391
- 'dealSlug'?: string | null;
2409
+ 'doctorName'?: string | null;
2392
2410
  /**
2393
2411
  *
2394
2412
  * @type {string}
2395
2413
  * @memberof ConsultationModel
2396
2414
  */
2397
- 'language'?: string | null;
2398
- /**
2399
- *
2400
- * @type {boolean}
2401
- * @memberof ConsultationModel
2402
- */
2403
- 'isAccountHolder'?: boolean;
2415
+ 'doctorSlug'?: string | null;
2404
2416
  /**
2405
2417
  *
2406
2418
  * @type {string}
2407
2419
  * @memberof ConsultationModel
2408
2420
  */
2409
- 'firstName'?: string | null;
2421
+ 'dealId'?: string | null;
2410
2422
  /**
2411
2423
  *
2412
2424
  * @type {string}
2413
2425
  * @memberof ConsultationModel
2414
2426
  */
2415
- 'lastName'?: string | null;
2427
+ 'dealName'?: string | null;
2416
2428
  /**
2417
2429
  *
2418
2430
  * @type {string}
2419
2431
  * @memberof ConsultationModel
2420
2432
  */
2421
- 'email'?: string | null;
2433
+ 'dealSlug'?: string | null;
2422
2434
  /**
2423
2435
  *
2424
2436
  * @type {string}
2425
2437
  * @memberof ConsultationModel
2426
2438
  */
2427
- 'phone'?: string | null;
2428
- /**
2429
- *
2430
- * @type {Date}
2431
- * @memberof ConsultationModel
2432
- */
2433
- 'dateOfBirth'?: Date | null;
2434
- /**
2435
- *
2436
- * @type {Gender}
2437
- * @memberof ConsultationModel
2438
- */
2439
- 'gender'?: Gender;
2439
+ 'language'?: string | null;
2440
2440
  /**
2441
2441
  *
2442
- * @type {string}
2442
+ * @type {boolean}
2443
2443
  * @memberof ConsultationModel
2444
2444
  */
2445
- 'comment'?: string | null;
2445
+ 'isAccountHolder'?: boolean;
2446
2446
  /**
2447
2447
  *
2448
2448
  * @type {string}
@@ -2473,18 +2473,6 @@ export interface ConsultationModel {
2473
2473
  * @memberof ConsultationModel
2474
2474
  */
2475
2475
  'confirmedDateEnd'?: Date | null;
2476
- /**
2477
- *
2478
- * @type {string}
2479
- * @memberof ConsultationModel
2480
- */
2481
- 'callerName'?: string | null;
2482
- /**
2483
- *
2484
- * @type {string}
2485
- * @memberof ConsultationModel
2486
- */
2487
- 'callerId'?: string | null;
2488
2476
  /**
2489
2477
  *
2490
2478
  * @type {number}
@@ -3605,12 +3593,96 @@ export interface CreateDealServiceCommand {
3605
3593
  * @interface CreateDoctorAffiliationCommand
3606
3594
  */
3607
3595
  export interface CreateDoctorAffiliationCommand {
3596
+ /**
3597
+ *
3598
+ * @type {string}
3599
+ * @memberof CreateDoctorAffiliationCommand
3600
+ */
3601
+ 'doctorId'?: string;
3608
3602
  /**
3609
3603
  *
3610
3604
  * @type {string}
3611
3605
  * @memberof CreateDoctorAffiliationCommand
3612
3606
  */
3613
3607
  'hospitalId'?: string;
3608
+ /**
3609
+ *
3610
+ * @type {string}
3611
+ * @memberof CreateDoctorAffiliationCommand
3612
+ */
3613
+ 'name'?: string | null;
3614
+ /**
3615
+ *
3616
+ * @type {string}
3617
+ * @memberof CreateDoctorAffiliationCommand
3618
+ */
3619
+ 'description'?: string | null;
3620
+ /**
3621
+ *
3622
+ * @type {string}
3623
+ * @memberof CreateDoctorAffiliationCommand
3624
+ */
3625
+ 'overview'?: string | null;
3626
+ /**
3627
+ *
3628
+ * @type {string}
3629
+ * @memberof CreateDoctorAffiliationCommand
3630
+ */
3631
+ 'content'?: string | null;
3632
+ /**
3633
+ *
3634
+ * @type {string}
3635
+ * @memberof CreateDoctorAffiliationCommand
3636
+ */
3637
+ 'customStyle'?: string | null;
3638
+ /**
3639
+ *
3640
+ * @type {number}
3641
+ * @memberof CreateDoctorAffiliationCommand
3642
+ */
3643
+ 'order'?: number;
3644
+ /**
3645
+ *
3646
+ * @type {string}
3647
+ * @memberof CreateDoctorAffiliationCommand
3648
+ */
3649
+ 'photo'?: string | null;
3650
+ /**
3651
+ *
3652
+ * @type {string}
3653
+ * @memberof CreateDoctorAffiliationCommand
3654
+ */
3655
+ 'photoThumbnail'?: string | null;
3656
+ /**
3657
+ *
3658
+ * @type {string}
3659
+ * @memberof CreateDoctorAffiliationCommand
3660
+ */
3661
+ 'background'?: string | null;
3662
+ /**
3663
+ *
3664
+ * @type {string}
3665
+ * @memberof CreateDoctorAffiliationCommand
3666
+ */
3667
+ 'backgroundThumbnail'?: string | null;
3668
+ /**
3669
+ *
3670
+ * @type {boolean}
3671
+ * @memberof CreateDoctorAffiliationCommand
3672
+ */
3673
+ 'consultationEnabled'?: boolean | null;
3674
+ /**
3675
+ *
3676
+ * @type {number}
3677
+ * @memberof CreateDoctorAffiliationCommand
3678
+ */
3679
+ 'consultationFee'?: number | null;
3680
+ /**
3681
+ *
3682
+ * @type {Array<MediaModel>}
3683
+ * @memberof CreateDoctorAffiliationCommand
3684
+ */
3685
+ 'medias'?: Array<MediaModel> | null;
3614
3686
  }
3615
3687
  /**
3616
3688
  *
@@ -5139,49 +5211,49 @@ export interface DealPackageItemModel {
5139
5211
  * @type {string}
5140
5212
  * @memberof DealPackageItemModel
5141
5213
  */
5142
- 'dealId'?: string;
5214
+ 'languageCode'?: string | null;
5143
5215
  /**
5144
5216
  *
5145
5217
  * @type {string}
5146
5218
  * @memberof DealPackageItemModel
5147
5219
  */
5148
- 'dealName'?: string | null;
5220
+ 'dealId'?: string;
5149
5221
  /**
5150
5222
  *
5151
5223
  * @type {string}
5152
5224
  * @memberof DealPackageItemModel
5153
5225
  */
5154
- 'hospitalId'?: string;
5226
+ 'dealName'?: string | null;
5155
5227
  /**
5156
5228
  *
5157
5229
  * @type {string}
5158
5230
  * @memberof DealPackageItemModel
5159
5231
  */
5160
- 'hospitalName'?: string | null;
5232
+ 'dealSlug'?: string | null;
5161
5233
  /**
5162
5234
  *
5163
- * @type {RefundPolicy}
5235
+ * @type {string}
5164
5236
  * @memberof DealPackageItemModel
5165
5237
  */
5166
- 'refundPolicy'?: RefundPolicy;
5238
+ 'hospitalId'?: string;
5167
5239
  /**
5168
5240
  *
5169
5241
  * @type {string}
5170
5242
  * @memberof DealPackageItemModel
5171
5243
  */
5172
- 'additionalServices'?: string | null;
5244
+ 'hospitalName'?: string | null;
5173
5245
  /**
5174
5246
  *
5175
5247
  * @type {string}
5176
5248
  * @memberof DealPackageItemModel
5177
5249
  */
5178
- 'accomodation'?: string | null;
5250
+ 'hospitalSlug'?: string | null;
5179
5251
  /**
5180
5252
  *
5181
- * @type {string}
5253
+ * @type {RefundPolicy}
5182
5254
  * @memberof DealPackageItemModel
5183
5255
  */
5184
- 'transfer'?: string | null;
5256
+ 'refundPolicy'?: RefundPolicy;
5185
5257
  /**
5186
5258
  *
5187
5259
  * @type {string}
@@ -5218,49 +5290,49 @@ export interface DealPackageModel {
5218
5290
  * @type {string}
5219
5291
  * @memberof DealPackageModel
5220
5292
  */
5221
- 'dealId'?: string;
5293
+ 'languageCode'?: string | null;
5222
5294
  /**
5223
5295
  *
5224
5296
  * @type {string}
5225
5297
  * @memberof DealPackageModel
5226
5298
  */
5227
- 'dealName'?: string | null;
5299
+ 'dealId'?: string;
5228
5300
  /**
5229
5301
  *
5230
5302
  * @type {string}
5231
5303
  * @memberof DealPackageModel
5232
5304
  */
5233
- 'hospitalId'?: string;
5305
+ 'dealName'?: string | null;
5234
5306
  /**
5235
5307
  *
5236
5308
  * @type {string}
5237
5309
  * @memberof DealPackageModel
5238
5310
  */
5239
- 'hospitalName'?: string | null;
5311
+ 'dealSlug'?: string | null;
5240
5312
  /**
5241
5313
  *
5242
- * @type {RefundPolicy}
5314
+ * @type {string}
5243
5315
  * @memberof DealPackageModel
5244
5316
  */
5245
- 'refundPolicy'?: RefundPolicy;
5317
+ 'hospitalId'?: string;
5246
5318
  /**
5247
5319
  *
5248
5320
  * @type {string}
5249
5321
  * @memberof DealPackageModel
5250
5322
  */
5251
- 'additionalServices'?: string | null;
5323
+ 'hospitalName'?: string | null;
5252
5324
  /**
5253
5325
  *
5254
5326
  * @type {string}
5255
5327
  * @memberof DealPackageModel
5256
5328
  */
5257
- 'accomodation'?: string | null;
5329
+ 'hospitalSlug'?: string | null;
5258
5330
  /**
5259
5331
  *
5260
- * @type {string}
5332
+ * @type {RefundPolicy}
5261
5333
  * @memberof DealPackageModel
5262
5334
  */
5263
- 'transfer'?: string | null;
5335
+ 'refundPolicy'?: RefundPolicy;
5264
5336
  /**
5265
5337
  *
5266
5338
  * @type {string}
@@ -5279,6 +5351,24 @@ export interface DealPackageModel {
5279
5351
  * @memberof DealPackageModel
5280
5352
  */
5281
5353
  'auditableEntity'?: AuditableEntity;
5354
+ /**
5355
+ *
5356
+ * @type {string}
5357
+ * @memberof DealPackageModel
5358
+ */
5359
+ 'additionalServices'?: string | null;
5360
+ /**
5361
+ *
5362
+ * @type {string}
5363
+ * @memberof DealPackageModel
5364
+ */
5365
+ 'accomodation'?: string | null;
5366
+ /**
5367
+ *
5368
+ * @type {string}
5369
+ * @memberof DealPackageModel
5370
+ */
5371
+ 'transfer'?: string | null;
5282
5372
  }
5283
5373
  /**
5284
5374
  *
@@ -5305,6 +5395,12 @@ export interface DealPackagesModel {
5305
5395
  * @interface DealServiceItemModel
5306
5396
  */
5307
5397
  export interface DealServiceItemModel {
5398
+ /**
5399
+ *
5400
+ * @type {string}
5401
+ * @memberof DealServiceItemModel
5402
+ */
5403
+ 'languageCode'?: string | null;
5308
5404
  /**
5309
5405
  *
5310
5406
  * @type {string}
@@ -5317,6 +5413,12 @@ export interface DealServiceItemModel {
5317
5413
  * @memberof DealServiceItemModel
5318
5414
  */
5319
5415
  'dealName'?: string | null;
5416
+ /**
5417
+ *
5418
+ * @type {string}
5419
+ * @memberof DealServiceItemModel
5420
+ */
5421
+ 'dealSlug'?: string | null;
5320
5422
  /**
5321
5423
  *
5322
5424
  * @type {string}
@@ -5329,6 +5431,12 @@ export interface DealServiceItemModel {
5329
5431
  * @memberof DealServiceItemModel
5330
5432
  */
5331
5433
  'serviceName'?: string | null;
5434
+ /**
5435
+ *
5436
+ * @type {string}
5437
+ * @memberof DealServiceItemModel
5438
+ */
5439
+ 'serviceSlug'?: string | null;
5332
5440
  /**
5333
5441
  *
5334
5442
  * @type {number}
@@ -5342,6 +5450,12 @@ export interface DealServiceItemModel {
5342
5450
  * @interface DealServiceModel
5343
5451
  */
5344
5452
  export interface DealServiceModel {
5453
+ /**
5454
+ *
5455
+ * @type {string}
5456
+ * @memberof DealServiceModel
5457
+ */
5458
+ 'languageCode'?: string | null;
5345
5459
  /**
5346
5460
  *
5347
5461
  * @type {string}
@@ -5354,6 +5468,12 @@ export interface DealServiceModel {
5354
5468
  * @memberof DealServiceModel
5355
5469
  */
5356
5470
  'dealName'?: string | null;
5471
+ /**
5472
+ *
5473
+ * @type {string}
5474
+ * @memberof DealServiceModel
5475
+ */
5476
+ 'dealSlug'?: string | null;
5357
5477
  /**
5358
5478
  *
5359
5479
  * @type {string}
@@ -5366,6 +5486,12 @@ export interface DealServiceModel {
5366
5486
  * @memberof DealServiceModel
5367
5487
  */
5368
5488
  'serviceName'?: string | null;
5489
+ /**
5490
+ *
5491
+ * @type {string}
5492
+ * @memberof DealServiceModel
5493
+ */
5494
+ 'serviceSlug'?: string | null;
5369
5495
  /**
5370
5496
  *
5371
5497
  * @type {number}
@@ -5462,6 +5588,12 @@ export interface DeleteFaqTagCommand {
5462
5588
  * @interface DoctorAffiliationItemModel
5463
5589
  */
5464
5590
  export interface DoctorAffiliationItemModel {
5591
+ /**
5592
+ *
5593
+ * @type {string}
5594
+ * @memberof DoctorAffiliationItemModel
5595
+ */
5596
+ 'id'?: string;
5465
5597
  /**
5466
5598
  *
5467
5599
  * @type {string}
@@ -5480,13 +5612,79 @@ export interface DoctorAffiliationItemModel {
5480
5612
  * @memberof DoctorAffiliationItemModel
5481
5613
  */
5482
5614
  'hospitalSlug'?: string | null;
5483
- }
5615
+ /**
5616
+ *
5617
+ * @type {string}
5618
+ * @memberof DoctorAffiliationItemModel
5619
+ */
5620
+ 'doctorId'?: string;
5621
+ /**
5622
+ *
5623
+ * @type {string}
5624
+ * @memberof DoctorAffiliationItemModel
5625
+ */
5626
+ 'languageCode'?: string | null;
5627
+ /**
5628
+ *
5629
+ * @type {string}
5630
+ * @memberof DoctorAffiliationItemModel
5631
+ */
5632
+ 'name'?: string | null;
5633
+ /**
5634
+ *
5635
+ * @type {string}
5636
+ * @memberof DoctorAffiliationItemModel
5637
+ */
5638
+ 'slug'?: string | null;
5639
+ /**
5640
+ *
5641
+ * @type {boolean}
5642
+ * @memberof DoctorAffiliationItemModel
5643
+ */
5644
+ 'confirmed'?: boolean;
5645
+ /**
5646
+ *
5647
+ * @type {string}
5648
+ * @memberof DoctorAffiliationItemModel
5649
+ */
5650
+ 'photo'?: string | null;
5651
+ /**
5652
+ *
5653
+ * @type {string}
5654
+ * @memberof DoctorAffiliationItemModel
5655
+ */
5656
+ 'photoThumbnail'?: string | null;
5657
+ /**
5658
+ *
5659
+ * @type {boolean}
5660
+ * @memberof DoctorAffiliationItemModel
5661
+ */
5662
+ 'consultationEnabled'?: boolean | null;
5663
+ /**
5664
+ *
5665
+ * @type {number}
5666
+ * @memberof DoctorAffiliationItemModel
5667
+ */
5668
+ 'consultationFee'?: number | null;
5669
+ /**
5670
+ *
5671
+ * @type {number}
5672
+ * @memberof DoctorAffiliationItemModel
5673
+ */
5674
+ 'order'?: number;
5675
+ }
5484
5676
  /**
5485
5677
  *
5486
5678
  * @export
5487
5679
  * @interface DoctorAffiliationModel
5488
5680
  */
5489
5681
  export interface DoctorAffiliationModel {
5682
+ /**
5683
+ *
5684
+ * @type {string}
5685
+ * @memberof DoctorAffiliationModel
5686
+ */
5687
+ 'id'?: string;
5490
5688
  /**
5491
5689
  *
5492
5690
  * @type {string}
@@ -5505,6 +5703,108 @@ export interface DoctorAffiliationModel {
5505
5703
  * @memberof DoctorAffiliationModel
5506
5704
  */
5507
5705
  'hospitalSlug'?: string | null;
5706
+ /**
5707
+ *
5708
+ * @type {string}
5709
+ * @memberof DoctorAffiliationModel
5710
+ */
5711
+ 'doctorId'?: string;
5712
+ /**
5713
+ *
5714
+ * @type {string}
5715
+ * @memberof DoctorAffiliationModel
5716
+ */
5717
+ 'languageCode'?: string | null;
5718
+ /**
5719
+ *
5720
+ * @type {string}
5721
+ * @memberof DoctorAffiliationModel
5722
+ */
5723
+ 'name'?: string | null;
5724
+ /**
5725
+ *
5726
+ * @type {string}
5727
+ * @memberof DoctorAffiliationModel
5728
+ */
5729
+ 'slug'?: string | null;
5730
+ /**
5731
+ *
5732
+ * @type {boolean}
5733
+ * @memberof DoctorAffiliationModel
5734
+ */
5735
+ 'confirmed'?: boolean;
5736
+ /**
5737
+ *
5738
+ * @type {string}
5739
+ * @memberof DoctorAffiliationModel
5740
+ */
5741
+ 'photo'?: string | null;
5742
+ /**
5743
+ *
5744
+ * @type {string}
5745
+ * @memberof DoctorAffiliationModel
5746
+ */
5747
+ 'photoThumbnail'?: string | null;
5748
+ /**
5749
+ *
5750
+ * @type {boolean}
5751
+ * @memberof DoctorAffiliationModel
5752
+ */
5753
+ 'consultationEnabled'?: boolean | null;
5754
+ /**
5755
+ *
5756
+ * @type {number}
5757
+ * @memberof DoctorAffiliationModel
5758
+ */
5759
+ 'consultationFee'?: number | null;
5760
+ /**
5761
+ *
5762
+ * @type {number}
5763
+ * @memberof DoctorAffiliationModel
5764
+ */
5765
+ 'order'?: number;
5766
+ /**
5767
+ *
5768
+ * @type {string}
5769
+ * @memberof DoctorAffiliationModel
5770
+ */
5771
+ 'description'?: string | null;
5772
+ /**
5773
+ *
5774
+ * @type {string}
5775
+ * @memberof DoctorAffiliationModel
5776
+ */
5777
+ 'overview'?: string | null;
5778
+ /**
5779
+ *
5780
+ * @type {string}
5781
+ * @memberof DoctorAffiliationModel
5782
+ */
5783
+ 'content'?: string | null;
5784
+ /**
5785
+ *
5786
+ * @type {string}
5787
+ * @memberof DoctorAffiliationModel
5788
+ */
5789
+ 'background'?: string | null;
5790
+ /**
5791
+ *
5792
+ * @type {string}
5793
+ * @memberof DoctorAffiliationModel
5794
+ */
5795
+ 'backgroundThumbnail'?: string | null;
5796
+ /**
5797
+ *
5798
+ * @type {string}
5799
+ * @memberof DoctorAffiliationModel
5800
+ */
5801
+ 'customStyle'?: string | null;
5802
+ /**
5803
+ *
5804
+ * @type {Array<MediaModel>}
5805
+ * @memberof DoctorAffiliationModel
5806
+ */
5807
+ 'medias'?: Array<MediaModel> | null;
5508
5808
  }
5509
5809
  /**
5510
5810
  *
@@ -5849,139 +6149,6 @@ export interface DoctorItemModel {
5849
6149
  * @memberof DoctorItemModel
5850
6150
  */
5851
6151
  'auditableEntity'?: AuditableEntity;
5852
- /**
5853
- *
5854
- * @type {string}
5855
- * @memberof DoctorItemModel
5856
- */
5857
- 'userType'?: string | null;
5858
- /**
5859
- *
5860
- * @type {Array<UserLanguageModel>}
5861
- * @memberof DoctorItemModel
5862
- */
5863
- 'languages'?: Array<UserLanguageModel> | null;
5864
- /**
5865
- *
5866
- * @type {Array<UserLocationModel>}
5867
- * @memberof DoctorItemModel
5868
- */
5869
- 'locations'?: Array<UserLocationModel> | null;
5870
- /**
5871
- *
5872
- * @type {string}
5873
- * @memberof DoctorItemModel
5874
- */
5875
- 'slug'?: string | null;
5876
- /**
5877
- *
5878
- * @type {string}
5879
- * @memberof DoctorItemModel
5880
- */
5881
- 'hospitalId'?: string | null;
5882
- /**
5883
- *
5884
- * @type {string}
5885
- * @memberof DoctorItemModel
5886
- */
5887
- 'hospitalName'?: string | null;
5888
- /**
5889
- *
5890
- * @type {Date}
5891
- * @memberof DoctorItemModel
5892
- */
5893
- 'startPracticeDate'?: Date | null;
5894
- /**
5895
- *
5896
- * @type {string}
5897
- * @memberof DoctorItemModel
5898
- */
5899
- 'overview'?: string | null;
5900
- /**
5901
- *
5902
- * @type {boolean}
5903
- * @memberof DoctorItemModel
5904
- */
5905
- 'consultationEnabled'?: boolean | null;
5906
- /**
5907
- *
5908
- * @type {number}
5909
- * @memberof DoctorItemModel
5910
- */
5911
- 'consultationFee'?: number | null;
5912
- /**
5913
- *
5914
- * @type {Array<LocalizedUrlModel>}
5915
- * @memberof DoctorItemModel
5916
- */
5917
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5918
- /**
5919
- *
5920
- * @type {boolean}
5921
- * @memberof DoctorItemModel
5922
- */
5923
- 'confirmed'?: boolean;
5924
- }
5925
- /**
5926
- *
5927
- * @export
5928
- * @interface DoctorItemSimpleModel
5929
- */
5930
- export interface DoctorItemSimpleModel {
5931
- /**
5932
- *
5933
- * @type {string}
5934
- * @memberof DoctorItemSimpleModel
5935
- */
5936
- 'id'?: string;
5937
- /**
5938
- *
5939
- * @type {string}
5940
- * @memberof DoctorItemSimpleModel
5941
- */
5942
- 'firstName'?: string | null;
5943
- /**
5944
- *
5945
- * @type {string}
5946
- * @memberof DoctorItemSimpleModel
5947
- */
5948
- 'lastName'?: string | null;
5949
- /**
5950
- *
5951
- * @type {string}
5952
- * @memberof DoctorItemSimpleModel
5953
- */
5954
- 'fullname'?: string | null;
5955
- /**
5956
- *
5957
- * @type {string}
5958
- * @memberof DoctorItemSimpleModel
5959
- */
5960
- 'slug'?: string | null;
5961
- /**
5962
- *
5963
- * @type {string}
5964
- * @memberof DoctorItemSimpleModel
5965
- */
5966
- 'hospitalId'?: string | null;
5967
- /**
5968
- *
5969
- * @type {string}
5970
- * @memberof DoctorItemSimpleModel
5971
- */
5972
- 'hospitalName'?: string | null;
5973
- /**
5974
- *
5975
- * @type {string}
5976
- * @memberof DoctorItemSimpleModel
5977
- */
5978
- 'overview'?: string | null;
5979
- /**
5980
- *
5981
- * @type {boolean}
5982
- * @memberof DoctorItemSimpleModel
5983
- */
5984
- 'confirmed'?: boolean;
5985
6152
  }
5986
6153
  /**
5987
6154
  *
@@ -6129,97 +6296,43 @@ export interface DoctorModel {
6129
6296
  * @type {string}
6130
6297
  * @memberof DoctorModel
6131
6298
  */
6132
- 'timeZone'?: string | null;
6133
- /**
6134
- *
6135
- * @type {string}
6136
- * @memberof DoctorModel
6137
- */
6138
- 'communicationUserId'?: string | null;
6139
- /**
6140
- *
6141
- * @type {AuditableEntity}
6142
- * @memberof DoctorModel
6143
- */
6144
- 'auditableEntity'?: AuditableEntity;
6145
- /**
6146
- *
6147
- * @type {string}
6148
- * @memberof DoctorModel
6149
- */
6150
- 'userType'?: string | null;
6151
- /**
6152
- *
6153
- * @type {Array<UserLanguageModel>}
6154
- * @memberof DoctorModel
6155
- */
6156
- 'languages'?: Array<UserLanguageModel> | null;
6157
- /**
6158
- *
6159
- * @type {Array<UserLocationModel>}
6160
- * @memberof DoctorModel
6161
- */
6162
- 'locations'?: Array<UserLocationModel> | null;
6163
- /**
6164
- *
6165
- * @type {string}
6166
- * @memberof DoctorModel
6167
- */
6168
- 'slug'?: string | null;
6169
- /**
6170
- *
6171
- * @type {string}
6172
- * @memberof DoctorModel
6173
- */
6174
- 'hospitalId'?: string | null;
6175
- /**
6176
- *
6177
- * @type {string}
6178
- * @memberof DoctorModel
6179
- */
6180
- 'hospitalName'?: string | null;
6181
- /**
6182
- *
6183
- * @type {Date}
6184
- * @memberof DoctorModel
6185
- */
6186
- 'startPracticeDate'?: Date | null;
6299
+ 'timeZone'?: string | null;
6187
6300
  /**
6188
6301
  *
6189
6302
  * @type {string}
6190
6303
  * @memberof DoctorModel
6191
6304
  */
6192
- 'overview'?: string | null;
6305
+ 'communicationUserId'?: string | null;
6193
6306
  /**
6194
6307
  *
6195
- * @type {boolean}
6308
+ * @type {AuditableEntity}
6196
6309
  * @memberof DoctorModel
6197
6310
  */
6198
- 'consultationEnabled'?: boolean | null;
6311
+ 'auditableEntity'?: AuditableEntity;
6199
6312
  /**
6200
6313
  *
6201
- * @type {number}
6314
+ * @type {string}
6202
6315
  * @memberof DoctorModel
6203
6316
  */
6204
- 'consultationFee'?: number | null;
6317
+ 'userType'?: string | null;
6205
6318
  /**
6206
6319
  *
6207
- * @type {Array<LocalizedUrlModel>}
6320
+ * @type {Array<UserLanguageModel>}
6208
6321
  * @memberof DoctorModel
6209
6322
  */
6210
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6323
+ 'languages'?: Array<UserLanguageModel> | null;
6211
6324
  /**
6212
6325
  *
6213
- * @type {boolean}
6326
+ * @type {Array<UserLocationModel>}
6214
6327
  * @memberof DoctorModel
6215
6328
  */
6216
- 'confirmed'?: boolean;
6329
+ 'locations'?: Array<UserLocationModel> | null;
6217
6330
  /**
6218
6331
  *
6219
- * @type {string}
6332
+ * @type {Date}
6220
6333
  * @memberof DoctorModel
6221
6334
  */
6222
- 'languageCode'?: string | null;
6335
+ 'startPracticeDate'?: Date | null;
6223
6336
  }
6224
6337
  /**
6225
6338
  *
@@ -6338,6 +6451,43 @@ export interface DoctorPortfoliosModel {
6338
6451
  */
6339
6452
  'metaData'?: PagedListMetaData;
6340
6453
  }
6454
+ /**
6455
+ *
6456
+ * @export
6457
+ * @interface DoctorSimpleItemModel
6458
+ */
6459
+ export interface DoctorSimpleItemModel {
6460
+ /**
6461
+ *
6462
+ * @type {string}
6463
+ * @memberof DoctorSimpleItemModel
6464
+ */
6465
+ 'id'?: string;
6466
+ /**
6467
+ *
6468
+ * @type {string}
6469
+ * @memberof DoctorSimpleItemModel
6470
+ */
6471
+ 'userName'?: string | null;
6472
+ /**
6473
+ *
6474
+ * @type {string}
6475
+ * @memberof DoctorSimpleItemModel
6476
+ */
6477
+ 'firstName'?: string | null;
6478
+ /**
6479
+ *
6480
+ * @type {string}
6481
+ * @memberof DoctorSimpleItemModel
6482
+ */
6483
+ 'lastName'?: string | null;
6484
+ /**
6485
+ *
6486
+ * @type {string}
6487
+ * @memberof DoctorSimpleItemModel
6488
+ */
6489
+ 'fullname'?: string | null;
6490
+ }
6341
6491
  /**
6342
6492
  *
6343
6493
  * @export
@@ -6363,6 +6513,12 @@ export interface DoctorSpecialtiesModel {
6363
6513
  * @interface DoctorSpecialtyModel
6364
6514
  */
6365
6515
  export interface DoctorSpecialtyModel {
6516
+ /**
6517
+ *
6518
+ * @type {string}
6519
+ * @memberof DoctorSpecialtyModel
6520
+ */
6521
+ 'languageCode'?: string | null;
6366
6522
  /**
6367
6523
  *
6368
6524
  * @type {string}
@@ -6399,18 +6555,6 @@ export interface DoctorSpecialtyModel {
6399
6555
  * @memberof DoctorSpecialtyModel
6400
6556
  */
6401
6557
  'order'?: number;
6402
- /**
6403
- *
6404
- * @type {string}
6405
- * @memberof DoctorSpecialtyModel
6406
- */
6407
- 'doctorId'?: string;
6408
- /**
6409
- *
6410
- * @type {string}
6411
- * @memberof DoctorSpecialtyModel
6412
- */
6413
- 'doctorName'?: string | null;
6414
6558
  }
6415
6559
  /**
6416
6560
  *
@@ -6439,10 +6583,10 @@ export interface DoctorsModel {
6439
6583
  export interface DoctorsSimpleModel {
6440
6584
  /**
6441
6585
  *
6442
- * @type {Array<DoctorItemSimpleModel>}
6586
+ * @type {Array<DoctorSimpleItemModel>}
6443
6587
  * @memberof DoctorsSimpleModel
6444
6588
  */
6445
- 'items'?: Array<DoctorItemSimpleModel> | null;
6589
+ 'items'?: Array<DoctorSimpleItemModel> | null;
6446
6590
  /**
6447
6591
  *
6448
6592
  * @type {PagedListMetaData}
@@ -8432,6 +8576,12 @@ export interface LocationModel {
8432
8576
  * @interface ManagerAffiliationItemModel
8433
8577
  */
8434
8578
  export interface ManagerAffiliationItemModel {
8579
+ /**
8580
+ *
8581
+ * @type {string}
8582
+ * @memberof ManagerAffiliationItemModel
8583
+ */
8584
+ 'languageCode'?: string | null;
8435
8585
  /**
8436
8586
  *
8437
8587
  * @type {string}
@@ -8457,6 +8607,12 @@ export interface ManagerAffiliationItemModel {
8457
8607
  * @interface ManagerAffiliationModel
8458
8608
  */
8459
8609
  export interface ManagerAffiliationModel {
8610
+ /**
8611
+ *
8612
+ * @type {string}
8613
+ * @memberof ManagerAffiliationModel
8614
+ */
8615
+ 'languageCode'?: string | null;
8460
8616
  /**
8461
8617
  *
8462
8618
  * @type {string}
@@ -8585,36 +8741,6 @@ export interface ManagerItemModel {
8585
8741
  * @memberof ManagerItemModel
8586
8742
  */
8587
8743
  'auditableEntity'?: AuditableEntity;
8588
- /**
8589
- *
8590
- * @type {string}
8591
- * @memberof ManagerItemModel
8592
- */
8593
- 'userType'?: string | null;
8594
- /**
8595
- *
8596
- * @type {Array<UserLanguageModel>}
8597
- * @memberof ManagerItemModel
8598
- */
8599
- 'languages'?: Array<UserLanguageModel> | null;
8600
- /**
8601
- *
8602
- * @type {Array<UserLocationModel>}
8603
- * @memberof ManagerItemModel
8604
- */
8605
- 'locations'?: Array<UserLocationModel> | null;
8606
- /**
8607
- *
8608
- * @type {string}
8609
- * @memberof ManagerItemModel
8610
- */
8611
- 'hospitalId'?: string | null;
8612
- /**
8613
- *
8614
- * @type {string}
8615
- * @memberof ManagerItemModel
8616
- */
8617
- 'hospitalName'?: string | null;
8618
8744
  /**
8619
8745
  *
8620
8746
  * @type {number}
@@ -8730,18 +8856,6 @@ export interface ManagerModel {
8730
8856
  * @memberof ManagerModel
8731
8857
  */
8732
8858
  'locations'?: Array<UserLocationModel> | null;
8733
- /**
8734
- *
8735
- * @type {string}
8736
- * @memberof ManagerModel
8737
- */
8738
- 'hospitalId'?: string | null;
8739
- /**
8740
- *
8741
- * @type {string}
8742
- * @memberof ManagerModel
8743
- */
8744
- 'hospitalName'?: string | null;
8745
8859
  /**
8746
8860
  *
8747
8861
  * @type {number}
@@ -10007,6 +10121,12 @@ export interface ServiceReviewItemModel {
10007
10121
  * @memberof ServiceReviewItemModel
10008
10122
  */
10009
10123
  'id'?: string;
10124
+ /**
10125
+ *
10126
+ * @type {string}
10127
+ * @memberof ServiceReviewItemModel
10128
+ */
10129
+ 'languageCode'?: string | null;
10010
10130
  /**
10011
10131
  *
10012
10132
  * @type {string}
@@ -10019,6 +10139,12 @@ export interface ServiceReviewItemModel {
10019
10139
  * @memberof ServiceReviewItemModel
10020
10140
  */
10021
10141
  'serviceName'?: string | null;
10142
+ /**
10143
+ *
10144
+ * @type {string}
10145
+ * @memberof ServiceReviewItemModel
10146
+ */
10147
+ 'serviceSlug'?: string | null;
10022
10148
  /**
10023
10149
  *
10024
10150
  * @type {string}
@@ -10049,12 +10175,6 @@ export interface ServiceReviewItemModel {
10049
10175
  * @memberof ServiceReviewItemModel
10050
10176
  */
10051
10177
  'reviewType'?: ReviewType;
10052
- /**
10053
- *
10054
- * @type {string}
10055
- * @memberof ServiceReviewItemModel
10056
- */
10057
- 'body'?: string | null;
10058
10178
  /**
10059
10179
  *
10060
10180
  * @type {Array<MediaModel>}
@@ -10080,6 +10200,12 @@ export interface ServiceReviewModel {
10080
10200
  * @memberof ServiceReviewModel
10081
10201
  */
10082
10202
  'id'?: string;
10203
+ /**
10204
+ *
10205
+ * @type {string}
10206
+ * @memberof ServiceReviewModel
10207
+ */
10208
+ 'languageCode'?: string | null;
10083
10209
  /**
10084
10210
  *
10085
10211
  * @type {string}
@@ -10092,6 +10218,12 @@ export interface ServiceReviewModel {
10092
10218
  * @memberof ServiceReviewModel
10093
10219
  */
10094
10220
  'serviceName'?: string | null;
10221
+ /**
10222
+ *
10223
+ * @type {string}
10224
+ * @memberof ServiceReviewModel
10225
+ */
10226
+ 'serviceSlug'?: string | null;
10095
10227
  /**
10096
10228
  *
10097
10229
  * @type {string}
@@ -10122,12 +10254,6 @@ export interface ServiceReviewModel {
10122
10254
  * @memberof ServiceReviewModel
10123
10255
  */
10124
10256
  'reviewType'?: ReviewType;
10125
- /**
10126
- *
10127
- * @type {string}
10128
- * @memberof ServiceReviewModel
10129
- */
10130
- 'body'?: string | null;
10131
10257
  /**
10132
10258
  *
10133
10259
  * @type {Array<MediaModel>}
@@ -10140,6 +10266,12 @@ export interface ServiceReviewModel {
10140
10266
  * @memberof ServiceReviewModel
10141
10267
  */
10142
10268
  'auditableEntity'?: AuditableEntity;
10269
+ /**
10270
+ *
10271
+ * @type {string}
10272
+ * @memberof ServiceReviewModel
10273
+ */
10274
+ 'body'?: string | null;
10143
10275
  }
10144
10276
  /**
10145
10277
  *
@@ -10160,6 +10292,31 @@ export interface ServiceReviewsModel {
10160
10292
  */
10161
10293
  'metaData'?: PagedListMetaData;
10162
10294
  }
10295
+ /**
10296
+ *
10297
+ * @export
10298
+ * @interface SnsHandle
10299
+ */
10300
+ export interface SnsHandle {
10301
+ /**
10302
+ *
10303
+ * @type {string}
10304
+ * @memberof SnsHandle
10305
+ */
10306
+ 'id'?: string;
10307
+ /**
10308
+ *
10309
+ * @type {SnsType}
10310
+ * @memberof SnsHandle
10311
+ */
10312
+ 'snsType'?: SnsType;
10313
+ /**
10314
+ *
10315
+ * @type {string}
10316
+ * @memberof SnsHandle
10317
+ */
10318
+ 'handle'?: string | null;
10319
+ }
10163
10320
  /**
10164
10321
  *
10165
10322
  * @export
@@ -11623,15 +11780,112 @@ export interface UpdateDealsSearchIndexCommand {
11623
11780
  /**
11624
11781
  *
11625
11782
  * @type {number}
11626
- * @memberof UpdateDealsSearchIndexCommand
11783
+ * @memberof UpdateDealsSearchIndexCommand
11784
+ */
11785
+ 'batchSize'?: number | null;
11786
+ /**
11787
+ *
11788
+ * @type {boolean}
11789
+ * @memberof UpdateDealsSearchIndexCommand
11790
+ */
11791
+ 'reCreate'?: boolean | null;
11792
+ }
11793
+ /**
11794
+ *
11795
+ * @export
11796
+ * @interface UpdateDoctorAffiliationCommand
11797
+ */
11798
+ export interface UpdateDoctorAffiliationCommand {
11799
+ /**
11800
+ *
11801
+ * @type {string}
11802
+ * @memberof UpdateDoctorAffiliationCommand
11803
+ */
11804
+ 'languageCode'?: string | null;
11805
+ /**
11806
+ *
11807
+ * @type {string}
11808
+ * @memberof UpdateDoctorAffiliationCommand
11809
+ */
11810
+ 'name'?: string | null;
11811
+ /**
11812
+ *
11813
+ * @type {string}
11814
+ * @memberof UpdateDoctorAffiliationCommand
11815
+ */
11816
+ 'slug'?: string | null;
11817
+ /**
11818
+ *
11819
+ * @type {string}
11820
+ * @memberof UpdateDoctorAffiliationCommand
11821
+ */
11822
+ 'description'?: string | null;
11823
+ /**
11824
+ *
11825
+ * @type {string}
11826
+ * @memberof UpdateDoctorAffiliationCommand
11827
+ */
11828
+ 'content'?: string | null;
11829
+ /**
11830
+ *
11831
+ * @type {string}
11832
+ * @memberof UpdateDoctorAffiliationCommand
11833
+ */
11834
+ 'customStyle'?: string | null;
11835
+ /**
11836
+ *
11837
+ * @type {number}
11838
+ * @memberof UpdateDoctorAffiliationCommand
11839
+ */
11840
+ 'order'?: number;
11841
+ /**
11842
+ *
11843
+ * @type {string}
11844
+ * @memberof UpdateDoctorAffiliationCommand
11845
+ */
11846
+ 'photo'?: string | null;
11847
+ /**
11848
+ *
11849
+ * @type {string}
11850
+ * @memberof UpdateDoctorAffiliationCommand
11851
+ */
11852
+ 'photoThumbnail'?: string | null;
11853
+ /**
11854
+ *
11855
+ * @type {string}
11856
+ * @memberof UpdateDoctorAffiliationCommand
11857
+ */
11858
+ 'background'?: string | null;
11859
+ /**
11860
+ *
11861
+ * @type {string}
11862
+ * @memberof UpdateDoctorAffiliationCommand
11863
+ */
11864
+ 'backgroundThumbnail'?: string | null;
11865
+ /**
11866
+ *
11867
+ * @type {boolean}
11868
+ * @memberof UpdateDoctorAffiliationCommand
11869
+ */
11870
+ 'consultationEnabled'?: boolean | null;
11871
+ /**
11872
+ *
11873
+ * @type {number}
11874
+ * @memberof UpdateDoctorAffiliationCommand
11627
11875
  */
11628
- 'batchSize'?: number | null;
11876
+ 'consultationFee'?: number | null;
11629
11877
  /**
11630
11878
  *
11631
11879
  * @type {boolean}
11632
- * @memberof UpdateDealsSearchIndexCommand
11880
+ * @memberof UpdateDoctorAffiliationCommand
11633
11881
  */
11634
- 'reCreate'?: boolean | null;
11882
+ 'confirmed'?: boolean;
11883
+ /**
11884
+ *
11885
+ * @type {Array<MediaModel>}
11886
+ * @memberof UpdateDoctorAffiliationCommand
11887
+ */
11888
+ 'medias'?: Array<MediaModel> | null;
11635
11889
  }
11636
11890
  /**
11637
11891
  *
@@ -13316,16 +13570,17 @@ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration
13316
13570
  * @param {string} [hospitalName]
13317
13571
  * @param {string} [hospitalSlug]
13318
13572
  * @param {string} [name]
13319
- * @param {string} [languageCode]
13320
13573
  * @param {boolean} [returnDefaultValue]
13321
13574
  * @param {boolean} [confirmed]
13575
+ * @param {string} [languageCode]
13576
+ * @param {boolean} [showHidden]
13322
13577
  * @param {number} [page]
13323
13578
  * @param {number} [limit]
13324
13579
  * @param {Date} [lastRetrieved]
13325
13580
  * @param {*} [options] Override http request option.
13326
13581
  * @throws {RequiredError}
13327
13582
  */
13328
- apiV1AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, name?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13583
+ apiV1AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, name?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13329
13584
  /**
13330
13585
  *
13331
13586
  * @summary Delete AboutUs.
@@ -13383,16 +13638,17 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
13383
13638
  * @param {string} [hospitalName]
13384
13639
  * @param {string} [hospitalSlug]
13385
13640
  * @param {string} [name]
13386
- * @param {string} [languageCode]
13387
13641
  * @param {boolean} [returnDefaultValue]
13388
13642
  * @param {boolean} [confirmed]
13643
+ * @param {string} [languageCode]
13644
+ * @param {boolean} [showHidden]
13389
13645
  * @param {number} [page]
13390
13646
  * @param {number} [limit]
13391
13647
  * @param {Date} [lastRetrieved]
13392
13648
  * @param {*} [options] Override http request option.
13393
13649
  * @throws {RequiredError}
13394
13650
  */
13395
- apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, name?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
13651
+ apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, name?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
13396
13652
  /**
13397
13653
  *
13398
13654
  * @summary Delete AboutUs.
@@ -13450,16 +13706,17 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
13450
13706
  * @param {string} [hospitalName]
13451
13707
  * @param {string} [hospitalSlug]
13452
13708
  * @param {string} [name]
13453
- * @param {string} [languageCode]
13454
13709
  * @param {boolean} [returnDefaultValue]
13455
13710
  * @param {boolean} [confirmed]
13711
+ * @param {string} [languageCode]
13712
+ * @param {boolean} [showHidden]
13456
13713
  * @param {number} [page]
13457
13714
  * @param {number} [limit]
13458
13715
  * @param {Date} [lastRetrieved]
13459
13716
  * @param {*} [options] Override http request option.
13460
13717
  * @throws {RequiredError}
13461
13718
  */
13462
- apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, name?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
13719
+ apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, name?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
13463
13720
  /**
13464
13721
  *
13465
13722
  * @summary Delete AboutUs.
@@ -13519,9 +13776,10 @@ export declare class AboutUsApi extends BaseAPI {
13519
13776
  * @param {string} [hospitalName]
13520
13777
  * @param {string} [hospitalSlug]
13521
13778
  * @param {string} [name]
13522
- * @param {string} [languageCode]
13523
13779
  * @param {boolean} [returnDefaultValue]
13524
13780
  * @param {boolean} [confirmed]
13781
+ * @param {string} [languageCode]
13782
+ * @param {boolean} [showHidden]
13525
13783
  * @param {number} [page]
13526
13784
  * @param {number} [limit]
13527
13785
  * @param {Date} [lastRetrieved]
@@ -13529,7 +13787,7 @@ export declare class AboutUsApi extends BaseAPI {
13529
13787
  * @throws {RequiredError}
13530
13788
  * @memberof AboutUsApi
13531
13789
  */
13532
- apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPagesModel>>;
13790
+ 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<import("axios").AxiosResponse<AboutUsPagesModel>>;
13533
13791
  /**
13534
13792
  *
13535
13793
  * @summary Delete AboutUs.
@@ -14040,14 +14298,13 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
14040
14298
  * @param {string} [contributorId]
14041
14299
  * @param {string} [languageCode]
14042
14300
  * @param {boolean} [showHidden]
14043
- * @param {boolean} [returnDefaultValue]
14044
14301
  * @param {number} [page]
14045
14302
  * @param {number} [limit]
14046
14303
  * @param {Date} [lastRetrieved]
14047
14304
  * @param {*} [options] Override http request option.
14048
14305
  * @throws {RequiredError}
14049
14306
  */
14050
- apiV1ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14307
+ apiV1ArticlesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14051
14308
  /**
14052
14309
  *
14053
14310
  * @summary Create a Article.
@@ -14312,14 +14569,13 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
14312
14569
  * @param {string} [contributorId]
14313
14570
  * @param {string} [languageCode]
14314
14571
  * @param {boolean} [showHidden]
14315
- * @param {boolean} [returnDefaultValue]
14316
14572
  * @param {number} [page]
14317
14573
  * @param {number} [limit]
14318
14574
  * @param {Date} [lastRetrieved]
14319
14575
  * @param {*} [options] Override http request option.
14320
14576
  * @throws {RequiredError}
14321
14577
  */
14322
- apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
14578
+ apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
14323
14579
  /**
14324
14580
  *
14325
14581
  * @summary Create a Article.
@@ -14584,14 +14840,13 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
14584
14840
  * @param {string} [contributorId]
14585
14841
  * @param {string} [languageCode]
14586
14842
  * @param {boolean} [showHidden]
14587
- * @param {boolean} [returnDefaultValue]
14588
14843
  * @param {number} [page]
14589
14844
  * @param {number} [limit]
14590
14845
  * @param {Date} [lastRetrieved]
14591
14846
  * @param {*} [options] Override http request option.
14592
14847
  * @throws {RequiredError}
14593
14848
  */
14594
- apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
14849
+ apiV1ArticlesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptArticleId?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
14595
14850
  /**
14596
14851
  *
14597
14852
  * @summary Create a Article.
@@ -14880,7 +15135,6 @@ export declare class ArticlesApi extends BaseAPI {
14880
15135
  * @param {string} [contributorId]
14881
15136
  * @param {string} [languageCode]
14882
15137
  * @param {boolean} [showHidden]
14883
- * @param {boolean} [returnDefaultValue]
14884
15138
  * @param {number} [page]
14885
15139
  * @param {number} [limit]
14886
15140
  * @param {Date} [lastRetrieved]
@@ -14888,7 +15142,7 @@ export declare class ArticlesApi extends BaseAPI {
14888
15142
  * @throws {RequiredError}
14889
15143
  * @memberof ArticlesApi
14890
15144
  */
14891
- 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, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
15145
+ 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<import("axios").AxiosResponse<ArticlesModel>>;
14892
15146
  /**
14893
15147
  *
14894
15148
  * @summary Create a Article.
@@ -14944,10 +15198,11 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
14944
15198
  *
14945
15199
  * @summary Get booking.
14946
15200
  * @param {string} bookingId
15201
+ * @param {string} [languageCode]
14947
15202
  * @param {*} [options] Override http request option.
14948
15203
  * @throws {RequiredError}
14949
15204
  */
14950
- apiV1BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15205
+ apiV1BookingsBookingIdGet: (bookingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14951
15206
  /**
14952
15207
  *
14953
15208
  * @summary Mark as Paid booking.
@@ -14968,7 +15223,12 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
14968
15223
  /**
14969
15224
  *
14970
15225
  * @summary Get all bookings.
14971
- * @param {string} [searchString]
15226
+ * @param {string} [userId]
15227
+ * @param {string} [userName]
15228
+ * @param {string} [hospitalId]
15229
+ * @param {string} [hospitalName]
15230
+ * @param {string} [dealId]
15231
+ * @param {string} [dealName]
14972
15232
  * @param {boolean} [isOpen]
14973
15233
  * @param {boolean} [isCompleted]
14974
15234
  * @param {BookingStatus} [status]
@@ -14977,13 +15237,15 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
14977
15237
  * @param {SortingOrder} [sortConfirmedDateStart]
14978
15238
  * @param {boolean} [isExternal]
14979
15239
  * @param {boolean} [paymentEnabled]
15240
+ * @param {string} [languageCode]
15241
+ * @param {boolean} [showHidden]
14980
15242
  * @param {number} [page]
14981
15243
  * @param {number} [limit]
14982
15244
  * @param {Date} [lastRetrieved]
14983
15245
  * @param {*} [options] Override http request option.
14984
15246
  * @throws {RequiredError}
14985
15247
  */
14986
- apiV1BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15248
+ apiV1BookingsGet: (userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14987
15249
  };
14988
15250
  /**
14989
15251
  * BookingsApi - functional programming interface
@@ -15019,10 +15281,11 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
15019
15281
  *
15020
15282
  * @summary Get booking.
15021
15283
  * @param {string} bookingId
15284
+ * @param {string} [languageCode]
15022
15285
  * @param {*} [options] Override http request option.
15023
15286
  * @throws {RequiredError}
15024
15287
  */
15025
- apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
15288
+ apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
15026
15289
  /**
15027
15290
  *
15028
15291
  * @summary Mark as Paid booking.
@@ -15043,7 +15306,12 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
15043
15306
  /**
15044
15307
  *
15045
15308
  * @summary Get all bookings.
15046
- * @param {string} [searchString]
15309
+ * @param {string} [userId]
15310
+ * @param {string} [userName]
15311
+ * @param {string} [hospitalId]
15312
+ * @param {string} [hospitalName]
15313
+ * @param {string} [dealId]
15314
+ * @param {string} [dealName]
15047
15315
  * @param {boolean} [isOpen]
15048
15316
  * @param {boolean} [isCompleted]
15049
15317
  * @param {BookingStatus} [status]
@@ -15052,13 +15320,15 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
15052
15320
  * @param {SortingOrder} [sortConfirmedDateStart]
15053
15321
  * @param {boolean} [isExternal]
15054
15322
  * @param {boolean} [paymentEnabled]
15323
+ * @param {string} [languageCode]
15324
+ * @param {boolean} [showHidden]
15055
15325
  * @param {number} [page]
15056
15326
  * @param {number} [limit]
15057
15327
  * @param {Date} [lastRetrieved]
15058
15328
  * @param {*} [options] Override http request option.
15059
15329
  * @throws {RequiredError}
15060
15330
  */
15061
- apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
15331
+ apiV1BookingsGet(userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
15062
15332
  };
15063
15333
  /**
15064
15334
  * BookingsApi - factory interface
@@ -15094,10 +15364,11 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
15094
15364
  *
15095
15365
  * @summary Get booking.
15096
15366
  * @param {string} bookingId
15367
+ * @param {string} [languageCode]
15097
15368
  * @param {*} [options] Override http request option.
15098
15369
  * @throws {RequiredError}
15099
15370
  */
15100
- apiV1BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
15371
+ apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string | undefined, options?: any): AxiosPromise<BookingModel>;
15101
15372
  /**
15102
15373
  *
15103
15374
  * @summary Mark as Paid booking.
@@ -15118,7 +15389,12 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
15118
15389
  /**
15119
15390
  *
15120
15391
  * @summary Get all bookings.
15121
- * @param {string} [searchString]
15392
+ * @param {string} [userId]
15393
+ * @param {string} [userName]
15394
+ * @param {string} [hospitalId]
15395
+ * @param {string} [hospitalName]
15396
+ * @param {string} [dealId]
15397
+ * @param {string} [dealName]
15122
15398
  * @param {boolean} [isOpen]
15123
15399
  * @param {boolean} [isCompleted]
15124
15400
  * @param {BookingStatus} [status]
@@ -15127,13 +15403,15 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
15127
15403
  * @param {SortingOrder} [sortConfirmedDateStart]
15128
15404
  * @param {boolean} [isExternal]
15129
15405
  * @param {boolean} [paymentEnabled]
15406
+ * @param {string} [languageCode]
15407
+ * @param {boolean} [showHidden]
15130
15408
  * @param {number} [page]
15131
15409
  * @param {number} [limit]
15132
15410
  * @param {Date} [lastRetrieved]
15133
15411
  * @param {*} [options] Override http request option.
15134
15412
  * @throws {RequiredError}
15135
15413
  */
15136
- apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
15414
+ apiV1BookingsGet(userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
15137
15415
  };
15138
15416
  /**
15139
15417
  * BookingsApi - object-oriented interface
@@ -15174,11 +15452,12 @@ export declare class BookingsApi extends BaseAPI {
15174
15452
  *
15175
15453
  * @summary Get booking.
15176
15454
  * @param {string} bookingId
15455
+ * @param {string} [languageCode]
15177
15456
  * @param {*} [options] Override http request option.
15178
15457
  * @throws {RequiredError}
15179
15458
  * @memberof BookingsApi
15180
15459
  */
15181
- apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
15460
+ apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
15182
15461
  /**
15183
15462
  *
15184
15463
  * @summary Mark as Paid booking.
@@ -15201,7 +15480,12 @@ export declare class BookingsApi extends BaseAPI {
15201
15480
  /**
15202
15481
  *
15203
15482
  * @summary Get all bookings.
15204
- * @param {string} [searchString]
15483
+ * @param {string} [userId]
15484
+ * @param {string} [userName]
15485
+ * @param {string} [hospitalId]
15486
+ * @param {string} [hospitalName]
15487
+ * @param {string} [dealId]
15488
+ * @param {string} [dealName]
15205
15489
  * @param {boolean} [isOpen]
15206
15490
  * @param {boolean} [isCompleted]
15207
15491
  * @param {BookingStatus} [status]
@@ -15210,6 +15494,8 @@ export declare class BookingsApi extends BaseAPI {
15210
15494
  * @param {SortingOrder} [sortConfirmedDateStart]
15211
15495
  * @param {boolean} [isExternal]
15212
15496
  * @param {boolean} [paymentEnabled]
15497
+ * @param {string} [languageCode]
15498
+ * @param {boolean} [showHidden]
15213
15499
  * @param {number} [page]
15214
15500
  * @param {number} [limit]
15215
15501
  * @param {Date} [lastRetrieved]
@@ -15217,7 +15503,7 @@ export declare class BookingsApi extends BaseAPI {
15217
15503
  * @throws {RequiredError}
15218
15504
  * @memberof BookingsApi
15219
15505
  */
15220
- apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
15506
+ 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<import("axios").AxiosResponse<BookingsModel>>;
15221
15507
  }
15222
15508
  /**
15223
15509
  * CHAdminsApi - axios parameter creator
@@ -16064,10 +16350,11 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
16064
16350
  *
16065
16351
  * @summary Get consultation.
16066
16352
  * @param {string} consultationId
16353
+ * @param {string} [languageCode]
16067
16354
  * @param {*} [options] Override http request option.
16068
16355
  * @throws {RequiredError}
16069
16356
  */
16070
- apiV1ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16357
+ apiV1ConsultationsConsultationIdGet: (consultationId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16071
16358
  /**
16072
16359
  *
16073
16360
  * @summary Mark as Paid booking.
@@ -16088,7 +16375,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
16088
16375
  /**
16089
16376
  *
16090
16377
  * @summary Get all consultations.
16091
- * @param {string} [searchString]
16378
+ * @param {string} [userId]
16379
+ * @param {string} [userName]
16380
+ * @param {string} [hospitalId]
16381
+ * @param {string} [hospitalName]
16382
+ * @param {string} [doctorId]
16383
+ * @param {string} [doctorName]
16384
+ * @param {string} [dealId]
16385
+ * @param {string} [dealName]
16092
16386
  * @param {boolean} [isOpen]
16093
16387
  * @param {boolean} [isCompleted]
16094
16388
  * @param {ConsultationStatus} [status]
@@ -16097,13 +16391,15 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
16097
16391
  * @param {SortingOrder} [sortConfirmedDateStart]
16098
16392
  * @param {boolean} [isExternal]
16099
16393
  * @param {boolean} [paymentEnabled]
16394
+ * @param {string} [languageCode]
16395
+ * @param {boolean} [showHidden]
16100
16396
  * @param {number} [page]
16101
16397
  * @param {number} [limit]
16102
16398
  * @param {Date} [lastRetrieved]
16103
16399
  * @param {*} [options] Override http request option.
16104
16400
  * @throws {RequiredError}
16105
16401
  */
16106
- apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16402
+ apiV1ConsultationsGet: (userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16107
16403
  };
16108
16404
  /**
16109
16405
  * ConsultationsApi - functional programming interface
@@ -16139,10 +16435,11 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
16139
16435
  *
16140
16436
  * @summary Get consultation.
16141
16437
  * @param {string} consultationId
16438
+ * @param {string} [languageCode]
16142
16439
  * @param {*} [options] Override http request option.
16143
16440
  * @throws {RequiredError}
16144
16441
  */
16145
- apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
16442
+ apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
16146
16443
  /**
16147
16444
  *
16148
16445
  * @summary Mark as Paid booking.
@@ -16163,7 +16460,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
16163
16460
  /**
16164
16461
  *
16165
16462
  * @summary Get all consultations.
16166
- * @param {string} [searchString]
16463
+ * @param {string} [userId]
16464
+ * @param {string} [userName]
16465
+ * @param {string} [hospitalId]
16466
+ * @param {string} [hospitalName]
16467
+ * @param {string} [doctorId]
16468
+ * @param {string} [doctorName]
16469
+ * @param {string} [dealId]
16470
+ * @param {string} [dealName]
16167
16471
  * @param {boolean} [isOpen]
16168
16472
  * @param {boolean} [isCompleted]
16169
16473
  * @param {ConsultationStatus} [status]
@@ -16172,13 +16476,15 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
16172
16476
  * @param {SortingOrder} [sortConfirmedDateStart]
16173
16477
  * @param {boolean} [isExternal]
16174
16478
  * @param {boolean} [paymentEnabled]
16479
+ * @param {string} [languageCode]
16480
+ * @param {boolean} [showHidden]
16175
16481
  * @param {number} [page]
16176
16482
  * @param {number} [limit]
16177
16483
  * @param {Date} [lastRetrieved]
16178
16484
  * @param {*} [options] Override http request option.
16179
16485
  * @throws {RequiredError}
16180
16486
  */
16181
- apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
16487
+ apiV1ConsultationsGet(userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
16182
16488
  };
16183
16489
  /**
16184
16490
  * ConsultationsApi - factory interface
@@ -16214,10 +16520,11 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
16214
16520
  *
16215
16521
  * @summary Get consultation.
16216
16522
  * @param {string} consultationId
16523
+ * @param {string} [languageCode]
16217
16524
  * @param {*} [options] Override http request option.
16218
16525
  * @throws {RequiredError}
16219
16526
  */
16220
- apiV1ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
16527
+ apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ConsultationModel>;
16221
16528
  /**
16222
16529
  *
16223
16530
  * @summary Mark as Paid booking.
@@ -16238,7 +16545,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
16238
16545
  /**
16239
16546
  *
16240
16547
  * @summary Get all consultations.
16241
- * @param {string} [searchString]
16548
+ * @param {string} [userId]
16549
+ * @param {string} [userName]
16550
+ * @param {string} [hospitalId]
16551
+ * @param {string} [hospitalName]
16552
+ * @param {string} [doctorId]
16553
+ * @param {string} [doctorName]
16554
+ * @param {string} [dealId]
16555
+ * @param {string} [dealName]
16242
16556
  * @param {boolean} [isOpen]
16243
16557
  * @param {boolean} [isCompleted]
16244
16558
  * @param {ConsultationStatus} [status]
@@ -16247,13 +16561,15 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
16247
16561
  * @param {SortingOrder} [sortConfirmedDateStart]
16248
16562
  * @param {boolean} [isExternal]
16249
16563
  * @param {boolean} [paymentEnabled]
16564
+ * @param {string} [languageCode]
16565
+ * @param {boolean} [showHidden]
16250
16566
  * @param {number} [page]
16251
16567
  * @param {number} [limit]
16252
16568
  * @param {Date} [lastRetrieved]
16253
16569
  * @param {*} [options] Override http request option.
16254
16570
  * @throws {RequiredError}
16255
16571
  */
16256
- apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
16572
+ apiV1ConsultationsGet(userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, dealId?: string | undefined, dealName?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, isExternal?: boolean | undefined, paymentEnabled?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
16257
16573
  };
16258
16574
  /**
16259
16575
  * ConsultationsApi - object-oriented interface
@@ -16294,11 +16610,12 @@ export declare class ConsultationsApi extends BaseAPI {
16294
16610
  *
16295
16611
  * @summary Get consultation.
16296
16612
  * @param {string} consultationId
16613
+ * @param {string} [languageCode]
16297
16614
  * @param {*} [options] Override http request option.
16298
16615
  * @throws {RequiredError}
16299
16616
  * @memberof ConsultationsApi
16300
16617
  */
16301
- apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
16618
+ apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
16302
16619
  /**
16303
16620
  *
16304
16621
  * @summary Mark as Paid booking.
@@ -16321,7 +16638,14 @@ export declare class ConsultationsApi extends BaseAPI {
16321
16638
  /**
16322
16639
  *
16323
16640
  * @summary Get all consultations.
16324
- * @param {string} [searchString]
16641
+ * @param {string} [userId]
16642
+ * @param {string} [userName]
16643
+ * @param {string} [hospitalId]
16644
+ * @param {string} [hospitalName]
16645
+ * @param {string} [doctorId]
16646
+ * @param {string} [doctorName]
16647
+ * @param {string} [dealId]
16648
+ * @param {string} [dealName]
16325
16649
  * @param {boolean} [isOpen]
16326
16650
  * @param {boolean} [isCompleted]
16327
16651
  * @param {ConsultationStatus} [status]
@@ -16330,6 +16654,8 @@ export declare class ConsultationsApi extends BaseAPI {
16330
16654
  * @param {SortingOrder} [sortConfirmedDateStart]
16331
16655
  * @param {boolean} [isExternal]
16332
16656
  * @param {boolean} [paymentEnabled]
16657
+ * @param {string} [languageCode]
16658
+ * @param {boolean} [showHidden]
16333
16659
  * @param {number} [page]
16334
16660
  * @param {number} [limit]
16335
16661
  * @param {Date} [lastRetrieved]
@@ -16337,7 +16663,7 @@ export declare class ConsultationsApi extends BaseAPI {
16337
16663
  * @throws {RequiredError}
16338
16664
  * @memberof ConsultationsApi
16339
16665
  */
16340
- apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
16666
+ 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<import("axios").AxiosResponse<ConsultationsModel>>;
16341
16667
  }
16342
16668
  /**
16343
16669
  * ContributorsApi - axios parameter creator
@@ -16939,14 +17265,13 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
16939
17265
  * @param {Date} [createdDate]
16940
17266
  * @param {string} [languageCode]
16941
17267
  * @param {boolean} [showHidden]
16942
- * @param {boolean} [returnDefaultValue]
16943
17268
  * @param {number} [page]
16944
17269
  * @param {number} [limit]
16945
17270
  * @param {Date} [lastRetrieved]
16946
17271
  * @param {*} [options] Override http request option.
16947
17272
  * @throws {RequiredError}
16948
17273
  */
16949
- apiV1CountriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17274
+ apiV1CountriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16950
17275
  /**
16951
17276
  *
16952
17277
  * @summary Create a country.
@@ -17064,14 +17389,13 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
17064
17389
  * @param {Date} [createdDate]
17065
17390
  * @param {string} [languageCode]
17066
17391
  * @param {boolean} [showHidden]
17067
- * @param {boolean} [returnDefaultValue]
17068
17392
  * @param {number} [page]
17069
17393
  * @param {number} [limit]
17070
17394
  * @param {Date} [lastRetrieved]
17071
17395
  * @param {*} [options] Override http request option.
17072
17396
  * @throws {RequiredError}
17073
17397
  */
17074
- apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountriesModel>>;
17398
+ apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountriesModel>>;
17075
17399
  /**
17076
17400
  *
17077
17401
  * @summary Create a country.
@@ -17189,14 +17513,13 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
17189
17513
  * @param {Date} [createdDate]
17190
17514
  * @param {string} [languageCode]
17191
17515
  * @param {boolean} [showHidden]
17192
- * @param {boolean} [returnDefaultValue]
17193
17516
  * @param {number} [page]
17194
17517
  * @param {number} [limit]
17195
17518
  * @param {Date} [lastRetrieved]
17196
17519
  * @param {*} [options] Override http request option.
17197
17520
  * @throws {RequiredError}
17198
17521
  */
17199
- apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<CountriesModel>;
17522
+ apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<CountriesModel>;
17200
17523
  /**
17201
17524
  *
17202
17525
  * @summary Create a country.
@@ -17325,7 +17648,6 @@ export declare class CountriesApi extends BaseAPI {
17325
17648
  * @param {Date} [createdDate]
17326
17649
  * @param {string} [languageCode]
17327
17650
  * @param {boolean} [showHidden]
17328
- * @param {boolean} [returnDefaultValue]
17329
17651
  * @param {number} [page]
17330
17652
  * @param {number} [limit]
17331
17653
  * @param {Date} [lastRetrieved]
@@ -17333,7 +17655,7 @@ export declare class CountriesApi extends BaseAPI {
17333
17655
  * @throws {RequiredError}
17334
17656
  * @memberof CountriesApi
17335
17657
  */
17336
- apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountriesModel>>;
17658
+ apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountriesModel>>;
17337
17659
  /**
17338
17660
  *
17339
17661
  * @summary Create a country.
@@ -17431,11 +17753,10 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
17431
17753
  * @summary Get deal.
17432
17754
  * @param {string} dealId
17433
17755
  * @param {string} [languageCode]
17434
- * @param {boolean} [returnDefaultValue]
17435
17756
  * @param {*} [options] Override http request option.
17436
17757
  * @throws {RequiredError}
17437
17758
  */
17438
- apiV1DealsDealIdGet: (dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17759
+ apiV1DealsDealIdGet: (dealId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17439
17760
  /**
17440
17761
  *
17441
17762
  * @summary Get all DealPackage.
@@ -17446,13 +17767,15 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
17446
17767
  * @param {string} [countryId]
17447
17768
  * @param {string} [hospitalId]
17448
17769
  * @param {string} [hospitalName]
17770
+ * @param {string} [languageCode]
17771
+ * @param {boolean} [showHidden]
17449
17772
  * @param {number} [page]
17450
17773
  * @param {number} [limit]
17451
17774
  * @param {Date} [lastRetrieved]
17452
17775
  * @param {*} [options] Override http request option.
17453
17776
  * @throws {RequiredError}
17454
17777
  */
17455
- apiV1DealsDealIdPackagesGet: (dealId: string, relatedDealPackageId?: string | undefined, dealName?: string | undefined, name?: string | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17778
+ apiV1DealsDealIdPackagesGet: (dealId: string, relatedDealPackageId?: string | undefined, dealName?: string | undefined, name?: string | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17456
17779
  /**
17457
17780
  *
17458
17781
  * @summary Delete DealPackage.
@@ -17467,10 +17790,11 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
17467
17790
  * @summary Get DealPackage.
17468
17791
  * @param {string} dealId
17469
17792
  * @param {string} packageId
17793
+ * @param {string} [languageCode]
17470
17794
  * @param {*} [options] Override http request option.
17471
17795
  * @throws {RequiredError}
17472
17796
  */
17473
- apiV1DealsDealIdPackagesPackageIdGet: (dealId: string, packageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17797
+ apiV1DealsDealIdPackagesPackageIdGet: (dealId: string, packageId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17474
17798
  /**
17475
17799
  *
17476
17800
  * @summary Update DealPackage.
@@ -17642,11 +17966,10 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
17642
17966
  * @summary Get deal.
17643
17967
  * @param {string} dealId
17644
17968
  * @param {string} [languageCode]
17645
- * @param {boolean} [returnDefaultValue]
17646
17969
  * @param {*} [options] Override http request option.
17647
17970
  * @throws {RequiredError}
17648
17971
  */
17649
- apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
17972
+ apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
17650
17973
  /**
17651
17974
  *
17652
17975
  * @summary Get all DealPackage.
@@ -17657,13 +17980,15 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
17657
17980
  * @param {string} [countryId]
17658
17981
  * @param {string} [hospitalId]
17659
17982
  * @param {string} [hospitalName]
17983
+ * @param {string} [languageCode]
17984
+ * @param {boolean} [showHidden]
17660
17985
  * @param {number} [page]
17661
17986
  * @param {number} [limit]
17662
17987
  * @param {Date} [lastRetrieved]
17663
17988
  * @param {*} [options] Override http request option.
17664
17989
  * @throws {RequiredError}
17665
17990
  */
17666
- apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string | undefined, dealName?: string | undefined, name?: string | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackagesModel>>;
17991
+ apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string | undefined, dealName?: string | undefined, name?: string | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackagesModel>>;
17667
17992
  /**
17668
17993
  *
17669
17994
  * @summary Delete DealPackage.
@@ -17678,10 +18003,11 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
17678
18003
  * @summary Get DealPackage.
17679
18004
  * @param {string} dealId
17680
18005
  * @param {string} packageId
18006
+ * @param {string} [languageCode]
17681
18007
  * @param {*} [options] Override http request option.
17682
18008
  * @throws {RequiredError}
17683
18009
  */
17684
- apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackageModel>>;
18010
+ apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackageModel>>;
17685
18011
  /**
17686
18012
  *
17687
18013
  * @summary Update DealPackage.
@@ -17853,11 +18179,10 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
17853
18179
  * @summary Get deal.
17854
18180
  * @param {string} dealId
17855
18181
  * @param {string} [languageCode]
17856
- * @param {boolean} [returnDefaultValue]
17857
18182
  * @param {*} [options] Override http request option.
17858
18183
  * @throws {RequiredError}
17859
18184
  */
17860
- apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DealModel>;
18185
+ apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DealModel>;
17861
18186
  /**
17862
18187
  *
17863
18188
  * @summary Get all DealPackage.
@@ -17868,13 +18193,15 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
17868
18193
  * @param {string} [countryId]
17869
18194
  * @param {string} [hospitalId]
17870
18195
  * @param {string} [hospitalName]
18196
+ * @param {string} [languageCode]
18197
+ * @param {boolean} [showHidden]
17871
18198
  * @param {number} [page]
17872
18199
  * @param {number} [limit]
17873
18200
  * @param {Date} [lastRetrieved]
17874
18201
  * @param {*} [options] Override http request option.
17875
18202
  * @throws {RequiredError}
17876
18203
  */
17877
- apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string | undefined, dealName?: string | undefined, name?: string | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealPackagesModel>;
18204
+ apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string | undefined, dealName?: string | undefined, name?: string | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealPackagesModel>;
17878
18205
  /**
17879
18206
  *
17880
18207
  * @summary Delete DealPackage.
@@ -17889,10 +18216,11 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
17889
18216
  * @summary Get DealPackage.
17890
18217
  * @param {string} dealId
17891
18218
  * @param {string} packageId
18219
+ * @param {string} [languageCode]
17892
18220
  * @param {*} [options] Override http request option.
17893
18221
  * @throws {RequiredError}
17894
18222
  */
17895
- apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: any): AxiosPromise<DealPackageModel>;
18223
+ apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DealPackageModel>;
17896
18224
  /**
17897
18225
  *
17898
18226
  * @summary Update DealPackage.
@@ -18067,12 +18395,11 @@ export declare class DealsApi extends BaseAPI {
18067
18395
  * @summary Get deal.
18068
18396
  * @param {string} dealId
18069
18397
  * @param {string} [languageCode]
18070
- * @param {boolean} [returnDefaultValue]
18071
18398
  * @param {*} [options] Override http request option.
18072
18399
  * @throws {RequiredError}
18073
18400
  * @memberof DealsApi
18074
18401
  */
18075
- apiV1DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
18402
+ apiV1DealsDealIdGet(dealId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
18076
18403
  /**
18077
18404
  *
18078
18405
  * @summary Get all DealPackage.
@@ -18083,6 +18410,8 @@ export declare class DealsApi extends BaseAPI {
18083
18410
  * @param {string} [countryId]
18084
18411
  * @param {string} [hospitalId]
18085
18412
  * @param {string} [hospitalName]
18413
+ * @param {string} [languageCode]
18414
+ * @param {boolean} [showHidden]
18086
18415
  * @param {number} [page]
18087
18416
  * @param {number} [limit]
18088
18417
  * @param {Date} [lastRetrieved]
@@ -18090,7 +18419,7 @@ export declare class DealsApi extends BaseAPI {
18090
18419
  * @throws {RequiredError}
18091
18420
  * @memberof DealsApi
18092
18421
  */
18093
- apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackagesModel>>;
18422
+ 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<import("axios").AxiosResponse<DealPackagesModel>>;
18094
18423
  /**
18095
18424
  *
18096
18425
  * @summary Delete DealPackage.
@@ -18106,11 +18435,12 @@ export declare class DealsApi extends BaseAPI {
18106
18435
  * @summary Get DealPackage.
18107
18436
  * @param {string} dealId
18108
18437
  * @param {string} packageId
18438
+ * @param {string} [languageCode]
18109
18439
  * @param {*} [options] Override http request option.
18110
18440
  * @throws {RequiredError}
18111
18441
  * @memberof DealsApi
18112
18442
  */
18113
- apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
18443
+ apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
18114
18444
  /**
18115
18445
  *
18116
18446
  * @summary Update DealPackage.
@@ -18277,48 +18607,241 @@ export declare class DealsApi extends BaseAPI {
18277
18607
  apiV1DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
18278
18608
  }
18279
18609
  /**
18280
- * DoctorsApi - axios parameter creator
18610
+ * DoctorAffiliationsApi - axios parameter creator
18281
18611
  * @export
18282
18612
  */
18283
- export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
18613
+ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
18284
18614
  /**
18285
18615
  *
18286
18616
  * @summary Get all doctor affiliations.
18287
- * @param {string} doctorId
18617
+ * @param {string} [hospitalId]
18618
+ * @param {string} [hospitalName]
18619
+ * @param {string} [doctorId]
18620
+ * @param {string} [doctorName]
18621
+ * @param {string} [doctorSlug]
18622
+ * @param {string} [languageCode]
18623
+ * @param {boolean} [showHidden]
18624
+ * @param {number} [page]
18625
+ * @param {number} [limit]
18626
+ * @param {Date} [lastRetrieved]
18627
+ * @param {*} [options] Override http request option.
18628
+ * @throws {RequiredError}
18629
+ */
18630
+ apiV1DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18631
+ /**
18632
+ *
18633
+ * @summary Delete doctor affiliation.
18634
+ * @param {string} id
18635
+ * @param {*} [options] Override http request option.
18636
+ * @throws {RequiredError}
18637
+ */
18638
+ apiV1DoctoraffiliationsIdDelete: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18639
+ /**
18640
+ *
18641
+ * @summary Get doctor affiliation.
18642
+ * @param {string} id
18643
+ * @param {string} [languageCode]
18644
+ * @param {*} [options] Override http request option.
18645
+ * @throws {RequiredError}
18646
+ */
18647
+ apiV1DoctoraffiliationsIdGet: (id: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18648
+ /**
18649
+ *
18650
+ * @summary Update Hospital.
18651
+ * @param {string} id
18652
+ * @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
18653
+ * @param {*} [options] Override http request option.
18654
+ * @throws {RequiredError}
18655
+ */
18656
+ apiV1DoctoraffiliationsIdPut: (id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18657
+ /**
18658
+ *
18659
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
18660
+ * @param {*} [options] Override http request option.
18661
+ * @throws {RequiredError}
18662
+ */
18663
+ apiV1DoctoraffiliationsPost: (createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18664
+ };
18665
+ /**
18666
+ * DoctorAffiliationsApi - functional programming interface
18667
+ * @export
18668
+ */
18669
+ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | undefined) => {
18670
+ /**
18671
+ *
18672
+ * @summary Get all doctor affiliations.
18673
+ * @param {string} [hospitalId]
18674
+ * @param {string} [hospitalName]
18675
+ * @param {string} [doctorId]
18676
+ * @param {string} [doctorName]
18677
+ * @param {string} [doctorSlug]
18678
+ * @param {string} [languageCode]
18679
+ * @param {boolean} [showHidden]
18680
+ * @param {number} [page]
18681
+ * @param {number} [limit]
18682
+ * @param {Date} [lastRetrieved]
18683
+ * @param {*} [options] Override http request option.
18684
+ * @throws {RequiredError}
18685
+ */
18686
+ apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
18687
+ /**
18688
+ *
18689
+ * @summary Delete doctor affiliation.
18690
+ * @param {string} id
18691
+ * @param {*} [options] Override http request option.
18692
+ * @throws {RequiredError}
18693
+ */
18694
+ apiV1DoctoraffiliationsIdDelete(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18695
+ /**
18696
+ *
18697
+ * @summary Get doctor affiliation.
18698
+ * @param {string} id
18699
+ * @param {string} [languageCode]
18700
+ * @param {*} [options] Override http request option.
18701
+ * @throws {RequiredError}
18702
+ */
18703
+ apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
18704
+ /**
18705
+ *
18706
+ * @summary Update Hospital.
18707
+ * @param {string} id
18708
+ * @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
18709
+ * @param {*} [options] Override http request option.
18710
+ * @throws {RequiredError}
18711
+ */
18712
+ apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
18713
+ /**
18714
+ *
18715
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
18716
+ * @param {*} [options] Override http request option.
18717
+ * @throws {RequiredError}
18718
+ */
18719
+ apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
18720
+ };
18721
+ /**
18722
+ * DoctorAffiliationsApi - factory interface
18723
+ * @export
18724
+ */
18725
+ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
18726
+ /**
18727
+ *
18728
+ * @summary Get all doctor affiliations.
18729
+ * @param {string} [hospitalId]
18730
+ * @param {string} [hospitalName]
18731
+ * @param {string} [doctorId]
18732
+ * @param {string} [doctorName]
18733
+ * @param {string} [doctorSlug]
18734
+ * @param {string} [languageCode]
18735
+ * @param {boolean} [showHidden]
18736
+ * @param {number} [page]
18737
+ * @param {number} [limit]
18738
+ * @param {Date} [lastRetrieved]
18739
+ * @param {*} [options] Override http request option.
18740
+ * @throws {RequiredError}
18741
+ */
18742
+ apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, doctorName?: string | undefined, doctorSlug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
18743
+ /**
18744
+ *
18745
+ * @summary Delete doctor affiliation.
18746
+ * @param {string} id
18747
+ * @param {*} [options] Override http request option.
18748
+ * @throws {RequiredError}
18749
+ */
18750
+ apiV1DoctoraffiliationsIdDelete(id: string, options?: any): AxiosPromise<boolean>;
18751
+ /**
18752
+ *
18753
+ * @summary Get doctor affiliation.
18754
+ * @param {string} id
18755
+ * @param {string} [languageCode]
18756
+ * @param {*} [options] Override http request option.
18757
+ * @throws {RequiredError}
18758
+ */
18759
+ apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
18760
+ /**
18761
+ *
18762
+ * @summary Update Hospital.
18763
+ * @param {string} id
18764
+ * @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
18765
+ * @param {*} [options] Override http request option.
18766
+ * @throws {RequiredError}
18767
+ */
18768
+ apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
18769
+ /**
18770
+ *
18771
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
18772
+ * @param {*} [options] Override http request option.
18773
+ * @throws {RequiredError}
18774
+ */
18775
+ apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
18776
+ };
18777
+ /**
18778
+ * DoctorAffiliationsApi - object-oriented interface
18779
+ * @export
18780
+ * @class DoctorAffiliationsApi
18781
+ * @extends {BaseAPI}
18782
+ */
18783
+ export declare class DoctorAffiliationsApi extends BaseAPI {
18784
+ /**
18785
+ *
18786
+ * @summary Get all doctor affiliations.
18787
+ * @param {string} [hospitalId]
18288
18788
  * @param {string} [hospitalName]
18789
+ * @param {string} [doctorId]
18790
+ * @param {string} [doctorName]
18791
+ * @param {string} [doctorSlug]
18792
+ * @param {string} [languageCode]
18793
+ * @param {boolean} [showHidden]
18289
18794
  * @param {number} [page]
18290
18795
  * @param {number} [limit]
18291
18796
  * @param {Date} [lastRetrieved]
18292
18797
  * @param {*} [options] Override http request option.
18293
18798
  * @throws {RequiredError}
18799
+ * @memberof DoctorAffiliationsApi
18294
18800
  */
18295
- apiV1DoctorsDoctorIdAffiliationsGet: (doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18801
+ apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
18296
18802
  /**
18297
18803
  *
18298
18804
  * @summary Delete doctor affiliation.
18299
- * @param {string} doctorId
18300
- * @param {string} hospitalId
18805
+ * @param {string} id
18301
18806
  * @param {*} [options] Override http request option.
18302
18807
  * @throws {RequiredError}
18808
+ * @memberof DoctorAffiliationsApi
18303
18809
  */
18304
- apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete: (doctorId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18810
+ apiV1DoctoraffiliationsIdDelete(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
18305
18811
  /**
18306
18812
  *
18307
18813
  * @summary Get doctor affiliation.
18308
- * @param {string} doctorId
18309
- * @param {string} hospitalId
18814
+ * @param {string} id
18815
+ * @param {string} [languageCode]
18310
18816
  * @param {*} [options] Override http request option.
18311
18817
  * @throws {RequiredError}
18818
+ * @memberof DoctorAffiliationsApi
18312
18819
  */
18313
- apiV1DoctorsDoctorIdAffiliationsHospitalIdGet: (doctorId: string, hospitalId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18820
+ apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
18821
+ /**
18822
+ *
18823
+ * @summary Update Hospital.
18824
+ * @param {string} id
18825
+ * @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
18826
+ * @param {*} [options] Override http request option.
18827
+ * @throws {RequiredError}
18828
+ * @memberof DoctorAffiliationsApi
18829
+ */
18830
+ apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
18314
18831
  /**
18315
18832
  *
18316
- * @param {string} doctorId
18317
18833
  * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
18318
18834
  * @param {*} [options] Override http request option.
18319
18835
  * @throws {RequiredError}
18836
+ * @memberof DoctorAffiliationsApi
18320
18837
  */
18321
- apiV1DoctorsDoctorIdAffiliationsPost: (doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18838
+ apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
18839
+ }
18840
+ /**
18841
+ * DoctorsApi - axios parameter creator
18842
+ * @export
18843
+ */
18844
+ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
18322
18845
  /**
18323
18846
  *
18324
18847
  * @summary Delete DoctorCertificate.
@@ -18436,12 +18959,10 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
18436
18959
  /**
18437
18960
  *
18438
18961
  * @param {string} doctorId
18439
- * @param {string} [languageCode]
18440
- * @param {boolean} [returnDefaultValue]
18441
18962
  * @param {*} [options] Override http request option.
18442
18963
  * @throws {RequiredError}
18443
18964
  */
18444
- apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18965
+ apiV1DoctorsDoctorIdGet: (doctorId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18445
18966
  /**
18446
18967
  *
18447
18968
  * @summary Get all DoctorLanguages.
@@ -18608,13 +19129,14 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
18608
19129
  * @param {string} [doctorName]
18609
19130
  * @param {string} [specialtyId]
18610
19131
  * @param {string} [specialtyName]
19132
+ * @param {string} [languageCode]
18611
19133
  * @param {number} [page]
18612
19134
  * @param {number} [limit]
18613
19135
  * @param {Date} [lastRetrieved]
18614
19136
  * @param {*} [options] Override http request option.
18615
19137
  * @throws {RequiredError}
18616
19138
  */
18617
- apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19139
+ apiV1DoctorsDoctorIdSpecialtiesGet: (doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18618
19140
  /**
18619
19141
  *
18620
19142
  * @summary Link a doctor to a specialty.
@@ -18656,8 +19178,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
18656
19178
  *
18657
19179
  * @summary Get all Doctors.
18658
19180
  * @param {string} [hospitalId]
18659
- * @param {string} [languageCode]
18660
- * @param {boolean} [returnDefaultValue]
19181
+ * @param {string} [hospitalName]
18661
19182
  * @param {Array<string>} [ids]
18662
19183
  * @param {string} [specialtyId]
18663
19184
  * @param {boolean} [consultationEnabled]
@@ -18674,7 +19195,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
18674
19195
  * @param {*} [options] Override http request option.
18675
19196
  * @throws {RequiredError}
18676
19197
  */
18677
- apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19198
+ apiV1DoctorsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18678
19199
  /**
18679
19200
  *
18680
19201
  * @summary Create a Doctor.
@@ -18687,8 +19208,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
18687
19208
  *
18688
19209
  * @summary Get all Doctors.
18689
19210
  * @param {string} [hospitalId]
18690
- * @param {string} [languageCode]
18691
- * @param {boolean} [returnDefaultValue]
19211
+ * @param {string} [hospitalName]
18692
19212
  * @param {Array<string>} [ids]
18693
19213
  * @param {string} [specialtyId]
18694
19214
  * @param {boolean} [consultationEnabled]
@@ -18705,60 +19225,13 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
18705
19225
  * @param {*} [options] Override http request option.
18706
19226
  * @throws {RequiredError}
18707
19227
  */
18708
- apiV1DoctorsSimpleGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18709
- /**
18710
- *
18711
- * @param {string} slug
18712
- * @param {string} [languageCode]
18713
- * @param {boolean} [returnDefaultValue]
18714
- * @param {*} [options] Override http request option.
18715
- * @throws {RequiredError}
18716
- */
18717
- apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
19228
+ apiV1DoctorsSimpleGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18718
19229
  };
18719
19230
  /**
18720
19231
  * DoctorsApi - functional programming interface
18721
19232
  * @export
18722
19233
  */
18723
19234
  export declare const DoctorsApiFp: (configuration?: Configuration | undefined) => {
18724
- /**
18725
- *
18726
- * @summary Get all doctor affiliations.
18727
- * @param {string} doctorId
18728
- * @param {string} [hospitalName]
18729
- * @param {number} [page]
18730
- * @param {number} [limit]
18731
- * @param {Date} [lastRetrieved]
18732
- * @param {*} [options] Override http request option.
18733
- * @throws {RequiredError}
18734
- */
18735
- apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
18736
- /**
18737
- *
18738
- * @summary Delete doctor affiliation.
18739
- * @param {string} doctorId
18740
- * @param {string} hospitalId
18741
- * @param {*} [options] Override http request option.
18742
- * @throws {RequiredError}
18743
- */
18744
- apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
18745
- /**
18746
- *
18747
- * @summary Get doctor affiliation.
18748
- * @param {string} doctorId
18749
- * @param {string} hospitalId
18750
- * @param {*} [options] Override http request option.
18751
- * @throws {RequiredError}
18752
- */
18753
- apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
18754
- /**
18755
- *
18756
- * @param {string} doctorId
18757
- * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
18758
- * @param {*} [options] Override http request option.
18759
- * @throws {RequiredError}
18760
- */
18761
- apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
18762
19235
  /**
18763
19236
  *
18764
19237
  * @summary Delete DoctorCertificate.
@@ -18876,12 +19349,10 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
18876
19349
  /**
18877
19350
  *
18878
19351
  * @param {string} doctorId
18879
- * @param {string} [languageCode]
18880
- * @param {boolean} [returnDefaultValue]
18881
19352
  * @param {*} [options] Override http request option.
18882
19353
  * @throws {RequiredError}
18883
19354
  */
18884
- apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
19355
+ apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
18885
19356
  /**
18886
19357
  *
18887
19358
  * @summary Get all DoctorLanguages.
@@ -19048,13 +19519,14 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
19048
19519
  * @param {string} [doctorName]
19049
19520
  * @param {string} [specialtyId]
19050
19521
  * @param {string} [specialtyName]
19522
+ * @param {string} [languageCode]
19051
19523
  * @param {number} [page]
19052
19524
  * @param {number} [limit]
19053
19525
  * @param {Date} [lastRetrieved]
19054
19526
  * @param {*} [options] Override http request option.
19055
19527
  * @throws {RequiredError}
19056
19528
  */
19057
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
19529
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
19058
19530
  /**
19059
19531
  *
19060
19532
  * @summary Link a doctor to a specialty.
@@ -19096,8 +19568,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
19096
19568
  *
19097
19569
  * @summary Get all Doctors.
19098
19570
  * @param {string} [hospitalId]
19099
- * @param {string} [languageCode]
19100
- * @param {boolean} [returnDefaultValue]
19571
+ * @param {string} [hospitalName]
19101
19572
  * @param {Array<string>} [ids]
19102
19573
  * @param {string} [specialtyId]
19103
19574
  * @param {boolean} [consultationEnabled]
@@ -19114,7 +19585,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
19114
19585
  * @param {*} [options] Override http request option.
19115
19586
  * @throws {RequiredError}
19116
19587
  */
19117
- apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
19588
+ apiV1DoctorsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
19118
19589
  /**
19119
19590
  *
19120
19591
  * @summary Create a Doctor.
@@ -19127,8 +19598,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
19127
19598
  *
19128
19599
  * @summary Get all Doctors.
19129
19600
  * @param {string} [hospitalId]
19130
- * @param {string} [languageCode]
19131
- * @param {boolean} [returnDefaultValue]
19601
+ * @param {string} [hospitalName]
19132
19602
  * @param {Array<string>} [ids]
19133
19603
  * @param {string} [specialtyId]
19134
19604
  * @param {boolean} [consultationEnabled]
@@ -19145,60 +19615,13 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
19145
19615
  * @param {*} [options] Override http request option.
19146
19616
  * @throws {RequiredError}
19147
19617
  */
19148
- apiV1DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsSimpleModel>>;
19149
- /**
19150
- *
19151
- * @param {string} slug
19152
- * @param {string} [languageCode]
19153
- * @param {boolean} [returnDefaultValue]
19154
- * @param {*} [options] Override http request option.
19155
- * @throws {RequiredError}
19156
- */
19157
- apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
19618
+ apiV1DoctorsSimpleGet(hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsSimpleModel>>;
19158
19619
  };
19159
19620
  /**
19160
19621
  * DoctorsApi - factory interface
19161
19622
  * @export
19162
19623
  */
19163
19624
  export declare const DoctorsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
19164
- /**
19165
- *
19166
- * @summary Get all doctor affiliations.
19167
- * @param {string} doctorId
19168
- * @param {string} [hospitalName]
19169
- * @param {number} [page]
19170
- * @param {number} [limit]
19171
- * @param {Date} [lastRetrieved]
19172
- * @param {*} [options] Override http request option.
19173
- * @throws {RequiredError}
19174
- */
19175
- apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
19176
- /**
19177
- *
19178
- * @summary Delete doctor affiliation.
19179
- * @param {string} doctorId
19180
- * @param {string} hospitalId
19181
- * @param {*} [options] Override http request option.
19182
- * @throws {RequiredError}
19183
- */
19184
- apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: any): AxiosPromise<boolean>;
19185
- /**
19186
- *
19187
- * @summary Get doctor affiliation.
19188
- * @param {string} doctorId
19189
- * @param {string} hospitalId
19190
- * @param {*} [options] Override http request option.
19191
- * @throws {RequiredError}
19192
- */
19193
- apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
19194
- /**
19195
- *
19196
- * @param {string} doctorId
19197
- * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
19198
- * @param {*} [options] Override http request option.
19199
- * @throws {RequiredError}
19200
- */
19201
- apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
19202
19625
  /**
19203
19626
  *
19204
19627
  * @summary Delete DoctorCertificate.
@@ -19316,12 +19739,10 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
19316
19739
  /**
19317
19740
  *
19318
19741
  * @param {string} doctorId
19319
- * @param {string} [languageCode]
19320
- * @param {boolean} [returnDefaultValue]
19321
19742
  * @param {*} [options] Override http request option.
19322
19743
  * @throws {RequiredError}
19323
19744
  */
19324
- apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
19745
+ apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel>;
19325
19746
  /**
19326
19747
  *
19327
19748
  * @summary Get all DoctorLanguages.
@@ -19488,13 +19909,14 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
19488
19909
  * @param {string} [doctorName]
19489
19910
  * @param {string} [specialtyId]
19490
19911
  * @param {string} [specialtyName]
19912
+ * @param {string} [languageCode]
19491
19913
  * @param {number} [page]
19492
19914
  * @param {number} [limit]
19493
19915
  * @param {Date} [lastRetrieved]
19494
19916
  * @param {*} [options] Override http request option.
19495
19917
  * @throws {RequiredError}
19496
19918
  */
19497
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
19919
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorSpecialtiesModel>;
19498
19920
  /**
19499
19921
  *
19500
19922
  * @summary Link a doctor to a specialty.
@@ -19536,8 +19958,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
19536
19958
  *
19537
19959
  * @summary Get all Doctors.
19538
19960
  * @param {string} [hospitalId]
19539
- * @param {string} [languageCode]
19540
- * @param {boolean} [returnDefaultValue]
19961
+ * @param {string} [hospitalName]
19541
19962
  * @param {Array<string>} [ids]
19542
19963
  * @param {string} [specialtyId]
19543
19964
  * @param {boolean} [consultationEnabled]
@@ -19554,7 +19975,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
19554
19975
  * @param {*} [options] Override http request option.
19555
19976
  * @throws {RequiredError}
19556
19977
  */
19557
- apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
19978
+ apiV1DoctorsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
19558
19979
  /**
19559
19980
  *
19560
19981
  * @summary Create a Doctor.
@@ -19567,8 +19988,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
19567
19988
  *
19568
19989
  * @summary Get all Doctors.
19569
19990
  * @param {string} [hospitalId]
19570
- * @param {string} [languageCode]
19571
- * @param {boolean} [returnDefaultValue]
19991
+ * @param {string} [hospitalName]
19572
19992
  * @param {Array<string>} [ids]
19573
19993
  * @param {string} [specialtyId]
19574
19994
  * @param {boolean} [consultationEnabled]
@@ -19585,16 +20005,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
19585
20005
  * @param {*} [options] Override http request option.
19586
20006
  * @throws {RequiredError}
19587
20007
  */
19588
- apiV1DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsSimpleModel>;
19589
- /**
19590
- *
19591
- * @param {string} slug
19592
- * @param {string} [languageCode]
19593
- * @param {boolean} [returnDefaultValue]
19594
- * @param {*} [options] Override http request option.
19595
- * @throws {RequiredError}
19596
- */
19597
- apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
20008
+ apiV1DoctorsSimpleGet(hospitalId?: string | undefined, hospitalName?: string | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsSimpleModel>;
19598
20009
  };
19599
20010
  /**
19600
20011
  * DoctorsApi - object-oriented interface
@@ -19603,48 +20014,6 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
19603
20014
  * @extends {BaseAPI}
19604
20015
  */
19605
20016
  export declare class DoctorsApi extends BaseAPI {
19606
- /**
19607
- *
19608
- * @summary Get all doctor affiliations.
19609
- * @param {string} doctorId
19610
- * @param {string} [hospitalName]
19611
- * @param {number} [page]
19612
- * @param {number} [limit]
19613
- * @param {Date} [lastRetrieved]
19614
- * @param {*} [options] Override http request option.
19615
- * @throws {RequiredError}
19616
- * @memberof DoctorsApi
19617
- */
19618
- apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
19619
- /**
19620
- *
19621
- * @summary Delete doctor affiliation.
19622
- * @param {string} doctorId
19623
- * @param {string} hospitalId
19624
- * @param {*} [options] Override http request option.
19625
- * @throws {RequiredError}
19626
- * @memberof DoctorsApi
19627
- */
19628
- apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
19629
- /**
19630
- *
19631
- * @summary Get doctor affiliation.
19632
- * @param {string} doctorId
19633
- * @param {string} hospitalId
19634
- * @param {*} [options] Override http request option.
19635
- * @throws {RequiredError}
19636
- * @memberof DoctorsApi
19637
- */
19638
- apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
19639
- /**
19640
- *
19641
- * @param {string} doctorId
19642
- * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
19643
- * @param {*} [options] Override http request option.
19644
- * @throws {RequiredError}
19645
- * @memberof DoctorsApi
19646
- */
19647
- apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
19648
20017
  /**
19649
20018
  *
19650
20019
  * @summary Delete DoctorCertificate.
@@ -19773,13 +20142,11 @@ export declare class DoctorsApi extends BaseAPI {
19773
20142
  /**
19774
20143
  *
19775
20144
  * @param {string} doctorId
19776
- * @param {string} [languageCode]
19777
- * @param {boolean} [returnDefaultValue]
19778
20145
  * @param {*} [options] Override http request option.
19779
20146
  * @throws {RequiredError}
19780
20147
  * @memberof DoctorsApi
19781
20148
  */
19782
- apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
20149
+ apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
19783
20150
  /**
19784
20151
  *
19785
20152
  * @summary Get all DoctorLanguages.
@@ -19962,6 +20329,7 @@ export declare class DoctorsApi extends BaseAPI {
19962
20329
  * @param {string} [doctorName]
19963
20330
  * @param {string} [specialtyId]
19964
20331
  * @param {string} [specialtyName]
20332
+ * @param {string} [languageCode]
19965
20333
  * @param {number} [page]
19966
20334
  * @param {number} [limit]
19967
20335
  * @param {Date} [lastRetrieved]
@@ -19969,7 +20337,7 @@ export declare class DoctorsApi extends BaseAPI {
19969
20337
  * @throws {RequiredError}
19970
20338
  * @memberof DoctorsApi
19971
20339
  */
19972
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
20340
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
19973
20341
  /**
19974
20342
  *
19975
20343
  * @summary Link a doctor to a specialty.
@@ -20015,8 +20383,7 @@ export declare class DoctorsApi extends BaseAPI {
20015
20383
  *
20016
20384
  * @summary Get all Doctors.
20017
20385
  * @param {string} [hospitalId]
20018
- * @param {string} [languageCode]
20019
- * @param {boolean} [returnDefaultValue]
20386
+ * @param {string} [hospitalName]
20020
20387
  * @param {Array<string>} [ids]
20021
20388
  * @param {string} [specialtyId]
20022
20389
  * @param {boolean} [consultationEnabled]
@@ -20034,7 +20401,7 @@ export declare class DoctorsApi extends BaseAPI {
20034
20401
  * @throws {RequiredError}
20035
20402
  * @memberof DoctorsApi
20036
20403
  */
20037
- apiV1DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
20404
+ apiV1DoctorsGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
20038
20405
  /**
20039
20406
  *
20040
20407
  * @summary Create a Doctor.
@@ -20048,8 +20415,7 @@ export declare class DoctorsApi extends BaseAPI {
20048
20415
  *
20049
20416
  * @summary Get all Doctors.
20050
20417
  * @param {string} [hospitalId]
20051
- * @param {string} [languageCode]
20052
- * @param {boolean} [returnDefaultValue]
20418
+ * @param {string} [hospitalName]
20053
20419
  * @param {Array<string>} [ids]
20054
20420
  * @param {string} [specialtyId]
20055
20421
  * @param {boolean} [consultationEnabled]
@@ -20067,17 +20433,7 @@ export declare class DoctorsApi extends BaseAPI {
20067
20433
  * @throws {RequiredError}
20068
20434
  * @memberof DoctorsApi
20069
20435
  */
20070
- apiV1DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel>>;
20071
- /**
20072
- *
20073
- * @param {string} slug
20074
- * @param {string} [languageCode]
20075
- * @param {boolean} [returnDefaultValue]
20076
- * @param {*} [options] Override http request option.
20077
- * @throws {RequiredError}
20078
- * @memberof DoctorsApi
20079
- */
20080
- apiV1DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
20436
+ apiV1DoctorsSimpleGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel>>;
20081
20437
  }
20082
20438
  /**
20083
20439
  * EmailMarketingsApi - axios parameter creator
@@ -21316,7 +21672,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21316
21672
  * @param {boolean} [showHidden]
21317
21673
  * @param {string} [languageCode]
21318
21674
  * @param {Array<string>} [ids]
21319
- * @param {boolean} [returnDefaultValue]
21320
21675
  * @param {boolean} [paymentEnabled]
21321
21676
  * @param {number} [page]
21322
21677
  * @param {number} [limit]
@@ -21324,7 +21679,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21324
21679
  * @param {*} [options] Override http request option.
21325
21680
  * @throws {RequiredError}
21326
21681
  */
21327
- apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21682
+ apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21328
21683
  /**
21329
21684
  *
21330
21685
  * @summary Delete HospitalAccreditation.
@@ -21674,8 +22029,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21674
22029
  * @param {string} [name]
21675
22030
  * @param {string} [slug]
21676
22031
  * @param {MarketingType} [marketingType]
21677
- * @param {boolean} [returnDefaultValue]
21678
- * @param {boolean} [includeServices]
21679
22032
  * @param {string} [languageCode]
21680
22033
  * @param {boolean} [showHidden]
21681
22034
  * @param {number} [page]
@@ -21684,7 +22037,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21684
22037
  * @param {*} [options] Override http request option.
21685
22038
  * @throws {RequiredError}
21686
22039
  */
21687
- apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22040
+ apiV1HospitalsHospitalIdSpecialtiesGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21688
22041
  /**
21689
22042
  *
21690
22043
  * @summary Get all HospitalServiceMedias.
@@ -21761,8 +22114,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21761
22114
  * @param {string} [name]
21762
22115
  * @param {string} [slug]
21763
22116
  * @param {MarketingType} [marketingType]
21764
- * @param {boolean} [returnDefaultValue]
21765
- * @param {boolean} [includeServices]
21766
22117
  * @param {string} [languageCode]
21767
22118
  * @param {boolean} [showHidden]
21768
22119
  * @param {number} [page]
@@ -21771,7 +22122,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21771
22122
  * @param {*} [options] Override http request option.
21772
22123
  * @throws {RequiredError}
21773
22124
  */
21774
- apiV1HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22125
+ apiV1HospitalsHospitalIdSpecialtiesSimpleGet: (hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21775
22126
  /**
21776
22127
  *
21777
22128
  * @summary Get HospitalSpecialty by slug.
@@ -21799,12 +22150,10 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21799
22150
  * @param {string} hospitalId
21800
22151
  * @param {string} specialtyId
21801
22152
  * @param {string} [languageCode]
21802
- * @param {boolean} [returnDefaultValue]
21803
- * @param {boolean} [includeServices]
21804
22153
  * @param {*} [options] Override http request option.
21805
22154
  * @throws {RequiredError}
21806
22155
  */
21807
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22156
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21808
22157
  /**
21809
22158
  *
21810
22159
  * @summary Update HospitalSpecialty.
@@ -21827,15 +22176,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21827
22176
  * @param {MarketingType} [marketingType]
21828
22177
  * @param {Procedure} [procedure]
21829
22178
  * @param {Date} [created]
22179
+ * @param {boolean} [showHidden]
21830
22180
  * @param {string} [languageCode]
21831
- * @param {boolean} [returnDefaultValue]
21832
22181
  * @param {number} [page]
21833
22182
  * @param {number} [limit]
21834
22183
  * @param {Date} [lastRetrieved]
21835
22184
  * @param {*} [options] Override http request option.
21836
22185
  * @throws {RequiredError}
21837
22186
  */
21838
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, id?: string | undefined, name?: string | undefined, slug?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22187
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, id?: string | undefined, name?: string | undefined, slug?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21839
22188
  /**
21840
22189
  *
21841
22190
  * @summary Create HospitalService.
@@ -22020,7 +22369,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22020
22369
  * @param {boolean} [showHidden]
22021
22370
  * @param {string} [languageCode]
22022
22371
  * @param {Array<string>} [ids]
22023
- * @param {boolean} [returnDefaultValue]
22024
22372
  * @param {boolean} [paymentEnabled]
22025
22373
  * @param {number} [page]
22026
22374
  * @param {number} [limit]
@@ -22028,7 +22376,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22028
22376
  * @param {*} [options] Override http request option.
22029
22377
  * @throws {RequiredError}
22030
22378
  */
22031
- apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22379
+ apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22032
22380
  /**
22033
22381
  *
22034
22382
  * @param {string} slug
@@ -22058,7 +22406,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22058
22406
  * @param {boolean} [showHidden]
22059
22407
  * @param {string} [languageCode]
22060
22408
  * @param {Array<string>} [ids]
22061
- * @param {boolean} [returnDefaultValue]
22062
22409
  * @param {boolean} [paymentEnabled]
22063
22410
  * @param {number} [page]
22064
22411
  * @param {number} [limit]
@@ -22066,7 +22413,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22066
22413
  * @param {*} [options] Override http request option.
22067
22414
  * @throws {RequiredError}
22068
22415
  */
22069
- apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
22416
+ apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
22070
22417
  /**
22071
22418
  *
22072
22419
  * @summary Delete HospitalAccreditation.
@@ -22416,8 +22763,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22416
22763
  * @param {string} [name]
22417
22764
  * @param {string} [slug]
22418
22765
  * @param {MarketingType} [marketingType]
22419
- * @param {boolean} [returnDefaultValue]
22420
- * @param {boolean} [includeServices]
22421
22766
  * @param {string} [languageCode]
22422
22767
  * @param {boolean} [showHidden]
22423
22768
  * @param {number} [page]
@@ -22426,7 +22771,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22426
22771
  * @param {*} [options] Override http request option.
22427
22772
  * @throws {RequiredError}
22428
22773
  */
22429
- apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
22774
+ apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
22430
22775
  /**
22431
22776
  *
22432
22777
  * @summary Get all HospitalServiceMedias.
@@ -22503,8 +22848,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22503
22848
  * @param {string} [name]
22504
22849
  * @param {string} [slug]
22505
22850
  * @param {MarketingType} [marketingType]
22506
- * @param {boolean} [returnDefaultValue]
22507
- * @param {boolean} [includeServices]
22508
22851
  * @param {string} [languageCode]
22509
22852
  * @param {boolean} [showHidden]
22510
22853
  * @param {number} [page]
@@ -22513,7 +22856,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22513
22856
  * @param {*} [options] Override http request option.
22514
22857
  * @throws {RequiredError}
22515
22858
  */
22516
- apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
22859
+ apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesSimpleModel>>;
22517
22860
  /**
22518
22861
  *
22519
22862
  * @summary Get HospitalSpecialty by slug.
@@ -22541,12 +22884,10 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22541
22884
  * @param {string} hospitalId
22542
22885
  * @param {string} specialtyId
22543
22886
  * @param {string} [languageCode]
22544
- * @param {boolean} [returnDefaultValue]
22545
- * @param {boolean} [includeServices]
22546
22887
  * @param {*} [options] Override http request option.
22547
22888
  * @throws {RequiredError}
22548
22889
  */
22549
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
22890
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
22550
22891
  /**
22551
22892
  *
22552
22893
  * @summary Update HospitalSpecialty.
@@ -22569,15 +22910,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22569
22910
  * @param {MarketingType} [marketingType]
22570
22911
  * @param {Procedure} [procedure]
22571
22912
  * @param {Date} [created]
22913
+ * @param {boolean} [showHidden]
22572
22914
  * @param {string} [languageCode]
22573
- * @param {boolean} [returnDefaultValue]
22574
22915
  * @param {number} [page]
22575
22916
  * @param {number} [limit]
22576
22917
  * @param {Date} [lastRetrieved]
22577
22918
  * @param {*} [options] Override http request option.
22578
22919
  * @throws {RequiredError}
22579
22920
  */
22580
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string | undefined, name?: string | undefined, slug?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
22921
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string | undefined, name?: string | undefined, slug?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
22581
22922
  /**
22582
22923
  *
22583
22924
  * @summary Create HospitalService.
@@ -22762,7 +23103,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22762
23103
  * @param {boolean} [showHidden]
22763
23104
  * @param {string} [languageCode]
22764
23105
  * @param {Array<string>} [ids]
22765
- * @param {boolean} [returnDefaultValue]
22766
23106
  * @param {boolean} [paymentEnabled]
22767
23107
  * @param {number} [page]
22768
23108
  * @param {number} [limit]
@@ -22770,7 +23110,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22770
23110
  * @param {*} [options] Override http request option.
22771
23111
  * @throws {RequiredError}
22772
23112
  */
22773
- apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
23113
+ apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
22774
23114
  /**
22775
23115
  *
22776
23116
  * @param {string} slug
@@ -22800,7 +23140,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
22800
23140
  * @param {boolean} [showHidden]
22801
23141
  * @param {string} [languageCode]
22802
23142
  * @param {Array<string>} [ids]
22803
- * @param {boolean} [returnDefaultValue]
22804
23143
  * @param {boolean} [paymentEnabled]
22805
23144
  * @param {number} [page]
22806
23145
  * @param {number} [limit]
@@ -22808,7 +23147,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
22808
23147
  * @param {*} [options] Override http request option.
22809
23148
  * @throws {RequiredError}
22810
23149
  */
22811
- apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
23150
+ apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
22812
23151
  /**
22813
23152
  *
22814
23153
  * @summary Delete HospitalAccreditation.
@@ -23158,8 +23497,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23158
23497
  * @param {string} [name]
23159
23498
  * @param {string} [slug]
23160
23499
  * @param {MarketingType} [marketingType]
23161
- * @param {boolean} [returnDefaultValue]
23162
- * @param {boolean} [includeServices]
23163
23500
  * @param {string} [languageCode]
23164
23501
  * @param {boolean} [showHidden]
23165
23502
  * @param {number} [page]
@@ -23168,7 +23505,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23168
23505
  * @param {*} [options] Override http request option.
23169
23506
  * @throws {RequiredError}
23170
23507
  */
23171
- apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
23508
+ apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesModel>;
23172
23509
  /**
23173
23510
  *
23174
23511
  * @summary Get all HospitalServiceMedias.
@@ -23245,8 +23582,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23245
23582
  * @param {string} [name]
23246
23583
  * @param {string} [slug]
23247
23584
  * @param {MarketingType} [marketingType]
23248
- * @param {boolean} [returnDefaultValue]
23249
- * @param {boolean} [includeServices]
23250
23585
  * @param {string} [languageCode]
23251
23586
  * @param {boolean} [showHidden]
23252
23587
  * @param {number} [page]
@@ -23255,7 +23590,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23255
23590
  * @param {*} [options] Override http request option.
23256
23591
  * @throws {RequiredError}
23257
23592
  */
23258
- apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
23593
+ apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, hospitalSpecialtyId?: string | undefined, name?: string | undefined, slug?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel>;
23259
23594
  /**
23260
23595
  *
23261
23596
  * @summary Get HospitalSpecialty by slug.
@@ -23283,12 +23618,10 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23283
23618
  * @param {string} hospitalId
23284
23619
  * @param {string} specialtyId
23285
23620
  * @param {string} [languageCode]
23286
- * @param {boolean} [returnDefaultValue]
23287
- * @param {boolean} [includeServices]
23288
23621
  * @param {*} [options] Override http request option.
23289
23622
  * @throws {RequiredError}
23290
23623
  */
23291
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
23624
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
23292
23625
  /**
23293
23626
  *
23294
23627
  * @summary Update HospitalSpecialty.
@@ -23311,15 +23644,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23311
23644
  * @param {MarketingType} [marketingType]
23312
23645
  * @param {Procedure} [procedure]
23313
23646
  * @param {Date} [created]
23647
+ * @param {boolean} [showHidden]
23314
23648
  * @param {string} [languageCode]
23315
- * @param {boolean} [returnDefaultValue]
23316
23649
  * @param {number} [page]
23317
23650
  * @param {number} [limit]
23318
23651
  * @param {Date} [lastRetrieved]
23319
23652
  * @param {*} [options] Override http request option.
23320
23653
  * @throws {RequiredError}
23321
23654
  */
23322
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string | undefined, name?: string | undefined, slug?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
23655
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string | undefined, name?: string | undefined, slug?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
23323
23656
  /**
23324
23657
  *
23325
23658
  * @summary Create HospitalService.
@@ -23504,7 +23837,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23504
23837
  * @param {boolean} [showHidden]
23505
23838
  * @param {string} [languageCode]
23506
23839
  * @param {Array<string>} [ids]
23507
- * @param {boolean} [returnDefaultValue]
23508
23840
  * @param {boolean} [paymentEnabled]
23509
23841
  * @param {number} [page]
23510
23842
  * @param {number} [limit]
@@ -23512,7 +23844,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23512
23844
  * @param {*} [options] Override http request option.
23513
23845
  * @throws {RequiredError}
23514
23846
  */
23515
- apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
23847
+ apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, paymentEnabled?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
23516
23848
  /**
23517
23849
  *
23518
23850
  * @param {string} slug
@@ -23544,7 +23876,6 @@ export declare class HospitalsApi extends BaseAPI {
23544
23876
  * @param {boolean} [showHidden]
23545
23877
  * @param {string} [languageCode]
23546
23878
  * @param {Array<string>} [ids]
23547
- * @param {boolean} [returnDefaultValue]
23548
23879
  * @param {boolean} [paymentEnabled]
23549
23880
  * @param {number} [page]
23550
23881
  * @param {number} [limit]
@@ -23553,7 +23884,7 @@ export declare class HospitalsApi extends BaseAPI {
23553
23884
  * @throws {RequiredError}
23554
23885
  * @memberof HospitalsApi
23555
23886
  */
23556
- apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
23887
+ 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<import("axios").AxiosResponse<HospitalsModel>>;
23557
23888
  /**
23558
23889
  *
23559
23890
  * @summary Delete HospitalAccreditation.
@@ -23936,8 +24267,6 @@ export declare class HospitalsApi extends BaseAPI {
23936
24267
  * @param {string} [name]
23937
24268
  * @param {string} [slug]
23938
24269
  * @param {MarketingType} [marketingType]
23939
- * @param {boolean} [returnDefaultValue]
23940
- * @param {boolean} [includeServices]
23941
24270
  * @param {string} [languageCode]
23942
24271
  * @param {boolean} [showHidden]
23943
24272
  * @param {number} [page]
@@ -23947,7 +24276,7 @@ export declare class HospitalsApi extends BaseAPI {
23947
24276
  * @throws {RequiredError}
23948
24277
  * @memberof HospitalsApi
23949
24278
  */
23950
- apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, returnDefaultValue?: boolean, includeServices?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
24279
+ 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<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
23951
24280
  /**
23952
24281
  *
23953
24282
  * @summary Get all HospitalServiceMedias.
@@ -24030,8 +24359,6 @@ export declare class HospitalsApi extends BaseAPI {
24030
24359
  * @param {string} [name]
24031
24360
  * @param {string} [slug]
24032
24361
  * @param {MarketingType} [marketingType]
24033
- * @param {boolean} [returnDefaultValue]
24034
- * @param {boolean} [includeServices]
24035
24362
  * @param {string} [languageCode]
24036
24363
  * @param {boolean} [showHidden]
24037
24364
  * @param {number} [page]
@@ -24041,7 +24368,7 @@ export declare class HospitalsApi extends BaseAPI {
24041
24368
  * @throws {RequiredError}
24042
24369
  * @memberof HospitalsApi
24043
24370
  */
24044
- apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, returnDefaultValue?: boolean, includeServices?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel>>;
24371
+ 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<import("axios").AxiosResponse<HospitalSpecialtiesSimpleModel>>;
24045
24372
  /**
24046
24373
  *
24047
24374
  * @summary Get HospitalSpecialty by slug.
@@ -24071,13 +24398,11 @@ export declare class HospitalsApi extends BaseAPI {
24071
24398
  * @param {string} hospitalId
24072
24399
  * @param {string} specialtyId
24073
24400
  * @param {string} [languageCode]
24074
- * @param {boolean} [returnDefaultValue]
24075
- * @param {boolean} [includeServices]
24076
24401
  * @param {*} [options] Override http request option.
24077
24402
  * @throws {RequiredError}
24078
24403
  * @memberof HospitalsApi
24079
24404
  */
24080
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
24405
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
24081
24406
  /**
24082
24407
  *
24083
24408
  * @summary Update HospitalSpecialty.
@@ -24101,8 +24426,8 @@ export declare class HospitalsApi extends BaseAPI {
24101
24426
  * @param {MarketingType} [marketingType]
24102
24427
  * @param {Procedure} [procedure]
24103
24428
  * @param {Date} [created]
24429
+ * @param {boolean} [showHidden]
24104
24430
  * @param {string} [languageCode]
24105
- * @param {boolean} [returnDefaultValue]
24106
24431
  * @param {number} [page]
24107
24432
  * @param {number} [limit]
24108
24433
  * @param {Date} [lastRetrieved]
@@ -24110,7 +24435,7 @@ export declare class HospitalsApi extends BaseAPI {
24110
24435
  * @throws {RequiredError}
24111
24436
  * @memberof HospitalsApi
24112
24437
  */
24113
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
24438
+ 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<import("axios").AxiosResponse<HospitalServicesModel>>;
24114
24439
  /**
24115
24440
  *
24116
24441
  * @summary Create HospitalService.
@@ -24311,7 +24636,6 @@ export declare class HospitalsApi extends BaseAPI {
24311
24636
  * @param {boolean} [showHidden]
24312
24637
  * @param {string} [languageCode]
24313
24638
  * @param {Array<string>} [ids]
24314
- * @param {boolean} [returnDefaultValue]
24315
24639
  * @param {boolean} [paymentEnabled]
24316
24640
  * @param {number} [page]
24317
24641
  * @param {number} [limit]
@@ -24320,7 +24644,7 @@ export declare class HospitalsApi extends BaseAPI {
24320
24644
  * @throws {RequiredError}
24321
24645
  * @memberof HospitalsApi
24322
24646
  */
24323
- apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
24647
+ 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<import("axios").AxiosResponse<HospitalsSimpleModel>>;
24324
24648
  /**
24325
24649
  *
24326
24650
  * @param {string} slug
@@ -24654,14 +24978,16 @@ export declare const ManagersApiAxiosParamCreator: (configuration?: Configuratio
24654
24978
  *
24655
24979
  * @summary Get all manager affiliations.
24656
24980
  * @param {string} managerId
24981
+ * @param {string} [hospitalId]
24657
24982
  * @param {string} [hospitalName]
24983
+ * @param {string} [languageCode]
24658
24984
  * @param {number} [page]
24659
24985
  * @param {number} [limit]
24660
24986
  * @param {Date} [lastRetrieved]
24661
24987
  * @param {*} [options] Override http request option.
24662
24988
  * @throws {RequiredError}
24663
24989
  */
24664
- apiV1ManagersManagerIdAffiliationsGet: (managerId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
24990
+ apiV1ManagersManagerIdAffiliationsGet: (managerId: string, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
24665
24991
  /**
24666
24992
  *
24667
24993
  * @summary Delete manager affiliation.
@@ -24749,14 +25075,16 @@ export declare const ManagersApiFp: (configuration?: Configuration | undefined)
24749
25075
  *
24750
25076
  * @summary Get all manager affiliations.
24751
25077
  * @param {string} managerId
25078
+ * @param {string} [hospitalId]
24752
25079
  * @param {string} [hospitalName]
25080
+ * @param {string} [languageCode]
24753
25081
  * @param {number} [page]
24754
25082
  * @param {number} [limit]
24755
25083
  * @param {Date} [lastRetrieved]
24756
25084
  * @param {*} [options] Override http request option.
24757
25085
  * @throws {RequiredError}
24758
25086
  */
24759
- apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerAffiliationsModel>>;
25087
+ apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ManagerAffiliationsModel>>;
24760
25088
  /**
24761
25089
  *
24762
25090
  * @summary Delete manager affiliation.
@@ -24844,14 +25172,16 @@ export declare const ManagersApiFactory: (configuration?: Configuration | undefi
24844
25172
  *
24845
25173
  * @summary Get all manager affiliations.
24846
25174
  * @param {string} managerId
25175
+ * @param {string} [hospitalId]
24847
25176
  * @param {string} [hospitalName]
25177
+ * @param {string} [languageCode]
24848
25178
  * @param {number} [page]
24849
25179
  * @param {number} [limit]
24850
25180
  * @param {Date} [lastRetrieved]
24851
25181
  * @param {*} [options] Override http request option.
24852
25182
  * @throws {RequiredError}
24853
25183
  */
24854
- apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ManagerAffiliationsModel>;
25184
+ apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ManagerAffiliationsModel>;
24855
25185
  /**
24856
25186
  *
24857
25187
  * @summary Delete manager affiliation.
@@ -24942,7 +25272,9 @@ export declare class ManagersApi extends BaseAPI {
24942
25272
  *
24943
25273
  * @summary Get all manager affiliations.
24944
25274
  * @param {string} managerId
25275
+ * @param {string} [hospitalId]
24945
25276
  * @param {string} [hospitalName]
25277
+ * @param {string} [languageCode]
24946
25278
  * @param {number} [page]
24947
25279
  * @param {number} [limit]
24948
25280
  * @param {Date} [lastRetrieved]
@@ -24950,7 +25282,7 @@ export declare class ManagersApi extends BaseAPI {
24950
25282
  * @throws {RequiredError}
24951
25283
  * @memberof ManagersApi
24952
25284
  */
24953
- apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerAffiliationsModel>>;
25285
+ apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalId?: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerAffiliationsModel>>;
24954
25286
  /**
24955
25287
  *
24956
25288
  * @summary Delete manager affiliation.
@@ -26347,13 +26679,14 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
26347
26679
  * @param {number} [rate]
26348
26680
  * @param {ReviewType} [reviewType]
26349
26681
  * @param {string} [languageCode]
26682
+ * @param {boolean} [showHidden]
26350
26683
  * @param {number} [page]
26351
26684
  * @param {number} [limit]
26352
26685
  * @param {Date} [lastRetrieved]
26353
26686
  * @param {*} [options] Override http request option.
26354
26687
  * @throws {RequiredError}
26355
26688
  */
26356
- apiV1ServicereviewsGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
26689
+ apiV1ServicereviewsGet: (serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
26357
26690
  /**
26358
26691
  *
26359
26692
  * @summary Create a ServiceReview.
@@ -26454,13 +26787,14 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
26454
26787
  * @param {number} [rate]
26455
26788
  * @param {ReviewType} [reviewType]
26456
26789
  * @param {string} [languageCode]
26790
+ * @param {boolean} [showHidden]
26457
26791
  * @param {number} [page]
26458
26792
  * @param {number} [limit]
26459
26793
  * @param {Date} [lastRetrieved]
26460
26794
  * @param {*} [options] Override http request option.
26461
26795
  * @throws {RequiredError}
26462
26796
  */
26463
- apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
26797
+ apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
26464
26798
  /**
26465
26799
  *
26466
26800
  * @summary Create a ServiceReview.
@@ -26561,13 +26895,14 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
26561
26895
  * @param {number} [rate]
26562
26896
  * @param {ReviewType} [reviewType]
26563
26897
  * @param {string} [languageCode]
26898
+ * @param {boolean} [showHidden]
26564
26899
  * @param {number} [page]
26565
26900
  * @param {number} [limit]
26566
26901
  * @param {Date} [lastRetrieved]
26567
26902
  * @param {*} [options] Override http request option.
26568
26903
  * @throws {RequiredError}
26569
26904
  */
26570
- apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
26905
+ apiV1ServicereviewsGet(serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ServiceReviewsModel>;
26571
26906
  /**
26572
26907
  *
26573
26908
  * @summary Create a ServiceReview.
@@ -26670,6 +27005,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
26670
27005
  * @param {number} [rate]
26671
27006
  * @param {ReviewType} [reviewType]
26672
27007
  * @param {string} [languageCode]
27008
+ * @param {boolean} [showHidden]
26673
27009
  * @param {number} [page]
26674
27010
  * @param {number} [limit]
26675
27011
  * @param {Date} [lastRetrieved]
@@ -26677,7 +27013,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
26677
27013
  * @throws {RequiredError}
26678
27014
  * @memberof ServiceReviewsApi
26679
27015
  */
26680
- 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<import("axios").AxiosResponse<ServiceReviewsModel>>;
27016
+ 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<import("axios").AxiosResponse<ServiceReviewsModel>>;
26681
27017
  /**
26682
27018
  *
26683
27019
  * @summary Create a ServiceReview.
@@ -26792,15 +27128,15 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
26792
27128
  * @param {MarketingType} [marketingType]
26793
27129
  * @param {Procedure} [procedure]
26794
27130
  * @param {Date} [created]
27131
+ * @param {boolean} [showHidden]
26795
27132
  * @param {string} [languageCode]
26796
- * @param {boolean} [returnDefaultValue]
26797
27133
  * @param {number} [page]
26798
27134
  * @param {number} [limit]
26799
27135
  * @param {Date} [lastRetrieved]
26800
27136
  * @param {*} [options] Override http request option.
26801
27137
  * @throws {RequiredError}
26802
27138
  */
26803
- apiV1ServicesGet: (id?: string | undefined, name?: string | undefined, slug?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
27139
+ apiV1ServicesGet: (id?: string | undefined, name?: string | undefined, slug?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
26804
27140
  /**
26805
27141
  *
26806
27142
  * @param {string} serviceId
@@ -26842,15 +27178,15 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
26842
27178
  * @param {MarketingType} [marketingType]
26843
27179
  * @param {Procedure} [procedure]
26844
27180
  * @param {Date} [created]
27181
+ * @param {boolean} [showHidden]
26845
27182
  * @param {string} [languageCode]
26846
- * @param {boolean} [returnDefaultValue]
26847
27183
  * @param {number} [page]
26848
27184
  * @param {number} [limit]
26849
27185
  * @param {Date} [lastRetrieved]
26850
27186
  * @param {*} [options] Override http request option.
26851
27187
  * @throws {RequiredError}
26852
27188
  */
26853
- apiV1ServicesGet(id?: string | undefined, name?: string | undefined, slug?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
27189
+ apiV1ServicesGet(id?: string | undefined, name?: string | undefined, slug?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
26854
27190
  /**
26855
27191
  *
26856
27192
  * @param {string} serviceId
@@ -26892,15 +27228,15 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
26892
27228
  * @param {MarketingType} [marketingType]
26893
27229
  * @param {Procedure} [procedure]
26894
27230
  * @param {Date} [created]
27231
+ * @param {boolean} [showHidden]
26895
27232
  * @param {string} [languageCode]
26896
- * @param {boolean} [returnDefaultValue]
26897
27233
  * @param {number} [page]
26898
27234
  * @param {number} [limit]
26899
27235
  * @param {Date} [lastRetrieved]
26900
27236
  * @param {*} [options] Override http request option.
26901
27237
  * @throws {RequiredError}
26902
27238
  */
26903
- apiV1ServicesGet(id?: string | undefined, name?: string | undefined, slug?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
27239
+ apiV1ServicesGet(id?: string | undefined, name?: string | undefined, slug?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
26904
27240
  /**
26905
27241
  *
26906
27242
  * @param {string} serviceId
@@ -26944,8 +27280,8 @@ export declare class ServicesApi extends BaseAPI {
26944
27280
  * @param {MarketingType} [marketingType]
26945
27281
  * @param {Procedure} [procedure]
26946
27282
  * @param {Date} [created]
27283
+ * @param {boolean} [showHidden]
26947
27284
  * @param {string} [languageCode]
26948
- * @param {boolean} [returnDefaultValue]
26949
27285
  * @param {number} [page]
26950
27286
  * @param {number} [limit]
26951
27287
  * @param {Date} [lastRetrieved]
@@ -26953,7 +27289,7 @@ export declare class ServicesApi extends BaseAPI {
26953
27289
  * @throws {RequiredError}
26954
27290
  * @memberof ServicesApi
26955
27291
  */
26956
- 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, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
27292
+ 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<import("axios").AxiosResponse<HospitalServicesModel>>;
26957
27293
  /**
26958
27294
  *
26959
27295
  * @param {string} serviceId