ch-admin-api-client-typescript 3.4.1 → 3.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts 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,168 +2299,150 @@ export interface ConsultationModel {
2281
2299
  * @memberof ConsultationModel
2282
2300
  */
2283
2301
  'id'?: string;
2284
- /**
2285
- *
2286
- * @type {ConsultationType}
2287
- * @memberof ConsultationModel
2288
- */
2289
- 'consultationType'?: ConsultationType;
2290
- /**
2291
- *
2292
- * @type {string}
2293
- * @memberof ConsultationModel
2294
- */
2295
- 'patientId'?: string;
2296
- /**
2297
- *
2298
- * @type {string}
2299
- * @memberof ConsultationModel
2300
- */
2301
- 'patientName'?: string | null;
2302
2302
  /**
2303
2303
  *
2304
2304
  * @type {string}
2305
2305
  * @memberof ConsultationModel
2306
2306
  */
2307
- 'patientPhoto'?: string | null;
2307
+ 'languageCode'?: string | null;
2308
2308
  /**
2309
2309
  *
2310
- * @type {string}
2310
+ * @type {ConsultationType}
2311
2311
  * @memberof ConsultationModel
2312
2312
  */
2313
- 'communicationUserId'?: string | null;
2313
+ 'consultationType'?: ConsultationType;
2314
2314
  /**
2315
2315
  *
2316
2316
  * @type {string}
2317
2317
  * @memberof ConsultationModel
2318
2318
  */
2319
- 'hospitalId'?: string;
2319
+ 'patientId'?: string;
2320
2320
  /**
2321
2321
  *
2322
2322
  * @type {string}
2323
2323
  * @memberof ConsultationModel
2324
2324
  */
2325
- 'hospitalName'?: string | null;
2325
+ 'patientName'?: string | null;
2326
2326
  /**
2327
2327
  *
2328
2328
  * @type {string}
2329
2329
  * @memberof ConsultationModel
2330
2330
  */
2331
- 'hospitalSlug'?: string | null;
2331
+ 'patientPhoto'?: string | null;
2332
2332
  /**
2333
2333
  *
2334
2334
  * @type {string}
2335
2335
  * @memberof ConsultationModel
2336
2336
  */
2337
- 'hospitalTimeZone'?: string | null;
2337
+ 'firstName'?: string | null;
2338
2338
  /**
2339
2339
  *
2340
2340
  * @type {string}
2341
2341
  * @memberof ConsultationModel
2342
2342
  */
2343
- 'specialtyId'?: string | null;
2343
+ 'lastName'?: string | null;
2344
2344
  /**
2345
2345
  *
2346
2346
  * @type {string}
2347
2347
  * @memberof ConsultationModel
2348
2348
  */
2349
- 'specialtyName'?: string | null;
2349
+ 'email'?: string | null;
2350
2350
  /**
2351
2351
  *
2352
2352
  * @type {string}
2353
2353
  * @memberof ConsultationModel
2354
2354
  */
2355
- 'specialtySlug'?: string | null;
2355
+ 'phone'?: string | null;
2356
2356
  /**
2357
2357
  *
2358
- * @type {string}
2358
+ * @type {Date}
2359
2359
  * @memberof ConsultationModel
2360
2360
  */
2361
- 'doctorId'?: string | null;
2361
+ 'dateOfBirth'?: Date | null;
2362
2362
  /**
2363
2363
  *
2364
- * @type {string}
2364
+ * @type {Gender}
2365
2365
  * @memberof ConsultationModel
2366
2366
  */
2367
- 'doctorName'?: string | null;
2367
+ 'gender'?: Gender;
2368
2368
  /**
2369
2369
  *
2370
2370
  * @type {string}
2371
2371
  * @memberof ConsultationModel
2372
2372
  */
2373
- 'doctorSlug'?: string | null;
2373
+ 'comment'?: string | null;
2374
2374
  /**
2375
2375
  *
2376
2376
  * @type {string}
2377
2377
  * @memberof ConsultationModel
2378
2378
  */
2379
- 'dealId'?: string | null;
2379
+ 'hospitalId'?: string;
2380
2380
  /**
2381
2381
  *
2382
2382
  * @type {string}
2383
2383
  * @memberof ConsultationModel
2384
2384
  */
2385
- 'dealName'?: string | null;
2385
+ 'hospitalName'?: string | null;
2386
2386
  /**
2387
2387
  *
2388
2388
  * @type {string}
2389
2389
  * @memberof ConsultationModel
2390
2390
  */
2391
- 'dealSlug'?: string | null;
2391
+ 'hospitalSlug'?: string | null;
2392
2392
  /**
2393
2393
  *
2394
2394
  * @type {string}
2395
2395
  * @memberof ConsultationModel
2396
2396
  */
2397
- 'language'?: string | null;
2397
+ 'hospitalTimeZone'?: string | null;
2398
2398
  /**
2399
2399
  *
2400
- * @type {boolean}
2400
+ * @type {string}
2401
2401
  * @memberof ConsultationModel
2402
2402
  */
2403
- 'isAccountHolder'?: boolean;
2403
+ 'doctorId'?: string | null;
2404
2404
  /**
2405
2405
  *
2406
2406
  * @type {string}
2407
2407
  * @memberof ConsultationModel
2408
2408
  */
2409
- 'firstName'?: string | null;
2409
+ 'doctorName'?: string | null;
2410
2410
  /**
2411
2411
  *
2412
2412
  * @type {string}
2413
2413
  * @memberof ConsultationModel
2414
2414
  */
2415
- 'lastName'?: string | null;
2415
+ 'doctorSlug'?: string | null;
2416
2416
  /**
2417
2417
  *
2418
2418
  * @type {string}
2419
2419
  * @memberof ConsultationModel
2420
2420
  */
2421
- 'email'?: string | null;
2421
+ 'dealId'?: string | null;
2422
2422
  /**
2423
2423
  *
2424
2424
  * @type {string}
2425
2425
  * @memberof ConsultationModel
2426
2426
  */
2427
- 'phone'?: string | null;
2427
+ 'dealName'?: string | null;
2428
2428
  /**
2429
2429
  *
2430
- * @type {Date}
2430
+ * @type {string}
2431
2431
  * @memberof ConsultationModel
2432
2432
  */
2433
- 'dateOfBirth'?: Date | null;
2433
+ 'dealSlug'?: string | null;
2434
2434
  /**
2435
2435
  *
2436
- * @type {Gender}
2436
+ * @type {string}
2437
2437
  * @memberof ConsultationModel
2438
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}
@@ -5217,49 +5205,49 @@ export interface DealPackageItemModel {
5217
5205
  * @type {string}
5218
5206
  * @memberof DealPackageItemModel
5219
5207
  */
5220
- 'dealId'?: string;
5208
+ 'languageCode'?: string | null;
5221
5209
  /**
5222
5210
  *
5223
5211
  * @type {string}
5224
5212
  * @memberof DealPackageItemModel
5225
5213
  */
5226
- 'dealName'?: string | null;
5214
+ 'dealId'?: string;
5227
5215
  /**
5228
5216
  *
5229
5217
  * @type {string}
5230
5218
  * @memberof DealPackageItemModel
5231
5219
  */
5232
- 'hospitalId'?: string;
5220
+ 'dealName'?: string | null;
5233
5221
  /**
5234
5222
  *
5235
5223
  * @type {string}
5236
5224
  * @memberof DealPackageItemModel
5237
5225
  */
5238
- 'hospitalName'?: string | null;
5226
+ 'dealSlug'?: string | null;
5239
5227
  /**
5240
5228
  *
5241
- * @type {RefundPolicy}
5229
+ * @type {string}
5242
5230
  * @memberof DealPackageItemModel
5243
5231
  */
5244
- 'refundPolicy'?: RefundPolicy;
5232
+ 'hospitalId'?: string;
5245
5233
  /**
5246
5234
  *
5247
5235
  * @type {string}
5248
5236
  * @memberof DealPackageItemModel
5249
5237
  */
5250
- 'additionalServices'?: string | null;
5238
+ 'hospitalName'?: string | null;
5251
5239
  /**
5252
5240
  *
5253
5241
  * @type {string}
5254
5242
  * @memberof DealPackageItemModel
5255
5243
  */
5256
- 'accomodation'?: string | null;
5244
+ 'hospitalSlug'?: string | null;
5257
5245
  /**
5258
5246
  *
5259
- * @type {string}
5247
+ * @type {RefundPolicy}
5260
5248
  * @memberof DealPackageItemModel
5261
5249
  */
5262
- 'transfer'?: string | null;
5250
+ 'refundPolicy'?: RefundPolicy;
5263
5251
  /**
5264
5252
  *
5265
5253
  * @type {string}
@@ -5296,49 +5284,49 @@ export interface DealPackageModel {
5296
5284
  * @type {string}
5297
5285
  * @memberof DealPackageModel
5298
5286
  */
5299
- 'dealId'?: string;
5287
+ 'languageCode'?: string | null;
5300
5288
  /**
5301
5289
  *
5302
5290
  * @type {string}
5303
5291
  * @memberof DealPackageModel
5304
5292
  */
5305
- 'dealName'?: string | null;
5293
+ 'dealId'?: string;
5306
5294
  /**
5307
5295
  *
5308
5296
  * @type {string}
5309
5297
  * @memberof DealPackageModel
5310
5298
  */
5311
- 'hospitalId'?: string;
5299
+ 'dealName'?: string | null;
5312
5300
  /**
5313
5301
  *
5314
5302
  * @type {string}
5315
5303
  * @memberof DealPackageModel
5316
5304
  */
5317
- 'hospitalName'?: string | null;
5305
+ 'dealSlug'?: string | null;
5318
5306
  /**
5319
5307
  *
5320
- * @type {RefundPolicy}
5308
+ * @type {string}
5321
5309
  * @memberof DealPackageModel
5322
5310
  */
5323
- 'refundPolicy'?: RefundPolicy;
5311
+ 'hospitalId'?: string;
5324
5312
  /**
5325
5313
  *
5326
5314
  * @type {string}
5327
5315
  * @memberof DealPackageModel
5328
5316
  */
5329
- 'additionalServices'?: string | null;
5317
+ 'hospitalName'?: string | null;
5330
5318
  /**
5331
5319
  *
5332
5320
  * @type {string}
5333
5321
  * @memberof DealPackageModel
5334
5322
  */
5335
- 'accomodation'?: string | null;
5323
+ 'hospitalSlug'?: string | null;
5336
5324
  /**
5337
5325
  *
5338
- * @type {string}
5326
+ * @type {RefundPolicy}
5339
5327
  * @memberof DealPackageModel
5340
5328
  */
5341
- 'transfer'?: string | null;
5329
+ 'refundPolicy'?: RefundPolicy;
5342
5330
  /**
5343
5331
  *
5344
5332
  * @type {string}
@@ -5357,6 +5345,24 @@ export interface DealPackageModel {
5357
5345
  * @memberof DealPackageModel
5358
5346
  */
5359
5347
  'auditableEntity'?: AuditableEntity;
5348
+ /**
5349
+ *
5350
+ * @type {string}
5351
+ * @memberof DealPackageModel
5352
+ */
5353
+ 'additionalServices'?: string | null;
5354
+ /**
5355
+ *
5356
+ * @type {string}
5357
+ * @memberof DealPackageModel
5358
+ */
5359
+ 'accomodation'?: string | null;
5360
+ /**
5361
+ *
5362
+ * @type {string}
5363
+ * @memberof DealPackageModel
5364
+ */
5365
+ 'transfer'?: string | null;
5360
5366
  }
5361
5367
  /**
5362
5368
  *
@@ -5383,6 +5389,12 @@ export interface DealPackagesModel {
5383
5389
  * @interface DealServiceItemModel
5384
5390
  */
