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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/api.ts CHANGED
@@ -474,6 +474,30 @@ export interface ArticleContributorModel {
474
474
  * @memberof ArticleContributorModel
475
475
  */
476
476
  'auditableEntity'?: AuditableEntity;
477
+ /**
478
+ *
479
+ * @type {string}
480
+ * @memberof ArticleContributorModel
481
+ */
482
+ 'contributorDescription'?: string | null;
483
+ /**
484
+ *
485
+ * @type {string}
486
+ * @memberof ArticleContributorModel
487
+ */
488
+ 'contributorOverview'?: string | null;
489
+ /**
490
+ *
491
+ * @type {string}
492
+ * @memberof ArticleContributorModel
493
+ */
494
+ 'contributorContent'?: string | null;
495
+ /**
496
+ *
497
+ * @type {Array<SnsHandle>}
498
+ * @memberof ArticleContributorModel
499
+ */
500
+ 'contributorSnsHandles'?: Array<SnsHandle> | null;
477
501
  }
478
502
  /**
479
503
  *
@@ -554,6 +578,18 @@ export interface ArticleItemModel {
554
578
  * @memberof ArticleItemModel
555
579
  */
556
580
  'hospitalId'?: string;
581
+ /**
582
+ *
583
+ * @type {string}
584
+ * @memberof ArticleItemModel
585
+ */
586
+ 'hospitalName'?: string | null;
587
+ /**
588
+ *
589
+ * @type {string}
590
+ * @memberof ArticleItemModel
591
+ */
592
+ 'hospitalSlug'?: string | null;
557
593
  /**
558
594
  *
559
595
  * @type {AuditableEntity}
@@ -621,6 +657,18 @@ export interface ArticleModel {
621
657
  * @memberof ArticleModel
622
658
  */
623
659
  'hospitalId'?: string;
660
+ /**
661
+ *
662
+ * @type {string}
663
+ * @memberof ArticleModel
664
+ */
665
+ 'hospitalName'?: string | null;
666
+ /**
667
+ *
668
+ * @type {string}
669
+ * @memberof ArticleModel
670
+ */
671
+ 'hospitalSlug'?: string | null;
624
672
  /**
625
673
  *
626
674
  * @type {AuditableEntity}
@@ -881,6 +929,12 @@ export interface BookingItemModel {
881
929
  * @memberof BookingItemModel
882
930
  */
883
931
  'id'?: string;
932
+ /**
933
+ *
934
+ * @type {string}
935
+ * @memberof BookingItemModel
936
+ */
937
+ 'languageCode'?: string | null;
884
938
  /**
885
939
  *
886
940
  * @type {string}
@@ -904,103 +958,103 @@ export interface BookingItemModel {
904
958
  * @type {string}
905
959
  * @memberof BookingItemModel
906
960
  */
907
- 'hospitalId'?: string;
961
+ 'firstName'?: string | null;
908
962
  /**
909
963
  *
910
964
  * @type {string}
911
965
  * @memberof BookingItemModel
912
966
  */
913
- 'hospitalName'?: string | null;
967
+ 'lastName'?: string | null;
914
968
  /**
915
969
  *
916
970
  * @type {string}
917
971
  * @memberof BookingItemModel
918
972
  */
919
- 'hospitalSlug'?: string | null;
973
+ 'email'?: string | null;
920
974
  /**
921
975
  *
922
976
  * @type {string}
923
977
  * @memberof BookingItemModel
924
978
  */
925
- 'hospitalTimeZone'?: string | null;
979
+ 'phone'?: string | null;
926
980
  /**
927
981
  *
928
- * @type {string}
982
+ * @type {Date}
929
983
  * @memberof BookingItemModel
930
984
  */
931
- 'dealId'?: string;
985
+ 'dateOfBirth'?: Date | null;
932
986
  /**
933
987
  *
934
- * @type {string}
988
+ * @type {Gender}
935
989
  * @memberof BookingItemModel
936
990
  */
937
- 'dealName'?: string | null;
991
+ 'gender'?: Gender;
938
992
  /**
939
993
  *
940
994
  * @type {string}
941
995
  * @memberof BookingItemModel
942
996
  */
943
- 'dealSlug'?: string | null;
997
+ 'comment'?: string | null;
944
998
  /**
945
999
  *
946
1000
  * @type {string}
947
1001
  * @memberof BookingItemModel
948
1002
  */
949
- 'dealPackageId'?: string;
1003
+ 'hospitalId'?: string;
950
1004
  /**
951
1005
  *
952
- * @type {RefundPolicy}
1006
+ * @type {string}
953
1007
  * @memberof BookingItemModel
954
1008
  */
955
- 'refundPolicy'?: RefundPolicy;
1009
+ 'hospitalName'?: string | null;
956
1010
  /**
957
1011
  *
958
- * @type {number}
1012
+ * @type {string}
959
1013
  * @memberof BookingItemModel
960
1014
  */
961
- 'quantity'?: number;
1015
+ 'hospitalSlug'?: string | null;
962
1016
  /**
963
1017
  *
964
1018
  * @type {string}
965
1019
  * @memberof BookingItemModel
966
1020
  */
967
- 'firstName'?: string | null;
1021
+ 'hospitalTimeZone'?: string | null;
968
1022
  /**
969
1023
  *
970
1024
  * @type {string}
971
1025
  * @memberof BookingItemModel
972
1026
  */
973
- 'lastName'?: string | null;
1027
+ 'dealId'?: string;
974
1028
  /**
975
1029
  *
976
1030
  * @type {string}
977
1031
  * @memberof BookingItemModel
978
1032
  */
979
- 'email'?: string | null;
1033
+ 'dealName'?: string | null;
980
1034
  /**
981
1035
  *
982
1036
  * @type {string}
983
1037
  * @memberof BookingItemModel
984
1038
  */
985
- 'phone'?: string | null;
1039
+ 'dealSlug'?: string | null;
986
1040
  /**
987
1041
  *
988
- * @type {Date}
1042
+ * @type {string}
989
1043
  * @memberof BookingItemModel
990
1044
  */
991
- 'dateOfBirth'?: Date | null;
1045
+ 'dealPackageId'?: string;
992
1046
  /**
993
1047
  *
994
- * @type {Gender}
1048
+ * @type {RefundPolicy}
995
1049
  * @memberof BookingItemModel
996
1050
  */
997
- 'gender'?: Gender;
1051
+ 'refundPolicy'?: RefundPolicy;
998
1052
  /**
999
1053
  *
1000
- * @type {string}
1054
+ * @type {number}
1001
1055
  * @memberof BookingItemModel
1002
1056
  */
1003
- 'comment'?: string | null;
1057
+ 'quantity'?: number;
1004
1058
  /**
1005
1059
  *
1006
1060
  * @type {Date}
@@ -1085,12 +1139,6 @@ export interface BookingItemModel {
1085
1139
  * @memberof BookingItemModel
1086
1140
  */
1087
1141
  'isOpen'?: boolean;
1088
- /**
1089
- *
1090
- * @type {number}
1091
- * @memberof BookingItemModel
1092
- */
1093
- 'completionRate'?: number;
1094
1142
  /**
1095
1143
  *
1096
1144
  * @type {boolean}
@@ -1110,6 +1158,12 @@ export interface BookingModel {
1110
1158
  * @memberof BookingModel
1111
1159
  */
1112
1160
  'id'?: string;
1161
+ /**
1162
+ *
1163
+ * @type {string}
1164
+ * @memberof BookingModel
1165
+ */
1166
+ 'languageCode'?: string | null;
1113
1167
  /**
1114
1168
  *
1115
1169
  * @type {string}
@@ -1133,103 +1187,103 @@ export interface BookingModel {
1133
1187
  * @type {string}
1134
1188
  * @memberof BookingModel
1135
1189
  */
1136
- 'hospitalId'?: string;
1190
+ 'firstName'?: string | null;
1137
1191
  /**
1138
1192
  *
1139
1193
  * @type {string}
1140
1194
  * @memberof BookingModel
1141
1195
  */
1142
- 'hospitalName'?: string | null;
1196
+ 'lastName'?: string | null;
1143
1197
  /**
1144
1198
  *
1145
1199
  * @type {string}
1146
1200
  * @memberof BookingModel
1147
1201
  */
1148
- 'hospitalSlug'?: string | null;
1202
+ 'email'?: string | null;
1149
1203
  /**
1150
1204
  *
1151
1205
  * @type {string}
1152
1206
  * @memberof BookingModel
1153
1207
  */
1154
- 'hospitalTimeZone'?: string | null;
1208
+ 'phone'?: string | null;
1155
1209
  /**
1156
1210
  *
1157
- * @type {string}
1211
+ * @type {Date}
1158
1212
  * @memberof BookingModel
1159
1213
  */
1160
- 'dealId'?: string;
1214
+ 'dateOfBirth'?: Date | null;
1161
1215
  /**
1162
1216
  *
1163
- * @type {string}
1217
+ * @type {Gender}
1164
1218
  * @memberof BookingModel
1165
1219
  */
1166
- 'dealName'?: string | null;
1220
+ 'gender'?: Gender;
1167
1221
  /**
1168
1222
  *
1169
1223
  * @type {string}
1170
1224
  * @memberof BookingModel
1171
1225
  */
1172
- 'dealSlug'?: string | null;
1226
+ 'comment'?: string | null;
1173
1227
  /**
1174
1228
  *
1175
1229
  * @type {string}
1176
1230
  * @memberof BookingModel
1177
1231
  */
1178
- 'dealPackageId'?: string;
1232
+ 'hospitalId'?: string;
1179
1233
  /**
1180
1234
  *
1181
- * @type {RefundPolicy}
1235
+ * @type {string}
1182
1236
  * @memberof BookingModel
1183
1237
  */
1184
- 'refundPolicy'?: RefundPolicy;
1238
+ 'hospitalName'?: string | null;
1185
1239
  /**
1186
1240
  *
1187
- * @type {number}
1241
+ * @type {string}
1188
1242
  * @memberof BookingModel
1189
1243
  */
1190
- 'quantity'?: number;
1244
+ 'hospitalSlug'?: string | null;
1191
1245
  /**
1192
1246
  *
1193
1247
  * @type {string}
1194
1248
  * @memberof BookingModel
1195
1249
  */
1196
- 'firstName'?: string | null;
1250
+ 'hospitalTimeZone'?: string | null;
1197
1251
  /**
1198
1252
  *
1199
1253
  * @type {string}
1200
1254
  * @memberof BookingModel
1201
1255
  */
1202
- 'lastName'?: string | null;
1256
+ 'dealId'?: string;
1203
1257
  /**
1204
1258
  *
1205
1259
  * @type {string}
1206
1260
  * @memberof BookingModel
1207
1261
  */
1208
- 'email'?: string | null;
1262
+ 'dealName'?: string | null;
1209
1263
  /**
1210
1264
  *
1211
1265
  * @type {string}
1212
1266
  * @memberof BookingModel
1213
1267
  */
1214
- 'phone'?: string | null;
1268
+ 'dealSlug'?: string | null;
1215
1269
  /**
1216
1270
  *
1217
- * @type {Date}
1271
+ * @type {string}
1218
1272
  * @memberof BookingModel
1219
1273
  */
1220
- 'dateOfBirth'?: Date | null;
1274
+ 'dealPackageId'?: string;
1221
1275
  /**
1222
1276
  *
1223
- * @type {Gender}
1277
+ * @type {RefundPolicy}
1224
1278
  * @memberof BookingModel
1225
1279
  */
1226
- 'gender'?: Gender;
1280
+ 'refundPolicy'?: RefundPolicy;
1227
1281
  /**
1228
1282
  *
1229
- * @type {string}
1283
+ * @type {number}
1230
1284
  * @memberof BookingModel
1231
1285
  */
1232
- 'comment'?: string | null;
1286
+ 'quantity'?: number;
1233
1287
  /**
1234
1288
  *
1235
1289
  * @type {Date}
@@ -1314,12 +1368,6 @@ export interface BookingModel {
1314
1368
  * @memberof BookingModel
1315
1369
  */
1316
1370
  'isOpen'?: boolean;
1317
- /**
1318
- *
1319
- * @type {number}
1320
- * @memberof BookingModel
1321
- */
1322
- 'completionRate'?: number;
1323
1371
  /**
1324
1372
  *
1325
1373
  * @type {boolean}
@@ -2005,126 +2053,36 @@ export interface ConsultationItemModel {
2005
2053
  * @memberof ConsultationItemModel
2006
2054
  */
2007
2055
  'id'?: string;
2008
- /**
2009
- *
2010
- * @type {ConsultationType}
2011
- * @memberof ConsultationItemModel
2012
- */
2013
- 'consultationType'?: ConsultationType;
2014
- /**
2015
- *
2016
- * @type {string}
2017
- * @memberof ConsultationItemModel
2018
- */
2019
- 'patientId'?: string;
2020
- /**
2021
- *
2022
- * @type {string}
2023
- * @memberof ConsultationItemModel
2024
- */
2025
- 'patientName'?: string | null;
2026
- /**
2027
- *
2028
- * @type {string}
2029
- * @memberof ConsultationItemModel
2030
- */
2031
- 'patientPhoto'?: string | null;
2032
- /**
2033
- *
2034
- * @type {string}
2035
- * @memberof ConsultationItemModel
2036
- */
2037
- 'communicationUserId'?: string | null;
2038
- /**
2039
- *
2040
- * @type {string}
2041
- * @memberof ConsultationItemModel
2042
- */
2043
- 'hospitalId'?: string;
2044
- /**
2045
- *
2046
- * @type {string}
2047
- * @memberof ConsultationItemModel
2048
- */
2049
- 'hospitalName'?: string | null;
2050
- /**
2051
- *
2052
- * @type {string}
2053
- * @memberof ConsultationItemModel
2054
- */
2055
- 'hospitalSlug'?: string | null;
2056
- /**
2057
- *
2058
- * @type {string}
2059
- * @memberof ConsultationItemModel
2060
- */
2061
- 'hospitalTimeZone'?: string | null;
2062
- /**
2063
- *
2064
- * @type {string}
2065
- * @memberof ConsultationItemModel
2066
- */
2067
- 'specialtyId'?: string | null;
2068
- /**
2069
- *
2070
- * @type {string}
2071
- * @memberof ConsultationItemModel
2072
- */
2073
- 'specialtyName'?: string | null;
2074
- /**
2075
- *
2076
- * @type {string}
2077
- * @memberof ConsultationItemModel
2078
- */
2079
- 'specialtySlug'?: string | null;
2080
- /**
2081
- *
2082
- * @type {string}
2083
- * @memberof ConsultationItemModel
2084
- */
2085
- 'doctorId'?: string | null;
2086
2056
  /**
2087
2057
  *
2088
2058
  * @type {string}
2089
2059
  * @memberof ConsultationItemModel
2090
2060
  */
2091
- 'doctorName'?: string | null;
2092
- /**
2093
- *
2094
- * @type {string}
2095
- * @memberof ConsultationItemModel
2096
- */
2097
- 'doctorSlug'?: string | null;
2061
+ 'languageCode'?: string | null;
2098
2062
  /**
2099
2063
  *
2100
- * @type {string}
2064
+ * @type {ConsultationType}
2101
2065
  * @memberof ConsultationItemModel
2102
2066
  */
2103
- 'dealId'?: string | null;
2067
+ 'consultationType'?: ConsultationType;
2104
2068
  /**
2105
2069
  *
2106
2070
  * @type {string}
2107
2071
  * @memberof ConsultationItemModel
2108
2072
  */
2109
- 'dealName'?: string | null;
2073
+ 'patientId'?: string;
2110
2074
  /**
2111
2075
  *
2112
2076
  * @type {string}
2113
2077
  * @memberof ConsultationItemModel
2114
2078
  */
2115
- 'dealSlug'?: string | null;
2079
+ 'patientName'?: string | null;
2116
2080
  /**
2117
2081
  *
2118
2082
  * @type {string}
2119
2083
  * @memberof ConsultationItemModel
2120
2084
  */
2121
- 'language'?: string | null;
2122
- /**
2123
- *
2124
- * @type {boolean}
2125
- * @memberof ConsultationItemModel
2126
- */
2127
- 'isAccountHolder'?: boolean;
2085
+ 'patientPhoto'?: string | null;
2128
2086
  /**
2129
2087
  *
2130
2088
  * @type {string}
@@ -2172,43 +2130,103 @@ export interface ConsultationItemModel {
2172
2130
  * @type {string}
2173
2131
  * @memberof ConsultationItemModel
2174
2132
  */
2175
- 'timeRange'?: string | null;
2133
+ 'hospitalId'?: string;
2176
2134
  /**
2177
2135
  *
2178
- * @type {Date}
2136
+ * @type {string}
2179
2137
  * @memberof ConsultationItemModel
2180
2138
  */
2181
- 'approximateDateStart'?: Date;
2139
+ 'hospitalName'?: string | null;
2182
2140
  /**
2183
2141
  *
2184
- * @type {Date}
2142
+ * @type {string}
2185
2143
  * @memberof ConsultationItemModel
2186
2144
  */
2187
- 'approximateDateEnd'?: Date;
2145
+ 'hospitalSlug'?: string | null;
2188
2146
  /**
2189
2147
  *
2190
- * @type {Date}
2148
+ * @type {string}
2191
2149
  * @memberof ConsultationItemModel
2192
2150
  */
2193
- 'confirmedDateStart'?: Date | null;
2151
+ 'hospitalTimeZone'?: string | null;
2194
2152
  /**
2195
2153
  *
2196
- * @type {Date}
2154
+ * @type {string}
2197
2155
  * @memberof ConsultationItemModel
2198
2156
  */
2199
- 'confirmedDateEnd'?: Date | null;
2157
+ 'doctorId'?: string | null;
2200
2158
  /**
2201
2159
  *
2202
2160
  * @type {string}
2203
2161
  * @memberof ConsultationItemModel
2204
2162
  */
2205
- 'callerName'?: string | null;
2163
+ 'doctorName'?: string | null;
2206
2164
  /**
2207
2165
  *
2208
2166
  * @type {string}
2209
2167
  * @memberof ConsultationItemModel
2210
2168
  */
2211
- 'callerId'?: string | null;
2169
+ 'doctorSlug'?: string | null;
2170
+ /**
2171
+ *
2172
+ * @type {string}
2173
+ * @memberof ConsultationItemModel
2174
+ */
2175
+ 'dealId'?: string | null;
2176
+ /**
2177
+ *
2178
+ * @type {string}
2179
+ * @memberof ConsultationItemModel
2180
+ */
2181
+ 'dealName'?: string | null;
2182
+ /**
2183
+ *
2184
+ * @type {string}
2185
+ * @memberof ConsultationItemModel
2186
+ */
2187
+ 'dealSlug'?: string | null;
2188
+ /**
2189
+ *
2190
+ * @type {string}
2191
+ * @memberof ConsultationItemModel
2192
+ */
2193
+ 'language'?: string | null;
2194
+ /**
2195
+ *
2196
+ * @type {boolean}
2197
+ * @memberof ConsultationItemModel
2198
+ */
2199
+ 'isAccountHolder'?: boolean;
2200
+ /**
2201
+ *
2202
+ * @type {string}
2203
+ * @memberof ConsultationItemModel
2204
+ */
2205
+ 'timeRange'?: string | null;
2206
+ /**
2207
+ *
2208
+ * @type {Date}
2209
+ * @memberof ConsultationItemModel
2210
+ */
2211
+ 'approximateDateStart'?: Date;
2212
+ /**
2213
+ *
2214
+ * @type {Date}
2215
+ * @memberof ConsultationItemModel
2216
+ */
2217
+ 'approximateDateEnd'?: Date;
2218
+ /**
2219
+ *
2220
+ * @type {Date}
2221
+ * @memberof ConsultationItemModel
2222
+ */
2223
+ 'confirmedDateStart'?: Date | null;
2224
+ /**
2225
+ *
2226
+ * @type {Date}
2227
+ * @memberof ConsultationItemModel
2228
+ */
2229
+ 'confirmedDateEnd'?: Date | null;
2212
2230
  /**
2213
2231
  *
2214
2232
  * @type {number}
@@ -2294,6 +2312,12 @@ export interface ConsultationModel {
2294
2312
  * @memberof ConsultationModel
2295
2313
  */
2296
2314
  'id'?: string;
2315
+ /**
2316
+ *
2317
+ * @type {string}
2318
+ * @memberof ConsultationModel
2319
+ */
2320
+ 'languageCode'?: string | null;
2297
2321
  /**
2298
2322
  *
2299
2323
  * @type {ConsultationType}
@@ -2323,139 +2347,115 @@ export interface ConsultationModel {
2323
2347
  * @type {string}
2324
2348
  * @memberof ConsultationModel
2325
2349
  */
2326
- 'communicationUserId'?: string | null;
2327
- /**
2328
- *
2329
- * @type {string}
2330
- * @memberof ConsultationModel
2331
- */
2332
- 'hospitalId'?: string;
2350
+ 'firstName'?: string | null;
2333
2351
  /**
2334
2352
  *
2335
2353
  * @type {string}
2336
2354
  * @memberof ConsultationModel
2337
2355
  */
2338
- 'hospitalName'?: string | null;
2356
+ 'lastName'?: string | null;
2339
2357
  /**
2340
2358
  *
2341
2359
  * @type {string}
2342
2360
  * @memberof ConsultationModel
2343
2361
  */
2344
- 'hospitalSlug'?: string | null;
2362
+ 'email'?: string | null;
2345
2363
  /**
2346
2364
  *
2347
2365
  * @type {string}
2348
2366
  * @memberof ConsultationModel
2349
2367
  */
2350
- 'hospitalTimeZone'?: string | null;
2368
+ 'phone'?: string | null;
2351
2369
  /**
2352
2370
  *
2353
- * @type {string}
2371
+ * @type {Date}
2354
2372
  * @memberof ConsultationModel
2355
2373
  */
2356
- 'specialtyId'?: string | null;
2374
+ 'dateOfBirth'?: Date | null;
2357
2375
  /**
2358
2376
  *
2359
- * @type {string}
2377
+ * @type {Gender}
2360
2378
  * @memberof ConsultationModel
2361
2379
  */
2362
- 'specialtyName'?: string | null;
2380
+ 'gender'?: Gender;
2363
2381
  /**
2364
2382
  *
2365
2383
  * @type {string}
2366
2384
  * @memberof ConsultationModel
2367
2385
  */
2368
- 'specialtySlug'?: string | null;
2386
+ 'comment'?: string | null;
2369
2387
  /**
2370
2388
  *
2371
2389
  * @type {string}
2372
2390
  * @memberof ConsultationModel
2373
2391
  */
2374
- 'doctorId'?: string | null;
2392
+ 'hospitalId'?: string;
2375
2393
  /**
2376
2394
  *
2377
2395
  * @type {string}
2378
2396
  * @memberof ConsultationModel
2379
2397
  */
2380
- 'doctorName'?: string | null;
2398
+ 'hospitalName'?: string | null;
2381
2399
  /**
2382
2400
  *
2383
2401
  * @type {string}
2384
2402
  * @memberof ConsultationModel
2385
2403
  */
2386
- 'doctorSlug'?: string | null;
2404
+ 'hospitalSlug'?: string | null;
2387
2405
  /**
2388
2406
  *
2389
2407
  * @type {string}
2390
2408
  * @memberof ConsultationModel
2391
2409
  */
2392
- 'dealId'?: string | null;
2410
+ 'hospitalTimeZone'?: string | null;
2393
2411
  /**
2394
2412
  *
2395
2413
  * @type {string}
2396
2414
  * @memberof ConsultationModel
2397
2415
  */
2398
- 'dealName'?: string | null;
2416
+ 'doctorId'?: string | null;
2399
2417
  /**
2400
2418
  *
2401
2419
  * @type {string}
2402
2420
  * @memberof ConsultationModel
2403
2421
  */
2404
- 'dealSlug'?: string | null;
2422
+ 'doctorName'?: string | null;
2405
2423
  /**
2406
2424
  *
2407
2425
  * @type {string}
2408
2426
  * @memberof ConsultationModel
2409
2427
  */
