ch-admin-api-client-typescript 2.5.3 → 2.5.8

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
@@ -771,6 +771,37 @@ export interface AwardModel {
771
771
  */
772
772
  'date'?: Date;
773
773
  }
774
+ /**
775
+ *
776
+ * @export
777
+ * @interface BookingChangeLogModel
778
+ */
779
+ export interface BookingChangeLogModel {
780
+ /**
781
+ *
782
+ * @type {BookingStatus}
783
+ * @memberof BookingChangeLogModel
784
+ */
785
+ 'status'?: BookingStatus;
786
+ /**
787
+ *
788
+ * @type {string}
789
+ * @memberof BookingChangeLogModel
790
+ */
791
+ 'actorId'?: string;
792
+ /**
793
+ *
794
+ * @type {Date}
795
+ * @memberof BookingChangeLogModel
796
+ */
797
+ 'createdDate'?: Date;
798
+ /**
799
+ *
800
+ * @type {string}
801
+ * @memberof BookingChangeLogModel
802
+ */
803
+ 'actorName'?: string | null;
804
+ }
774
805
  /**
775
806
  *
776
807
  * @export
@@ -1168,6 +1199,12 @@ export interface BookingModel {
1168
1199
  * @memberof BookingModel
1169
1200
  */
1170
1201
  'completionRate'?: number;
1202
+ /**
1203
+ *
1204
+ * @type {Array<BookingChangeLogModel>}
1205
+ * @memberof BookingModel
1206
+ */
1207
+ 'statusChangeLogs'?: Array<BookingChangeLogModel> | null;
1171
1208
  }
1172
1209
  /**
1173
1210
  *
@@ -1796,6 +1833,37 @@ export interface ConfirmEmailCommand {
1796
1833
  */
1797
1834
  'code'?: string | null;
1798
1835
  }
1836
+ /**
1837
+ *
1838
+ * @export
1839
+ * @interface ConsultationChangeLogModel
1840
+ */
1841
+ export interface ConsultationChangeLogModel {
1842
+ /**
1843
+ *
1844
+ * @type {ConsultationStatus}
1845
+ * @memberof ConsultationChangeLogModel
1846
+ */
1847
+ 'status'?: ConsultationStatus;
1848
+ /**
1849
+ *
1850
+ * @type {string}
1851
+ * @memberof ConsultationChangeLogModel
1852
+ */
1853
+ 'actorId'?: string;
1854
+ /**
1855
+ *
1856
+ * @type {Date}
1857
+ * @memberof ConsultationChangeLogModel
1858
+ */
1859
+ 'createdDate'?: Date;
1860
+ /**
1861
+ *
1862
+ * @type {string}
1863
+ * @memberof ConsultationChangeLogModel
1864
+ */
1865
+ 'actorName'?: string | null;
1866
+ }
1799
1867
  /**
1800
1868
  *
1801
1869
  * @export
@@ -2313,6 +2381,12 @@ export interface ConsultationModel {
2313
2381
  * @memberof ConsultationModel
2314
2382
  */
2315
2383
  'completionRate'?: number;
2384
+ /**
2385
+ *
2386
+ * @type {Array<ConsultationChangeLogModel>}
2387
+ * @memberof ConsultationModel
2388
+ */
2389
+ 'statusChangeLogs'?: Array<ConsultationChangeLogModel> | null;
2316
2390
  }
2317
2391
  /**
2318
2392
  *
@@ -2441,10 +2515,16 @@ export interface ContributorItemModel {
2441
2515
  'order'?: number;
2442
2516
  /**
2443
2517
  *
2444
- * @type {Array<SnsHandleModel>}
2518
+ * @type {Array<LocalizedUrlModel>}
2519
+ * @memberof ContributorItemModel
2520
+ */
2521
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2522
+ /**
2523
+ *
2524
+ * @type {boolean}
2445
2525
  * @memberof ContributorItemModel
2446
2526
  */
2447
- 'snsHandles'?: Array<SnsHandleModel> | null;
2527
+ 'confirmed'?: boolean;
2448
2528
  }
2449
2529
  /**
2450
2530
  *
@@ -2520,10 +2600,22 @@ export interface ContributorModel {
2520
2600
  'order'?: number;
2521
2601
  /**
2522
2602
  *
2523
- * @type {Array<SnsHandleModel>}
2603
+ * @type {Array<LocalizedUrlModel>}
2604
+ * @memberof ContributorModel
2605
+ */
2606
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2607
+ /**
2608
+ *
2609
+ * @type {boolean}
2610
+ * @memberof ContributorModel
2611
+ */
2612
+ 'confirmed'?: boolean;
2613
+ /**
2614
+ *
2615
+ * @type {string}
2524
2616
  * @memberof ContributorModel
2525
2617
  */
2526
- 'snsHandles'?: Array<SnsHandleModel> | null;
2618
+ 'languageCode'?: string | null;
2527
2619
  }
2528
2620
  /**
2529
2621
  *
@@ -2666,6 +2758,12 @@ export interface CountryItemModel {
2666
2758
  * @memberof CountryItemModel
2667
2759
  */
2668
2760
  'auditableEntity'?: AuditableEntity;
2761
+ /**
2762
+ *
2763
+ * @type {Array<LocalizedUrlModel>}
2764
+ * @memberof CountryItemModel
2765
+ */
2766
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2669
2767
  /**
2670
2768
  *
2671
2769
  * @type {boolean}
@@ -2757,12 +2855,24 @@ export interface CountryModel {
2757
2855
  * @memberof CountryModel
2758
2856
  */
2759
2857
  'auditableEntity'?: AuditableEntity;
2858
+ /**
2859
+ *
2860
+ * @type {Array<LocalizedUrlModel>}
2861
+ * @memberof CountryModel
2862
+ */
2863
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
2760
2864
  /**
2761
2865
  *
2762
2866
  * @type {boolean}
2763
2867
  * @memberof CountryModel
2764
2868
  */
2765
2869
  'confirmed'?: boolean;
2870
+ /**
2871
+ *
2872
+ * @type {string}
2873
+ * @memberof CountryModel
2874
+ */
2875
+ 'languageCode'?: string | null;
2766
2876
  }
2767
2877
  /**
2768
2878
  *
@@ -3589,6 +3699,12 @@ export interface CreateFaqCommand {
3589
3699
  * @memberof CreateFaqCommand
3590
3700
  */
3591
3701
  'faqCategoryId'?: string | null;
3702
+ /**
3703
+ *
3704
+ * @type {string}
3705
+ * @memberof CreateFaqCommand
3706
+ */
3707
+ 'hospitalId'?: string;
3592
3708
  }
3593
3709
  /**
3594
3710
  *
@@ -5174,6 +5290,12 @@ export interface DoctorItemModel {
5174
5290
  * @memberof DoctorItemModel
5175
5291
  */
5176
5292
  'consultationFee'?: number | null;
5293
+ /**
5294
+ *
5295
+ * @type {Array<LocalizedUrlModel>}
5296
+ * @memberof DoctorItemModel
5297
+ */
5298
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5177
5299
  /**
5178
5300
  *
5179
5301
  * @type {boolean}
@@ -5331,6 +5453,12 @@ export interface DoctorModel {
5331
5453
  * @memberof DoctorModel
5332
5454
  */
5333
5455
  'consultationFee'?: number | null;
5456
+ /**
5457
+ *
5458
+ * @type {Array<LocalizedUrlModel>}
5459
+ * @memberof DoctorModel
5460
+ */
5461
+ 'localizedUrls'?: Array<LocalizedUrlModel> | null;
5334
5462
  /**
5335
5463
  *
5336
5464
  * @type {boolean}
@@ -5859,6 +5987,12 @@ export interface FaqModel {
5859
5987
  * @memberof FaqModel
5860
5988
  */
5861
5989
  'confirmed'?: boolean;
5990
+ /**
5991
+ *
5992
+ * @type {string}
5993
+ * @memberof FaqModel
5994
+ */
5995
+ 'languageCode'?: string | null;
5862
5996
  /**
5863
5997
  *
5864
5998
  * @type {Array<FaqCategoryBreadCrumbModel>}
@@ -6917,6 +7051,12 @@ export interface HospitalServiceModel {
6917
7051
  * @memberof HospitalServiceModel
6918
7052
  */
6919
7053
  'auditableEntity'?: AuditableEntity;
7054
+ /**
7055
+ *
7056
+ * @type {string}
7057
+ * @memberof HospitalServiceModel
7058
+ */
7059
+ 'languageCode'?: string | null;
6920
7060
  }
6921
7061
  /**
6922
7062
  *
@@ -9057,6 +9197,12 @@ export interface SpecialtyModel {
9057
9197
  * @memberof SpecialtyModel
9058
9198
  */
9059
9199
  'auditableEntity'?: AuditableEntity;
9200
+ /**
9201
+ *
9202
+ * @type {string}
9203
+ * @memberof SpecialtyModel
9204
+ */
9205
+ 'languageCode'?: string | null;
9060
9206
  }
9061
9207
  /**
9062
9208
  *
@@ -9203,6 +9349,37 @@ export interface SpecialtyTypeModel {
9203
9349
  * @memberof SpecialtyTypeModel
9204
9350
  */
9205
9351
  'confirmed'?: boolean;
9352
+ /**
9353
+ *
9354
+ * @type {string}
9355
+ * @memberof SpecialtyTypeModel
9356
+ */
9357
+ 'languageCode'?: string | null;
9358
+ }
9359
+ /**
9360
+ *
9361
+ * @export
9362
+ * @interface SpecialtyTypeSimpleItemModel
9363
+ */
9364
+ export interface SpecialtyTypeSimpleItemModel {
9365
+ /**
9366
+ *
9367
+ * @type {string}
9368
+ * @memberof SpecialtyTypeSimpleItemModel
9369
+ */
9370
+ 'id'?: string;
9371
+ /**
9372
+ *
9373
+ * @type {string}
9374
+ * @memberof SpecialtyTypeSimpleItemModel
9375
+ */
9376
+ 'name'?: string | null;
9377
+ /**
9378
+ *
9379
+ * @type {boolean}
9380
+ * @memberof SpecialtyTypeSimpleItemModel
9381
+ */
9382
+ 'confirmed'?: boolean;
9206
9383
  }
9207
9384
  /**
9208
9385
  *
@@ -9223,6 +9400,25 @@ export interface SpecialtyTypesModel {
9223
9400
  */
9224
9401
  'metaData'?: PagedListMetaData;
9225
9402
  }
9403
+ /**
9404
+ *
9405
+ * @export
9406
+ * @interface SpecialtyTypesSimpleModel
9407
+ */
9408
+ export interface SpecialtyTypesSimpleModel {
9409
+ /**
9410
+ *
9411
+ * @type {Array<SpecialtyTypeSimpleItemModel>}
9412
+ * @memberof SpecialtyTypesSimpleModel
9413
+ */
9414
+ 'items'?: Array<SpecialtyTypeSimpleItemModel> | null;
9415
+ /**
9416
+ *
9417
+ * @type {PagedListMetaData}
9418
+ * @memberof SpecialtyTypesSimpleModel
9419
+ */
9420
+ 'metaData'?: PagedListMetaData;
9421
+ }
9226
9422
  /**
9227
9423
  *
9228
9424
  * @export
@@ -9520,12 +9716,6 @@ export interface UpdateAccreditationCommand {
9520
9716
  * @interface UpdateArticleCommand
9521
9717
  */