5385
5391
  export interface DealServiceItemModel {
5392
+ /**
5393
+ *
5394
+ * @type {string}
5395
+ * @memberof DealServiceItemModel
5396
+ */
5397
+ 'languageCode'?: string | null;
5386
5398
  /**
5387
5399
  *
5388
5400
  * @type {string}
@@ -5395,6 +5407,12 @@ export interface DealServiceItemModel {
5395
5407
  * @memberof DealServiceItemModel
5396
5408
  */
5397
5409
  'dealName'?: string | null;
5410
+ /**
5411
+ *
5412
+ * @type {string}
5413
+ * @memberof DealServiceItemModel
5414
+ */
5415
+ 'dealSlug'?: string | null;
5398
5416
  /**
5399
5417
  *
5400
5418
  * @type {string}
@@ -5407,6 +5425,12 @@ export interface DealServiceItemModel {
5407
5425
  * @memberof DealServiceItemModel
5408
5426
  */
5409
5427
  'serviceName'?: string | null;
5428
+ /**
5429
+ *
5430
+ * @type {string}
5431
+ * @memberof DealServiceItemModel
5432
+ */
5433
+ 'serviceSlug'?: string | null;
5410
5434
  /**
5411
5435
  *
5412
5436
  * @type {number}
@@ -5420,6 +5444,12 @@ export interface DealServiceItemModel {
5420
5444
  * @interface DealServiceModel
5421
5445
  */
5422
5446
  export interface DealServiceModel {
5447
+ /**
5448
+ *
5449
+ * @type {string}
5450
+ * @memberof DealServiceModel
5451
+ */
5452
+ 'languageCode'?: string | null;
5423
5453
  /**
5424
5454
  *
5425
5455
  * @type {string}
@@ -5432,6 +5462,12 @@ export interface DealServiceModel {
5432
5462
  * @memberof DealServiceModel
5433
5463
  */
5434
5464
  'dealName'?: string | null;
5465
+ /**
5466
+ *
5467
+ * @type {string}
5468
+ * @memberof DealServiceModel
5469
+ */
5470
+ 'dealSlug'?: string | null;
5435
5471
  /**
5436
5472
  *
5437
5473
  * @type {string}
@@ -5444,6 +5480,12 @@ export interface DealServiceModel {
5444
5480
  * @memberof DealServiceModel
5445
5481
  */
5446
5482
  'serviceName'?: string | null;
5483
+ /**
5484
+ *
5485
+ * @type {string}
5486
+ * @memberof DealServiceModel
5487
+ */
5488
+ 'serviceSlug'?: string | null;
5447
5489
  /**
5448
5490
  *
5449
5491
  * @type {number}
@@ -5552,6 +5594,18 @@ export interface DoctorAffiliationItemModel {
5552
5594
  * @memberof DoctorAffiliationItemModel
5553
5595
  */
5554
5596
  'hospitalId'?: string;
5597
+ /**
5598
+ *
5599
+ * @type {string}
5600
+ * @memberof DoctorAffiliationItemModel
5601
+ */
5602
+ 'hospitalName'?: string | null;
5603
+ /**
5604
+ *
5605
+ * @type {string}
5606
+ * @memberof DoctorAffiliationItemModel
5607
+ */
5608
+ 'hospitalSlug'?: string | null;
5555
5609
  /**
5556
5610
  *
5557
5611
  * @type {string}
@@ -5631,6 +5685,18 @@ export interface DoctorAffiliationModel {
5631
5685
  * @memberof DoctorAffiliationModel
5632
5686
  */
5633
5687
  'hospitalId'?: string;
5688
+ /**
5689
+ *
5690
+ * @type {string}
5691
+ * @memberof DoctorAffiliationModel
5692
+ */
5693
+ 'hospitalName'?: string | null;
5694
+ /**
5695
+ *
5696
+ * @type {string}
5697
+ * @memberof DoctorAffiliationModel
5698
+ */
5699
+ 'hospitalSlug'?: string | null;
5634
5700
  /**
5635
5701
  *
5636
5702
  * @type {string}
@@ -5709,18 +5775,6 @@ export interface DoctorAffiliationModel {
5709
5775
  * @memberof DoctorAffiliationModel
5710
5776
  */
5711
5777
  'content'?: string | null;
5712
- /**
5713
- *
5714
- * @type {string}
5715
- * @memberof DoctorAffiliationModel
5716
- */
5717
- 'hospitalName'?: string | null;
5718
- /**
5719
- *
5720
- * @type {string}
5721
- * @memberof DoctorAffiliationModel
5722
- */
5723
- 'hospitalSlug'?: string | null;
5724
5778
  /**
5725
5779
  *
5726
5780
  * @type {string}
@@ -5739,12 +5793,6 @@ export interface DoctorAffiliationModel {
5739
5793
  * @memberof DoctorAffiliationModel
5740
5794
  */
5741
5795
  'customStyle'?: string | null;
5742
- /**
5743
- *
5744
- * @type {Array<LocalizedUrlModel>}
5745
- * @memberof DoctorAffiliationModel
5746
- */
5747
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5748
5796
  /**
5749
5797
  *
5750
5798
  * @type {Array<MediaModel>}
@@ -6609,6 +6657,12 @@ export interface DoctorSpecialtiesModel {
6609
6657
  * @interface DoctorSpecialtyModel
6610
6658
  */
6611
6659
  export interface DoctorSpecialtyModel {
6660
+ /**
6661
+ *
6662
+ * @type {string}
6663
+ * @memberof DoctorSpecialtyModel
6664
+ */
6665
+ 'languageCode'?: string | null;
6612
6666
  /**
6613
6667
  *
6614
6668
  * @type {string}
@@ -6645,18 +6699,6 @@ export interface DoctorSpecialtyModel {
6645
6699
  * @memberof DoctorSpecialtyModel
6646
6700
  */
6647
6701
  'order'?: number;
6648
- /**
6649
- *
6650
- * @type {string}
6651
- * @memberof DoctorSpecialtyModel
6652
- */
6653
- 'doctorId'?: string;
6654
- /**
6655
- *
6656
- * @type {string}
6657
- * @memberof DoctorSpecialtyModel
6658
- */
6659
- 'doctorName'?: string | null;
6660
6702
  }
6661
6703
  /**
6662
6704
  *
@@ -8678,6 +8720,12 @@ export interface LocationModel {
8678
8720
  * @interface ManagerAffiliationItemModel
8679
8721
  */
8680
8722
  export interface ManagerAffiliationItemModel {
8723
+ /**
8724
+ *
8725
+ * @type {string}
8726
+ * @memberof ManagerAffiliationItemModel
8727
+ */
8728
+ 'languageCode'?: string | null;
8681
8729
  /**
8682
8730
  *
8683
8731
  * @type {string}
@@ -8703,6 +8751,12 @@ export interface ManagerAffiliationItemModel {
8703
8751
  * @interface ManagerAffiliationModel
8704
8752
  */
8705
8753
  export interface ManagerAffiliationModel {
8754
+ /**
8755
+ *
8756
+ * @type {string}
8757
+ * @memberof ManagerAffiliationModel
8758
+ */
8759
+ 'languageCode'?: string | null;
8706
8760
  /**
8707
8761
  *
8708
8762
  * @type {string}
@@ -8831,36 +8885,6 @@ export interface ManagerItemModel {
8831
8885
  * @memberof ManagerItemModel
8832
8886
  */
8833
8887
  'auditableEntity'?: AuditableEntity;
8834
- /**
8835
- *
8836
- * @type {string}
8837
- * @memberof ManagerItemModel
8838
- */
8839
- 'userType'?: string | null;
8840
- /**
8841
- *
8842
- * @type {Array<UserLanguageModel>}
8843
- * @memberof ManagerItemModel
8844
- */
8845
- 'languages'?: Array<UserLanguageModel> | null;
8846
- /**
8847
- *
8848
- * @type {Array<UserLocationModel>}
8849
- * @memberof ManagerItemModel
8850
- */
8851
- 'locations'?: Array<UserLocationModel> | null;
8852
- /**
8853
- *
8854
- * @type {string}
8855
- * @memberof ManagerItemModel
8856
- */
8857
- 'hospitalId'?: string | null;
8858
- /**
8859
- *
8860
- * @type {string}
8861
- * @memberof ManagerItemModel
8862
- */
8863
- 'hospitalName'?: string | null;
8864
8888
  /**
8865
8889
  *
8866
8890
  * @type {number}
@@ -8966,28 +8990,16 @@ export interface ManagerModel {
8966
8990
  'userType'?: string | null;
8967
8991
  /**
8968
8992
  *
8969
- * @type {Array<UserLanguageModel>}
8970
- * @memberof ManagerModel
8971
- */
8972
- 'languages'?: Array<UserLanguageModel> | null;
8973
- /**
8974
- *
8975
- * @type {Array<UserLocationModel>}
8976
- * @memberof ManagerModel
8977
- */
8978
- 'locations'?: Array<UserLocationModel> | null;
8979
- /**
8980
- *
8981
- * @type {string}
8993
+ * @type {Array<UserLanguageModel>}
8982
8994
  * @memberof ManagerModel
8983
8995
  */
8984
- 'hospitalId'?: string | null;
8996
+ 'languages'?: Array<UserLanguageModel> | null;
8985
8997
  /**
8986
8998
  *
8987
- * @type {string}
8999
+ * @type {Array<UserLocationModel>}
8988
9000
  * @memberof ManagerModel
8989
9001
  */
8990
- 'hospitalName'?: string | null;
9002
+ 'locations'?: Array<UserLocationModel> | null;
8991
9003
  /**
8992
9004
  *
8993
9005
  * @type {number}
@@ -10253,6 +10265,12 @@ export interface ServiceReviewItemModel {
10253
10265
  * @memberof ServiceReviewItemModel
10254
10266
  */
10255
10267
  'id'?: string;
10268
+ /**
10269
+ *
10270
+ * @type {string}
10271
+ * @memberof ServiceReviewItemModel
10272
+ */
10273
+ 'languageCode'?: string | null;
10256
10274
  /**
10257
10275
  *
10258
10276
  * @type {string}
@@ -10265,6 +10283,12 @@ export interface ServiceReviewItemModel {
10265
10283
  * @memberof ServiceReviewItemModel
10266
10284
  */
10267
10285
  'serviceName'?: string | null;
10286
+ /**
10287
+ *
10288
+ * @type {string}
10289
+ * @memberof ServiceReviewItemModel
10290
+ */
10291
+ 'serviceSlug'?: string | null;
10268
10292
  /**
10269
10293
  *
10270
10294
  * @type {string}
@@ -10295,12 +10319,6 @@ export interface ServiceReviewItemModel {
10295
10319
  * @memberof ServiceReviewItemModel
10296
10320
  */
10297
10321
  'reviewType'?: ReviewType;
10298
- /**
10299
- *
10300
- * @type {string}
10301
- * @memberof ServiceReviewItemModel
10302
- */
10303
- 'body'?: string | null;
10304
10322
  /**
10305
10323
  *
10306
10324
  * @type {Array<MediaModel>}
@@ -10326,6 +10344,12 @@ export interface ServiceReviewModel {
10326
10344
  * @memberof ServiceReviewModel
10327
10345
  */
10328
10346
  'id'?: string;
10347
+ /**
10348
+ *
10349
+ * @type {string}
10350
+ * @memberof ServiceReviewModel
10351
+ */
10352
+ 'languageCode'?: string | null;
10329
10353
  /**
10330
10354
  *
10331
10355
  * @type {string}
@@ -10338,6 +10362,12 @@ export interface ServiceReviewModel {
10338
10362
  * @memberof ServiceReviewModel
10339
10363
  */
10340
10364
  'serviceName'?: string | null;
10365
+ /**
10366
+ *
10367
+ * @type {string}
10368
+ * @memberof ServiceReviewModel
10369
+ */
10370
+ 'serviceSlug'?: string | null;
10341
10371
  /**
10342
10372
  *
10343
10373
  * @type {string}
@@ -10368,12 +10398,6 @@ export interface ServiceReviewModel {
10368
10398
  * @memberof ServiceReviewModel
10369
10399
  */
10370
10400
  'reviewType'?: ReviewType;
10371
- /**
10372
- *
10373
- * @type {string}
10374
- * @memberof ServiceReviewModel
10375
- */
10376
- 'body'?: string | null;
10377
10401
  /**
10378
10402
  *
10379
10403
  * @type {Array<MediaModel>}
@@ -10386,6 +10410,12 @@ export interface ServiceReviewModel {
10386
10410
  * @memberof ServiceReviewModel
10387
10411
  */
10388
10412
  'auditableEntity'?: AuditableEntity;
10413
+ /**
10414
+ *
10415
+ * @type {string}
10416
+ * @memberof ServiceReviewModel
10417
+ */
10418
+ 'body'?: string | null;
10389
10419
  }
10390
10420
  /**
10391
10421
  *
@@ -10406,6 +10436,31 @@ export interface ServiceReviewsModel {
10406
10436
  */
10407
10437
  'metaData'?: PagedListMetaData;
10408
10438
  }
10439
+ /**
10440
+ *
10441
+ * @export
10442
+ * @interface SnsHandle
10443
+ */
10444
+ export interface SnsHandle {
10445
+ /**
10446
+ *
10447
+ * @type {string}
10448
+ * @memberof SnsHandle
10449
+ */
10450
+ 'id'?: string;
10451
+ /**
10452
+ *
10453
+ * @type {SnsType}
10454
+ * @memberof SnsHandle
10455
+ */
10456
+ 'snsType'?: SnsType;
10457
+ /**
10458
+ *
10459
+ * @type {string}
10460
+ * @memberof SnsHandle
10461
+ */
10462
+ 'handle'?: string | null;
10463
+ }
10409
10464
  /**
10410
10465
  *
10411
10466
  * @export
@@ -13659,16 +13714,17 @@ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration
13659
13714
  * @param {string} [hospitalName]
13660
13715
  * @param {string} [hospitalSlug]
13661
13716
  * @param {string} [name]
13662
- * @param {string} [languageCode]
13663
13717
  * @param {boolean} [returnDefaultValue]
13664
13718
  * @param {boolean} [confirmed]
13719
+ * @param {string} [languageCode]
13720
+ * @param {boolean} [showHidden]
13665
13721
  * @param {number} [page]
13666
13722
  * @param {number} [limit]
13667
13723
  * @param {Date} [lastRetrieved]
13668
13724
  * @param {*} [options] Override http request option.
13669
13725
  * @throws {RequiredError}
13670
13726
  */
13671
- 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>;
13727
+ 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>;
13672
13728
  /**
13673
13729
  *
13674
13730
  * @summary Delete AboutUs.
@@ -13726,16 +13782,17 @@ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) =
13726
13782
  * @param {string} [hospitalName]
13727
13783
  * @param {string} [hospitalSlug]
13728
13784
  * @param {string} [name]
13729
- * @param {string} [languageCode]
13730
13785
  * @param {boolean} [returnDefaultValue]
13731
13786
  * @param {boolean} [confirmed]
13787
+ * @param {string} [languageCode]
13788
+ * @param {boolean} [showHidden]
13732
13789
  * @param {number} [page]
13733
13790
  * @param {number} [limit]
13734
13791
  * @param {Date} [lastRetrieved]
13735
13792
  * @param {*} [options] Override http request option.
13736
13793
  * @throws {RequiredError}
13737
13794
  */
13738
- 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>>;
13795
+ 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>>;
13739
13796
  /**
13740
13797
  *
13741
13798
  * @summary Delete AboutUs.
@@ -13793,16 +13850,17 @@ export declare const AboutUsApiFactory: (configuration?: Configuration | undefin
13793
13850
  * @param {string} [hospitalName]
13794
13851
  * @param {string} [hospitalSlug]
13795
13852
  * @param {string} [name]
13796
- * @param {string} [languageCode]
13797
13853
  * @param {boolean} [returnDefaultValue]
13798
13854
  * @param {boolean} [confirmed]
13855
+ * @param {string} [languageCode]
13856
+ * @param {boolean} [showHidden]
13799
13857
  * @param {number} [page]
13800
13858
  * @param {number} [limit]
13801
13859
  * @param {Date} [lastRetrieved]
13802
13860
  * @param {*} [options] Override http request option.
13803
13861
  * @throws {RequiredError}
13804
13862
  */
13805
- 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>;
13863
+ 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>;
13806
13864
  /**
13807
13865
  *
13808
13866
  * @summary Delete AboutUs.
@@ -13862,9 +13920,10 @@ export declare class AboutUsApi extends BaseAPI {
13862
13920
  * @param {string} [hospitalName]
13863
13921
  * @param {string} [hospitalSlug]
13864
13922
  * @param {string} [name]
13865
- * @param {string} [languageCode]
13866
13923
  * @param {boolean} [returnDefaultValue]
13867
13924
  * @param {boolean} [confirmed]
13925
+ * @param {string} [languageCode]
13926
+ * @param {boolean} [showHidden]
13868
13927
  * @param {number} [page]
13869
13928
  * @param {number} [limit]
13870
13929
  * @param {Date} [lastRetrieved]
@@ -13872,7 +13931,7 @@ export declare class AboutUsApi extends BaseAPI {
13872
13931
  * @throws {RequiredError}
13873
13932
  * @memberof AboutUsApi
13874
13933
  */
13875
- 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>>;
13934
+ 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>>;
13876
13935
  /**
13877
13936
  *
13878
13937
  * @summary Delete AboutUs.
@@ -14383,14 +14442,13 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
14383
14442
  * @param {string} [contributorId]
14384
14443
  * @param {string} [languageCode]
14385
14444
  * @param {boolean} [showHidden]
14386
- * @param {boolean} [returnDefaultValue]
14387
14445
  * @param {number} [page]
14388
14446
  * @param {number} [limit]
14389
14447
  * @param {Date} [lastRetrieved]
14390
14448
  * @param {*} [options] Override http request option.
14391
14449
  * @throws {RequiredError}
14392
14450
  */
14393
- 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>;
14451
+ 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>;
14394
14452
  /**
14395
14453
  *
14396
14454
  * @summary Create a Article.
@@ -14655,14 +14713,13 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
14655
14713
  * @param {string} [contributorId]
14656
14714
  * @param {string} [languageCode]
14657
14715
  * @param {boolean} [showHidden]
14658
- * @param {boolean} [returnDefaultValue]
14659
14716
  * @param {number} [page]
14660
14717
  * @param {number} [limit]
14661
14718
  * @param {Date} [lastRetrieved]
14662
14719
  * @param {*} [options] Override http request option.
14663
14720
  * @throws {RequiredError}
14664
14721
  */
14665
- 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>>;
14722
+ 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>>;
14666
14723
  /**
14667
14724
  *
14668
14725
  * @summary Create a Article.
@@ -14927,14 +14984,13 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
14927
14984
  * @param {string} [contributorId]
14928
14985
  * @param {string} [languageCode]
14929
14986
  * @param {boolean} [showHidden]
14930
- * @param {boolean} [returnDefaultValue]
14931
14987
  * @param {number} [page]
14932
14988
  * @param {number} [limit]
14933
14989
  * @param {Date} [lastRetrieved]
14934
14990
  * @param {*} [options] Override http request option.
14935
14991
  * @throws {RequiredError}
14936
14992
  */
14937
- 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>;
14993
+ 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>;
14938
14994
  /**
14939
14995
  *
14940
14996
  * @summary Create a Article.
@@ -15223,7 +15279,6 @@ export declare class ArticlesApi extends BaseAPI {
15223
15279
  * @param {string} [contributorId]
15224
15280
  * @param {string} [languageCode]
15225
15281
  * @param {boolean} [showHidden]
15226
- * @param {boolean} [returnDefaultValue]
15227
15282
  * @param {number} [page]
15228
15283
  * @param {number} [limit]
15229
15284
  * @param {Date} [lastRetrieved]
@@ -15231,7 +15286,7 @@ export declare class ArticlesApi extends BaseAPI {
15231
15286
  * @throws {RequiredError}
15232
15287
  * @memberof ArticlesApi
15233
15288
  */
15234
- 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>>;
15289
+ 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>>;
15235
15290
  /**
15236
15291
  *
15237
15292
  * @summary Create a Article.
@@ -15287,10 +15342,11 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
15287
15342
  *
15288
15343
  * @summary Get booking.
15289
15344
  * @param {string} bookingId
15345
+ * @param {string} [languageCode]
15290
15346
  * @param {*} [options] Override http request option.
15291
15347
  * @throws {RequiredError}
15292
15348
  */
15293
- apiV1BookingsBookingIdGet: (bookingId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15349
+ apiV1BookingsBookingIdGet: (bookingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15294
15350
  /**
15295
15351
  *
15296
15352
  * @summary Mark as Paid booking.
@@ -15311,7 +15367,12 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
15311
15367
  /**
15312
15368
  *
15313
15369
  * @summary Get all bookings.
15314
- * @param {string} [searchString]
15370
+ * @param {string} [userId]
15371
+ * @param {string} [userName]
15372
+ * @param {string} [hospitalId]
15373
+ * @param {string} [hospitalName]
15374
+ * @param {string} [dealId]
15375
+ * @param {string} [dealName]
15315
15376
  * @param {boolean} [isOpen]
15316
15377
  * @param {boolean} [isCompleted]
15317
15378
  * @param {BookingStatus} [status]
@@ -15320,13 +15381,15 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
15320
15381
  * @param {SortingOrder} [sortConfirmedDateStart]
15321
15382
  * @param {boolean} [isExternal]
15322
15383
  * @param {boolean} [paymentEnabled]
15384
+ * @param {string} [languageCode]
15385
+ * @param {boolean} [showHidden]
15323
15386
  * @param {number} [page]
15324
15387
  * @param {number} [limit]
15325
15388
  * @param {Date} [lastRetrieved]
15326
15389
  * @param {*} [options] Override http request option.
15327
15390
  * @throws {RequiredError}
15328
15391
  */
15329
- 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>;
15392
+ 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>;
15330
15393
  };
15331
15394
  /**
15332
15395
  * BookingsApi - functional programming interface
@@ -15362,10 +15425,11 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
15362
15425
  *
15363
15426
  * @summary Get booking.
15364
15427
  * @param {string} bookingId
15428
+ * @param {string} [languageCode]
15365
15429
  * @param {*} [options] Override http request option.
15366
15430
  * @throws {RequiredError}
15367
15431
  */
15368
- apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
15432
+ apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
15369
15433
  /**
15370
15434
  *
15371
15435
  * @summary Mark as Paid booking.
@@ -15386,7 +15450,12 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
15386
15450
  /**
15387
15451
  *
15388
15452
  * @summary Get all bookings.
15389
- * @param {string} [searchString]
15453
+ * @param {string} [userId]
15454
+ * @param {string} [userName]
15455
+ * @param {string} [hospitalId]
15456
+ * @param {string} [hospitalName]
15457
+ * @param {string} [dealId]
15458
+ * @param {string} [dealName]
15390
15459
  * @param {boolean} [isOpen]
15391
15460
  * @param {boolean} [isCompleted]
15392
15461
  * @param {BookingStatus} [status]
@@ -15395,13 +15464,15 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
15395
15464
  * @param {SortingOrder} [sortConfirmedDateStart]
15396
15465
  * @param {boolean} [isExternal]
15397
15466
  * @param {boolean} [paymentEnabled]
15467
+ * @param {string} [languageCode]
15468
+ * @param {boolean} [showHidden]
15398
15469
  * @param {number} [page]
15399
15470
  * @param {number} [limit]
15400
15471
  * @param {Date} [lastRetrieved]
15401
15472
  * @param {*} [options] Override http request option.
15402
15473
  * @throws {RequiredError}
15403
15474
  */
15404
- 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>>;
15475
+ 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>>;
15405
15476
  };
15406
15477
  /**
15407
15478
  * BookingsApi - factory interface
@@ -15437,10 +15508,11 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
15437
15508
  *
15438
15509
  * @summary Get booking.
15439
15510
  * @param {string} bookingId
15511
+ * @param {string} [languageCode]
15440
15512
  * @param {*} [options] Override http request option.
15441
15513
  * @throws {RequiredError}
15442
15514
  */
15443
- apiV1BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel>;
15515
+ apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string | undefined, options?: any): AxiosPromise<BookingModel>;
15444
15516
  /**
15445
15517
  *
15446
15518
  * @summary Mark as Paid booking.
@@ -15461,7 +15533,12 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
15461
15533
  /**
15462
15534
  *
15463
15535
  * @summary Get all bookings.
15464
- * @param {string} [searchString]
15536
+ * @param {string} [userId]
15537
+ * @param {string} [userName]
15538
+ * @param {string} [hospitalId]
15539
+ * @param {string} [hospitalName]
15540
+ * @param {string} [dealId]
15541
+ * @param {string} [dealName]
15465
15542
  * @param {boolean} [isOpen]
15466
15543
  * @param {boolean} [isCompleted]
15467
15544
  * @param {BookingStatus} [status]
@@ -15470,13 +15547,15 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
15470
15547
  * @param {SortingOrder} [sortConfirmedDateStart]
15471
15548
  * @param {boolean} [isExternal]
15472
15549
  * @param {boolean} [paymentEnabled]
15550
+ * @param {string} [languageCode]
15551
+ * @param {boolean} [showHidden]
15473
15552
  * @param {number} [page]
15474
15553
  * @param {number} [limit]
15475
15554
  * @param {Date} [lastRetrieved]
15476
15555
  * @param {*} [options] Override http request option.
15477
15556
  * @throws {RequiredError}
15478
15557
  */
15479
- 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>;
15558
+ 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>;
15480
15559
  };