2410
- 'language'?: string | null;
2411
- /**
2412
- *
2413
- * @type {boolean}
2414
- * @memberof ConsultationModel
2415
- */
2416
- 'isAccountHolder'?: boolean;
2428
+ 'doctorSlug'?: string | null;
2417
2429
  /**
2418
2430
  *
2419
2431
  * @type {string}
2420
2432
  * @memberof ConsultationModel
2421
2433
  */
2422
- 'firstName'?: string | null;
2434
+ 'dealId'?: string | null;
2423
2435
  /**
2424
2436
  *
2425
2437
  * @type {string}
2426
2438
  * @memberof ConsultationModel
2427
2439
  */
2428
- 'lastName'?: string | null;
2440
+ 'dealName'?: string | null;
2429
2441
  /**
2430
2442
  *
2431
2443
  * @type {string}
2432
2444
  * @memberof ConsultationModel
2433
2445
  */
2434
- 'email'?: string | null;
2446
+ 'dealSlug'?: string | null;
2435
2447
  /**
2436
2448
  *
2437
2449
  * @type {string}
2438
2450
  * @memberof ConsultationModel
2439
2451
  */
2440
- 'phone'?: string | null;
2441
- /**
2442
- *
2443
- * @type {Date}
2444
- * @memberof ConsultationModel
2445
- */
2446
- 'dateOfBirth'?: Date | null;
2447
- /**
2448
- *
2449
- * @type {Gender}
2450
- * @memberof ConsultationModel
2451
- */
2452
- 'gender'?: Gender;
2452
+ 'language'?: string | null;
2453
2453
  /**
2454
2454
  *
2455
- * @type {string}
2455
+ * @type {boolean}
2456
2456
  * @memberof ConsultationModel
2457
2457
  */
2458
- 'comment'?: string | null;
2458
+ 'isAccountHolder'?: boolean;
2459
2459
  /**
2460
2460
  *
2461
2461
  * @type {string}
@@ -2486,18 +2486,6 @@ export interface ConsultationModel {
2486
2486
  * @memberof ConsultationModel
2487
2487
  */
2488
2488
  'confirmedDateEnd'?: Date | null;
2489
- /**
2490
- *
2491
- * @type {string}
2492
- * @memberof ConsultationModel
2493
- */
2494
- 'callerName'?: string | null;
2495
- /**
2496
- *
2497
- * @type {string}
2498
- * @memberof ConsultationModel
2499
- */
2500
- 'callerId'?: string | null;
2501
2489
  /**
2502
2490
  *
2503
2491
  * @type {number}
@@ -3624,12 +3612,96 @@ export interface CreateDealServiceCommand {
3624
3612
  * @interface CreateDoctorAffiliationCommand
3625
3613
  */
3626
3614
  export interface CreateDoctorAffiliationCommand {
3615
+ /**
3616
+ *
3617
+ * @type {string}
3618
+ * @memberof CreateDoctorAffiliationCommand
3619
+ */
3620
+ 'doctorId'?: string;
3627
3621
  /**
3628
3622
  *
3629
3623
  * @type {string}
3630
3624
  * @memberof CreateDoctorAffiliationCommand
3631
3625
  */
3632
3626
  'hospitalId'?: string;
3627
+ /**
3628
+ *
3629
+ * @type {string}
3630
+ * @memberof CreateDoctorAffiliationCommand
3631
+ */
3632
+ 'name'?: string | null;
3633
+ /**
3634
+ *
3635
+ * @type {string}
3636
+ * @memberof CreateDoctorAffiliationCommand
3637
+ */
3638
+ 'description'?: string | null;
3639
+ /**
3640
+ *
3641
+ * @type {string}
3642
+ * @memberof CreateDoctorAffiliationCommand
3643
+ */
3644
+ 'overview'?: string | null;
3645
+ /**
3646
+ *
3647
+ * @type {string}
3648
+ * @memberof CreateDoctorAffiliationCommand
3649
+ */
3650
+ 'content'?: string | null;
3651
+ /**
3652
+ *
3653
+ * @type {string}
3654
+ * @memberof CreateDoctorAffiliationCommand
3655
+ */
3656
+ 'customStyle'?: string | null;
3657
+ /**
3658
+ *
3659
+ * @type {number}
3660
+ * @memberof CreateDoctorAffiliationCommand
3661
+ */
3662
+ 'order'?: number;
3663
+ /**
3664
+ *
3665
+ * @type {string}
3666
+ * @memberof CreateDoctorAffiliationCommand
3667
+ */
3668
+ 'photo'?: string | null;
3669
+ /**
3670
+ *
3671
+ * @type {string}
3672
+ * @memberof CreateDoctorAffiliationCommand
3673
+ */
3674
+ 'photoThumbnail'?: string | null;
3675
+ /**
3676
+ *
3677
+ * @type {string}
3678
+ * @memberof CreateDoctorAffiliationCommand
3679
+ */
3680
+ 'background'?: string | null;
3681
+ /**
3682
+ *
3683
+ * @type {string}
3684
+ * @memberof CreateDoctorAffiliationCommand
3685
+ */
3686
+ 'backgroundThumbnail'?: string | null;
3687
+ /**
3688
+ *
3689
+ * @type {boolean}
3690
+ * @memberof CreateDoctorAffiliationCommand
3691
+ */
3692
+ 'consultationEnabled'?: boolean | null;
3693
+ /**
3694
+ *
3695
+ * @type {number}
3696
+ * @memberof CreateDoctorAffiliationCommand
3697
+ */
3698
+ 'consultationFee'?: number | null;
3699
+ /**
3700
+ *
3701
+ * @type {Array<MediaModel>}
3702
+ * @memberof CreateDoctorAffiliationCommand
3703
+ */
3704
+ 'medias'?: Array<MediaModel> | null;
3633
3705
  }
3634
3706
  /**
3635
3707
  *
@@ -5158,49 +5230,49 @@ export interface DealPackageItemModel {
5158
5230
  * @type {string}
5159
5231
  * @memberof DealPackageItemModel
5160
5232
  */
5161
- 'dealId'?: string;
5233
+ 'languageCode'?: string | null;
5162
5234
  /**
5163
5235
  *
5164
5236
  * @type {string}
5165
5237
  * @memberof DealPackageItemModel
5166
5238
  */
5167
- 'dealName'?: string | null;
5239
+ 'dealId'?: string;
5168
5240
  /**
5169
5241
  *
5170
5242
  * @type {string}
5171
5243
  * @memberof DealPackageItemModel
5172
5244
  */
5173
- 'hospitalId'?: string;
5245
+ 'dealName'?: string | null;
5174
5246
  /**
5175
5247
  *
5176
5248
  * @type {string}
5177
5249
  * @memberof DealPackageItemModel
5178
5250
  */
5179
- 'hospitalName'?: string | null;
5251
+ 'dealSlug'?: string | null;
5180
5252
  /**
5181
5253
  *
5182
- * @type {RefundPolicy}
5254
+ * @type {string}
5183
5255
  * @memberof DealPackageItemModel
5184
5256
  */
5185
- 'refundPolicy'?: RefundPolicy;
5257
+ 'hospitalId'?: string;
5186
5258
  /**
5187
5259
  *
5188
5260
  * @type {string}
5189
5261
  * @memberof DealPackageItemModel
5190
5262
  */
5191
- 'additionalServices'?: string | null;
5263
+ 'hospitalName'?: string | null;
5192
5264
  /**
5193
5265
  *
5194
5266
  * @type {string}
5195
5267
  * @memberof DealPackageItemModel
5196
5268
  */
5197
- 'accomodation'?: string | null;
5269
+ 'hospitalSlug'?: string | null;
5198
5270
  /**
5199
5271
  *
5200
- * @type {string}
5272
+ * @type {RefundPolicy}
5201
5273
  * @memberof DealPackageItemModel
5202
5274
  */
5203
- 'transfer'?: string | null;
5275
+ 'refundPolicy'?: RefundPolicy;
5204
5276
  /**
5205
5277
  *
5206
5278
  * @type {string}
@@ -5237,49 +5309,49 @@ export interface DealPackageModel {
5237
5309
  * @type {string}
5238
5310
  * @memberof DealPackageModel
5239
5311
  */
5240
- 'dealId'?: string;
5312
+ 'languageCode'?: string | null;
5241
5313
  /**
5242
5314
  *
5243
5315
  * @type {string}
5244
5316
  * @memberof DealPackageModel
5245
5317
  */
5246
- 'dealName'?: string | null;
5318
+ 'dealId'?: string;
5247
5319
  /**
5248
5320
  *
5249
5321
  * @type {string}
5250
5322
  * @memberof DealPackageModel
5251
5323
  */
5252
- 'hospitalId'?: string;
5324
+ 'dealName'?: string | null;
5253
5325
  /**
5254
5326
  *
5255
5327
  * @type {string}
5256
5328
  * @memberof DealPackageModel
5257
5329
  */
5258
- 'hospitalName'?: string | null;
5330
+ 'dealSlug'?: string | null;
5259
5331
  /**
5260
5332
  *
5261
- * @type {RefundPolicy}
5333
+ * @type {string}
5262
5334
  * @memberof DealPackageModel
5263
5335
  */
5264
- 'refundPolicy'?: RefundPolicy;
5336
+ 'hospitalId'?: string;
5265
5337
  /**
5266
5338
  *
5267
5339
  * @type {string}
5268
5340
  * @memberof DealPackageModel
5269
5341
  */
5270
- 'additionalServices'?: string | null;
5342
+ 'hospitalName'?: string | null;
5271
5343
  /**
5272
5344
  *
5273
5345
  * @type {string}
5274
5346
  * @memberof DealPackageModel
5275
5347
  */
5276
- 'accomodation'?: string | null;
5348
+ 'hospitalSlug'?: string | null;
5277
5349
  /**
5278
5350
  *
5279
- * @type {string}
5351
+ * @type {RefundPolicy}
5280
5352
  * @memberof DealPackageModel
5281
5353
  */
5282
- 'transfer'?: string | null;
5354
+ 'refundPolicy'?: RefundPolicy;
5283
5355
  /**
5284
5356
  *
5285
5357
  * @type {string}
@@ -5298,6 +5370,24 @@ export interface DealPackageModel {
5298
5370
  * @memberof DealPackageModel
5299
5371
  */
5300
5372
  'auditableEntity'?: AuditableEntity;
5373
+ /**
5374
+ *
5375
+ * @type {string}
5376
+ * @memberof DealPackageModel
5377
+ */
5378
+ 'additionalServices'?: string | null;
5379
+ /**
5380
+ *
5381
+ * @type {string}
5382
+ * @memberof DealPackageModel
5383
+ */
5384
+ 'accomodation'?: string | null;
5385
+ /**
5386
+ *
5387
+ * @type {string}
5388
+ * @memberof DealPackageModel
5389
+ */
5390
+ 'transfer'?: string | null;
5301
5391
  }
5302
5392
  /**
5303
5393
  *
@@ -5324,6 +5414,12 @@ export interface DealPackagesModel {
5324
5414
  * @interface DealServiceItemModel
5325
5415
  */
5326
5416
  export interface DealServiceItemModel {
5417
+ /**
5418
+ *
5419
+ * @type {string}
5420
+ * @memberof DealServiceItemModel
5421
+ */
5422
+ 'languageCode'?: string | null;
5327
5423
  /**
5328
5424
  *
5329
5425
  * @type {string}
@@ -5336,6 +5432,12 @@ export interface DealServiceItemModel {
5336
5432
  * @memberof DealServiceItemModel
5337
5433
  */
5338
5434
  'dealName'?: string | null;
5435
+ /**
5436
+ *
5437
+ * @type {string}
5438
+ * @memberof DealServiceItemModel
5439
+ */
5440
+ 'dealSlug'?: string | null;
5339
5441
  /**
5340
5442
  *
5341
5443
  * @type {string}
@@ -5348,6 +5450,12 @@ export interface DealServiceItemModel {
5348
5450
  * @memberof DealServiceItemModel
5349
5451
  */
5350
5452
  'serviceName'?: string | null;
5453
+ /**
5454
+ *
5455
+ * @type {string}
5456
+ * @memberof DealServiceItemModel
5457
+ */
5458
+ 'serviceSlug'?: string | null;
5351
5459
  /**
5352
5460
  *
5353
5461
  * @type {number}
@@ -5361,6 +5469,12 @@ export interface DealServiceItemModel {
5361
5469
  * @interface DealServiceModel
5362
5470
  */
5363
5471
  export interface DealServiceModel {
5472
+ /**
5473
+ *
5474
+ * @type {string}
5475
+ * @memberof DealServiceModel
5476
+ */
5477
+ 'languageCode'?: string | null;
5364
5478
  /**
5365
5479
  *
5366
5480
  * @type {string}
@@ -5373,6 +5487,12 @@ export interface DealServiceModel {
5373
5487
  * @memberof DealServiceModel
5374
5488
  */
5375
5489
  'dealName'?: string | null;
5490
+ /**
5491
+ *
5492
+ * @type {string}
5493
+ * @memberof DealServiceModel
5494
+ */
5495
+ 'dealSlug'?: string | null;
5376
5496
  /**
5377
5497
  *
5378
5498
  * @type {string}
@@ -5385,6 +5505,12 @@ export interface DealServiceModel {
5385
5505
  * @memberof DealServiceModel
5386
5506
  */
5387
5507
  'serviceName'?: string | null;
5508
+ /**
5509
+ *
5510
+ * @type {string}
5511
+ * @memberof DealServiceModel
5512
+ */
5513
+ 'serviceSlug'?: string | null;
5388
5514
  /**
5389
5515
  *
5390
5516
  * @type {number}
@@ -5481,6 +5607,12 @@ export interface DeleteFaqTagCommand {
5481
5607
  * @interface DoctorAffiliationItemModel
5482
5608
  */
5483
5609
  export interface DoctorAffiliationItemModel {
5610
+ /**
5611
+ *
5612
+ * @type {string}
5613
+ * @memberof DoctorAffiliationItemModel
5614
+ */
5615
+ 'id'?: string;
5484
5616
  /**
5485
5617
  *
5486
5618
  * @type {string}
@@ -5499,6 +5631,66 @@ export interface DoctorAffiliationItemModel {
5499
5631
  * @memberof DoctorAffiliationItemModel
5500
5632
  */
5501
5633
  'hospitalSlug'?: string | null;
5634
+ /**
5635
+ *
5636
+ * @type {string}
5637
+ * @memberof DoctorAffiliationItemModel
5638
+ */
5639
+ 'doctorId'?: string;
5640
+ /**
5641
+ *
5642
+ * @type {string}
5643
+ * @memberof DoctorAffiliationItemModel
5644
+ */
5645
+ 'languageCode'?: string | null;
5646
+ /**
5647
+ *
5648
+ * @type {string}
5649
+ * @memberof DoctorAffiliationItemModel
5650
+ */
5651
+ 'name'?: string | null;
5652
+ /**
5653
+ *
5654
+ * @type {string}
5655
+ * @memberof DoctorAffiliationItemModel
5656
+ */
5657
+ 'slug'?: string | null;
5658
+ /**
5659
+ *
5660
+ * @type {boolean}
5661
+ * @memberof DoctorAffiliationItemModel
5662
+ */
5663
+ 'confirmed'?: boolean;
5664
+ /**
5665
+ *
5666
+ * @type {string}
5667
+ * @memberof DoctorAffiliationItemModel
5668
+ */
5669
+ 'photo'?: string | null;
5670
+ /**
5671
+ *
5672
+ * @type {string}
5673
+ * @memberof DoctorAffiliationItemModel
5674
+ */
5675
+ 'photoThumbnail'?: string | null;
5676
+ /**
5677
+ *
5678
+ * @type {boolean}
5679
+ * @memberof DoctorAffiliationItemModel
5680
+ */
5681
+ 'consultationEnabled'?: boolean | null;
5682
+ /**
5683
+ *
5684
+ * @type {number}
5685
+ * @memberof DoctorAffiliationItemModel
5686
+ */
5687
+ 'consultationFee'?: number | null;
5688
+ /**
5689
+ *
5690
+ * @type {number}
5691
+ * @memberof DoctorAffiliationItemModel
5692
+ */
5693
+ 'order'?: number;
5502
5694
  }
5503
5695
  /**
5504
5696
  *
@@ -5506,6 +5698,12 @@ export interface DoctorAffiliationItemModel {
5506
5698
  * @interface DoctorAffiliationModel
5507
5699
  */
5508
5700
  export interface DoctorAffiliationModel {
5701
+ /**
5702
+ *
5703
+ * @type {string}
5704
+ * @memberof DoctorAffiliationModel
5705
+ */
5706
+ 'id'?: string;
5509
5707
  /**
5510
5708
  *
5511
5709
  * @type {string}
@@ -5524,6 +5722,108 @@ export interface DoctorAffiliationModel {
5524
5722
  * @memberof DoctorAffiliationModel
5525
5723
  */
5526
5724
  'hospitalSlug'?: string | null;
5725
+ /**
5726
+ *
5727
+ * @type {string}
5728
+ * @memberof DoctorAffiliationModel
5729
+ */
5730
+ 'doctorId'?: string;
5731
+ /**
5732
+ *
5733
+ * @type {string}
5734
+ * @memberof DoctorAffiliationModel
5735
+ */
5736
+ 'languageCode'?: string | null;
5737
+ /**
5738
+ *
5739
+ * @type {string}
5740
+ * @memberof DoctorAffiliationModel
5741
+ */
5742
+ 'name'?: string | null;
5743
+ /**
5744
+ *
5745
+ * @type {string}
5746
+ * @memberof DoctorAffiliationModel
5747
+ */
5748
+ 'slug'?: string | null;
5749
+ /**
5750
+ *
5751
+ * @type {boolean}
5752
+ * @memberof DoctorAffiliationModel
5753
+ */
5754
+ 'confirmed'?: boolean;
5755
+ /**
5756
+ *
5757
+ * @type {string}
5758
+ * @memberof DoctorAffiliationModel
5759
+ */
5760
+ 'photo'?: string | null;
5761
+ /**
5762
+ *
5763
+ * @type {string}
5764
+ * @memberof DoctorAffiliationModel
5765
+ */
5766
+ 'photoThumbnail'?: string | null;
5767
+ /**
5768
+ *
5769
+ * @type {boolean}
5770
+ * @memberof DoctorAffiliationModel
5771
+ */
5772
+ 'consultationEnabled'?: boolean | null;
5773
+ /**
5774
+ *
5775
+ * @type {number}
5776
+ * @memberof DoctorAffiliationModel
5777
+ */
5778
+ 'consultationFee'?: number | null;
5779
+ /**
5780
+ *
5781
+ * @type {number}
5782
+ * @memberof DoctorAffiliationModel
5783
+ */
5784
+ 'order'?: number;
5785
+ /**
5786
+ *
5787
+ * @type {string}
5788
+ * @memberof DoctorAffiliationModel
5789
+ */
5790
+ 'description'?: string | null;
5791
+ /**
5792
+ *
5793
+ * @type {string}
5794
+ * @memberof DoctorAffiliationModel
5795
+ */
5796
+ 'overview'?: string | null;
5797
+ /**
5798
+ *
5799
+ * @type {string}
5800
+ * @memberof DoctorAffiliationModel
5801
+ */
5802
+ 'content'?: string | null;
5803
+ /**
5804
+ *
5805
+ * @type {string}
5806
+ * @memberof DoctorAffiliationModel
5807
+ */
5808
+ 'background'?: string | null;
5809
+ /**
5810
+ *
5811
+ * @type {string}
5812
+ * @memberof DoctorAffiliationModel
5813
+ */
5814
+ 'backgroundThumbnail'?: string | null;
5815
+ /**
5816
+ *
5817
+ * @type {string}
5818
+ * @memberof DoctorAffiliationModel
5819
+ */
5820
+ 'customStyle'?: string | null;
5821
+ /**
5822
+ *
5823
+ * @type {Array<MediaModel>}
5824
+ * @memberof DoctorAffiliationModel
5825
+ */
5826
+ 'medias'?: Array<MediaModel> | null;
5527
5827
  }
5528
5828
  /**
5529
5829
  *
@@ -5868,139 +6168,6 @@ export interface DoctorItemModel {
5868
6168
  * @memberof DoctorItemModel
5869
6169
  */
5870
6170
  'auditableEntity'?: AuditableEntity;
5871
- /**
5872
- *
5873
- * @type {string}
5874
- * @memberof DoctorItemModel
5875
- */
5876
- 'userType'?: string | null;
5877
- /**
5878
- *
5879
- * @type {Array<UserLanguageModel>}
5880
- * @memberof DoctorItemModel
5881
- */
5882
- 'languages'?: Array<UserLanguageModel> | null;
5883
- /**
5884
- *
5885
- * @type {Array<UserLocationModel>}
5886
- * @memberof DoctorItemModel
5887
- */
5888
- 'locations'?: Array<UserLocationModel> | null;
5889
- /**
5890
- *
5891
- * @type {string}
5892
- * @memberof DoctorItemModel
5893
- */
5894
- 'slug'?: string | null;
5895
- /**
5896
- *
5897
- * @type {string}
5898
- * @memberof DoctorItemModel
5899
- */
5900
- 'hospitalId'?: string | null;
5901
- /**
5902
- *
5903
- * @type {string}
5904
- * @memberof DoctorItemModel
5905
- */
5906
- 'hospitalName'?: string | null;
5907
- /**
5908
- *
5909
- * @type {Date}
5910
- * @memberof DoctorItemModel
5911
- */
5912
- 'startPracticeDate'?: Date | null;
5913
- /**
5914
- *
5915
- * @type {string}
5916
- * @memberof DoctorItemModel
5917
- */
5918
- 'overview'?: string | null;
5919
- /**
5920
- *
5921
- * @type {boolean}
5922
- * @memberof DoctorItemModel
5923
- */
5924
- 'consultationEnabled'?: boolean | null;
5925
- /**
5926
- *
5927
- * @type {number}
5928
- * @memberof DoctorItemModel
5929
- */
5930
- 'consultationFee'?: number | null;
5931
- /**
5932
- *
5933
- * @type {Array<LocalizedUrlModel>}
5934
- * @memberof DoctorItemModel
5935
- */
5936
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5937
- /**
5938
- *
5939
- * @type {boolean}
5940
- * @memberof DoctorItemModel
5941
- */
5942
- 'confirmed'?: boolean;
5943
- }
5944
- /**
5945
- *
5946
- * @export
5947
- * @interface DoctorItemSimpleModel
5948
- */
5949
- export interface DoctorItemSimpleModel {
5950
- /**
5951
- *
5952
- * @type {string}
5953
- * @memberof DoctorItemSimpleModel
5954
- */
5955
- 'id'?: string;
5956
- /**
5957
- *
5958
- * @type {string}
5959
- * @memberof DoctorItemSimpleModel
5960
- */
5961
- 'firstName'?: string | null;
5962
- /**
5963
- *
5964
- * @type {string}
5965
- * @memberof DoctorItemSimpleModel
5966
- */
5967
- 'lastName'?: string | null;
5968
- /**
5969
- *
5970
- * @type {string}
5971
- * @memberof DoctorItemSimpleModel
5972
- */
5973
- 'fullname'?: string | null;
5974
- /**
5975
- *
5976
- * @type {string}
5977
- * @memberof DoctorItemSimpleModel
5978
- */
5979
- 'slug'?: string | null;
5980
- /**
5981
- *
5982
- * @type {string}
5983
- * @memberof DoctorItemSimpleModel
5984
- */
5985
- 'hospitalId'?: string | null;
5986
- /**
5987
- *
5988
- * @type {string}
5989
- * @memberof DoctorItemSimpleModel
5990
- */
5991
- 'hospitalName'?: string | null;
5992
- /**
5993
- *
5994
- * @type {string}
5995
- * @memberof DoctorItemSimpleModel
5996
- */
5997
- 'overview'?: string | null;
5998
- /**
5999
- *
6000
- * @type {boolean}
6001
- * @memberof DoctorItemSimpleModel
6002
- */
6003
- 'confirmed'?: boolean;
6004
6171
  }
6005
6172
  /**
6006
6173
  *
@@ -6179,66 +6346,12 @@ export interface DoctorModel {
6179
6346
  * @memberof DoctorModel
6180
6347
  */
6181
6348
  'locations'?: Array<UserLocationModel> | null;
6182
- /**
6183
- *
6184
- * @type {string}
6185
- * @memberof DoctorModel
6186
- */
6187
- 'slug'?: string | null;
6188
- /**
6189
- *
6190
- * @type {string}
6191
- * @memberof DoctorModel
6192
- */
6193
- 'hospitalId'?: string | null;
6194
- /**
6195
- *
6196
- * @type {string}
6197
- * @memberof DoctorModel
6198
- */
6199
- 'hospitalName'?: string | null;
6200
6349
  /**
6201
6350
  *
6202
6351
  * @type {Date}
6203
6352
  * @memberof DoctorModel
6204
6353
  */
6205
6354
  'startPracticeDate'?: Date | null;
6206
- /**
6207
- *
6208
- * @type {string}
6209
- * @memberof DoctorModel
6210
- */
6211
- 'overview'?: string | null;
6212
- /**
6213
- *
6214
- * @type {boolean}
6215
- * @memberof DoctorModel
6216
- */
6217
- 'consultationEnabled'?: boolean | null;
6218
- /**
6219
- *
6220
- * @type {number}
6221
- * @memberof DoctorModel
6222
- */
6223
- 'consultationFee'?: number | null;
6224
- /**
6225
- *
6226
- * @type {Array<LocalizedUrlModel>}
6227
- * @memberof DoctorModel
6228
- */
6229
- 'localizedUrls'?: Array<LocalizedUrlModel> | null;
6230
- /**
6231
- *
6232
- * @type {boolean}
6233
- * @memberof DoctorModel
6234
- */
6235
- 'confirmed'?: boolean;
6236
- /**
6237
- *
6238
- * @type {string}
6239
- * @memberof DoctorModel
6240
- */
6241
- 'languageCode'?: string | null;
6242
6355
  }