9522
9718
  export interface UpdateArticleCommand {
9523
- /**
9524
- *
9525
- * @type {string}
9526
- * @memberof UpdateArticleCommand
9527
- */
9528
- 'languageCode'?: string | null;
9529
9719
  /**
9530
9720
  *
9531
9721
  * @type {string}
@@ -9580,6 +9770,12 @@ export interface UpdateArticleCommand {
9580
9770
  * @memberof UpdateArticleCommand
9581
9771
  */
9582
9772
  'articleTags'?: Array<ArticleTagItemModel> | null;
9773
+ /**
9774
+ *
9775
+ * @type {string}
9776
+ * @memberof UpdateArticleCommand
9777
+ */
9778
+ 'languageCode'?: string | null;
9583
9779
  /**
9584
9780
  *
9585
9781
  * @type {boolean}
@@ -9862,6 +10058,18 @@ export interface UpdateContributorCommand {
9862
10058
  * @memberof UpdateContributorCommand
9863
10059
  */
9864
10060
  'hospitalId'?: string;
10061
+ /**
10062
+ *
10063
+ * @type {string}
10064
+ * @memberof UpdateContributorCommand
10065
+ */
10066
+ 'languageCode'?: string | null;
10067
+ /**
10068
+ *
10069
+ * @type {boolean}
10070
+ * @memberof UpdateContributorCommand
10071
+ */
10072
+ 'confirmed'?: boolean;
9865
10073
  }
9866
10074
  /**
9867
10075
  *
@@ -9894,6 +10102,12 @@ export interface UpdateCountryCommand {
9894
10102
  * @memberof UpdateCountryCommand
9895
10103
  */
9896
10104
  'name'?: string | null;
10105
+ /**
10106
+ *
10107
+ * @type {string}
10108
+ * @memberof UpdateCountryCommand
10109
+ */
10110
+ 'slug'?: string | null;
9897
10111
  /**
9898
10112
  *
9899
10113
  * @type {string}
@@ -9918,12 +10132,6 @@ export interface UpdateCountryCommand {
9918
10132
  * @memberof UpdateCountryCommand
9919
10133
  */
9920
10134
  'confirmed'?: boolean;
9921
- /**
9922
- *
9923
- * @type {Array<MediaModel>}
9924
- * @memberof UpdateCountryCommand
9925
- */
9926
- 'medias'?: Array<MediaModel> | null;
9927
10135
  }
9928
10136
  /**
9929
10137
  *
@@ -10061,12 +10269,6 @@ export interface UpdateDoctorCertificateCommand {
10061
10269
  * @interface UpdateDoctorCommand
10062
10270
  */
10063
10271
  export interface UpdateDoctorCommand {
10064
- /**
10065
- *
10066
- * @type {string}
10067
- * @memberof UpdateDoctorCommand
10068
- */
10069
- 'userName'?: string | null;
10070
10272
  /**
10071
10273
  *
10072
10274
  * @type {string}
@@ -10257,12 +10459,6 @@ export interface UpdateDoctorSpecialtyCommand {
10257
10459
  * @interface UpdateFaqCategoryCommand
10258
10460
  */
10259
10461
  export interface UpdateFaqCategoryCommand {
10260
- /**
10261
- *
10262
- * @type {string}
10263
- * @memberof UpdateFaqCategoryCommand
10264
- */
10265
- 'id'?: string | null;
10266
10462
  /**
10267
10463
  *
10268
10464
  * @type {string}
@@ -10794,12 +10990,6 @@ export interface UpdatePlanCommand {
10794
10990
  * @memberof UpdatePlanCommand
10795
10991
  */
10796
10992
  'unitPrice'?: number;
10797
- /**
10798
- *
10799
- * @type {string}
10800
- * @memberof UpdatePlanCommand
10801
- */
10802
- 'stripePriceId'?: string | null;
10803
10993
  /**
10804
10994
  *
10805
10995
  * @type {RecurringInterval}
@@ -11582,10 +11772,11 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
11582
11772
  * @summary Get Article.
11583
11773
  * @param {string} articleId
11584
11774
  * @param {string} [languageCode]
11775
+ * @param {boolean} [returnDefaultValue]
11585
11776
  * @param {*} [options] Override http request option.
11586
11777
  * @throws {RequiredError}
11587
11778
  */
11588
- apiV1ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11779
+ apiV1ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11589
11780
  /**
11590
11781
  *
11591
11782
  * @summary Get all ArticleMedias.
@@ -11751,13 +11942,14 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
11751
11942
  * @param {string} [contributorId]
11752
11943
  * @param {string} [languageCode]
11753
11944
  * @param {boolean} [showHidden]
11945
+ * @param {boolean} [returnDefaultValue]
11754
11946
  * @param {number} [page]
11755
11947
  * @param {number} [limit]
11756
11948
  * @param {Date} [lastRetrieved]
11757
11949
  * @param {*} [options] Override http request option.
11758
11950
  * @throws {RequiredError}
11759
11951
  */
11760
- apiV1ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11952
+ apiV1ArticlesGet: (id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11761
11953
  /**
11762
11954
  *
11763
11955
  * @summary Create a Article.
@@ -11771,10 +11963,11 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
11771
11963
  * @summary Get Article by slug.
11772
11964
  * @param {string} slug
11773
11965
  * @param {string} [languageCode]
11966
+ * @param {boolean} [returnDefaultValue]
11774
11967
  * @param {*} [options] Override http request option.
11775
11968
  * @throws {RequiredError}
11776
11969
  */
11777
- apiV1ArticlesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11970
+ apiV1ArticlesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11778
11971
  };
11779
11972
  /**
11780
11973
  * ArticlesApi - functional programming interface
@@ -11849,10 +12042,11 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
11849
12042
  * @summary Get Article.
11850
12043
  * @param {string} articleId
11851
12044
  * @param {string} [languageCode]
12045
+ * @param {boolean} [returnDefaultValue]
11852
12046
  * @param {*} [options] Override http request option.
11853
12047
  * @throws {RequiredError}
11854
12048
  */
11855
- apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
12049
+ apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
11856
12050
  /**
11857
12051
  *
11858
12052
  * @summary Get all ArticleMedias.
@@ -12018,13 +12212,14 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
12018
12212
  * @param {string} [contributorId]
12019
12213
  * @param {string} [languageCode]
12020
12214
  * @param {boolean} [showHidden]
12215
+ * @param {boolean} [returnDefaultValue]
12021
12216
  * @param {number} [page]
12022
12217
  * @param {number} [limit]
12023
12218
  * @param {Date} [lastRetrieved]
12024
12219
  * @param {*} [options] Override http request option.
12025
12220
  * @throws {RequiredError}
12026
12221
  */
12027
- apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
12222
+ apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
12028
12223
  /**
12029
12224
  *
12030
12225
  * @summary Create a Article.
@@ -12038,10 +12233,11 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
12038
12233
  * @summary Get Article by slug.
12039
12234
  * @param {string} slug
12040
12235
  * @param {string} [languageCode]
12236
+ * @param {boolean} [returnDefaultValue]
12041
12237
  * @param {*} [options] Override http request option.
12042
12238
  * @throws {RequiredError}
12043
12239
  */
12044
- apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
12240
+ apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
12045
12241
  };
12046
12242
  /**
12047
12243
  * ArticlesApi - factory interface
@@ -12116,10 +12312,11 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
12116
12312
  * @summary Get Article.
12117
12313
  * @param {string} articleId
12118
12314
  * @param {string} [languageCode]
12315
+ * @param {boolean} [returnDefaultValue]
12119
12316
  * @param {*} [options] Override http request option.
12120
12317
  * @throws {RequiredError}
12121
12318
  */
12122
- apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ArticleModel>;
12319
+ apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ArticleModel>;
12123
12320
  /**
12124
12321
  *
12125
12322
  * @summary Get all ArticleMedias.
@@ -12285,13 +12482,14 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
12285
12482
  * @param {string} [contributorId]
12286
12483
  * @param {string} [languageCode]
12287
12484
  * @param {boolean} [showHidden]
12485
+ * @param {boolean} [returnDefaultValue]
12288
12486
  * @param {number} [page]
12289
12487
  * @param {number} [limit]
12290
12488
  * @param {Date} [lastRetrieved]
12291
12489
  * @param {*} [options] Override http request option.
12292
12490
  * @throws {RequiredError}
12293
12491
  */
12294
- apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
12492
+ apiV1ArticlesGet(id?: string | undefined, title?: string | undefined, description?: string | undefined, status?: ArticleStatus | undefined, marketingType?: MarketingType | undefined, userId?: string | undefined, userName?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, countryId?: string | undefined, tag?: string | undefined, exceptHospitalId?: string | undefined, contributorId?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ArticlesModel>;
12295
12493
  /**
12296
12494
  *
12297
12495
  * @summary Create a Article.
@@ -12305,10 +12503,11 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
12305
12503
  * @summary Get Article by slug.
12306
12504
  * @param {string} slug
12307
12505
  * @param {string} [languageCode]
12506
+ * @param {boolean} [returnDefaultValue]
12308
12507
  * @param {*} [options] Override http request option.
12309
12508
  * @throws {RequiredError}
12310
12509
  */
12311
- apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<ArticleModel>;
12510
+ apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ArticleModel>;
12312
12511
  };
12313
12512
  /**
12314
12513
  * ArticlesApi - object-oriented interface
@@ -12391,11 +12590,12 @@ export declare class ArticlesApi extends BaseAPI {
12391
12590
  * @summary Get Article.
12392
12591
  * @param {string} articleId
12393
12592
  * @param {string} [languageCode]
12593
+ * @param {boolean} [returnDefaultValue]
12394
12594
  * @param {*} [options] Override http request option.
12395
12595
  * @throws {RequiredError}
12396
12596
  * @memberof ArticlesApi
12397
12597
  */
12398
- apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
12598
+ apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
12399
12599
  /**
12400
12600
  *
12401
12601
  * @summary Get all ArticleMedias.
@@ -12576,6 +12776,7 @@ export declare class ArticlesApi extends BaseAPI {
12576
12776
  * @param {string} [contributorId]
12577
12777
  * @param {string} [languageCode]
12578
12778
  * @param {boolean} [showHidden]
12779
+ * @param {boolean} [returnDefaultValue]
12579
12780
  * @param {number} [page]
12580
12781
  * @param {number} [limit]
12581
12782
  * @param {Date} [lastRetrieved]
@@ -12583,7 +12784,7 @@ export declare class ArticlesApi extends BaseAPI {
12583
12784
  * @throws {RequiredError}
12584
12785
  * @memberof ArticlesApi
12585
12786
  */
12586
- apiV1ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
12787
+ apiV1ArticlesGet(id?: string, title?: string, description?: string, status?: ArticleStatus, marketingType?: MarketingType, userId?: string, userName?: string, hospitalId?: string, hospitalName?: string, countryId?: string, tag?: string, exceptHospitalId?: string, contributorId?: string, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticlesModel>>;
12587
12788
  /**
12588
12789
  *
12589
12790
  * @summary Create a Article.
@@ -12598,11 +12799,12 @@ export declare class ArticlesApi extends BaseAPI {
12598
12799
  * @summary Get Article by slug.
12599
12800
  * @param {string} slug
12600
12801
  * @param {string} [languageCode]
12802
+ * @param {boolean} [returnDefaultValue]
12601
12803
  * @param {*} [options] Override http request option.
12602
12804
  * @throws {RequiredError}
12603
12805
  * @memberof ArticlesApi
12604
12806
  */
12605
- apiV1ArticlesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
12807
+ apiV1ArticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
12606
12808
  }
12607
12809
  /**
12608
12810
  * BookingsApi - axios parameter creator
@@ -13729,13 +13931,14 @@ export declare const ConsultationsApiAxiosParamCreator: (configuration?: Configu
13729
13931
  * @param {boolean} [isOpen]
13730
13932
  * @param {boolean} [isCompleted]
13731
13933
  * @param {ConsultationStatus} [status]
13934
+ * @param {ConsultationType} [consultationType]
13732
13935
  * @param {number} [page]
13733
13936
  * @param {number} [limit]
13734
13937
  * @param {Date} [lastRetrieved]
13735
13938
  * @param {*} [options] Override http request option.
13736
13939
  * @throws {RequiredError}
13737
13940
  */
13738
- apiV1ConsultationsGet: (searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13941
+ 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>;
13739
13942
  };
13740
13943
  /**
13741
13944
  * ConsultationsApi - functional programming interface
@@ -13791,13 +13994,14 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
13791
13994
  * @param {boolean} [isOpen]
13792
13995
  * @param {boolean} [isCompleted]
13793
13996
  * @param {ConsultationStatus} [status]
13997
+ * @param {ConsultationType} [consultationType]
13794
13998
  * @param {number} [page]
13795
13999
  * @param {number} [limit]
13796
14000
  * @param {Date} [lastRetrieved]
13797
14001
  * @param {*} [options] Override http request option.
13798
14002
  * @throws {RequiredError}
13799
14003
  */
13800
- apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
14004
+ 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>>;
13801
14005
  };