15481
15560
  /**
15482
15561
  * BookingsApi - object-oriented interface
@@ -15517,11 +15596,12 @@ export declare class BookingsApi extends BaseAPI {
15517
15596
  *
15518
15597
  * @summary Get booking.
15519
15598
  * @param {string} bookingId
15599
+ * @param {string} [languageCode]
15520
15600
  * @param {*} [options] Override http request option.
15521
15601
  * @throws {RequiredError}
15522
15602
  * @memberof BookingsApi
15523
15603
  */
15524
- apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
15604
+ apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
15525
15605
  /**
15526
15606
  *
15527
15607
  * @summary Mark as Paid booking.
@@ -15544,7 +15624,12 @@ export declare class BookingsApi extends BaseAPI {
15544
15624
  /**
15545
15625
  *
15546
15626
  * @summary Get all bookings.
15547
- * @param {string} [searchString]
15627
+ * @param {string} [userId]
15628
+ * @param {string} [userName]
15629
+ * @param {string} [hospitalId]
15630
+ * @param {string} [hospitalName]
15631
+ * @param {string} [dealId]
15632
+ * @param {string} [dealName]
15548
15633
  * @param {boolean} [isOpen]
15549
15634
  * @param {boolean} [isCompleted]
15550
15635
  * @param {BookingStatus} [status]
@@ -15553,6 +15638,8 @@ export declare class BookingsApi extends BaseAPI {
15553
15638
  * @param {SortingOrder} [sortConfirmedDateStart]
15554
15639
  * @param {boolean} [isExternal]
15555
15640
  * @param {boolean} [paymentEnabled]
15641
+ * @param {string} [languageCode]
15642
+ * @param {boolean} [showHidden]
15556
15643
  * @param {number} [page]
15557
15644
  * @param {number} [limit]
15558
15645
  * @param {Date} [lastRetrieved]
@@ -15560,7 +15647,7 @@ export declare class BookingsApi extends BaseAPI {
15560
15647
  * @throws {RequiredError}
15561
15648
  * @memberof BookingsApi
15562
15649
  */