6243
6356
  /**
6244
6357
  *
@@ -6357,6 +6470,43 @@ export interface DoctorPortfoliosModel {
6357
6470
  */
6358
6471
  'metaData'?: PagedListMetaData;
6359
6472
  }
6473
+ /**
6474
+ *
6475
+ * @export
6476
+ * @interface DoctorSimpleItemModel
6477
+ */
6478
+ export interface DoctorSimpleItemModel {
6479
+ /**
6480
+ *
6481
+ * @type {string}
6482
+ * @memberof DoctorSimpleItemModel
6483
+ */
6484
+ 'id'?: string;
6485
+ /**
6486
+ *
6487
+ * @type {string}
6488
+ * @memberof DoctorSimpleItemModel
6489
+ */
6490
+ 'userName'?: string | null;
6491
+ /**
6492
+ *
6493
+ * @type {string}
6494
+ * @memberof DoctorSimpleItemModel
6495
+ */
6496
+ 'firstName'?: string | null;
6497
+ /**
6498
+ *
6499
+ * @type {string}
6500
+ * @memberof DoctorSimpleItemModel
6501
+ */
6502
+ 'lastName'?: string | null;
6503
+ /**
6504
+ *
6505
+ * @type {string}
6506
+ * @memberof DoctorSimpleItemModel
6507
+ */
6508
+ 'fullname'?: string | null;
6509
+ }
6360
6510
  /**
6361
6511
  *
6362
6512
  * @export
@@ -6382,6 +6532,12 @@ export interface DoctorSpecialtiesModel {
6382
6532
  * @interface DoctorSpecialtyModel
6383
6533
  */
6384
6534
  export interface DoctorSpecialtyModel {
6535
+ /**
6536
+ *
6537
+ * @type {string}
6538
+ * @memberof DoctorSpecialtyModel
6539
+ */
6540
+ 'languageCode'?: string | null;
6385
6541
  /**
6386
6542
  *
6387
6543
  * @type {string}
@@ -6418,18 +6574,6 @@ export interface DoctorSpecialtyModel {
6418
6574
  * @memberof DoctorSpecialtyModel
6419
6575
  */
6420
6576
  'order'?: number;
6421
- /**
6422
- *
6423
- * @type {string}
6424
- * @memberof DoctorSpecialtyModel
6425
- */
6426
- 'doctorId'?: string;
6427
- /**
6428
- *
6429
- * @type {string}
6430
- * @memberof DoctorSpecialtyModel
6431
- */
6432
- 'doctorName'?: string | null;
6433
6577
  }
6434
6578
  /**
6435
6579
  *
@@ -6458,10 +6602,10 @@ export interface DoctorsModel {
6458
6602
  export interface DoctorsSimpleModel {
6459
6603
  /**
6460
6604
  *
6461
- * @type {Array<DoctorItemSimpleModel>}
6605
+ * @type {Array<DoctorSimpleItemModel>}
6462
6606
  * @memberof DoctorsSimpleModel
6463
6607
  */
6464
- 'items'?: Array<DoctorItemSimpleModel> | null;
6608
+ 'items'?: Array<DoctorSimpleItemModel> | null;
6465
6609
  /**
6466
6610
  *
6467
6611
  * @type {PagedListMetaData}
@@ -8455,6 +8599,12 @@ export interface LocationModel {
8455
8599
  * @interface ManagerAffiliationItemModel
8456
8600
  */
8457
8601
  export interface ManagerAffiliationItemModel {
8602
+ /**
8603
+ *
8604
+ * @type {string}
8605
+ * @memberof ManagerAffiliationItemModel
8606
+ */
8607
+ 'languageCode'?: string | null;
8458
8608
  /**
8459
8609
  *
8460
8610
  * @type {string}
@@ -8480,6 +8630,12 @@ export interface ManagerAffiliationItemModel {
8480
8630
  * @interface ManagerAffiliationModel
8481
8631
  */
8482
8632
  export interface ManagerAffiliationModel {
8633
+ /**
8634
+ *
8635
+ * @type {string}
8636
+ * @memberof ManagerAffiliationModel
8637
+ */
8638
+ 'languageCode'?: string | null;
8483
8639
  /**
8484
8640
  *
8485
8641
  * @type {string}
@@ -8608,36 +8764,6 @@ export interface ManagerItemModel {
8608
8764
  * @memberof ManagerItemModel
8609
8765
  */
8610
8766
  'auditableEntity'?: AuditableEntity;
8611
- /**
8612
- *
8613
- * @type {string}
8614
- * @memberof ManagerItemModel
8615
- */
8616
- 'userType'?: string | null;
8617
- /**
8618
- *
8619
- * @type {Array<UserLanguageModel>}
8620
- * @memberof ManagerItemModel
8621
- */
8622
- 'languages'?: Array<UserLanguageModel> | null;
8623
- /**
8624
- *
8625
- * @type {Array<UserLocationModel>}
8626
- * @memberof ManagerItemModel
8627
- */
8628
- 'locations'?: Array<UserLocationModel> | null;
8629
- /**
8630
- *
8631
- * @type {string}
8632
- * @memberof ManagerItemModel
8633
- */
8634
- 'hospitalId'?: string | null;
8635
- /**
8636
- *
8637
- * @type {string}
8638
- * @memberof ManagerItemModel
8639
- */
8640
- 'hospitalName'?: string | null;
8641
8767
  /**
8642
8768
  *
8643
8769
  * @type {number}
@@ -8753,18 +8879,6 @@ export interface ManagerModel {
8753
8879
  * @memberof ManagerModel
8754
8880
  */
8755
8881
  'locations'?: Array<UserLocationModel> | null;
8756
- /**
8757
- *
8758
- * @type {string}
8759
- * @memberof ManagerModel
8760
- */
8761
- 'hospitalId'?: string | null;
8762
- /**
8763
- *
8764
- * @type {string}
8765
- * @memberof ManagerModel
8766
- */
8767
- 'hospitalName'?: string | null;
8768
8882
  /**
8769
8883
  *
8770
8884
  * @type {number}
@@ -10047,6 +10161,12 @@ export interface ServiceReviewItemModel {
10047
10161
  * @memberof ServiceReviewItemModel
10048
10162
  */
10049
10163
  'id'?: string;
10164
+ /**
10165
+ *
10166
+ * @type {string}
10167
+ * @memberof ServiceReviewItemModel
10168
+ */
10169
+ 'languageCode'?: string | null;
10050
10170
  /**
10051
10171
  *
10052
10172
  * @type {string}
@@ -10059,6 +10179,12 @@ export interface ServiceReviewItemModel {
10059
10179
  * @memberof ServiceReviewItemModel
10060
10180
  */
10061
10181
  'serviceName'?: string | null;
10182
+ /**
10183
+ *
10184
+ * @type {string}
10185
+ * @memberof ServiceReviewItemModel
10186
+ */
10187
+ 'serviceSlug'?: string | null;
10062
10188
  /**
10063
10189
  *
10064
10190
  * @type {string}
@@ -10089,12 +10215,6 @@ export interface ServiceReviewItemModel {
10089
10215
  * @memberof ServiceReviewItemModel
10090
10216
  */
10091
10217
  'reviewType'?: ReviewType;
10092
- /**
10093
- *
10094
- * @type {string}
10095
- * @memberof ServiceReviewItemModel
10096
- */
10097
- 'body'?: string | null;
10098
10218
  /**
10099
10219
  *
10100
10220
  * @type {Array<MediaModel>}
@@ -10120,6 +10240,12 @@ export interface ServiceReviewModel {
10120
10240
  * @memberof ServiceReviewModel
10121
10241
  */
10122
10242
  'id'?: string;
10243
+ /**
10244
+ *
10245
+ * @type {string}
10246
+ * @memberof ServiceReviewModel
10247
+ */
10248
+ 'languageCode'?: string | null;
10123
10249
  /**
10124
10250
  *
10125
10251
  * @type {string}
@@ -10132,6 +10258,12 @@ export interface ServiceReviewModel {
10132
10258
  * @memberof ServiceReviewModel
10133
10259
  */
10134
10260
  'serviceName'?: string | null;
10261
+ /**
10262
+ *
10263
+ * @type {string}
10264
+ * @memberof ServiceReviewModel
10265
+ */
10266
+ 'serviceSlug'?: string | null;
10135
10267
  /**
10136
10268
  *
10137
10269
  * @type {string}
@@ -10162,12 +10294,6 @@ export interface ServiceReviewModel {
10162
10294
  * @memberof ServiceReviewModel
10163
10295
  */
10164
10296
  'reviewType'?: ReviewType;
10165
- /**
10166
- *
10167
- * @type {string}
10168
- * @memberof ServiceReviewModel
10169
- */
10170
- 'body'?: string | null;
10171
10297
  /**
10172
10298
  *
10173
10299
  * @type {Array<MediaModel>}
@@ -10180,6 +10306,12 @@ export interface ServiceReviewModel {
10180
10306
  * @memberof ServiceReviewModel
10181
10307
  */
10182
10308
  'auditableEntity'?: AuditableEntity;
10309
+ /**
10310
+ *
10311
+ * @type {string}
10312
+ * @memberof ServiceReviewModel
10313
+ */
10314
+ 'body'?: string | null;
10183
10315
  }
10184
10316
  /**
10185
10317
  *
@@ -10200,6 +10332,31 @@ export interface ServiceReviewsModel {
10200
10332
  */
10201
10333
  'metaData'?: PagedListMetaData;
10202
10334
  }
10335
+ /**
10336
+ *
10337
+ * @export
10338
+ * @interface SnsHandle
10339
+ */
10340
+ export interface SnsHandle {
10341
+ /**
10342
+ *
10343
+ * @type {string}
10344
+ * @memberof SnsHandle
10345
+ */
10346
+ 'id'?: string;
10347
+ /**
10348
+ *
10349
+ * @type {SnsType}
10350
+ * @memberof SnsHandle
10351
+ */
10352
+ 'snsType'?: SnsType;
10353
+ /**
10354
+ *
10355
+ * @type {string}
10356
+ * @memberof SnsHandle
10357
+ */
10358
+ 'handle'?: string | null;
10359
+ }
10203
10360
  /**
10204
10361
  *
10205
10362
  * @export
@@ -11677,6 +11834,103 @@ export interface UpdateDealsSearchIndexCommand {
11677
11834
  */
11678
11835
  'reCreate'?: boolean | null;
11679
11836
  }
11837
+ /**
11838
+ *
11839
+ * @export
11840
+ * @interface UpdateDoctorAffiliationCommand
11841
+ */
11842
+ export interface UpdateDoctorAffiliationCommand {
11843
+ /**
11844
+ *
11845
+ * @type {string}
11846
+ * @memberof UpdateDoctorAffiliationCommand
11847
+ */
11848
+ 'languageCode'?: string | null;
11849
+ /**
11850
+ *
11851
+ * @type {string}
11852
+ * @memberof UpdateDoctorAffiliationCommand
11853
+ */
11854
+ 'name'?: string | null;
11855
+ /**
11856
+ *
11857
+ * @type {string}
11858
+ * @memberof UpdateDoctorAffiliationCommand
11859
+ */
11860
+ 'slug'?: string | null;
11861
+ /**
11862
+ *
11863
+ * @type {string}
11864
+ * @memberof UpdateDoctorAffiliationCommand
11865
+ */
11866
+ 'description'?: string | null;
11867
+ /**
11868
+ *
11869
+ * @type {string}
11870
+ * @memberof UpdateDoctorAffiliationCommand
11871
+ */
11872
+ 'content'?: string | null;
11873
+ /**
11874
+ *
11875
+ * @type {string}
11876
+ * @memberof UpdateDoctorAffiliationCommand
11877
+ */
11878
+ 'customStyle'?: string | null;
11879
+ /**
11880
+ *
11881
+ * @type {number}
11882
+ * @memberof UpdateDoctorAffiliationCommand
11883
+ */
11884
+ 'order'?: number;
11885
+ /**
11886
+ *
11887
+ * @type {string}
11888
+ * @memberof UpdateDoctorAffiliationCommand
11889
+ */
11890
+ 'photo'?: string | null;
11891
+ /**
11892
+ *
11893
+ * @type {string}
11894
+ * @memberof UpdateDoctorAffiliationCommand
11895
+ */
11896
+ 'photoThumbnail'?: string | null;
11897
+ /**
11898
+ *
11899
+ * @type {string}
11900
+ * @memberof UpdateDoctorAffiliationCommand
11901
+ */
11902
+ 'background'?: string | null;
11903
+ /**
11904
+ *
11905
+ * @type {string}
11906
+ * @memberof UpdateDoctorAffiliationCommand
11907
+ */
11908
+ 'backgroundThumbnail'?: string | null;
11909
+ /**
11910
+ *
11911
+ * @type {boolean}
11912
+ * @memberof UpdateDoctorAffiliationCommand
11913
+ */
11914
+ 'consultationEnabled'?: boolean | null;
11915
+ /**
11916
+ *
11917
+ * @type {number}
11918
+ * @memberof UpdateDoctorAffiliationCommand
11919
+ */
11920
+ 'consultationFee'?: number | null;
11921
+ /**
11922
+ *
11923
+ * @type {boolean}
11924
+ * @memberof UpdateDoctorAffiliationCommand
11925
+ */
11926
+ 'confirmed'?: boolean;
11927
+ /**
11928
+ *
11929
+ * @type {Array<MediaModel>}
11930
+ * @memberof UpdateDoctorAffiliationCommand
11931
+ */
11932
+ 'medias'?: Array<MediaModel> | null;
11933
+ }
11680
11934
  /**
11681
11935
  *
11682
11936
  * @export
@@ -13364,16 +13618,17 @@ export const AboutUsApiAxiosParamCreator = function (configuration?: Configurati
13364
13618
  * @param {string} [hospitalName]
13365
13619
  * @param {string} [hospitalSlug]
13366
13620
  * @param {string} [name]
13367
- * @param {string} [languageCode]
13368
13621
  * @param {boolean} [returnDefaultValue]
13369
13622
  * @param {boolean} [confirmed]
13623
+ * @param {string} [languageCode]
13624
+ * @param {boolean} [showHidden]
13370
13625
  * @param {number} [page]
13371
13626
  * @param {number} [limit]
13372
13627
  * @param {Date} [lastRetrieved]
13373
13628
  * @param {*} [options] Override http request option.
13374
13629
  * @throws {RequiredError}
13375
13630
  */
