ch-admin-api-client-typescript 2.9.2 → 2.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -12,6 +12,201 @@
12
12
  import { Configuration } from './configuration';
13
13
  import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
14
14
  import { RequestArgs, BaseAPI } from './base';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface AboutUsPageItemModel
19
+ */
20
+ export interface AboutUsPageItemModel {
21
+ /**
22
+ *
23
+ * @type {string}
24
+ * @memberof AboutUsPageItemModel
25
+ */
26
+ 'id'?: string;
27
+ /**
28
+ *
29
+ * @type {string}
30
+ * @memberof AboutUsPageItemModel
31
+ */
32
+ 'hospitalId'?: string;
33
+ /**
34
+ *
35
+ * @type {string}
36
+ * @memberof AboutUsPageItemModel
37
+ */
38
+ 'hospitalName'?: string | null;
39
+ /**
40
+ *
41
+ * @type {string}
42
+ * @memberof AboutUsPageItemModel
43
+ */
44
+ 'hospitalSlug'?: string | null;
45
+ /**
46
+ *
47
+ * @type {string}
48
+ * @memberof AboutUsPageItemModel
49
+ */
50
+ 'overviewTitle'?: string | null;
51
+ /**
52
+ *
53
+ * @type {string}
54
+ * @memberof AboutUsPageItemModel
55
+ */
56
+ 'overview'?: string | null;
57
+ /**
58
+ *
59
+ * @type {string}
60
+ * @memberof AboutUsPageItemModel
61
+ */
62
+ 'content'?: string | null;
63
+ /**
64
+ *
65
+ * @type {string}
66
+ * @memberof AboutUsPageItemModel
67
+ */
68
+ 'customStyle'?: string | null;
69
+ /**
70
+ *
71
+ * @type {string}
72
+ * @memberof AboutUsPageItemModel
73
+ */
74
+ 'background'?: string | null;
75
+ /**
76
+ *
77
+ * @type {string}
78
+ * @memberof AboutUsPageItemModel
79
+ */
80
+ 'backgroundThumbnail'?: string | null;
81
+ /**
82
+ *
83
+ * @type {boolean}
84
+ * @memberof AboutUsPageItemModel
85
+ */
86
+ 'confirmed'?: boolean;
87
+ /**
88
+ *
89
+ * @type {Array<MediaModel>}
90
+ * @memberof AboutUsPageItemModel
91
+ */
92
+ 'medias'?: Array<MediaModel> | null;
93
+ /**
94
+ *
95
+ * @type {AuditableEntity}
96
+ * @memberof AboutUsPageItemModel
97
+ */
98
+ 'auditableEntity'?: AuditableEntity;
99
+ }
100
+ /**
101
+ *
102
+ * @export
103
+ * @interface AboutUsPageModel
104
+ */
105
+ export interface AboutUsPageModel {
106
+ /**
107
+ *
108
+ * @type {string}
109
+ * @memberof AboutUsPageModel
110
+ */
111
+ 'id'?: string;
112
+ /**
113
+ *
114
+ * @type {string}
115
+ * @memberof AboutUsPageModel
116
+ */
117
+ 'hospitalId'?: string;
118
+ /**
119
+ *
120
+ * @type {string}
121
+ * @memberof AboutUsPageModel
122
+ */
123
+ 'hospitalName'?: string | null;
124
+ /**
125
+ *
126
+ * @type {string}
127
+ * @memberof AboutUsPageModel
128
+ */
129
+ 'hospitalSlug'?: string | null;
130
+ /**
131
+ *
132
+ * @type {string}
133
+ * @memberof AboutUsPageModel
134
+ */
135
+ 'overviewTitle'?: string | null;
136
+ /**
137
+ *
138
+ * @type {string}
139
+ * @memberof AboutUsPageModel
140
+ */
141
+ 'overview'?: string | null;
142
+ /**
143
+ *
144
+ * @type {string}
145
+ * @memberof AboutUsPageModel
146
+ */
147
+ 'content'?: string | null;
148
+ /**
149
+ *
150
+ * @type {string}
151
+ * @memberof AboutUsPageModel
152
+ */
153
+ 'customStyle'?: string | null;
154
+ /**
155
+ *
156
+ * @type {string}
157
+ * @memberof AboutUsPageModel
158
+ */
159
+ 'background'?: string | null;
160
+ /**
161
+ *
162
+ * @type {string}
163
+ * @memberof AboutUsPageModel
164
+ */
165
+ 'backgroundThumbnail'?: string | null;
166
+ /**
167
+ *
168
+ * @type {boolean}
169
+ * @memberof AboutUsPageModel
170
+ */
171
+ 'confirmed'?: boolean;
172
+ /**
173
+ *
174
+ * @type {Array<MediaModel>}
175
+ * @memberof AboutUsPageModel
176
+ */
177
+ 'medias'?: Array<MediaModel> | null;
178
+ /**
179
+ *
180
+ * @type {AuditableEntity}
181
+ * @memberof AboutUsPageModel
182
+ */
183
+ 'auditableEntity'?: AuditableEntity;
184
+ /**
185
+ *
186
+ * @type {string}
187
+ * @memberof AboutUsPageModel
188
+ */
189
+ 'languageCode'?: string | null;
190
+ }
191
+ /**
192
+ *
193
+ * @export
194
+ * @interface AboutUsPagesModel
195
+ */
196
+ export interface AboutUsPagesModel {
197
+ /**
198
+ *
199
+ * @type {Array<AboutUsPageItemModel>}
200
+ * @memberof AboutUsPagesModel
201
+ */
202
+ 'items'?: Array<AboutUsPageItemModel> | null;
203
+ /**
204
+ *
205
+ * @type {PagedListMetaData}
206
+ * @memberof AboutUsPagesModel
207
+ */
208
+ 'metaData'?: PagedListMetaData;
209
+ }
15
210
  /**
16
211
  *
17
212
  * @export
@@ -887,6 +1082,12 @@ export interface BookingItemModel {
887
1082
  * @memberof BookingItemModel
888
1083
  */