13802
14006
  /**
13803
14007
  * ConsultationsApi - factory interface
@@ -13853,13 +14057,14 @@ export declare const ConsultationsApiFactory: (configuration?: Configuration | u
13853
14057
  * @param {boolean} [isOpen]
13854
14058
  * @param {boolean} [isCompleted]
13855
14059
  * @param {ConsultationStatus} [status]
14060
+ * @param {ConsultationType} [consultationType]
13856
14061
  * @param {number} [page]
13857
14062
  * @param {number} [limit]
13858
14063
  * @param {Date} [lastRetrieved]
13859
14064
  * @param {*} [options] Override http request option.
13860
14065
  * @throws {RequiredError}
13861
14066
  */
13862
- apiV1ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ConsultationsModel>;
14067
+ 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>;
13863
14068
  };
13864
14069
  /**
13865
14070
  * ConsultationsApi - object-oriented interface
@@ -13922,6 +14127,7 @@ export declare class ConsultationsApi extends BaseAPI {
13922
14127
  * @param {boolean} [isOpen]
13923
14128
  * @param {boolean} [isCompleted]
13924
14129
  * @param {ConsultationStatus} [status]
14130
+ * @param {ConsultationType} [consultationType]
13925
14131
  * @param {number} [page]
13926
14132
  * @param {number} [limit]
13927
14133
  * @param {Date} [lastRetrieved]
@@ -13929,7 +14135,7 @@ export declare class ConsultationsApi extends BaseAPI {
13929
14135
  * @throws {RequiredError}
13930
14136
  * @memberof ConsultationsApi
13931
14137
  */
13932
- apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
14138
+ apiV1ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
13933
14139
  }
13934
14140
  /**
13935
14141
  * ContributorsApi - axios parameter creator
@@ -14022,9 +14228,9 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
14022
14228
  * @param {string} [email]
14023
14229
  * @param {string} [description]
14024
14230
  * @param {string} [website]
14025
- * @param {string} [languageCode]
14026
14231
  * @param {string} [hospitalId]
14027
14232
  * @param {boolean} [interviewerOnly]
14233
+ * @param {string} [languageCode]
14028
14234
  * @param {boolean} [showHidden]
14029
14235
  * @param {number} [page]
14030
14236
  * @param {number} [limit]
@@ -14032,7 +14238,7 @@ export declare const ContributorsApiAxiosParamCreator: (configuration?: Configur
14032
14238
  * @param {*} [options] Override http request option.
14033
14239
  * @throws {RequiredError}
14034
14240
  */
14035
- apiV1ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, languageCode?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14241
+ apiV1ContributorsGet: (id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14036
14242
  /**
14037
14243
  *
14038
14244
  * @summary Create a Contributor.
@@ -14142,9 +14348,9 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
14142
14348
  * @param {string} [email]
14143
14349
  * @param {string} [description]
14144
14350
  * @param {string} [website]
14145
- * @param {string} [languageCode]
14146
14351
  * @param {string} [hospitalId]
14147
14352
  * @param {boolean} [interviewerOnly]
14353
+ * @param {string} [languageCode]
14148
14354
  * @param {boolean} [showHidden]
14149
14355
  * @param {number} [page]
14150
14356
  * @param {number} [limit]
@@ -14152,7 +14358,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
14152
14358
  * @param {*} [options] Override http request option.
14153
14359
  * @throws {RequiredError}
14154
14360
  */
14155
- apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, languageCode?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
14361
+ apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
14156
14362
  /**
14157
14363
  *
14158
14364
  * @summary Create a Contributor.
@@ -14262,9 +14468,9 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
14262
14468
  * @param {string} [email]
14263
14469
  * @param {string} [description]
14264
14470
  * @param {string} [website]
14265
- * @param {string} [languageCode]
14266
14471
  * @param {string} [hospitalId]
14267
14472
  * @param {boolean} [interviewerOnly]
14473
+ * @param {string} [languageCode]
14268
14474
  * @param {boolean} [showHidden]
14269
14475
  * @param {number} [page]
14270
14476
  * @param {number} [limit]
@@ -14272,7 +14478,7 @@ export declare const ContributorsApiFactory: (configuration?: Configuration | un
14272
14478
  * @param {*} [options] Override http request option.
14273
14479
  * @throws {RequiredError}
14274
14480
  */
14275
- apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, languageCode?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
14481
+ apiV1ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<ContributorsModel>;
14276
14482
  /**
14277
14483
  *
14278
14484
  * @summary Create a Contributor.
@@ -14392,9 +14598,9 @@ export declare class ContributorsApi extends BaseAPI {
14392
14598
  * @param {string} [email]
14393
14599
  * @param {string} [description]
14394
14600
  * @param {string} [website]
14395
- * @param {string} [languageCode]
14396
14601
  * @param {string} [hospitalId]
14397
14602
  * @param {boolean} [interviewerOnly]
14603
+ * @param {string} [languageCode]
14398
14604
  * @param {boolean} [showHidden]
14399
14605
  * @param {number} [page]
14400
14606
  * @param {number} [limit]
@@ -14403,7 +14609,7 @@ export declare class ContributorsApi extends BaseAPI {
14403
14609
  * @throws {RequiredError}
14404
14610
  * @memberof ContributorsApi
14405
14611
  */
14406
- apiV1ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, languageCode?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel>>;
14612
+ apiV1ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel>>;
14407
14613
  /**
14408
14614
  *
14409
14615
  * @summary Create a Contributor.
@@ -14442,10 +14648,11 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
14442
14648
  * @summary Get country.
14443
14649
  * @param {string} countryId
14444
14650
  * @param {string} [languageCode]
14651
+ * @param {boolean} [returnDefaultValue]
14445
14652
  * @param {*} [options] Override http request option.
14446
14653
  * @throws {RequiredError}
14447
14654
  */
14448
- apiV1CountriesCountryIdGet: (countryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14655
+ apiV1CountriesCountryIdGet: (countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14449
14656
  /**
14450
14657
  *
14451
14658
  * @summary Get all CountryMedias.
@@ -14522,13 +14729,14 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
14522
14729
  * @param {Date} [createdDate]
14523
14730
  * @param {string} [languageCode]
14524
14731
  * @param {boolean} [showHidden]
14732
+ * @param {boolean} [returnDefaultValue]
14525
14733
  * @param {number} [page]
14526
14734
  * @param {number} [limit]
14527
14735
  * @param {Date} [lastRetrieved]
14528
14736
  * @param {*} [options] Override http request option.
14529
14737
  * @throws {RequiredError}
14530
14738
  */
14531
- apiV1CountriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14739
+ apiV1CountriesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14532
14740
  /**
14533
14741
  *
14534
14742
  * @summary Create a country.
@@ -14542,10 +14750,11 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
14542
14750
  * @summary Get country by slug.
14543
14751
  * @param {string} slug
14544
14752
  * @param {string} [languageCode]
14753
+ * @param {boolean} [returnDefaultValue]
14545
14754
  * @param {*} [options] Override http request option.
14546
14755
  * @throws {RequiredError}
14547
14756
  */
14548
- apiV1CountriesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14757
+ apiV1CountriesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
14549
14758
  };
14550
14759
  /**
14551
14760
  * CountriesApi - functional programming interface
@@ -14565,10 +14774,11 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
14565
14774
  * @summary Get country.
14566
14775
  * @param {string} countryId
14567
14776
  * @param {string} [languageCode]
14777
+ * @param {boolean} [returnDefaultValue]
14568
14778
  * @param {*} [options] Override http request option.
14569
14779
  * @throws {RequiredError}
14570
14780
  */
14571
- apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
14781
+ apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
14572
14782
  /**
14573
14783
  *
14574
14784
  * @summary Get all CountryMedias.
@@ -14645,13 +14855,14 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
14645
14855
  * @param {Date} [createdDate]
14646
14856
  * @param {string} [languageCode]
14647
14857
  * @param {boolean} [showHidden]
14858
+ * @param {boolean} [returnDefaultValue]
14648
14859
  * @param {number} [page]
14649
14860
  * @param {number} [limit]
14650
14861
  * @param {Date} [lastRetrieved]
14651
14862
  * @param {*} [options] Override http request option.
14652
14863
  * @throws {RequiredError}
14653
14864
  */
14654
- apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountriesModel>>;
14865
+ apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountriesModel>>;
14655
14866
  /**
14656
14867
  *
14657
14868
  * @summary Create a country.
@@ -14665,10 +14876,11 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
14665
14876
  * @summary Get country by slug.
14666
14877
  * @param {string} slug
14667
14878
  * @param {string} [languageCode]
14879
+ * @param {boolean} [returnDefaultValue]
14668
14880
  * @param {*} [options] Override http request option.
14669
14881
  * @throws {RequiredError}
14670
14882
  */
14671
- apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
14883
+ apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
14672
14884
  };
14673
14885
  /**
14674
14886
  * CountriesApi - factory interface
@@ -14688,10 +14900,11 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
14688
14900
  * @summary Get country.
14689
14901
  * @param {string} countryId
14690
14902
  * @param {string} [languageCode]
14903
+ * @param {boolean} [returnDefaultValue]
14691
14904
  * @param {*} [options] Override http request option.
14692
14905
  * @throws {RequiredError}
14693
14906
  */
14694
- apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<CountryModel>;
14907
+ apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<CountryModel>;
14695
14908
  /**
14696
14909
  *
14697
14910
  * @summary Get all CountryMedias.
@@ -14768,13 +14981,14 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
14768
14981
  * @param {Date} [createdDate]
14769
14982
  * @param {string} [languageCode]
14770
14983
  * @param {boolean} [showHidden]
14984
+ * @param {boolean} [returnDefaultValue]
14771
14985
  * @param {number} [page]
14772
14986
  * @param {number} [limit]
14773
14987
  * @param {Date} [lastRetrieved]
14774
14988
  * @param {*} [options] Override http request option.
14775
14989
  * @throws {RequiredError}
14776
14990
  */
14777
- apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<CountriesModel>;
14991
+ apiV1CountriesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, createdDate?: Date | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<CountriesModel>;
14778
14992
  /**
14779
14993
  *
14780
14994
  * @summary Create a country.
@@ -14788,10 +15002,11 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
14788
15002
  * @summary Get country by slug.
14789
15003
  * @param {string} slug
14790
15004
  * @param {string} [languageCode]
15005
+ * @param {boolean} [returnDefaultValue]
14791
15006
  * @param {*} [options] Override http request option.
14792
15007
  * @throws {RequiredError}
14793
15008
  */
14794
- apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<CountryModel>;
15009
+ apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<CountryModel>;
14795
15010
  };