15563
- 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>>;
15650
+ 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>>;
15564
15651
  }
15565
15652
  /**
15566
15653
  * CHAdminsApi - axios parameter creator
@@ -16407,10 +16494,11 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
16407
16494
  *
16408
16495
  * @summary Get consultation.
16409
16496
  * @param {string} consultationId
16497
+ * @param {string} [languageCode]
16410
16498
  * @param {*} [options] Override http request option.
16411
16499
  * @throws {RequiredError}
16412
16500
  */
16413
- apiV1ConsultationsConsultationIdGet: (consultationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16501
+ apiV1ConsultationsConsultationIdGet: (consultationId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16414
16502
  /**
16415
16503
  *
16416
16504
  * @summary Mark as Paid booking.
@@ -16431,7 +16519,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
16431
16519
  /**
16432
16520
  *
16433
16521
  * @summary Get all consultations.
16434
- * @param {string} [searchString]
16522
+ * @param {string} [userId]
16523
+ * @param {string} [userName]
16524
+ * @param {string} [hospitalId]
16525
+ * @param {string} [hospitalName]
16526
+ * @param {string} [doctorId]
16527
+ * @param {string} [doctorName]
16528
+ * @param {string} [dealId]
16529
+ * @param {string} [dealName]
16435
16530
  * @param {boolean} [isOpen]
16436
16531
  * @param {boolean} [isCompleted]
16437
16532
  * @param {ConsultationStatus} [status]
@@ -16440,13 +16535,15 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
16440
16535
  * @param {SortingOrder} [sortConfirmedDateStart]
16441
16536
  * @param {boolean} [isExternal]
16442
16537
  * @param {boolean} [paymentEnabled]
16538
+ * @param {string} [languageCode]
16539
+ * @param {boolean} [showHidden]
16443
16540
  * @param {number} [page]
16444
16541
  * @param {number} [limit]
16445
16542
  * @param {Date} [lastRetrieved]
16446
16543
  * @param {*} [options] Override http request option.
16447
16544
  * @throws {RequiredError}
16448
16545
  */
16449
- 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>;
16546
+ 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>;
16450
16547
  };
16451
16548
  /**
16452
16549
  * ConsultationsApi - functional programming interface
@@ -16482,10 +16579,11 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
16482
16579
  *
16483
16580
  * @summary Get consultation.
16484
16581
  * @param {string} consultationId
16582
+ * @param {string} [languageCode]
16485
16583
  * @param {*} [options] Override http request option.
16486
16584
  * @throws {RequiredError}
16487
16585
  */
16488
- apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
16586
+ apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
16489
16587
  /**
16490
16588
  *
16491
16589
  * @summary Mark as Paid booking.
@@ -16506,7 +16604,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
16506
16604
  /**
16507
16605
  *
16508
16606
  * @summary Get all consultations.
16509
- * @param {string} [searchString]
16607
+ * @param {string} [userId]
16608
+ * @param {string} [userName]
16609
+ * @param {string} [hospitalId]
16610
+ * @param {string} [hospitalName]
16611
+ * @param {string} [doctorId]
16612
+ * @param {string} [doctorName]
16613
+ * @param {string} [dealId]
16614
+ * @param {string} [dealName]
16510
16615
  * @param {boolean} [isOpen]
16511
16616
  * @param {boolean} [isCompleted]
16512
16617
  * @param {ConsultationStatus} [status]
@@ -16515,13 +16620,15 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
16515
16620
  * @param {SortingOrder} [sortConfirmedDateStart]
16516
16621
  * @param {boolean} [isExternal]
16517
16622
  * @param {boolean} [paymentEnabled]
16623
+ * @param {string} [languageCode]
16624
+ * @param {boolean} [showHidden]
16518
16625
  * @param {number} [page]
16519
16626
  * @param {number} [limit]
16520
16627
  * @param {Date} [lastRetrieved]
16521
16628
  * @param {*} [options] Override http request option.
16522
16629
  * @throws {RequiredError}
16523
16630
  */
16524
- 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>>;
16631
+ 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>>;
16525
16632
  };
16526
16633
  /**
16527
16634
  * ConsultationsApi - factory interface
@@ -16557,10 +16664,11 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
16557
16664
  *
16558
16665
  * @summary Get consultation.
16559
16666
  * @param {string} consultationId
16667
+ * @param {string} [languageCode]
16560
16668
  * @param {*} [options] Override http request option.
16561
16669
  * @throws {RequiredError}
16562
16670
  */
16563
- apiV1ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel>;
16671
+ apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ConsultationModel>;
16564
16672
  /**
16565
16673
  *
16566
16674
  * @summary Mark as Paid booking.
@@ -16581,7 +16689,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
16581
16689
  /**
16582
16690
  *
16583
16691
  * @summary Get all consultations.
16584
- * @param {string} [searchString]
16692
+ * @param {string} [userId]
16693
+ * @param {string} [userName]
16694
+ * @param {string} [hospitalId]
16695
+ * @param {string} [hospitalName]
16696
+ * @param {string} [doctorId]
16697
+ * @param {string} [doctorName]
16698
+ * @param {string} [dealId]
16699
+ * @param {string} [dealName]
16585
16700
  * @param {boolean} [isOpen]
16586
16701
  * @param {boolean} [isCompleted]
16587
16702
  * @param {ConsultationStatus} [status]
@@ -16590,13 +16705,15 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
16590
16705
  * @param {SortingOrder} [sortConfirmedDateStart]
16591
16706
  * @param {boolean} [isExternal]
16592
16707
  * @param {boolean} [paymentEnabled]
16708
+ * @param {string} [languageCode]
16709
+ * @param {boolean} [showHidden]
16593
16710
  * @param {number} [page]
16594
16711
  * @param {number} [limit]
16595
16712
  * @param {Date} [lastRetrieved]
16596
16713
  * @param {*} [options] Override http request option.
16597
16714
  * @throws {RequiredError}
16598
16715
  */
16599
- 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>;
16716
+ 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>;
16600
16717
  };
16601
16718
  /**
16602
16719
  * ConsultationsApi - object-oriented interface
@@ -16637,11 +16754,12 @@ export declare class ConsultationsApi extends BaseAPI {
16637
16754
  *
16638
16755
  * @summary Get consultation.
16639
16756
  * @param {string} consultationId
16757
+ * @param {string} [languageCode]
16640
16758
  * @param {*} [options] Override http request option.
16641
16759
  * @throws {RequiredError}
16642
16760
  * @memberof ConsultationsApi
16643
16761
  */
16644
- apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
16762
+ apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
16645
16763
  /**
16646
16764
  *
16647
16765
  * @summary Mark as Paid booking.
@@ -16664,7 +16782,14 @@ export declare class ConsultationsApi extends BaseAPI {
16664
16782
  /**
16665
16783
  *
16666
16784
  * @summary Get all consultations.
16667
- * @param {string} [searchString]
16785
+ * @param {string} [userId]
16786
+ * @param {string} [userName]
16787
+ * @param {string} [hospitalId]
16788
+ * @param {string} [hospitalName]
16789
+ * @param {string} [doctorId]
16790
+ * @param {string} [doctorName]
16791
+ * @param {string} [dealId]
16792
+ * @param {string} [dealName]
16668
16793
  * @param {boolean} [isOpen]
16669
16794
  * @param {boolean} [isCompleted]
16670
16795
  * @param {ConsultationStatus} [status]
@@ -16673,6 +16798,8 @@ export declare class ConsultationsApi extends BaseAPI {
16673
16798
  * @param {SortingOrder} [sortConfirmedDateStart]
16674
16799
  * @param {boolean} [isExternal]
16675
16800
  * @param {boolean} [paymentEnabled]
16801
+ * @param {string} [languageCode]
16802
+ * @param {boolean} [showHidden]
16676
16803
  * @param {number} [page]
16677
16804
  * @param {number} [limit]
16678
16805
  * @param {Date} [lastRetrieved]
@@ -16680,7 +16807,7 @@ export declare class ConsultationsApi extends BaseAPI {
16680
16807
  * @throws {RequiredError}
16681
16808
  * @memberof ConsultationsApi
16682
16809
  */