889
1084
  'hospitalSlug'?: string | null;
1085
+ /**
1086
+ *
1087
+ * @type {string}
1088
+ * @memberof BookingItemModel
1089
+ */
1090
+ 'hospitalTimeZone'?: string | null;
890
1091
  /**
891
1092
  *
892
1093
  * @type {string}
@@ -1007,6 +1208,18 @@ export interface BookingItemModel {
1007
1208
  * @memberof BookingItemModel
1008
1209
  */
1009
1210
  'timeZone'?: string | null;
1211
+ /**
1212
+ *
1213
+ * @type {Date}
1214
+ * @memberof BookingItemModel
1215
+ */
1216
+ 'requestDate'?: Date;
1217
+ /**
1218
+ *
1219
+ * @type {string}
1220
+ * @memberof BookingItemModel
1221
+ */
1222
+ 'domain'?: string | null;
1010
1223
  /**
1011
1224
  *
1012
1225
  * @type {BookingStatus}
@@ -1086,6 +1299,12 @@ export interface BookingModel {
1086
1299
  * @memberof BookingModel
1087
1300
  */
1088
1301
  'hospitalSlug'?: string | null;
1302
+ /**
1303
+ *
1304
+ * @type {string}
1305
+ * @memberof BookingModel
1306
+ */
1307
+ 'hospitalTimeZone'?: string | null;
1089
1308
  /**
1090
1309
  *
1091
1310
  * @type {string}
@@ -1206,6 +1425,18 @@ export interface BookingModel {
1206
1425
  * @memberof BookingModel
1207
1426
  */
1208
1427
  'timeZone'?: string | null;
1428
+ /**
1429
+ *
1430
+ * @type {Date}
1431
+ * @memberof BookingModel
1432
+ */
1433
+ 'requestDate'?: Date;
1434
+ /**
1435
+ *
1436
+ * @type {string}
1437
+ * @memberof BookingModel
1438
+ */
1439
+ 'domain'?: string | null;
1209
1440
  /**
1210
1441
  *
1211
1442
  * @type {BookingStatus}
@@ -1961,6 +2192,12 @@ export interface ConsultationItemModel {
1961
2192
  * @memberof ConsultationItemModel
1962
2193
  */
1963
2194
  'hospitalSlug'?: string | null;
2195
+ /**
2196
+ *
2197
+ * @type {string}
2198
+ * @memberof ConsultationItemModel
2199
+ */
2200
+ 'hospitalTimeZone'?: string | null;
1964
2201
  /**
1965
2202
  *
1966
2203
  * @type {string}
@@ -2129,6 +2366,18 @@ export interface ConsultationItemModel {
2129
2366
  * @memberof ConsultationItemModel
2130
2367
  */
2131
2368
  'timeZone'?: string | null;
2369
+ /**
2370
+ *
2371
+ * @type {Date}
2372
+ * @memberof ConsultationItemModel
2373
+ */
2374
+ 'requestDate'?: Date;
2375
+ /**
2376
+ *
2377
+ * @type {string}
2378
+ * @memberof ConsultationItemModel
2379
+ */
2380
+ 'domain'?: string | null;
2132
2381
  /**
2133
2382
  *
2134
2383
  * @type {ConsultationStatus}
@@ -2220,6 +2469,12 @@ export interface ConsultationModel {
2220
2469
  * @memberof ConsultationModel
2221
2470
  */
2222
2471
  'hospitalSlug'?: string | null;
2472
+ /**
2473
+ *
2474
+ * @type {string}
2475
+ * @memberof ConsultationModel
2476
+ */
2477
+ 'hospitalTimeZone'?: string | null;
2223
2478
  /**
2224
2479
  *
2225
2480
  * @type {string}
@@ -2388,6 +2643,18 @@ export interface ConsultationModel {
2388
2643
  * @memberof ConsultationModel
2389
2644
  */
2390
2645
  'timeZone'?: string | null;
