ch-admin-api-client-typescript 2.5.7 → 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 +317 -96
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +509 -168
- package/package.json +1 -1
- package/src/api.ts +576 -168
package/lib/api.d.ts
CHANGED
|
@@ -9356,6 +9356,31 @@ export interface SpecialtyTypeModel {
|
|
|
9356
9356
|
*/
|
|
9357
9357
|
'languageCode'?: string | null;
|
|
9358
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;
|
|
9383
|
+
}
|
|
9359
9384
|
/**
|
|
9360
9385
|
*
|
|
9361
9386
|
* @export
|
|
@@ -9375,6 +9400,25 @@ export interface SpecialtyTypesModel {
|
|
|
9375
9400
|
*/
|
|
9376
9401
|
'metaData'?: PagedListMetaData;
|
|
9377
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
|
+
}
|
|
9378
9422
|
/**
|
|
9379
9423
|
*
|
|
9380
9424
|
* @export
|
|
@@ -11728,10 +11772,11 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11728
11772
|
* @summary Get Article.
|
|
11729
11773
|
* @param {string} articleId
|
|
11730
11774
|
* @param {string} [languageCode]
|
|
11775
|
+
* @param {boolean} [returnDefaultValue]
|
|
11731
11776
|
* @param {*} [options] Override http request option.
|
|
11732
11777
|
* @throws {RequiredError}
|
|
11733
11778
|
*/
|
|
11734
|
-
apiV1ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11779
|
+
apiV1ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11735
11780
|
/**
|
|
11736
11781
|
*
|
|
11737
11782
|
* @summary Get all ArticleMedias.
|
|
@@ -11897,13 +11942,14 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11897
11942
|
* @param {string} [contributorId]
|
|
11898
11943
|
* @param {string} [languageCode]
|
|
11899
11944
|
* @param {boolean} [showHidden]
|
|
11945
|
+
* @param {boolean} [returnDefaultValue]
|
|
11900
11946
|
* @param {number} [page]
|
|
11901
11947
|
* @param {number} [limit]
|
|
11902
11948
|
* @param {Date} [lastRetrieved]
|
|
11903
11949
|
* @param {*} [options] Override http request option.
|
|
11904
11950
|
* @throws {RequiredError}
|
|
11905
11951
|
*/
|
|
11906
|
-
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>;
|
|
11907
11953
|
/**
|
|
11908
11954
|
*
|
|
11909
11955
|
* @summary Create a Article.
|
|
@@ -11917,10 +11963,11 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11917
11963
|
* @summary Get Article by slug.
|
|
11918
11964
|
* @param {string} slug
|
|
11919
11965
|
* @param {string} [languageCode]
|
|
11966
|
+
* @param {boolean} [returnDefaultValue]
|
|
11920
11967
|
* @param {*} [options] Override http request option.
|
|
11921
11968
|
* @throws {RequiredError}
|
|
11922
11969
|
*/
|
|
11923
|
-
apiV1ArticlesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11970
|
+
apiV1ArticlesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11924
11971
|
};
|
|
11925
11972
|
/**
|
|
11926
11973
|
* ArticlesApi - functional programming interface
|
|
@@ -11995,10 +12042,11 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
11995
12042
|
* @summary Get Article.
|
|
11996
12043
|
* @param {string} articleId
|
|
11997
12044
|
* @param {string} [languageCode]
|
|
12045
|
+
* @param {boolean} [returnDefaultValue]
|
|
11998
12046
|
* @param {*} [options] Override http request option.
|
|
11999
12047
|
* @throws {RequiredError}
|
|
12000
12048
|
*/
|
|
12001
|
-
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>>;
|
|
12002
12050
|
/**
|
|
12003
12051
|
*
|
|
12004
12052
|
* @summary Get all ArticleMedias.
|
|
@@ -12164,13 +12212,14 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12164
12212
|
* @param {string} [contributorId]
|
|
12165
12213
|
* @param {string} [languageCode]
|
|
12166
12214
|
* @param {boolean} [showHidden]
|
|
12215
|
+
* @param {boolean} [returnDefaultValue]
|
|
12167
12216
|
* @param {number} [page]
|
|
12168
12217
|
* @param {number} [limit]
|
|
12169
12218
|
* @param {Date} [lastRetrieved]
|
|
12170
12219
|
* @param {*} [options] Override http request option.
|
|
12171
12220
|
* @throws {RequiredError}
|
|
12172
12221
|
*/
|
|
12173
|
-
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>>;
|
|
12174
12223
|
/**
|
|
12175
12224
|
*
|
|
12176
12225
|
* @summary Create a Article.
|
|
@@ -12184,10 +12233,11 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12184
12233
|
* @summary Get Article by slug.
|
|
12185
12234
|
* @param {string} slug
|
|
12186
12235
|
* @param {string} [languageCode]
|
|
12236
|
+
* @param {boolean} [returnDefaultValue]
|
|
12187
12237
|
* @param {*} [options] Override http request option.
|
|
12188
12238
|
* @throws {RequiredError}
|
|
12189
12239
|
*/
|
|
12190
|
-
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>>;
|
|
12191
12241
|
};
|
|
12192
12242
|
/**
|
|
12193
12243
|
* ArticlesApi - factory interface
|
|
@@ -12262,10 +12312,11 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12262
12312
|
* @summary Get Article.
|
|
12263
12313
|
* @param {string} articleId
|
|
12264
12314
|
* @param {string} [languageCode]
|
|
12315
|
+
* @param {boolean} [returnDefaultValue]
|
|
12265
12316
|
* @param {*} [options] Override http request option.
|
|
12266
12317
|
* @throws {RequiredError}
|
|
12267
12318
|
*/
|
|
12268
|
-
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12319
|
+
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12269
12320
|
/**
|
|
12270
12321
|
*
|
|
12271
12322
|
* @summary Get all ArticleMedias.
|
|
@@ -12431,13 +12482,14 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12431
12482
|
* @param {string} [contributorId]
|
|
12432
12483
|
* @param {string} [languageCode]
|
|
12433
12484
|
* @param {boolean} [showHidden]
|
|
12485
|
+
* @param {boolean} [returnDefaultValue]
|
|
12434
12486
|
* @param {number} [page]
|
|
12435
12487
|
* @param {number} [limit]
|
|
12436
12488
|
* @param {Date} [lastRetrieved]
|
|
12437
12489
|
* @param {*} [options] Override http request option.
|
|
12438
12490
|
* @throws {RequiredError}
|
|
12439
12491
|
*/
|
|
12440
|
-
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>;
|
|
12441
12493
|
/**
|
|
12442
12494
|
*
|
|
12443
12495
|
* @summary Create a Article.
|
|
@@ -12451,10 +12503,11 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12451
12503
|
* @summary Get Article by slug.
|
|
12452
12504
|
* @param {string} slug
|
|
12453
12505
|
* @param {string} [languageCode]
|
|
12506
|
+
* @param {boolean} [returnDefaultValue]
|
|
12454
12507
|
* @param {*} [options] Override http request option.
|
|
12455
12508
|
* @throws {RequiredError}
|
|
12456
12509
|
*/
|
|
12457
|
-
apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12510
|
+
apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12458
12511
|
};
|
|
12459
12512
|
/**
|
|
12460
12513
|
* ArticlesApi - object-oriented interface
|
|
@@ -12537,11 +12590,12 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12537
12590
|
* @summary Get Article.
|
|
12538
12591
|
* @param {string} articleId
|
|
12539
12592
|
* @param {string} [languageCode]
|
|
12593
|
+
* @param {boolean} [returnDefaultValue]
|
|
12540
12594
|
* @param {*} [options] Override http request option.
|
|
12541
12595
|
* @throws {RequiredError}
|
|
12542
12596
|
* @memberof ArticlesApi
|
|
12543
12597
|
*/
|
|
12544
|
-
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>>;
|
|
12545
12599
|
/**
|
|
12546
12600
|
*
|
|
12547
12601
|
* @summary Get all ArticleMedias.
|
|
@@ -12722,6 +12776,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12722
12776
|
* @param {string} [contributorId]
|
|
12723
12777
|
* @param {string} [languageCode]
|
|
12724
12778
|
* @param {boolean} [showHidden]
|
|
12779
|
+
* @param {boolean} [returnDefaultValue]
|
|
12725
12780
|
* @param {number} [page]
|
|
12726
12781
|
* @param {number} [limit]
|
|
12727
12782
|
* @param {Date} [lastRetrieved]
|
|
@@ -12729,7 +12784,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12729
12784
|
* @throws {RequiredError}
|
|
12730
12785
|
* @memberof ArticlesApi
|
|
12731
12786
|
*/
|
|
12732
|
-
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>>;
|
|
12733
12788
|
/**
|
|
12734
12789
|
*
|
|
12735
12790
|
* @summary Create a Article.
|
|
@@ -12744,11 +12799,12 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12744
12799
|
* @summary Get Article by slug.
|
|
12745
12800
|
* @param {string} slug
|
|
12746
12801
|
* @param {string} [languageCode]
|
|
12802
|
+
* @param {boolean} [returnDefaultValue]
|
|
12747
12803
|
* @param {*} [options] Override http request option.
|
|
12748
12804
|
* @throws {RequiredError}
|
|
12749
12805
|
* @memberof ArticlesApi
|
|
12750
12806
|
*/
|
|
12751
|
-
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>>;
|
|
12752
12808
|
}
|
|
12753
12809
|
/**
|
|
12754
12810
|
* BookingsApi - axios parameter creator
|
|
@@ -14592,10 +14648,11 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14592
14648
|
* @summary Get country.
|
|
14593
14649
|
* @param {string} countryId
|
|
14594
14650
|
* @param {string} [languageCode]
|
|
14651
|
+
* @param {boolean} [returnDefaultValue]
|
|
14595
14652
|
* @param {*} [options] Override http request option.
|
|
14596
14653
|
* @throws {RequiredError}
|
|
14597
14654
|
*/
|
|
14598
|
-
apiV1CountriesCountryIdGet: (countryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14655
|
+
apiV1CountriesCountryIdGet: (countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14599
14656
|
/**
|
|
14600
14657
|
*
|
|
14601
14658
|
* @summary Get all CountryMedias.
|
|
@@ -14672,13 +14729,14 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14672
14729
|
* @param {Date} [createdDate]
|
|
14673
14730
|
* @param {string} [languageCode]
|
|
14674
14731
|
* @param {boolean} [showHidden]
|
|
14732
|
+
* @param {boolean} [returnDefaultValue]
|
|
14675
14733
|
* @param {number} [page]
|
|
14676
14734
|
* @param {number} [limit]
|
|
14677
14735
|
* @param {Date} [lastRetrieved]
|
|
14678
14736
|
* @param {*} [options] Override http request option.
|
|
14679
14737
|
* @throws {RequiredError}
|
|
14680
14738
|
*/
|
|
14681
|
-
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>;
|
|
14682
14740
|
/**
|
|
14683
14741
|
*
|
|
14684
14742
|
* @summary Create a country.
|
|
@@ -14692,10 +14750,11 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14692
14750
|
* @summary Get country by slug.
|
|
14693
14751
|
* @param {string} slug
|
|
14694
14752
|
* @param {string} [languageCode]
|
|
14753
|
+
* @param {boolean} [returnDefaultValue]
|
|
14695
14754
|
* @param {*} [options] Override http request option.
|
|
14696
14755
|
* @throws {RequiredError}
|
|
14697
14756
|
*/
|
|
14698
|
-
apiV1CountriesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14757
|
+
apiV1CountriesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14699
14758
|
};
|
|
14700
14759
|
/**
|
|
14701
14760
|
* CountriesApi - functional programming interface
|
|
@@ -14715,10 +14774,11 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14715
14774
|
* @summary Get country.
|
|
14716
14775
|
* @param {string} countryId
|
|
14717
14776
|
* @param {string} [languageCode]
|
|
14777
|
+
* @param {boolean} [returnDefaultValue]
|
|
14718
14778
|
* @param {*} [options] Override http request option.
|
|
14719
14779
|
* @throws {RequiredError}
|
|
14720
14780
|
*/
|
|
14721
|
-
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>>;
|
|
14722
14782
|
/**
|
|
14723
14783
|
*
|
|
14724
14784
|
* @summary Get all CountryMedias.
|
|
@@ -14795,13 +14855,14 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14795
14855
|
* @param {Date} [createdDate]
|
|
14796
14856
|
* @param {string} [languageCode]
|
|
14797
14857
|
* @param {boolean} [showHidden]
|
|
14858
|
+
* @param {boolean} [returnDefaultValue]
|
|
14798
14859
|
* @param {number} [page]
|
|
14799
14860
|
* @param {number} [limit]
|
|
14800
14861
|
* @param {Date} [lastRetrieved]
|
|
14801
14862
|
* @param {*} [options] Override http request option.
|
|
14802
14863
|
* @throws {RequiredError}
|
|
14803
14864
|
*/
|
|
14804
|
-
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>>;
|
|
14805
14866
|
/**
|
|
14806
14867
|
*
|
|
14807
14868
|
* @summary Create a country.
|
|
@@ -14815,10 +14876,11 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14815
14876
|
* @summary Get country by slug.
|
|
14816
14877
|
* @param {string} slug
|
|
14817
14878
|
* @param {string} [languageCode]
|
|
14879
|
+
* @param {boolean} [returnDefaultValue]
|
|
14818
14880
|
* @param {*} [options] Override http request option.
|
|
14819
14881
|
* @throws {RequiredError}
|
|
14820
14882
|
*/
|
|
14821
|
-
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>>;
|
|
14822
14884
|
};
|
|
14823
14885
|
/**
|
|
14824
14886
|
* CountriesApi - factory interface
|
|
@@ -14838,10 +14900,11 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
14838
14900
|
* @summary Get country.
|
|
14839
14901
|
* @param {string} countryId
|
|
14840
14902
|
* @param {string} [languageCode]
|
|
14903
|
+
* @param {boolean} [returnDefaultValue]
|
|
14841
14904
|
* @param {*} [options] Override http request option.
|
|
14842
14905
|
* @throws {RequiredError}
|
|
14843
14906
|
*/
|
|
14844
|
-
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
14907
|
+
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
14845
14908
|
/**
|
|
14846
14909
|
*
|
|
14847
14910
|
* @summary Get all CountryMedias.
|
|
@@ -14918,13 +14981,14 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
14918
14981
|
* @param {Date} [createdDate]
|
|
14919
14982
|
* @param {string} [languageCode]
|
|
14920
14983
|
* @param {boolean} [showHidden]
|
|
14984
|
+
* @param {boolean} [returnDefaultValue]
|
|
14921
14985
|
* @param {number} [page]
|
|
14922
14986
|
* @param {number} [limit]
|
|
14923
14987
|
* @param {Date} [lastRetrieved]
|
|
14924
14988
|
* @param {*} [options] Override http request option.
|
|
14925
14989
|
* @throws {RequiredError}
|
|
14926
14990
|
*/
|
|
14927
|
-
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>;
|
|
14928
14992
|
/**
|
|
14929
14993
|
*
|
|
14930
14994
|
* @summary Create a country.
|
|
@@ -14938,10 +15002,11 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
14938
15002
|
* @summary Get country by slug.
|
|
14939
15003
|
* @param {string} slug
|
|
14940
15004
|
* @param {string} [languageCode]
|
|
15005
|
+
* @param {boolean} [returnDefaultValue]
|
|
14941
15006
|
* @param {*} [options] Override http request option.
|
|
14942
15007
|
* @throws {RequiredError}
|
|
14943
15008
|
*/
|
|
14944
|
-
apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
15009
|
+
apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
14945
15010
|
};
|
|
14946
15011
|
/**
|
|
14947
15012
|
* CountriesApi - object-oriented interface
|
|
@@ -14964,11 +15029,12 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
14964
15029
|
* @summary Get country.
|
|
14965
15030
|
* @param {string} countryId
|
|
14966
15031
|
* @param {string} [languageCode]
|
|
15032
|
+
* @param {boolean} [returnDefaultValue]
|
|
14967
15033
|
* @param {*} [options] Override http request option.
|
|
14968
15034
|
* @throws {RequiredError}
|
|
14969
15035
|
* @memberof CountriesApi
|
|
14970
15036
|
*/
|
|
14971
|
-
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>>;
|
|
14972
15038
|
/**
|
|
14973
15039
|
*
|
|
14974
15040
|
* @summary Get all CountryMedias.
|
|
@@ -15052,6 +15118,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15052
15118
|
* @param {Date} [createdDate]
|
|
15053
15119
|
* @param {string} [languageCode]
|
|
15054
15120
|
* @param {boolean} [showHidden]
|
|
15121
|
+
* @param {boolean} [returnDefaultValue]
|
|
15055
15122
|
* @param {number} [page]
|
|
15056
15123
|
* @param {number} [limit]
|
|
15057
15124
|
* @param {Date} [lastRetrieved]
|
|
@@ -15059,7 +15126,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15059
15126
|
* @throws {RequiredError}
|
|
15060
15127
|
* @memberof CountriesApi
|
|
15061
15128
|
*/
|
|
15062
|
-
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>>;
|
|
15063
15130
|
/**
|
|
15064
15131
|
*
|
|
15065
15132
|
* @summary Create a country.
|
|
@@ -15074,11 +15141,12 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15074
15141
|
* @summary Get country by slug.
|
|
15075
15142
|
* @param {string} slug
|
|
15076
15143
|
* @param {string} [languageCode]
|
|
15144
|
+
* @param {boolean} [returnDefaultValue]
|
|
15077
15145
|
* @param {*} [options] Override http request option.
|
|
15078
15146
|
* @throws {RequiredError}
|
|
15079
15147
|
* @memberof CountriesApi
|
|
15080
15148
|
*/
|
|
15081
|
-
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>>;
|
|
15082
15150
|
}
|
|
15083
15151
|
/**
|
|
15084
15152
|
* DealsApi - axios parameter creator
|
|
@@ -15940,10 +16008,11 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15940
16008
|
* @summary Get Doctor.
|
|
15941
16009
|
* @param {string} doctorId
|
|
15942
16010
|
* @param {string} [languageCode]
|
|
16011
|
+
* @param {boolean} [returnDefaultValue]
|
|
15943
16012
|
* @param {*} [options] Override http request option.
|
|
15944
16013
|
* @throws {RequiredError}
|
|
15945
16014
|
*/
|
|
15946
|
-
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16015
|
+
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15947
16016
|
/**
|
|
15948
16017
|
*
|
|
15949
16018
|
* @summary Get all DoctorMedias.
|
|
@@ -16110,6 +16179,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16110
16179
|
* @summary Get all Doctors.
|
|
16111
16180
|
* @param {string} [hospitalId]
|
|
16112
16181
|
* @param {string} [languageCode]
|
|
16182
|
+
* @param {boolean} [returnDefaultValue]
|
|
16113
16183
|
* @param {string} [id]
|
|
16114
16184
|
* @param {string} [fullname]
|
|
16115
16185
|
* @param {string} [email]
|
|
@@ -16123,7 +16193,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16123
16193
|
* @param {*} [options] Override http request option.
|
|
16124
16194
|
* @throws {RequiredError}
|
|
16125
16195
|
*/
|
|
16126
|
-
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>;
|
|
16127
16197
|
/**
|
|
16128
16198
|
*
|
|
16129
16199
|
* @summary Create a Doctor.
|
|
@@ -16137,10 +16207,11 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16137
16207
|
* @summary Get Doctor by slug.
|
|
16138
16208
|
* @param {string} slug
|
|
16139
16209
|
* @param {string} [languageCode]
|
|
16210
|
+
* @param {boolean} [returnDefaultValue]
|
|
16140
16211
|
* @param {*} [options] Override http request option.
|
|
16141
16212
|
* @throws {RequiredError}
|
|
16142
16213
|
*/
|
|
16143
|
-
apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16214
|
+
apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16144
16215
|
};
|
|
16145
16216
|
/**
|
|
16146
16217
|
* DoctorsApi - functional programming interface
|
|
@@ -16304,10 +16375,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16304
16375
|
* @summary Get Doctor.
|
|
16305
16376
|
* @param {string} doctorId
|
|
16306
16377
|
* @param {string} [languageCode]
|
|
16378
|
+
* @param {boolean} [returnDefaultValue]
|
|
16307
16379
|
* @param {*} [options] Override http request option.
|
|
16308
16380
|
* @throws {RequiredError}
|
|
16309
16381
|
*/
|
|
16310
|
-
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>>;
|
|
16311
16383
|
/**
|
|
16312
16384
|
*
|
|
16313
16385
|
* @summary Get all DoctorMedias.
|
|
@@ -16474,6 +16546,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16474
16546
|
* @summary Get all Doctors.
|
|
16475
16547
|
* @param {string} [hospitalId]
|
|
16476
16548
|
* @param {string} [languageCode]
|
|
16549
|
+
* @param {boolean} [returnDefaultValue]
|
|
16477
16550
|
* @param {string} [id]
|
|
16478
16551
|
* @param {string} [fullname]
|
|
16479
16552
|
* @param {string} [email]
|
|
@@ -16487,7 +16560,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16487
16560
|
* @param {*} [options] Override http request option.
|
|
16488
16561
|
* @throws {RequiredError}
|
|
16489
16562
|
*/
|
|
16490
|
-
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>>;
|
|
16491
16564
|
/**
|
|
16492
16565
|
*
|
|
16493
16566
|
* @summary Create a Doctor.
|
|
@@ -16501,10 +16574,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16501
16574
|
* @summary Get Doctor by slug.
|
|
16502
16575
|
* @param {string} slug
|
|
16503
16576
|
* @param {string} [languageCode]
|
|
16577
|
+
* @param {boolean} [returnDefaultValue]
|
|
16504
16578
|
* @param {*} [options] Override http request option.
|
|
16505
16579
|
* @throws {RequiredError}
|
|
16506
16580
|
*/
|
|
16507
|
-
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>>;
|
|
16508
16582
|
};
|
|
16509
16583
|
/**
|
|
16510
16584
|
* DoctorsApi - factory interface
|
|
@@ -16668,10 +16742,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16668
16742
|
* @summary Get Doctor.
|
|
16669
16743
|
* @param {string} doctorId
|
|
16670
16744
|
* @param {string} [languageCode]
|
|
16745
|
+
* @param {boolean} [returnDefaultValue]
|
|
16671
16746
|
* @param {*} [options] Override http request option.
|
|
16672
16747
|
* @throws {RequiredError}
|
|
16673
16748
|
*/
|
|
16674
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16749
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16675
16750
|
/**
|
|
16676
16751
|
*
|
|
16677
16752
|
* @summary Get all DoctorMedias.
|
|
@@ -16838,6 +16913,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16838
16913
|
* @summary Get all Doctors.
|
|
16839
16914
|
* @param {string} [hospitalId]
|
|
16840
16915
|
* @param {string} [languageCode]
|
|
16916
|
+
* @param {boolean} [returnDefaultValue]
|
|
16841
16917
|
* @param {string} [id]
|
|
16842
16918
|
* @param {string} [fullname]
|
|
16843
16919
|
* @param {string} [email]
|
|
@@ -16851,7 +16927,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16851
16927
|
* @param {*} [options] Override http request option.
|
|
16852
16928
|
* @throws {RequiredError}
|
|
16853
16929
|
*/
|
|
16854
|
-
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>;
|
|
16855
16931
|
/**
|
|
16856
16932
|
*
|
|
16857
16933
|
* @summary Create a Doctor.
|
|
@@ -16865,10 +16941,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16865
16941
|
* @summary Get Doctor by slug.
|
|
16866
16942
|
* @param {string} slug
|
|
16867
16943
|
* @param {string} [languageCode]
|
|
16944
|
+
* @param {boolean} [returnDefaultValue]
|
|
16868
16945
|
* @param {*} [options] Override http request option.
|
|
16869
16946
|
* @throws {RequiredError}
|
|
16870
16947
|
*/
|
|
16871
|
-
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16948
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16872
16949
|
};
|
|
16873
16950
|
/**
|
|
16874
16951
|
* DoctorsApi - object-oriented interface
|
|
@@ -17049,11 +17126,12 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17049
17126
|
* @summary Get Doctor.
|
|
17050
17127
|
* @param {string} doctorId
|
|
17051
17128
|
* @param {string} [languageCode]
|
|
17129
|
+
* @param {boolean} [returnDefaultValue]
|
|
17052
17130
|
* @param {*} [options] Override http request option.
|
|
17053
17131
|
* @throws {RequiredError}
|
|
17054
17132
|
* @memberof DoctorsApi
|
|
17055
17133
|
*/
|
|
17056
|
-
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>>;
|
|
17057
17135
|
/**
|
|
17058
17136
|
*
|
|
17059
17137
|
* @summary Get all DoctorMedias.
|
|
@@ -17236,6 +17314,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17236
17314
|
* @summary Get all Doctors.
|
|
17237
17315
|
* @param {string} [hospitalId]
|
|
17238
17316
|
* @param {string} [languageCode]
|
|
17317
|
+
* @param {boolean} [returnDefaultValue]
|
|
17239
17318
|
* @param {string} [id]
|
|
17240
17319
|
* @param {string} [fullname]
|
|
17241
17320
|
* @param {string} [email]
|
|
@@ -17250,7 +17329,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17250
17329
|
* @throws {RequiredError}
|
|
17251
17330
|
* @memberof DoctorsApi
|
|
17252
17331
|
*/
|
|
17253
|
-
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>>;
|
|
17254
17333
|
/**
|
|
17255
17334
|
*
|
|
17256
17335
|
* @summary Create a Doctor.
|
|
@@ -17265,11 +17344,12 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17265
17344
|
* @summary Get Doctor by slug.
|
|
17266
17345
|
* @param {string} slug
|
|
17267
17346
|
* @param {string} [languageCode]
|
|
17347
|
+
* @param {boolean} [returnDefaultValue]
|
|
17268
17348
|
* @param {*} [options] Override http request option.
|
|
17269
17349
|
* @throws {RequiredError}
|
|
17270
17350
|
* @memberof DoctorsApi
|
|
17271
17351
|
*/
|
|
17272
|
-
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>>;
|
|
17273
17353
|
}
|
|
17274
17354
|
/**
|
|
17275
17355
|
* EmailMarketingsApi - axios parameter creator
|
|
@@ -18318,13 +18398,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18318
18398
|
* @param {boolean} [showHidden]
|
|
18319
18399
|
* @param {string} [languageCode]
|
|
18320
18400
|
* @param {Array<string>} [ids]
|
|
18401
|
+
* @param {boolean} [returnDefaultValue]
|
|
18321
18402
|
* @param {number} [page]
|
|
18322
18403
|
* @param {number} [limit]
|
|
18323
18404
|
* @param {Date} [lastRetrieved]
|
|
18324
18405
|
* @param {*} [options] Override http request option.
|
|
18325
18406
|
* @throws {RequiredError}
|
|
18326
18407
|
*/
|
|
18327
|
-
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>;
|
|
18328
18409
|
/**
|
|
18329
18410
|
*
|
|
18330
18411
|
* @summary Delete HospitalAccreditation.
|
|
@@ -18529,10 +18610,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18529
18610
|
* @summary Get Hospital.
|
|
18530
18611
|
* @param {string} hospitalId
|
|
18531
18612
|
* @param {string} [languageCode]
|
|
18613
|
+
* @param {boolean} [returnDefaultValue]
|
|
18532
18614
|
* @param {*} [options] Override http request option.
|
|
18533
18615
|
* @throws {RequiredError}
|
|
18534
18616
|
*/
|
|
18535
|
-
apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18617
|
+
apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18536
18618
|
/**
|
|
18537
18619
|
*
|
|
18538
18620
|
* @summary Get all HospitalMedias.
|
|
@@ -18665,13 +18747,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18665
18747
|
* @param {Procedure} [procedure]
|
|
18666
18748
|
* @param {Date} [created]
|
|
18667
18749
|
* @param {string} [languageCode]
|
|
18750
|
+
* @param {boolean} [returnDefaultValue]
|
|
18668
18751
|
* @param {number} [page]
|
|
18669
18752
|
* @param {number} [limit]
|
|
18670
18753
|
* @param {Date} [lastRetrieved]
|
|
18671
18754
|
* @param {*} [options] Override http request option.
|
|
18672
18755
|
* @throws {RequiredError}
|
|
18673
18756
|
*/
|
|
18674
|
-
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>;
|
|
18675
18758
|
/**
|
|
18676
18759
|
*
|
|
18677
18760
|
* @summary Create HospitalService.
|
|
@@ -18699,10 +18782,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18699
18782
|
* @param {string} specialtyId
|
|
18700
18783
|
* @param {string} serviceId
|
|
18701
18784
|
* @param {string} [languageCode]
|
|
18785
|
+
* @param {boolean} [returnDefaultValue]
|
|
18702
18786
|
* @param {*} [options] Override http request option.
|
|
18703
18787
|
* @throws {RequiredError}
|
|
18704
18788
|
*/
|
|
18705
|
-
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>;
|
|
18706
18790
|
/**
|
|
18707
18791
|
*
|
|
18708
18792
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -18798,22 +18882,24 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18798
18882
|
* @param {boolean} [showHidden]
|
|
18799
18883
|
* @param {string} [languageCode]
|
|
18800
18884
|
* @param {Array<string>} [ids]
|
|
18885
|
+
* @param {boolean} [returnDefaultValue]
|
|
18801
18886
|
* @param {number} [page]
|
|
18802
18887
|
* @param {number} [limit]
|
|
18803
18888
|
* @param {Date} [lastRetrieved]
|
|
18804
18889
|
* @param {*} [options] Override http request option.
|
|
18805
18890
|
* @throws {RequiredError}
|
|
18806
18891
|
*/
|
|
18807
|
-
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>;
|
|
18808
18893
|
/**
|
|
18809
18894
|
*
|
|
18810
18895
|
* @summary Get Hospital by slug.
|
|
18811
18896
|
* @param {string} slug
|
|
18812
18897
|
* @param {string} [languageCode]
|
|
18898
|
+
* @param {boolean} [returnDefaultValue]
|
|
18813
18899
|
* @param {*} [options] Override http request option.
|
|
18814
18900
|
* @throws {RequiredError}
|
|
18815
18901
|
*/
|
|
18816
|
-
apiV1HospitalsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18902
|
+
apiV1HospitalsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18817
18903
|
};
|
|
18818
18904
|
/**
|
|
18819
18905
|
* HospitalsApi - functional programming interface
|
|
@@ -18836,13 +18922,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18836
18922
|
* @param {boolean} [showHidden]
|
|
18837
18923
|
* @param {string} [languageCode]
|
|
18838
18924
|
* @param {Array<string>} [ids]
|
|
18925
|
+
* @param {boolean} [returnDefaultValue]
|
|
18839
18926
|
* @param {number} [page]
|
|
18840
18927
|
* @param {number} [limit]
|
|
18841
18928
|
* @param {Date} [lastRetrieved]
|
|
18842
18929
|
* @param {*} [options] Override http request option.
|
|
18843
18930
|
* @throws {RequiredError}
|
|
18844
18931
|
*/
|
|
18845
|
-
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>>;
|
|
18846
18933
|
/**
|
|
18847
18934
|
*
|
|
18848
18935
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19047,10 +19134,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19047
19134
|
* @summary Get Hospital.
|
|
19048
19135
|
* @param {string} hospitalId
|
|
19049
19136
|
* @param {string} [languageCode]
|
|
19137
|
+
* @param {boolean} [returnDefaultValue]
|
|
19050
19138
|
* @param {*} [options] Override http request option.
|
|
19051
19139
|
* @throws {RequiredError}
|
|
19052
19140
|
*/
|
|
19053
|
-
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>>;
|
|
19054
19142
|
/**
|
|
19055
19143
|
*
|
|
19056
19144
|
* @summary Get all HospitalMedias.
|
|
@@ -19183,13 +19271,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19183
19271
|
* @param {Procedure} [procedure]
|
|
19184
19272
|
* @param {Date} [created]
|
|
19185
19273
|
* @param {string} [languageCode]
|
|
19274
|
+
* @param {boolean} [returnDefaultValue]
|
|
19186
19275
|
* @param {number} [page]
|
|
19187
19276
|
* @param {number} [limit]
|
|
19188
19277
|
* @param {Date} [lastRetrieved]
|
|
19189
19278
|
* @param {*} [options] Override http request option.
|
|
19190
19279
|
* @throws {RequiredError}
|
|
19191
19280
|
*/
|
|
19192
|
-
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>>;
|
|
19193
19282
|
/**
|
|
19194
19283
|
*
|
|
19195
19284
|
* @summary Create HospitalService.
|
|
@@ -19217,10 +19306,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19217
19306
|
* @param {string} specialtyId
|
|
19218
19307
|
* @param {string} serviceId
|
|
19219
19308
|
* @param {string} [languageCode]
|
|
19309
|
+
* @param {boolean} [returnDefaultValue]
|
|
19220
19310
|
* @param {*} [options] Override http request option.
|
|
19221
19311
|
* @throws {RequiredError}
|
|
19222
19312
|
*/
|
|
19223
|
-
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>>;
|
|
19224
19314
|
/**
|
|
19225
19315
|
*
|
|
19226
19316
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -19316,22 +19406,24 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19316
19406
|
* @param {boolean} [showHidden]
|
|
19317
19407
|
* @param {string} [languageCode]
|
|
19318
19408
|
* @param {Array<string>} [ids]
|
|
19409
|
+
* @param {boolean} [returnDefaultValue]
|
|
19319
19410
|
* @param {number} [page]
|
|
19320
19411
|
* @param {number} [limit]
|
|
19321
19412
|
* @param {Date} [lastRetrieved]
|
|
19322
19413
|
* @param {*} [options] Override http request option.
|
|
19323
19414
|
* @throws {RequiredError}
|
|
19324
19415
|
*/
|
|
19325
|
-
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>>;
|
|
19326
19417
|
/**
|
|
19327
19418
|
*
|
|
19328
19419
|
* @summary Get Hospital by slug.
|
|
19329
19420
|
* @param {string} slug
|
|
19330
19421
|
* @param {string} [languageCode]
|
|
19422
|
+
* @param {boolean} [returnDefaultValue]
|
|
19331
19423
|
* @param {*} [options] Override http request option.
|
|
19332
19424
|
* @throws {RequiredError}
|
|
19333
19425
|
*/
|
|
19334
|
-
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>>;
|
|
19335
19427
|
};
|
|
19336
19428
|
/**
|
|
19337
19429
|
* HospitalsApi - factory interface
|
|
@@ -19354,13 +19446,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19354
19446
|
* @param {boolean} [showHidden]
|
|
19355
19447
|
* @param {string} [languageCode]
|
|
19356
19448
|
* @param {Array<string>} [ids]
|
|
19449
|
+
* @param {boolean} [returnDefaultValue]
|
|
19357
19450
|
* @param {number} [page]
|
|
19358
19451
|
* @param {number} [limit]
|
|
19359
19452
|
* @param {Date} [lastRetrieved]
|
|
19360
19453
|
* @param {*} [options] Override http request option.
|
|
19361
19454
|
* @throws {RequiredError}
|
|
19362
19455
|
*/
|
|
19363
|
-
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>;
|
|
19364
19457
|
/**
|
|
19365
19458
|
*
|
|
19366
19459
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19565,10 +19658,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19565
19658
|
* @summary Get Hospital.
|
|
19566
19659
|
* @param {string} hospitalId
|
|
19567
19660
|
* @param {string} [languageCode]
|
|
19661
|
+
* @param {boolean} [returnDefaultValue]
|
|
19568
19662
|
* @param {*} [options] Override http request option.
|
|
19569
19663
|
* @throws {RequiredError}
|
|
19570
19664
|
*/
|
|
19571
|
-
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
19665
|
+
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
19572
19666
|
/**
|
|
19573
19667
|
*
|
|
19574
19668
|
* @summary Get all HospitalMedias.
|
|
@@ -19701,13 +19795,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19701
19795
|
* @param {Procedure} [procedure]
|
|
19702
19796
|
* @param {Date} [created]
|
|
19703
19797
|
* @param {string} [languageCode]
|
|
19798
|
+
* @param {boolean} [returnDefaultValue]
|
|
19704
19799
|
* @param {number} [page]
|
|
19705
19800
|
* @param {number} [limit]
|
|
19706
19801
|
* @param {Date} [lastRetrieved]
|
|
19707
19802
|
* @param {*} [options] Override http request option.
|
|
19708
19803
|
* @throws {RequiredError}
|
|
19709
19804
|
*/
|
|
19710
|
-
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>;
|
|
19711
19806
|
/**
|
|
19712
19807
|
*
|
|
19713
19808
|
* @summary Create HospitalService.
|
|
@@ -19735,10 +19830,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19735
19830
|
* @param {string} specialtyId
|
|
19736
19831
|
* @param {string} serviceId
|
|
19737
19832
|
* @param {string} [languageCode]
|
|
19833
|
+
* @param {boolean} [returnDefaultValue]
|
|
19738
19834
|
* @param {*} [options] Override http request option.
|
|
19739
19835
|
* @throws {RequiredError}
|
|
19740
19836
|
*/
|
|
19741
|
-
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>;
|
|
19742
19838
|
/**
|
|
19743
19839
|
*
|
|
19744
19840
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -19834,22 +19930,24 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19834
19930
|
* @param {boolean} [showHidden]
|
|
19835
19931
|
* @param {string} [languageCode]
|
|
19836
19932
|
* @param {Array<string>} [ids]
|
|
19933
|
+
* @param {boolean} [returnDefaultValue]
|
|
19837
19934
|
* @param {number} [page]
|
|
19838
19935
|
* @param {number} [limit]
|
|
19839
19936
|
* @param {Date} [lastRetrieved]
|
|
19840
19937
|
* @param {*} [options] Override http request option.
|
|
19841
19938
|
* @throws {RequiredError}
|
|
19842
19939
|
*/
|
|
19843
|
-
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>;
|
|
19844
19941
|
/**
|
|
19845
19942
|
*
|
|
19846
19943
|
* @summary Get Hospital by slug.
|
|
19847
19944
|
* @param {string} slug
|
|
19848
19945
|
* @param {string} [languageCode]
|
|
19946
|
+
* @param {boolean} [returnDefaultValue]
|
|
19849
19947
|
* @param {*} [options] Override http request option.
|
|
19850
19948
|
* @throws {RequiredError}
|
|
19851
19949
|
*/
|
|
19852
|
-
apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
19950
|
+
apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
19853
19951
|
};
|
|
19854
19952
|
/**
|
|
19855
19953
|
* HospitalsApi - object-oriented interface
|
|
@@ -19874,6 +19972,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
19874
19972
|
* @param {boolean} [showHidden]
|
|
19875
19973
|
* @param {string} [languageCode]
|
|
19876
19974
|
* @param {Array<string>} [ids]
|
|
19975
|
+
* @param {boolean} [returnDefaultValue]
|
|
19877
19976
|
* @param {number} [page]
|
|
19878
19977
|
* @param {number} [limit]
|
|
19879
19978
|
* @param {Date} [lastRetrieved]
|
|
@@ -19881,7 +19980,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
19881
19980
|
* @throws {RequiredError}
|
|
19882
19981
|
* @memberof HospitalsApi
|
|
19883
19982
|
*/
|
|
19884
|
-
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>>;
|
|
19885
19984
|
/**
|
|
19886
19985
|
*
|
|
19887
19986
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20105,11 +20204,12 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20105
20204
|
* @summary Get Hospital.
|
|
20106
20205
|
* @param {string} hospitalId
|
|
20107
20206
|
* @param {string} [languageCode]
|
|
20207
|
+
* @param {boolean} [returnDefaultValue]
|
|
20108
20208
|
* @param {*} [options] Override http request option.
|
|
20109
20209
|
* @throws {RequiredError}
|
|
20110
20210
|
* @memberof HospitalsApi
|
|
20111
20211
|
*/
|
|
20112
|
-
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>>;
|
|
20113
20213
|
/**
|
|
20114
20214
|
*
|
|
20115
20215
|
* @summary Get all HospitalMedias.
|
|
@@ -20253,6 +20353,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20253
20353
|
* @param {Procedure} [procedure]
|
|
20254
20354
|
* @param {Date} [created]
|
|
20255
20355
|
* @param {string} [languageCode]
|
|
20356
|
+
* @param {boolean} [returnDefaultValue]
|
|
20256
20357
|
* @param {number} [page]
|
|
20257
20358
|
* @param {number} [limit]
|
|
20258
20359
|
* @param {Date} [lastRetrieved]
|
|
@@ -20260,7 +20361,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20260
20361
|
* @throws {RequiredError}
|
|
20261
20362
|
* @memberof HospitalsApi
|
|
20262
20363
|
*/
|
|
20263
|
-
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>>;
|
|
20264
20365
|
/**
|
|
20265
20366
|
*
|
|
20266
20367
|
* @summary Create HospitalService.
|
|
@@ -20290,11 +20391,12 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20290
20391
|
* @param {string} specialtyId
|
|
20291
20392
|
* @param {string} serviceId
|
|
20292
20393
|
* @param {string} [languageCode]
|
|
20394
|
+
* @param {boolean} [returnDefaultValue]
|
|
20293
20395
|
* @param {*} [options] Override http request option.
|
|
20294
20396
|
* @throws {RequiredError}
|
|
20295
20397
|
* @memberof HospitalsApi
|
|
20296
20398
|
*/
|
|
20297
|
-
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>>;
|
|
20298
20400
|
/**
|
|
20299
20401
|
*
|
|
20300
20402
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -20397,6 +20499,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20397
20499
|
* @param {boolean} [showHidden]
|
|
20398
20500
|
* @param {string} [languageCode]
|
|
20399
20501
|
* @param {Array<string>} [ids]
|
|
20502
|
+
* @param {boolean} [returnDefaultValue]
|
|
20400
20503
|
* @param {number} [page]
|
|
20401
20504
|
* @param {number} [limit]
|
|
20402
20505
|
* @param {Date} [lastRetrieved]
|
|
@@ -20404,17 +20507,18 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20404
20507
|
* @throws {RequiredError}
|
|
20405
20508
|
* @memberof HospitalsApi
|
|
20406
20509
|
*/
|
|
20407
|
-
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>>;
|
|
20408
20511
|
/**
|
|
20409
20512
|
*
|
|
20410
20513
|
* @summary Get Hospital by slug.
|
|
20411
20514
|
* @param {string} slug
|
|
20412
20515
|
* @param {string} [languageCode]
|
|
20516
|
+
* @param {boolean} [returnDefaultValue]
|
|
20413
20517
|
* @param {*} [options] Override http request option.
|
|
20414
20518
|
* @throws {RequiredError}
|
|
20415
20519
|
* @memberof HospitalsApi
|
|
20416
20520
|
*/
|
|
20417
|
-
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>>;
|
|
20418
20522
|
}
|
|
20419
20523
|
/**
|
|
20420
20524
|
* ImagesApi - axios parameter creator
|
|
@@ -22151,31 +22255,34 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22151
22255
|
* @param {Procedure} [procedure]
|
|
22152
22256
|
* @param {Date} [created]
|
|
22153
22257
|
* @param {string} [languageCode]
|
|
22258
|
+
* @param {boolean} [returnDefaultValue]
|
|
22154
22259
|
* @param {number} [page]
|
|
22155
22260
|
* @param {number} [limit]
|
|
22156
22261
|
* @param {Date} [lastRetrieved]
|
|
22157
22262
|
* @param {*} [options] Override http request option.
|
|
22158
22263
|
* @throws {RequiredError}
|
|
22159
22264
|
*/
|
|
22160
|
-
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>;
|
|
22161
22266
|
/**
|
|
22162
22267
|
*
|
|
22163
22268
|
* @summary Get HospitalService.
|
|
22164
22269
|
* @param {string} serviceId
|
|
22165
22270
|
* @param {string} [languageCode]
|
|
22271
|
+
* @param {boolean} [returnDefaultValue]
|
|
22166
22272
|
* @param {*} [options] Override http request option.
|
|
22167
22273
|
* @throws {RequiredError}
|
|
22168
22274
|
*/
|
|
22169
|
-
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22275
|
+
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22170
22276
|
/**
|
|
22171
22277
|
*
|
|
22172
22278
|
* @summary Get HospitalService by slug.
|
|
22173
22279
|
* @param {string} slug
|
|
22174
22280
|
* @param {string} [languageCode]
|
|
22281
|
+
* @param {boolean} [returnDefaultValue]
|
|
22175
22282
|
* @param {*} [options] Override http request option.
|
|
22176
22283
|
* @throws {RequiredError}
|
|
22177
22284
|
*/
|
|
22178
|
-
apiV1ServicesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22285
|
+
apiV1ServicesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22179
22286
|
};
|
|
22180
22287
|
/**
|
|
22181
22288
|
* ServicesApi - functional programming interface
|
|
@@ -22200,31 +22307,34 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
22200
22307
|
* @param {Procedure} [procedure]
|
|
22201
22308
|
* @param {Date} [created]
|
|
22202
22309
|
* @param {string} [languageCode]
|
|
22310
|
+
* @param {boolean} [returnDefaultValue]
|
|
22203
22311
|
* @param {number} [page]
|
|
22204
22312
|
* @param {number} [limit]
|
|
22205
22313
|
* @param {Date} [lastRetrieved]
|
|
22206
22314
|
* @param {*} [options] Override http request option.
|
|
22207
22315
|
* @throws {RequiredError}
|
|
22208
22316
|
*/
|
|
22209
|
-
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>>;
|
|
22210
22318
|
/**
|
|
22211
22319
|
*
|
|
22212
22320
|
* @summary Get HospitalService.
|
|
22213
22321
|
* @param {string} serviceId
|
|
22214
22322
|
* @param {string} [languageCode]
|
|
22323
|
+
* @param {boolean} [returnDefaultValue]
|
|
22215
22324
|
* @param {*} [options] Override http request option.
|
|
22216
22325
|
* @throws {RequiredError}
|
|
22217
22326
|
*/
|
|
22218
|
-
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>>;
|
|
22219
22328
|
/**
|
|
22220
22329
|
*
|
|
22221
22330
|
* @summary Get HospitalService by slug.
|
|
22222
22331
|
* @param {string} slug
|
|
22223
22332
|
* @param {string} [languageCode]
|
|
22333
|
+
* @param {boolean} [returnDefaultValue]
|
|
22224
22334
|
* @param {*} [options] Override http request option.
|
|
22225
22335
|
* @throws {RequiredError}
|
|
22226
22336
|
*/
|
|
22227
|
-
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>>;
|
|
22228
22338
|
};
|
|
22229
22339
|
/**
|
|
22230
22340
|
* ServicesApi - factory interface
|
|
@@ -22249,31 +22359,34 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
22249
22359
|
* @param {Procedure} [procedure]
|
|
22250
22360
|
* @param {Date} [created]
|
|
22251
22361
|
* @param {string} [languageCode]
|
|
22362
|
+
* @param {boolean} [returnDefaultValue]
|
|
22252
22363
|
* @param {number} [page]
|
|
22253
22364
|
* @param {number} [limit]
|
|
22254
22365
|
* @param {Date} [lastRetrieved]
|
|
22255
22366
|
* @param {*} [options] Override http request option.
|
|
22256
22367
|
* @throws {RequiredError}
|
|
22257
22368
|
*/
|
|
22258
|
-
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>;
|
|
22259
22370
|
/**
|
|
22260
22371
|
*
|
|
22261
22372
|
* @summary Get HospitalService.
|
|
22262
22373
|
* @param {string} serviceId
|
|
22263
22374
|
* @param {string} [languageCode]
|
|
22375
|
+
* @param {boolean} [returnDefaultValue]
|
|
22264
22376
|
* @param {*} [options] Override http request option.
|
|
22265
22377
|
* @throws {RequiredError}
|
|
22266
22378
|
*/
|
|
22267
|
-
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22379
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22268
22380
|
/**
|
|
22269
22381
|
*
|
|
22270
22382
|
* @summary Get HospitalService by slug.
|
|
22271
22383
|
* @param {string} slug
|
|
22272
22384
|
* @param {string} [languageCode]
|
|
22385
|
+
* @param {boolean} [returnDefaultValue]
|
|
22273
22386
|
* @param {*} [options] Override http request option.
|
|
22274
22387
|
* @throws {RequiredError}
|
|
22275
22388
|
*/
|
|
22276
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22389
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22277
22390
|
};
|
|
22278
22391
|
/**
|
|
22279
22392
|
* ServicesApi - object-oriented interface
|
|
@@ -22300,6 +22413,7 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22300
22413
|
* @param {Procedure} [procedure]
|
|
22301
22414
|
* @param {Date} [created]
|
|
22302
22415
|
* @param {string} [languageCode]
|
|
22416
|
+
* @param {boolean} [returnDefaultValue]
|
|
22303
22417
|
* @param {number} [page]
|
|
22304
22418
|
* @param {number} [limit]
|
|
22305
22419
|
* @param {Date} [lastRetrieved]
|
|
@@ -22307,27 +22421,29 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22307
22421
|
* @throws {RequiredError}
|
|
22308
22422
|
* @memberof ServicesApi
|
|
22309
22423
|
*/
|
|
22310
|
-
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>>;
|
|
22311
22425
|
/**
|
|
22312
22426
|
*
|
|
22313
22427
|
* @summary Get HospitalService.
|
|
22314
22428
|
* @param {string} serviceId
|
|
22315
22429
|
* @param {string} [languageCode]
|
|
22430
|
+
* @param {boolean} [returnDefaultValue]
|
|
22316
22431
|
* @param {*} [options] Override http request option.
|
|
22317
22432
|
* @throws {RequiredError}
|
|
22318
22433
|
* @memberof ServicesApi
|
|
22319
22434
|
*/
|
|
22320
|
-
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>>;
|
|
22321
22436
|
/**
|
|
22322
22437
|
*
|
|
22323
22438
|
* @summary Get HospitalService by slug.
|
|
22324
22439
|
* @param {string} slug
|
|
22325
22440
|
* @param {string} [languageCode]
|
|
22441
|
+
* @param {boolean} [returnDefaultValue]
|
|
22326
22442
|
* @param {*} [options] Override http request option.
|
|
22327
22443
|
* @throws {RequiredError}
|
|
22328
22444
|
* @memberof ServicesApi
|
|
22329
22445
|
*/
|
|
22330
|
-
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>>;
|
|
22331
22447
|
}
|
|
22332
22448
|
/**
|
|
22333
22449
|
* ServicesCategoriesApi - axios parameter creator
|
|
@@ -22564,13 +22680,14 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22564
22680
|
* @param {Date} [created]
|
|
22565
22681
|
* @param {string} [languageCode]
|
|
22566
22682
|
* @param {Array<string>} [ids]
|
|
22683
|
+
* @param {boolean} [returnDefaultValue]
|
|
22567
22684
|
* @param {number} [page]
|
|
22568
22685
|
* @param {number} [limit]
|
|
22569
22686
|
* @param {Date} [lastRetrieved]
|
|
22570
22687
|
* @param {*} [options] Override http request option.
|
|
22571
22688
|
* @throws {RequiredError}
|
|
22572
22689
|
*/
|
|
22573
|
-
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>;
|
|
22574
22691
|
/**
|
|
22575
22692
|
*
|
|
22576
22693
|
* @summary Create a Specialty.
|
|
@@ -22584,10 +22701,11 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22584
22701
|
* @summary Get Specialty by slug.
|
|
22585
22702
|
* @param {string} slug
|
|
22586
22703
|
* @param {string} [languageCode]
|
|
22704
|
+
* @param {boolean} [returnDefaultValue]
|
|
22587
22705
|
* @param {*} [options] Override http request option.
|
|
22588
22706
|
* @throws {RequiredError}
|
|
22589
22707
|
*/
|
|
22590
|
-
apiV1SpecialtiesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22708
|
+
apiV1SpecialtiesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22591
22709
|
/**
|
|
22592
22710
|
*
|
|
22593
22711
|
* @summary Delete Specialty.
|
|
@@ -22601,10 +22719,11 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22601
22719
|
* @summary Get Specialty.
|
|
22602
22720
|
* @param {string} specialtyId
|
|
22603
22721
|
* @param {string} [languageCode]
|
|
22722
|
+
* @param {boolean} [returnDefaultValue]
|
|
22604
22723
|
* @param {*} [options] Override http request option.
|
|
22605
22724
|
* @throws {RequiredError}
|
|
22606
22725
|
*/
|
|
22607
|
-
apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22726
|
+
apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22608
22727
|
/**
|
|
22609
22728
|
*
|
|
22610
22729
|
* @summary Get all SpecialtyMedias.
|
|
@@ -22681,13 +22800,14 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22681
22800
|
* @param {Date} [created]
|
|
22682
22801
|
* @param {string} [languageCode]
|
|
22683
22802
|
* @param {Array<string>} [ids]
|
|
22803
|
+
* @param {boolean} [returnDefaultValue]
|
|
22684
22804
|
* @param {number} [page]
|
|
22685
22805
|
* @param {number} [limit]
|
|
22686
22806
|
* @param {Date} [lastRetrieved]
|
|
22687
22807
|
* @param {*} [options] Override http request option.
|
|
22688
22808
|
* @throws {RequiredError}
|
|
22689
22809
|
*/
|
|
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, 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>>;
|
|
22691
22811
|
/**
|
|
22692
22812
|
*
|
|
22693
22813
|
* @summary Create a Specialty.
|
|
@@ -22701,10 +22821,11 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22701
22821
|
* @summary Get Specialty by slug.
|
|
22702
22822
|
* @param {string} slug
|
|
22703
22823
|
* @param {string} [languageCode]
|
|
22824
|
+
* @param {boolean} [returnDefaultValue]
|
|
22704
22825
|
* @param {*} [options] Override http request option.
|
|
22705
22826
|
* @throws {RequiredError}
|
|
22706
22827
|
*/
|
|
22707
|
-
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>>;
|
|
22708
22829
|
/**
|
|
22709
22830
|
*
|
|
22710
22831
|
* @summary Delete Specialty.
|
|
@@ -22718,10 +22839,11 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22718
22839
|
* @summary Get Specialty.
|
|
22719
22840
|
* @param {string} specialtyId
|
|
22720
22841
|
* @param {string} [languageCode]
|
|
22842
|
+
* @param {boolean} [returnDefaultValue]
|
|
22721
22843
|
* @param {*} [options] Override http request option.
|
|
22722
22844
|
* @throws {RequiredError}
|
|
22723
22845
|
*/
|
|
22724
|
-
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>>;
|
|
22725
22847
|
/**
|
|
22726
22848
|
*
|
|
22727
22849
|
* @summary Get all SpecialtyMedias.
|
|
@@ -22798,13 +22920,14 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
22798
22920
|
* @param {Date} [created]
|
|
22799
22921
|
* @param {string} [languageCode]
|
|
22800
22922
|
* @param {Array<string>} [ids]
|
|
22923
|
+
* @param {boolean} [returnDefaultValue]
|
|
22801
22924
|
* @param {number} [page]
|
|
22802
22925
|
* @param {number} [limit]
|
|
22803
22926
|
* @param {Date} [lastRetrieved]
|
|
22804
22927
|
* @param {*} [options] Override http request option.
|
|
22805
22928
|
* @throws {RequiredError}
|
|
22806
22929
|
*/
|
|
22807
|
-
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>;
|
|
22808
22931
|
/**
|
|
22809
22932
|
*
|
|
22810
22933
|
* @summary Create a Specialty.
|
|
@@ -22818,10 +22941,11 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
22818
22941
|
* @summary Get Specialty by slug.
|
|
22819
22942
|
* @param {string} slug
|
|
22820
22943
|
* @param {string} [languageCode]
|
|
22944
|
+
* @param {boolean} [returnDefaultValue]
|
|
22821
22945
|
* @param {*} [options] Override http request option.
|
|
22822
22946
|
* @throws {RequiredError}
|
|
22823
22947
|
*/
|
|
22824
|
-
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
22948
|
+
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
22825
22949
|
/**
|
|
22826
22950
|
*
|
|
22827
22951
|
* @summary Delete Specialty.
|
|
@@ -22835,10 +22959,11 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
22835
22959
|
* @summary Get Specialty.
|
|
22836
22960
|
* @param {string} specialtyId
|
|
22837
22961
|
* @param {string} [languageCode]
|
|
22962
|
+
* @param {boolean} [returnDefaultValue]
|
|
22838
22963
|
* @param {*} [options] Override http request option.
|
|
22839
22964
|
* @throws {RequiredError}
|
|
22840
22965
|
*/
|
|
22841
|
-
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
22966
|
+
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
22842
22967
|
/**
|
|
22843
22968
|
*
|
|
22844
22969
|
* @summary Get all SpecialtyMedias.
|
|
@@ -22917,6 +23042,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22917
23042
|
* @param {Date} [created]
|
|
22918
23043
|
* @param {string} [languageCode]
|
|
22919
23044
|
* @param {Array<string>} [ids]
|
|
23045
|
+
* @param {boolean} [returnDefaultValue]
|
|
22920
23046
|
* @param {number} [page]
|
|
22921
23047
|
* @param {number} [limit]
|
|
22922
23048
|
* @param {Date} [lastRetrieved]
|
|
@@ -22924,7 +23050,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22924
23050
|
* @throws {RequiredError}
|
|
22925
23051
|
* @memberof SpecialtiesApi
|
|
22926
23052
|
*/
|
|
22927
|
-
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>>;
|
|
22928
23054
|
/**
|
|
22929
23055
|
*
|
|
22930
23056
|
* @summary Create a Specialty.
|
|
@@ -22939,11 +23065,12 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22939
23065
|
* @summary Get Specialty by slug.
|
|
22940
23066
|
* @param {string} slug
|
|
22941
23067
|
* @param {string} [languageCode]
|
|
23068
|
+
* @param {boolean} [returnDefaultValue]
|
|
22942
23069
|
* @param {*} [options] Override http request option.
|
|
22943
23070
|
* @throws {RequiredError}
|
|
22944
23071
|
* @memberof SpecialtiesApi
|
|
22945
23072
|
*/
|
|
22946
|
-
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>>;
|
|
22947
23074
|
/**
|
|
22948
23075
|
*
|
|
22949
23076
|
* @summary Delete Specialty.
|
|
@@ -22958,11 +23085,12 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22958
23085
|
* @summary Get Specialty.
|
|
22959
23086
|
* @param {string} specialtyId
|
|
22960
23087
|
* @param {string} [languageCode]
|
|
23088
|
+
* @param {boolean} [returnDefaultValue]
|
|
22961
23089
|
* @param {*} [options] Override http request option.
|
|
22962
23090
|
* @throws {RequiredError}
|
|
22963
23091
|
* @memberof SpecialtiesApi
|
|
22964
23092
|
*/
|
|
22965
|
-
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>>;
|
|
22966
23094
|
/**
|
|
22967
23095
|
*
|
|
22968
23096
|
* @summary Get all SpecialtyMedias.
|
|
@@ -23046,13 +23174,14 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23046
23174
|
* @param {string} [languageCode]
|
|
23047
23175
|
* @param {Array<string>} [ids]
|
|
23048
23176
|
* @param {string} [specialtyTypeCategoryId]
|
|
23177
|
+
* @param {boolean} [returnDefaultValue]
|
|
23049
23178
|
* @param {number} [page]
|
|
23050
23179
|
* @param {number} [limit]
|
|
23051
23180
|
* @param {Date} [lastRetrieved]
|
|
23052
23181
|
* @param {*} [options] Override http request option.
|
|
23053
23182
|
* @throws {RequiredError}
|
|
23054
23183
|
*/
|
|
23055
|
-
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>;
|
|
23056
23185
|
/**
|
|
23057
23186
|
*
|
|
23058
23187
|
* @summary Create a Department.
|
|
@@ -23061,15 +23190,36 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23061
23190
|
* @throws {RequiredError}
|
|
23062
23191
|
*/
|
|
23063
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>;
|
|
23064
23213
|
/**
|
|
23065
23214
|
*
|
|
23066
23215
|
* @summary Get Department by slug.
|
|
23067
23216
|
* @param {string} slug
|
|
23068
23217
|
* @param {string} [languageCode]
|
|
23218
|
+
* @param {boolean} [returnDefaultValue]
|
|
23069
23219
|
* @param {*} [options] Override http request option.
|
|
23070
23220
|
* @throws {RequiredError}
|
|
23071
23221
|
*/
|
|
23072
|
-
apiV1SpecialtytypesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23222
|
+
apiV1SpecialtytypesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23073
23223
|
/**
|
|
23074
23224
|
*
|
|
23075
23225
|
* @summary Delete Department.
|
|
@@ -23083,10 +23233,11 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23083
23233
|
* @summary Get Department.
|
|
23084
23234
|
* @param {string} specialtyTypeId
|
|
23085
23235
|
* @param {string} [languageCode]
|
|
23236
|
+
* @param {boolean} [returnDefaultValue]
|
|
23086
23237
|
* @param {*} [options] Override http request option.
|
|
23087
23238
|
* @throws {RequiredError}
|
|
23088
23239
|
*/
|
|
23089
|
-
apiV1SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23240
|
+
apiV1SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23090
23241
|
/**
|
|
23091
23242
|
*
|
|
23092
23243
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -23164,13 +23315,14 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23164
23315
|
* @param {string} [languageCode]
|
|
23165
23316
|
* @param {Array<string>} [ids]
|
|
23166
23317
|
* @param {string} [specialtyTypeCategoryId]
|
|
23318
|
+
* @param {boolean} [returnDefaultValue]
|
|
23167
23319
|
* @param {number} [page]
|
|
23168
23320
|
* @param {number} [limit]
|
|
23169
23321
|
* @param {Date} [lastRetrieved]
|
|
23170
23322
|
* @param {*} [options] Override http request option.
|
|
23171
23323
|
* @throws {RequiredError}
|
|
23172
23324
|
*/
|
|
23173
|
-
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>>;
|
|
23174
23326
|
/**
|
|
23175
23327
|
*
|
|
23176
23328
|
* @summary Create a Department.
|
|
@@ -23179,15 +23331,36 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23179
23331
|
* @throws {RequiredError}
|
|
23180
23332
|
*/
|
|
23181
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>>;
|
|
23182
23354
|
/**
|
|
23183
23355
|
*
|
|
23184
23356
|
* @summary Get Department by slug.
|
|
23185
23357
|
* @param {string} slug
|
|
23186
23358
|
* @param {string} [languageCode]
|
|
23359
|
+
* @param {boolean} [returnDefaultValue]
|
|
23187
23360
|
* @param {*} [options] Override http request option.
|
|
23188
23361
|
* @throws {RequiredError}
|
|
23189
23362
|
*/
|
|
23190
|
-
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>>;
|
|
23191
23364
|
/**
|
|
23192
23365
|
*
|
|
23193
23366
|
* @summary Delete Department.
|
|
@@ -23201,10 +23374,11 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23201
23374
|
* @summary Get Department.
|
|
23202
23375
|
* @param {string} specialtyTypeId
|
|
23203
23376
|
* @param {string} [languageCode]
|
|
23377
|
+
* @param {boolean} [returnDefaultValue]
|
|
23204
23378
|
* @param {*} [options] Override http request option.
|
|
23205
23379
|
* @throws {RequiredError}
|
|
23206
23380
|
*/
|
|
23207
|
-
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>>;
|
|
23208
23382
|
/**
|
|
23209
23383
|
*
|
|
23210
23384
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -23282,13 +23456,14 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23282
23456
|
* @param {string} [languageCode]
|
|
23283
23457
|
* @param {Array<string>} [ids]
|
|
23284
23458
|
* @param {string} [specialtyTypeCategoryId]
|
|
23459
|
+
* @param {boolean} [returnDefaultValue]
|
|
23285
23460
|
* @param {number} [page]
|
|
23286
23461
|
* @param {number} [limit]
|
|
23287
23462
|
* @param {Date} [lastRetrieved]
|
|
23288
23463
|
* @param {*} [options] Override http request option.
|
|
23289
23464
|
* @throws {RequiredError}
|
|
23290
23465
|
*/
|
|
23291
|
-
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>;
|
|
23292
23467
|
/**
|
|
23293
23468
|
*
|
|
23294
23469
|
* @summary Create a Department.
|
|
@@ -23297,15 +23472,36 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23297
23472
|
* @throws {RequiredError}
|
|
23298
23473
|
*/
|
|
23299
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>;
|
|
23300
23495
|
/**
|
|
23301
23496
|
*
|
|
23302
23497
|
* @summary Get Department by slug.
|
|
23303
23498
|
* @param {string} slug
|
|
23304
23499
|
* @param {string} [languageCode]
|
|
23500
|
+
* @param {boolean} [returnDefaultValue]
|
|
23305
23501
|
* @param {*} [options] Override http request option.
|
|
23306
23502
|
* @throws {RequiredError}
|
|
23307
23503
|
*/
|
|
23308
|
-
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23504
|
+
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23309
23505
|
/**
|
|
23310
23506
|
*
|
|
23311
23507
|
* @summary Delete Department.
|
|
@@ -23319,10 +23515,11 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23319
23515
|
* @summary Get Department.
|
|
23320
23516
|
* @param {string} specialtyTypeId
|
|
23321
23517
|
* @param {string} [languageCode]
|
|
23518
|
+
* @param {boolean} [returnDefaultValue]
|
|
23322
23519
|
* @param {*} [options] Override http request option.
|
|
23323
23520
|
* @throws {RequiredError}
|
|
23324
23521
|
*/
|
|
23325
|
-
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23522
|
+
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23326
23523
|
/**
|
|
23327
23524
|
*
|
|
23328
23525
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -23402,6 +23599,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23402
23599
|
* @param {string} [languageCode]
|
|
23403
23600
|
* @param {Array<string>} [ids]
|
|
23404
23601
|
* @param {string} [specialtyTypeCategoryId]
|
|
23602
|
+
* @param {boolean} [returnDefaultValue]
|
|
23405
23603
|
* @param {number} [page]
|
|
23406
23604
|
* @param {number} [limit]
|
|
23407
23605
|
* @param {Date} [lastRetrieved]
|
|
@@ -23409,7 +23607,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23409
23607
|
* @throws {RequiredError}
|
|
23410
23608
|
* @memberof SpecialtyTypesApi
|
|
23411
23609
|
*/
|
|
23412
|
-
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>>;
|
|
23413
23611
|
/**
|
|
23414
23612
|
*
|
|
23415
23613
|
* @summary Create a Department.
|
|
@@ -23419,16 +23617,38 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23419
23617
|
* @memberof SpecialtyTypesApi
|
|
23420
23618
|
*/
|
|
23421
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>>;
|
|
23422
23641
|
/**
|
|
23423
23642
|
*
|
|
23424
23643
|
* @summary Get Department by slug.
|
|
23425
23644
|
* @param {string} slug
|
|
23426
23645
|
* @param {string} [languageCode]
|
|
23646
|
+
* @param {boolean} [returnDefaultValue]
|
|
23427
23647
|
* @param {*} [options] Override http request option.
|
|
23428
23648
|
* @throws {RequiredError}
|
|
23429
23649
|
* @memberof SpecialtyTypesApi
|
|
23430
23650
|
*/
|
|
23431
|
-
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>>;
|
|
23432
23652
|
/**
|
|
23433
23653
|
*
|
|
23434
23654
|
* @summary Delete Department.
|
|
@@ -23443,11 +23663,12 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23443
23663
|
* @summary Get Department.
|
|
23444
23664
|
* @param {string} specialtyTypeId
|
|
23445
23665
|
* @param {string} [languageCode]
|
|
23666
|
+
* @param {boolean} [returnDefaultValue]
|
|
23446
23667
|
* @param {*} [options] Override http request option.
|
|
23447
23668
|
* @throws {RequiredError}
|
|
23448
23669
|
* @memberof SpecialtyTypesApi
|
|
23449
23670
|
*/
|
|
23450
|
-
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>>;
|
|
23451
23672
|
/**
|
|
23452
23673
|
*
|
|
23453
23674
|
* @summary Get all SpecialtyTypeMedias.
|