13376
- apiV1AboutusGet: async (hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
13631
+ apiV1AboutusGet: async (hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, returnDefaultValue?: boolean, confirmed?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
13377
13632
  const localVarPath = `/api/v1/aboutus`;
13378
13633
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
13379
13634
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -13406,10 +13661,6 @@ export const AboutUsApiAxiosParamCreator = function (configuration?: Configurati
13406
13661
  localVarQueryParameter['Name'] = name;
13407
13662
  }
13408
13663
 
13409
- if (languageCode !== undefined) {
13410
- localVarQueryParameter['LanguageCode'] = languageCode;
13411
- }
13412
-
13413
13664
  if (returnDefaultValue !== undefined) {
13414
13665
  localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
13415
13666
  }
@@ -13418,6 +13669,14 @@ export const AboutUsApiAxiosParamCreator = function (configuration?: Configurati
13418
13669
  localVarQueryParameter['Confirmed'] = confirmed;
13419
13670
  }
13420
13671
 
13672
+ if (languageCode !== undefined) {
13673
+ localVarQueryParameter['LanguageCode'] = languageCode;
13674
+ }
13675
+
13676
+ if (showHidden !== undefined) {
13677
+ localVarQueryParameter['ShowHidden'] = showHidden;
13678
+ }
13679
+
13421
13680
  if (page !== undefined) {
13422
13681
  localVarQueryParameter['page'] = page;
13423
13682
  }
@@ -13673,17 +13932,18 @@ export const AboutUsApiFp = function(configuration?: Configuration) {
13673
13932
  * @param {string} [hospitalName]
13674
13933
  * @param {string} [hospitalSlug]
13675
13934
  * @param {string} [name]
13676
- * @param {string} [languageCode]
13677
13935
  * @param {boolean} [returnDefaultValue]
13678
13936
  * @param {boolean} [confirmed]
13937
+ * @param {string} [languageCode]
13938
+ * @param {boolean} [showHidden]
13679
13939
  * @param {number} [page]
13680
13940
  * @param {number} [limit]
13681
13941
  * @param {Date} [lastRetrieved]
13682
13942
  * @param {*} [options] Override http request option.
13683
13943
  * @throws {RequiredError}
13684
13944
  */
13685
- async apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AboutUsPagesModel>> {
13686
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, languageCode, returnDefaultValue, confirmed, page, limit, lastRetrieved, options);
13945
+ async apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, returnDefaultValue?: boolean, confirmed?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AboutUsPagesModel>> {
13946
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options);
13687
13947
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
13688
13948
  },
13689
13949
  /**
@@ -13762,17 +14022,18 @@ export const AboutUsApiFactory = function (configuration?: Configuration, basePa
13762
14022
  * @param {string} [hospitalName]
13763
14023
  * @param {string} [hospitalSlug]
13764
14024
  * @param {string} [name]
13765
- * @param {string} [languageCode]
13766
14025
  * @param {boolean} [returnDefaultValue]
13767
14026
  * @param {boolean} [confirmed]
14027
+ * @param {string} [languageCode]
14028
+ * @param {boolean} [showHidden]
13768
14029
  * @param {number} [page]
13769
14030
  * @param {number} [limit]
13770
14031
  * @param {Date} [lastRetrieved]
13771
14032
  * @param {*} [options] Override http request option.
13772
14033
  * @throws {RequiredError}
13773
14034
  */
13774
- apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AboutUsPagesModel> {
13775
- return localVarFp.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, languageCode, returnDefaultValue, confirmed, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
14035
+ apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, returnDefaultValue?: boolean, confirmed?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AboutUsPagesModel> {
14036
+ return localVarFp.apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
13776
14037
  },
13777
14038
  /**
13778
14039
  *
@@ -13845,9 +14106,10 @@ export class AboutUsApi extends BaseAPI {
13845
14106
  * @param {string} [hospitalName]
13846
14107
  * @param {string} [hospitalSlug]
13847
14108
  * @param {string} [name]
13848
- * @param {string} [languageCode]
13849
14109
  * @param {boolean} [returnDefaultValue]
13850
14110
  * @param {boolean} [confirmed]
14111
+ * @param {string} [languageCode]
14112
+ * @param {boolean} [showHidden]
13851
14113
  * @param {number} [page]
13852
14114
  * @param {number} [limit]
13853
14115
  * @param {Date} [lastRetrieved]
@@ -13855,8 +14117,8 @@ export class AboutUsApi extends BaseAPI {
13855
14117
  * @throws {RequiredError}
13856
14118
  * @memberof AboutUsApi
13857
14119
  */
13858
- public apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
13859
- return AboutUsApiFp(this.configuration).apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, languageCode, returnDefaultValue, confirmed, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
14120
+ public apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, name?: string, returnDefaultValue?: boolean, confirmed?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
14121
+ return AboutUsApiFp(this.configuration).apiV1AboutusGet(hospitalId, hospitalName, hospitalSlug, name, returnDefaultValue, confirmed, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
13860
14122
  }
13861
14123
 
13862
14124
  /**
@@ -15442,14 +15704,13 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
15442
15704
  * @param {string} [contributorId]
15443
15705
  * @param {string} [languageCode]
15444
15706
  * @param {boolean} [showHidden]
15445
- * @param {boolean} [returnDefaultValue]
15446
15707
  * @param {number} [page]
15447
15708
  * @param {number} [limit]
15448
15709
  * @param {Date} [lastRetrieved]
15449
15710
  * @param {*} [options] Override http request option.
15450
15711
  * @throws {RequiredError}
15451
15712
  */
15452
- apiV1ArticlesGet: async (id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
15713
+ apiV1ArticlesGet: async (id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
15453
15714
  const localVarPath = `/api/v1/articles`;
15454
15715
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
15455
15716
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -15530,10 +15791,6 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
15530
15791
  localVarQueryParameter['ShowHidden'] = showHidden;
15531
15792
  }
15532
15793
 
15533
- if (returnDefaultValue !== undefined) {
15534
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
15535
- }
15536
-
15537
15794
  if (page !== undefined) {
15538
15795
  localVarQueryParameter['page'] = page;
15539
15796
  }
@@ -15961,15 +16218,14 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
15961
16218
  * @param {string} [contributorId]
15962
16219
  * @param {string} [languageCode]
15963
16220
  * @param {boolean} [showHidden]
15964
- * @param {boolean} [returnDefaultValue]
15965
16221
  * @param {number} [page]
15966
16222
  * @param {number} [limit]
15967
16223
  * @param {Date} [lastRetrieved]
15968
16224
  * @param {*} [options] Override http request option.
15969
16225
  * @throws {RequiredError}
15970
16226
  */
15971
- async apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticlesModel>> {
15972
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options);
16227
+ async apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticlesModel>> {
16228
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options);
15973
16229
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
15974
16230
  },
15975
16231
  /**
@@ -16290,15 +16546,14 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
16290
16546
  * @param {string} [contributorId]
16291
16547
  * @param {string} [languageCode]
16292
16548
  * @param {boolean} [showHidden]
16293
- * @param {boolean} [returnDefaultValue]
16294
16549
  * @param {number} [page]
16295
16550
  * @param {number} [limit]
16296
16551
  * @param {Date} [lastRetrieved]
16297
16552
  * @param {*} [options] Override http request option.
16298
16553
  * @throws {RequiredError}
16299
16554
  */
16300
- 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?: any): AxiosPromise<ArticlesModel> {
16301
- return localVarFp.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
16555
+ apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ArticlesModel> {
16556
+ return localVarFp.apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
16302
16557
  },
16303
16558
  /**
16304
16559
  *
@@ -16660,7 +16915,6 @@ export class ArticlesApi extends BaseAPI {
16660
16915
  * @param {string} [contributorId]
16661
16916
  * @param {string} [languageCode]
16662
16917
  * @param {boolean} [showHidden]
16663
- * @param {boolean} [returnDefaultValue]
16664
16918
  * @param {number} [page]
16665
16919
  * @param {number} [limit]
16666
16920
  * @param {Date} [lastRetrieved]
@@ -16668,8 +16922,8 @@ export class ArticlesApi extends BaseAPI {
16668
16922
  * @throws {RequiredError}
16669
16923
  * @memberof ArticlesApi
16670
16924
  */
16671
- public apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
16672
- return ArticlesApiFp(this.configuration).apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
16925
+ public apiV1ArticlesGet(id?: string, name?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptArticleId?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
16926
+ return ArticlesApiFp(this.configuration).apiV1ArticlesGet(id, name, description, status, marketingType, userId, userName, hospitalId, hospitalName, countryId, tag, exceptArticleId, exceptHospitalId, contributorId, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
16673
16927
  }
16674
16928
 
16675
16929
  /**
@@ -16828,10 +17082,11 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
16828
17082
  *
16829
17083
  * @summary Get booking.
16830
17084
  * @param {string} bookingId
17085
+ * @param {string} [languageCode]
16831
17086
  * @param {*} [options] Override http request option.
16832
17087
  * @throws {RequiredError}
16833
17088
  */
16834
- apiV1BookingsBookingIdGet: async (bookingId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
17089
+ apiV1BookingsBookingIdGet: async (bookingId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16835
17090
  // verify required parameter 'bookingId' is not null or undefined
16836
17091
  assertParamExists('apiV1BookingsBookingIdGet', 'bookingId', bookingId)
16837
17092
  const localVarPath = `/api/v1/bookings/{bookingId}`
@@ -16851,6 +17106,10 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
16851
17106
  // oauth required
16852
17107
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
16853
17108
 
17109
+ if (languageCode !== undefined) {
17110
+ localVarQueryParameter['languageCode'] = languageCode;
17111
+ }
17112
+
16854
17113
 
16855
17114
 
16856
17115
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -16945,7 +17204,12 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
16945
17204
  /**
16946
17205
  *
16947
17206
  * @summary Get all bookings.
16948
- * @param {string} [searchString]
17207
+ * @param {string} [userId]
17208
+ * @param {string} [userName]
17209
+ * @param {string} [hospitalId]
17210
+ * @param {string} [hospitalName]
17211
+ * @param {string} [dealId]
17212
+ * @param {string} [dealName]
16949
17213
  * @param {boolean} [isOpen]
16950
17214
  * @param {boolean} [isCompleted]
16951
17215
  * @param {BookingStatus} [status]
@@ -16954,13 +17218,15 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
16954
17218
  * @param {SortingOrder} [sortConfirmedDateStart]
16955
17219
  * @param {boolean} [isExternal]
16956
17220
  * @param {boolean} [paymentEnabled]
17221
+ * @param {string} [languageCode]
17222
+ * @param {boolean} [showHidden]
16957
17223
  * @param {number} [page]
16958
17224
  * @param {number} [limit]
16959
17225
  * @param {Date} [lastRetrieved]
16960
17226
  * @param {*} [options] Override http request option.
16961
17227
  * @throws {RequiredError}
16962
17228
  */
16963
- apiV1BookingsGet: async (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<RequestArgs> => {
17229
+ apiV1BookingsGet: async (userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
16964
17230
  const localVarPath = `/api/v1/bookings`;
16965
17231
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
16966
17232
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -16977,8 +17243,28 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
16977
17243
  // oauth required
16978
17244
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
16979
17245
 
16980
- if (searchString !== undefined) {
16981
- localVarQueryParameter['SearchString'] = searchString;
17246
+ if (userId !== undefined) {
17247
+ localVarQueryParameter['UserId'] = userId;
17248
+ }
17249
+
17250
+ if (userName !== undefined) {
17251
+ localVarQueryParameter['UserName'] = userName;
17252
+ }
17253
+
17254
+ if (hospitalId !== undefined) {
17255
+ localVarQueryParameter['HospitalId'] = hospitalId;
17256
+ }
17257
+
17258
+ if (hospitalName !== undefined) {
17259
+ localVarQueryParameter['HospitalName'] = hospitalName;
17260
+ }
17261
+
17262
+ if (dealId !== undefined) {
17263
+ localVarQueryParameter['DealId'] = dealId;
17264
+ }
17265
+
17266
+ if (dealName !== undefined) {
17267
+ localVarQueryParameter['DealName'] = dealName;
16982
17268
  }
16983
17269
 
16984
17270
  if (isOpen !== undefined) {
@@ -17013,6 +17299,14 @@ export const BookingsApiAxiosParamCreator = function (configuration?: Configurat
17013
17299
  localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
17014
17300
  }
17015
17301
 
17302
+ if (languageCode !== undefined) {
17303
+ localVarQueryParameter['LanguageCode'] = languageCode;
17304
+ }
17305
+
17306
+ if (showHidden !== undefined) {
17307
+ localVarQueryParameter['ShowHidden'] = showHidden;
17308
+ }
17309
+
17016
17310
  if (page !== undefined) {
17017
17311
  localVarQueryParameter['page'] = page;
17018
17312
  }
@@ -17086,11 +17380,12 @@ export const BookingsApiFp = function(configuration?: Configuration) {
17086
17380
  *
17087
17381
  * @summary Get booking.
17088
17382
  * @param {string} bookingId
17383
+ * @param {string} [languageCode]
17089
17384
  * @param {*} [options] Override http request option.
17090
17385
  * @throws {RequiredError}
17091
17386
  */
17092
- async apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingModel>> {
17093
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1BookingsBookingIdGet(bookingId, options);
17387
+ async apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingModel>> {
17388
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1BookingsBookingIdGet(bookingId, languageCode, options);
17094
17389
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
17095
17390
  },
17096
17391
  /**
@@ -17119,7 +17414,12 @@ export const BookingsApiFp = function(configuration?: Configuration) {
17119
17414
  /**
17120
17415
  *
17121
17416
  * @summary Get all bookings.
17122
- * @param {string} [searchString]
17417
+ * @param {string} [userId]
17418
+ * @param {string} [userName]
17419
+ * @param {string} [hospitalId]
17420
+ * @param {string} [hospitalName]
17421
+ * @param {string} [dealId]
17422
+ * @param {string} [dealName]
17123
17423
  * @param {boolean} [isOpen]
17124
17424
  * @param {boolean} [isCompleted]
17125
17425
  * @param {BookingStatus} [status]
@@ -17128,14 +17428,16 @@ export const BookingsApiFp = function(configuration?: Configuration) {
17128
17428
  * @param {SortingOrder} [sortConfirmedDateStart]
17129
17429
  * @param {boolean} [isExternal]
17130
17430
  * @param {boolean} [paymentEnabled]
17431
+ * @param {string} [languageCode]
17432
+ * @param {boolean} [showHidden]
17131
17433
  * @param {number} [page]
17132
17434
  * @param {number} [limit]
17133
17435
  * @param {Date} [lastRetrieved]
17134
17436
  * @param {*} [options] Override http request option.
17135
17437
  * @throws {RequiredError}
17136
17438
  */
17137
- async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingsModel>> {
17138
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1BookingsGet(searchString, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, page, limit, lastRetrieved, options);
17439
+ async apiV1BookingsGet(userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BookingsModel>> {
17440
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1BookingsGet(userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options);
17139
17441
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
17140
17442
  },
17141
17443
  }
@@ -17183,11 +17485,12 @@ export const BookingsApiFactory = function (configuration?: Configuration, baseP
17183
17485
  *
17184
17486
  * @summary Get booking.
17185
17487
  * @param {string} bookingId
17488
+ * @param {string} [languageCode]
17186
17489
  * @param {*} [options] Override http request option.
17187
17490
  * @throws {RequiredError}
17188
17491
  */
17189
- apiV1BookingsBookingIdGet(bookingId: string, options?: any): AxiosPromise<BookingModel> {
17190
- return localVarFp.apiV1BookingsBookingIdGet(bookingId, options).then((request) => request(axios, basePath));
17492
+ apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: any): AxiosPromise<BookingModel> {
17493
+ return localVarFp.apiV1BookingsBookingIdGet(bookingId, languageCode, options).then((request) => request(axios, basePath));
17191
17494
  },
17192
17495
  /**
17193
17496
  *
@@ -17213,7 +17516,12 @@ export const BookingsApiFactory = function (configuration?: Configuration, baseP
17213
17516
  /**
17214
17517
  *
17215
17518
  * @summary Get all bookings.
17216
- * @param {string} [searchString]
17519
+ * @param {string} [userId]
17520
+ * @param {string} [userName]
17521
+ * @param {string} [hospitalId]
17522
+ * @param {string} [hospitalName]
17523
+ * @param {string} [dealId]
17524
+ * @param {string} [dealName]
17217
17525
  * @param {boolean} [isOpen]
17218
17526
  * @param {boolean} [isCompleted]
17219
17527
  * @param {BookingStatus} [status]
@@ -17222,14 +17530,16 @@ export const BookingsApiFactory = function (configuration?: Configuration, baseP
17222
17530
  * @param {SortingOrder} [sortConfirmedDateStart]
17223
17531
  * @param {boolean} [isExternal]
17224
17532
  * @param {boolean} [paymentEnabled]
17533
+ * @param {string} [languageCode]
17534
+ * @param {boolean} [showHidden]
17225
17535
  * @param {number} [page]
17226
17536
  * @param {number} [limit]
17227
17537
  * @param {Date} [lastRetrieved]
17228
17538
  * @param {*} [options] Override http request option.
17229
17539
  * @throws {RequiredError}
17230
17540
  */
17231
- 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?: any): AxiosPromise<BookingsModel> {
17232
- return localVarFp.apiV1BookingsGet(searchString, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
17541
+ apiV1BookingsGet(userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<BookingsModel> {
17542
+ return localVarFp.apiV1BookingsGet(userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
17233
17543
  },
17234
17544
  };
17235
17545
  };
@@ -17282,12 +17592,13 @@ export class BookingsApi extends BaseAPI {
17282
17592
  *
17283
17593
  * @summary Get booking.
17284
17594
  * @param {string} bookingId
17595
+ * @param {string} [languageCode]
17285
17596
  * @param {*} [options] Override http request option.
17286
17597
  * @throws {RequiredError}
17287
17598
  * @memberof BookingsApi
17288
17599
  */
17289
- public apiV1BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig) {
17290
- return BookingsApiFp(this.configuration).apiV1BookingsBookingIdGet(bookingId, options).then((request) => request(this.axios, this.basePath));
17600
+ public apiV1BookingsBookingIdGet(bookingId: string, languageCode?: string, options?: AxiosRequestConfig) {
17601
+ return BookingsApiFp(this.configuration).apiV1BookingsBookingIdGet(bookingId, languageCode, options).then((request) => request(this.axios, this.basePath));
17291
17602
  }
17292
17603
 
17293
17604
  /**
@@ -17318,7 +17629,12 @@ export class BookingsApi extends BaseAPI {
17318
17629
  /**
17319
17630
  *
17320
17631
  * @summary Get all bookings.
17321
- * @param {string} [searchString]
17632
+ * @param {string} [userId]
17633
+ * @param {string} [userName]
17634
+ * @param {string} [hospitalId]
17635
+ * @param {string} [hospitalName]
17636
+ * @param {string} [dealId]
17637
+ * @param {string} [dealName]
17322
17638
  * @param {boolean} [isOpen]
17323
17639
  * @param {boolean} [isCompleted]
17324
17640
  * @param {BookingStatus} [status]
@@ -17327,6 +17643,8 @@ export class BookingsApi extends BaseAPI {
17327
17643
  * @param {SortingOrder} [sortConfirmedDateStart]
17328
17644
  * @param {boolean} [isExternal]
17329
17645
  * @param {boolean} [paymentEnabled]
17646
+ * @param {string} [languageCode]
17647
+ * @param {boolean} [showHidden]
17330
17648
  * @param {number} [page]
17331
17649
  * @param {number} [limit]
17332
17650
  * @param {Date} [lastRetrieved]
@@ -17334,8 +17652,8 @@ export class BookingsApi extends BaseAPI {
17334
17652
  * @throws {RequiredError}
17335
17653
  * @memberof BookingsApi
17336
17654
  */
17337
- public 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) {
17338
- return BookingsApiFp(this.configuration).apiV1BookingsGet(searchString, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
17655
+ public apiV1BookingsGet(userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
17656
+ return BookingsApiFp(this.configuration).apiV1BookingsGet(userId, userName, hospitalId, hospitalName, dealId, dealName, isOpen, isCompleted, status, dealPackageId, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
17339
17657
  }
17340
17658
  }
17341
17659
 
@@ -19149,10 +19467,11 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
19149
19467
  *
19150
19468
  * @summary Get consultation.
19151
19469
  * @param {string} consultationId
19470
+ * @param {string} [languageCode]
19152
19471
  * @param {*} [options] Override http request option.
19153
19472
  * @throws {RequiredError}
19154
19473
  */
19155
- apiV1ConsultationsConsultationIdGet: async (consultationId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
19474
+ apiV1ConsultationsConsultationIdGet: async (consultationId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
19156
19475
  // verify required parameter 'consultationId' is not null or undefined
19157
19476
  assertParamExists('apiV1ConsultationsConsultationIdGet', 'consultationId', consultationId)
19158
19477
  const localVarPath = `/api/v1/consultations/{consultationId}`
@@ -19172,6 +19491,10 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
19172
19491
  // oauth required
19173
19492
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
19174
19493
 
19494
+ if (languageCode !== undefined) {
19495
+ localVarQueryParameter['languageCode'] = languageCode;
19496
+ }
19497
+
19175
19498
 
19176
19499
 
19177
19500
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -19266,7 +19589,14 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
19266
19589
  /**
19267
19590
  *
19268
19591
  * @summary Get all consultations.
19269
- * @param {string} [searchString]
19592
+ * @param {string} [userId]
19593
+ * @param {string} [userName]
19594
+ * @param {string} [hospitalId]
19595
+ * @param {string} [hospitalName]
19596
+ * @param {string} [doctorId]
19597
+ * @param {string} [doctorName]
19598
+ * @param {string} [dealId]
19599
+ * @param {string} [dealName]
19270
19600
  * @param {boolean} [isOpen]
19271
19601
  * @param {boolean} [isCompleted]
19272
19602
  * @param {ConsultationStatus} [status]
@@ -19275,13 +19605,15 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
19275
19605
  * @param {SortingOrder} [sortConfirmedDateStart]
19276
19606
  * @param {boolean} [isExternal]
19277
19607
  * @param {boolean} [paymentEnabled]
19608
+ * @param {string} [languageCode]
19609
+ * @param {boolean} [showHidden]
19278
19610
  * @param {number} [page]
19279
19611
  * @param {number} [limit]
19280
19612
  * @param {Date} [lastRetrieved]
19281
19613
  * @param {*} [options] Override http request option.
19282
19614
  * @throws {RequiredError}
19283
19615
  */
19284
- apiV1ConsultationsGet: async (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<RequestArgs> => {
19616
+ apiV1ConsultationsGet: async (userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
19285
19617
  const localVarPath = `/api/v1/consultations`;
19286
19618
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
19287
19619
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -19298,8 +19630,36 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
19298
19630
  // oauth required
19299
19631
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
19300
19632
 
19301
- if (searchString !== undefined) {
19302
- localVarQueryParameter['SearchString'] = searchString;
19633
+ if (userId !== undefined) {
19634
+ localVarQueryParameter['UserId'] = userId;
19635
+ }
19636
+
19637
+ if (userName !== undefined) {
19638
+ localVarQueryParameter['UserName'] = userName;
19639
+ }
19640
+
19641
+ if (hospitalId !== undefined) {
19642
+ localVarQueryParameter['HospitalId'] = hospitalId;
19643
+ }
19644
+
19645
+ if (hospitalName !== undefined) {
19646
+ localVarQueryParameter['HospitalName'] = hospitalName;
19647
+ }
19648
+
19649
+ if (doctorId !== undefined) {
19650
+ localVarQueryParameter['DoctorId'] = doctorId;
19651
+ }
19652
+
19653
+ if (doctorName !== undefined) {
19654
+ localVarQueryParameter['DoctorName'] = doctorName;
19655
+ }
19656
+
19657
+ if (dealId !== undefined) {
19658
+ localVarQueryParameter['DealId'] = dealId;
19659
+ }
19660
+
19661
+ if (dealName !== undefined) {
19662
+ localVarQueryParameter['DealName'] = dealName;
19303
19663
  }
19304
19664
 
19305
19665
  if (isOpen !== undefined) {
@@ -19334,6 +19694,14 @@ export const ConsultationsApiAxiosParamCreator = function (configuration?: Confi
19334
19694
  localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
19335
19695
  }
19336
19696
 
19697
+ if (languageCode !== undefined) {
19698
+ localVarQueryParameter['LanguageCode'] = languageCode;
19699
+ }
19700
+
19701
+ if (showHidden !== undefined) {
19702
+ localVarQueryParameter['ShowHidden'] = showHidden;
19703
+ }
19704
+
19337
19705
  if (page !== undefined) {
19338
19706
  localVarQueryParameter['page'] = page;
19339
19707
  }
@@ -19407,11 +19775,12 @@ export const ConsultationsApiFp = function(configuration?: Configuration) {
19407
19775
  *
19408
19776
  * @summary Get consultation.
19409
19777
  * @param {string} consultationId
19778
+ * @param {string} [languageCode]
19410
19779
  * @param {*} [options] Override http request option.
19411
19780
  * @throws {RequiredError}
19412
19781
  */
19413
- async apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationModel>> {
19414
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ConsultationsConsultationIdGet(consultationId, options);
19782
+ async apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationModel>> {
19783
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ConsultationsConsultationIdGet(consultationId, languageCode, options);
19415
19784
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
19416
19785
  },
19417
19786
  /**
@@ -19440,7 +19809,14 @@ export const ConsultationsApiFp = function(configuration?: Configuration) {
19440
19809
  /**
19441
19810
  *
19442
19811
  * @summary Get all consultations.
19443
- * @param {string} [searchString]
19812
+ * @param {string} [userId]
19813
+ * @param {string} [userName]
19814
+ * @param {string} [hospitalId]
19815
+ * @param {string} [hospitalName]
19816
+ * @param {string} [doctorId]
19817
+ * @param {string} [doctorName]
19818
+ * @param {string} [dealId]
19819
+ * @param {string} [dealName]
19444
19820
  * @param {boolean} [isOpen]
19445
19821
  * @param {boolean} [isCompleted]
19446
19822
  * @param {ConsultationStatus} [status]
@@ -19449,14 +19825,16 @@ export const ConsultationsApiFp = function(configuration?: Configuration) {
19449
19825
  * @param {SortingOrder} [sortConfirmedDateStart]
19450
19826
  * @param {boolean} [isExternal]
19451
19827
  * @param {boolean} [paymentEnabled]
19828
+ * @param {string} [languageCode]
19829
+ * @param {boolean} [showHidden]
19452
19830
  * @param {number} [page]
19453
19831
  * @param {number} [limit]
19454
19832
  * @param {Date} [lastRetrieved]
19455
19833
  * @param {*} [options] Override http request option.
19456
19834
  * @throws {RequiredError}
19457
19835
  */
19458
- async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationsModel>> {
19459
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ConsultationsGet(searchString, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, page, limit, lastRetrieved, options);
19836
+ async apiV1ConsultationsGet(userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConsultationsModel>> {
19837
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ConsultationsGet(userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options);
19460
19838
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
19461
19839
  },
19462
19840
  }
@@ -19504,11 +19882,12 @@ export const ConsultationsApiFactory = function (configuration?: Configuration,
19504
19882
  *
19505
19883
  * @summary Get consultation.
19506
19884
  * @param {string} consultationId
19885
+ * @param {string} [languageCode]
19507
19886
  * @param {*} [options] Override http request option.
19508
19887
  * @throws {RequiredError}
19509
19888
  */
19510
- apiV1ConsultationsConsultationIdGet(consultationId: string, options?: any): AxiosPromise<ConsultationModel> {
19511
- return localVarFp.apiV1ConsultationsConsultationIdGet(consultationId, options).then((request) => request(axios, basePath));
19889
+ apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: any): AxiosPromise<ConsultationModel> {
19890
+ return localVarFp.apiV1ConsultationsConsultationIdGet(consultationId, languageCode, options).then((request) => request(axios, basePath));
19512
19891
  },
19513
19892
  /**
19514
19893
  *
@@ -19534,7 +19913,14 @@ export const ConsultationsApiFactory = function (configuration?: Configuration,
19534
19913
  /**
19535
19914
  *
19536
19915
  * @summary Get all consultations.
19537
- * @param {string} [searchString]
19916
+ * @param {string} [userId]
19917
+ * @param {string} [userName]
19918
+ * @param {string} [hospitalId]
19919
+ * @param {string} [hospitalName]
19920
+ * @param {string} [doctorId]
19921
+ * @param {string} [doctorName]
19922
+ * @param {string} [dealId]
19923
+ * @param {string} [dealName]
19538
19924
  * @param {boolean} [isOpen]
19539
19925
  * @param {boolean} [isCompleted]
19540
19926
  * @param {ConsultationStatus} [status]
@@ -19543,14 +19929,16 @@ export const ConsultationsApiFactory = function (configuration?: Configuration,
19543
19929
  * @param {SortingOrder} [sortConfirmedDateStart]
19544
19930
  * @param {boolean} [isExternal]
19545
19931
  * @param {boolean} [paymentEnabled]
19932
+ * @param {string} [languageCode]
19933
+ * @param {boolean} [showHidden]
19546
19934
  * @param {number} [page]
19547
19935
  * @param {number} [limit]
19548
19936
  * @param {Date} [lastRetrieved]
19549
19937
  * @param {*} [options] Override http request option.
19550
19938
  * @throws {RequiredError}
19551
19939
  */
19552
- 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?: any): AxiosPromise<ConsultationsModel> {
19553
- return localVarFp.apiV1ConsultationsGet(searchString, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
19940
+ apiV1ConsultationsGet(userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ConsultationsModel> {
19941
+ return localVarFp.apiV1ConsultationsGet(userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
19554
19942
  },
19555
19943
  };
19556
19944
  };
@@ -19603,12 +19991,13 @@ export class ConsultationsApi extends BaseAPI {
19603
19991
  *
19604
19992
  * @summary Get consultation.
19605
19993
  * @param {string} consultationId
19994
+ * @param {string} [languageCode]
19606
19995
  * @param {*} [options] Override http request option.
19607
19996
  * @throws {RequiredError}
19608
19997
  * @memberof ConsultationsApi
19609
19998
  */
19610
- public apiV1ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig) {
19611
- return ConsultationsApiFp(this.configuration).apiV1ConsultationsConsultationIdGet(consultationId, options).then((request) => request(this.axios, this.basePath));
19999
+ public apiV1ConsultationsConsultationIdGet(consultationId: string, languageCode?: string, options?: AxiosRequestConfig) {
20000
+ return ConsultationsApiFp(this.configuration).apiV1ConsultationsConsultationIdGet(consultationId, languageCode, options).then((request) => request(this.axios, this.basePath));
19612
20001
  }
19613
20002
 
19614
20003
  /**
@@ -19639,7 +20028,14 @@ export class ConsultationsApi extends BaseAPI {
19639
20028
  /**
19640
20029
  *
19641
20030
  * @summary Get all consultations.
19642
- * @param {string} [searchString]
20031
+ * @param {string} [userId]
20032
+ * @param {string} [userName]
20033
+ * @param {string} [hospitalId]
20034
+ * @param {string} [hospitalName]
20035
+ * @param {string} [doctorId]
20036
+ * @param {string} [doctorName]
20037
+ * @param {string} [dealId]
20038
+ * @param {string} [dealName]
19643
20039
  * @param {boolean} [isOpen]
19644
20040
  * @param {boolean} [isCompleted]
19645
20041
  * @param {ConsultationStatus} [status]
@@ -19648,6 +20044,8 @@ export class ConsultationsApi extends BaseAPI {
19648
20044
  * @param {SortingOrder} [sortConfirmedDateStart]
19649
20045
  * @param {boolean} [isExternal]
19650
20046
  * @param {boolean} [paymentEnabled]
20047
+ * @param {string} [languageCode]
20048
+ * @param {boolean} [showHidden]
19651
20049
  * @param {number} [page]
19652
20050
  * @param {number} [limit]
19653
20051
  * @param {Date} [lastRetrieved]
@@ -19655,8 +20053,8 @@ export class ConsultationsApi extends BaseAPI {
19655
20053
  * @throws {RequiredError}
19656
20054
  * @memberof ConsultationsApi
19657
20055
  */
19658
- public 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) {
19659
- return ConsultationsApiFp(this.configuration).apiV1ConsultationsGet(searchString, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
20056
+ public apiV1ConsultationsGet(userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, dealId?: string, dealName?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, isExternal?: boolean, paymentEnabled?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
20057
+ return ConsultationsApiFp(this.configuration).apiV1ConsultationsGet(userId, userName, hospitalId, hospitalName, doctorId, doctorName, dealId, dealName, isOpen, isCompleted, status, consultationType, sortRequestDate, sortConfirmedDateStart, isExternal, paymentEnabled, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
19660
20058
  }
19661
20059
  }
19662
20060
 
@@ -21121,14 +21519,13 @@ export const CountriesApiAxiosParamCreator = function (configuration?: Configura
21121
21519
  * @param {Date} [createdDate]
21122
21520
  * @param {string} [languageCode]
21123
21521
  * @param {boolean} [showHidden]
21124
- * @param {boolean} [returnDefaultValue]
21125
21522
  * @param {number} [page]
21126
21523
  * @param {number} [limit]
21127
21524
  * @param {Date} [lastRetrieved]
21128
21525
  * @param {*} [options] Override http request option.
21129
21526
  * @throws {RequiredError}
21130
21527
  */
21131
- apiV1CountriesGet: async (id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
21528
+ apiV1CountriesGet: async (id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
21132
21529
  const localVarPath = `/api/v1/countries`;
21133
21530
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
21134
21531
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -21171,10 +21568,6 @@ export const CountriesApiAxiosParamCreator = function (configuration?: Configura
21171
21568
  localVarQueryParameter['ShowHidden'] = showHidden;
21172
21569
  }
21173
21570
 
21174
- if (returnDefaultValue !== undefined) {
21175
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
21176
- }
21177
-
21178
21571
  if (page !== undefined) {
21179
21572
  localVarQueryParameter['page'] = page;
21180
21573
  }
@@ -21416,15 +21809,14 @@ export const CountriesApiFp = function(configuration?: Configuration) {
21416
21809
  * @param {Date} [createdDate]
21417
21810
  * @param {string} [languageCode]
21418
21811
  * @param {boolean} [showHidden]
21419
- * @param {boolean} [returnDefaultValue]
21420
21812
  * @param {number} [page]
21421
21813
  * @param {number} [limit]
21422
21814
  * @param {Date} [lastRetrieved]
21423
21815
  * @param {*} [options] Override http request option.
21424
21816
  * @throws {RequiredError}
21425
21817
  */
21426
- async apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CountriesModel>> {
21427
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options);
21818
+ async apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CountriesModel>> {
21819
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options);
21428
21820
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
21429
21821
  },
21430
21822
  /**
@@ -21572,15 +21964,14 @@ export const CountriesApiFactory = function (configuration?: Configuration, base
21572
21964
  * @param {Date} [createdDate]
21573
21965
  * @param {string} [languageCode]
21574
21966
  * @param {boolean} [showHidden]
21575
- * @param {boolean} [returnDefaultValue]
21576
21967
  * @param {number} [page]
21577
21968
  * @param {number} [limit]
21578
21969
  * @param {Date} [lastRetrieved]
21579
21970
  * @param {*} [options] Override http request option.
21580
21971
  * @throws {RequiredError}
21581
21972
  */
21582
- apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<CountriesModel> {
21583
- return localVarFp.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
21973
+ apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<CountriesModel> {
21974
+ return localVarFp.apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
21584
21975
  },
21585
21976
  /**
21586
21977
  *
@@ -21743,7 +22134,6 @@ export class CountriesApi extends BaseAPI {
21743
22134
  * @param {Date} [createdDate]
21744
22135
  * @param {string} [languageCode]
21745
22136
  * @param {boolean} [showHidden]
21746
- * @param {boolean} [returnDefaultValue]
21747
22137
  * @param {number} [page]
21748
22138
  * @param {number} [limit]
21749
22139
  * @param {Date} [lastRetrieved]
@@ -21751,8 +22141,8 @@ export class CountriesApi extends BaseAPI {
21751
22141
  * @throws {RequiredError}
21752
22142
  * @memberof CountriesApi
21753
22143
  */
21754
- public apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
21755
- return CountriesApiFp(this.configuration).apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
22144
+ public apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
22145
+ return CountriesApiFp(this.configuration).apiV1CountriesGet(id, name, description, createdDate, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
21756
22146
  }
21757
22147
 
21758
22148
  /**
@@ -21940,11 +22330,10 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
21940
22330
  * @summary Get deal.
21941
22331
  * @param {string} dealId
21942
22332
  * @param {string} [languageCode]
21943
- * @param {boolean} [returnDefaultValue]
21944
22333
  * @param {*} [options] Override http request option.
21945
22334
  * @throws {RequiredError}
21946
22335
  */
21947
- apiV1DealsDealIdGet: async (dealId: string, languageCode?: string, returnDefaultValue?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
22336
+ apiV1DealsDealIdGet: async (dealId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
21948
22337
  // verify required parameter 'dealId' is not null or undefined
21949
22338
  assertParamExists('apiV1DealsDealIdGet', 'dealId', dealId)
21950
22339
  const localVarPath = `/api/v1/deals/{dealId}`
@@ -21968,10 +22357,6 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
21968
22357
  localVarQueryParameter['languageCode'] = languageCode;
21969
22358
  }
21970
22359
 
21971
- if (returnDefaultValue !== undefined) {
21972
- localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
21973
- }
21974
-
21975
22360
 
21976
22361
 
21977
22362
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -21993,13 +22378,15 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
21993
22378
  * @param {string} [countryId]
21994
22379
  * @param {string} [hospitalId]
21995
22380
  * @param {string} [hospitalName]
22381
+ * @param {string} [languageCode]
22382
+ * @param {boolean} [showHidden]
21996
22383
  * @param {number} [page]
21997
22384
  * @param {number} [limit]
21998
22385
  * @param {Date} [lastRetrieved]
21999
22386
  * @param {*} [options] Override http request option.
22000
22387
  * @throws {RequiredError}
22001
22388
  */
22002
- apiV1DealsDealIdPackagesGet: async (dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
22389
+ apiV1DealsDealIdPackagesGet: async (dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
22003
22390
  // verify required parameter 'dealId' is not null or undefined
22004
22391
  assertParamExists('apiV1DealsDealIdPackagesGet', 'dealId', dealId)
22005
22392
  const localVarPath = `/api/v1/deals/{dealId}/packages`
@@ -22043,6 +22430,14 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
22043
22430
  localVarQueryParameter['HospitalName'] = hospitalName;
22044
22431
  }
22045
22432
 
22433
+ if (languageCode !== undefined) {
22434
+ localVarQueryParameter['LanguageCode'] = languageCode;
22435
+ }
22436
+
22437
+ if (showHidden !== undefined) {
22438
+ localVarQueryParameter['ShowHidden'] = showHidden;
22439
+ }
22440
+
22046
22441
  if (page !== undefined) {
22047
22442
  localVarQueryParameter['page'] = page;
22048
22443
  }
@@ -22115,10 +22510,11 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
22115
22510
  * @summary Get DealPackage.
22116
22511
  * @param {string} dealId
22117
22512
  * @param {string} packageId
22513
+ * @param {string} [languageCode]
22118
22514
  * @param {*} [options] Override http request option.
22119
22515
  * @throws {RequiredError}
22120
22516
  */
22121
- apiV1DealsDealIdPackagesPackageIdGet: async (dealId: string, packageId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
22517
+ apiV1DealsDealIdPackagesPackageIdGet: async (dealId: string, packageId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
22122
22518
  // verify required parameter 'dealId' is not null or undefined
22123
22519
  assertParamExists('apiV1DealsDealIdPackagesPackageIdGet', 'dealId', dealId)
22124
22520
  // verify required parameter 'packageId' is not null or undefined
@@ -22141,6 +22537,10 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration
22141
22537
  // oauth required
22142
22538
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
22143
22539
 
22540
+ if (languageCode !== undefined) {
22541
+ localVarQueryParameter['languageCode'] = languageCode;
22542
+ }
22543
+
22144
22544
 
22145
22545
 
22146
22546
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -22913,12 +23313,11 @@ export const DealsApiFp = function(configuration?: Configuration) {
22913
23313
  * @summary Get deal.
22914
23314
  * @param {string} dealId
22915
23315
  * @param {string} [languageCode]
22916
- * @param {boolean} [returnDefaultValue]
22917
23316
  * @param {*} [options] Override http request option.
22918
23317
  * @throws {RequiredError}
22919
23318
  */
22920
- async apiV1DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealModel>> {
22921
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdGet(dealId, languageCode, returnDefaultValue, options);
23319
+ async apiV1DealsDealIdGet(dealId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealModel>> {
23320
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdGet(dealId, languageCode, options);
22922
23321
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
22923
23322
  },
22924
23323
  /**
@@ -22931,14 +23330,16 @@ export const DealsApiFp = function(configuration?: Configuration) {
22931
23330
  * @param {string} [countryId]
22932
23331
  * @param {string} [hospitalId]
22933
23332
  * @param {string} [hospitalName]
23333
+ * @param {string} [languageCode]
23334
+ * @param {boolean} [showHidden]
22934
23335
  * @param {number} [page]
22935
23336
  * @param {number} [limit]
22936
23337
  * @param {Date} [lastRetrieved]
22937
23338
  * @param {*} [options] Override http request option.
22938
23339
  * @throws {RequiredError}
22939
23340
  */
22940
- async apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealPackagesModel>> {
22941
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options);
23341
+ async apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealPackagesModel>> {
23342
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options);
22942
23343
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
22943
23344
  },
22944
23345
  /**
@@ -22958,11 +23359,12 @@ export const DealsApiFp = function(configuration?: Configuration) {
22958
23359
  * @summary Get DealPackage.
22959
23360
  * @param {string} dealId
22960
23361
  * @param {string} packageId
23362
+ * @param {string} [languageCode]
22961
23363
  * @param {*} [options] Override http request option.
22962
23364
  * @throws {RequiredError}
22963
23365
  */
22964
- async apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealPackageModel>> {
22965
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, options);
23366
+ async apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealPackageModel>> {
23367
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, languageCode, options);
22966
23368
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
22967
23369
  },
22968
23370
  /**
@@ -23178,12 +23580,11 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath
23178
23580
  * @summary Get deal.
23179
23581
  * @param {string} dealId
23180
23582
  * @param {string} [languageCode]
23181
- * @param {boolean} [returnDefaultValue]
23182
23583
  * @param {*} [options] Override http request option.
23183
23584
  * @throws {RequiredError}
23184
23585
  */
23185
- apiV1DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<DealModel> {
23186
- return localVarFp.apiV1DealsDealIdGet(dealId, languageCode, returnDefaultValue, options).then((request) => request(axios, basePath));
23586
+ apiV1DealsDealIdGet(dealId: string, languageCode?: string, options?: any): AxiosPromise<DealModel> {
23587
+ return localVarFp.apiV1DealsDealIdGet(dealId, languageCode, options).then((request) => request(axios, basePath));
23187
23588
  },
23188
23589
  /**
23189
23590
  *
@@ -23195,14 +23596,16 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath
23195
23596
  * @param {string} [countryId]
23196
23597
  * @param {string} [hospitalId]
23197
23598
  * @param {string} [hospitalName]
23599
+ * @param {string} [languageCode]
23600
+ * @param {boolean} [showHidden]
23198
23601
  * @param {number} [page]
23199
23602
  * @param {number} [limit]
23200
23603
  * @param {Date} [lastRetrieved]
23201
23604
  * @param {*} [options] Override http request option.
23202
23605
  * @throws {RequiredError}
23203
23606
  */
23204
- apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DealPackagesModel> {
23205
- return localVarFp.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
23607
+ apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DealPackagesModel> {
23608
+ return localVarFp.apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
23206
23609
  },
23207
23610
  /**
23208
23611
  *
@@ -23220,11 +23623,12 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath
23220
23623
  * @summary Get DealPackage.
23221
23624
  * @param {string} dealId
23222
23625
  * @param {string} packageId
23626
+ * @param {string} [languageCode]
23223
23627
  * @param {*} [options] Override http request option.
23224
23628
  * @throws {RequiredError}
23225
23629
  */
23226
- apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: any): AxiosPromise<DealPackageModel> {
23227
- return localVarFp.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, options).then((request) => request(axios, basePath));
23630
+ apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string, options?: any): AxiosPromise<DealPackageModel> {
23631
+ return localVarFp.apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, languageCode, options).then((request) => request(axios, basePath));
23228
23632
  },
23229
23633
  /**
23230
23634
  *
@@ -23429,13 +23833,12 @@ export class DealsApi extends BaseAPI {
23429
23833
  * @summary Get deal.
23430
23834
  * @param {string} dealId
23431
23835
  * @param {string} [languageCode]
23432
- * @param {boolean} [returnDefaultValue]
23433
23836
  * @param {*} [options] Override http request option.
23434
23837
  * @throws {RequiredError}
23435
23838
  * @memberof DealsApi
23436
23839
  */
23437
- public apiV1DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) {
23438
- return DealsApiFp(this.configuration).apiV1DealsDealIdGet(dealId, languageCode, returnDefaultValue, options).then((request) => request(this.axios, this.basePath));
23840
+ public apiV1DealsDealIdGet(dealId: string, languageCode?: string, options?: AxiosRequestConfig) {
23841
+ return DealsApiFp(this.configuration).apiV1DealsDealIdGet(dealId, languageCode, options).then((request) => request(this.axios, this.basePath));
23439
23842
  }
23440
23843
 
23441
23844
  /**
@@ -23448,6 +23851,8 @@ export class DealsApi extends BaseAPI {
23448
23851
  * @param {string} [countryId]
23449
23852
  * @param {string} [hospitalId]
23450
23853
  * @param {string} [hospitalName]
23854
+ * @param {string} [languageCode]
23855
+ * @param {boolean} [showHidden]
23451
23856
  * @param {number} [page]
23452
23857
  * @param {number} [limit]
23453
23858
  * @param {Date} [lastRetrieved]
@@ -23455,8 +23860,8 @@ export class DealsApi extends BaseAPI {
23455
23860
  * @throws {RequiredError}
23456
23861
  * @memberof DealsApi
23457
23862
  */
23458
- public apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
23459
- return DealsApiFp(this.configuration).apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
23863
+ public apiV1DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
23864
+ return DealsApiFp(this.configuration).apiV1DealsDealIdPackagesGet(dealId, relatedDealPackageId, dealName, name, countryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
23460
23865
  }
23461
23866
 
23462
23867
  /**
@@ -23477,12 +23882,13 @@ export class DealsApi extends BaseAPI {
23477
23882
  * @summary Get DealPackage.
23478
23883
  * @param {string} dealId
23479
23884
  * @param {string} packageId
23885
+ * @param {string} [languageCode]
23480
23886
  * @param {*} [options] Override http request option.
23481
23887
  * @throws {RequiredError}
23482
23888
  * @memberof DealsApi
23483
23889
  */
23484
- public apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig) {
23485
- return DealsApiFp(this.configuration).apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, options).then((request) => request(this.axios, this.basePath));
23890
+ public apiV1DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, languageCode?: string, options?: AxiosRequestConfig) {
23891
+ return DealsApiFp(this.configuration).apiV1DealsDealIdPackagesPackageIdGet(dealId, packageId, languageCode, options).then((request) => request(this.axios, this.basePath));
23486
23892
  }
23487
23893
 
23488
23894
  /**
@@ -23688,27 +24094,29 @@ export class DealsApi extends BaseAPI {
23688
24094
 
23689
24095
 
23690
24096
  /**
23691
- * DoctorsApi - axios parameter creator
24097
+ * DoctorAffiliationsApi - axios parameter creator
23692
24098
  * @export
23693
24099
  */
23694
- export const DoctorsApiAxiosParamCreator = function (configuration?: Configuration) {
24100
+ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?: Configuration) {
23695
24101
  return {
23696
24102
  /**
23697
24103
  *
23698
24104
  * @summary Get all doctor affiliations.
23699
- * @param {string} doctorId
24105
+ * @param {string} [hospitalId]
23700
24106
  * @param {string} [hospitalName]
24107
+ * @param {string} [doctorId]
24108
+ * @param {string} [doctorName]
24109
+ * @param {string} [doctorSlug]
24110
+ * @param {string} [languageCode]
24111
+ * @param {boolean} [showHidden]
23701
24112
  * @param {number} [page]
23702
24113
  * @param {number} [limit]
23703
24114
  * @param {Date} [lastRetrieved]
23704
24115
  * @param {*} [options] Override http request option.
23705
24116
  * @throws {RequiredError}
23706
24117
  */
23707
- apiV1DoctorsDoctorIdAffiliationsGet: async (doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
23708
- // verify required parameter 'doctorId' is not null or undefined
23709
- assertParamExists('apiV1DoctorsDoctorIdAffiliationsGet', 'doctorId', doctorId)
23710
- const localVarPath = `/api/v1/doctors/{doctorId}/affiliations`
23711
- .replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)));
24118
+ apiV1DoctoraffiliationsGet: async (hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
24119
+ const localVarPath = `/api/v1/doctoraffiliations`;
23712
24120
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
23713
24121
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23714
24122
  let baseOptions;
@@ -23724,10 +24132,34 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
23724
24132
  // oauth required
23725
24133
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
23726
24134
 
24135
+ if (hospitalId !== undefined) {
24136
+ localVarQueryParameter['HospitalId'] = hospitalId;
24137
+ }
24138
+
23727
24139
  if (hospitalName !== undefined) {
23728
24140
  localVarQueryParameter['HospitalName'] = hospitalName;
23729
24141
  }
23730
24142
 
24143
+ if (doctorId !== undefined) {
24144
+ localVarQueryParameter['DoctorId'] = doctorId;
24145
+ }
24146
+
24147
+ if (doctorName !== undefined) {
24148
+ localVarQueryParameter['DoctorName'] = doctorName;
24149
+ }
24150
+
24151
+ if (doctorSlug !== undefined) {
24152
+ localVarQueryParameter['DoctorSlug'] = doctorSlug;
24153
+ }
24154
+
24155
+ if (languageCode !== undefined) {
24156
+ localVarQueryParameter['LanguageCode'] = languageCode;
24157
+ }
24158
+
24159
+ if (showHidden !== undefined) {
24160
+ localVarQueryParameter['ShowHidden'] = showHidden;
24161
+ }
24162
+
23731
24163
  if (page !== undefined) {
23732
24164
  localVarQueryParameter['page'] = page;
23733
24165
  }
@@ -23756,19 +24188,15 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
23756
24188
  /**
23757
24189
  *
23758
24190
  * @summary Delete doctor affiliation.
23759
- * @param {string} doctorId
23760
- * @param {string} hospitalId
24191
+ * @param {string} id
23761
24192
  * @param {*} [options] Override http request option.
23762
24193
  * @throws {RequiredError}
23763
24194
  */
23764
- apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete: async (doctorId: string, hospitalId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
23765
- // verify required parameter 'doctorId' is not null or undefined
23766
- assertParamExists('apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete', 'doctorId', doctorId)
23767
- // verify required parameter 'hospitalId' is not null or undefined
23768
- assertParamExists('apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete', 'hospitalId', hospitalId)
23769
- const localVarPath = `/api/v1/doctors/{doctorId}/affiliations/{hospitalId}`
23770
- .replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)))
23771
- .replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
24195
+ apiV1DoctoraffiliationsIdDelete: async (id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
24196
+ // verify required parameter 'id' is not null or undefined
24197
+ assertParamExists('apiV1DoctoraffiliationsIdDelete', 'id', id)
24198
+ const localVarPath = `/api/v1/doctoraffiliations/{id}`
24199
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
23772
24200
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
23773
24201
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23774
24202
  let baseOptions;
@@ -23798,19 +24226,16 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
23798
24226
  /**
23799
24227
  *
23800
24228
  * @summary Get doctor affiliation.
23801
- * @param {string} doctorId
23802
- * @param {string} hospitalId
24229
+ * @param {string} id
24230
+ * @param {string} [languageCode]
23803
24231
  * @param {*} [options] Override http request option.
23804
24232
  * @throws {RequiredError}
23805
24233
  */
23806
- apiV1DoctorsDoctorIdAffiliationsHospitalIdGet: async (doctorId: string, hospitalId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
23807
- // verify required parameter 'doctorId' is not null or undefined
23808
- assertParamExists('apiV1DoctorsDoctorIdAffiliationsHospitalIdGet', 'doctorId', doctorId)
23809
- // verify required parameter 'hospitalId' is not null or undefined
23810
- assertParamExists('apiV1DoctorsDoctorIdAffiliationsHospitalIdGet', 'hospitalId', hospitalId)
23811
- const localVarPath = `/api/v1/doctors/{doctorId}/affiliations/{hospitalId}`
23812
- .replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)))
23813
- .replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
24234
+ apiV1DoctoraffiliationsIdGet: async (id: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
24235
+ // verify required parameter 'id' is not null or undefined
24236
+ assertParamExists('apiV1DoctoraffiliationsIdGet', 'id', id)
24237
+ const localVarPath = `/api/v1/doctoraffiliations/{id}`
24238
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
23814
24239
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
23815
24240
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23816
24241
  let baseOptions;
@@ -23826,6 +24251,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
23826
24251
  // oauth required
23827
24252
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
23828
24253
 
24254
+ if (languageCode !== undefined) {
24255
+ localVarQueryParameter['languageCode'] = languageCode;
24256
+ }
24257
+
23829
24258
 
23830
24259
 
23831
24260
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -23839,16 +24268,54 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
23839
24268
  },
23840
24269
  /**
23841
24270
  *
23842
- * @param {string} doctorId
24271
+ * @summary Update Hospital.
24272
+ * @param {string} id
24273
+ * @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
24274
+ * @param {*} [options] Override http request option.
24275
+ * @throws {RequiredError}
24276
+ */
24277
+ apiV1DoctoraffiliationsIdPut: async (id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
24278
+ // verify required parameter 'id' is not null or undefined
24279
+ assertParamExists('apiV1DoctoraffiliationsIdPut', 'id', id)
24280
+ const localVarPath = `/api/v1/doctoraffiliations/{id}`
24281
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
24282
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
24283
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
24284
+ let baseOptions;
24285
+ if (configuration) {
24286
+ baseOptions = configuration.baseOptions;
24287
+ }
24288
+
24289
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
24290
+ const localVarHeaderParameter = {} as any;
24291
+ const localVarQueryParameter = {} as any;
24292
+
24293
+ // authentication oauth2 required
24294
+ // oauth required
24295
+ await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
24296
+
24297
+
24298
+
24299
+ localVarHeaderParameter['Content-Type'] = 'application/json';
24300
+
24301
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
24302
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
24303
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
24304
+ localVarRequestOptions.data = serializeDataIfNeeded(updateDoctorAffiliationCommand, localVarRequestOptions, configuration)
24305
+
24306
+ return {
24307
+ url: toPathString(localVarUrlObj),
24308
+ options: localVarRequestOptions,
24309
+ };
24310
+ },
24311
+ /**
24312
+ *
23843
24313
  * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
23844
24314
  * @param {*} [options] Override http request option.
23845
24315
  * @throws {RequiredError}
23846
24316
  */
23847
- apiV1DoctorsDoctorIdAffiliationsPost: async (doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
23848
- // verify required parameter 'doctorId' is not null or undefined
23849
- assertParamExists('apiV1DoctorsDoctorIdAffiliationsPost', 'doctorId', doctorId)
23850
- const localVarPath = `/api/v1/doctors/{doctorId}/affiliations`
23851
- .replace(`{${"doctorId"}}`, encodeURIComponent(String(doctorId)));
24317
+ apiV1DoctoraffiliationsPost: async (createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
24318
+ const localVarPath = `/api/v1/doctoraffiliations`;
23852
24319
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
23853
24320
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
23854
24321
  let baseOptions;
@@ -23878,6 +24345,239 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
23878
24345
  options: localVarRequestOptions,
23879
24346
  };
23880
24347
  },
24348
+ }
24349
+ };
24350
+
24351
+ /**
24352
+ * DoctorAffiliationsApi - functional programming interface
24353
+ * @export
24354
+ */
24355
+ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
24356
+ const localVarAxiosParamCreator = DoctorAffiliationsApiAxiosParamCreator(configuration)
24357
+ return {
24358
+ /**
24359
+ *
24360
+ * @summary Get all doctor affiliations.
24361
+ * @param {string} [hospitalId]
24362
+ * @param {string} [hospitalName]
24363
+ * @param {string} [doctorId]
24364
+ * @param {string} [doctorName]
24365
+ * @param {string} [doctorSlug]
24366
+ * @param {string} [languageCode]
24367
+ * @param {boolean} [showHidden]
24368
+ * @param {number} [page]
24369
+ * @param {number} [limit]
24370
+ * @param {Date} [lastRetrieved]
24371
+ * @param {*} [options] Override http request option.
24372
+ * @throws {RequiredError}
24373
+ */
24374
+ async apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
24375
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options);
24376
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
24377
+ },
24378
+ /**
24379
+ *
24380
+ * @summary Delete doctor affiliation.
24381
+ * @param {string} id
24382
+ * @param {*} [options] Override http request option.
24383
+ * @throws {RequiredError}
24384
+ */
24385
+ async apiV1DoctoraffiliationsIdDelete(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
24386
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsIdDelete(id, options);
24387
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
24388
+ },
24389
+ /**
24390
+ *
24391
+ * @summary Get doctor affiliation.
24392
+ * @param {string} id
24393
+ * @param {string} [languageCode]
24394
+ * @param {*} [options] Override http request option.
24395
+ * @throws {RequiredError}
24396
+ */
24397
+ async apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
24398
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsIdGet(id, languageCode, options);
24399
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
24400
+ },
24401
+ /**
24402
+ *
24403
+ * @summary Update Hospital.
24404
+ * @param {string} id
24405
+ * @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
24406
+ * @param {*} [options] Override http request option.
24407
+ * @throws {RequiredError}
24408
+ */
24409
+ async apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
24410
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsIdPut(id, updateDoctorAffiliationCommand, options);
24411
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
24412
+ },
24413
+ /**
24414
+ *
24415
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
24416
+ * @param {*} [options] Override http request option.
24417
+ * @throws {RequiredError}
24418
+ */
24419
+ async apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
24420
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand, options);
24421
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
24422
+ },
24423
+ }
24424
+ };
24425
+
24426
+ /**
24427
+ * DoctorAffiliationsApi - factory interface
24428
+ * @export
24429
+ */
24430
+ export const DoctorAffiliationsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
24431
+ const localVarFp = DoctorAffiliationsApiFp(configuration)
24432
+ return {
24433
+ /**
24434
+ *
24435
+ * @summary Get all doctor affiliations.
24436
+ * @param {string} [hospitalId]
24437
+ * @param {string} [hospitalName]
24438
+ * @param {string} [doctorId]
24439
+ * @param {string} [doctorName]
24440
+ * @param {string} [doctorSlug]
24441
+ * @param {string} [languageCode]
24442
+ * @param {boolean} [showHidden]
24443
+ * @param {number} [page]
24444
+ * @param {number} [limit]
24445
+ * @param {Date} [lastRetrieved]
24446
+ * @param {*} [options] Override http request option.
24447
+ * @throws {RequiredError}
24448
+ */
24449
+ apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
24450
+ return localVarFp.apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
24451
+ },
24452
+ /**
24453
+ *
24454
+ * @summary Delete doctor affiliation.
24455
+ * @param {string} id
24456
+ * @param {*} [options] Override http request option.
24457
+ * @throws {RequiredError}
24458
+ */
24459
+ apiV1DoctoraffiliationsIdDelete(id: string, options?: any): AxiosPromise<boolean> {
24460
+ return localVarFp.apiV1DoctoraffiliationsIdDelete(id, options).then((request) => request(axios, basePath));
24461
+ },
24462
+ /**
24463
+ *
24464
+ * @summary Get doctor affiliation.
24465
+ * @param {string} id
24466
+ * @param {string} [languageCode]
24467
+ * @param {*} [options] Override http request option.
24468
+ * @throws {RequiredError}
24469
+ */
24470
+ apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: any): AxiosPromise<DoctorAffiliationModel> {
24471
+ return localVarFp.apiV1DoctoraffiliationsIdGet(id, languageCode, options).then((request) => request(axios, basePath));
24472
+ },
24473
+ /**
24474
+ *
24475
+ * @summary Update Hospital.
24476
+ * @param {string} id
24477
+ * @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
24478
+ * @param {*} [options] Override http request option.
24479
+ * @throws {RequiredError}
24480
+ */
24481
+ apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options?: any): AxiosPromise<DoctorAffiliationModel> {
24482
+ return localVarFp.apiV1DoctoraffiliationsIdPut(id, updateDoctorAffiliationCommand, options).then((request) => request(axios, basePath));
24483
+ },
24484
+ /**
24485
+ *
24486
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
24487
+ * @param {*} [options] Override http request option.
24488
+ * @throws {RequiredError}
24489
+ */
24490
+ apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: any): AxiosPromise<DoctorAffiliationModel> {
24491
+ return localVarFp.apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand, options).then((request) => request(axios, basePath));
24492
+ },
24493
+ };
24494
+ };
24495
+
24496
+ /**
24497
+ * DoctorAffiliationsApi - object-oriented interface
24498
+ * @export
24499
+ * @class DoctorAffiliationsApi
24500
+ * @extends {BaseAPI}
24501
+ */
24502
+ export class DoctorAffiliationsApi extends BaseAPI {
24503
+ /**
24504
+ *
24505
+ * @summary Get all doctor affiliations.
24506
+ * @param {string} [hospitalId]
24507
+ * @param {string} [hospitalName]
24508
+ * @param {string} [doctorId]
24509
+ * @param {string} [doctorName]
24510
+ * @param {string} [doctorSlug]
24511
+ * @param {string} [languageCode]
24512
+ * @param {boolean} [showHidden]
24513
+ * @param {number} [page]
24514
+ * @param {number} [limit]
24515
+ * @param {Date} [lastRetrieved]
24516
+ * @param {*} [options] Override http request option.
24517
+ * @throws {RequiredError}
24518
+ * @memberof DoctorAffiliationsApi
24519
+ */
24520
+ public apiV1DoctoraffiliationsGet(hospitalId?: string, hospitalName?: string, doctorId?: string, doctorName?: string, doctorSlug?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
24521
+ return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsGet(hospitalId, hospitalName, doctorId, doctorName, doctorSlug, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
24522
+ }
24523
+
24524
+ /**
24525
+ *
24526
+ * @summary Delete doctor affiliation.
24527
+ * @param {string} id
24528
+ * @param {*} [options] Override http request option.
24529
+ * @throws {RequiredError}
24530
+ * @memberof DoctorAffiliationsApi
24531
+ */
24532
+ public apiV1DoctoraffiliationsIdDelete(id: string, options?: AxiosRequestConfig) {
24533
+ return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdDelete(id, options).then((request) => request(this.axios, this.basePath));
24534
+ }
24535
+
24536
+ /**
24537
+ *
24538
+ * @summary Get doctor affiliation.
24539
+ * @param {string} id
24540
+ * @param {string} [languageCode]
24541
+ * @param {*} [options] Override http request option.
24542
+ * @throws {RequiredError}
24543
+ * @memberof DoctorAffiliationsApi
24544
+ */
24545
+ public apiV1DoctoraffiliationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig) {
24546
+ return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdGet(id, languageCode, options).then((request) => request(this.axios, this.basePath));
24547
+ }
24548
+
24549
+ /**
24550
+ *
24551
+ * @summary Update Hospital.
24552
+ * @param {string} id
24553
+ * @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
24554
+ * @param {*} [options] Override http request option.
24555
+ * @throws {RequiredError}
24556
+ * @memberof DoctorAffiliationsApi
24557
+ */
24558
+ public apiV1DoctoraffiliationsIdPut(id: string, updateDoctorAffiliationCommand?: UpdateDoctorAffiliationCommand, options?: AxiosRequestConfig) {
24559
+ return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsIdPut(id, updateDoctorAffiliationCommand, options).then((request) => request(this.axios, this.basePath));
24560
+ }
24561
+
24562
+ /**
24563
+ *
24564
+ * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
24565
+ * @param {*} [options] Override http request option.
24566
+ * @throws {RequiredError}
24567
+ * @memberof DoctorAffiliationsApi
24568
+ */
24569
+ public apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig) {
24570
+ return DoctorAffiliationsApiFp(this.configuration).apiV1DoctoraffiliationsPost(createDoctorAffiliationCommand, options).then((request) => request(this.axios, this.basePath));
24571
+ }
24572
+ }
24573
+
24574
+
24575
+ /**
24576
+ * DoctorsApi - axios parameter creator
24577
+ * @export
24578
+ */
24579
+ export const DoctorsApiAxiosParamCreator = function (configuration?: Configuration) {
24580
+ return {
23881
24581
  /**
23882
24582
  *
23883
24583
  * @summary Delete DoctorCertificate.
@@ -24429,12 +25129,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
24429
25129
  /**
24430
25130
  *
24431
25131
  * @param {string} doctorId
24432
- * @param {string} [languageCode]
24433
- * @param {boolean} [returnDefaultValue]
24434
25132
  * @param {*} [options] Override http request option.
24435
25133
  * @throws {RequiredError}
24436
25134
  */
24437
- apiV1DoctorsDoctorIdGet: async (doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
25135
+ apiV1DoctorsDoctorIdGet: async (doctorId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
24438
25136
  // verify required parameter 'doctorId' is not null or undefined
24439
25137
  assertParamExists('apiV1DoctorsDoctorIdGet', 'doctorId', doctorId)
24440
25138
  const localVarPath = `/api/v1/doctors/{doctorId}`
@@ -24454,14 +25152,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
24454
25152
  // oauth required
24455
25153
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
24456
25154
 
24457
- if (languageCode !== undefined) {
24458
- localVarQueryParameter['languageCode'] = languageCode;
24459
- }
24460
-
24461
- if (returnDefaultValue !== undefined) {
24462
- localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
24463
- }
24464
-
24465
25155
 
24466
25156
 
24467
25157
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -25233,13 +25923,14 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
25233
25923
  * @param {string} [doctorName]
25234
25924
  * @param {string} [specialtyId]
25235
25925
  * @param {string} [specialtyName]
25926
+ * @param {string} [languageCode]
25236
25927
  * @param {number} [page]
25237
25928
  * @param {number} [limit]
25238
25929
  * @param {Date} [lastRetrieved]
25239
25930
  * @param {*} [options] Override http request option.
25240
25931
  * @throws {RequiredError}
25241
25932
  */
25242
- apiV1DoctorsDoctorIdSpecialtiesGet: async (doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
25933
+ apiV1DoctorsDoctorIdSpecialtiesGet: async (doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
25243
25934
  // verify required parameter 'doctorId' is not null or undefined
25244
25935
  assertParamExists('apiV1DoctorsDoctorIdSpecialtiesGet', 'doctorId', doctorId)
25245
25936
  const localVarPath = `/api/v1/doctors/{doctorId}/specialties`
@@ -25271,6 +25962,10 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
25271
25962
  localVarQueryParameter['SpecialtyName'] = specialtyName;
25272
25963
  }
25273
25964
 
25965
+ if (languageCode !== undefined) {
25966
+ localVarQueryParameter['LanguageCode'] = languageCode;
25967
+ }
25968
+
25274
25969
  if (page !== undefined) {
25275
25970
  localVarQueryParameter['page'] = page;
25276
25971
  }
@@ -25472,8 +26167,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
25472
26167
  *
25473
26168
  * @summary Get all Doctors.
25474
26169
  * @param {string} [hospitalId]
25475
- * @param {string} [languageCode]
25476
- * @param {boolean} [returnDefaultValue]
26170
+ * @param {string} [hospitalName]
25477
26171
  * @param {Array<string>} [ids]
25478
26172
  * @param {string} [specialtyId]
25479
26173
  * @param {boolean} [consultationEnabled]
@@ -25490,7 +26184,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
25490
26184
  * @param {*} [options] Override http request option.
25491
26185
  * @throws {RequiredError}
25492
26186
  */
25493
- apiV1DoctorsGet: async (hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
26187
+ apiV1DoctorsGet: async (hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
25494
26188
  const localVarPath = `/api/v1/doctors`;
25495
26189
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
25496
26190
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -25511,12 +26205,8 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
25511
26205
  localVarQueryParameter['HospitalId'] = hospitalId;
25512
26206
  }
25513
26207
 
25514
- if (languageCode !== undefined) {
25515
- localVarQueryParameter['LanguageCode'] = languageCode;
25516
- }
25517
-
25518
- if (returnDefaultValue !== undefined) {
25519
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
26208
+ if (hospitalName !== undefined) {
26209
+ localVarQueryParameter['HospitalName'] = hospitalName;
25520
26210
  }
25521
26211
 
25522
26212
  if (ids) {
@@ -25630,8 +26320,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
25630
26320
  *
25631
26321
  * @summary Get all Doctors.
25632
26322
  * @param {string} [hospitalId]
25633
- * @param {string} [languageCode]
25634
- * @param {boolean} [returnDefaultValue]
26323
+ * @param {string} [hospitalName]
25635
26324
  * @param {Array<string>} [ids]
25636
26325
  * @param {string} [specialtyId]
25637
26326
  * @param {boolean} [consultationEnabled]
@@ -25648,7 +26337,7 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
25648
26337
  * @param {*} [options] Override http request option.
25649
26338
  * @throws {RequiredError}
25650
26339
  */
25651
- apiV1DoctorsSimpleGet: async (hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
26340
+ apiV1DoctorsSimpleGet: async (hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
25652
26341
  const localVarPath = `/api/v1/doctors/simple`;
25653
26342
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
25654
26343
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -25669,12 +26358,8 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
25669
26358
  localVarQueryParameter['HospitalId'] = hospitalId;
25670
26359
  }
25671
26360
 
25672
- if (languageCode !== undefined) {
25673
- localVarQueryParameter['LanguageCode'] = languageCode;
25674
- }
25675
-
25676
- if (returnDefaultValue !== undefined) {
25677
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
26361
+ if (hospitalName !== undefined) {
26362
+ localVarQueryParameter['HospitalName'] = hospitalName;
25678
26363
  }
25679
26364
 
25680
26365
  if (ids) {
@@ -25737,53 +26422,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
25737
26422
 
25738
26423
 
25739
26424
 
25740
- setSearchParams(localVarUrlObj, localVarQueryParameter);
25741
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
25742
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
25743
-
25744
- return {
25745
- url: toPathString(localVarUrlObj),
25746
- options: localVarRequestOptions,
25747
- };
25748
- },
25749
- /**
25750
- *
25751
- * @param {string} slug
25752
- * @param {string} [languageCode]
25753
- * @param {boolean} [returnDefaultValue]
25754
- * @param {*} [options] Override http request option.
25755
- * @throws {RequiredError}
25756
- */
25757
- apiV1DoctorsSlugGet: async (slug: string, languageCode?: string, returnDefaultValue?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
25758
- // verify required parameter 'slug' is not null or undefined
25759
- assertParamExists('apiV1DoctorsSlugGet', 'slug', slug)
25760
- const localVarPath = `/api/v1/doctors/{slug}`
25761
- .replace(`{${"slug"}}`, encodeURIComponent(String(slug)));
25762
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
25763
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
25764
- let baseOptions;
25765
- if (configuration) {
25766
- baseOptions = configuration.baseOptions;
25767
- }
25768
-
25769
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
25770
- const localVarHeaderParameter = {} as any;
25771
- const localVarQueryParameter = {} as any;
25772
-
25773
- // authentication oauth2 required
25774
- // oauth required
25775
- await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
25776
-
25777
- if (languageCode !== undefined) {
25778
- localVarQueryParameter['languageCode'] = languageCode;
25779
- }
25780
-
25781
- if (returnDefaultValue !== undefined) {
25782
- localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
25783
- }
25784
-
25785
-
25786
-
25787
26425
  setSearchParams(localVarUrlObj, localVarQueryParameter);
25788
26426
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
25789
26427
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -25803,56 +26441,6 @@ export const DoctorsApiAxiosParamCreator = function (configuration?: Configurati
25803
26441
  export const DoctorsApiFp = function(configuration?: Configuration) {
25804
26442
  const localVarAxiosParamCreator = DoctorsApiAxiosParamCreator(configuration)
25805
26443
  return {
25806
- /**
25807
- *
25808
- * @summary Get all doctor affiliations.
25809
- * @param {string} doctorId
25810
- * @param {string} [hospitalName]
25811
- * @param {number} [page]
25812
- * @param {number} [limit]
25813
- * @param {Date} [lastRetrieved]
25814
- * @param {*} [options] Override http request option.
25815
- * @throws {RequiredError}
25816
- */
25817
- async apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationsModel>> {
25818
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options);
25819
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
25820
- },
25821
- /**
25822
- *
25823
- * @summary Delete doctor affiliation.
25824
- * @param {string} doctorId
25825
- * @param {string} hospitalId
25826
- * @param {*} [options] Override http request option.
25827
- * @throws {RequiredError}
25828
- */
25829
- async apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
25830
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId, hospitalId, options);
25831
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
25832
- },
25833
- /**
25834
- *
25835
- * @summary Get doctor affiliation.
25836
- * @param {string} doctorId
25837
- * @param {string} hospitalId
25838
- * @param {*} [options] Override http request option.
25839
- * @throws {RequiredError}
25840
- */
25841
- async apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
25842
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId, hospitalId, options);
25843
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
25844
- },
25845
- /**
25846
- *
25847
- * @param {string} doctorId
25848
- * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
25849
- * @param {*} [options] Override http request option.
25850
- * @throws {RequiredError}
25851
- */
25852
- async apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorAffiliationModel>> {
25853
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdAffiliationsPost(doctorId, createDoctorAffiliationCommand, options);
25854
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
25855
- },
25856
26444
  /**
25857
26445
  *
25858
26446
  * @summary Delete DoctorCertificate.
@@ -26003,13 +26591,11 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
26003
26591
  /**
26004
26592
  *
26005
26593
  * @param {string} doctorId
26006
- * @param {string} [languageCode]
26007
- * @param {boolean} [returnDefaultValue]
26008
26594
  * @param {*} [options] Override http request option.
26009
26595
  * @throws {RequiredError}
26010
26596
  */
26011
- async apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorModel>> {
26012
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdGet(doctorId, languageCode, returnDefaultValue, options);
26597
+ async apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorModel>> {
26598
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdGet(doctorId, options);
26013
26599
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
26014
26600
  },
26015
26601
  /**
@@ -26226,14 +26812,15 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
26226
26812
  * @param {string} [doctorName]
26227
26813
  * @param {string} [specialtyId]
26228
26814
  * @param {string} [specialtyName]
26815
+ * @param {string} [languageCode]
26229
26816
  * @param {number} [page]
26230
26817
  * @param {number} [limit]
26231
26818
  * @param {Date} [lastRetrieved]
26232
26819
  * @param {*} [options] Override http request option.
26233
26820
  * @throws {RequiredError}
26234
26821
  */
26235
- async apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtiesModel>> {
26236
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options);
26822
+ async apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorSpecialtiesModel>> {
26823
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options);
26237
26824
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
26238
26825
  },
26239
26826
  /**
@@ -26289,8 +26876,7 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
26289
26876
  *
26290
26877
  * @summary Get all Doctors.
26291
26878
  * @param {string} [hospitalId]
26292
- * @param {string} [languageCode]
26293
- * @param {boolean} [returnDefaultValue]
26879
+ * @param {string} [hospitalName]
26294
26880
  * @param {Array<string>} [ids]
26295
26881
  * @param {string} [specialtyId]
26296
26882
  * @param {boolean} [consultationEnabled]
@@ -26307,8 +26893,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
26307
26893
  * @param {*} [options] Override http request option.
26308
26894
  * @throws {RequiredError}
26309
26895
  */
26310
- async apiV1DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsModel>> {
26311
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
26896
+ async apiV1DoctorsGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsModel>> {
26897
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
26312
26898
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
26313
26899
  },
26314
26900
  /**
@@ -26326,8 +26912,7 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
26326
26912
  *
26327
26913
  * @summary Get all Doctors.
26328
26914
  * @param {string} [hospitalId]
26329
- * @param {string} [languageCode]
26330
- * @param {boolean} [returnDefaultValue]
26915
+ * @param {string} [hospitalName]
26331
26916
  * @param {Array<string>} [ids]
26332
26917
  * @param {string} [specialtyId]
26333
26918
  * @param {boolean} [consultationEnabled]
@@ -26344,20 +26929,8 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
26344
26929
  * @param {*} [options] Override http request option.
26345
26930
  * @throws {RequiredError}
26346
26931
  */
26347
- async apiV1DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsSimpleModel>> {
26348
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
26349
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
26350
- },
26351
- /**
26352
- *
26353
- * @param {string} slug
26354
- * @param {string} [languageCode]
26355
- * @param {boolean} [returnDefaultValue]
26356
- * @param {*} [options] Override http request option.
26357
- * @throws {RequiredError}
26358
- */
26359
- async apiV1DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorModel>> {
26360
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsSlugGet(slug, languageCode, returnDefaultValue, options);
26932
+ async apiV1DoctorsSimpleGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DoctorsSimpleModel>> {
26933
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1DoctorsSimpleGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
26361
26934
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
26362
26935
  },
26363
26936
  }
@@ -26370,52 +26943,6 @@ export const DoctorsApiFp = function(configuration?: Configuration) {
26370
26943
  export const DoctorsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
26371
26944
  const localVarFp = DoctorsApiFp(configuration)
26372
26945
  return {
26373
- /**
26374
- *
26375
- * @summary Get all doctor affiliations.
26376
- * @param {string} doctorId
26377
- * @param {string} [hospitalName]
26378
- * @param {number} [page]
26379
- * @param {number} [limit]
26380
- * @param {Date} [lastRetrieved]
26381
- * @param {*} [options] Override http request option.
26382
- * @throws {RequiredError}
26383
- */
26384
- apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorAffiliationsModel> {
26385
- return localVarFp.apiV1DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
26386
- },
26387
- /**
26388
- *
26389
- * @summary Delete doctor affiliation.
26390
- * @param {string} doctorId
26391
- * @param {string} hospitalId
26392
- * @param {*} [options] Override http request option.
26393
- * @throws {RequiredError}
26394
- */
26395
- apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: any): AxiosPromise<boolean> {
26396
- return localVarFp.apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId, hospitalId, options).then((request) => request(axios, basePath));
26397
- },
26398
- /**
26399
- *
26400
- * @summary Get doctor affiliation.
26401
- * @param {string} doctorId
26402
- * @param {string} hospitalId
26403
- * @param {*} [options] Override http request option.
26404
- * @throws {RequiredError}
26405
- */
26406
- apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: any): AxiosPromise<DoctorAffiliationModel> {
26407
- return localVarFp.apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId, hospitalId, options).then((request) => request(axios, basePath));
26408
- },
26409
- /**
26410
- *
26411
- * @param {string} doctorId
26412
- * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
26413
- * @param {*} [options] Override http request option.
26414
- * @throws {RequiredError}
26415
- */
26416
- apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: any): AxiosPromise<DoctorAffiliationModel> {
26417
- return localVarFp.apiV1DoctorsDoctorIdAffiliationsPost(doctorId, createDoctorAffiliationCommand, options).then((request) => request(axios, basePath));
26418
- },
26419
26946
  /**
26420
26947
  *
26421
26948
  * @summary Delete DoctorCertificate.
@@ -26555,13 +27082,11 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
26555
27082
  /**
26556
27083
  *
26557
27084
  * @param {string} doctorId
26558
- * @param {string} [languageCode]
26559
- * @param {boolean} [returnDefaultValue]
26560
27085
  * @param {*} [options] Override http request option.
26561
27086
  * @throws {RequiredError}
26562
27087
  */
26563
- apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<DoctorModel> {
26564
- return localVarFp.apiV1DoctorsDoctorIdGet(doctorId, languageCode, returnDefaultValue, options).then((request) => request(axios, basePath));
27088
+ apiV1DoctorsDoctorIdGet(doctorId: string, options?: any): AxiosPromise<DoctorModel> {
27089
+ return localVarFp.apiV1DoctorsDoctorIdGet(doctorId, options).then((request) => request(axios, basePath));
26565
27090
  },
26566
27091
  /**
26567
27092
  *
@@ -26761,14 +27286,15 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
26761
27286
  * @param {string} [doctorName]
26762
27287
  * @param {string} [specialtyId]
26763
27288
  * @param {string} [specialtyName]
27289
+ * @param {string} [languageCode]
26764
27290
  * @param {number} [page]
26765
27291
  * @param {number} [limit]
26766
27292
  * @param {Date} [lastRetrieved]
26767
27293
  * @param {*} [options] Override http request option.
26768
27294
  * @throws {RequiredError}
26769
27295
  */
26770
- apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorSpecialtiesModel> {
26771
- return localVarFp.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
27296
+ apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorSpecialtiesModel> {
27297
+ return localVarFp.apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
26772
27298
  },
26773
27299
  /**
26774
27300
  *
@@ -26819,8 +27345,7 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
26819
27345
  *
26820
27346
  * @summary Get all Doctors.
26821
27347
  * @param {string} [hospitalId]
26822
- * @param {string} [languageCode]
26823
- * @param {boolean} [returnDefaultValue]
27348
+ * @param {string} [hospitalName]
26824
27349
  * @param {Array<string>} [ids]
26825
27350
  * @param {string} [specialtyId]
26826
27351
  * @param {boolean} [consultationEnabled]
@@ -26837,8 +27362,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
26837
27362
  * @param {*} [options] Override http request option.
26838
27363
  * @throws {RequiredError}
26839
27364
  */
26840
- apiV1DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsModel> {
26841
- return localVarFp.apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
27365
+ apiV1DoctorsGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsModel> {
27366
+ return localVarFp.apiV1DoctorsGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
26842
27367
  },
26843
27368
  /**
26844
27369
  *
@@ -26854,8 +27379,7 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
26854
27379
  *
26855
27380
  * @summary Get all Doctors.
26856
27381
  * @param {string} [hospitalId]
26857
- * @param {string} [languageCode]
26858
- * @param {boolean} [returnDefaultValue]
27382
+ * @param {string} [hospitalName]
26859
27383
  * @param {Array<string>} [ids]
26860
27384
  * @param {string} [specialtyId]
26861
27385
  * @param {boolean} [consultationEnabled]
@@ -26872,19 +27396,8 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
26872
27396
  * @param {*} [options] Override http request option.
26873
27397
  * @throws {RequiredError}
26874
27398
  */
26875
- apiV1DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsSimpleModel> {
26876
- return localVarFp.apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
26877
- },
26878
- /**
26879
- *
26880
- * @param {string} slug
26881
- * @param {string} [languageCode]
26882
- * @param {boolean} [returnDefaultValue]
26883
- * @param {*} [options] Override http request option.
26884
- * @throws {RequiredError}
26885
- */
26886
- apiV1DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<DoctorModel> {
26887
- return localVarFp.apiV1DoctorsSlugGet(slug, languageCode, returnDefaultValue, options).then((request) => request(axios, basePath));
27399
+ apiV1DoctorsSimpleGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<DoctorsSimpleModel> {
27400
+ return localVarFp.apiV1DoctorsSimpleGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
26888
27401
  },
26889
27402
  };
26890
27403
  };
@@ -26896,60 +27409,6 @@ export const DoctorsApiFactory = function (configuration?: Configuration, basePa
26896
27409
  * @extends {BaseAPI}
26897
27410
  */
26898
27411
  export class DoctorsApi extends BaseAPI {
26899
- /**
26900
- *
26901
- * @summary Get all doctor affiliations.
26902
- * @param {string} doctorId
26903
- * @param {string} [hospitalName]
26904
- * @param {number} [page]
26905
- * @param {number} [limit]
26906
- * @param {Date} [lastRetrieved]
26907
- * @param {*} [options] Override http request option.
26908
- * @throws {RequiredError}
26909
- * @memberof DoctorsApi
26910
- */
26911
- public apiV1DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
26912
- return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdAffiliationsGet(doctorId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
26913
- }
26914
-
26915
- /**
26916
- *
26917
- * @summary Delete doctor affiliation.
26918
- * @param {string} doctorId
26919
- * @param {string} hospitalId
26920
- * @param {*} [options] Override http request option.
26921
- * @throws {RequiredError}
26922
- * @memberof DoctorsApi
26923
- */
26924
- public apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId: string, hospitalId: string, options?: AxiosRequestConfig) {
26925
- return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdAffiliationsHospitalIdDelete(doctorId, hospitalId, options).then((request) => request(this.axios, this.basePath));
26926
- }
26927
-
26928
- /**
26929
- *
26930
- * @summary Get doctor affiliation.
26931
- * @param {string} doctorId
26932
- * @param {string} hospitalId
26933
- * @param {*} [options] Override http request option.
26934
- * @throws {RequiredError}
26935
- * @memberof DoctorsApi
26936
- */
26937
- public apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig) {
26938
- return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId, hospitalId, options).then((request) => request(this.axios, this.basePath));
26939
- }
26940
-
26941
- /**
26942
- *
26943
- * @param {string} doctorId
26944
- * @param {CreateDoctorAffiliationCommand} [createDoctorAffiliationCommand]
26945
- * @param {*} [options] Override http request option.
26946
- * @throws {RequiredError}
26947
- * @memberof DoctorsApi
26948
- */
26949
- public apiV1DoctorsDoctorIdAffiliationsPost(doctorId: string, createDoctorAffiliationCommand?: CreateDoctorAffiliationCommand, options?: AxiosRequestConfig) {
26950
- return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdAffiliationsPost(doctorId, createDoctorAffiliationCommand, options).then((request) => request(this.axios, this.basePath));
26951
- }
26952
-
26953
27412
  /**
26954
27413
  *
26955
27414
  * @summary Delete DoctorCertificate.
@@ -27111,14 +27570,12 @@ export class DoctorsApi extends BaseAPI {
27111
27570
  /**
27112
27571
  *
27113
27572
  * @param {string} doctorId
27114
- * @param {string} [languageCode]
27115
- * @param {boolean} [returnDefaultValue]
27116
27573
  * @param {*} [options] Override http request option.
27117
27574
  * @throws {RequiredError}
27118
27575
  * @memberof DoctorsApi
27119
27576
  */
27120
- public apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) {
27121
- return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdGet(doctorId, languageCode, returnDefaultValue, options).then((request) => request(this.axios, this.basePath));
27577
+ public apiV1DoctorsDoctorIdGet(doctorId: string, options?: AxiosRequestConfig) {
27578
+ return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdGet(doctorId, options).then((request) => request(this.axios, this.basePath));
27122
27579
  }
27123
27580
 
27124
27581
  /**
@@ -27351,6 +27808,7 @@ export class DoctorsApi extends BaseAPI {
27351
27808
  * @param {string} [doctorName]
27352
27809
  * @param {string} [specialtyId]
27353
27810
  * @param {string} [specialtyName]
27811
+ * @param {string} [languageCode]
27354
27812
  * @param {number} [page]
27355
27813
  * @param {number} [limit]
27356
27814
  * @param {Date} [lastRetrieved]
@@ -27358,8 +27816,8 @@ export class DoctorsApi extends BaseAPI {
27358
27816
  * @throws {RequiredError}
27359
27817
  * @memberof DoctorsApi
27360
27818
  */
27361
- public apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
27362
- return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
27819
+ public apiV1DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
27820
+ return DoctorsApiFp(this.configuration).apiV1DoctorsDoctorIdSpecialtiesGet(doctorId, doctorName, specialtyId, specialtyName, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
27363
27821
  }
27364
27822
 
27365
27823
  /**
@@ -27419,8 +27877,7 @@ export class DoctorsApi extends BaseAPI {
27419
27877
  *
27420
27878
  * @summary Get all Doctors.
27421
27879
  * @param {string} [hospitalId]
27422
- * @param {string} [languageCode]
27423
- * @param {boolean} [returnDefaultValue]
27880
+ * @param {string} [hospitalName]
27424
27881
  * @param {Array<string>} [ids]
27425
27882
  * @param {string} [specialtyId]
27426
27883
  * @param {boolean} [consultationEnabled]
@@ -27438,8 +27895,8 @@ export class DoctorsApi extends BaseAPI {
27438
27895
  * @throws {RequiredError}
27439
27896
  * @memberof DoctorsApi
27440
27897
  */
27441
- public apiV1DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
27442
- return DoctorsApiFp(this.configuration).apiV1DoctorsGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
27898
+ public apiV1DoctorsGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
27899
+ return DoctorsApiFp(this.configuration).apiV1DoctorsGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
27443
27900
  }
27444
27901
 
27445
27902
  /**
@@ -27458,8 +27915,7 @@ export class DoctorsApi extends BaseAPI {
27458
27915
  *
27459
27916
  * @summary Get all Doctors.
27460
27917
  * @param {string} [hospitalId]
27461
- * @param {string} [languageCode]
27462
- * @param {boolean} [returnDefaultValue]
27918
+ * @param {string} [hospitalName]
27463
27919
  * @param {Array<string>} [ids]
27464
27920
  * @param {string} [specialtyId]
27465
27921
  * @param {boolean} [consultationEnabled]
@@ -27477,21 +27933,8 @@ export class DoctorsApi extends BaseAPI {
27477
27933
  * @throws {RequiredError}
27478
27934
  * @memberof DoctorsApi
27479
27935
  */
27480
- public apiV1DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
27481
- return DoctorsApiFp(this.configuration).apiV1DoctorsSimpleGet(hospitalId, languageCode, returnDefaultValue, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
27482
- }
27483
-
27484
- /**
27485
- *
27486
- * @param {string} slug
27487
- * @param {string} [languageCode]
27488
- * @param {boolean} [returnDefaultValue]
27489
- * @param {*} [options] Override http request option.
27490
- * @throws {RequiredError}
27491
- * @memberof DoctorsApi
27492
- */
27493
- public apiV1DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) {
27494
- return DoctorsApiFp(this.configuration).apiV1DoctorsSlugGet(slug, languageCode, returnDefaultValue, options).then((request) => request(this.axios, this.basePath));
27936
+ public apiV1DoctorsSimpleGet(hospitalId?: string, hospitalName?: string, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
27937
+ return DoctorsApiFp(this.configuration).apiV1DoctorsSimpleGet(hospitalId, hospitalName, ids, specialtyId, consultationEnabled, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
27495
27938
  }
27496
27939
  }
27497
27940
 
@@ -30050,7 +30493,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
30050
30493
  * @param {boolean} [showHidden]
30051
30494
  * @param {string} [languageCode]
30052
30495
  * @param {Array<string>} [ids]
30053
- * @param {boolean} [returnDefaultValue]
30054
30496
  * @param {boolean} [paymentEnabled]
30055
30497
  * @param {number} [page]
30056
30498
  * @param {number} [limit]
@@ -30058,7 +30500,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
30058
30500
  * @param {*} [options] Override http request option.
30059
30501
  * @throws {RequiredError}
30060
30502
  */
30061
- apiV1HospitalsGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
30503
+ apiV1HospitalsGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
30062
30504
  const localVarPath = `/api/v1/hospitals`;
30063
30505
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
30064
30506
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -30121,10 +30563,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
30121
30563
  localVarQueryParameter['Ids'] = ids;
30122
30564
  }
30123
30565
 
30124
- if (returnDefaultValue !== undefined) {
30125
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
30126
- }
30127
-
30128
30566
  if (paymentEnabled !== undefined) {
30129
30567
  localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
30130
30568
  }
@@ -31766,8 +32204,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
31766
32204
  * @param {string} [name]
31767
32205
  * @param {string} [slug]
31768
32206
  * @param {MarketingType} [marketingType]
31769
- * @param {boolean} [returnDefaultValue]
31770
- * @param {boolean} [includeServices]
31771
32207
  * @param {string} [languageCode]
31772
32208
  * @param {boolean} [showHidden]
31773
32209
  * @param {number} [page]
@@ -31776,7 +32212,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
31776
32212
  * @param {*} [options] Override http request option.
31777
32213
  * @throws {RequiredError}
31778
32214
  */
31779
- apiV1HospitalsHospitalIdSpecialtiesGet: async (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<RequestArgs> => {
32215
+ apiV1HospitalsHospitalIdSpecialtiesGet: async (hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
31780
32216
  // verify required parameter 'hospitalId' is not null or undefined
31781
32217
  assertParamExists('apiV1HospitalsHospitalIdSpecialtiesGet', 'hospitalId', hospitalId)
31782
32218
  const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties`
@@ -31828,14 +32264,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
31828
32264
  localVarQueryParameter['MarketingType'] = marketingType;
31829
32265
  }
31830
32266
 
31831
- if (returnDefaultValue !== undefined) {
31832
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
31833
- }
31834
-
31835
- if (includeServices !== undefined) {
31836
- localVarQueryParameter['IncludeServices'] = includeServices;
31837
- }
31838
-
31839
32267
  if (languageCode !== undefined) {
31840
32268
  localVarQueryParameter['LanguageCode'] = languageCode;
31841
32269
  }
@@ -32180,8 +32608,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
32180
32608
  * @param {string} [name]
32181
32609
  * @param {string} [slug]
32182
32610
  * @param {MarketingType} [marketingType]
32183
- * @param {boolean} [returnDefaultValue]
32184
- * @param {boolean} [includeServices]
32185
32611
  * @param {string} [languageCode]
32186
32612
  * @param {boolean} [showHidden]
32187
32613
  * @param {number} [page]
@@ -32190,7 +32616,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
32190
32616
  * @param {*} [options] Override http request option.
32191
32617
  * @throws {RequiredError}
32192
32618
  */
32193
- apiV1HospitalsHospitalIdSpecialtiesSimpleGet: async (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<RequestArgs> => {
32619
+ apiV1HospitalsHospitalIdSpecialtiesSimpleGet: async (hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
32194
32620
  // verify required parameter 'hospitalId' is not null or undefined
32195
32621
  assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSimpleGet', 'hospitalId', hospitalId)
32196
32622
  const localVarPath = `/api/v1/hospitals/{hospitalId}/specialties/simple`
@@ -32242,14 +32668,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
32242
32668
  localVarQueryParameter['MarketingType'] = marketingType;
32243
32669
  }
32244
32670
 
32245
- if (returnDefaultValue !== undefined) {
32246
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
32247
- }
32248
-
32249
- if (includeServices !== undefined) {
32250
- localVarQueryParameter['IncludeServices'] = includeServices;
32251
- }
32252
-
32253
32671
  if (languageCode !== undefined) {
32254
32672
  localVarQueryParameter['LanguageCode'] = languageCode;
32255
32673
  }
@@ -32388,12 +32806,10 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
32388
32806
  * @param {string} hospitalId
32389
32807
  * @param {string} specialtyId
32390
32808
  * @param {string} [languageCode]
32391
- * @param {boolean} [returnDefaultValue]
32392
- * @param {boolean} [includeServices]
32393
32809
  * @param {*} [options] Override http request option.
32394
32810
  * @throws {RequiredError}
32395
32811
  */
32396
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: async (hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
32812
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet: async (hospitalId: string, specialtyId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
32397
32813
  // verify required parameter 'hospitalId' is not null or undefined
32398
32814
  assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet', 'hospitalId', hospitalId)
32399
32815
  // verify required parameter 'specialtyId' is not null or undefined
@@ -32420,14 +32836,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
32420
32836
  localVarQueryParameter['languageCode'] = languageCode;
32421
32837
  }
32422
32838
 
32423
- if (returnDefaultValue !== undefined) {
32424
- localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
32425
- }
32426
-
32427
- if (includeServices !== undefined) {
32428
- localVarQueryParameter['includeServices'] = includeServices;
32429
- }
32430
-
32431
32839
 
32432
32840
 
32433
32841
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -32497,15 +32905,15 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
32497
32905
  * @param {MarketingType} [marketingType]
32498
32906
  * @param {Procedure} [procedure]
32499
32907
  * @param {Date} [created]
32908
+ * @param {boolean} [showHidden]
32500
32909
  * @param {string} [languageCode]
32501
- * @param {boolean} [returnDefaultValue]
32502
32910
  * @param {number} [page]
32503
32911
  * @param {number} [limit]
32504
32912
  * @param {Date} [lastRetrieved]
32505
32913
  * @param {*} [options] Override http request option.
32506
32914
  * @throws {RequiredError}
32507
32915
  */
32508
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: async (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<RequestArgs> => {
32916
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: async (hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
32509
32917
  // verify required parameter 'hospitalId' is not null or undefined
32510
32918
  assertParamExists('apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet', 'hospitalId', hospitalId)
32511
32919
  // verify required parameter 'specialtyId' is not null or undefined
@@ -32558,12 +32966,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
32558
32966
  created;
32559
32967
  }
32560
32968
 
32561
- if (languageCode !== undefined) {
32562
- localVarQueryParameter['LanguageCode'] = languageCode;
32969
+ if (showHidden !== undefined) {
32970
+ localVarQueryParameter['ShowHidden'] = showHidden;
32563
32971
  }
32564
32972
 
32565
- if (returnDefaultValue !== undefined) {
32566
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
32973
+ if (languageCode !== undefined) {
32974
+ localVarQueryParameter['LanguageCode'] = languageCode;
32567
32975
  }
32568
32976
 
32569
32977
  if (page !== undefined) {
@@ -33410,7 +33818,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
33410
33818
  * @param {boolean} [showHidden]
33411
33819
  * @param {string} [languageCode]
33412
33820
  * @param {Array<string>} [ids]
33413
- * @param {boolean} [returnDefaultValue]
33414
33821
  * @param {boolean} [paymentEnabled]
33415
33822
  * @param {number} [page]
33416
33823
  * @param {number} [limit]
@@ -33418,7 +33825,7 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
33418
33825
  * @param {*} [options] Override http request option.
33419
33826
  * @throws {RequiredError}
33420
33827
  */
33421
- apiV1HospitalsSimpleGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
33828
+ apiV1HospitalsSimpleGet: async (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
33422
33829
  const localVarPath = `/api/v1/hospitals/simple`;
33423
33830
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
33424
33831
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -33481,10 +33888,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
33481
33888
  localVarQueryParameter['Ids'] = ids;
33482
33889
  }
33483
33890
 
33484
- if (returnDefaultValue !== undefined) {
33485
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
33486
- }
33487
-
33488
33891
  if (paymentEnabled !== undefined) {
33489
33892
  localVarQueryParameter['PaymentEnabled'] = paymentEnabled;
33490
33893
  }
@@ -33585,7 +33988,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
33585
33988
  * @param {boolean} [showHidden]
33586
33989
  * @param {string} [languageCode]
33587
33990
  * @param {Array<string>} [ids]
33588
- * @param {boolean} [returnDefaultValue]
33589
33991
  * @param {boolean} [paymentEnabled]
33590
33992
  * @param {number} [page]
33591
33993
  * @param {number} [limit]
@@ -33593,8 +33995,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
33593
33995
  * @param {*} [options] Override http request option.
33594
33996
  * @throws {RequiredError}
33595
33997
  */
33596
- async apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>> {
33597
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
33998
+ async apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>> {
33999
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options);
33598
34000
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
33599
34001
  },
33600
34002
  /**
@@ -34045,8 +34447,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
34045
34447
  * @param {string} [name]
34046
34448
  * @param {string} [slug]
34047
34449
  * @param {MarketingType} [marketingType]
34048
- * @param {boolean} [returnDefaultValue]
34049
- * @param {boolean} [includeServices]
34050
34450
  * @param {string} [languageCode]
34051
34451
  * @param {boolean} [showHidden]
34052
34452
  * @param {number} [page]
@@ -34055,8 +34455,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
34055
34455
  * @param {*} [options] Override http request option.
34056
34456
  * @throws {RequiredError}
34057
34457
  */
34058
- async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesModel>> {
34059
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options);
34458
+ async apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesModel>> {
34459
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options);
34060
34460
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
34061
34461
  },
34062
34462
  /**
@@ -34153,8 +34553,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
34153
34553
  * @param {string} [name]
34154
34554
  * @param {string} [slug]
34155
34555
  * @param {MarketingType} [marketingType]
34156
- * @param {boolean} [returnDefaultValue]
34157
- * @param {boolean} [includeServices]
34158
34556
  * @param {string} [languageCode]
34159
34557
  * @param {boolean} [showHidden]
34160
34558
  * @param {number} [page]
@@ -34163,8 +34561,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
34163
34561
  * @param {*} [options] Override http request option.
34164
34562
  * @throws {RequiredError}
34165
34563
  */
34166
- async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesSimpleModel>> {
34167
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options);
34564
+ async apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtiesSimpleModel>> {
34565
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options);
34168
34566
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
34169
34567
  },
34170
34568
  /**
@@ -34200,13 +34598,11 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
34200
34598
  * @param {string} hospitalId
34201
34599
  * @param {string} specialtyId
34202
34600
  * @param {string} [languageCode]
34203
- * @param {boolean} [returnDefaultValue]
34204
- * @param {boolean} [includeServices]
34205
34601
  * @param {*} [options] Override http request option.
34206
34602
  * @throws {RequiredError}
34207
34603
  */
34208
- async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>> {
34209
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options);
34604
+ async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalSpecialtyModel>> {
34605
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options);
34210
34606
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
34211
34607
  },
34212
34608
  /**
@@ -34234,16 +34630,16 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
34234
34630
  * @param {MarketingType} [marketingType]
34235
34631
  * @param {Procedure} [procedure]
34236
34632
  * @param {Date} [created]
34633
+ * @param {boolean} [showHidden]
34237
34634
  * @param {string} [languageCode]
34238
- * @param {boolean} [returnDefaultValue]
34239
34635
  * @param {number} [page]
34240
34636
  * @param {number} [limit]
34241
34637
  * @param {Date} [lastRetrieved]
34242
34638
  * @param {*} [options] Override http request option.
34243
34639
  * @throws {RequiredError}
34244
34640
  */
34245
- async 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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServicesModel>> {
34246
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options);
34641
+ async apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServicesModel>> {
34642
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options);
34247
34643
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
34248
34644
  },
34249
34645
  /**
@@ -34478,7 +34874,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
34478
34874
  * @param {boolean} [showHidden]
34479
34875
  * @param {string} [languageCode]
34480
34876
  * @param {Array<string>} [ids]
34481
- * @param {boolean} [returnDefaultValue]
34482
34877
  * @param {boolean} [paymentEnabled]
34483
34878
  * @param {number} [page]
34484
34879
  * @param {number} [limit]
@@ -34486,8 +34881,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
34486
34881
  * @param {*} [options] Override http request option.
34487
34882
  * @throws {RequiredError}
34488
34883
  */
34489
- async apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>> {
34490
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options);
34884
+ async apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>> {
34885
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options);
34491
34886
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
34492
34887
  },
34493
34888
  /**
@@ -34526,7 +34921,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
34526
34921
  * @param {boolean} [showHidden]
34527
34922
  * @param {string} [languageCode]
34528
34923
  * @param {Array<string>} [ids]
34529
- * @param {boolean} [returnDefaultValue]
34530
34924
  * @param {boolean} [paymentEnabled]
34531
34925
  * @param {number} [page]
34532
34926
  * @param {number} [limit]
@@ -34534,8 +34928,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
34534
34928
  * @param {*} [options] Override http request option.
34535
34929
  * @throws {RequiredError}
34536
34930
  */
34537
- 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?: any): AxiosPromise<HospitalsModel> {
34538
- return localVarFp.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
34931
+ apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel> {
34932
+ return localVarFp.apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
34539
34933
  },
34540
34934
  /**
34541
34935
  *
@@ -34952,8 +35346,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
34952
35346
  * @param {string} [name]
34953
35347
  * @param {string} [slug]
34954
35348
  * @param {MarketingType} [marketingType]
34955
- * @param {boolean} [returnDefaultValue]
34956
- * @param {boolean} [includeServices]
34957
35349
  * @param {string} [languageCode]
34958
35350
  * @param {boolean} [showHidden]
34959
35351
  * @param {number} [page]
@@ -34962,8 +35354,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
34962
35354
  * @param {*} [options] Override http request option.
34963
35355
  * @throws {RequiredError}
34964
35356
  */
34965
- 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?: any): AxiosPromise<HospitalSpecialtiesModel> {
34966
- return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
35357
+ apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesModel> {
35358
+ return localVarFp.apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
34967
35359
  },
34968
35360
  /**
34969
35361
  *
@@ -35053,8 +35445,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
35053
35445
  * @param {string} [name]
35054
35446
  * @param {string} [slug]
35055
35447
  * @param {MarketingType} [marketingType]
35056
- * @param {boolean} [returnDefaultValue]
35057
- * @param {boolean} [includeServices]
35058
35448
  * @param {string} [languageCode]
35059
35449
  * @param {boolean} [showHidden]
35060
35450
  * @param {number} [page]
@@ -35063,8 +35453,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
35063
35453
  * @param {*} [options] Override http request option.
35064
35454
  * @throws {RequiredError}
35065
35455
  */
35066
- 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?: any): AxiosPromise<HospitalSpecialtiesSimpleModel> {
35067
- return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
35456
+ apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalSpecialtiesSimpleModel> {
35457
+ return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
35068
35458
  },
35069
35459
  /**
35070
35460
  *
@@ -35097,13 +35487,11 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
35097
35487
  * @param {string} hospitalId
35098
35488
  * @param {string} specialtyId
35099
35489
  * @param {string} [languageCode]
35100
- * @param {boolean} [returnDefaultValue]
35101
- * @param {boolean} [includeServices]
35102
35490
  * @param {*} [options] Override http request option.
35103
35491
  * @throws {RequiredError}
35104
35492
  */
35105
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: any): AxiosPromise<HospitalSpecialtyModel> {
35106
- return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options).then((request) => request(axios, basePath));
35493
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: any): AxiosPromise<HospitalSpecialtyModel> {
35494
+ return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then((request) => request(axios, basePath));
35107
35495
  },
35108
35496
  /**
35109
35497
  *
@@ -35129,16 +35517,16 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
35129
35517
  * @param {MarketingType} [marketingType]
35130
35518
  * @param {Procedure} [procedure]
35131
35519
  * @param {Date} [created]
35520
+ * @param {boolean} [showHidden]
35132
35521
  * @param {string} [languageCode]
35133
- * @param {boolean} [returnDefaultValue]
35134
35522
  * @param {number} [page]
35135
35523
  * @param {number} [limit]
35136
35524
  * @param {Date} [lastRetrieved]
35137
35525
  * @param {*} [options] Override http request option.
35138
35526
  * @throws {RequiredError}
35139
35527
  */
35140
- 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?: any): AxiosPromise<HospitalServicesModel> {
35141
- return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
35528
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalServicesModel> {
35529
+ return localVarFp.apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
35142
35530
  },
35143
35531
  /**
35144
35532
  *
@@ -35356,7 +35744,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
35356
35744
  * @param {boolean} [showHidden]
35357
35745
  * @param {string} [languageCode]
35358
35746
  * @param {Array<string>} [ids]
35359
- * @param {boolean} [returnDefaultValue]
35360
35747
  * @param {boolean} [paymentEnabled]
35361
35748
  * @param {number} [page]
35362
35749
  * @param {number} [limit]
@@ -35364,8 +35751,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
35364
35751
  * @param {*} [options] Override http request option.
35365
35752
  * @throws {RequiredError}
35366
35753
  */
35367
- 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?: any): AxiosPromise<HospitalsSimpleModel> {
35368
- return localVarFp.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
35754
+ apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel> {
35755
+ return localVarFp.apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
35369
35756
  },
35370
35757
  /**
35371
35758
  *
@@ -35402,7 +35789,6 @@ export class HospitalsApi extends BaseAPI {
35402
35789
  * @param {boolean} [showHidden]
35403
35790
  * @param {string} [languageCode]
35404
35791
  * @param {Array<string>} [ids]
35405
- * @param {boolean} [returnDefaultValue]
35406
35792
  * @param {boolean} [paymentEnabled]
35407
35793
  * @param {number} [page]
35408
35794
  * @param {number} [limit]
@@ -35411,8 +35797,8 @@ export class HospitalsApi extends BaseAPI {
35411
35797
  * @throws {RequiredError}
35412
35798
  * @memberof HospitalsApi
35413
35799
  */
35414
- public apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
35415
- return HospitalsApiFp(this.configuration).apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
35800
+ public apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
35801
+ return HospitalsApiFp(this.configuration).apiV1HospitalsGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
35416
35802
  }
35417
35803
 
35418
35804
  /**
@@ -35896,8 +36282,6 @@ export class HospitalsApi extends BaseAPI {
35896
36282
  * @param {string} [name]
35897
36283
  * @param {string} [slug]
35898
36284
  * @param {MarketingType} [marketingType]
35899
- * @param {boolean} [returnDefaultValue]
35900
- * @param {boolean} [includeServices]
35901
36285
  * @param {string} [languageCode]
35902
36286
  * @param {boolean} [showHidden]
35903
36287
  * @param {number} [page]
@@ -35907,8 +36291,8 @@ export class HospitalsApi extends BaseAPI {
35907
36291
  * @throws {RequiredError}
35908
36292
  * @memberof HospitalsApi
35909
36293
  */
35910
- public 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) {
35911
- return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
36294
+ public apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
36295
+ return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
35912
36296
  }
35913
36297
 
35914
36298
  /**
@@ -36011,8 +36395,6 @@ export class HospitalsApi extends BaseAPI {
36011
36395
  * @param {string} [name]
36012
36396
  * @param {string} [slug]
36013
36397
  * @param {MarketingType} [marketingType]
36014
- * @param {boolean} [returnDefaultValue]
36015
- * @param {boolean} [includeServices]
36016
36398
  * @param {string} [languageCode]
36017
36399
  * @param {boolean} [showHidden]
36018
36400
  * @param {number} [page]
@@ -36022,8 +36404,8 @@ export class HospitalsApi extends BaseAPI {
36022
36404
  * @throws {RequiredError}
36023
36405
  * @memberof HospitalsApi
36024
36406
  */
36025
- public 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) {
36026
- return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, returnDefaultValue, includeServices, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
36407
+ public apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, hospitalSpecialtyId?: string, name?: string, slug?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
36408
+ return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSimpleGet(hospitalId, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, hospitalSpecialtyId, name, slug, marketingType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
36027
36409
  }
36028
36410
 
36029
36411
  /**
@@ -36061,14 +36443,12 @@ export class HospitalsApi extends BaseAPI {
36061
36443
  * @param {string} hospitalId
36062
36444
  * @param {string} specialtyId
36063
36445
  * @param {string} [languageCode]
36064
- * @param {boolean} [returnDefaultValue]
36065
- * @param {boolean} [includeServices]
36066
36446
  * @param {*} [options] Override http request option.
36067
36447
  * @throws {RequiredError}
36068
36448
  * @memberof HospitalsApi
36069
36449
  */
36070
- public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig) {
36071
- return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, returnDefaultValue, includeServices, options).then((request) => request(this.axios, this.basePath));
36450
+ public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, options?: AxiosRequestConfig) {
36451
+ return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId, specialtyId, languageCode, options).then((request) => request(this.axios, this.basePath));
36072
36452
  }
36073
36453
 
36074
36454
  /**
@@ -36097,8 +36477,8 @@ export class HospitalsApi extends BaseAPI {
36097
36477
  * @param {MarketingType} [marketingType]
36098
36478
  * @param {Procedure} [procedure]
36099
36479
  * @param {Date} [created]
36480
+ * @param {boolean} [showHidden]
36100
36481
  * @param {string} [languageCode]
36101
- * @param {boolean} [returnDefaultValue]
36102
36482
  * @param {number} [page]
36103
36483
  * @param {number} [limit]
36104
36484
  * @param {Date} [lastRetrieved]
@@ -36106,8 +36486,8 @@ export class HospitalsApi extends BaseAPI {
36106
36486
  * @throws {RequiredError}
36107
36487
  * @memberof HospitalsApi
36108
36488
  */
36109
- public 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) {
36110
- return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
36489
+ public apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, id?: string, name?: string, slug?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
36490
+ return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId, specialtyId, id, name, slug, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
36111
36491
  }
36112
36492
 
36113
36493
  /**
@@ -36358,7 +36738,6 @@ export class HospitalsApi extends BaseAPI {
36358
36738
  * @param {boolean} [showHidden]
36359
36739
  * @param {string} [languageCode]
36360
36740
  * @param {Array<string>} [ids]
36361
- * @param {boolean} [returnDefaultValue]
36362
36741
  * @param {boolean} [paymentEnabled]
36363
36742
  * @param {number} [page]
36364
36743
  * @param {number} [limit]
@@ -36367,8 +36746,8 @@ export class HospitalsApi extends BaseAPI {
36367
36746
  * @throws {RequiredError}
36368
36747
  * @memberof HospitalsApi
36369
36748
  */
36370
- public apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
36371
- return HospitalsApiFp(this.configuration).apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, returnDefaultValue, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
36749
+ public apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
36750
+ return HospitalsApiFp(this.configuration).apiV1HospitalsSimpleGet(hospitalId, name, countryId, created, marketingType, specialtyTypeId, specialtyId, exceptHospitalId, showHidden, languageCode, ids, paymentEnabled, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
36372
36751
  }
36373
36752
 
36374
36753
  /**
@@ -37107,14 +37486,16 @@ export const ManagersApiAxiosParamCreator = function (configuration?: Configurat
37107
37486
  *
37108
37487
  * @summary Get all manager affiliations.
37109
37488
  * @param {string} managerId
37489
+ * @param {string} [hospitalId]
37110
37490
  * @param {string} [hospitalName]
37491
+ * @param {string} [languageCode]
37111
37492
  * @param {number} [page]
37112
37493
  * @param {number} [limit]
37113
37494
  * @param {Date} [lastRetrieved]
37114
37495
  * @param {*} [options] Override http request option.
37115
37496
  * @throws {RequiredError}
37116
37497
  */
37117
- apiV1ManagersManagerIdAffiliationsGet: async (managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
37498
+ apiV1ManagersManagerIdAffiliationsGet: async (managerId: string, hospitalId?: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
37118
37499
  // verify required parameter 'managerId' is not null or undefined
37119
37500
  assertParamExists('apiV1ManagersManagerIdAffiliationsGet', 'managerId', managerId)
37120
37501
  const localVarPath = `/api/v1/managers/{managerId}/affiliations`
@@ -37134,10 +37515,18 @@ export const ManagersApiAxiosParamCreator = function (configuration?: Configurat
37134
37515
  // oauth required
37135
37516
  await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
37136
37517
 
37518
+ if (hospitalId !== undefined) {
37519
+ localVarQueryParameter['HospitalId'] = hospitalId;
37520
+ }
37521
+
37137
37522
  if (hospitalName !== undefined) {
37138
37523
  localVarQueryParameter['HospitalName'] = hospitalName;
37139
37524
  }
37140
37525
 
37526
+ if (languageCode !== undefined) {
37527
+ localVarQueryParameter['LanguageCode'] = languageCode;
37528
+ }
37529
+
37141
37530
  if (page !== undefined) {
37142
37531
  localVarQueryParameter['page'] = page;
37143
37532
  }
@@ -37479,15 +37868,17 @@ export const ManagersApiFp = function(configuration?: Configuration) {
37479
37868
  *
37480
37869
  * @summary Get all manager affiliations.
37481
37870
  * @param {string} managerId
37871
+ * @param {string} [hospitalId]
37482
37872
  * @param {string} [hospitalName]
37873
+ * @param {string} [languageCode]
37483
37874
  * @param {number} [page]
37484
37875
  * @param {number} [limit]
37485
37876
  * @param {Date} [lastRetrieved]
37486
37877
  * @param {*} [options] Override http request option.
37487
37878
  * @throws {RequiredError}
37488
37879
  */
37489
- async apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagerAffiliationsModel>> {
37490
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalName, page, limit, lastRetrieved, options);
37880
+ async apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalId?: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagerAffiliationsModel>> {
37881
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options);
37491
37882
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
37492
37883
  },
37493
37884
  /**
@@ -37604,15 +37995,17 @@ export const ManagersApiFactory = function (configuration?: Configuration, baseP
37604
37995
  *
37605
37996
  * @summary Get all manager affiliations.
37606
37997
  * @param {string} managerId
37998
+ * @param {string} [hospitalId]
37607
37999
  * @param {string} [hospitalName]
38000
+ * @param {string} [languageCode]
37608
38001
  * @param {number} [page]
37609
38002
  * @param {number} [limit]
37610
38003
  * @param {Date} [lastRetrieved]
37611
38004
  * @param {*} [options] Override http request option.
37612
38005
  * @throws {RequiredError}
37613
38006
  */
37614
- apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ManagerAffiliationsModel> {
37615
- return localVarFp.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
38007
+ apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalId?: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ManagerAffiliationsModel> {
38008
+ return localVarFp.apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
37616
38009
  },
37617
38010
  /**
37618
38011
  *
@@ -37723,7 +38116,9 @@ export class ManagersApi extends BaseAPI {
37723
38116
  *
37724
38117
  * @summary Get all manager affiliations.
37725
38118
  * @param {string} managerId
38119
+ * @param {string} [hospitalId]
37726
38120
  * @param {string} [hospitalName]
38121
+ * @param {string} [languageCode]
37727
38122
  * @param {number} [page]
37728
38123
  * @param {number} [limit]
37729
38124
  * @param {Date} [lastRetrieved]
@@ -37731,8 +38126,8 @@ export class ManagersApi extends BaseAPI {
37731
38126
  * @throws {RequiredError}
37732
38127
  * @memberof ManagersApi
37733
38128
  */
37734
- public apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
37735
- return ManagersApiFp(this.configuration).apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalName, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
38129
+ public apiV1ManagersManagerIdAffiliationsGet(managerId: string, hospitalId?: string, hospitalName?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
38130
+ return ManagersApiFp(this.configuration).apiV1ManagersManagerIdAffiliationsGet(managerId, hospitalId, hospitalName, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
37736
38131
  }
37737
38132
 
37738
38133
  /**
@@ -40533,13 +40928,14 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
40533
40928
  * @param {number} [rate]
40534
40929
  * @param {ReviewType} [reviewType]
40535
40930
  * @param {string} [languageCode]
40931
+ * @param {boolean} [showHidden]
40536
40932
  * @param {number} [page]
40537
40933
  * @param {number} [limit]
40538
40934
  * @param {Date} [lastRetrieved]
40539
40935
  * @param {*} [options] Override http request option.
40540
40936
  * @throws {RequiredError}
40541
40937
  */
40542
- apiV1ServicereviewsGet: async (serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
40938
+ apiV1ServicereviewsGet: async (serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
40543
40939
  const localVarPath = `/api/v1/servicereviews`;
40544
40940
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
40545
40941
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -40592,6 +40988,10 @@ export const ServiceReviewsApiAxiosParamCreator = function (configuration?: Conf
40592
40988
  localVarQueryParameter['LanguageCode'] = languageCode;
40593
40989
  }
40594
40990
 
40991
+ if (showHidden !== undefined) {
40992
+ localVarQueryParameter['ShowHidden'] = showHidden;
40993
+ }
40994
+
40595
40995
  if (page !== undefined) {
40596
40996
  localVarQueryParameter['page'] = page;
40597
40997
  }
@@ -41031,14 +41431,15 @@ export const ServiceReviewsApiFp = function(configuration?: Configuration) {
41031
41431
  * @param {number} [rate]
41032
41432
  * @param {ReviewType} [reviewType]
41033
41433
  * @param {string} [languageCode]
41434
+ * @param {boolean} [showHidden]
41034
41435
  * @param {number} [page]
41035
41436
  * @param {number} [limit]
41036
41437
  * @param {Date} [lastRetrieved]
41037
41438
  * @param {*} [options] Override http request option.
41038
41439
  * @throws {RequiredError}
41039
41440
  */
41040
- async apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
41041
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options);
41441
+ async apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceReviewsModel>> {
41442
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options);
41042
41443
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
41043
41444
  },
41044
41445
  /**
@@ -41172,14 +41573,15 @@ export const ServiceReviewsApiFactory = function (configuration?: Configuration,
41172
41573
  * @param {number} [rate]
41173
41574
  * @param {ReviewType} [reviewType]
41174
41575
  * @param {string} [languageCode]
41576
+ * @param {boolean} [showHidden]
41175
41577
  * @param {number} [page]
41176
41578
  * @param {number} [limit]
41177
41579
  * @param {Date} [lastRetrieved]
41178
41580
  * @param {*} [options] Override http request option.
41179
41581
  * @throws {RequiredError}
41180
41582
  */
41181
- apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceReviewsModel> {
41182
- return localVarFp.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
41583
+ apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ServiceReviewsModel> {
41584
+ return localVarFp.apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
41183
41585
  },
41184
41586
  /**
41185
41587
  *
@@ -41303,6 +41705,7 @@ export class ServiceReviewsApi extends BaseAPI {
41303
41705
  * @param {number} [rate]
41304
41706
  * @param {ReviewType} [reviewType]
41305
41707
  * @param {string} [languageCode]
41708
+ * @param {boolean} [showHidden]
41306
41709
  * @param {number} [page]
41307
41710
  * @param {number} [limit]
41308
41711
  * @param {Date} [lastRetrieved]
@@ -41310,8 +41713,8 @@ export class ServiceReviewsApi extends BaseAPI {
41310
41713
  * @throws {RequiredError}
41311
41714
  * @memberof ServiceReviewsApi
41312
41715
  */
41313
- public apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
41314
- return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
41716
+ public apiV1ServicereviewsGet(serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
41717
+ return ServiceReviewsApiFp(this.configuration).apiV1ServicereviewsGet(serviceId, serviceName, patientId, patientName, gender, recommended, rate, reviewType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
41315
41718
  }
41316
41719
 
41317
41720
  /**
@@ -41457,15 +41860,15 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
41457
41860
  * @param {MarketingType} [marketingType]
41458
41861
  * @param {Procedure} [procedure]
41459
41862
  * @param {Date} [created]
41863
+ * @param {boolean} [showHidden]
41460
41864
  * @param {string} [languageCode]
41461
- * @param {boolean} [returnDefaultValue]
41462
41865
  * @param {number} [page]
41463
41866
  * @param {number} [limit]
41464
41867
  * @param {Date} [lastRetrieved]
41465
41868
  * @param {*} [options] Override http request option.
41466
41869
  * @throws {RequiredError}
41467
41870
  */
41468
- apiV1ServicesGet: async (id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
41871
+ apiV1ServicesGet: async (id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
41469
41872
  const localVarPath = `/api/v1/services`;
41470
41873
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
41471
41874
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -41540,12 +41943,12 @@ export const ServicesApiAxiosParamCreator = function (configuration?: Configurat
41540
41943
  created;
41541
41944
  }
41542
41945
 
41543
- if (languageCode !== undefined) {
41544
- localVarQueryParameter['LanguageCode'] = languageCode;
41946
+ if (showHidden !== undefined) {
41947
+ localVarQueryParameter['ShowHidden'] = showHidden;
41545
41948
  }
41546
41949
 
41547
- if (returnDefaultValue !== undefined) {
41548
- localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
41950
+ if (languageCode !== undefined) {
41951
+ localVarQueryParameter['LanguageCode'] = languageCode;
41549
41952
  }
41550
41953
 
41551
41954
  if (page !== undefined) {
@@ -41694,16 +42097,16 @@ export const ServicesApiFp = function(configuration?: Configuration) {
41694
42097
  * @param {MarketingType} [marketingType]
41695
42098
  * @param {Procedure} [procedure]
41696
42099
  * @param {Date} [created]
42100
+ * @param {boolean} [showHidden]
41697
42101
  * @param {string} [languageCode]
41698
- * @param {boolean} [returnDefaultValue]
41699
42102
  * @param {number} [page]
41700
42103
  * @param {number} [limit]
41701
42104
  * @param {Date} [lastRetrieved]
41702
42105
  * @param {*} [options] Override http request option.
41703
42106
  * @throws {RequiredError}
41704
42107
  */
41705
- async apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServicesModel>> {
41706
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options);
42108
+ async apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServicesModel>> {
42109
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options);
41707
42110
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
41708
42111
  },
41709
42112
  /**
@@ -41757,16 +42160,16 @@ export const ServicesApiFactory = function (configuration?: Configuration, baseP
41757
42160
  * @param {MarketingType} [marketingType]
41758
42161
  * @param {Procedure} [procedure]
41759
42162
  * @param {Date} [created]
42163
+ * @param {boolean} [showHidden]
41760
42164
  * @param {string} [languageCode]
41761
- * @param {boolean} [returnDefaultValue]
41762
42165
  * @param {number} [page]
41763
42166
  * @param {number} [limit]
41764
42167
  * @param {Date} [lastRetrieved]
41765
42168
  * @param {*} [options] Override http request option.
41766
42169
  * @throws {RequiredError}
41767
42170
  */
41768
- 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?: any): AxiosPromise<HospitalServicesModel> {
41769
- return localVarFp.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
42171
+ apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalServicesModel> {
42172
+ return localVarFp.apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
41770
42173
  },
41771
42174
  /**
41772
42175
  *
@@ -41817,8 +42220,8 @@ export class ServicesApi extends BaseAPI {
41817
42220
  * @param {MarketingType} [marketingType]
41818
42221
  * @param {Procedure} [procedure]
41819
42222
  * @param {Date} [created]
42223
+ * @param {boolean} [showHidden]
41820
42224
  * @param {string} [languageCode]
41821
- * @param {boolean} [returnDefaultValue]
41822
42225
  * @param {number} [page]
41823
42226
  * @param {number} [limit]
41824
42227
  * @param {Date} [lastRetrieved]
@@ -41826,8 +42229,8 @@ export class ServicesApi extends BaseAPI {
41826
42229
  * @throws {RequiredError}
41827
42230
  * @memberof ServicesApi
41828
42231
  */
41829
- public apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
41830
- return ServicesApiFp(this.configuration).apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
42232
+ public apiV1ServicesGet(id?: string, name?: string, slug?: string, hospitalId?: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, showHidden?: boolean, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
42233
+ return ServicesApiFp(this.configuration).apiV1ServicesGet(id, name, slug, hospitalId, hospitalName, hospitalSlug, specialtyId, specialtyName, specialtyTypeId, specialtyTypeName, serviceCategoryId, marketingType, procedure, created, showHidden, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
41831
42234
  }
41832
42235
 
41833
42236
  /**