16683
- 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>>;
16810
+ 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>>;
16684
16811
  }
16685
16812
  /**
16686
16813
  * ContributorsApi - axios parameter creator
@@ -17282,14 +17409,13 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
17282
17409
  * @param {Date} [createdDate]
17283
17410
  * @param {string} [languageCode]
17284
17411
  * @param {boolean} [showHidden]
17285
- * @param {boolean} [returnDefaultValue]
17286
17412
  * @param {number} [page]
17287
17413
  * @param {number} [limit]
17288
17414
  * @param {Date} [lastRetrieved]
17289
17415
  * @param {*} [options] Override http request option.
17290
17416
  * @throws {RequiredError}
17291
17417
  */
17292
- 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>;
17418
+ 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>;
17293
17419
  /**
17294
17420
  *
17295
17421
  * @summary Create a country.
@@ -17407,14 +17533,13 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
17407
17533
  * @param {Date} [createdDate]
17408
17534
  * @param {string} [languageCode]
17409
17535
  * @param {boolean} [showHidden]
17410
- * @param {boolean} [returnDefaultValue]
17411
17536
  * @param {number} [page]
17412
17537
  * @param {number} [limit]
17413
17538
  * @param {Date} [lastRetrieved]
17414
17539
  * @param {*} [options] Override http request option.
17415
17540
  * @throws {RequiredError}
17416
17541
  */
17417
- 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>>;
17542
+ 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>>;
17418
17543
  /**
17419
17544
  *
17420
17545
  * @summary Create a country.
@@ -17532,14 +17657,13 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
17532
17657
  * @param {Date} [createdDate]
17533
17658
  * @param {string} [languageCode]
17534
17659
  * @param {boolean} [showHidden]
17535
- * @param {boolean} [returnDefaultValue]
17536
17660
  * @param {number} [page]
17537
17661
  * @param {number} [limit]
17538
17662
  * @param {Date} [lastRetrieved]
17539
17663
  * @param {*} [options] Override http request option.
17540
17664
  * @throws {RequiredError}
17541
17665
  */
17542
- 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>;
17666
+ 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>;
17543
17667
  /**
17544
17668
  *
17545
17669
  * @summary Create a country.
@@ -17668,7 +17792,6 @@ export declare class CountriesApi extends BaseAPI {
17668
17792
  * @param {Date} [createdDate]
17669
17793
  * @param {string} [languageCode]
17670
17794
  * @param {boolean} [showHidden]
17671
- * @param {boolean} [returnDefaultValue]
17672
17795
  * @param {number} [page]
17673
17796
  * @param {number} [limit]
17674
17797
  * @param {Date} [lastRetrieved]
@@ -17676,7 +17799,7 @@ export declare class CountriesApi extends BaseAPI {
17676
17799
  * @throws {RequiredError}
17677
17800
  * @memberof CountriesApi
17678
17801
  */
17679
- 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>>;
17802
+ 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>>;
17680
17803
  /**
17681
17804
  *
17682
17805
  * @summary Create a country.
@@ -17774,11 +17897,10 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
17774
17897
  * @summary Get deal.
17775
17898
  * @param {string} dealId
17776
17899
  * @param {string} [languageCode]
17777
- * @param {boolean} [returnDefaultValue]
17778
17900
  * @param {*} [options] Override http request option.
17779
17901
  * @throws {RequiredError}
17780
17902
  */
