ch-admin-api-client-typescript 2.5.7 → 2.6.1
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 +399 -108
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +579 -189
- package/package.json +1 -1
- package/src/api.ts +695 -189
package/lib/api.d.ts
CHANGED
|
@@ -4443,6 +4443,18 @@ export interface DealItemModel {
|
|
|
4443
4443
|
* @memberof DealItemModel
|
|
4444
4444
|
*/
|
|
4445
4445
|
'auditableEntity'?: AuditableEntity;
|
|
4446
|
+
/**
|
|
4447
|
+
*
|
|
4448
|
+
* @type {Array<LocalizedUrlModel>}
|
|
4449
|
+
* @memberof DealItemModel
|
|
4450
|
+
*/
|
|
4451
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
4452
|
+
/**
|
|
4453
|
+
*
|
|
4454
|
+
* @type {boolean}
|
|
4455
|
+
* @memberof DealItemModel
|
|
4456
|
+
*/
|
|
4457
|
+
'confirmed'?: boolean;
|
|
4446
4458
|
}
|
|
4447
4459
|
/**
|
|
4448
4460
|
*
|
|
@@ -4534,6 +4546,24 @@ export interface DealModel {
|
|
|
4534
4546
|
* @memberof DealModel
|
|
4535
4547
|
*/
|
|
4536
4548
|
'auditableEntity'?: AuditableEntity;
|
|
4549
|
+
/**
|
|
4550
|
+
*
|
|
4551
|
+
* @type {Array<LocalizedUrlModel>}
|
|
4552
|
+
* @memberof DealModel
|
|
4553
|
+
*/
|
|
4554
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
4555
|
+
/**
|
|
4556
|
+
*
|
|
4557
|
+
* @type {boolean}
|
|
4558
|
+
* @memberof DealModel
|
|
4559
|
+
*/
|
|
4560
|
+
'confirmed'?: boolean;
|
|
4561
|
+
/**
|
|
4562
|
+
*
|
|
4563
|
+
* @type {string}
|
|
4564
|
+
* @memberof DealModel
|
|
4565
|
+
*/
|
|
4566
|
+
'languageCode'?: string | null;
|
|
4537
4567
|
}
|
|
4538
4568
|
/**
|
|
4539
4569
|
*
|
|
@@ -9356,6 +9386,31 @@ export interface SpecialtyTypeModel {
|
|
|
9356
9386
|
*/
|
|
9357
9387
|
'languageCode'?: string | null;
|
|
9358
9388
|
}
|
|
9389
|
+
/**
|
|
9390
|
+
*
|
|
9391
|
+
* @export
|
|
9392
|
+
* @interface SpecialtyTypeSimpleItemModel
|
|
9393
|
+
*/
|
|
9394
|
+
export interface SpecialtyTypeSimpleItemModel {
|
|
9395
|
+
/**
|
|
9396
|
+
*
|
|
9397
|
+
* @type {string}
|
|
9398
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
9399
|
+
*/
|
|
9400
|
+
'id'?: string;
|
|
9401
|
+
/**
|
|
9402
|
+
*
|
|
9403
|
+
* @type {string}
|
|
9404
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
9405
|
+
*/
|
|
9406
|
+
'name'?: string | null;
|
|
9407
|
+
/**
|
|
9408
|
+
*
|
|
9409
|
+
* @type {boolean}
|
|
9410
|
+
* @memberof SpecialtyTypeSimpleItemModel
|
|
9411
|
+
*/
|
|
9412
|
+
'confirmed'?: boolean;
|
|
9413
|
+
}
|
|
9359
9414
|
/**
|
|
9360
9415
|
*
|
|
9361
9416
|
* @export
|
|
@@ -9375,6 +9430,25 @@ export interface SpecialtyTypesModel {
|
|
|
9375
9430
|
*/
|
|
9376
9431
|
'metaData'?: PagedListMetaData;
|
|
9377
9432
|
}
|
|
9433
|
+
/**
|
|
9434
|
+
*
|
|
9435
|
+
* @export
|
|
9436
|
+
* @interface SpecialtyTypesSimpleModel
|
|
9437
|
+
*/
|
|
9438
|
+
export interface SpecialtyTypesSimpleModel {
|
|
9439
|
+
/**
|
|
9440
|
+
*
|
|
9441
|
+
* @type {Array<SpecialtyTypeSimpleItemModel>}
|
|
9442
|
+
* @memberof SpecialtyTypesSimpleModel
|
|
9443
|
+
*/
|
|
9444
|
+
'items'?: Array<SpecialtyTypeSimpleItemModel> | null;
|
|
9445
|
+
/**
|
|
9446
|
+
*
|
|
9447
|
+
* @type {PagedListMetaData}
|
|
9448
|
+
* @memberof SpecialtyTypesSimpleModel
|
|
9449
|
+
*/
|
|
9450
|
+
'metaData'?: PagedListMetaData;
|
|
9451
|
+
}
|
|
9378
9452
|
/**
|
|
9379
9453
|
*
|
|
9380
9454
|
* @export
|
|
@@ -10137,6 +10211,18 @@ export interface UpdateDealCommand {
|
|
|
10137
10211
|
* @memberof UpdateDealCommand
|
|
10138
10212
|
*/
|
|
10139
10213
|
'photoThumbnail'?: string | null;
|
|
10214
|
+
/**
|
|
10215
|
+
*
|
|
10216
|
+
* @type {string}
|
|
10217
|
+
* @memberof UpdateDealCommand
|
|
10218
|
+
*/
|
|
10219
|
+
'languageCode'?: string | null;
|
|
10220
|
+
/**
|
|
10221
|
+
*
|
|
10222
|
+
* @type {boolean}
|
|
10223
|
+
* @memberof UpdateDealCommand
|
|
10224
|
+
*/
|
|
10225
|
+
'confirmed'?: boolean;
|
|
10140
10226
|
}
|
|
10141
10227
|
/**
|
|
10142
10228
|
*
|
|
@@ -11728,10 +11814,11 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11728
11814
|
* @summary Get Article.
|
|
11729
11815
|
* @param {string} articleId
|
|
11730
11816
|
* @param {string} [languageCode]
|
|
11817
|
+
* @param {boolean} [returnDefaultValue]
|
|
11731
11818
|
* @param {*} [options] Override http request option.
|
|
11732
11819
|
* @throws {RequiredError}
|
|
11733
11820
|
*/
|
|
11734
|
-
apiV1ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11821
|
+
apiV1ArticlesArticleIdGet: (articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11735
11822
|
/**
|
|
11736
11823
|
*
|
|
11737
11824
|
* @summary Get all ArticleMedias.
|
|
@@ -11897,13 +11984,14 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11897
11984
|
* @param {string} [contributorId]
|
|
11898
11985
|
* @param {string} [languageCode]
|
|
11899
11986
|
* @param {boolean} [showHidden]
|
|
11987
|
+
* @param {boolean} [returnDefaultValue]
|
|
11900
11988
|
* @param {number} [page]
|
|
11901
11989
|
* @param {number} [limit]
|
|
11902
11990
|
* @param {Date} [lastRetrieved]
|
|
11903
11991
|
* @param {*} [options] Override http request option.
|
|
11904
11992
|
* @throws {RequiredError}
|
|
11905
11993
|
*/
|
|
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>;
|
|
11994
|
+
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
11995
|
/**
|
|
11908
11996
|
*
|
|
11909
11997
|
* @summary Create a Article.
|
|
@@ -11917,10 +12005,11 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
11917
12005
|
* @summary Get Article by slug.
|
|
11918
12006
|
* @param {string} slug
|
|
11919
12007
|
* @param {string} [languageCode]
|
|
12008
|
+
* @param {boolean} [returnDefaultValue]
|
|
11920
12009
|
* @param {*} [options] Override http request option.
|
|
11921
12010
|
* @throws {RequiredError}
|
|
11922
12011
|
*/
|
|
11923
|
-
apiV1ArticlesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
12012
|
+
apiV1ArticlesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11924
12013
|
};
|
|
11925
12014
|
/**
|
|
11926
12015
|
* ArticlesApi - functional programming interface
|
|
@@ -11995,10 +12084,11 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
11995
12084
|
* @summary Get Article.
|
|
11996
12085
|
* @param {string} articleId
|
|
11997
12086
|
* @param {string} [languageCode]
|
|
12087
|
+
* @param {boolean} [returnDefaultValue]
|
|
11998
12088
|
* @param {*} [options] Override http request option.
|
|
11999
12089
|
* @throws {RequiredError}
|
|
12000
12090
|
*/
|
|
12001
|
-
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
12091
|
+
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
12002
12092
|
/**
|
|
12003
12093
|
*
|
|
12004
12094
|
* @summary Get all ArticleMedias.
|
|
@@ -12164,13 +12254,14 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12164
12254
|
* @param {string} [contributorId]
|
|
12165
12255
|
* @param {string} [languageCode]
|
|
12166
12256
|
* @param {boolean} [showHidden]
|
|
12257
|
+
* @param {boolean} [returnDefaultValue]
|
|
12167
12258
|
* @param {number} [page]
|
|
12168
12259
|
* @param {number} [limit]
|
|
12169
12260
|
* @param {Date} [lastRetrieved]
|
|
12170
12261
|
* @param {*} [options] Override http request option.
|
|
12171
12262
|
* @throws {RequiredError}
|
|
12172
12263
|
*/
|
|
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>>;
|
|
12264
|
+
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
12265
|
/**
|
|
12175
12266
|
*
|
|
12176
12267
|
* @summary Create a Article.
|
|
@@ -12184,10 +12275,11 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
12184
12275
|
* @summary Get Article by slug.
|
|
12185
12276
|
* @param {string} slug
|
|
12186
12277
|
* @param {string} [languageCode]
|
|
12278
|
+
* @param {boolean} [returnDefaultValue]
|
|
12187
12279
|
* @param {*} [options] Override http request option.
|
|
12188
12280
|
* @throws {RequiredError}
|
|
12189
12281
|
*/
|
|
12190
|
-
apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
12282
|
+
apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
12191
12283
|
};
|
|
12192
12284
|
/**
|
|
12193
12285
|
* ArticlesApi - factory interface
|
|
@@ -12262,10 +12354,11 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12262
12354
|
* @summary Get Article.
|
|
12263
12355
|
* @param {string} articleId
|
|
12264
12356
|
* @param {string} [languageCode]
|
|
12357
|
+
* @param {boolean} [returnDefaultValue]
|
|
12265
12358
|
* @param {*} [options] Override http request option.
|
|
12266
12359
|
* @throws {RequiredError}
|
|
12267
12360
|
*/
|
|
12268
|
-
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12361
|
+
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12269
12362
|
/**
|
|
12270
12363
|
*
|
|
12271
12364
|
* @summary Get all ArticleMedias.
|
|
@@ -12431,13 +12524,14 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12431
12524
|
* @param {string} [contributorId]
|
|
12432
12525
|
* @param {string} [languageCode]
|
|
12433
12526
|
* @param {boolean} [showHidden]
|
|
12527
|
+
* @param {boolean} [returnDefaultValue]
|
|
12434
12528
|
* @param {number} [page]
|
|
12435
12529
|
* @param {number} [limit]
|
|
12436
12530
|
* @param {Date} [lastRetrieved]
|
|
12437
12531
|
* @param {*} [options] Override http request option.
|
|
12438
12532
|
* @throws {RequiredError}
|
|
12439
12533
|
*/
|
|
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>;
|
|
12534
|
+
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
12535
|
/**
|
|
12442
12536
|
*
|
|
12443
12537
|
* @summary Create a Article.
|
|
@@ -12451,10 +12545,11 @@ export declare const ArticlesApiFactory: (configuration?: Configuration | undefi
|
|
|
12451
12545
|
* @summary Get Article by slug.
|
|
12452
12546
|
* @param {string} slug
|
|
12453
12547
|
* @param {string} [languageCode]
|
|
12548
|
+
* @param {boolean} [returnDefaultValue]
|
|
12454
12549
|
* @param {*} [options] Override http request option.
|
|
12455
12550
|
* @throws {RequiredError}
|
|
12456
12551
|
*/
|
|
12457
|
-
apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12552
|
+
apiV1ArticlesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<ArticleModel>;
|
|
12458
12553
|
};
|
|
12459
12554
|
/**
|
|
12460
12555
|
* ArticlesApi - object-oriented interface
|
|
@@ -12537,11 +12632,12 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12537
12632
|
* @summary Get Article.
|
|
12538
12633
|
* @param {string} articleId
|
|
12539
12634
|
* @param {string} [languageCode]
|
|
12635
|
+
* @param {boolean} [returnDefaultValue]
|
|
12540
12636
|
* @param {*} [options] Override http request option.
|
|
12541
12637
|
* @throws {RequiredError}
|
|
12542
12638
|
* @memberof ArticlesApi
|
|
12543
12639
|
*/
|
|
12544
|
-
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
|
|
12640
|
+
apiV1ArticlesArticleIdGet(articleId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
|
|
12545
12641
|
/**
|
|
12546
12642
|
*
|
|
12547
12643
|
* @summary Get all ArticleMedias.
|
|
@@ -12722,6 +12818,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12722
12818
|
* @param {string} [contributorId]
|
|
12723
12819
|
* @param {string} [languageCode]
|
|
12724
12820
|
* @param {boolean} [showHidden]
|
|
12821
|
+
* @param {boolean} [returnDefaultValue]
|
|
12725
12822
|
* @param {number} [page]
|
|
12726
12823
|
* @param {number} [limit]
|
|
12727
12824
|
* @param {Date} [lastRetrieved]
|
|
@@ -12729,7 +12826,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12729
12826
|
* @throws {RequiredError}
|
|
12730
12827
|
* @memberof ArticlesApi
|
|
12731
12828
|
*/
|
|
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>>;
|
|
12829
|
+
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
12830
|
/**
|
|
12734
12831
|
*
|
|
12735
12832
|
* @summary Create a Article.
|
|
@@ -12744,11 +12841,12 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
12744
12841
|
* @summary Get Article by slug.
|
|
12745
12842
|
* @param {string} slug
|
|
12746
12843
|
* @param {string} [languageCode]
|
|
12844
|
+
* @param {boolean} [returnDefaultValue]
|
|
12747
12845
|
* @param {*} [options] Override http request option.
|
|
12748
12846
|
* @throws {RequiredError}
|
|
12749
12847
|
* @memberof ArticlesApi
|
|
12750
12848
|
*/
|
|
12751
|
-
apiV1ArticlesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
|
|
12849
|
+
apiV1ArticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
|
|
12752
12850
|
}
|
|
12753
12851
|
/**
|
|
12754
12852
|
* BookingsApi - axios parameter creator
|
|
@@ -14592,10 +14690,11 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14592
14690
|
* @summary Get country.
|
|
14593
14691
|
* @param {string} countryId
|
|
14594
14692
|
* @param {string} [languageCode]
|
|
14693
|
+
* @param {boolean} [returnDefaultValue]
|
|
14595
14694
|
* @param {*} [options] Override http request option.
|
|
14596
14695
|
* @throws {RequiredError}
|
|
14597
14696
|
*/
|
|
14598
|
-
apiV1CountriesCountryIdGet: (countryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14697
|
+
apiV1CountriesCountryIdGet: (countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14599
14698
|
/**
|
|
14600
14699
|
*
|
|
14601
14700
|
* @summary Get all CountryMedias.
|
|
@@ -14672,13 +14771,14 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14672
14771
|
* @param {Date} [createdDate]
|
|
14673
14772
|
* @param {string} [languageCode]
|
|
14674
14773
|
* @param {boolean} [showHidden]
|
|
14774
|
+
* @param {boolean} [returnDefaultValue]
|
|
14675
14775
|
* @param {number} [page]
|
|
14676
14776
|
* @param {number} [limit]
|
|
14677
14777
|
* @param {Date} [lastRetrieved]
|
|
14678
14778
|
* @param {*} [options] Override http request option.
|
|
14679
14779
|
* @throws {RequiredError}
|
|
14680
14780
|
*/
|
|
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>;
|
|
14781
|
+
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
14782
|
/**
|
|
14683
14783
|
*
|
|
14684
14784
|
* @summary Create a country.
|
|
@@ -14692,10 +14792,11 @@ export declare const CountriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
14692
14792
|
* @summary Get country by slug.
|
|
14693
14793
|
* @param {string} slug
|
|
14694
14794
|
* @param {string} [languageCode]
|
|
14795
|
+
* @param {boolean} [returnDefaultValue]
|
|
14695
14796
|
* @param {*} [options] Override http request option.
|
|
14696
14797
|
* @throws {RequiredError}
|
|
14697
14798
|
*/
|
|
14698
|
-
apiV1CountriesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14799
|
+
apiV1CountriesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
14699
14800
|
};
|
|
14700
14801
|
/**
|
|
14701
14802
|
* CountriesApi - functional programming interface
|
|
@@ -14715,10 +14816,11 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14715
14816
|
* @summary Get country.
|
|
14716
14817
|
* @param {string} countryId
|
|
14717
14818
|
* @param {string} [languageCode]
|
|
14819
|
+
* @param {boolean} [returnDefaultValue]
|
|
14718
14820
|
* @param {*} [options] Override http request option.
|
|
14719
14821
|
* @throws {RequiredError}
|
|
14720
14822
|
*/
|
|
14721
|
-
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
14823
|
+
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
14722
14824
|
/**
|
|
14723
14825
|
*
|
|
14724
14826
|
* @summary Get all CountryMedias.
|
|
@@ -14795,13 +14897,14 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14795
14897
|
* @param {Date} [createdDate]
|
|
14796
14898
|
* @param {string} [languageCode]
|
|
14797
14899
|
* @param {boolean} [showHidden]
|
|
14900
|
+
* @param {boolean} [returnDefaultValue]
|
|
14798
14901
|
* @param {number} [page]
|
|
14799
14902
|
* @param {number} [limit]
|
|
14800
14903
|
* @param {Date} [lastRetrieved]
|
|
14801
14904
|
* @param {*} [options] Override http request option.
|
|
14802
14905
|
* @throws {RequiredError}
|
|
14803
14906
|
*/
|
|
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>>;
|
|
14907
|
+
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
14908
|
/**
|
|
14806
14909
|
*
|
|
14807
14910
|
* @summary Create a country.
|
|
@@ -14815,10 +14918,11 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
14815
14918
|
* @summary Get country by slug.
|
|
14816
14919
|
* @param {string} slug
|
|
14817
14920
|
* @param {string} [languageCode]
|
|
14921
|
+
* @param {boolean} [returnDefaultValue]
|
|
14818
14922
|
* @param {*} [options] Override http request option.
|
|
14819
14923
|
* @throws {RequiredError}
|
|
14820
14924
|
*/
|
|
14821
|
-
apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
14925
|
+
apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
14822
14926
|
};
|
|
14823
14927
|
/**
|
|
14824
14928
|
* CountriesApi - factory interface
|
|
@@ -14838,10 +14942,11 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
14838
14942
|
* @summary Get country.
|
|
14839
14943
|
* @param {string} countryId
|
|
14840
14944
|
* @param {string} [languageCode]
|
|
14945
|
+
* @param {boolean} [returnDefaultValue]
|
|
14841
14946
|
* @param {*} [options] Override http request option.
|
|
14842
14947
|
* @throws {RequiredError}
|
|
14843
14948
|
*/
|
|
14844
|
-
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
14949
|
+
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
14845
14950
|
/**
|
|
14846
14951
|
*
|
|
14847
14952
|
* @summary Get all CountryMedias.
|
|
@@ -14918,13 +15023,14 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
14918
15023
|
* @param {Date} [createdDate]
|
|
14919
15024
|
* @param {string} [languageCode]
|
|
14920
15025
|
* @param {boolean} [showHidden]
|
|
15026
|
+
* @param {boolean} [returnDefaultValue]
|
|
14921
15027
|
* @param {number} [page]
|
|
14922
15028
|
* @param {number} [limit]
|
|
14923
15029
|
* @param {Date} [lastRetrieved]
|
|
14924
15030
|
* @param {*} [options] Override http request option.
|
|
14925
15031
|
* @throws {RequiredError}
|
|
14926
15032
|
*/
|
|
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>;
|
|
15033
|
+
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
15034
|
/**
|
|
14929
15035
|
*
|
|
14930
15036
|
* @summary Create a country.
|
|
@@ -14938,10 +15044,11 @@ export declare const CountriesApiFactory: (configuration?: Configuration | undef
|
|
|
14938
15044
|
* @summary Get country by slug.
|
|
14939
15045
|
* @param {string} slug
|
|
14940
15046
|
* @param {string} [languageCode]
|
|
15047
|
+
* @param {boolean} [returnDefaultValue]
|
|
14941
15048
|
* @param {*} [options] Override http request option.
|
|
14942
15049
|
* @throws {RequiredError}
|
|
14943
15050
|
*/
|
|
14944
|
-
apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
15051
|
+
apiV1CountriesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<CountryModel>;
|
|
14945
15052
|
};
|
|
14946
15053
|
/**
|
|
14947
15054
|
* CountriesApi - object-oriented interface
|
|
@@ -14964,11 +15071,12 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
14964
15071
|
* @summary Get country.
|
|
14965
15072
|
* @param {string} countryId
|
|
14966
15073
|
* @param {string} [languageCode]
|
|
15074
|
+
* @param {boolean} [returnDefaultValue]
|
|
14967
15075
|
* @param {*} [options] Override http request option.
|
|
14968
15076
|
* @throws {RequiredError}
|
|
14969
15077
|
* @memberof CountriesApi
|
|
14970
15078
|
*/
|
|
14971
|
-
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15079
|
+
apiV1CountriesCountryIdGet(countryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
14972
15080
|
/**
|
|
14973
15081
|
*
|
|
14974
15082
|
* @summary Get all CountryMedias.
|
|
@@ -15052,6 +15160,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15052
15160
|
* @param {Date} [createdDate]
|
|
15053
15161
|
* @param {string} [languageCode]
|
|
15054
15162
|
* @param {boolean} [showHidden]
|
|
15163
|
+
* @param {boolean} [returnDefaultValue]
|
|
15055
15164
|
* @param {number} [page]
|
|
15056
15165
|
* @param {number} [limit]
|
|
15057
15166
|
* @param {Date} [lastRetrieved]
|
|
@@ -15059,7 +15168,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15059
15168
|
* @throws {RequiredError}
|
|
15060
15169
|
* @memberof CountriesApi
|
|
15061
15170
|
*/
|
|
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>>;
|
|
15171
|
+
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
15172
|
/**
|
|
15064
15173
|
*
|
|
15065
15174
|
* @summary Create a country.
|
|
@@ -15074,11 +15183,12 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15074
15183
|
* @summary Get country by slug.
|
|
15075
15184
|
* @param {string} slug
|
|
15076
15185
|
* @param {string} [languageCode]
|
|
15186
|
+
* @param {boolean} [returnDefaultValue]
|
|
15077
15187
|
* @param {*} [options] Override http request option.
|
|
15078
15188
|
* @throws {RequiredError}
|
|
15079
15189
|
* @memberof CountriesApi
|
|
15080
15190
|
*/
|
|
15081
|
-
apiV1CountriesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15191
|
+
apiV1CountriesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15082
15192
|
}
|
|
15083
15193
|
/**
|
|
15084
15194
|
* DealsApi - axios parameter creator
|
|
@@ -15097,10 +15207,12 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15097
15207
|
*
|
|
15098
15208
|
* @summary Get deal.
|
|
15099
15209
|
* @param {string} dealId
|
|
15210
|
+
* @param {string} [languageCode]
|
|
15211
|
+
* @param {boolean} [returnDefaultValue]
|
|
15100
15212
|
* @param {*} [options] Override http request option.
|
|
15101
15213
|
* @throws {RequiredError}
|
|
15102
15214
|
*/
|
|
15103
|
-
apiV1DealsDealIdGet: (dealId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15215
|
+
apiV1DealsDealIdGet: (dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15104
15216
|
/**
|
|
15105
15217
|
*
|
|
15106
15218
|
* @summary Get all DealPackage.
|
|
@@ -15226,13 +15338,16 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15226
15338
|
* @param {string} [exceptHospitalId]
|
|
15227
15339
|
* @param {string} [exceptDealId]
|
|
15228
15340
|
* @param {Array<string>} [ids]
|
|
15341
|
+
* @param {string} [languageCode]
|
|
15342
|
+
* @param {boolean} [showHidden]
|
|
15343
|
+
* @param {boolean} [returnDefaultValue]
|
|
15229
15344
|
* @param {number} [page]
|
|
15230
15345
|
* @param {number} [limit]
|
|
15231
15346
|
* @param {Date} [lastRetrieved]
|
|
15232
15347
|
* @param {*} [options] Override http request option.
|
|
15233
15348
|
* @throws {RequiredError}
|
|
15234
15349
|
*/
|
|
15235
|
-
apiV1DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15350
|
+
apiV1DealsGet: (id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15236
15351
|
/**
|
|
15237
15352
|
*
|
|
15238
15353
|
* @summary Create a deal.
|
|
@@ -15245,10 +15360,12 @@ export declare const DealsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
15245
15360
|
*
|
|
15246
15361
|
* @summary Get deal by slug.
|
|
15247
15362
|
* @param {string} slug
|
|
15363
|
+
* @param {string} [languageCode]
|
|
15364
|
+
* @param {boolean} [returnDefaultValue]
|
|
15248
15365
|
* @param {*} [options] Override http request option.
|
|
15249
15366
|
* @throws {RequiredError}
|
|
15250
15367
|
*/
|
|
15251
|
-
apiV1DealsSlugGet: (slug: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15368
|
+
apiV1DealsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15252
15369
|
};
|
|
15253
15370
|
/**
|
|
15254
15371
|
* DealsApi - functional programming interface
|
|
@@ -15267,10 +15384,12 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15267
15384
|
*
|
|
15268
15385
|
* @summary Get deal.
|
|
15269
15386
|
* @param {string} dealId
|
|
15387
|
+
* @param {string} [languageCode]
|
|
15388
|
+
* @param {boolean} [returnDefaultValue]
|
|
15270
15389
|
* @param {*} [options] Override http request option.
|
|
15271
15390
|
* @throws {RequiredError}
|
|
15272
15391
|
*/
|
|
15273
|
-
apiV1DealsDealIdGet(dealId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15392
|
+
apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15274
15393
|
/**
|
|
15275
15394
|
*
|
|
15276
15395
|
* @summary Get all DealPackage.
|
|
@@ -15396,13 +15515,16 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15396
15515
|
* @param {string} [exceptHospitalId]
|
|
15397
15516
|
* @param {string} [exceptDealId]
|
|
15398
15517
|
* @param {Array<string>} [ids]
|
|
15518
|
+
* @param {string} [languageCode]
|
|
15519
|
+
* @param {boolean} [showHidden]
|
|
15520
|
+
* @param {boolean} [returnDefaultValue]
|
|
15399
15521
|
* @param {number} [page]
|
|
15400
15522
|
* @param {number} [limit]
|
|
15401
15523
|
* @param {Date} [lastRetrieved]
|
|
15402
15524
|
* @param {*} [options] Override http request option.
|
|
15403
15525
|
* @throws {RequiredError}
|
|
15404
15526
|
*/
|
|
15405
|
-
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: 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<DealsModel>>;
|
|
15527
|
+
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: 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<DealsModel>>;
|
|
15406
15528
|
/**
|
|
15407
15529
|
*
|
|
15408
15530
|
* @summary Create a deal.
|
|
@@ -15415,10 +15537,12 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15415
15537
|
*
|
|
15416
15538
|
* @summary Get deal by slug.
|
|
15417
15539
|
* @param {string} slug
|
|
15540
|
+
* @param {string} [languageCode]
|
|
15541
|
+
* @param {boolean} [returnDefaultValue]
|
|
15418
15542
|
* @param {*} [options] Override http request option.
|
|
15419
15543
|
* @throws {RequiredError}
|
|
15420
15544
|
*/
|
|
15421
|
-
apiV1DealsSlugGet(slug: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15545
|
+
apiV1DealsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15422
15546
|
};
|
|
15423
15547
|
/**
|
|
15424
15548
|
* DealsApi - factory interface
|
|
@@ -15437,10 +15561,12 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15437
15561
|
*
|
|
15438
15562
|
* @summary Get deal.
|
|
15439
15563
|
* @param {string} dealId
|
|
15564
|
+
* @param {string} [languageCode]
|
|
15565
|
+
* @param {boolean} [returnDefaultValue]
|
|
15440
15566
|
* @param {*} [options] Override http request option.
|
|
15441
15567
|
* @throws {RequiredError}
|
|
15442
15568
|
*/
|
|
15443
|
-
apiV1DealsDealIdGet(dealId: string, options?: any): AxiosPromise<DealModel>;
|
|
15569
|
+
apiV1DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DealModel>;
|
|
15444
15570
|
/**
|
|
15445
15571
|
*
|
|
15446
15572
|
* @summary Get all DealPackage.
|
|
@@ -15566,13 +15692,16 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15566
15692
|
* @param {string} [exceptHospitalId]
|
|
15567
15693
|
* @param {string} [exceptDealId]
|
|
15568
15694
|
* @param {Array<string>} [ids]
|
|
15695
|
+
* @param {string} [languageCode]
|
|
15696
|
+
* @param {boolean} [showHidden]
|
|
15697
|
+
* @param {boolean} [returnDefaultValue]
|
|
15569
15698
|
* @param {number} [page]
|
|
15570
15699
|
* @param {number} [limit]
|
|
15571
15700
|
* @param {Date} [lastRetrieved]
|
|
15572
15701
|
* @param {*} [options] Override http request option.
|
|
15573
15702
|
* @throws {RequiredError}
|
|
15574
15703
|
*/
|
|
15575
|
-
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
15704
|
+
apiV1DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, exceptHospitalId?: string | undefined, exceptDealId?: string | undefined, ids?: string[] | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<DealsModel>;
|
|
15576
15705
|
/**
|
|
15577
15706
|
*
|
|
15578
15707
|
* @summary Create a deal.
|
|
@@ -15585,10 +15714,12 @@ export declare const DealsApiFactory: (configuration?: Configuration | undefined
|
|
|
15585
15714
|
*
|
|
15586
15715
|
* @summary Get deal by slug.
|
|
15587
15716
|
* @param {string} slug
|
|
15717
|
+
* @param {string} [languageCode]
|
|
15718
|
+
* @param {boolean} [returnDefaultValue]
|
|
15588
15719
|
* @param {*} [options] Override http request option.
|
|
15589
15720
|
* @throws {RequiredError}
|
|
15590
15721
|
*/
|
|
15591
|
-
apiV1DealsSlugGet(slug: string, options?: any): AxiosPromise<DealModel>;
|
|
15722
|
+
apiV1DealsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DealModel>;
|
|
15592
15723
|
};
|
|
15593
15724
|
/**
|
|
15594
15725
|
* DealsApi - object-oriented interface
|
|
@@ -15610,11 +15741,13 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15610
15741
|
*
|
|
15611
15742
|
* @summary Get deal.
|
|
15612
15743
|
* @param {string} dealId
|
|
15744
|
+
* @param {string} [languageCode]
|
|
15745
|
+
* @param {boolean} [returnDefaultValue]
|
|
15613
15746
|
* @param {*} [options] Override http request option.
|
|
15614
15747
|
* @throws {RequiredError}
|
|
15615
15748
|
* @memberof DealsApi
|
|
15616
15749
|
*/
|
|
15617
|
-
apiV1DealsDealIdGet(dealId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15750
|
+
apiV1DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15618
15751
|
/**
|
|
15619
15752
|
*
|
|
15620
15753
|
* @summary Get all DealPackage.
|
|
@@ -15751,6 +15884,9 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15751
15884
|
* @param {string} [exceptHospitalId]
|
|
15752
15885
|
* @param {string} [exceptDealId]
|
|
15753
15886
|
* @param {Array<string>} [ids]
|
|
15887
|
+
* @param {string} [languageCode]
|
|
15888
|
+
* @param {boolean} [showHidden]
|
|
15889
|
+
* @param {boolean} [returnDefaultValue]
|
|
15754
15890
|
* @param {number} [page]
|
|
15755
15891
|
* @param {number} [limit]
|
|
15756
15892
|
* @param {Date} [lastRetrieved]
|
|
@@ -15758,7 +15894,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15758
15894
|
* @throws {RequiredError}
|
|
15759
15895
|
* @memberof DealsApi
|
|
15760
15896
|
*/
|
|
15761
|
-
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
15897
|
+
apiV1DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, exceptHospitalId?: string, exceptDealId?: string, ids?: Array<string>, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
15762
15898
|
/**
|
|
15763
15899
|
*
|
|
15764
15900
|
* @summary Create a deal.
|
|
@@ -15772,11 +15908,13 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15772
15908
|
*
|
|
15773
15909
|
* @summary Get deal by slug.
|
|
15774
15910
|
* @param {string} slug
|
|
15911
|
+
* @param {string} [languageCode]
|
|
15912
|
+
* @param {boolean} [returnDefaultValue]
|
|
15775
15913
|
* @param {*} [options] Override http request option.
|
|
15776
15914
|
* @throws {RequiredError}
|
|
15777
15915
|
* @memberof DealsApi
|
|
15778
15916
|
*/
|
|
15779
|
-
apiV1DealsSlugGet(slug: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15917
|
+
apiV1DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15780
15918
|
}
|
|
15781
15919
|
/**
|
|
15782
15920
|
* DoctorsApi - axios parameter creator
|
|
@@ -15940,10 +16078,11 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15940
16078
|
* @summary Get Doctor.
|
|
15941
16079
|
* @param {string} doctorId
|
|
15942
16080
|
* @param {string} [languageCode]
|
|
16081
|
+
* @param {boolean} [returnDefaultValue]
|
|
15943
16082
|
* @param {*} [options] Override http request option.
|
|
15944
16083
|
* @throws {RequiredError}
|
|
15945
16084
|
*/
|
|
15946
|
-
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16085
|
+
apiV1DoctorsDoctorIdGet: (doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15947
16086
|
/**
|
|
15948
16087
|
*
|
|
15949
16088
|
* @summary Get all DoctorMedias.
|
|
@@ -16110,6 +16249,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16110
16249
|
* @summary Get all Doctors.
|
|
16111
16250
|
* @param {string} [hospitalId]
|
|
16112
16251
|
* @param {string} [languageCode]
|
|
16252
|
+
* @param {boolean} [returnDefaultValue]
|
|
16113
16253
|
* @param {string} [id]
|
|
16114
16254
|
* @param {string} [fullname]
|
|
16115
16255
|
* @param {string} [email]
|
|
@@ -16123,7 +16263,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16123
16263
|
* @param {*} [options] Override http request option.
|
|
16124
16264
|
* @throws {RequiredError}
|
|
16125
16265
|
*/
|
|
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>;
|
|
16266
|
+
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
16267
|
/**
|
|
16128
16268
|
*
|
|
16129
16269
|
* @summary Create a Doctor.
|
|
@@ -16137,10 +16277,11 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16137
16277
|
* @summary Get Doctor by slug.
|
|
16138
16278
|
* @param {string} slug
|
|
16139
16279
|
* @param {string} [languageCode]
|
|
16280
|
+
* @param {boolean} [returnDefaultValue]
|
|
16140
16281
|
* @param {*} [options] Override http request option.
|
|
16141
16282
|
* @throws {RequiredError}
|
|
16142
16283
|
*/
|
|
16143
|
-
apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16284
|
+
apiV1DoctorsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
16144
16285
|
};
|
|
16145
16286
|
/**
|
|
16146
16287
|
* DoctorsApi - functional programming interface
|
|
@@ -16304,10 +16445,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16304
16445
|
* @summary Get Doctor.
|
|
16305
16446
|
* @param {string} doctorId
|
|
16306
16447
|
* @param {string} [languageCode]
|
|
16448
|
+
* @param {boolean} [returnDefaultValue]
|
|
16307
16449
|
* @param {*} [options] Override http request option.
|
|
16308
16450
|
* @throws {RequiredError}
|
|
16309
16451
|
*/
|
|
16310
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16452
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16311
16453
|
/**
|
|
16312
16454
|
*
|
|
16313
16455
|
* @summary Get all DoctorMedias.
|
|
@@ -16474,6 +16616,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16474
16616
|
* @summary Get all Doctors.
|
|
16475
16617
|
* @param {string} [hospitalId]
|
|
16476
16618
|
* @param {string} [languageCode]
|
|
16619
|
+
* @param {boolean} [returnDefaultValue]
|
|
16477
16620
|
* @param {string} [id]
|
|
16478
16621
|
* @param {string} [fullname]
|
|
16479
16622
|
* @param {string} [email]
|
|
@@ -16487,7 +16630,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16487
16630
|
* @param {*} [options] Override http request option.
|
|
16488
16631
|
* @throws {RequiredError}
|
|
16489
16632
|
*/
|
|
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>>;
|
|
16633
|
+
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
16634
|
/**
|
|
16492
16635
|
*
|
|
16493
16636
|
* @summary Create a Doctor.
|
|
@@ -16501,10 +16644,11 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16501
16644
|
* @summary Get Doctor by slug.
|
|
16502
16645
|
* @param {string} slug
|
|
16503
16646
|
* @param {string} [languageCode]
|
|
16647
|
+
* @param {boolean} [returnDefaultValue]
|
|
16504
16648
|
* @param {*} [options] Override http request option.
|
|
16505
16649
|
* @throws {RequiredError}
|
|
16506
16650
|
*/
|
|
16507
|
-
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16651
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16508
16652
|
};
|
|
16509
16653
|
/**
|
|
16510
16654
|
* DoctorsApi - factory interface
|
|
@@ -16668,10 +16812,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16668
16812
|
* @summary Get Doctor.
|
|
16669
16813
|
* @param {string} doctorId
|
|
16670
16814
|
* @param {string} [languageCode]
|
|
16815
|
+
* @param {boolean} [returnDefaultValue]
|
|
16671
16816
|
* @param {*} [options] Override http request option.
|
|
16672
16817
|
* @throws {RequiredError}
|
|
16673
16818
|
*/
|
|
16674
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16819
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16675
16820
|
/**
|
|
16676
16821
|
*
|
|
16677
16822
|
* @summary Get all DoctorMedias.
|
|
@@ -16838,6 +16983,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16838
16983
|
* @summary Get all Doctors.
|
|
16839
16984
|
* @param {string} [hospitalId]
|
|
16840
16985
|
* @param {string} [languageCode]
|
|
16986
|
+
* @param {boolean} [returnDefaultValue]
|
|
16841
16987
|
* @param {string} [id]
|
|
16842
16988
|
* @param {string} [fullname]
|
|
16843
16989
|
* @param {string} [email]
|
|
@@ -16851,7 +16997,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16851
16997
|
* @param {*} [options] Override http request option.
|
|
16852
16998
|
* @throws {RequiredError}
|
|
16853
16999
|
*/
|
|
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>;
|
|
17000
|
+
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
17001
|
/**
|
|
16856
17002
|
*
|
|
16857
17003
|
* @summary Create a Doctor.
|
|
@@ -16865,10 +17011,11 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16865
17011
|
* @summary Get Doctor by slug.
|
|
16866
17012
|
* @param {string} slug
|
|
16867
17013
|
* @param {string} [languageCode]
|
|
17014
|
+
* @param {boolean} [returnDefaultValue]
|
|
16868
17015
|
* @param {*} [options] Override http request option.
|
|
16869
17016
|
* @throws {RequiredError}
|
|
16870
17017
|
*/
|
|
16871
|
-
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
17018
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<DoctorModel>;
|
|
16872
17019
|
};
|
|
16873
17020
|
/**
|
|
16874
17021
|
* DoctorsApi - object-oriented interface
|
|
@@ -17049,11 +17196,12 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17049
17196
|
* @summary Get Doctor.
|
|
17050
17197
|
* @param {string} doctorId
|
|
17051
17198
|
* @param {string} [languageCode]
|
|
17199
|
+
* @param {boolean} [returnDefaultValue]
|
|
17052
17200
|
* @param {*} [options] Override http request option.
|
|
17053
17201
|
* @throws {RequiredError}
|
|
17054
17202
|
* @memberof DoctorsApi
|
|
17055
17203
|
*/
|
|
17056
|
-
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
17204
|
+
apiV1DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
17057
17205
|
/**
|
|
17058
17206
|
*
|
|
17059
17207
|
* @summary Get all DoctorMedias.
|
|
@@ -17236,6 +17384,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17236
17384
|
* @summary Get all Doctors.
|
|
17237
17385
|
* @param {string} [hospitalId]
|
|
17238
17386
|
* @param {string} [languageCode]
|
|
17387
|
+
* @param {boolean} [returnDefaultValue]
|
|
17239
17388
|
* @param {string} [id]
|
|
17240
17389
|
* @param {string} [fullname]
|
|
17241
17390
|
* @param {string} [email]
|
|
@@ -17250,7 +17399,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17250
17399
|
* @throws {RequiredError}
|
|
17251
17400
|
* @memberof DoctorsApi
|
|
17252
17401
|
*/
|
|
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>>;
|
|
17402
|
+
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
17403
|
/**
|
|
17255
17404
|
*
|
|
17256
17405
|
* @summary Create a Doctor.
|
|
@@ -17265,11 +17414,12 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17265
17414
|
* @summary Get Doctor by slug.
|
|
17266
17415
|
* @param {string} slug
|
|
17267
17416
|
* @param {string} [languageCode]
|
|
17417
|
+
* @param {boolean} [returnDefaultValue]
|
|
17268
17418
|
* @param {*} [options] Override http request option.
|
|
17269
17419
|
* @throws {RequiredError}
|
|
17270
17420
|
* @memberof DoctorsApi
|
|
17271
17421
|
*/
|
|
17272
|
-
apiV1DoctorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
17422
|
+
apiV1DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
17273
17423
|
}
|
|
17274
17424
|
/**
|
|
17275
17425
|
* EmailMarketingsApi - axios parameter creator
|
|
@@ -18318,13 +18468,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18318
18468
|
* @param {boolean} [showHidden]
|
|
18319
18469
|
* @param {string} [languageCode]
|
|
18320
18470
|
* @param {Array<string>} [ids]
|
|
18471
|
+
* @param {boolean} [returnDefaultValue]
|
|
18321
18472
|
* @param {number} [page]
|
|
18322
18473
|
* @param {number} [limit]
|
|
18323
18474
|
* @param {Date} [lastRetrieved]
|
|
18324
18475
|
* @param {*} [options] Override http request option.
|
|
18325
18476
|
* @throws {RequiredError}
|
|
18326
18477
|
*/
|
|
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>;
|
|
18478
|
+
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
18479
|
/**
|
|
18329
18480
|
*
|
|
18330
18481
|
* @summary Delete HospitalAccreditation.
|
|
@@ -18529,10 +18680,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18529
18680
|
* @summary Get Hospital.
|
|
18530
18681
|
* @param {string} hospitalId
|
|
18531
18682
|
* @param {string} [languageCode]
|
|
18683
|
+
* @param {boolean} [returnDefaultValue]
|
|
18532
18684
|
* @param {*} [options] Override http request option.
|
|
18533
18685
|
* @throws {RequiredError}
|
|
18534
18686
|
*/
|
|
18535
|
-
apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18687
|
+
apiV1HospitalsHospitalIdGet: (hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18536
18688
|
/**
|
|
18537
18689
|
*
|
|
18538
18690
|
* @summary Get all HospitalMedias.
|
|
@@ -18665,13 +18817,14 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18665
18817
|
* @param {Procedure} [procedure]
|
|
18666
18818
|
* @param {Date} [created]
|
|
18667
18819
|
* @param {string} [languageCode]
|
|
18820
|
+
* @param {boolean} [returnDefaultValue]
|
|
18668
18821
|
* @param {number} [page]
|
|
18669
18822
|
* @param {number} [limit]
|
|
18670
18823
|
* @param {Date} [lastRetrieved]
|
|
18671
18824
|
* @param {*} [options] Override http request option.
|
|
18672
18825
|
* @throws {RequiredError}
|
|
18673
18826
|
*/
|
|
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>;
|
|
18827
|
+
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
18828
|
/**
|
|
18676
18829
|
*
|
|
18677
18830
|
* @summary Create HospitalService.
|
|
@@ -18699,10 +18852,11 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18699
18852
|
* @param {string} specialtyId
|
|
18700
18853
|
* @param {string} serviceId
|
|
18701
18854
|
* @param {string} [languageCode]
|
|
18855
|
+
* @param {boolean} [returnDefaultValue]
|
|
18702
18856
|
* @param {*} [options] Override http request option.
|
|
18703
18857
|
* @throws {RequiredError}
|
|
18704
18858
|
*/
|
|
18705
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18859
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet: (hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18706
18860
|
/**
|
|
18707
18861
|
*
|
|
18708
18862
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -18798,22 +18952,24 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18798
18952
|
* @param {boolean} [showHidden]
|
|
18799
18953
|
* @param {string} [languageCode]
|
|
18800
18954
|
* @param {Array<string>} [ids]
|
|
18955
|
+
* @param {boolean} [returnDefaultValue]
|
|
18801
18956
|
* @param {number} [page]
|
|
18802
18957
|
* @param {number} [limit]
|
|
18803
18958
|
* @param {Date} [lastRetrieved]
|
|
18804
18959
|
* @param {*} [options] Override http request option.
|
|
18805
18960
|
* @throws {RequiredError}
|
|
18806
18961
|
*/
|
|
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>;
|
|
18962
|
+
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
18963
|
/**
|
|
18809
18964
|
*
|
|
18810
18965
|
* @summary Get Hospital by slug.
|
|
18811
18966
|
* @param {string} slug
|
|
18812
18967
|
* @param {string} [languageCode]
|
|
18968
|
+
* @param {boolean} [returnDefaultValue]
|
|
18813
18969
|
* @param {*} [options] Override http request option.
|
|
18814
18970
|
* @throws {RequiredError}
|
|
18815
18971
|
*/
|
|
18816
|
-
apiV1HospitalsSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18972
|
+
apiV1HospitalsSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
18817
18973
|
};
|
|
18818
18974
|
/**
|
|
18819
18975
|
* HospitalsApi - functional programming interface
|
|
@@ -18836,13 +18992,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
18836
18992
|
* @param {boolean} [showHidden]
|
|
18837
18993
|
* @param {string} [languageCode]
|
|
18838
18994
|
* @param {Array<string>} [ids]
|
|
18995
|
+
* @param {boolean} [returnDefaultValue]
|
|
18839
18996
|
* @param {number} [page]
|
|
18840
18997
|
* @param {number} [limit]
|
|
18841
18998
|
* @param {Date} [lastRetrieved]
|
|
18842
18999
|
* @param {*} [options] Override http request option.
|
|
18843
19000
|
* @throws {RequiredError}
|
|
18844
19001
|
*/
|
|
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>>;
|
|
19002
|
+
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
19003
|
/**
|
|
18847
19004
|
*
|
|
18848
19005
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19047,10 +19204,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19047
19204
|
* @summary Get Hospital.
|
|
19048
19205
|
* @param {string} hospitalId
|
|
19049
19206
|
* @param {string} [languageCode]
|
|
19207
|
+
* @param {boolean} [returnDefaultValue]
|
|
19050
19208
|
* @param {*} [options] Override http request option.
|
|
19051
19209
|
* @throws {RequiredError}
|
|
19052
19210
|
*/
|
|
19053
|
-
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
19211
|
+
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
19054
19212
|
/**
|
|
19055
19213
|
*
|
|
19056
19214
|
* @summary Get all HospitalMedias.
|
|
@@ -19183,13 +19341,14 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19183
19341
|
* @param {Procedure} [procedure]
|
|
19184
19342
|
* @param {Date} [created]
|
|
19185
19343
|
* @param {string} [languageCode]
|
|
19344
|
+
* @param {boolean} [returnDefaultValue]
|
|
19186
19345
|
* @param {number} [page]
|
|
19187
19346
|
* @param {number} [limit]
|
|
19188
19347
|
* @param {Date} [lastRetrieved]
|
|
19189
19348
|
* @param {*} [options] Override http request option.
|
|
19190
19349
|
* @throws {RequiredError}
|
|
19191
19350
|
*/
|
|
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>>;
|
|
19351
|
+
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
19352
|
/**
|
|
19194
19353
|
*
|
|
19195
19354
|
* @summary Create HospitalService.
|
|
@@ -19217,10 +19376,11 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19217
19376
|
* @param {string} specialtyId
|
|
19218
19377
|
* @param {string} serviceId
|
|
19219
19378
|
* @param {string} [languageCode]
|
|
19379
|
+
* @param {boolean} [returnDefaultValue]
|
|
19220
19380
|
* @param {*} [options] Override http request option.
|
|
19221
19381
|
* @throws {RequiredError}
|
|
19222
19382
|
*/
|
|
19223
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
19383
|
+
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
19384
|
/**
|
|
19225
19385
|
*
|
|
19226
19386
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -19316,22 +19476,24 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
19316
19476
|
* @param {boolean} [showHidden]
|
|
19317
19477
|
* @param {string} [languageCode]
|
|
19318
19478
|
* @param {Array<string>} [ids]
|
|
19479
|
+
* @param {boolean} [returnDefaultValue]
|
|
19319
19480
|
* @param {number} [page]
|
|
19320
19481
|
* @param {number} [limit]
|
|
19321
19482
|
* @param {Date} [lastRetrieved]
|
|
19322
19483
|
* @param {*} [options] Override http request option.
|
|
19323
19484
|
* @throws {RequiredError}
|
|
19324
19485
|
*/
|
|
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>>;
|
|
19486
|
+
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
19487
|
/**
|
|
19327
19488
|
*
|
|
19328
19489
|
* @summary Get Hospital by slug.
|
|
19329
19490
|
* @param {string} slug
|
|
19330
19491
|
* @param {string} [languageCode]
|
|
19492
|
+
* @param {boolean} [returnDefaultValue]
|
|
19331
19493
|
* @param {*} [options] Override http request option.
|
|
19332
19494
|
* @throws {RequiredError}
|
|
19333
19495
|
*/
|
|
19334
|
-
apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
19496
|
+
apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
19335
19497
|
};
|
|
19336
19498
|
/**
|
|
19337
19499
|
* HospitalsApi - factory interface
|
|
@@ -19354,13 +19516,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19354
19516
|
* @param {boolean} [showHidden]
|
|
19355
19517
|
* @param {string} [languageCode]
|
|
19356
19518
|
* @param {Array<string>} [ids]
|
|
19519
|
+
* @param {boolean} [returnDefaultValue]
|
|
19357
19520
|
* @param {number} [page]
|
|
19358
19521
|
* @param {number} [limit]
|
|
19359
19522
|
* @param {Date} [lastRetrieved]
|
|
19360
19523
|
* @param {*} [options] Override http request option.
|
|
19361
19524
|
* @throws {RequiredError}
|
|
19362
19525
|
*/
|
|
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>;
|
|
19526
|
+
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
19527
|
/**
|
|
19365
19528
|
*
|
|
19366
19529
|
* @summary Delete HospitalAccreditation.
|
|
@@ -19565,10 +19728,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19565
19728
|
* @summary Get Hospital.
|
|
19566
19729
|
* @param {string} hospitalId
|
|
19567
19730
|
* @param {string} [languageCode]
|
|
19731
|
+
* @param {boolean} [returnDefaultValue]
|
|
19568
19732
|
* @param {*} [options] Override http request option.
|
|
19569
19733
|
* @throws {RequiredError}
|
|
19570
19734
|
*/
|
|
19571
|
-
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
19735
|
+
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
19572
19736
|
/**
|
|
19573
19737
|
*
|
|
19574
19738
|
* @summary Get all HospitalMedias.
|
|
@@ -19701,13 +19865,14 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19701
19865
|
* @param {Procedure} [procedure]
|
|
19702
19866
|
* @param {Date} [created]
|
|
19703
19867
|
* @param {string} [languageCode]
|
|
19868
|
+
* @param {boolean} [returnDefaultValue]
|
|
19704
19869
|
* @param {number} [page]
|
|
19705
19870
|
* @param {number} [limit]
|
|
19706
19871
|
* @param {Date} [lastRetrieved]
|
|
19707
19872
|
* @param {*} [options] Override http request option.
|
|
19708
19873
|
* @throws {RequiredError}
|
|
19709
19874
|
*/
|
|
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>;
|
|
19875
|
+
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
19876
|
/**
|
|
19712
19877
|
*
|
|
19713
19878
|
* @summary Create HospitalService.
|
|
@@ -19735,10 +19900,11 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19735
19900
|
* @param {string} specialtyId
|
|
19736
19901
|
* @param {string} serviceId
|
|
19737
19902
|
* @param {string} [languageCode]
|
|
19903
|
+
* @param {boolean} [returnDefaultValue]
|
|
19738
19904
|
* @param {*} [options] Override http request option.
|
|
19739
19905
|
* @throws {RequiredError}
|
|
19740
19906
|
*/
|
|
19741
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19907
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
19742
19908
|
/**
|
|
19743
19909
|
*
|
|
19744
19910
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -19834,22 +20000,24 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
19834
20000
|
* @param {boolean} [showHidden]
|
|
19835
20001
|
* @param {string} [languageCode]
|
|
19836
20002
|
* @param {Array<string>} [ids]
|
|
20003
|
+
* @param {boolean} [returnDefaultValue]
|
|
19837
20004
|
* @param {number} [page]
|
|
19838
20005
|
* @param {number} [limit]
|
|
19839
20006
|
* @param {Date} [lastRetrieved]
|
|
19840
20007
|
* @param {*} [options] Override http request option.
|
|
19841
20008
|
* @throws {RequiredError}
|
|
19842
20009
|
*/
|
|
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>;
|
|
20010
|
+
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
20011
|
/**
|
|
19845
20012
|
*
|
|
19846
20013
|
* @summary Get Hospital by slug.
|
|
19847
20014
|
* @param {string} slug
|
|
19848
20015
|
* @param {string} [languageCode]
|
|
20016
|
+
* @param {boolean} [returnDefaultValue]
|
|
19849
20017
|
* @param {*} [options] Override http request option.
|
|
19850
20018
|
* @throws {RequiredError}
|
|
19851
20019
|
*/
|
|
19852
|
-
apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
20020
|
+
apiV1HospitalsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalModel>;
|
|
19853
20021
|
};
|
|
19854
20022
|
/**
|
|
19855
20023
|
* HospitalsApi - object-oriented interface
|
|
@@ -19874,6 +20042,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
19874
20042
|
* @param {boolean} [showHidden]
|
|
19875
20043
|
* @param {string} [languageCode]
|
|
19876
20044
|
* @param {Array<string>} [ids]
|
|
20045
|
+
* @param {boolean} [returnDefaultValue]
|
|
19877
20046
|
* @param {number} [page]
|
|
19878
20047
|
* @param {number} [limit]
|
|
19879
20048
|
* @param {Date} [lastRetrieved]
|
|
@@ -19881,7 +20050,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
19881
20050
|
* @throws {RequiredError}
|
|
19882
20051
|
* @memberof HospitalsApi
|
|
19883
20052
|
*/
|
|
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>>;
|
|
20053
|
+
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
20054
|
/**
|
|
19886
20055
|
*
|
|
19887
20056
|
* @summary Delete HospitalAccreditation.
|
|
@@ -20105,11 +20274,12 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20105
20274
|
* @summary Get Hospital.
|
|
20106
20275
|
* @param {string} hospitalId
|
|
20107
20276
|
* @param {string} [languageCode]
|
|
20277
|
+
* @param {boolean} [returnDefaultValue]
|
|
20108
20278
|
* @param {*} [options] Override http request option.
|
|
20109
20279
|
* @throws {RequiredError}
|
|
20110
20280
|
* @memberof HospitalsApi
|
|
20111
20281
|
*/
|
|
20112
|
-
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
20282
|
+
apiV1HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
20113
20283
|
/**
|
|
20114
20284
|
*
|
|
20115
20285
|
* @summary Get all HospitalMedias.
|
|
@@ -20253,6 +20423,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20253
20423
|
* @param {Procedure} [procedure]
|
|
20254
20424
|
* @param {Date} [created]
|
|
20255
20425
|
* @param {string} [languageCode]
|
|
20426
|
+
* @param {boolean} [returnDefaultValue]
|
|
20256
20427
|
* @param {number} [page]
|
|
20257
20428
|
* @param {number} [limit]
|
|
20258
20429
|
* @param {Date} [lastRetrieved]
|
|
@@ -20260,7 +20431,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20260
20431
|
* @throws {RequiredError}
|
|
20261
20432
|
* @memberof HospitalsApi
|
|
20262
20433
|
*/
|
|
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>>;
|
|
20434
|
+
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
20435
|
/**
|
|
20265
20436
|
*
|
|
20266
20437
|
* @summary Create HospitalService.
|
|
@@ -20290,11 +20461,12 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20290
20461
|
* @param {string} specialtyId
|
|
20291
20462
|
* @param {string} serviceId
|
|
20292
20463
|
* @param {string} [languageCode]
|
|
20464
|
+
* @param {boolean} [returnDefaultValue]
|
|
20293
20465
|
* @param {*} [options] Override http request option.
|
|
20294
20466
|
* @throws {RequiredError}
|
|
20295
20467
|
* @memberof HospitalsApi
|
|
20296
20468
|
*/
|
|
20297
|
-
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
20469
|
+
apiV1HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
20298
20470
|
/**
|
|
20299
20471
|
*
|
|
20300
20472
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -20397,6 +20569,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20397
20569
|
* @param {boolean} [showHidden]
|
|
20398
20570
|
* @param {string} [languageCode]
|
|
20399
20571
|
* @param {Array<string>} [ids]
|
|
20572
|
+
* @param {boolean} [returnDefaultValue]
|
|
20400
20573
|
* @param {number} [page]
|
|
20401
20574
|
* @param {number} [limit]
|
|
20402
20575
|
* @param {Date} [lastRetrieved]
|
|
@@ -20404,17 +20577,18 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
20404
20577
|
* @throws {RequiredError}
|
|
20405
20578
|
* @memberof HospitalsApi
|
|
20406
20579
|
*/
|
|
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>>;
|
|
20580
|
+
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
20581
|
/**
|
|
20409
20582
|
*
|
|
20410
20583
|
* @summary Get Hospital by slug.
|
|
20411
20584
|
* @param {string} slug
|
|
20412
20585
|
* @param {string} [languageCode]
|
|
20586
|
+
* @param {boolean} [returnDefaultValue]
|
|
20413
20587
|
* @param {*} [options] Override http request option.
|
|
20414
20588
|
* @throws {RequiredError}
|
|
20415
20589
|
* @memberof HospitalsApi
|
|
20416
20590
|
*/
|
|
20417
|
-
apiV1HospitalsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
20591
|
+
apiV1HospitalsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
20418
20592
|
}
|
|
20419
20593
|
/**
|
|
20420
20594
|
* ImagesApi - axios parameter creator
|
|
@@ -22151,31 +22325,34 @@ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
22151
22325
|
* @param {Procedure} [procedure]
|
|
22152
22326
|
* @param {Date} [created]
|
|
22153
22327
|
* @param {string} [languageCode]
|
|
22328
|
+
* @param {boolean} [returnDefaultValue]
|
|
22154
22329
|
* @param {number} [page]
|
|
22155
22330
|
* @param {number} [limit]
|
|
22156
22331
|
* @param {Date} [lastRetrieved]
|
|
22157
22332
|
* @param {*} [options] Override http request option.
|
|
22158
22333
|
* @throws {RequiredError}
|
|
22159
22334
|
*/
|
|
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>;
|
|
22335
|
+
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
22336
|
/**
|
|
22162
22337
|
*
|
|
22163
22338
|
* @summary Get HospitalService.
|
|
22164
22339
|
* @param {string} serviceId
|
|
22165
22340
|
* @param {string} [languageCode]
|
|
22341
|
+
* @param {boolean} [returnDefaultValue]
|
|
22166
22342
|
* @param {*} [options] Override http request option.
|
|
22167
22343
|
* @throws {RequiredError}
|
|
22168
22344
|
*/
|
|
22169
|
-
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22345
|
+
apiV1ServicesServiceIdGet: (serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22170
22346
|
/**
|
|
22171
22347
|
*
|
|
22172
22348
|
* @summary Get HospitalService by slug.
|
|
22173
22349
|
* @param {string} slug
|
|
22174
22350
|
* @param {string} [languageCode]
|
|
22351
|
+
* @param {boolean} [returnDefaultValue]
|
|
22175
22352
|
* @param {*} [options] Override http request option.
|
|
22176
22353
|
* @throws {RequiredError}
|
|
22177
22354
|
*/
|
|
22178
|
-
apiV1ServicesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22355
|
+
apiV1ServicesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22179
22356
|
};
|
|
22180
22357
|
/**
|
|
22181
22358
|
* ServicesApi - functional programming interface
|
|
@@ -22200,31 +22377,34 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
22200
22377
|
* @param {Procedure} [procedure]
|
|
22201
22378
|
* @param {Date} [created]
|
|
22202
22379
|
* @param {string} [languageCode]
|
|
22380
|
+
* @param {boolean} [returnDefaultValue]
|
|
22203
22381
|
* @param {number} [page]
|
|
22204
22382
|
* @param {number} [limit]
|
|
22205
22383
|
* @param {Date} [lastRetrieved]
|
|
22206
22384
|
* @param {*} [options] Override http request option.
|
|
22207
22385
|
* @throws {RequiredError}
|
|
22208
22386
|
*/
|
|
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>>;
|
|
22387
|
+
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
22388
|
/**
|
|
22211
22389
|
*
|
|
22212
22390
|
* @summary Get HospitalService.
|
|
22213
22391
|
* @param {string} serviceId
|
|
22214
22392
|
* @param {string} [languageCode]
|
|
22393
|
+
* @param {boolean} [returnDefaultValue]
|
|
22215
22394
|
* @param {*} [options] Override http request option.
|
|
22216
22395
|
* @throws {RequiredError}
|
|
22217
22396
|
*/
|
|
22218
|
-
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22397
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22219
22398
|
/**
|
|
22220
22399
|
*
|
|
22221
22400
|
* @summary Get HospitalService by slug.
|
|
22222
22401
|
* @param {string} slug
|
|
22223
22402
|
* @param {string} [languageCode]
|
|
22403
|
+
* @param {boolean} [returnDefaultValue]
|
|
22224
22404
|
* @param {*} [options] Override http request option.
|
|
22225
22405
|
* @throws {RequiredError}
|
|
22226
22406
|
*/
|
|
22227
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22407
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
22228
22408
|
};
|
|
22229
22409
|
/**
|
|
22230
22410
|
* ServicesApi - factory interface
|
|
@@ -22249,31 +22429,34 @@ export declare const ServicesApiFactory: (configuration?: Configuration | undefi
|
|
|
22249
22429
|
* @param {Procedure} [procedure]
|
|
22250
22430
|
* @param {Date} [created]
|
|
22251
22431
|
* @param {string} [languageCode]
|
|
22432
|
+
* @param {boolean} [returnDefaultValue]
|
|
22252
22433
|
* @param {number} [page]
|
|
22253
22434
|
* @param {number} [limit]
|
|
22254
22435
|
* @param {Date} [lastRetrieved]
|
|
22255
22436
|
* @param {*} [options] Override http request option.
|
|
22256
22437
|
* @throws {RequiredError}
|
|
22257
22438
|
*/
|
|
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>;
|
|
22439
|
+
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
22440
|
/**
|
|
22260
22441
|
*
|
|
22261
22442
|
* @summary Get HospitalService.
|
|
22262
22443
|
* @param {string} serviceId
|
|
22263
22444
|
* @param {string} [languageCode]
|
|
22445
|
+
* @param {boolean} [returnDefaultValue]
|
|
22264
22446
|
* @param {*} [options] Override http request option.
|
|
22265
22447
|
* @throws {RequiredError}
|
|
22266
22448
|
*/
|
|
22267
|
-
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22449
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22268
22450
|
/**
|
|
22269
22451
|
*
|
|
22270
22452
|
* @summary Get HospitalService by slug.
|
|
22271
22453
|
* @param {string} slug
|
|
22272
22454
|
* @param {string} [languageCode]
|
|
22455
|
+
* @param {boolean} [returnDefaultValue]
|
|
22273
22456
|
* @param {*} [options] Override http request option.
|
|
22274
22457
|
* @throws {RequiredError}
|
|
22275
22458
|
*/
|
|
22276
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22459
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<HospitalServiceModel>;
|
|
22277
22460
|
};
|
|
22278
22461
|
/**
|
|
22279
22462
|
* ServicesApi - object-oriented interface
|
|
@@ -22300,6 +22483,7 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22300
22483
|
* @param {Procedure} [procedure]
|
|
22301
22484
|
* @param {Date} [created]
|
|
22302
22485
|
* @param {string} [languageCode]
|
|
22486
|
+
* @param {boolean} [returnDefaultValue]
|
|
22303
22487
|
* @param {number} [page]
|
|
22304
22488
|
* @param {number} [limit]
|
|
22305
22489
|
* @param {Date} [lastRetrieved]
|
|
@@ -22307,27 +22491,29 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
22307
22491
|
* @throws {RequiredError}
|
|
22308
22492
|
* @memberof ServicesApi
|
|
22309
22493
|
*/
|
|
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>>;
|
|
22494
|
+
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
22495
|
/**
|
|
22312
22496
|
*
|
|
22313
22497
|
* @summary Get HospitalService.
|
|
22314
22498
|
* @param {string} serviceId
|
|
22315
22499
|
* @param {string} [languageCode]
|
|
22500
|
+
* @param {boolean} [returnDefaultValue]
|
|
22316
22501
|
* @param {*} [options] Override http request option.
|
|
22317
22502
|
* @throws {RequiredError}
|
|
22318
22503
|
* @memberof ServicesApi
|
|
22319
22504
|
*/
|
|
22320
|
-
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22505
|
+
apiV1ServicesServiceIdGet(serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22321
22506
|
/**
|
|
22322
22507
|
*
|
|
22323
22508
|
* @summary Get HospitalService by slug.
|
|
22324
22509
|
* @param {string} slug
|
|
22325
22510
|
* @param {string} [languageCode]
|
|
22511
|
+
* @param {boolean} [returnDefaultValue]
|
|
22326
22512
|
* @param {*} [options] Override http request option.
|
|
22327
22513
|
* @throws {RequiredError}
|
|
22328
22514
|
* @memberof ServicesApi
|
|
22329
22515
|
*/
|
|
22330
|
-
apiV1ServicesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22516
|
+
apiV1ServicesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
22331
22517
|
}
|
|
22332
22518
|
/**
|
|
22333
22519
|
* ServicesCategoriesApi - axios parameter creator
|
|
@@ -22564,13 +22750,14 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22564
22750
|
* @param {Date} [created]
|
|
22565
22751
|
* @param {string} [languageCode]
|
|
22566
22752
|
* @param {Array<string>} [ids]
|
|
22753
|
+
* @param {boolean} [returnDefaultValue]
|
|
22567
22754
|
* @param {number} [page]
|
|
22568
22755
|
* @param {number} [limit]
|
|
22569
22756
|
* @param {Date} [lastRetrieved]
|
|
22570
22757
|
* @param {*} [options] Override http request option.
|
|
22571
22758
|
* @throws {RequiredError}
|
|
22572
22759
|
*/
|
|
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>;
|
|
22760
|
+
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
22761
|
/**
|
|
22575
22762
|
*
|
|
22576
22763
|
* @summary Create a Specialty.
|
|
@@ -22584,10 +22771,11 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22584
22771
|
* @summary Get Specialty by slug.
|
|
22585
22772
|
* @param {string} slug
|
|
22586
22773
|
* @param {string} [languageCode]
|
|
22774
|
+
* @param {boolean} [returnDefaultValue]
|
|
22587
22775
|
* @param {*} [options] Override http request option.
|
|
22588
22776
|
* @throws {RequiredError}
|
|
22589
22777
|
*/
|
|
22590
|
-
apiV1SpecialtiesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22778
|
+
apiV1SpecialtiesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22591
22779
|
/**
|
|
22592
22780
|
*
|
|
22593
22781
|
* @summary Delete Specialty.
|
|
@@ -22601,10 +22789,11 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
22601
22789
|
* @summary Get Specialty.
|
|
22602
22790
|
* @param {string} specialtyId
|
|
22603
22791
|
* @param {string} [languageCode]
|
|
22792
|
+
* @param {boolean} [returnDefaultValue]
|
|
22604
22793
|
* @param {*} [options] Override http request option.
|
|
22605
22794
|
* @throws {RequiredError}
|
|
22606
22795
|
*/
|
|
22607
|
-
apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22796
|
+
apiV1SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
22608
22797
|
/**
|
|
22609
22798
|
*
|
|
22610
22799
|
* @summary Get all SpecialtyMedias.
|
|
@@ -22681,13 +22870,14 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22681
22870
|
* @param {Date} [created]
|
|
22682
22871
|
* @param {string} [languageCode]
|
|
22683
22872
|
* @param {Array<string>} [ids]
|
|
22873
|
+
* @param {boolean} [returnDefaultValue]
|
|
22684
22874
|
* @param {number} [page]
|
|
22685
22875
|
* @param {number} [limit]
|
|
22686
22876
|
* @param {Date} [lastRetrieved]
|
|
22687
22877
|
* @param {*} [options] Override http request option.
|
|
22688
22878
|
* @throws {RequiredError}
|
|
22689
22879
|
*/
|
|
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>>;
|
|
22880
|
+
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
22881
|
/**
|
|
22692
22882
|
*
|
|
22693
22883
|
* @summary Create a Specialty.
|
|
@@ -22701,10 +22891,11 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22701
22891
|
* @summary Get Specialty by slug.
|
|
22702
22892
|
* @param {string} slug
|
|
22703
22893
|
* @param {string} [languageCode]
|
|
22894
|
+
* @param {boolean} [returnDefaultValue]
|
|
22704
22895
|
* @param {*} [options] Override http request option.
|
|
22705
22896
|
* @throws {RequiredError}
|
|
22706
22897
|
*/
|
|
22707
|
-
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22898
|
+
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22708
22899
|
/**
|
|
22709
22900
|
*
|
|
22710
22901
|
* @summary Delete Specialty.
|
|
@@ -22718,10 +22909,11 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
22718
22909
|
* @summary Get Specialty.
|
|
22719
22910
|
* @param {string} specialtyId
|
|
22720
22911
|
* @param {string} [languageCode]
|
|
22912
|
+
* @param {boolean} [returnDefaultValue]
|
|
22721
22913
|
* @param {*} [options] Override http request option.
|
|
22722
22914
|
* @throws {RequiredError}
|
|
22723
22915
|
*/
|
|
22724
|
-
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22916
|
+
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
22725
22917
|
/**
|
|
22726
22918
|
*
|
|
22727
22919
|
* @summary Get all SpecialtyMedias.
|
|
@@ -22798,13 +22990,14 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
22798
22990
|
* @param {Date} [created]
|
|
22799
22991
|
* @param {string} [languageCode]
|
|
22800
22992
|
* @param {Array<string>} [ids]
|
|
22993
|
+
* @param {boolean} [returnDefaultValue]
|
|
22801
22994
|
* @param {number} [page]
|
|
22802
22995
|
* @param {number} [limit]
|
|
22803
22996
|
* @param {Date} [lastRetrieved]
|
|
22804
22997
|
* @param {*} [options] Override http request option.
|
|
22805
22998
|
* @throws {RequiredError}
|
|
22806
22999
|
*/
|
|
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>;
|
|
23000
|
+
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
23001
|
/**
|
|
22809
23002
|
*
|
|
22810
23003
|
* @summary Create a Specialty.
|
|
@@ -22818,10 +23011,11 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
22818
23011
|
* @summary Get Specialty by slug.
|
|
22819
23012
|
* @param {string} slug
|
|
22820
23013
|
* @param {string} [languageCode]
|
|
23014
|
+
* @param {boolean} [returnDefaultValue]
|
|
22821
23015
|
* @param {*} [options] Override http request option.
|
|
22822
23016
|
* @throws {RequiredError}
|
|
22823
23017
|
*/
|
|
22824
|
-
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
23018
|
+
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
22825
23019
|
/**
|
|
22826
23020
|
*
|
|
22827
23021
|
* @summary Delete Specialty.
|
|
@@ -22835,10 +23029,11 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration | und
|
|
|
22835
23029
|
* @summary Get Specialty.
|
|
22836
23030
|
* @param {string} specialtyId
|
|
22837
23031
|
* @param {string} [languageCode]
|
|
23032
|
+
* @param {boolean} [returnDefaultValue]
|
|
22838
23033
|
* @param {*} [options] Override http request option.
|
|
22839
23034
|
* @throws {RequiredError}
|
|
22840
23035
|
*/
|
|
22841
|
-
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
23036
|
+
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyModel>;
|
|
22842
23037
|
/**
|
|
22843
23038
|
*
|
|
22844
23039
|
* @summary Get all SpecialtyMedias.
|
|
@@ -22917,6 +23112,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22917
23112
|
* @param {Date} [created]
|
|
22918
23113
|
* @param {string} [languageCode]
|
|
22919
23114
|
* @param {Array<string>} [ids]
|
|
23115
|
+
* @param {boolean} [returnDefaultValue]
|
|
22920
23116
|
* @param {number} [page]
|
|
22921
23117
|
* @param {number} [limit]
|
|
22922
23118
|
* @param {Date} [lastRetrieved]
|
|
@@ -22924,7 +23120,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22924
23120
|
* @throws {RequiredError}
|
|
22925
23121
|
* @memberof SpecialtiesApi
|
|
22926
23122
|
*/
|
|
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>>;
|
|
23123
|
+
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
23124
|
/**
|
|
22929
23125
|
*
|
|
22930
23126
|
* @summary Create a Specialty.
|
|
@@ -22939,11 +23135,12 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22939
23135
|
* @summary Get Specialty by slug.
|
|
22940
23136
|
* @param {string} slug
|
|
22941
23137
|
* @param {string} [languageCode]
|
|
23138
|
+
* @param {boolean} [returnDefaultValue]
|
|
22942
23139
|
* @param {*} [options] Override http request option.
|
|
22943
23140
|
* @throws {RequiredError}
|
|
22944
23141
|
* @memberof SpecialtiesApi
|
|
22945
23142
|
*/
|
|
22946
|
-
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
23143
|
+
apiV1SpecialtiesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
22947
23144
|
/**
|
|
22948
23145
|
*
|
|
22949
23146
|
* @summary Delete Specialty.
|
|
@@ -22958,11 +23155,12 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
22958
23155
|
* @summary Get Specialty.
|
|
22959
23156
|
* @param {string} specialtyId
|
|
22960
23157
|
* @param {string} [languageCode]
|
|
23158
|
+
* @param {boolean} [returnDefaultValue]
|
|
22961
23159
|
* @param {*} [options] Override http request option.
|
|
22962
23160
|
* @throws {RequiredError}
|
|
22963
23161
|
* @memberof SpecialtiesApi
|
|
22964
23162
|
*/
|
|
22965
|
-
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
23163
|
+
apiV1SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
22966
23164
|
/**
|
|
22967
23165
|
*
|
|
22968
23166
|
* @summary Get all SpecialtyMedias.
|
|
@@ -23046,13 +23244,14 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23046
23244
|
* @param {string} [languageCode]
|
|
23047
23245
|
* @param {Array<string>} [ids]
|
|
23048
23246
|
* @param {string} [specialtyTypeCategoryId]
|
|
23247
|
+
* @param {boolean} [returnDefaultValue]
|
|
23049
23248
|
* @param {number} [page]
|
|
23050
23249
|
* @param {number} [limit]
|
|
23051
23250
|
* @param {Date} [lastRetrieved]
|
|
23052
23251
|
* @param {*} [options] Override http request option.
|
|
23053
23252
|
* @throws {RequiredError}
|
|
23054
23253
|
*/
|
|
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>;
|
|
23254
|
+
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
23255
|
/**
|
|
23057
23256
|
*
|
|
23058
23257
|
* @summary Create a Department.
|
|
@@ -23061,15 +23260,36 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23061
23260
|
* @throws {RequiredError}
|
|
23062
23261
|
*/
|
|
23063
23262
|
apiV1SpecialtytypesPost: (createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23263
|
+
/**
|
|
23264
|
+
*
|
|
23265
|
+
* @summary Get all Hospitals.
|
|
23266
|
+
* @param {string} [id]
|
|
23267
|
+
* @param {string} [name]
|
|
23268
|
+
* @param {string} [description]
|
|
23269
|
+
* @param {MarketingType} [marketingType]
|
|
23270
|
+
* @param {string} [hospitalId]
|
|
23271
|
+
* @param {Date} [created]
|
|
23272
|
+
* @param {string} [languageCode]
|
|
23273
|
+
* @param {Array<string>} [ids]
|
|
23274
|
+
* @param {string} [specialtyTypeCategoryId]
|
|
23275
|
+
* @param {boolean} [returnDefaultValue]
|
|
23276
|
+
* @param {number} [page]
|
|
23277
|
+
* @param {number} [limit]
|
|
23278
|
+
* @param {Date} [lastRetrieved]
|
|
23279
|
+
* @param {*} [options] Override http request option.
|
|
23280
|
+
* @throws {RequiredError}
|
|
23281
|
+
*/
|
|
23282
|
+
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
23283
|
/**
|
|
23065
23284
|
*
|
|
23066
23285
|
* @summary Get Department by slug.
|
|
23067
23286
|
* @param {string} slug
|
|
23068
23287
|
* @param {string} [languageCode]
|
|
23288
|
+
* @param {boolean} [returnDefaultValue]
|
|
23069
23289
|
* @param {*} [options] Override http request option.
|
|
23070
23290
|
* @throws {RequiredError}
|
|
23071
23291
|
*/
|
|
23072
|
-
apiV1SpecialtytypesSlugGet: (slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23292
|
+
apiV1SpecialtytypesSlugGet: (slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23073
23293
|
/**
|
|
23074
23294
|
*
|
|
23075
23295
|
* @summary Delete Department.
|
|
@@ -23083,10 +23303,11 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
23083
23303
|
* @summary Get Department.
|
|
23084
23304
|
* @param {string} specialtyTypeId
|
|
23085
23305
|
* @param {string} [languageCode]
|
|
23306
|
+
* @param {boolean} [returnDefaultValue]
|
|
23086
23307
|
* @param {*} [options] Override http request option.
|
|
23087
23308
|
* @throws {RequiredError}
|
|
23088
23309
|
*/
|
|
23089
|
-
apiV1SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23310
|
+
apiV1SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23090
23311
|
/**
|
|
23091
23312
|
*
|
|
23092
23313
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -23164,13 +23385,14 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23164
23385
|
* @param {string} [languageCode]
|
|
23165
23386
|
* @param {Array<string>} [ids]
|
|
23166
23387
|
* @param {string} [specialtyTypeCategoryId]
|
|
23388
|
+
* @param {boolean} [returnDefaultValue]
|
|
23167
23389
|
* @param {number} [page]
|
|
23168
23390
|
* @param {number} [limit]
|
|
23169
23391
|
* @param {Date} [lastRetrieved]
|
|
23170
23392
|
* @param {*} [options] Override http request option.
|
|
23171
23393
|
* @throws {RequiredError}
|
|
23172
23394
|
*/
|
|
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>>;
|
|
23395
|
+
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
23396
|
/**
|
|
23175
23397
|
*
|
|
23176
23398
|
* @summary Create a Department.
|
|
@@ -23179,15 +23401,36 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23179
23401
|
* @throws {RequiredError}
|
|
23180
23402
|
*/
|
|
23181
23403
|
apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
23404
|
+
/**
|
|
23405
|
+
*
|
|
23406
|
+
* @summary Get all Hospitals.
|
|
23407
|
+
* @param {string} [id]
|
|
23408
|
+
* @param {string} [name]
|
|
23409
|
+
* @param {string} [description]
|
|
23410
|
+
* @param {MarketingType} [marketingType]
|
|
23411
|
+
* @param {string} [hospitalId]
|
|
23412
|
+
* @param {Date} [created]
|
|
23413
|
+
* @param {string} [languageCode]
|
|
23414
|
+
* @param {Array<string>} [ids]
|
|
23415
|
+
* @param {string} [specialtyTypeCategoryId]
|
|
23416
|
+
* @param {boolean} [returnDefaultValue]
|
|
23417
|
+
* @param {number} [page]
|
|
23418
|
+
* @param {number} [limit]
|
|
23419
|
+
* @param {Date} [lastRetrieved]
|
|
23420
|
+
* @param {*} [options] Override http request option.
|
|
23421
|
+
* @throws {RequiredError}
|
|
23422
|
+
*/
|
|
23423
|
+
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
23424
|
/**
|
|
23183
23425
|
*
|
|
23184
23426
|
* @summary Get Department by slug.
|
|
23185
23427
|
* @param {string} slug
|
|
23186
23428
|
* @param {string} [languageCode]
|
|
23429
|
+
* @param {boolean} [returnDefaultValue]
|
|
23187
23430
|
* @param {*} [options] Override http request option.
|
|
23188
23431
|
* @throws {RequiredError}
|
|
23189
23432
|
*/
|
|
23190
|
-
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
23433
|
+
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
23191
23434
|
/**
|
|
23192
23435
|
*
|
|
23193
23436
|
* @summary Delete Department.
|
|
@@ -23201,10 +23444,11 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
23201
23444
|
* @summary Get Department.
|
|
23202
23445
|
* @param {string} specialtyTypeId
|
|
23203
23446
|
* @param {string} [languageCode]
|
|
23447
|
+
* @param {boolean} [returnDefaultValue]
|
|
23204
23448
|
* @param {*} [options] Override http request option.
|
|
23205
23449
|
* @throws {RequiredError}
|
|
23206
23450
|
*/
|
|
23207
|
-
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
23451
|
+
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
23208
23452
|
/**
|
|
23209
23453
|
*
|
|
23210
23454
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -23282,13 +23526,14 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23282
23526
|
* @param {string} [languageCode]
|
|
23283
23527
|
* @param {Array<string>} [ids]
|
|
23284
23528
|
* @param {string} [specialtyTypeCategoryId]
|
|
23529
|
+
* @param {boolean} [returnDefaultValue]
|
|
23285
23530
|
* @param {number} [page]
|
|
23286
23531
|
* @param {number} [limit]
|
|
23287
23532
|
* @param {Date} [lastRetrieved]
|
|
23288
23533
|
* @param {*} [options] Override http request option.
|
|
23289
23534
|
* @throws {RequiredError}
|
|
23290
23535
|
*/
|
|
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>;
|
|
23536
|
+
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
23537
|
/**
|
|
23293
23538
|
*
|
|
23294
23539
|
* @summary Create a Department.
|
|
@@ -23297,15 +23542,36 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23297
23542
|
* @throws {RequiredError}
|
|
23298
23543
|
*/
|
|
23299
23544
|
apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23545
|
+
/**
|
|
23546
|
+
*
|
|
23547
|
+
* @summary Get all Hospitals.
|
|
23548
|
+
* @param {string} [id]
|
|
23549
|
+
* @param {string} [name]
|
|
23550
|
+
* @param {string} [description]
|
|
23551
|
+
* @param {MarketingType} [marketingType]
|
|
23552
|
+
* @param {string} [hospitalId]
|
|
23553
|
+
* @param {Date} [created]
|
|
23554
|
+
* @param {string} [languageCode]
|
|
23555
|
+
* @param {Array<string>} [ids]
|
|
23556
|
+
* @param {string} [specialtyTypeCategoryId]
|
|
23557
|
+
* @param {boolean} [returnDefaultValue]
|
|
23558
|
+
* @param {number} [page]
|
|
23559
|
+
* @param {number} [limit]
|
|
23560
|
+
* @param {Date} [lastRetrieved]
|
|
23561
|
+
* @param {*} [options] Override http request option.
|
|
23562
|
+
* @throws {RequiredError}
|
|
23563
|
+
*/
|
|
23564
|
+
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
23565
|
/**
|
|
23301
23566
|
*
|
|
23302
23567
|
* @summary Get Department by slug.
|
|
23303
23568
|
* @param {string} slug
|
|
23304
23569
|
* @param {string} [languageCode]
|
|
23570
|
+
* @param {boolean} [returnDefaultValue]
|
|
23305
23571
|
* @param {*} [options] Override http request option.
|
|
23306
23572
|
* @throws {RequiredError}
|
|
23307
23573
|
*/
|
|
23308
|
-
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23574
|
+
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23309
23575
|
/**
|
|
23310
23576
|
*
|
|
23311
23577
|
* @summary Delete Department.
|
|
@@ -23319,10 +23585,11 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration |
|
|
|
23319
23585
|
* @summary Get Department.
|
|
23320
23586
|
* @param {string} specialtyTypeId
|
|
23321
23587
|
* @param {string} [languageCode]
|
|
23588
|
+
* @param {boolean} [returnDefaultValue]
|
|
23322
23589
|
* @param {*} [options] Override http request option.
|
|
23323
23590
|
* @throws {RequiredError}
|
|
23324
23591
|
*/
|
|
23325
|
-
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23592
|
+
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
23326
23593
|
/**
|
|
23327
23594
|
*
|
|
23328
23595
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -23402,6 +23669,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23402
23669
|
* @param {string} [languageCode]
|
|
23403
23670
|
* @param {Array<string>} [ids]
|
|
23404
23671
|
* @param {string} [specialtyTypeCategoryId]
|
|
23672
|
+
* @param {boolean} [returnDefaultValue]
|
|
23405
23673
|
* @param {number} [page]
|
|
23406
23674
|
* @param {number} [limit]
|
|
23407
23675
|
* @param {Date} [lastRetrieved]
|
|
@@ -23409,7 +23677,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23409
23677
|
* @throws {RequiredError}
|
|
23410
23678
|
* @memberof SpecialtyTypesApi
|
|
23411
23679
|
*/
|
|
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>>;
|
|
23680
|
+
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
23681
|
/**
|
|
23414
23682
|
*
|
|
23415
23683
|
* @summary Create a Department.
|
|
@@ -23419,16 +23687,38 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23419
23687
|
* @memberof SpecialtyTypesApi
|
|
23420
23688
|
*/
|
|
23421
23689
|
apiV1SpecialtytypesPost(createSpecialtyTypeCommand?: CreateSpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
23690
|
+
/**
|
|
23691
|
+
*
|
|
23692
|
+
* @summary Get all Hospitals.
|
|
23693
|
+
* @param {string} [id]
|
|
23694
|
+
* @param {string} [name]
|
|
23695
|
+
* @param {string} [description]
|
|
23696
|
+
* @param {MarketingType} [marketingType]
|
|
23697
|
+
* @param {string} [hospitalId]
|
|
23698
|
+
* @param {Date} [created]
|
|
23699
|
+
* @param {string} [languageCode]
|
|
23700
|
+
* @param {Array<string>} [ids]
|
|
23701
|
+
* @param {string} [specialtyTypeCategoryId]
|
|
23702
|
+
* @param {boolean} [returnDefaultValue]
|
|
23703
|
+
* @param {number} [page]
|
|
23704
|
+
* @param {number} [limit]
|
|
23705
|
+
* @param {Date} [lastRetrieved]
|
|
23706
|
+
* @param {*} [options] Override http request option.
|
|
23707
|
+
* @throws {RequiredError}
|
|
23708
|
+
* @memberof SpecialtyTypesApi
|
|
23709
|
+
*/
|
|
23710
|
+
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
23711
|
/**
|
|
23423
23712
|
*
|
|
23424
23713
|
* @summary Get Department by slug.
|
|
23425
23714
|
* @param {string} slug
|
|
23426
23715
|
* @param {string} [languageCode]
|
|
23716
|
+
* @param {boolean} [returnDefaultValue]
|
|
23427
23717
|
* @param {*} [options] Override http request option.
|
|
23428
23718
|
* @throws {RequiredError}
|
|
23429
23719
|
* @memberof SpecialtyTypesApi
|
|
23430
23720
|
*/
|
|
23431
|
-
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
23721
|
+
apiV1SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
23432
23722
|
/**
|
|
23433
23723
|
*
|
|
23434
23724
|
* @summary Delete Department.
|
|
@@ -23443,11 +23733,12 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
23443
23733
|
* @summary Get Department.
|
|
23444
23734
|
* @param {string} specialtyTypeId
|
|
23445
23735
|
* @param {string} [languageCode]
|
|
23736
|
+
* @param {boolean} [returnDefaultValue]
|
|
23446
23737
|
* @param {*} [options] Override http request option.
|
|
23447
23738
|
* @throws {RequiredError}
|
|
23448
23739
|
* @memberof SpecialtyTypesApi
|
|
23449
23740
|
*/
|
|
23450
|
-
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
23741
|
+
apiV1SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
23451
23742
|
/**
|
|
23452
23743
|
*
|
|
23453
23744
|
* @summary Get all SpecialtyTypeMedias.
|