2646
+ /**
2647
+ *
2648
+ * @type {Date}
2649
+ * @memberof ConsultationModel
2650
+ */
2651
+ 'requestDate'?: Date;
2652
+ /**
2653
+ *
2654
+ * @type {string}
2655
+ * @memberof ConsultationModel
2656
+ */
2657
+ 'domain'?: string | null;
2391
2658
  /**
2392
2659
  *
2393
2660
  * @type {ConsultationStatus}
@@ -2914,72 +3181,133 @@ export interface CountryModel {
2914
3181
  /**
2915
3182
  *
2916
3183
  * @export
2917
- * @interface CreateAccreditationCommand
3184
+ * @interface CreateAboutUsPageCommand
2918
3185
  */
2919
- export interface CreateAccreditationCommand {
3186
+ export interface CreateAboutUsPageCommand {
2920
3187
  /**
2921
3188
  *
2922
3189
  * @type {string}
2923
- * @memberof CreateAccreditationCommand
3190
+ * @memberof CreateAboutUsPageCommand
2924
3191
  */
2925
- 'name'?: string | null;
3192
+ 'hospitalId'?: string;
2926
3193
  /**
2927
3194
  *
2928
3195
  * @type {string}
2929
- * @memberof CreateAccreditationCommand
3196
+ * @memberof CreateAboutUsPageCommand
2930
3197
  */
2931
- 'logo'?: string | null;
3198
+ 'overviewTitle'?: string | null;
2932
3199
  /**
2933
3200
  *
2934
3201
  * @type {string}
2935
- * @memberof CreateAccreditationCommand
3202
+ * @memberof CreateAboutUsPageCommand
2936
3203
  */
2937
- 'country'?: string | null;
2938
- }
2939
- /**
2940
- *
2941
- * @export
2942
- * @interface CreateArticleCommand
2943
- */
2944
- export interface CreateArticleCommand {
3204
+ 'overview'?: string | null;
2945
3205
  /**
2946
3206
  *
2947
3207
  * @type {string}
2948
- * @memberof CreateArticleCommand
3208
+ * @memberof CreateAboutUsPageCommand
2949
3209
  */
2950
- 'title'?: string | null;
3210
+ 'content'?: string | null;
2951
3211
  /**
2952
3212
  *
2953
3213
  * @type {string}
2954
- * @memberof CreateArticleCommand
3214
+ * @memberof CreateAboutUsPageCommand
2955
3215
  */
2956
- 'description'?: string | null;
3216
+ 'customStyle'?: string | null;
2957
3217
  /**
2958
3218
  *
2959
3219
  * @type {string}
2960
- * @memberof CreateArticleCommand
3220
+ * @memberof CreateAboutUsPageCommand
2961
3221
  */
2962
- 'body'?: string | null;
3222
+ 'background'?: string | null;
2963
3223
  /**
2964
3224
  *
2965
- * @type {ArticleStatus}
2966
- * @memberof CreateArticleCommand
3225
+ * @type {string}
3226
+ * @memberof CreateAboutUsPageCommand
2967
3227
  */
2968
- 'status'?: ArticleStatus;
3228
+ 'backgroundThumbnail'?: string | null;
2969
3229
  /**
2970
3230
  *
2971
- * @type {MarketingType}
2972
- * @memberof CreateArticleCommand
3231
+ * @type {Array<Media>}
3232
+ * @memberof CreateAboutUsPageCommand
2973
3233
  */
2974
- 'marketingType'?: MarketingType;
3234
+ 'medias'?: Array<Media> | null;
2975
3235
  /**
2976
3236
  *
2977
- * @type {string}
2978
- * @memberof CreateArticleCommand
3237
+ * @type {AuditableEntity}
3238
+ * @memberof CreateAboutUsPageCommand
2979
3239
  */
2980
- 'youtubeUrl'?: string | null;
2981
- /**
2982
- *
3240
+ 'auditableEntity'?: AuditableEntity;
3241
+ }
3242
+ /**
3243
+ *
3244
+ * @export
3245
+ * @interface CreateAccreditationCommand
3246
+ */
3247
+ export interface CreateAccreditationCommand {
3248
+ /**
3249
+ *
3250
+ * @type {string}
3251
+ * @memberof CreateAccreditationCommand
3252
+ */
3253
+ 'name'?: string | null;
3254
+ /**
3255
+ *
3256
+ * @type {string}
3257
+ * @memberof CreateAccreditationCommand
3258
+ */
3259
+ 'logo'?: string | null;
3260
+ /**
3261
+ *
3262
+ * @type {string}
3263
+ * @memberof CreateAccreditationCommand
3264
+ */
3265
+ 'country'?: string | null;
3266
+ }
3267
+ /**
3268
+ *
3269
+ * @export
3270
+ * @interface CreateArticleCommand
3271
+ */
3272
+ export interface CreateArticleCommand {
3273
+ /**
3274
+ *
3275
+ * @type {string}
3276
+ * @memberof CreateArticleCommand
3277
+ */
3278
+ 'title'?: string | null;
3279
+ /**
3280
+ *
3281
+ * @type {string}
3282
+ * @memberof CreateArticleCommand
3283
+ */
3284
+ 'description'?: string | null;
3285
+ /**
3286
+ *
3287
+ * @type {string}
3288
+ * @memberof CreateArticleCommand
3289
+ */
3290
+ 'body'?: string | null;
3291
+ /**
3292
+ *
3293
+ * @type {ArticleStatus}
3294
+ * @memberof CreateArticleCommand
3295
+ */
3296
+ 'status'?: ArticleStatus;
3297
+ /**
3298
+ *
3299
+ * @type {MarketingType}
3300
+ * @memberof CreateArticleCommand
3301
+ */
3302
+ 'marketingType'?: MarketingType;
3303
+ /**
3304
+ *
3305
+ * @type {string}
3306
+ * @memberof CreateArticleCommand
3307
+ */
3308
+ 'youtubeUrl'?: string | null;
3309
+ /**
3310
+ *
2983
3311
  * @type {string}
2984
3312
  * @memberof CreateArticleCommand
2985
3313
  */
@@ -8722,6 +9050,61 @@ export declare enum MarketingType {
8722
9050
  GeneralHealth = "GeneralHealth",
8723
9051
  Beauty = "Beauty"
8724
9052
  }
9053
+ /**
9054
+ *
9055
+ * @export
9056
+ * @interface Media
9057
+ */
9058
+ export interface Media {
9059
+ /**
9060
+ *
9061
+ * @type {string}
9062
+ * @memberof Media
9063
+ */
9064
+ 'id'?: string;
9065
+ /**
9066
+ *
9067
+ * @type {MediaType}
9068
+ * @memberof Media
9069
+ */
9070
+ 'mediaType'?: MediaType;
9071
+ /**
9072
+ *
9073
+ * @type {string}
9074
+ * @memberof Media
9075
+ */
9076
+ 'url'?: string | null;
9077
+ /**
9078
+ *
9079
+ * @type {string}
9080
+ * @memberof Media
9081
+ */
9082
+ 'thumbnailUrl'?: string | null;
9083
+ /**
9084
+ *
9085
+ * @type {string}
9086
+ * @memberof Media
9087
+ */
9088
+ 'description'?: string | null;
9089
+ /**
9090
+ *
9091
+ * @type {number}
9092
+ * @memberof Media
9093
+ */
9094
+ 'height'?: number;
9095
+ /**
9096
+ *
9097
+ * @type {number}
9098
+ * @memberof Media
9099
+ */
9100
+ 'width'?: number;
9101
+ /**
9102
+ *
9103
+ * @type {number}
9104
+ * @memberof Media
9105
+ */
9106
+ 'order'?: number;
9107
+ }
8725
9108
  /**
8726
9109
  *
8727
9110
  * @export
@@ -10072,6 +10455,15 @@ export declare enum SnsType {
10072
10455
  Facebook = "Facebook",
10073
10456
  Instagram = "Instagram"
10074
10457
  }
10458
+ /**
10459
+ *
10460
+ * @export
10461
+ * @enum {string}
10462
+ */
10463
+ export declare enum SortingOrder {
10464
+ Ascending = "Ascending",
10465
+ Descending = "Descending"
10466
+ }
10075
10467
  /**
10076
10468
  *
10077
10469
  * @export
@@ -10767,6 +11159,91 @@ export interface TranslateCommand {
10767
11159
  */
10768
11160
  'isHtml'?: boolean;
10769
11161
  }
11162
+ /**
11163
+ *
11164
+ * @export
11165
+ * @interface UpdateAboutUsPageCommand
11166
+ */
11167
+ export interface UpdateAboutUsPageCommand {
11168
+ /**
11169
+ *
11170
+ * @type {string}
11171
+ * @memberof UpdateAboutUsPageCommand
11172
+ */
11173
+ 'hospitalId'?: string;
11174
+ /**
11175
+ *
11176
+ * @type {string}
11177
+ * @memberof UpdateAboutUsPageCommand
11178
+ */
11179
+ 'hospitalName'?: string | null;
11180
+ /**
11181
+ *
11182
+ * @type {string}
11183
+ * @memberof UpdateAboutUsPageCommand
11184
+ */
11185
+ 'hospitalSlug'?: string | null;
11186
+ /**
11187
+ *
11188
+ * @type {string}
11189
+ * @memberof UpdateAboutUsPageCommand
11190
+ */
11191
+ 'overviewTitle'?: string | null;
11192
+ /**
11193
+ *
11194
+ * @type {string}
11195
+ * @memberof UpdateAboutUsPageCommand
11196
+ */
11197
+ 'overview'?: string | null;
11198
+ /**
11199
+ *
11200
+ * @type {string}
11201
+ * @memberof UpdateAboutUsPageCommand
11202
+ */
11203
+ 'content'?: string | null;
11204
+ /**
11205
+ *
11206
+ * @type {string}
11207
+ * @memberof UpdateAboutUsPageCommand
11208
+ */
11209
+ 'customStyle'?: string | null;
11210
+ /**
11211
+ *
11212
+ * @type {string}
11213
+ * @memberof UpdateAboutUsPageCommand
11214
+ */
11215
+ 'background'?: string | null;
11216
+ /**
11217
+ *
11218
+ * @type {string}
11219
+ * @memberof UpdateAboutUsPageCommand
11220
+ */
11221
+ 'backgroundThumbnail'?: string | null;
11222
+ /**
11223
+ *
11224
+ * @type {string}
11225
+ * @memberof UpdateAboutUsPageCommand
11226
+ */
11227
+ 'languageCode'?: string | null;
11228
+ /**
11229
+ *
11230
+ * @type {boolean}
11231
+ * @memberof UpdateAboutUsPageCommand
11232
+ */
11233
+ 'confirmed'?: boolean;
11234
+ /**
11235
+ *
11236
+ * @type {Array<Media>}
11237
+ * @memberof UpdateAboutUsPageCommand
11238
+ */
11239
+ 'medias'?: Array<Media> | null;
11240
+ /**
11241
+ *
11242
+ * @type {AuditableEntity}
11243
+ * @memberof UpdateAboutUsPageCommand
11244
+ */
11245
+ 'auditableEntity'?: AuditableEntity;
11246
+ }
10770
11247
  /**
10771
11248
  *
10772
11249
  * @export
@@ -12861,6 +13338,306 @@ export interface WeatherForecast {
12861
13338
  */
12862
13339
  'summary'?: string | null;
12863
13340
  }
13341
+ /**
13342
+ * AboutUsApi - axios parameter creator
13343
+ * @export
13344
+ */
13345
+ export declare const AboutUsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
13346
+ /**
13347
+ *
13348
+ * @summary Delete AboutUs.
13349
+ * @param {string} aboutUsId
13350
+ * @param {*} [options] Override http request option.
13351
+ * @throws {RequiredError}
13352
+ */
13353
+ apiV1AboutusAboutUsIdDelete: (aboutUsId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13354
+ /**
13355
+ *
13356
+ * @summary Get AboutUs.
13357
+ * @param {string} aboutUsId
13358
+ * @param {string} [languageCode]
13359
+ * @param {boolean} [returnDefaultValue]
13360
+ * @param {*} [options] Override http request option.
13361
+ * @throws {RequiredError}
13362
+ */
13363
+ apiV1AboutusAboutUsIdGet: (aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13364
+ /**
13365
+ *
13366
+ * @summary Update AboutUs.
13367
+ * @param {string} aboutUsId
13368
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13369
+ * @param {*} [options] Override http request option.
13370
+ * @throws {RequiredError}
13371
+ */
13372
+ apiV1AboutusAboutUsIdPut: (aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13373
+ /**
13374
+ *
13375
+ * @summary Get all AboutUsList.
13376
+ * @param {string} [hospitalId]
13377
+ * @param {string} [hospitalName]
13378
+ * @param {string} [hospitalSlug]
13379
+ * @param {string} [overviewTitle]
13380
+ * @param {string} [normalizedOverviewTitle]
13381
+ * @param {string} [overview]
13382
+ * @param {string} [content]
13383
+ * @param {string} [customStyle]
13384
+ * @param {string} [background]
13385
+ * @param {string} [backgroundThumbnail]
13386
+ * @param {string} [languageCode]
13387
+ * @param {boolean} [returnDefaultValue]
13388
+ * @param {boolean} [confirmed]
13389
+ * @param {number} [page]
13390
+ * @param {number} [limit]
13391
+ * @param {Date} [lastRetrieved]
13392
+ * @param {*} [options] Override http request option.
13393
+ * @throws {RequiredError}
13394
+ */
13395
+ apiV1AboutusGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13396
+ /**
13397
+ *
13398
+ * @summary Create AboutUs.
13399
+ * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13400
+ * @param {*} [options] Override http request option.
13401
+ * @throws {RequiredError}
13402
+ */
13403
+ apiV1AboutusPost: (createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13404
+ /**
13405
+ *
13406
+ * @param {string} slug
13407
+ * @param {string} [languageCode]
13408
+ * @param {boolean} [returnDefaultValue]
13409
+ * @param {*} [options] Override http request option.
13410
+ * @throws {RequiredError}
13411
+ */
13412
+ apiV1AboutusSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13413
+ };
13414
+ /**
13415
+ * AboutUsApi - functional programming interface
13416
+ * @export
13417
+ */
13418
+ export declare const AboutUsApiFp: (configuration?: Configuration | undefined) => {
13419
+ /**
13420
+ *
13421
+ * @summary Delete AboutUs.
13422
+ * @param {string} aboutUsId
13423
+ * @param {*} [options] Override http request option.
13424
+ * @throws {RequiredError}
13425
+ */
13426
+ apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
13427
+ /**
13428
+ *
13429
+ * @summary Get AboutUs.
13430
+ * @param {string} aboutUsId
13431
+ * @param {string} [languageCode]
13432
+ * @param {boolean} [returnDefaultValue]
13433
+ * @param {*} [options] Override http request option.
13434
+ * @throws {RequiredError}
13435
+ */
13436
+ apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13437
+ /**
13438
+ *
13439
+ * @summary Update AboutUs.
13440
+ * @param {string} aboutUsId
13441
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13442
+ * @param {*} [options] Override http request option.
13443
+ * @throws {RequiredError}
13444
+ */
13445
+ apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13446
+ /**
13447
+ *
13448
+ * @summary Get all AboutUsList.
13449
+ * @param {string} [hospitalId]
13450
+ * @param {string} [hospitalName]
13451
+ * @param {string} [hospitalSlug]
13452
+ * @param {string} [overviewTitle]
13453
+ * @param {string} [normalizedOverviewTitle]
13454
+ * @param {string} [overview]
13455
+ * @param {string} [content]
13456
+ * @param {string} [customStyle]
13457
+ * @param {string} [background]
13458
+ * @param {string} [backgroundThumbnail]
13459
+ * @param {string} [languageCode]
13460
+ * @param {boolean} [returnDefaultValue]
13461
+ * @param {boolean} [confirmed]
13462
+ * @param {number} [page]
13463
+ * @param {number} [limit]
13464
+ * @param {Date} [lastRetrieved]
13465
+ * @param {*} [options] Override http request option.
13466
+ * @throws {RequiredError}
13467
+ */
13468
+ apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPagesModel>>;
13469
+ /**
13470
+ *
13471
+ * @summary Create AboutUs.
13472
+ * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13473
+ * @param {*} [options] Override http request option.
13474
+ * @throws {RequiredError}
13475
+ */
13476
+ apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13477
+ /**
13478
+ *
13479
+ * @param {string} slug
13480
+ * @param {string} [languageCode]
13481
+ * @param {boolean} [returnDefaultValue]
13482
+ * @param {*} [options] Override http request option.
13483
+ * @throws {RequiredError}
13484
+ */
13485
+ apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AboutUsPageModel>>;
13486
+ };
13487
+ /**
13488
+ * AboutUsApi - factory interface
13489
+ * @export
13490
+ */
13491
+ export declare const AboutUsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
13492
+ /**
13493
+ *
13494
+ * @summary Delete AboutUs.
13495
+ * @param {string} aboutUsId
13496
+ * @param {*} [options] Override http request option.
13497
+ * @throws {RequiredError}
13498
+ */
13499
+ apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: any): AxiosPromise<boolean>;
13500
+ /**
13501
+ *
13502
+ * @summary Get AboutUs.
13503
+ * @param {string} aboutUsId
13504
+ * @param {string} [languageCode]
13505
+ * @param {boolean} [returnDefaultValue]
13506
+ * @param {*} [options] Override http request option.
13507
+ * @throws {RequiredError}
13508
+ */
13509
+ apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13510
+ /**
13511
+ *
13512
+ * @summary Update AboutUs.
13513
+ * @param {string} aboutUsId
13514
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13515
+ * @param {*} [options] Override http request option.
13516
+ * @throws {RequiredError}
13517
+ */
13518
+ apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13519
+ /**
13520
+ *
13521
+ * @summary Get all AboutUsList.
13522
+ * @param {string} [hospitalId]
13523
+ * @param {string} [hospitalName]
13524
+ * @param {string} [hospitalSlug]
13525
+ * @param {string} [overviewTitle]
13526
+ * @param {string} [normalizedOverviewTitle]
13527
+ * @param {string} [overview]
13528
+ * @param {string} [content]
13529
+ * @param {string} [customStyle]
13530
+ * @param {string} [background]
13531
+ * @param {string} [backgroundThumbnail]
13532
+ * @param {string} [languageCode]
13533
+ * @param {boolean} [returnDefaultValue]
13534
+ * @param {boolean} [confirmed]
13535
+ * @param {number} [page]
13536
+ * @param {number} [limit]
13537
+ * @param {Date} [lastRetrieved]
13538
+ * @param {*} [options] Override http request option.
13539
+ * @throws {RequiredError}
13540
+ */
13541
+ apiV1AboutusGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, overviewTitle?: string | undefined, normalizedOverviewTitle?: string | undefined, overview?: string | undefined, content?: string | undefined, customStyle?: string | undefined, background?: string | undefined, backgroundThumbnail?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, confirmed?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<AboutUsPagesModel>;
13542
+ /**
13543
+ *
13544
+ * @summary Create AboutUs.
13545
+ * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13546
+ * @param {*} [options] Override http request option.
13547
+ * @throws {RequiredError}
13548
+ */
13549
+ apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13550
+ /**
13551
+ *
13552
+ * @param {string} slug
13553
+ * @param {string} [languageCode]
13554
+ * @param {boolean} [returnDefaultValue]
13555
+ * @param {*} [options] Override http request option.
13556
+ * @throws {RequiredError}
13557
+ */
13558
+ apiV1AboutusSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<AboutUsPageModel>;
13559
+ };
13560
+ /**
13561
+ * AboutUsApi - object-oriented interface
13562
+ * @export
13563
+ * @class AboutUsApi
13564
+ * @extends {BaseAPI}
13565
+ */
13566
+ export declare class AboutUsApi extends BaseAPI {
13567
+ /**
13568
+ *
13569
+ * @summary Delete AboutUs.
13570
+ * @param {string} aboutUsId
13571
+ * @param {*} [options] Override http request option.
13572
+ * @throws {RequiredError}
13573
+ * @memberof AboutUsApi
13574
+ */
13575
+ apiV1AboutusAboutUsIdDelete(aboutUsId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
13576
+ /**
13577
+ *
13578
+ * @summary Get AboutUs.
13579
+ * @param {string} aboutUsId
13580
+ * @param {string} [languageCode]
13581
+ * @param {boolean} [returnDefaultValue]
13582
+ * @param {*} [options] Override http request option.
13583
+ * @throws {RequiredError}
13584
+ * @memberof AboutUsApi
13585
+ */
13586
+ apiV1AboutusAboutUsIdGet(aboutUsId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13587
+ /**
13588
+ *
13589
+ * @summary Update AboutUs.
13590
+ * @param {string} aboutUsId
13591
+ * @param {UpdateAboutUsPageCommand} [updateAboutUsPageCommand]
13592
+ * @param {*} [options] Override http request option.
13593
+ * @throws {RequiredError}
13594
+ * @memberof AboutUsApi
13595
+ */
13596
+ apiV1AboutusAboutUsIdPut(aboutUsId: string, updateAboutUsPageCommand?: UpdateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13597
+ /**
13598
+ *
13599
+ * @summary Get all AboutUsList.
13600
+ * @param {string} [hospitalId]
13601
+ * @param {string} [hospitalName]
13602
+ * @param {string} [hospitalSlug]
13603
+ * @param {string} [overviewTitle]
13604
+ * @param {string} [normalizedOverviewTitle]
13605
+ * @param {string} [overview]
13606
+ * @param {string} [content]
13607
+ * @param {string} [customStyle]
13608
+ * @param {string} [background]
13609
+ * @param {string} [backgroundThumbnail]
13610
+ * @param {string} [languageCode]
13611
+ * @param {boolean} [returnDefaultValue]
13612
+ * @param {boolean} [confirmed]
13613
+ * @param {number} [page]
13614
+ * @param {number} [limit]
13615
+ * @param {Date} [lastRetrieved]
13616
+ * @param {*} [options] Override http request option.
13617
+ * @throws {RequiredError}
13618
+ * @memberof AboutUsApi
13619
+ */
13620
+ apiV1AboutusGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, overviewTitle?: string, normalizedOverviewTitle?: string, overview?: string, content?: string, customStyle?: string, background?: string, backgroundThumbnail?: string, languageCode?: string, returnDefaultValue?: boolean, confirmed?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPagesModel>>;
13621
+ /**
13622
+ *
13623
+ * @summary Create AboutUs.
13624
+ * @param {CreateAboutUsPageCommand} [createAboutUsPageCommand]
13625
+ * @param {*} [options] Override http request option.
13626
+ * @throws {RequiredError}
13627
+ * @memberof AboutUsApi
13628
+ */
13629
+ apiV1AboutusPost(createAboutUsPageCommand?: CreateAboutUsPageCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13630
+ /**
13631
+ *
13632
+ * @param {string} slug
13633
+ * @param {string} [languageCode]
13634
+ * @param {boolean} [returnDefaultValue]
13635
+ * @param {*} [options] Override http request option.
13636
+ * @throws {RequiredError}
13637
+ * @memberof AboutUsApi
13638
+ */
13639
+ apiV1AboutusSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AboutUsPageModel>>;
13640
+ }
12864
13641
  /**
12865
13642
  * AccreditationsApi - axios parameter creator
12866
13643
  * @export
@@ -14238,13 +15015,15 @@ export declare const BookingsApiAxiosParamCreator: (configuration?: Configuratio
14238
15015
  * @param {boolean} [isCompleted]
14239
15016
  * @param {BookingStatus} [status]
14240
15017
  * @param {string} [dealPackageId]
15018
+ * @param {SortingOrder} [sortRequestDate]
15019
+ * @param {SortingOrder} [sortConfirmedDateStart]
14241
15020
  * @param {number} [page]
14242
15021
  * @param {number} [limit]
14243
15022
  * @param {Date} [lastRetrieved]
14244
15023
  * @param {*} [options] Override http request option.
14245
15024
  * @throws {RequiredError}
14246
15025
  */
14247
- apiV1BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15026
+ apiV1BookingsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14248
15027
  };
14249
15028
  /**
14250
15029
  * BookingsApi - functional programming interface
@@ -14301,13 +15080,15 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
14301
15080
  * @param {boolean} [isCompleted]
14302
15081
  * @param {BookingStatus} [status]
14303
15082
  * @param {string} [dealPackageId]
15083
+ * @param {SortingOrder} [sortRequestDate]
15084
+ * @param {SortingOrder} [sortConfirmedDateStart]
14304
15085
  * @param {number} [page]
14305
15086
  * @param {number} [limit]
14306
15087
  * @param {Date} [lastRetrieved]
14307
15088
  * @param {*} [options] Override http request option.
14308
15089
  * @throws {RequiredError}
14309
15090
  */
14310
- apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
15091
+ apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
14311
15092
  };
14312
15093
  /**
14313
15094
  * BookingsApi - factory interface
@@ -14364,13 +15145,15 @@ export declare const BookingsApiFactory: (configuration?: Configuration | undefi
14364
15145
  * @param {boolean} [isCompleted]
14365
15146
  * @param {BookingStatus} [status]
14366
15147
  * @param {string} [dealPackageId]
15148
+ * @param {SortingOrder} [sortRequestDate]
15149
+ * @param {SortingOrder} [sortConfirmedDateStart]
14367
15150
  * @param {number} [page]
14368
15151
  * @param {number} [limit]
14369
15152
  * @param {Date} [lastRetrieved]
14370
15153
  * @param {*} [options] Override http request option.
14371
15154
  * @throws {RequiredError}
14372
15155
  */
14373
- apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
15156
+ apiV1BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<BookingsModel>;
14374
15157
  };
14375
15158
  /**
14376
15159
  * BookingsApi - object-oriented interface
@@ -14434,6 +15217,8 @@ export declare class BookingsApi extends BaseAPI {
14434
15217
  * @param {boolean} [isCompleted]
14435
15218
  * @param {BookingStatus} [status]
14436
15219
  * @param {string} [dealPackageId]
15220
+ * @param {SortingOrder} [sortRequestDate]
15221
+ * @param {SortingOrder} [sortConfirmedDateStart]
14437
15222
  * @param {number} [page]
14438
15223
  * @param {number} [limit]
14439
15224
  * @param {Date} [lastRetrieved]
@@ -14441,7 +15226,7 @@ export declare class BookingsApi extends BaseAPI {
14441
15226
  * @throws {RequiredError}
14442
15227
  * @memberof BookingsApi
14443
15228
  */
14444
- apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
15229
+ apiV1BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
14445
15230
  }
14446
15231
  /**
14447
15232
  * CHAdminsApi - axios parameter creator
@@ -15309,13 +16094,15 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
15309
16094
  * @param {boolean} [isCompleted]
15310
16095
  * @param {ConsultationStatus} [status]
15311
16096
  * @param {ConsultationType} [consultationType]
16097
+ * @param {SortingOrder} [sortRequestDate]
16098
+ * @param {SortingOrder} [sortConfirmedDateStart]
15312
16099
  * @param {number} [page]
15313
16100
  * @param {number} [limit]
15314
16101
  * @param {Date} [lastRetrieved]
15315
16102
  * @param {*} [options] Override http request option.
15316
16103
  * @throws {RequiredError}
15317
16104
  */
15318
- apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16105
+ apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15319
16106
  };
15320
16107
  /**
15321
16108
  * ConsultationsApi - functional programming interface
@@ -15372,13 +16159,15 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
15372
16159
  * @param {boolean} [isCompleted]
15373
16160
  * @param {ConsultationStatus} [status]
15374
16161
  * @param {ConsultationType} [consultationType]
16162
+ * @param {SortingOrder} [sortRequestDate]
16163
+ * @param {SortingOrder} [sortConfirmedDateStart]
15375
16164
  * @param {number} [page]
15376
16165
  * @param {number} [limit]
15377
16166
  * @param {Date} [lastRetrieved]
15378
16167
  * @param {*} [options] Override http request option.
15379
16168
  * @throws {RequiredError}
15380
16169
  */
15381
- apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
16170
+ apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
15382
16171
  };