17781
- apiV1DealsDealIdGet: (dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17903
+ apiV1DealsDealIdGet: (dealId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17782
17904
  /**
17783
17905
  *
17784
17906
  * @summary Get all DealPackage.
@@ -17789,13 +17911,15 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
17789
17911
  * @param {string} [countryId]
17790
17912
  * @param {string} [hospitalId]
17791
17913
  * @param {string} [hospitalName]
17914
+ * @param {string} [languageCode]
17915
+ * @param {boolean} [showHidden]
17792
17916
  * @param {number} [page]
17793
17917
  * @param {number} [limit]
17794
17918
  * @param {Date} [lastRetrieved]
17795
17919
  * @param {*} [options] Override http request option.
17796
17920
  * @throws {RequiredError}
17797
17921
  */
17798
- 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>;
17922
+ 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>;
17799
17923
  /**
17800
17924
  *
17801
17925
  * @summary Delete DealPackage.
@@ -17810,10 +17934,11 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
17810
17934
  * @summary Get DealPackage.
17811
17935
  * @param {string} dealId
17812
17936
  * @param {string} packageId
17937
+ * @param {string} [languageCode]
17813
17938
  * @param {*} [options] Override http request option.
17814
17939
  * @throws {RequiredError}
17815
17940
  */
17816
- apiV1DealsDealIdPackagesPackageIdGet: (dealId: string, packageId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17941
+ apiV1DealsDealIdPackagesPackageIdGet: (dealId: string, packageId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17817
17942
  /**
17818
17943
  *
17819
17944
  * @summary Update DealPackage.
@@ -17985,11 +18110,10 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
17985
18110
  * @summary Get deal.
17986
18111
  * @param {string} dealId
17987
18112
  * @param {string} [languageCode]
17988
- * @param {boolean} [returnDefaultValue]
17989
18113
  * @param {*} [options] Override http request option.
17990
18114
  * @throws {RequiredError}
17991
18115
  */
17992
- apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
18116
+ apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
17993
18117
  /**
17994
18118
  *
17995
18119
  * @summary Get all DealPackage.
@@ -18000,13 +18124,15 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
18000
18124
  * @param {string} [countryId]
18001
18125
  * @param {string} [hospitalId]
18002
18126
  * @param {string} [hospitalName]
18127
+ * @param {string} [languageCode]
18128
+ * @param {boolean} [showHidden]
18003
18129
  * @param {number} [page]
18004
18130
  * @param {number} [limit]
18005
18131
  * @param {Date} [lastRetrieved]
18006
18132
  * @param {*} [options] Override http request option.
18007
18133
  * @throws {RequiredError}
18008
18134
  */
18009
- 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>>;
18135
+ 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>>;
18010
18136
  /**
18011
18137
  *
18012
18138
  * @summary Delete DealPackage.
@@ -18021,10 +18147,11 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
18021
18147
  * @summary Get DealPackage.
18022
18148
  * @param {string} dealId
18023
18149
  * @param {string} packageId
18150
+ * @param {string} [languageCode]
18024
18151
  * @param {*} [options] Override http request option.
18025
18152
  * @throws {RequiredError}
18026
18153
  */
18027
- apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackageModel>>;
18154
+ apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackageModel>>;
18028
18155
  /**
18029
18156
  *
18030
18157
  * @summary Update DealPackage.
@@ -18196,11 +18323,10 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
18196
18323
  * @summary Get deal.
18197
18324
  * @param {string} dealId
18198
18325
  * @param {string} [languageCode]
18199
- * @param {boolean} [returnDefaultValue]
18200
18326
  * @param {*} [options] Override http request option.
18201
18327
  * @throws {RequiredError}
18202
18328
  */
18203
- apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DealModel>;
18329
+ apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DealModel>;
18204
18330
  /**
18205
18331
  *
18206
18332
  * @summary Get all DealPackage.
@@ -18211,13 +18337,15 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
18211
18337
  * @param {string} [countryId]
18212
18338
  * @param {string} [hospitalId]
18213
18339
  * @param {string} [hospitalName]
18340
+ * @param {string} [languageCode]
18341
+ * @param {boolean} [showHidden]
18214
18342
  * @param {number} [page]
18215
18343
  * @param {number} [limit]
18216
18344
  * @param {Date} [lastRetrieved]
18217
18345
  * @param {*} [options] Override http request option.
18218
18346
  * @throws {RequiredError}
18219
18347
  */
18220
- 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>;
18348
+ 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>;
18221
18349
  /**
18222
18350
  *
18223
18351
  * @summary Delete DealPackage.
@@ -18232,10 +18360,11 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
18232
18360
  * @summary Get DealPackage.
18233
18361
  * @param {string} dealId
18234
18362
  * @param {string} packageId
18363
+ * @param {string} [languageCode]
18235
18364
  * @param {*} [options] Override http request option.
18236
18365
  * @throws {RequiredError}
18237
18366
  */
18238
- apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: any): AxiosPromise<DealPackageModel>;
18367
+ apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DealPackageModel>;
18239
18368
  /**
18240
18369
  *
18241
18370
  * @summary Update DealPackage.
@@ -18410,12 +18539,11 @@ export declare class DealsApi extends BaseAPI {
18410
18539
  * @summary Get deal.
18411
18540
  * @param {string} dealId
18412
18541
  * @param {string} [languageCode]
18413
- * @param {boolean} [returnDefaultValue]
18414
18542
  * @param {*} [options] Override http request option.
18415
18543
  * @throws {RequiredError}
18416
18544
  * @memberof DealsApi
18417
18545
  */
18418
- apiV1DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
18546
+ apiV1DealsDealIdGet(dealId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
18419
18547
  /**
18420
18548
  *
18421
18549
  * @summary Get all DealPackage.
@@ -18426,6 +18554,8 @@ export declare class DealsApi extends BaseAPI {
18426
18554
  * @param {string} [countryId]
18427
18555
  * @param {string} [hospitalId]
18428
18556
  * @param {string} [hospitalName]
18557
+ * @param {string} [languageCode]
18558
+ * @param {boolean} [showHidden]
18429
18559
  * @param {number} [page]
18430
18560
  * @param {number} [limit]
18431
18561
  * @param {Date} [lastRetrieved]
@@ -18433,7 +18563,7 @@ export declare class DealsApi extends BaseAPI {
18433
18563
  * @throws {RequiredError}
18434
18564
  * @memberof DealsApi
18435
18565
  */
18436
- 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>>;
18566
+ 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>>;
18437
18567
  /**
18438
18568
  *
18439
18569
  * @summary Delete DealPackage.
@@ -18449,11 +18579,12 @@ export declare class DealsApi extends BaseAPI {
18449
18579
  * @summary Get DealPackage.
18450
18580
  * @param {string} dealId
18451
18581
  * @param {string} packageId
18582
+ * @param {string} [languageCode]
18452
18583
  * @param {*} [options] Override http request option.
18453
18584
  * @throws {RequiredError}
18454
18585
  * @memberof DealsApi
18455
18586
  */
18456
- apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
18587
+ apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
18457
18588
  /**
18458
18589
  *
18459
18590
  * @summary Update DealPackage.
@@ -18630,8 +18761,8 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
18630
18761
  * @param {string} [hospitalId]
18631
18762
  * @param {string} [hospitalName]
18632
18763
  * @param {string} [doctorId]
18633
- * @param {string} [name]
18634
- * @param {string} [slug]
18764
+ * @param {string} [doctorName]
18765
+ * @param {string} [doctorSlug]
18635
18766
  * @param {string} [languageCode]
18636
18767
  * @param {boolean} [showHidden]
18637
18768
  * @param {number} [page]
@@ -18640,7 +18771,7 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
18640
18771
  * @param {*} [options] Override http request option.
18641
18772
  * @throws {RequiredError}
18642
18773
  */
18643
- apiV1DoctoraffiliationsGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18774
+ 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>;
18644
18775
  /**
18645
18776
  *
18646
18777
  * @summary Delete doctor affiliation.
@@ -18653,10 +18784,11 @@ export declare const DoctorAffiliationsApiAxiosParamCreator: (configuration?: Co
18653
18784
  *
18654
18785
  * @summary Get doctor affiliation.
18655
18786
  * @param {string} id
18787
+ * @param {string} [languageCode]
18656
18788
  * @param {*} [options] Override http request option.
18657
18789
  * @throws {RequiredError}
18658
18790
  */
18659
- apiV1DoctoraffiliationsIdGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18791
+ apiV1DoctoraffiliationsIdGet: (id: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18660
18792
  /**
18661
18793
  *
18662
18794
  * @summary Update Hospital.
@@ -18685,8 +18817,8 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
18685
18817
  * @param {string} [hospitalId]
18686
18818
  * @param {string} [hospitalName]
18687
18819
  * @param {string} [doctorId]
18688
- * @param {string} [name]
18689
- * @param {string} [slug]
18820
+ * @param {string} [doctorName]
18821
+ * @param {string} [doctorSlug]
18690
18822
  * @param {string} [languageCode]
18691
18823
  * @param {boolean} [showHidden]
18692
18824
  * @param {number} [page]
@@ -18695,7 +18827,7 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
18695
18827
  * @param {*} [options] Override http request option.
18696
18828
  * @throws {RequiredError}
18697
18829
  */
18698
- apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, name?: string | undefined, slug?: 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>>;
18830
+ 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>>;
18699
18831
  /**
18700
18832
  *
18701
18833
  * @summary Delete doctor affiliation.
@@ -18708,10 +18840,11 @@ export declare const DoctorAffiliationsApiFp: (configuration?: Configuration | u
18708
18840
  *
18709
18841
  * @summary Get doctor affiliation.
18710
18842
  * @param {string} id
18843
+ * @param {string} [languageCode]
18711
18844
  * @param {*} [options] Override http request option.
18712
18845
  * @throws {RequiredError}
18713
18846
  */
18714
- apiV1DoctoraffiliationsIdGet(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
18847
+ apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
18715
18848
  /**
18716
18849
  *
18717
18850
  * @summary Update Hospital.
@@ -18740,8 +18873,8 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
18740
18873
  * @param {string} [hospitalId]
18741
18874
  * @param {string} [hospitalName]
18742
18875
  * @param {string} [doctorId]
18743
- * @param {string} [name]
18744
- * @param {string} [slug]
18876
+ * @param {string} [doctorName]
18877
+ * @param {string} [doctorSlug]
18745
18878
  * @param {string} [languageCode]
18746
18879
  * @param {boolean} [showHidden]
18747
18880
  * @param {number} [page]
@@ -18750,7 +18883,7 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
18750
18883
  * @param {*} [options] Override http request option.
18751
18884
  * @throws {RequiredError}
18752
18885
  */
18753
- apiV1DoctoraffiliationsGet(hospitalId?: string | undefined, hospitalName?: string | undefined, doctorId?: string | undefined, name?: string | undefined, slug?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorAffiliationsModel>;
18886
+ 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>;
18754
18887
  /**
18755
18888
  *
18756
18889
  * @summary Delete doctor affiliation.
@@ -18763,10 +18896,11 @@ export declare const DoctorAffiliationsApiFactory: (configuration?: Configuratio
18763
18896
  *
18764
18897
  * @summary Get doctor affiliation.
18765
18898
  * @param {string} id
18899
+ * @param {string} [languageCode]
18766
18900
  * @param {*} [options] Override http request option.
18767
18901
  * @throws {RequiredError}
18768
18902
  */
18769
- apiV1DoctoraffiliationsIdGet(id: string, options?: any): AxiosPromise<DoctorAffiliationModel>;
18903
+ apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorAffiliationModel>;
18770
18904
  /**
18771
18905
  *
18772
18906
  * @summary Update Hospital.
@@ -18797,8 +18931,8 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
18797
18931
  * @param {string} [hospitalId]
18798
18932
  * @param {string} [hospitalName]
18799
18933
  * @param {string} [doctorId]
18800
- * @param {string} [name]
18801
- * @param {string} [slug]
18934
+ * @param {string} [doctorName]
18935
+ * @param {string} [doctorSlug]
18802
18936
  * @param {string} [languageCode]
18803
18937
  * @param {boolean} [showHidden]
18804
18938
  * @param {number} [page]
@@ -18808,7 +18942,7 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
18808
18942
  * @throws {RequiredError}
18809
18943
  * @memberof DoctorAffiliationsApi
18810
18944
  */
18811
- apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, name?: string, slug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
18945
+ 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>>;
18812
18946
  /**
18813
18947
  *
18814
18948
  * @summary Delete doctor affiliation.
@@ -18822,11 +18956,12 @@ export declare class DoctorAffiliationsApi extends BaseAPI {
18822
18956
  *
18823
18957
  * @summary Get doctor affiliation.
18824
18958
  * @param {string} id
18959
+ * @param {string} [languageCode]
18825
18960
  * @param {*} [options] Override http request option.
18826
18961
  * @throws {RequiredError}
18827
18962
  * @memberof DoctorAffiliationsApi
18828
18963
  */
18829
- apiV1DoctoraffiliationsIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
18964
+ apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
18830
18965
  /**
18831
18966
  *
18832
18967
  * @summary Update Hospital.
@@ -19140,13 +19275,14 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
19140
19275
  * @param {string} [doctorName]
19141
19276
  * @param {string} [specialtyId]
19142
19277
  * @param {string} [specialtyName]
19278
+ * @param {string} [languageCode]
19143
19279
  * @param {number} [page]
19144
19280
  * @param {number} [limit]
19145
19281
  * @param {Date} [lastRetrieved]
19146
19282
  * @param {*} [options] Override http request option.
19147
19283
  * @throws {RequiredError}
19148
19284
  */
19149
- 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>;
19285
+ 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>;
19150
19286
  /**
19151
19287
  *
19152
19288
  * @summary Link a doctor to a specialty.
@@ -19542,13 +19678,14 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
19542
19678
  * @param {string} [doctorName]
19543
19679
  * @param {string} [specialtyId]
19544
19680
  * @param {string} [specialtyName]
19681
+ * @param {string} [languageCode]
19545
19682
  * @param {number} [page]
19546
19683
  * @param {number} [limit]
19547
19684
  * @param {Date} [lastRetrieved]
19548
19685
  * @param {*} [options] Override http request option.
19549
19686
  * @throws {RequiredError}
19550
19687
  */
19551
- 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>>;
19688
+ 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>>;
19552
19689
  /**
19553
19690
  *
19554
19691
  * @summary Link a doctor to a specialty.
@@ -19944,13 +20081,14 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
19944
20081
  * @param {string} [doctorName]
19945
20082
  * @param {string} [specialtyId]
19946
20083
  * @param {string} [specialtyName]
20084
+ * @param {string} [languageCode]
19947
20085
  * @param {number} [page]
19948
20086
  * @param {number} [limit]
19949
20087
  * @param {Date} [lastRetrieved]
19950
20088
  * @param {*} [options] Override http request option.
19951
20089
  * @throws {RequiredError}
19952
20090
  */
19953
- 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>;
20091
+ 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>;
19954
20092
  /**
19955
20093
  *
19956
20094
  * @summary Link a doctor to a specialty.
@@ -20376,6 +20514,7 @@ export declare class DoctorsApi extends BaseAPI {
20376
20514
  * @param {string} [doctorName]
20377
20515
  * @param {string} [specialtyId]
20378
20516
  * @param {string} [specialtyName]
20517
+ * @param {string} [languageCode]
20379
20518
  * @param {number} [page]
20380
20519
  * @param {number} [limit]
20381
20520
  * @param {Date} [lastRetrieved]
@@ -20383,7 +20522,7 @@ export declare class DoctorsApi extends BaseAPI {
20383
20522
  * @throws {RequiredError}
20384
20523
  * @memberof DoctorsApi
20385
20524
  */
20386
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
20525
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
20387
20526
  /**
20388
20527
  *
20389
20528
  * @summary Link a doctor to a specialty.
@@ -21730,7 +21869,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21730
21869
  * @param {boolean} [showHidden]
21731
21870
  * @param {string} [languageCode]
21732
21871
  * @param {Array<string>} [ids]
21733
- * @param {boolean} [returnDefaultValue]
21734
21872
  * @param {boolean} [paymentEnabled]
21735
21873
  * @param {number} [page]
21736
21874
  * @param {number} [limit]
@@ -21738,7 +21876,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
21738
21876
  * @param {*} [options] Override http request option.
21739
21877
  * @throws {RequiredError}
21740
21878
  */
21741
- 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>;
21879
+ 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>;
21742
21880
  /**
21743
21881
  *
21744
21882
  * @summary Delete HospitalAccreditation.
@@ -22088,8 +22226,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22088
22226
  * @param {string} [name]
22089
22227
  * @param {string} [slug]
22090
22228
  * @param {MarketingType} [marketingType]
22091
- * @param {boolean} [returnDefaultValue]
22092
- * @param {boolean} [includeServices]
22093
22229
  * @param {string} [languageCode]
22094
22230
  * @param {boolean} [showHidden]
22095
22231
  * @param {number} [page]
@@ -22098,7 +22234,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22098
22234
  * @param {*} [options] Override http request option.
22099
22235
  * @throws {RequiredError}
22100
22236
  */
22101
- 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>;
22237
+ 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>;
22102
22238
  /**
22103
22239
  *
22104
22240
  * @summary Get all HospitalServiceMedias.
@@ -22175,8 +22311,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22175
22311
  * @param {string} [name]
22176
22312
  * @param {string} [slug]
22177
22313
  * @param {MarketingType} [marketingType]
22178
- * @param {boolean} [returnDefaultValue]
22179
- * @param {boolean} [includeServices]
22180
22314
  * @param {string} [languageCode]
22181
22315
  * @param {boolean} [showHidden]
22182
22316
  * @param {number} [page]
@@ -22185,7 +22319,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22185
22319
  * @param {*} [options] Override http request option.
22186
22320
  * @throws {RequiredError}
22187
22321
  */
22188
- 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>;
22322
+ 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>;
22189
22323
  /**
22190
22324
  *
22191
22325
  * @summary Get HospitalSpecialty by slug.
@@ -22213,12 +22347,10 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22213
22347
  * @param {string} hospitalId
22214
22348
  * @param {string} specialtyId
22215
22349
  * @param {string} [languageCode]
22216
- * @param {boolean} [returnDefaultValue]
22217
- * @param {boolean} [includeServices]
22218
22350
  * @param {*} [options] Override http request option.
22219
22351
  * @throws {RequiredError}
22220
22352
  */
22221
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22353
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: (hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22222
22354
  /**
22223
22355
  *
22224
22356
  * @summary Update HospitalSpecialty.
@@ -22241,15 +22373,15 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22241
22373
  * @param {MarketingType} [marketingType]
22242
22374
  * @param {Procedure} [procedure]
22243
22375
  * @param {Date} [created]
22376
+ * @param {boolean} [showHidden]
22244
22377
  * @param {string} [languageCode]
22245
- * @param {boolean} [returnDefaultValue]
22246
22378
  * @param {number} [page]
22247
22379
  * @param {number} [limit]
22248
22380
  * @param {Date} [lastRetrieved]
22249
22381
  * @param {*} [options] Override http request option.
22250
22382
  * @throws {RequiredError}
22251
22383
  */
22252
- 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>;
22384
+ 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>;
22253
22385
  /**
22254
22386
  *
22255
22387
  * @summary Create HospitalService.
@@ -22434,7 +22566,6 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22434
22566
  * @param {boolean} [showHidden]
22435
22567
  * @param {string} [languageCode]
22436
22568
  * @param {Array<string>} [ids]
22437
- * @param {boolean} [returnDefaultValue]
22438
22569
  * @param {boolean} [paymentEnabled]
22439
22570
  * @param {number} [page]
22440
22571
  * @param {number} [limit]
@@ -22442,7 +22573,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
22442
22573
  * @param {*} [options] Override http request option.
22443
22574
  * @throws {RequiredError}
22444
22575
  */
22445
- 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>;
22576
+ 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>;
22446
22577
  /**
22447
22578
  *
22448
22579
  * @param {string} slug
@@ -22472,7 +22603,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22472
22603
  * @param {boolean} [showHidden]
22473
22604
  * @param {string} [languageCode]
22474
22605
  * @param {Array<string>} [ids]
22475
- * @param {boolean} [returnDefaultValue]
22476
22606
  * @param {boolean} [paymentEnabled]
22477
22607
  * @param {number} [page]
22478
22608
  * @param {number} [limit]
@@ -22480,7 +22610,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22480
22610
  * @param {*} [options] Override http request option.
22481
22611
  * @throws {RequiredError}
22482
22612
  */
22483
- 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>>;
22613
+ 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>>;
22484
22614
  /**
22485
22615
  *
22486
22616
  * @summary Delete HospitalAccreditation.
@@ -22830,8 +22960,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22830
22960
  * @param {string} [name]
22831
22961
  * @param {string} [slug]
22832
22962
  * @param {MarketingType} [marketingType]
22833
- * @param {boolean} [returnDefaultValue]
22834
- * @param {boolean} [includeServices]
22835
22963
  * @param {string} [languageCode]
22836
22964
  * @param {boolean} [showHidden]
22837
22965
  * @param {number} [page]
@@ -22840,7 +22968,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22840
22968
  * @param {*} [options] Override http request option.
22841
22969
  * @throws {RequiredError}
22842
22970
  */
22843
- 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>>;
22971
+ 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>>;
22844
22972
  /**
22845
22973
  *
22846
22974
  * @summary Get all HospitalServiceMedias.
@@ -22917,8 +23045,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22917
23045
  * @param {string} [name]
22918
23046
  * @param {string} [slug]
22919
23047
  * @param {MarketingType} [marketingType]
22920
- * @param {boolean} [returnDefaultValue]
22921
- * @param {boolean} [includeServices]
22922
23048
  * @param {string} [languageCode]
22923
23049
  * @param {boolean} [showHidden]
22924
23050
  * @param {number} [page]
@@ -22927,7 +23053,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22927
23053
  * @param {*} [options] Override http request option.
22928
23054
  * @throws {RequiredError}
22929
23055
  */
22930
- 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>>;
23056
+ 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>>;
22931
23057
  /**
22932
23058
  *
22933
23059
  * @summary Get HospitalSpecialty by slug.
@@ -22955,12 +23081,10 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22955
23081
  * @param {string} hospitalId
22956
23082
  * @param {string} specialtyId
22957
23083
  * @param {string} [languageCode]
22958
- * @param {boolean} [returnDefaultValue]
22959
- * @param {boolean} [includeServices]
22960
23084
  * @param {*} [options] Override http request option.
22961
23085
  * @throws {RequiredError}
22962
23086
  */
22963
- 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>>;
23087
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
22964
23088
  /**
22965
23089
  *
22966
23090
  * @summary Update HospitalSpecialty.
@@ -22983,15 +23107,15 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
22983
23107
  * @param {MarketingType} [marketingType]
22984
23108
  * @param {Procedure} [procedure]
22985
23109
  * @param {Date} [created]
23110
+ * @param {boolean} [showHidden]
22986
23111
  * @param {string} [languageCode]
22987
- * @param {boolean} [returnDefaultValue]
22988
23112
  * @param {number} [page]
22989
23113
  * @param {number} [limit]
22990
23114
  * @param {Date} [lastRetrieved]
22991
23115
  * @param {*} [options] Override http request option.
22992
23116
  * @throws {RequiredError}
22993
23117
  */
22994
- 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>>;
23118
+ 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>>;
22995
23119
  /**
22996
23120
  *
22997
23121
  * @summary Create HospitalService.
@@ -23176,7 +23300,6 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
23176
23300
  * @param {boolean} [showHidden]
23177
23301
  * @param {string} [languageCode]
23178
23302
  * @param {Array<string>} [ids]
23179
- * @param {boolean} [returnDefaultValue]
23180
23303
  * @param {boolean} [paymentEnabled]
23181
23304
  * @param {number} [page]
23182
23305
  * @param {number} [limit]
@@ -23184,7 +23307,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
23184
23307
  * @param {*} [options] Override http request option.
23185
23308
  * @throws {RequiredError}
23186
23309
  */
23187
- 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>>;
23310
+ 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>>;
23188
23311
  /**
23189
23312
  *
23190
23313
  * @param {string} slug
@@ -23214,7 +23337,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23214
23337
  * @param {boolean} [showHidden]
23215
23338
  * @param {string} [languageCode]
23216
23339
  * @param {Array<string>} [ids]
23217
- * @param {boolean} [returnDefaultValue]
23218
23340
  * @param {boolean} [paymentEnabled]
23219
23341
  * @param {number} [page]
23220
23342
  * @param {number} [limit]
@@ -23222,7 +23344,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23222
23344
  * @param {*} [options] Override http request option.
23223
23345
  * @throws {RequiredError}
23224
23346
  */
23225
- 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>;
23347
+ 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>;
23226
23348
  /**
23227
23349
  *
23228
23350
  * @summary Delete HospitalAccreditation.
@@ -23572,8 +23694,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23572
23694
  * @param {string} [name]
23573
23695
  * @param {string} [slug]
23574
23696
  * @param {MarketingType} [marketingType]
23575
- * @param {boolean} [returnDefaultValue]
23576
- * @param {boolean} [includeServices]
23577
23697
  * @param {string} [languageCode]
23578
23698
  * @param {boolean} [showHidden]
23579
23699
  * @param {number} [page]
@@ -23582,7 +23702,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23582
23702
  * @param {*} [options] Override http request option.
23583
23703
  * @throws {RequiredError}
23584
23704
  */
23585
- 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>;
23705
+ 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>;
23586
23706
  /**
23587
23707
  *
23588
23708
  * @summary Get all HospitalServiceMedias.
@@ -23659,8 +23779,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23659
23779
  * @param {string} [name]
23660
23780
  * @param {string} [slug]
23661
23781
  * @param {MarketingType} [marketingType]
23662
- * @param {boolean} [returnDefaultValue]
23663
- * @param {boolean} [includeServices]
23664
23782
  * @param {string} [languageCode]
23665
23783
  * @param {boolean} [showHidden]
23666
23784
  * @param {number} [page]
@@ -23669,7 +23787,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23669
23787
  * @param {*} [options] Override http request option.
23670
23788
  * @throws {RequiredError}
23671
23789
  */
23672
- 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>;
23790
+ 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>;
23673
23791
  /**
23674
23792
  *
23675
23793
  * @summary Get HospitalSpecialty by slug.
@@ -23697,12 +23815,10 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23697
23815
  * @param {string} hospitalId
23698
23816
  * @param {string} specialtyId
23699
23817
  * @param {string} [languageCode]
23700
- * @param {boolean} [returnDefaultValue]
23701
- * @param {boolean} [includeServices]
23702
23818
  * @param {*} [options] Override http request option.
23703
23819
  * @throws {RequiredError}
23704
23820
  */
23705
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
23821
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalSpecialtyModel>;
23706
23822
  /**
23707
23823
  *
23708
23824
  * @summary Update HospitalSpecialty.
@@ -23725,15 +23841,15 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23725
23841
  * @param {MarketingType} [marketingType]
23726
23842
  * @param {Procedure} [procedure]
23727
23843
  * @param {Date} [created]
23844
+ * @param {boolean} [showHidden]
23728
23845
  * @param {string} [languageCode]
23729
- * @param {boolean} [returnDefaultValue]
23730
23846
  * @param {number} [page]
23731
23847
  * @param {number} [limit]
23732
23848
  * @param {Date} [lastRetrieved]
23733
23849
  * @param {*} [options] Override http request option.
23734
23850
  * @throws {RequiredError}
23735
23851
  */
23736
- 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>;
23852
+ 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>;
23737
23853
  /**
23738
23854
  *
23739
23855
  * @summary Create HospitalService.
@@ -23918,7 +24034,6 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23918
24034
  * @param {boolean} [showHidden]
23919
24035
  * @param {string} [languageCode]
23920
24036
  * @param {Array<string>} [ids]
23921
- * @param {boolean} [returnDefaultValue]
23922
24037
  * @param {boolean} [paymentEnabled]
23923
24038
  * @param {number} [page]
23924
24039
  * @param {number} [limit]
@@ -23926,7 +24041,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
23926
24041
  * @param {*} [options] Override http request option.
23927
24042
  * @throws {RequiredError}
23928
24043
  */
23929
- 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>;
24044
+ 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>;
23930
24045
  /**
23931
24046
  *
23932
24047
  * @param {string} slug
@@ -23958,7 +24073,6 @@ export declare class HospitalsApi extends BaseAPI {
23958
24073
  * @param {boolean} [showHidden]
23959
24074
  * @param {string} [languageCode]
23960
24075
  * @param {Array<string>} [ids]
23961
- * @param {boolean} [returnDefaultValue]
23962
24076
  * @param {boolean} [paymentEnabled]
23963
24077
  * @param {number} [page]
23964
24078
  * @param {number} [limit]
@@ -23967,7 +24081,7 @@ export declare class HospitalsApi extends BaseAPI {
23967
24081
  * @throws {RequiredError}
23968
24082
  * @memberof HospitalsApi
23969
24083
  */
23970
- 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>>;
24084
+ 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>>;
23971
24085
  /**
23972
24086
  *
23973
24087
  * @summary Delete HospitalAccreditation.
@@ -24350,8 +24464,6 @@ export declare class HospitalsApi extends BaseAPI {
24350
24464
  * @param {string} [name]
24351
24465
  * @param {string} [slug]
24352
24466
  * @param {MarketingType} [marketingType]
24353
- * @param {boolean} [returnDefaultValue]
24354
- * @param {boolean} [includeServices]
24355
24467
  * @param {string} [languageCode]
24356
24468
  * @param {boolean} [showHidden]
24357
24469
  * @param {number} [page]
@@ -24361,7 +24473,7 @@ export declare class HospitalsApi extends BaseAPI {
24361
24473
  * @throws {RequiredError}
24362
24474
  * @memberof HospitalsApi
24363
24475
  */
24364
- 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>>;
24476
+ 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>>;
24365
24477
  /**
24366
24478
  *
24367
24479
  * @summary Get all HospitalServiceMedias.
@@ -24444,8 +24556,6 @@ export declare class HospitalsApi extends BaseAPI {
24444
24556
  * @param {string} [name]
24445
24557
  * @param {string} [slug]
24446
24558
  * @param {MarketingType} [marketingType]
24447
- * @param {boolean} [returnDefaultValue]
24448
- * @param {boolean} [includeServices]
24449
24559
  * @param {string} [languageCode]
24450
24560
  * @param {boolean} [showHidden]
24451
24561
  * @param {number} [page]
@@ -24455,7 +24565,7 @@ export declare class HospitalsApi extends BaseAPI {
24455
24565
  * @throws {RequiredError}
24456
24566
  * @memberof HospitalsApi
24457
24567
  */
24458
- 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>>;
24568
+ 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>>;
24459
24569
  /**
24460
24570
  *
24461
24571
  * @summary Get HospitalSpecialty by slug.
@@ -24485,13 +24595,11 @@ export declare class HospitalsApi extends BaseAPI {
24485
24595
  * @param {string} hospitalId
24486
24596
  * @param {string} specialtyId
24487
24597
  * @param {string} [languageCode]
24488
- * @param {boolean} [returnDefaultValue]
24489
- * @param {boolean} [includeServices]
24490
24598
  * @param {*} [options] Override http request option.
24491
24599
  * @throws {RequiredError}
24492
24600
  * @memberof HospitalsApi
24493
24601
  */
24494
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
24602
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
24495
24603
  /**
24496
24604
  *
24497
24605
  * @summary Update HospitalSpecialty.
@@ -24515,8 +24623,8 @@ export declare class HospitalsApi extends BaseAPI {
24515
24623
  * @param {MarketingType} [marketingType]
24516
24624
  * @param {Procedure} [procedure]
24517
24625
  * @param {Date} [created]
24626
+ * @param {boolean} [showHidden]
24518
24627
  * @param {string} [languageCode]
24519
- * @param {boolean} [returnDefaultValue]
24520
24628
  * @param {number} [page]
24521
24629
  * @param {number} [limit]
24522
24630
  * @param {Date} [lastRetrieved]
@@ -24524,7 +24632,7 @@ export declare class HospitalsApi extends BaseAPI {
24524
24632
  * @throws {RequiredError}
24525
24633
  * @memberof HospitalsApi
24526
24634
  */
24527
- 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>>;
24635
+ 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>>;
24528
24636
  /**
24529
24637
  *
24530
24638
  * @summary Create HospitalService.
@@ -24725,7 +24833,6 @@ export declare class HospitalsApi extends BaseAPI {
24725
24833
  * @param {boolean} [showHidden]
24726
24834
  * @param {string} [languageCode]
24727
24835
  * @param {Array<string>} [ids]
24728
- * @param {boolean} [returnDefaultValue]
24729
24836
  * @param {boolean} [paymentEnabled]
24730
24837
  * @param {number} [page]
24731
24838
  * @param {number} [limit]
@@ -24734,7 +24841,7 @@ export declare class HospitalsApi extends BaseAPI {
24734
24841
  * @throws {RequiredError}
24735
24842
  * @memberof HospitalsApi
24736
24843
  */
24737
- 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>>;
24844
+ 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>>;
24738
24845
  /**
24739
24846
  *
24740
24847
  * @param {string} slug
@@ -25068,14 +25175,16 @@ export declare const ManagersApiAxiosParamCreator: (configuration?: Configuratio
25068
25175
  *
25069
25176
  * @summary Get all manager affiliations.
25070
25177
  * @param {string} managerId
25178
+ * @param {string} [hospitalId]
25071
25179
  * @param {string} [hospitalName]
25180
+ * @param {string} [languageCode]
25072
25181
  * @param {number} [page]
25073
25182
  * @param {number} [limit]
25074
25183
  * @param {Date} [lastRetrieved]
25075
25184
  * @param {*} [options] Override http request option.
25076
25185
  * @throws {RequiredError}
25077
25186
  */
25078
- apiV1ManagersManagerIdAffiliationsGet: (managerId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
25187
+ 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>;
25079
25188
  /**
25080
25189
  *
25081
25190
  * @summary Delete manager affiliation.
@@ -25163,14 +25272,16 @@ export declare const ManagersApiFp: (configuration?: Configuration | undefined)
25163
25272
  *
25164
25273
  * @summary Get all manager affiliations.
25165
25274
  * @param {string} managerId
25275
+ * @param {string} [hospitalId]
25166
25276
  * @param {string} [hospitalName]
25277
+ * @param {string} [languageCode]
25167
25278
  * @param {number} [page]
25168
25279
  * @param {number} [limit]
25169
25280
  * @param {Date} [lastRetrieved]
25170
25281
  * @param {*} [options] Override http request option.
25171
25282
  * @throws {RequiredError}
25172
25283
  */
25173
- 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>>;
25284
+ 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>>;
25174
25285
  /**
25175
25286
  *
25176
25287
  * @summary Delete manager affiliation.
@@ -25258,14 +25369,16 @@ export declare const ManagersApiFactory: (configuration?: Configuration | undefi
25258
25369
  *
25259
25370
  * @summary Get all manager affiliations.
25260
25371
  * @param {string} managerId
25372
+ * @param {string} [hospitalId]
25261
25373
  * @param {string} [hospitalName]
25374
+ * @param {string} [languageCode]
25262
25375
  * @param {number} [page]
25263
25376
  * @param {number} [limit]
25264
25377
  * @param {Date} [lastRetrieved]
25265
25378
  * @param {*} [options] Override http request option.
25266
25379
  * @throws {RequiredError}
25267
25380
  */
25268
- apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ManagerAffiliationsModel>;
25381
+ 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>;
25269
25382
  /**
25270
25383
  *
25271
25384
  * @summary Delete manager affiliation.
@@ -25356,7 +25469,9 @@ export declare class ManagersApi extends BaseAPI {
25356
25469
  *
25357
25470
  * @summary Get all manager affiliations.
25358
25471
  * @param {string} managerId
25472
+ * @param {string} [hospitalId]
25359
25473
  * @param {string} [hospitalName]
25474
+ * @param {string} [languageCode]
25360
25475
  * @param {number} [page]
25361
25476
  * @param {number} [limit]
25362
25477
  * @param {Date} [lastRetrieved]
@@ -25364,7 +25479,7 @@ export declare class ManagersApi extends BaseAPI {
25364
25479
  * @throws {RequiredError}
25365
25480
  * @memberof ManagersApi
25366
25481
  */
25367
- apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerAffiliationsModel>>;
25482
+ apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalId?: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagerAffiliationsModel>>;
25368
25483
  /**
25369
25484
  *
25370
25485
  * @summary Delete manager affiliation.
@@ -26761,13 +26876,14 @@ export declare const ServiceReviewsApiAxiosParamCreator: (configuration?: Config
26761
26876
  * @param {number} [rate]
26762
26877
  * @param {ReviewType} [reviewType]
26763
26878
  * @param {string} [languageCode]
26879
+ * @param {boolean} [showHidden]
26764
26880
  * @param {number} [page]
26765
26881
  * @param {number} [limit]
26766
26882
  * @param {Date} [lastRetrieved]
26767
26883
  * @param {*} [options] Override http request option.
26768
26884
  * @throws {RequiredError}
26769
26885
  */
26770
- 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>;
26886
+ 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>;
26771
26887
  /**
26772
26888
  *
26773
26889
  * @summary Create a ServiceReview.
@@ -26868,13 +26984,14 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
26868
26984
  * @param {number} [rate]
26869
26985
  * @param {ReviewType} [reviewType]
26870
26986
  * @param {string} [languageCode]
26987
+ * @param {boolean} [showHidden]
26871
26988
  * @param {number} [page]
26872
26989
  * @param {number} [limit]
26873
26990
  * @param {Date} [lastRetrieved]
26874
26991
  * @param {*} [options] Override http request option.
26875
26992
  * @throws {RequiredError}
26876
26993
  */
26877
- 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>>;
26994
+ 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>>;
26878
26995
  /**
26879
26996
  *
26880
26997
  * @summary Create a ServiceReview.
@@ -26975,13 +27092,14 @@ export declare const ServiceReviewsApiFactory: (configuration?: Configuration |
26975
27092
  * @param {number} [rate]
26976
27093
  * @param {ReviewType} [reviewType]
26977
27094
  * @param {string} [languageCode]
27095
+ * @param {boolean} [showHidden]
26978
27096
  * @param {number} [page]
26979
27097
  * @param {number} [limit]
26980
27098
  * @param {Date} [lastRetrieved]
26981
27099
  * @param {*} [options] Override http request option.
26982
27100
  * @throws {RequiredError}
26983
27101
  */
26984
- 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>;
27102
+ 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>;
26985
27103
  /**
26986
27104
  *
26987
27105
  * @summary Create a ServiceReview.
@@ -27084,6 +27202,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
27084
27202
  * @param {number} [rate]
27085
27203
  * @param {ReviewType} [reviewType]
27086
27204
  * @param {string} [languageCode]
27205
+ * @param {boolean} [showHidden]
27087
27206
  * @param {number} [page]
27088
27207
  * @param {number} [limit]
27089
27208
  * @param {Date} [lastRetrieved]
@@ -27091,7 +27210,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
27091
27210
  * @throws {RequiredError}
27092
27211
  * @memberof ServiceReviewsApi
27093
27212
  */
27094
- 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>>;
27213
+ 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>>;
27095
27214
  /**
27096
27215
  *
27097
27216
  * @summary Create a ServiceReview.
@@ -27206,15 +27325,15 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
27206
27325
  * @param {MarketingType} [marketingType]
27207
27326
  * @param {Procedure} [procedure]
27208
27327
  * @param {Date} [created]
27328
+ * @param {boolean} [showHidden]
27209
27329
  * @param {string} [languageCode]
27210
- * @param {boolean} [returnDefaultValue]
27211
27330
  * @param {number} [page]
27212
27331
  * @param {number} [limit]
27213
27332
  * @param {Date} [lastRetrieved]
27214
27333
  * @param {*} [options] Override http request option.
27215
27334
  * @throws {RequiredError}
27216
27335
  */
27217
- 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>;
27336
+ 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>;
27218
27337
  /**
27219
27338
  *
27220
27339
  * @param {string} serviceId
@@ -27256,15 +27375,15 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
27256
27375
  * @param {MarketingType} [marketingType]
27257
27376
  * @param {Procedure} [procedure]
27258
27377
  * @param {Date} [created]
27378
+ * @param {boolean} [showHidden]
27259
27379
  * @param {string} [languageCode]
27260
- * @param {boolean} [returnDefaultValue]
27261
27380
  * @param {number} [page]
27262
27381
  * @param {number} [limit]
27263
27382
  * @param {Date} [lastRetrieved]
27264
27383
  * @param {*} [options] Override http request option.
27265
27384
  * @throws {RequiredError}
27266
27385
  */
27267
- 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>>;
27386
+ 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>>;
27268
27387
  /**
27269
27388
  *
27270
27389
  * @param {string} serviceId
@@ -27306,15 +27425,15 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
27306
27425
  * @param {MarketingType} [marketingType]
27307
27426
  * @param {Procedure} [procedure]
27308
27427
  * @param {Date} [created]
27428
+ * @param {boolean} [showHidden]
27309
27429
  * @param {string} [languageCode]
27310
- * @param {boolean} [returnDefaultValue]
27311
27430
  * @param {number} [page]
27312
27431
  * @param {number} [limit]
27313
27432
  * @param {Date} [lastRetrieved]
27314
27433
  * @param {*} [options] Override http request option.
27315
27434
  * @throws {RequiredError}
27316
27435
  */
27317
- 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>;
27436
+ 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>;
27318
27437
  /**
27319
27438
  *
27320
27439
  * @param {string} serviceId
@@ -27358,8 +27477,8 @@ export declare class ServicesApi extends BaseAPI {
27358
27477
  * @param {MarketingType} [marketingType]
27359
27478
  * @param {Procedure} [procedure]
27360
27479
  * @param {Date} [created]
27480
+ * @param {boolean} [showHidden]
27361
27481
  * @param {string} [languageCode]
27362
- * @param {boolean} [returnDefaultValue]
27363
27482
  * @param {number} [page]
27364
27483
  * @param {number} [limit]
27365
27484
  * @param {Date} [lastRetrieved]
@@ -27367,7 +27486,7 @@ export declare class ServicesApi extends BaseAPI {
27367
27486
  * @throws {RequiredError}
27368
27487
  * @memberof ServicesApi
27369
27488
  */
27370
- 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>>;
27489
+ 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>>;
27371
27490
  /**
27372
27491
  *
27373
27492
  * @param {string} serviceId