14796
15011
  /**
14797
15012
  * CountriesApi - object-oriented interface
@@ -14814,11 +15029,12 @@ export declare class CountriesApi extends BaseAPI {
14814
15029
  * @summary Get country.
14815
15030
  * @param {string} countryId
14816
15031
  * @param {string} [languageCode]
15032
+ * @param {boolean} [returnDefaultValue]
14817
15033
  * @param {*} [options] Override http request option.
14818
15034
  * @throws {RequiredError}
14819
15035
  * @memberof CountriesApi
14820
15036
  */
14821
- apiV1CountriesCountryIdGet(countryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
15037
+ apiV1CountriesCountryIdGet(countryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
14822
15038
  /**
14823
15039
  *
14824
15040
  * @summary Get all CountryMedias.
@@ -14902,6 +15118,7 @@ export declare class CountriesApi extends BaseAPI {
14902
15118
  * @param {Date} [createdDate]
14903
15119
  * @param {string} [languageCode]
14904
15120
  * @param {boolean} [showHidden]
15121
+ * @param {boolean} [returnDefaultValue]
14905
15122
  * @param {number} [page]
14906
15123
  * @param {number} [limit]
14907
15124
  * @param {Date} [lastRetrieved]
@@ -14909,7 +15126,7 @@ export declare class CountriesApi extends BaseAPI {
14909
15126
  * @throws {RequiredError}
14910
15127
  * @memberof CountriesApi
14911
15128
  */
14912
- apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountriesModel>>;
15129
+ apiV1CountriesGet(id?: string, name?: string, description?: string, createdDate?: Date, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountriesModel>>;
14913
15130
  /**
14914
15131
  *
14915
15132
  * @summary Create a country.
@@ -14924,11 +15141,12 @@ export declare class CountriesApi extends BaseAPI {
14924
15141
  * @summary Get country by slug.
14925
15142
  * @param {string} slug
14926
15143
  * @param {string} [languageCode]
15144
+ * @param {boolean} [returnDefaultValue]
14927
15145
  * @param {*} [options] Override http request option.
14928
15146
  * @throws {RequiredError}
14929
15147
  * @memberof CountriesApi
14930
15148
  */
14931
- apiV1CountriesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
15149
+ apiV1CountriesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
14932
15150
  }
14933
15151
  /**
14934
15152
  * DealsApi - axios parameter creator
@@ -15790,10 +16008,11 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15790
16008
  * @summary Get Doctor.
15791
16009
  * @param {string} doctorId
15792
16010
  * @param {string} [languageCode]
16011
+ * @param {boolean} [returnDefaultValue]
15793
16012
  * @param {*} [options] Override http request option.
15794
16013
  * @throws {RequiredError}
15795
16014
  */
15796
- apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16015
+ apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15797
16016
  /**
15798
16017
  *
15799
16018
  * @summary Get all DoctorMedias.
@@ -15960,6 +16179,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15960
16179
  * @summary Get all Doctors.
15961
16180
  * @param {string} [hospitalId]
15962
16181
  * @param {string} [languageCode]
16182
+ * @param {boolean} [returnDefaultValue]
15963
16183
  * @param {string} [id]
15964
16184
  * @param {string} [fullname]
15965
16185
  * @param {string} [email]
@@ -15973,7 +16193,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15973
16193
  * @param {*} [options] Override http request option.
15974
16194
  * @throws {RequiredError}
15975
16195
  */
15976
- apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16196
+ apiV1DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15977
16197
  /**
15978
16198
  *
15979
16199
  * @summary Create a Doctor.
@@ -15987,10 +16207,11 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
15987
16207
  * @summary Get Doctor by slug.
15988
16208
  * @param {string} slug
15989
16209
  * @param {string} [languageCode]
16210
+ * @param {boolean} [returnDefaultValue]
15990
16211
  * @param {*} [options] Override http request option.
15991
16212
  * @throws {RequiredError}
15992
16213
  */
15993
- apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
16214
+ apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15994
16215
  };
15995
16216
  /**
15996
16217
  * DoctorsApi - functional programming interface
@@ -16154,10 +16375,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16154
16375
  * @summary Get Doctor.
16155
16376
  * @param {string} doctorId
16156
16377
  * @param {string} [languageCode]
16378
+ * @param {boolean} [returnDefaultValue]
16157
16379
  * @param {*} [options] Override http request option.
16158
16380
  * @throws {RequiredError}
16159
16381
  */
16160
- apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
16382
+ apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
16161
16383
  /**
16162
16384
  *
16163
16385
  * @summary Get all DoctorMedias.
@@ -16324,6 +16546,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16324
16546
  * @summary Get all Doctors.
16325
16547
  * @param {string} [hospitalId]
16326
16548
  * @param {string} [languageCode]
16549
+ * @param {boolean} [returnDefaultValue]
16327
16550
  * @param {string} [id]
16328
16551
  * @param {string} [fullname]
16329
16552
  * @param {string} [email]
@@ -16337,7 +16560,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16337
16560
  * @param {*} [options] Override http request option.
16338
16561
  * @throws {RequiredError}
16339
16562
  */
16340
- apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
16563
+ apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
16341
16564
  /**
16342
16565
  *
16343
16566
  * @summary Create a Doctor.
@@ -16351,10 +16574,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
16351
16574
  * @summary Get Doctor by slug.
16352
16575
  * @param {string} slug
16353
16576
  * @param {string} [languageCode]
16577
+ * @param {boolean} [returnDefaultValue]
16354
16578
  * @param {*} [options] Override http request option.
16355
16579
  * @throws {RequiredError}
16356
16580
  */
16357
- apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
16581
+ apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
16358
16582
  };
16359
16583
  /**
16360
16584
  * DoctorsApi - factory interface
@@ -16518,10 +16742,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
16518
16742
  * @summary Get Doctor.
16519
16743
  * @param {string} doctorId
16520
16744
  * @param {string} [languageCode]
16745
+ * @param {boolean} [returnDefaultValue]
16521
16746
  * @param {*} [options] Override http request option.
16522
16747
  * @throws {RequiredError}
16523
16748
  */
16524
- apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
16749
+ apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
16525
16750
  /**
16526
16751
  *
16527
16752
  * @summary Get all DoctorMedias.
@@ -16688,6 +16913,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
16688
16913
  * @summary Get all Doctors.
16689
16914
  * @param {string} [hospitalId]
16690
16915
  * @param {string} [languageCode]
16916
+ * @param {boolean} [returnDefaultValue]
16691
16917
  * @param {string} [id]
16692
16918
  * @param {string} [fullname]
16693
16919
  * @param {string} [email]
@@ -16701,7 +16927,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
16701
16927
  * @param {*} [options] Override http request option.
16702
16928
  * @throws {RequiredError}
16703
16929
  */
16704
- apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
16930
+ apiV1DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, id?: string | undefined, fullname?: string | undefined, email?: string | undefined, gender?: Gender | undefined, dateOfBirth?: Date | undefined, created?: Date | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DoctorsModel>;
16705
16931
  /**
16706
16932
  *
16707
16933
  * @summary Create a Doctor.
@@ -16715,10 +16941,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
16715
16941
  * @summary Get Doctor by slug.
16716
16942
  * @param {string} slug
16717
16943
  * @param {string} [languageCode]
16944
+ * @param {boolean} [returnDefaultValue]
16718
16945
  * @param {*} [options] Override http request option.
16719
16946
  * @throws {RequiredError}
16720
16947
  */
16721
- apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
16948
+ apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
16722
16949
  };
16723
16950
  /**
16724
16951
  * DoctorsApi - object-oriented interface
@@ -16899,11 +17126,12 @@ export declare class DoctorsApi extends BaseAPI {
16899
17126
  * @summary Get Doctor.
16900
17127
  * @param {string} doctorId
16901
17128
  * @param {string} [languageCode]
17129
+ * @param {boolean} [returnDefaultValue]
16902
17130
  * @param {*} [options] Override http request option.
16903
17131
  * @throws {RequiredError}
16904
17132
  * @memberof DoctorsApi
16905
17133
  */
16906
- apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
17134
+ apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
16907
17135
  /**
16908
17136
  *
16909
17137
  * @summary Get all DoctorMedias.
@@ -17086,6 +17314,7 @@ export declare class DoctorsApi extends BaseAPI {
17086
17314
  * @summary Get all Doctors.
17087
17315
  * @param {string} [hospitalId]
17088
17316
  * @param {string} [languageCode]
17317
+ * @param {boolean} [returnDefaultValue]
17089
17318
  * @param {string} [id]
17090
17319
  * @param {string} [fullname]
17091
17320
  * @param {string} [email]
@@ -17100,7 +17329,7 @@ export declare class DoctorsApi extends BaseAPI {
17100
17329
  * @throws {RequiredError}
17101
17330
  * @memberof DoctorsApi
17102
17331
  */
17103
- apiV1DoctorsGet(hospitalId?: string, languageCode?: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
17332
+ apiV1DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
17104
17333
  /**
17105
17334
  *
17106
17335
  * @summary Create a Doctor.
@@ -17115,11 +17344,12 @@ export declare class DoctorsApi extends BaseAPI {
17115
17344
  * @summary Get Doctor by slug.
17116
17345
  * @param {string} slug
17117
17346
  * @param {string} [languageCode]
17347
+ * @param {boolean} [returnDefaultValue]
17118
17348
  * @param {*} [options] Override http request option.
17119
17349
  * @throws {RequiredError}
17120
17350
  * @memberof DoctorsApi
17121
17351
  */
17122
- apiV1DoctorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
17352
+ apiV1DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
17123
17353
  }