15383
16172
  /**
15384
16173
  * ConsultationsApi - factory interface
@@ -15435,13 +16224,15 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
15435
16224
  * @param {boolean} [isCompleted]
15436
16225
  * @param {ConsultationStatus} [status]
15437
16226
  * @param {ConsultationType} [consultationType]
16227
+ * @param {SortingOrder} [sortRequestDate]
16228
+ * @param {SortingOrder} [sortConfirmedDateStart]
15438
16229
  * @param {number} [page]
15439
16230
  * @param {number} [limit]
15440
16231
  * @param {Date} [lastRetrieved]
15441
16232
  * @param {*} [options] Override http request option.
15442
16233
  * @throws {RequiredError}
15443
16234
  */
15444
- apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
16235
+ apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, sortRequestDate?: SortingOrder | undefined, sortConfirmedDateStart?: SortingOrder | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
15445
16236
  };
15446
16237
  /**
15447
16238
  * ConsultationsApi - object-oriented interface
@@ -15505,6 +16296,8 @@ export declare class ConsultationsApi extends BaseAPI {
15505
16296
  * @param {boolean} [isCompleted]
15506
16297
  * @param {ConsultationStatus} [status]
15507
16298
  * @param {ConsultationType} [consultationType]
16299
+ * @param {SortingOrder} [sortRequestDate]
16300
+ * @param {SortingOrder} [sortConfirmedDateStart]
15508
16301
  * @param {number} [page]
15509
16302
  * @param {number} [limit]
15510
16303
  * @param {Date} [lastRetrieved]
@@ -15512,7 +16305,7 @@ export declare class ConsultationsApi extends BaseAPI {
15512
16305
  * @throws {RequiredError}
15513
16306
  * @memberof ConsultationsApi
15514
16307
  */
15515
- apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
16308
+ apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, sortRequestDate?: SortingOrder, sortConfirmedDateStart?: SortingOrder, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
15516
16309
  }
15517
16310
  /**
15518
16311
  * ContributorsApi - axios parameter creator