17124
17354
  /**
17125
17355
  * EmailMarketingsApi - axios parameter creator
@@ -17754,14 +17984,17 @@ export declare const FaqsApiAxiosParamCreator: (configuration?: Configuration |
17754
17984
  * @param {string} [title]
17755
17985
  * @param {string} [content]
17756
17986
  * @param {string} [categoryId]
17987
+ * @param {string} [hospitalId]
17988
+ * @param {string} [hospitalName]
17757
17989
  * @param {string} [languageCode]
17990
+ * @param {boolean} [showHidden]
17758
17991
  * @param {number} [page]
17759
17992
  * @param {number} [limit]
17760
17993
  * @param {Date} [lastRetrieved]
17761
17994
  * @param {*} [options] Override http request option.
17762
17995
  * @throws {RequiredError}
17763
17996
  */
17764
- apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17997
+ apiV1FaqsGet: (id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
17765
17998
  /**
17766
17999
  *
17767
18000
  * @summary Create a faq.
@@ -17868,14 +18101,17 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
17868
18101
  * @param {string} [title]
17869
18102
  * @param {string} [content]
17870
18103
  * @param {string} [categoryId]
18104
+ * @param {string} [hospitalId]
18105
+ * @param {string} [hospitalName]
17871
18106
  * @param {string} [languageCode]
18107
+ * @param {boolean} [showHidden]
17872
18108
  * @param {number} [page]
17873
18109
  * @param {number} [limit]
17874
18110
  * @param {Date} [lastRetrieved]
17875
18111
  * @param {*} [options] Override http request option.
17876
18112
  * @throws {RequiredError}
17877
18113
  */
17878
- apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
18114
+ apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
17879
18115
  /**
17880
18116
  *
17881
18117
  * @summary Create a faq.
@@ -17982,14 +18218,17 @@ export declare const FaqsApiFactory: (configuration?: Configuration | undefined,
17982
18218
  * @param {string} [title]
17983
18219
  * @param {string} [content]
17984
18220
  * @param {string} [categoryId]
18221
+ * @param {string} [hospitalId]
18222
+ * @param {string} [hospitalName]
17985
18223
  * @param {string} [languageCode]
18224
+ * @param {boolean} [showHidden]
17986
18225
  * @param {number} [page]
17987
18226
  * @param {number} [limit]
17988
18227
  * @param {Date} [lastRetrieved]
17989
18228
  * @param {*} [options] Override http request option.
17990
18229
  * @throws {RequiredError}
17991
18230
  */
17992
- apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
18231
+ apiV1FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<FaqsModel>;
17993
18232
  /**
17994
18233
  *
17995
18234
  * @summary Create a faq.
@@ -18106,7 +18345,10 @@ export declare class FaqsApi extends BaseAPI {
18106
18345
  * @param {string} [title]
18107
18346
  * @param {string} [content]
18108
18347
  * @param {string} [categoryId]
18348
+ * @param {string} [hospitalId]
18349
+ * @param {string} [hospitalName]
18109
18350
  * @param {string} [languageCode]
18351
+ * @param {boolean} [showHidden]
18110
18352
  * @param {number} [page]
18111
18353
  * @param {number} [limit]
18112
18354
  * @param {Date} [lastRetrieved]
@@ -18114,7 +18356,7 @@ export declare class FaqsApi extends BaseAPI {
18114
18356
  * @throws {RequiredError}
18115
18357
  * @memberof FaqsApi
18116
18358
  */
18117
- apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
18359
+ apiV1FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
18118
18360
  /**
18119
18361
  *
18120
18362
  * @summary Create a faq.
@@ -18156,13 +18398,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
18156
18398
  * @param {boolean} [showHidden]
18157
18399
  * @param {string} [languageCode]
18158
18400
  * @param {Array<string>} [ids]
18401
+ * @param {boolean} [returnDefaultValue]
18159
18402
  * @param {number} [page]
18160
18403
  * @param {number} [limit]
18161
18404
  * @param {Date} [lastRetrieved]
18162
18405
  * @param {*} [options] Override http request option.
18163
18406
  * @throws {RequiredError}
18164
18407
  */
18165
- apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18408
+ apiV1HospitalsGet: (hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18166
18409
  /**
18167
18410
  *
18168
18411
  * @summary Delete HospitalAccreditation.
@@ -18367,10 +18610,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
18367
18610
  * @summary Get Hospital.
18368
18611
  * @param {string} hospitalId
18369
18612
  * @param {string} [languageCode]
18613
+ * @param {boolean} [returnDefaultValue]
18370
18614
  * @param {*} [options] Override http request option.
18371
18615
  * @throws {RequiredError}
18372
18616
  */
18373
- apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18617
+ apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18374
18618
  /**
18375
18619
  *
18376
18620
  * @summary Get all HospitalMedias.
@@ -18503,13 +18747,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
18503
18747
  * @param {Procedure} [procedure]
18504
18748
  * @param {Date} [created]
18505
18749
  * @param {string} [languageCode]
18750
+ * @param {boolean} [returnDefaultValue]
18506
18751
  * @param {number} [page]
18507
18752
  * @param {number} [limit]
18508
18753
  * @param {Date} [lastRetrieved]
18509
18754
  * @param {*} [options] Override http request option.
18510
18755
  * @throws {RequiredError}
18511
18756
  */
18512
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18757
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet: (hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18513
18758
  /**
18514
18759
  *
18515
18760
  * @summary Create HospitalService.
@@ -18537,10 +18782,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
18537
18782
  * @param {string} specialtyId
18538
18783
  * @param {string} serviceId
18539
18784
  * @param {string} [languageCode]
18785
+ * @param {boolean} [returnDefaultValue]
18540
18786
  * @param {*} [options] Override http request option.
18541
18787
  * @throws {RequiredError}
18542
18788
  */
18543
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18789
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18544
18790
  /**
18545
18791
  *
18546
18792
  * @summary Get all HospitalServiceMedias.
@@ -18636,22 +18882,24 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
18636
18882
  * @param {boolean} [showHidden]
18637
18883
  * @param {string} [languageCode]
18638
18884
  * @param {Array<string>} [ids]
18885
+ * @param {boolean} [returnDefaultValue]
18639
18886
  * @param {number} [page]
18640
18887
  * @param {number} [limit]
18641
18888
  * @param {Date} [lastRetrieved]
18642
18889
  * @param {*} [options] Override http request option.
18643
18890
  * @throws {RequiredError}
18644
18891
  */
18645
- apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18892
+ apiV1HospitalsSimpleGet: (hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18646
18893
  /**
18647
18894
  *
18648
18895
  * @summary Get Hospital by slug.
18649
18896
  * @param {string} slug
18650
18897
  * @param {string} [languageCode]
18898
+ * @param {boolean} [returnDefaultValue]
18651
18899
  * @param {*} [options] Override http request option.
18652
18900
  * @throws {RequiredError}
18653
18901
  */
18654
- apiV1HospitalsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18902
+ apiV1HospitalsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18655
18903
  };
18656
18904
  /**
18657
18905
  * HospitalsApi - functional programming interface
@@ -18674,13 +18922,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
18674
18922
  * @param {boolean} [showHidden]
18675
18923
  * @param {string} [languageCode]
18676
18924
  * @param {Array<string>} [ids]
18925
+ * @param {boolean} [returnDefaultValue]
18677
18926
  * @param {number} [page]
18678
18927
  * @param {number} [limit]
18679
18928
  * @param {Date} [lastRetrieved]
18680
18929
  * @param {*} [options] Override http request option.
18681
18930
  * @throws {RequiredError}
18682
18931
  */
18683
- apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
18932
+ apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
18684
18933
  /**
18685
18934
  *
18686
18935
  * @summary Delete HospitalAccreditation.
@@ -18885,10 +19134,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
18885
19134
  * @summary Get Hospital.
18886
19135
  * @param {string} hospitalId
18887
19136
  * @param {string} [languageCode]
19137
+ * @param {boolean} [returnDefaultValue]
18888
19138
  * @param {*} [options] Override http request option.
18889
19139
  * @throws {RequiredError}
18890
19140
  */
18891
- apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
19141
+ apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
18892
19142
  /**
18893
19143
  *
18894
19144
  * @summary Get all HospitalMedias.
@@ -19021,13 +19271,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
19021
19271
  * @param {Procedure} [procedure]
19022
19272
  * @param {Date} [created]
19023
19273
  * @param {string} [languageCode]
19274
+ * @param {boolean} [returnDefaultValue]
19024
19275
  * @param {number} [page]
19025
19276
  * @param {number} [limit]
19026
19277
  * @param {Date} [lastRetrieved]
19027
19278
  * @param {*} [options] Override http request option.
19028
19279
  * @throws {RequiredError}
19029
19280
  */
19030
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
19281
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
19031
19282
  /**
19032
19283
  *
19033
19284
  * @summary Create HospitalService.
@@ -19055,10 +19306,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
19055
19306
  * @param {string} specialtyId
19056
19307
  * @param {string} serviceId
19057
19308
  * @param {string} [languageCode]
19309
+ * @param {boolean} [returnDefaultValue]
19058
19310
  * @param {*} [options] Override http request option.
19059
19311
  * @throws {RequiredError}
19060
19312
  */
19061
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
19313
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
19062
19314
  /**
19063
19315
  *
19064
19316
  * @summary Get all HospitalServiceMedias.
@@ -19154,22 +19406,24 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
19154
19406
  * @param {boolean} [showHidden]
19155
19407
  * @param {string} [languageCode]
19156
19408
  * @param {Array<string>} [ids]
19409
+ * @param {boolean} [returnDefaultValue]
19157
19410
  * @param {number} [page]
19158
19411
  * @param {number} [limit]
19159
19412
  * @param {Date} [lastRetrieved]
19160
19413
  * @param {*} [options] Override http request option.
19161
19414
  * @throws {RequiredError}
19162
19415
  */
19163
- apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
19416
+ apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
19164
19417
  /**
19165
19418
  *
19166
19419
  * @summary Get Hospital by slug.
19167
19420
  * @param {string} slug
19168
19421
  * @param {string} [languageCode]
19422
+ * @param {boolean} [returnDefaultValue]
19169
19423
  * @param {*} [options] Override http request option.
19170
19424
  * @throws {RequiredError}
19171
19425
  */
19172
- apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
19426
+ apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
19173
19427
  };
19174
19428
  /**
19175
19429
  * HospitalsApi - factory interface
@@ -19192,13 +19446,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
19192
19446
  * @param {boolean} [showHidden]
19193
19447
  * @param {string} [languageCode]
19194
19448
  * @param {Array<string>} [ids]
19449
+ * @param {boolean} [returnDefaultValue]
19195
19450
  * @param {number} [page]
19196
19451
  * @param {number} [limit]
19197
19452
  * @param {Date} [lastRetrieved]
19198
19453
  * @param {*} [options] Override http request option.
19199
19454
  * @throws {RequiredError}
19200
19455
  */
19201
- apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
19456
+ apiV1HospitalsGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsModel>;
19202
19457
  /**
19203
19458
  *
19204
19459
  * @summary Delete HospitalAccreditation.
@@ -19403,10 +19658,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
19403
19658
  * @summary Get Hospital.
19404
19659
  * @param {string} hospitalId
19405
19660
  * @param {string} [languageCode]
19661
+ * @param {boolean} [returnDefaultValue]
19406
19662
  * @param {*} [options] Override http request option.
19407
19663
  * @throws {RequiredError}
19408
19664
  */
19409
- apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalModel>;
19665
+ apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
19410
19666
  /**
19411
19667
  *
19412
19668
  * @summary Get all HospitalMedias.
@@ -19539,13 +19795,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
19539
19795
  * @param {Procedure} [procedure]
19540
19796
  * @param {Date} [created]
19541
19797
  * @param {string} [languageCode]
19798
+ * @param {boolean} [returnDefaultValue]
19542
19799
  * @param {number} [page]
19543
19800
  * @param {number} [limit]
19544
19801
  * @param {Date} [lastRetrieved]
19545
19802
  * @param {*} [options] Override http request option.
19546
19803
  * @throws {RequiredError}
19547
19804
  */
19548
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
19805
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
19549
19806
  /**
19550
19807
  *
19551
19808
  * @summary Create HospitalService.
@@ -19573,10 +19830,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
19573
19830
  * @param {string} specialtyId
19574
19831
  * @param {string} serviceId
19575
19832
  * @param {string} [languageCode]
19833
+ * @param {boolean} [returnDefaultValue]
19576
19834
  * @param {*} [options] Override http request option.
19577
19835
  * @throws {RequiredError}
19578
19836
  */
19579
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
19837
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
19580
19838
  /**
19581
19839
  *
19582
19840
  * @summary Get all HospitalServiceMedias.
@@ -19672,22 +19930,24 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
19672
19930
  * @param {boolean} [showHidden]
19673
19931
  * @param {string} [languageCode]
19674
19932
  * @param {Array<string>} [ids]
19933
+ * @param {boolean} [returnDefaultValue]
19675
19934
  * @param {number} [page]
19676
19935
  * @param {number} [limit]
19677
19936
  * @param {Date} [lastRetrieved]
19678
19937
  * @param {*} [options] Override http request option.
19679
19938
  * @throws {RequiredError}
19680
19939
  */
19681
- apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
19940
+ apiV1HospitalsSimpleGet(hospitalId?: string | undefined, name?: string | undefined, description?: string | undefined, countryId?: string | undefined, created?: Date | undefined, marketingType?: MarketingType | undefined, specialtyTypeId?: string | undefined, specialtyId?: string | undefined, serviceId?: string | undefined, exceptHospitalId?: string | undefined, showHidden?: boolean | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalsSimpleModel>;
19682
19941
  /**
19683
19942
  *
19684
19943
  * @summary Get Hospital by slug.
19685
19944
  * @param {string} slug
19686
19945
  * @param {string} [languageCode]
19946
+ * @param {boolean} [returnDefaultValue]
19687
19947
  * @param {*} [options] Override http request option.
19688
19948
  * @throws {RequiredError}
19689
19949
  */
19690
- apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalModel>;
19950
+ apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
19691
19951
  };
19692
19952
  /**
19693
19953
  * HospitalsApi - object-oriented interface
@@ -19712,6 +19972,7 @@ export declare class HospitalsApi extends BaseAPI {
19712
19972
  * @param {boolean} [showHidden]
19713
19973
  * @param {string} [languageCode]
19714
19974
  * @param {Array<string>} [ids]
19975
+ * @param {boolean} [returnDefaultValue]
19715
19976
  * @param {number} [page]
19716
19977
  * @param {number} [limit]
19717
19978
  * @param {Date} [lastRetrieved]
@@ -19719,7 +19980,7 @@ export declare class HospitalsApi extends BaseAPI {
19719
19980
  * @throws {RequiredError}
19720
19981
  * @memberof HospitalsApi
19721
19982
  */
19722
- apiV1HospitalsGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
19983
+ apiV1HospitalsGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
19723
19984
  /**
19724
19985
  *
19725
19986
  * @summary Delete HospitalAccreditation.
@@ -19943,11 +20204,12 @@ export declare class HospitalsApi extends BaseAPI {
19943
20204
  * @summary Get Hospital.
19944
20205
  * @param {string} hospitalId
19945
20206
  * @param {string} [languageCode]
20207
+ * @param {boolean} [returnDefaultValue]
19946
20208
  * @param {*} [options] Override http request option.
19947
20209
  * @throws {RequiredError}
19948
20210
  * @memberof HospitalsApi
19949
20211
  */
19950
- apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
20212
+ apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
19951
20213
  /**
19952
20214
  *
19953
20215
  * @summary Get all HospitalMedias.
@@ -20091,6 +20353,7 @@ export declare class HospitalsApi extends BaseAPI {
20091
20353
  * @param {Procedure} [procedure]
20092
20354
  * @param {Date} [created]
20093
20355
  * @param {string} [languageCode]
20356
+ * @param {boolean} [returnDefaultValue]
20094
20357
  * @param {number} [page]
20095
20358
  * @param {number} [limit]
20096
20359
  * @param {Date} [lastRetrieved]
@@ -20098,7 +20361,7 @@ export declare class HospitalsApi extends BaseAPI {
20098
20361
  * @throws {RequiredError}
20099
20362
  * @memberof HospitalsApi
20100
20363
  */
20101
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
20364
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(hospitalId: string, specialtyId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
20102
20365
  /**
20103
20366
  *
20104
20367
  * @summary Create HospitalService.
@@ -20128,11 +20391,12 @@ export declare class HospitalsApi extends BaseAPI {
20128
20391
  * @param {string} specialtyId
20129
20392
  * @param {string} serviceId
20130
20393
  * @param {string} [languageCode]
20394
+ * @param {boolean} [returnDefaultValue]
20131
20395
  * @param {*} [options] Override http request option.
20132
20396
  * @throws {RequiredError}
20133
20397
  * @memberof HospitalsApi
20134
20398
  */
20135
- apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
20399
+ apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
20136
20400
  /**
20137
20401
  *
20138
20402
  * @summary Get all HospitalServiceMedias.
@@ -20235,6 +20499,7 @@ export declare class HospitalsApi extends BaseAPI {
20235
20499
  * @param {boolean} [showHidden]
20236
20500
  * @param {string} [languageCode]
20237
20501
  * @param {Array<string>} [ids]
20502
+ * @param {boolean} [returnDefaultValue]
20238
20503
  * @param {number} [page]
20239
20504
  * @param {number} [limit]
20240
20505
  * @param {Date} [lastRetrieved]
@@ -20242,17 +20507,18 @@ export declare class HospitalsApi extends BaseAPI {
20242
20507
  * @throws {RequiredError}
20243
20508
  * @memberof HospitalsApi
20244
20509
  */
20245
- apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
20510
+ apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, description?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, serviceId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsSimpleModel>>;
20246
20511
  /**
20247
20512
  *
20248
20513
  * @summary Get Hospital by slug.
20249
20514
  * @param {string} slug
20250
20515
  * @param {string} [languageCode]
20516
+ * @param {boolean} [returnDefaultValue]
20251
20517
  * @param {*} [options] Override http request option.
20252
20518
  * @throws {RequiredError}
20253
20519
  * @memberof HospitalsApi
20254
20520
  */
20255
- apiV1HospitalsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
20521
+ apiV1HospitalsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
20256
20522
  }
20257
20523
  /**
20258
20524
  * ImagesApi - axios parameter creator
@@ -21989,31 +22255,34 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
21989
22255
  * @param {Procedure} [procedure]
21990
22256
  * @param {Date} [created]
21991
22257
  * @param {string} [languageCode]
22258
+ * @param {boolean} [returnDefaultValue]
21992
22259
  * @param {number} [page]
21993
22260
  * @param {number} [limit]
21994
22261
  * @param {Date} [lastRetrieved]
21995
22262
  * @param {*} [options] Override http request option.
21996
22263
  * @throws {RequiredError}
21997
22264
  */
21998
- apiV1ServicesGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22265
+ apiV1ServicesGet: (hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
21999
22266
  /**
22000
22267
  *
22001
22268
  * @summary Get HospitalService.
22002
22269
  * @param {string} serviceId
22003
22270
  * @param {string} [languageCode]
22271
+ * @param {boolean} [returnDefaultValue]
22004
22272
  * @param {*} [options] Override http request option.
22005
22273
  * @throws {RequiredError}
22006
22274
  */
22007
- apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22275
+ apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22008
22276
  /**
22009
22277
  *
22010
22278
  * @summary Get HospitalService by slug.
22011
22279
  * @param {string} slug
22012
22280
  * @param {string} [languageCode]
22281
+ * @param {boolean} [returnDefaultValue]
22013
22282
  * @param {*} [options] Override http request option.
22014
22283
  * @throws {RequiredError}
22015
22284
  */
22016
- apiV1ServicesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22285
+ apiV1ServicesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22017
22286
  };
22018
22287
  /**
22019
22288
  * ServicesApi - functional programming interface
@@ -22038,31 +22307,34 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
22038
22307
  * @param {Procedure} [procedure]
22039
22308
  * @param {Date} [created]
22040
22309
  * @param {string} [languageCode]
22310
+ * @param {boolean} [returnDefaultValue]
22041
22311
  * @param {number} [page]
22042
22312
  * @param {number} [limit]
22043
22313
  * @param {Date} [lastRetrieved]
22044
22314
  * @param {*} [options] Override http request option.
22045
22315
  * @throws {RequiredError}
22046
22316
  */
22047
- apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
22317
+ apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
22048
22318
  /**
22049
22319
  *
22050
22320
  * @summary Get HospitalService.
22051
22321
  * @param {string} serviceId
22052
22322
  * @param {string} [languageCode]
22323
+ * @param {boolean} [returnDefaultValue]
22053
22324
  * @param {*} [options] Override http request option.
22054
22325
  * @throws {RequiredError}
22055
22326
  */
22056
- apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
22327
+ apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
22057
22328
  /**
22058
22329
  *
22059
22330
  * @summary Get HospitalService by slug.
22060
22331
  * @param {string} slug
22061
22332
  * @param {string} [languageCode]
22333
+ * @param {boolean} [returnDefaultValue]
22062
22334
  * @param {*} [options] Override http request option.
22063
22335
  * @throws {RequiredError}
22064
22336
  */
22065
- apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
22337
+ apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
22066
22338
  };
22067
22339
  /**
22068
22340
  * ServicesApi - factory interface
@@ -22087,31 +22359,34 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
22087
22359
  * @param {Procedure} [procedure]
22088
22360
  * @param {Date} [created]
22089
22361
  * @param {string} [languageCode]
22362
+ * @param {boolean} [returnDefaultValue]
22090
22363
  * @param {number} [page]
22091
22364
  * @param {number} [limit]
22092
22365
  * @param {Date} [lastRetrieved]
22093
22366
  * @param {*} [options] Override http request option.
22094
22367
  * @throws {RequiredError}
22095
22368
  */
22096
- apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
22369
+ apiV1ServicesGet(hospitalId?: string | undefined, hospitalName?: string | undefined, hospitalSlug?: string | undefined, id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, specialtyTypeName?: string | undefined, serviceCategoryId?: string | undefined, marketingType?: MarketingType | undefined, procedure?: Procedure | undefined, created?: Date | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalServicesModel>;
22097
22370
  /**
22098
22371
  *
22099
22372
  * @summary Get HospitalService.
22100
22373
  * @param {string} serviceId
22101
22374
  * @param {string} [languageCode]
22375
+ * @param {boolean} [returnDefaultValue]
22102
22376
  * @param {*} [options] Override http request option.
22103
22377
  * @throws {RequiredError}
22104
22378
  */
22105
- apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
22379
+ apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
22106
22380
  /**
22107
22381
  *
22108
22382
  * @summary Get HospitalService by slug.
22109
22383
  * @param {string} slug
22110
22384
  * @param {string} [languageCode]
22385
+ * @param {boolean} [returnDefaultValue]
22111
22386
  * @param {*} [options] Override http request option.
22112
22387
  * @throws {RequiredError}
22113
22388
  */
22114
- apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
22389
+ apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
22115
22390
  };
22116
22391
  /**
22117
22392
  * ServicesApi - object-oriented interface
@@ -22138,6 +22413,7 @@ export declare class ServicesApi extends BaseAPI {
22138
22413
  * @param {Procedure} [procedure]
22139
22414
  * @param {Date} [created]
22140
22415
  * @param {string} [languageCode]
22416
+ * @param {boolean} [returnDefaultValue]
22141
22417
  * @param {number} [page]
22142
22418
  * @param {number} [limit]
22143
22419
  * @param {Date} [lastRetrieved]
@@ -22145,27 +22421,29 @@ export declare class ServicesApi extends BaseAPI {
22145
22421
  * @throws {RequiredError}
22146
22422
  * @memberof ServicesApi
22147
22423
  */
22148
- apiV1ServicesGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
22424
+ apiV1ServicesGet(hospitalId?: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel>>;
22149
22425
  /**
22150
22426
  *
22151
22427
  * @summary Get HospitalService.
22152
22428
  * @param {string} serviceId
22153
22429
  * @param {string} [languageCode]
22430
+ * @param {boolean} [returnDefaultValue]
22154
22431
  * @param {*} [options] Override http request option.
22155
22432
  * @throws {RequiredError}
22156
22433
  * @memberof ServicesApi
22157
22434
  */
22158
- apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
22435
+ apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
22159
22436
  /**
22160
22437
  *
22161
22438
  * @summary Get HospitalService by slug.
22162
22439
  * @param {string} slug
22163
22440
  * @param {string} [languageCode]
22441
+ * @param {boolean} [returnDefaultValue]
22164
22442
  * @param {*} [options] Override http request option.
22165
22443
  * @throws {RequiredError}
22166
22444
  * @memberof ServicesApi
22167
22445
  */
22168
- apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
22446
+ apiV1ServicesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
22169
22447
  }
22170
22448
  /**
22171
22449
  * ServicesCategoriesApi - axios parameter creator
@@ -22402,13 +22680,14 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
22402
22680
  * @param {Date} [created]
22403
22681
  * @param {string} [languageCode]
22404
22682
  * @param {Array<string>} [ids]
22683
+ * @param {boolean} [returnDefaultValue]
22405
22684
  * @param {number} [page]
22406
22685
  * @param {number} [limit]
22407
22686
  * @param {Date} [lastRetrieved]
22408
22687
  * @param {*} [options] Override http request option.
22409
22688
  * @throws {RequiredError}
22410
22689
  */
22411
- apiV1SpecialtiesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22690
+ apiV1SpecialtiesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22412
22691
  /**
22413
22692
  *
22414
22693
  * @summary Create a Specialty.
@@ -22422,10 +22701,11 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
22422
22701
  * @summary Get Specialty by slug.
22423
22702
  * @param {string} slug
22424
22703
  * @param {string} [languageCode]
22704
+ * @param {boolean} [returnDefaultValue]
22425
22705
  * @param {*} [options] Override http request option.
22426
22706
  * @throws {RequiredError}
22427
22707
  */
22428
- apiV1SpecialtiesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22708
+ apiV1SpecialtiesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22429
22709
  /**
22430
22710
  *
22431
22711
  * @summary Delete Specialty.
@@ -22439,10 +22719,11 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
22439
22719
  * @summary Get Specialty.
22440
22720
  * @param {string} specialtyId
22441
22721
  * @param {string} [languageCode]
22722
+ * @param {boolean} [returnDefaultValue]
22442
22723
  * @param {*} [options] Override http request option.
22443
22724
  * @throws {RequiredError}
22444
22725
  */
22445
- apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22726
+ apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22446
22727
  /**
22447
22728
  *
22448
22729
  * @summary Get all SpecialtyMedias.
@@ -22519,13 +22800,14 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
22519
22800
  * @param {Date} [created]
22520
22801
  * @param {string} [languageCode]
22521
22802
  * @param {Array<string>} [ids]
22803
+ * @param {boolean} [returnDefaultValue]
22522
22804
  * @param {number} [page]
22523
22805
  * @param {number} [limit]
22524
22806
  * @param {Date} [lastRetrieved]
22525
22807
  * @param {*} [options] Override http request option.
22526
22808
  * @throws {RequiredError}
22527
22809
  */
22528
- apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
22810
+ apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
22529
22811
  /**
22530
22812
  *
22531
22813
  * @summary Create a Specialty.
@@ -22539,10 +22821,11 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
22539
22821
  * @summary Get Specialty by slug.
22540
22822
  * @param {string} slug
22541
22823
  * @param {string} [languageCode]
22824
+ * @param {boolean} [returnDefaultValue]
22542
22825
  * @param {*} [options] Override http request option.
22543
22826
  * @throws {RequiredError}
22544
22827
  */
22545
- apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
22828
+ apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
22546
22829
  /**
22547
22830
  *
22548
22831
  * @summary Delete Specialty.
@@ -22556,10 +22839,11 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
22556
22839
  * @summary Get Specialty.
22557
22840
  * @param {string} specialtyId
22558
22841
  * @param {string} [languageCode]
22842
+ * @param {boolean} [returnDefaultValue]
22559
22843
  * @param {*} [options] Override http request option.
22560
22844
  * @throws {RequiredError}
22561
22845
  */
22562
- apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
22846
+ apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
22563
22847
  /**
22564
22848
  *
22565
22849
  * @summary Get all SpecialtyMedias.
@@ -22636,13 +22920,14 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
22636
22920
  * @param {Date} [created]
22637
22921
  * @param {string} [languageCode]
22638
22922
  * @param {Array<string>} [ids]
22923
+ * @param {boolean} [returnDefaultValue]
22639
22924
  * @param {number} [page]
22640
22925
  * @param {number} [limit]
22641
22926
  * @param {Date} [lastRetrieved]
22642
22927
  * @param {*} [options] Override http request option.
22643
22928
  * @throws {RequiredError}
22644
22929
  */
22645
- apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
22930
+ apiV1SpecialtiesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, specialtyTypeId?: string | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtiesModel>;
22646
22931
  /**
22647
22932
  *
22648
22933
  * @summary Create a Specialty.
@@ -22656,10 +22941,11 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
22656
22941
  * @summary Get Specialty by slug.
22657
22942
  * @param {string} slug
22658
22943
  * @param {string} [languageCode]
22944
+ * @param {boolean} [returnDefaultValue]
22659
22945
  * @param {*} [options] Override http request option.
22660
22946
  * @throws {RequiredError}
22661
22947
  */
22662
- apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyModel>;
22948
+ apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyModel>;
22663
22949
  /**
22664
22950
  *
22665
22951
  * @summary Delete Specialty.
@@ -22673,10 +22959,11 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
22673
22959
  * @summary Get Specialty.
22674
22960
  * @param {string} specialtyId
22675
22961
  * @param {string} [languageCode]
22962
+ * @param {boolean} [returnDefaultValue]
22676
22963
  * @param {*} [options] Override http request option.
22677
22964
  * @throws {RequiredError}
22678
22965
  */
22679
- apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyModel>;
22966
+ apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyModel>;
22680
22967
  /**
22681
22968
  *
22682
22969
  * @summary Get all SpecialtyMedias.
@@ -22755,6 +23042,7 @@ export declare class SpecialtiesApi extends BaseAPI {
22755
23042
  * @param {Date} [created]
22756
23043
  * @param {string} [languageCode]
22757
23044
  * @param {Array<string>} [ids]
23045
+ * @param {boolean} [returnDefaultValue]
22758
23046
  * @param {number} [page]
22759
23047
  * @param {number} [limit]
22760
23048
  * @param {Date} [lastRetrieved]
@@ -22762,7 +23050,7 @@ export declare class SpecialtiesApi extends BaseAPI {
22762
23050
  * @throws {RequiredError}
22763
23051
  * @memberof SpecialtiesApi
22764
23052
  */
22765
- apiV1SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
23053
+ apiV1SpecialtiesGet(id?: string, name?: string, description?: string, specialtyTypeId?: string, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
22766
23054
  /**
22767
23055
  *
22768
23056
  * @summary Create a Specialty.
@@ -22777,11 +23065,12 @@ export declare class SpecialtiesApi extends BaseAPI {
22777
23065
  * @summary Get Specialty by slug.
22778
23066
  * @param {string} slug
22779
23067
  * @param {string} [languageCode]
23068
+ * @param {boolean} [returnDefaultValue]
22780
23069
  * @param {*} [options] Override http request option.
22781
23070
  * @throws {RequiredError}
22782
23071
  * @memberof SpecialtiesApi
22783
23072
  */
22784
- apiV1SpecialtiesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
23073
+ apiV1SpecialtiesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
22785
23074
  /**
22786
23075
  *
22787
23076
  * @summary Delete Specialty.
@@ -22796,11 +23085,12 @@ export declare class SpecialtiesApi extends BaseAPI {
22796
23085
  * @summary Get Specialty.
22797
23086
  * @param {string} specialtyId
22798
23087
  * @param {string} [languageCode]
23088
+ * @param {boolean} [returnDefaultValue]
22799
23089
  * @param {*} [options] Override http request option.
22800
23090
  * @throws {RequiredError}
22801
23091
  * @memberof SpecialtiesApi
22802
23092
  */
22803
- apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
23093
+ apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
22804
23094
  /**
22805
23095
  *
22806
23096
  * @summary Get all SpecialtyMedias.
@@ -22884,13 +23174,14 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
22884
23174
  * @param {string} [languageCode]
22885
23175
  * @param {Array<string>} [ids]
22886
23176
  * @param {string} [specialtyTypeCategoryId]
23177
+ * @param {boolean} [returnDefaultValue]
22887
23178
  * @param {number} [page]
22888
23179
  * @param {number} [limit]
22889
23180
  * @param {Date} [lastRetrieved]
22890
23181
  * @param {*} [options] Override http request option.
22891
23182
  * @throws {RequiredError}
22892
23183
  */
22893
- apiV1SpecialtytypesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
23184
+ apiV1SpecialtytypesGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22894
23185
  /**
22895
23186
  *
22896
23187
  * @summary Create a Department.
@@ -22899,15 +23190,36 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
22899
23190
  * @throws {RequiredError}
22900
23191
  */
22901
23192
  apiV1SpecialtytypesPost: (createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
23193
+ /**
23194
+ *
23195
+ * @summary Get all Hospitals.
23196
+ * @param {string} [id]
23197
+ * @param {string} [name]
23198
+ * @param {string} [description]
23199
+ * @param {MarketingType} [marketingType]
23200
+ * @param {string} [hospitalId]
23201
+ * @param {Date} [created]
23202
+ * @param {string} [languageCode]
23203
+ * @param {Array<string>} [ids]
23204
+ * @param {string} [specialtyTypeCategoryId]
23205
+ * @param {boolean} [returnDefaultValue]
23206
+ * @param {number} [page]
23207
+ * @param {number} [limit]
23208
+ * @param {Date} [lastRetrieved]
23209
+ * @param {*} [options] Override http request option.
23210
+ * @throws {RequiredError}
23211
+ */
23212
+ apiV1SpecialtytypesSimpleGet: (id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22902
23213
  /**
22903
23214
  *
22904
23215
  * @summary Get Department by slug.
22905
23216
  * @param {string} slug
22906
23217
  * @param {string} [languageCode]
23218
+ * @param {boolean} [returnDefaultValue]
22907
23219
  * @param {*} [options] Override http request option.
22908
23220
  * @throws {RequiredError}
22909
23221
  */
22910
- apiV1SpecialtytypesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
23222
+ apiV1SpecialtytypesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22911
23223
  /**
22912
23224
  *
22913
23225
  * @summary Delete Department.
@@ -22921,10 +23233,11 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
22921
23233
  * @summary Get Department.
22922
23234
  * @param {string} specialtyTypeId
22923
23235
  * @param {string} [languageCode]
23236
+ * @param {boolean} [returnDefaultValue]
22924
23237
  * @param {*} [options] Override http request option.
22925
23238
  * @throws {RequiredError}
22926
23239
  */
22927
- apiV1SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
23240
+ apiV1SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
22928
23241
  /**
22929
23242
  *
22930
23243
  * @summary Get all SpecialtyTypeMedias.
@@ -23002,13 +23315,14 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
23002
23315
  * @param {string} [languageCode]
23003
23316
  * @param {Array<string>} [ids]
23004
23317
  * @param {string} [specialtyTypeCategoryId]
23318
+ * @param {boolean} [returnDefaultValue]
23005
23319
  * @param {number} [page]
23006
23320
  * @param {number} [limit]
23007
23321
  * @param {Date} [lastRetrieved]
23008
23322
  * @param {*} [options] Override http request option.
23009
23323
  * @throws {RequiredError}
23010
23324
  */
23011
- apiV1SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
23325
+ apiV1SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
23012
23326
  /**
23013
23327
  *
23014
23328
  * @summary Create a Department.
@@ -23017,15 +23331,36 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
23017
23331
  * @throws {RequiredError}
23018
23332
  */
23019
23333
  apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
23334
+ /**
23335
+ *
23336
+ * @summary Get all Hospitals.
23337
+ * @param {string} [id]
23338
+ * @param {string} [name]
23339
+ * @param {string} [description]
23340
+ * @param {MarketingType} [marketingType]
23341
+ * @param {string} [hospitalId]
23342
+ * @param {Date} [created]
23343
+ * @param {string} [languageCode]
23344
+ * @param {Array<string>} [ids]
23345
+ * @param {string} [specialtyTypeCategoryId]
23346
+ * @param {boolean} [returnDefaultValue]
23347
+ * @param {number} [page]
23348
+ * @param {number} [limit]
23349
+ * @param {Date} [lastRetrieved]
23350
+ * @param {*} [options] Override http request option.
23351
+ * @throws {RequiredError}
23352
+ */
23353
+ apiV1SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesSimpleModel>>;
23020
23354
  /**
23021
23355
  *
23022
23356
  * @summary Get Department by slug.
23023
23357
  * @param {string} slug
23024
23358
  * @param {string} [languageCode]
23359
+ * @param {boolean} [returnDefaultValue]
23025
23360
  * @param {*} [options] Override http request option.
23026
23361
  * @throws {RequiredError}
23027
23362
  */
23028
- apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
23363
+ apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
23029
23364
  /**
23030
23365
  *
23031
23366
  * @summary Delete Department.
@@ -23039,10 +23374,11 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
23039
23374
  * @summary Get Department.
23040
23375
  * @param {string} specialtyTypeId
23041
23376
  * @param {string} [languageCode]
23377
+ * @param {boolean} [returnDefaultValue]
23042
23378
  * @param {*} [options] Override http request option.
23043
23379
  * @throws {RequiredError}
23044
23380
  */
23045
- apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
23381
+ apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
23046
23382
  /**
23047
23383
  *
23048
23384
  * @summary Get all SpecialtyTypeMedias.
@@ -23120,13 +23456,14 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
23120
23456
  * @param {string} [languageCode]
23121
23457
  * @param {Array<string>} [ids]
23122
23458
  * @param {string} [specialtyTypeCategoryId]
23459
+ * @param {boolean} [returnDefaultValue]
23123
23460
  * @param {number} [page]
23124
23461
  * @param {number} [limit]
23125
23462
  * @param {Date} [lastRetrieved]
23126
23463
  * @param {*} [options] Override http request option.
23127
23464
  * @throws {RequiredError}
23128
23465
  */
23129
- apiV1SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
23466
+ apiV1SpecialtytypesGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesModel>;
23130
23467
  /**
23131
23468
  *
23132
23469
  * @summary Create a Department.
@@ -23135,15 +23472,36 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
23135
23472
  * @throws {RequiredError}
23136
23473
  */
23137
23474
  apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
23475
+ /**
23476
+ *
23477
+ * @summary Get all Hospitals.
23478
+ * @param {string} [id]
23479
+ * @param {string} [name]
23480
+ * @param {string} [description]
23481
+ * @param {MarketingType} [marketingType]
23482
+ * @param {string} [hospitalId]
23483
+ * @param {Date} [created]
23484
+ * @param {string} [languageCode]
23485
+ * @param {Array<string>} [ids]
23486
+ * @param {string} [specialtyTypeCategoryId]
23487
+ * @param {boolean} [returnDefaultValue]
23488
+ * @param {number} [page]
23489
+ * @param {number} [limit]
23490
+ * @param {Date} [lastRetrieved]
23491
+ * @param {*} [options] Override http request option.
23492
+ * @throws {RequiredError}
23493
+ */
23494
+ apiV1SpecialtytypesSimpleGet(id?: string | undefined, name?: string | undefined, description?: string | undefined, marketingType?: MarketingType | undefined, hospitalId?: string | undefined, created?: Date | undefined, languageCode?: string | undefined, ids?: string[] | undefined, specialtyTypeCategoryId?: string | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<SpecialtyTypesSimpleModel>;
23138
23495
  /**
23139
23496
  *
23140
23497
  * @summary Get Department by slug.
23141
23498
  * @param {string} slug
23142
23499
  * @param {string} [languageCode]
23500
+ * @param {boolean} [returnDefaultValue]
23143
23501
  * @param {*} [options] Override http request option.
23144
23502
  * @throws {RequiredError}
23145
23503
  */
23146
- apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
23504
+ apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
23147
23505
  /**
23148
23506
  *
23149
23507
  * @summary Delete Department.
@@ -23157,10 +23515,11 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
23157
23515
  * @summary Get Department.
23158
23516
  * @param {string} specialtyTypeId
23159
23517
  * @param {string} [languageCode]
23518
+ * @param {boolean} [returnDefaultValue]
23160
23519
  * @param {*} [options] Override http request option.
23161
23520
  * @throws {RequiredError}
23162
23521
  */
23163
- apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
23522
+ apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
23164
23523
  /**
23165
23524
  *
23166
23525
  * @summary Get all SpecialtyTypeMedias.
@@ -23240,6 +23599,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
23240
23599
  * @param {string} [languageCode]
23241
23600
  * @param {Array<string>} [ids]
23242
23601
  * @param {string} [specialtyTypeCategoryId]
23602
+ * @param {boolean} [returnDefaultValue]
23243
23603
  * @param {number} [page]
23244
23604
  * @param {number} [limit]
23245
23605
  * @param {Date} [lastRetrieved]
@@ -23247,7 +23607,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
23247
23607
  * @throws {RequiredError}
23248
23608
  * @memberof SpecialtyTypesApi
23249
23609
  */
23250
- apiV1SpecialtytypesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, specialtyTypeCategoryId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel>>;
23610
+ apiV1SpecialtytypesGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, specialtyTypeCategoryId?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel>>;
23251
23611
  /**
23252
23612
  *
23253
23613
  * @summary Create a Department.
@@ -23257,16 +23617,38 @@ export declare class SpecialtyTypesApi extends BaseAPI {
23257
23617
  * @memberof SpecialtyTypesApi
23258
23618
  */
23259
23619
  apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
23620
+ /**
23621
+ *
23622
+ * @summary Get all Hospitals.
23623
+ * @param {string} [id]
23624
+ * @param {string} [name]
23625
+ * @param {string} [description]
23626
+ * @param {MarketingType} [marketingType]
23627
+ * @param {string} [hospitalId]
23628
+ * @param {Date} [created]
23629
+ * @param {string} [languageCode]
23630
+ * @param {Array<string>} [ids]
23631
+ * @param {string} [specialtyTypeCategoryId]
23632
+ * @param {boolean} [returnDefaultValue]
23633
+ * @param {number} [page]
23634
+ * @param {number} [limit]
23635
+ * @param {Date} [lastRetrieved]
23636
+ * @param {*} [options] Override http request option.
23637
+ * @throws {RequiredError}
23638
+ * @memberof SpecialtyTypesApi
23639
+ */
23640
+ apiV1SpecialtytypesSimpleGet(id?: string, name?: string, description?: string, marketingType?: MarketingType, hospitalId?: string, created?: Date, languageCode?: string, ids?: Array<string>, specialtyTypeCategoryId?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesSimpleModel>>;
23260
23641
  /**
23261
23642
  *
23262
23643
  * @summary Get Department by slug.
23263
23644
  * @param {string} slug
23264
23645
  * @param {string} [languageCode]
23646
+ * @param {boolean} [returnDefaultValue]
23265
23647
  * @param {*} [options] Override http request option.
23266
23648
  * @throws {RequiredError}
23267
23649
  * @memberof SpecialtyTypesApi
23268
23650
  */
23269
- apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
23651
+ apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
23270
23652
  /**
23271
23653
  *
23272
23654
  * @summary Delete Department.
@@ -23281,11 +23663,12 @@ export declare class SpecialtyTypesApi extends BaseAPI {
23281
23663
  * @summary Get Department.
23282
23664
  * @param {string} specialtyTypeId
23283
23665
  * @param {string} [languageCode]
23666
+ * @param {boolean} [returnDefaultValue]
23284
23667
  * @param {*} [options] Override http request option.
23285
23668
  * @throws {RequiredError}
23286
23669
  * @memberof SpecialtyTypesApi
23287
23670
  */
23288
- apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
23671
+ apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
23289
23672
  /**
23290
23673
  *
23291
23674
  * @summary Get all SpecialtyTypeMedias.