ch-api-client-typescript2 2.8.1 → 2.8.4
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 +342 -326
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1282 -1169
- package/lib/base.js +3 -1
- package/lib/common.d.ts +1 -1
- package/lib/common.d.ts.map +1 -1
- package/lib/common.js +19 -10
- package/lib/index.js +6 -2
- package/package.json +3 -3
- package/src/api.ts +46 -14
package/lib/api.d.ts
CHANGED
|
@@ -13234,7 +13234,7 @@ export declare const AccreditationsApiFp: (configuration?: Configuration | undef
|
|
|
13234
13234
|
* @param {*} [options] Override http request option.
|
|
13235
13235
|
* @throws {RequiredError}
|
|
13236
13236
|
*/
|
|
13237
|
-
apiV2AccreditationsAccreditationIdGet(accreditationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AccreditationModel>>;
|
|
13237
|
+
apiV2AccreditationsAccreditationIdGet(accreditationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AccreditationModel>>;
|
|
13238
13238
|
/**
|
|
13239
13239
|
*
|
|
13240
13240
|
* @summary Get all Accreditations.
|
|
@@ -13247,7 +13247,7 @@ export declare const AccreditationsApiFp: (configuration?: Configuration | undef
|
|
|
13247
13247
|
* @param {*} [options] Override http request option.
|
|
13248
13248
|
* @throws {RequiredError}
|
|
13249
13249
|
*/
|
|
13250
|
-
apiV2AccreditationsGet(name?: string | undefined, logo?: string | undefined, country?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AccreditationsModel>>;
|
|
13250
|
+
apiV2AccreditationsGet(name?: string | undefined, logo?: string | undefined, country?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AccreditationsModel>>;
|
|
13251
13251
|
};
|
|
13252
13252
|
/**
|
|
13253
13253
|
* AccreditationsApi - factory interface
|
|
@@ -13291,7 +13291,7 @@ export declare class AccreditationsApi extends BaseAPI {
|
|
|
13291
13291
|
* @throws {RequiredError}
|
|
13292
13292
|
* @memberof AccreditationsApi
|
|
13293
13293
|
*/
|
|
13294
|
-
apiV2AccreditationsAccreditationIdGet(accreditationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccreditationModel>>;
|
|
13294
|
+
apiV2AccreditationsAccreditationIdGet(accreditationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccreditationModel, any>>;
|
|
13295
13295
|
/**
|
|
13296
13296
|
*
|
|
13297
13297
|
* @summary Get all Accreditations.
|
|
@@ -13305,7 +13305,7 @@ export declare class AccreditationsApi extends BaseAPI {
|
|
|
13305
13305
|
* @throws {RequiredError}
|
|
13306
13306
|
* @memberof AccreditationsApi
|
|
13307
13307
|
*/
|
|
13308
|
-
apiV2AccreditationsGet(name?: string, logo?: string, country?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccreditationsModel>>;
|
|
13308
|
+
apiV2AccreditationsGet(name?: string, logo?: string, country?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccreditationsModel, any>>;
|
|
13309
13309
|
}
|
|
13310
13310
|
/**
|
|
13311
13311
|
* ArticlesApi - axios parameter creator
|
|
@@ -13461,7 +13461,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13461
13461
|
* @param {*} [options] Override http request option.
|
|
13462
13462
|
* @throws {RequiredError}
|
|
13463
13463
|
*/
|
|
13464
|
-
apiV2ArticlesArticleIdContributorsContributorIdGet(articleId: string, contributorId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorModel>>;
|
|
13464
|
+
apiV2ArticlesArticleIdContributorsContributorIdGet(articleId: string, contributorId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorModel>>;
|
|
13465
13465
|
/**
|
|
13466
13466
|
*
|
|
13467
13467
|
* @summary GetAll ArticleContributors.
|
|
@@ -13479,7 +13479,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13479
13479
|
* @param {*} [options] Override http request option.
|
|
13480
13480
|
* @throws {RequiredError}
|
|
13481
13481
|
*/
|
|
13482
|
-
apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
|
|
13482
|
+
apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string | undefined, contributorId?: string | undefined, contributorName?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, contributionType?: ContributionType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleContributorsModel>>;
|
|
13483
13483
|
/**
|
|
13484
13484
|
*
|
|
13485
13485
|
* @summary Get Article.
|
|
@@ -13489,7 +13489,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13489
13489
|
* @param {*} [options] Override http request option.
|
|
13490
13490
|
* @throws {RequiredError}
|
|
13491
13491
|
*/
|
|
13492
|
-
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
13492
|
+
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
13493
13493
|
/**
|
|
13494
13494
|
*
|
|
13495
13495
|
* @summary Get all ArticleMedias.
|
|
@@ -13502,7 +13502,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13502
13502
|
* @param {*} [options] Override http request option.
|
|
13503
13503
|
* @throws {RequiredError}
|
|
13504
13504
|
*/
|
|
13505
|
-
apiV2ArticlesArticleIdMediasGet(articleId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
13505
|
+
apiV2ArticlesArticleIdMediasGet(articleId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
13506
13506
|
/**
|
|
13507
13507
|
*
|
|
13508
13508
|
* @summary Get ArticleMedia.
|
|
@@ -13511,7 +13511,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13511
13511
|
* @param {*} [options] Override http request option.
|
|
13512
13512
|
* @throws {RequiredError}
|
|
13513
13513
|
*/
|
|
13514
|
-
apiV2ArticlesArticleIdMediasMediaIdGet(articleId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
13514
|
+
apiV2ArticlesArticleIdMediasMediaIdGet(articleId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
13515
13515
|
/**
|
|
13516
13516
|
*
|
|
13517
13517
|
* @summary Get all ArticleSource.
|
|
@@ -13522,7 +13522,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13522
13522
|
* @param {*} [options] Override http request option.
|
|
13523
13523
|
* @throws {RequiredError}
|
|
13524
13524
|
*/
|
|
13525
|
-
apiV2ArticlesArticleIdSourcesGet(articleId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleSourcesModel>>;
|
|
13525
|
+
apiV2ArticlesArticleIdSourcesGet(articleId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleSourcesModel>>;
|
|
13526
13526
|
/**
|
|
13527
13527
|
*
|
|
13528
13528
|
* @summary Get ArticleSource.
|
|
@@ -13531,7 +13531,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13531
13531
|
* @param {*} [options] Override http request option.
|
|
13532
13532
|
* @throws {RequiredError}
|
|
13533
13533
|
*/
|
|
13534
|
-
apiV2ArticlesArticleIdSourcesSourceIdGet(articleId: string, sourceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SourceModel>>;
|
|
13534
|
+
apiV2ArticlesArticleIdSourcesSourceIdGet(articleId: string, sourceId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SourceModel>>;
|
|
13535
13535
|
/**
|
|
13536
13536
|
*
|
|
13537
13537
|
* @summary GetAll ArticleTags.
|
|
@@ -13543,7 +13543,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13543
13543
|
* @param {*} [options] Override http request option.
|
|
13544
13544
|
* @throws {RequiredError}
|
|
13545
13545
|
*/
|
|
13546
|
-
apiV2ArticlesArticleIdTagsGet(articleId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagsModel>>;
|
|
13546
|
+
apiV2ArticlesArticleIdTagsGet(articleId: string, tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagsModel>>;
|
|
13547
13547
|
/**
|
|
13548
13548
|
*
|
|
13549
13549
|
* @summary Get ArticleTag.
|
|
@@ -13552,7 +13552,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13552
13552
|
* @param {*} [options] Override http request option.
|
|
13553
13553
|
* @throws {RequiredError}
|
|
13554
13554
|
*/
|
|
13555
|
-
apiV2ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagModel>>;
|
|
13555
|
+
apiV2ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleTagModel>>;
|
|
13556
13556
|
/**
|
|
13557
13557
|
*
|
|
13558
13558
|
* @summary Get all Articles.
|
|
@@ -13578,7 +13578,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13578
13578
|
* @param {*} [options] Override http request option.
|
|
13579
13579
|
* @throws {RequiredError}
|
|
13580
13580
|
*/
|
|
13581
|
-
apiV2ArticlesGet(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>>;
|
|
13581
|
+
apiV2ArticlesGet(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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticlesModel>>;
|
|
13582
13582
|
/**
|
|
13583
13583
|
*
|
|
13584
13584
|
* @param {string} slug
|
|
@@ -13587,7 +13587,7 @@ export declare const ArticlesApiFp: (configuration?: Configuration | undefined)
|
|
|
13587
13587
|
* @param {*} [options] Override http request option.
|
|
13588
13588
|
* @throws {RequiredError}
|
|
13589
13589
|
*/
|
|
13590
|
-
apiV2ArticlesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
13590
|
+
apiV2ArticlesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ArticleModel>>;
|
|
13591
13591
|
};
|
|
13592
13592
|
/**
|
|
13593
13593
|
* ArticlesApi - factory interface
|
|
@@ -13746,7 +13746,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13746
13746
|
* @throws {RequiredError}
|
|
13747
13747
|
* @memberof ArticlesApi
|
|
13748
13748
|
*/
|
|
13749
|
-
apiV2ArticlesArticleIdContributorsContributorIdGet(articleId: string, contributorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorModel>>;
|
|
13749
|
+
apiV2ArticlesArticleIdContributorsContributorIdGet(articleId: string, contributorId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorModel, any>>;
|
|
13750
13750
|
/**
|
|
13751
13751
|
*
|
|
13752
13752
|
* @summary GetAll ArticleContributors.
|
|
@@ -13765,7 +13765,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13765
13765
|
* @throws {RequiredError}
|
|
13766
13766
|
* @memberof ArticlesApi
|
|
13767
13767
|
*/
|
|
13768
|
-
apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel>>;
|
|
13768
|
+
apiV2ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleContributorsModel, any>>;
|
|
13769
13769
|
/**
|
|
13770
13770
|
*
|
|
13771
13771
|
* @summary Get Article.
|
|
@@ -13776,7 +13776,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13776
13776
|
* @throws {RequiredError}
|
|
13777
13777
|
* @memberof ArticlesApi
|
|
13778
13778
|
*/
|
|
13779
|
-
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
|
|
13779
|
+
apiV2ArticlesArticleIdGet(articleId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel, any>>;
|
|
13780
13780
|
/**
|
|
13781
13781
|
*
|
|
13782
13782
|
* @summary Get all ArticleMedias.
|
|
@@ -13790,7 +13790,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13790
13790
|
* @throws {RequiredError}
|
|
13791
13791
|
* @memberof ArticlesApi
|
|
13792
13792
|
*/
|
|
13793
|
-
apiV2ArticlesArticleIdMediasGet(articleId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
13793
|
+
apiV2ArticlesArticleIdMediasGet(articleId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
13794
13794
|
/**
|
|
13795
13795
|
*
|
|
13796
13796
|
* @summary Get ArticleMedia.
|
|
@@ -13800,7 +13800,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13800
13800
|
* @throws {RequiredError}
|
|
13801
13801
|
* @memberof ArticlesApi
|
|
13802
13802
|
*/
|
|
13803
|
-
apiV2ArticlesArticleIdMediasMediaIdGet(articleId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
13803
|
+
apiV2ArticlesArticleIdMediasMediaIdGet(articleId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
13804
13804
|
/**
|
|
13805
13805
|
*
|
|
13806
13806
|
* @summary Get all ArticleSource.
|
|
@@ -13812,7 +13812,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13812
13812
|
* @throws {RequiredError}
|
|
13813
13813
|
* @memberof ArticlesApi
|
|
13814
13814
|
*/
|
|
13815
|
-
apiV2ArticlesArticleIdSourcesGet(articleId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleSourcesModel>>;
|
|
13815
|
+
apiV2ArticlesArticleIdSourcesGet(articleId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleSourcesModel, any>>;
|
|
13816
13816
|
/**
|
|
13817
13817
|
*
|
|
13818
13818
|
* @summary Get ArticleSource.
|
|
@@ -13822,7 +13822,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13822
13822
|
* @throws {RequiredError}
|
|
13823
13823
|
* @memberof ArticlesApi
|
|
13824
13824
|
*/
|
|
13825
|
-
apiV2ArticlesArticleIdSourcesSourceIdGet(articleId: string, sourceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceModel>>;
|
|
13825
|
+
apiV2ArticlesArticleIdSourcesSourceIdGet(articleId: string, sourceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceModel, any>>;
|
|
13826
13826
|
/**
|
|
13827
13827
|
*
|
|
13828
13828
|
* @summary GetAll ArticleTags.
|
|
@@ -13835,7 +13835,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13835
13835
|
* @throws {RequiredError}
|
|
13836
13836
|
* @memberof ArticlesApi
|
|
13837
13837
|
*/
|
|
13838
|
-
apiV2ArticlesArticleIdTagsGet(articleId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagsModel>>;
|
|
13838
|
+
apiV2ArticlesArticleIdTagsGet(articleId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagsModel, any>>;
|
|
13839
13839
|
/**
|
|
13840
13840
|
*
|
|
13841
13841
|
* @summary Get ArticleTag.
|
|
@@ -13845,7 +13845,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13845
13845
|
* @throws {RequiredError}
|
|
13846
13846
|
* @memberof ArticlesApi
|
|
13847
13847
|
*/
|
|
13848
|
-
apiV2ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagModel>>;
|
|
13848
|
+
apiV2ArticlesArticleIdTagsTagIdGet(articleId: string, tagId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleTagModel, any>>;
|
|
13849
13849
|
/**
|
|
13850
13850
|
*
|
|
13851
13851
|
* @summary Get all Articles.
|
|
@@ -13872,7 +13872,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13872
13872
|
* @throws {RequiredError}
|
|
13873
13873
|
* @memberof ArticlesApi
|
|
13874
13874
|
*/
|
|
13875
|
-
apiV2ArticlesGet(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>>;
|
|
13875
|
+
apiV2ArticlesGet(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, any>>;
|
|
13876
13876
|
/**
|
|
13877
13877
|
*
|
|
13878
13878
|
* @param {string} slug
|
|
@@ -13882,7 +13882,7 @@ export declare class ArticlesApi extends BaseAPI {
|
|
|
13882
13882
|
* @throws {RequiredError}
|
|
13883
13883
|
* @memberof ArticlesApi
|
|
13884
13884
|
*/
|
|
13885
|
-
apiV2ArticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel>>;
|
|
13885
|
+
apiV2ArticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel, any>>;
|
|
13886
13886
|
}
|
|
13887
13887
|
/**
|
|
13888
13888
|
* BookingsApi - axios parameter creator
|
|
@@ -13994,7 +13994,7 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
13994
13994
|
* @param {*} [options] Override http request option.
|
|
13995
13995
|
* @throws {RequiredError}
|
|
13996
13996
|
*/
|
|
13997
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
13997
|
+
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
13998
13998
|
/**
|
|
13999
13999
|
*
|
|
14000
14000
|
* @summary Cancel booking.
|
|
@@ -14002,7 +14002,7 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
14002
14002
|
* @param {*} [options] Override http request option.
|
|
14003
14003
|
* @throws {RequiredError}
|
|
14004
14004
|
*/
|
|
14005
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14005
|
+
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14006
14006
|
/**
|
|
14007
14007
|
*
|
|
14008
14008
|
* @summary Delete booking.
|
|
@@ -14010,7 +14010,7 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
14010
14010
|
* @param {*} [options] Override http request option.
|
|
14011
14011
|
* @throws {RequiredError}
|
|
14012
14012
|
*/
|
|
14013
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14013
|
+
apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14014
14014
|
/**
|
|
14015
14015
|
*
|
|
14016
14016
|
* @summary Get booking.
|
|
@@ -14018,7 +14018,7 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
14018
14018
|
* @param {*} [options] Override http request option.
|
|
14019
14019
|
* @throws {RequiredError}
|
|
14020
14020
|
*/
|
|
14021
|
-
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
14021
|
+
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
14022
14022
|
/**
|
|
14023
14023
|
*
|
|
14024
14024
|
* @summary Mark as Paid booking.
|
|
@@ -14026,7 +14026,7 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
14026
14026
|
* @param {*} [options] Override http request option.
|
|
14027
14027
|
* @throws {RequiredError}
|
|
14028
14028
|
*/
|
|
14029
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
14029
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
14030
14030
|
/**
|
|
14031
14031
|
*
|
|
14032
14032
|
* @summary Pay booking.
|
|
@@ -14034,7 +14034,7 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
14034
14034
|
* @param {*} [options] Override http request option.
|
|
14035
14035
|
* @throws {RequiredError}
|
|
14036
14036
|
*/
|
|
14037
|
-
apiV2BookingsBookingIdPayPost(bookingId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
14037
|
+
apiV2BookingsBookingIdPayPost(bookingId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
14038
14038
|
/**
|
|
14039
14039
|
*
|
|
14040
14040
|
* @summary Update booking.
|
|
@@ -14043,7 +14043,7 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
14043
14043
|
* @param {*} [options] Override http request option.
|
|
14044
14044
|
* @throws {RequiredError}
|
|
14045
14045
|
*/
|
|
14046
|
-
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
14046
|
+
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
14047
14047
|
/**
|
|
14048
14048
|
*
|
|
14049
14049
|
* @summary Reject booking.
|
|
@@ -14052,7 +14052,7 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
14052
14052
|
* @param {*} [options] Override http request option.
|
|
14053
14053
|
* @throws {RequiredError}
|
|
14054
14054
|
*/
|
|
14055
|
-
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14055
|
+
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14056
14056
|
/**
|
|
14057
14057
|
*
|
|
14058
14058
|
* @summary Get all bookings.
|
|
@@ -14067,7 +14067,7 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
14067
14067
|
* @param {*} [options] Override http request option.
|
|
14068
14068
|
* @throws {RequiredError}
|
|
14069
14069
|
*/
|
|
14070
|
-
apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
|
|
14070
|
+
apiV2BookingsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: BookingStatus | undefined, dealPackageId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingsModel>>;
|
|
14071
14071
|
/**
|
|
14072
14072
|
*
|
|
14073
14073
|
* @summary Create booking.
|
|
@@ -14076,7 +14076,7 @@ export declare const BookingsApiFp: (configuration?: Configuration | undefined)
|
|
|
14076
14076
|
* @param {*} [options] Override http request option.
|
|
14077
14077
|
* @throws {RequiredError}
|
|
14078
14078
|
*/
|
|
14079
|
-
apiV2BookingsRequestIdPost(requestId: string, createBookingCommand?: CreateBookingCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
14079
|
+
apiV2BookingsRequestIdPost(requestId: string, createBookingCommand?: CreateBookingCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<BookingModel>>;
|
|
14080
14080
|
};
|
|
14081
14081
|
/**
|
|
14082
14082
|
* BookingsApi - factory interface
|
|
@@ -14191,7 +14191,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14191
14191
|
* @throws {RequiredError}
|
|
14192
14192
|
* @memberof BookingsApi
|
|
14193
14193
|
*/
|
|
14194
|
-
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14194
|
+
apiV2BookingsBookingIdApprovePut(bookingId: string, approveBookingCommand?: ApproveBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
14195
14195
|
/**
|
|
14196
14196
|
*
|
|
14197
14197
|
* @summary Cancel booking.
|
|
@@ -14200,7 +14200,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14200
14200
|
* @throws {RequiredError}
|
|
14201
14201
|
* @memberof BookingsApi
|
|
14202
14202
|
*/
|
|
14203
|
-
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14203
|
+
apiV2BookingsBookingIdCancelPut(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
14204
14204
|
/**
|
|
14205
14205
|
*
|
|
14206
14206
|
* @summary Delete booking.
|
|
@@ -14209,7 +14209,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14209
14209
|
* @throws {RequiredError}
|
|
14210
14210
|
* @memberof BookingsApi
|
|
14211
14211
|
*/
|
|
14212
|
-
apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14212
|
+
apiV2BookingsBookingIdDelete(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
14213
14213
|
/**
|
|
14214
14214
|
*
|
|
14215
14215
|
* @summary Get booking.
|
|
@@ -14218,7 +14218,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14218
14218
|
* @throws {RequiredError}
|
|
14219
14219
|
* @memberof BookingsApi
|
|
14220
14220
|
*/
|
|
14221
|
-
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
|
|
14221
|
+
apiV2BookingsBookingIdGet(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
14222
14222
|
/**
|
|
14223
14223
|
*
|
|
14224
14224
|
* @summary Mark as Paid booking.
|
|
@@ -14227,7 +14227,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14227
14227
|
* @throws {RequiredError}
|
|
14228
14228
|
* @memberof BookingsApi
|
|
14229
14229
|
*/
|
|
14230
|
-
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
14230
|
+
apiV2BookingsBookingIdPaidPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
14231
14231
|
/**
|
|
14232
14232
|
*
|
|
14233
14233
|
* @summary Pay booking.
|
|
@@ -14236,7 +14236,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14236
14236
|
* @throws {RequiredError}
|
|
14237
14237
|
* @memberof BookingsApi
|
|
14238
14238
|
*/
|
|
14239
|
-
apiV2BookingsBookingIdPayPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
14239
|
+
apiV2BookingsBookingIdPayPost(bookingId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
14240
14240
|
/**
|
|
14241
14241
|
*
|
|
14242
14242
|
* @summary Update booking.
|
|
@@ -14246,7 +14246,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14246
14246
|
* @throws {RequiredError}
|
|
14247
14247
|
* @memberof BookingsApi
|
|
14248
14248
|
*/
|
|
14249
|
-
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
|
|
14249
|
+
apiV2BookingsBookingIdPut(bookingId: string, updateBookingCommand?: UpdateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
14250
14250
|
/**
|
|
14251
14251
|
*
|
|
14252
14252
|
* @summary Reject booking.
|
|
@@ -14256,7 +14256,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14256
14256
|
* @throws {RequiredError}
|
|
14257
14257
|
* @memberof BookingsApi
|
|
14258
14258
|
*/
|
|
14259
|
-
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14259
|
+
apiV2BookingsBookingIdRejectPut(bookingId: string, rejectBookingCommand?: RejectBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
14260
14260
|
/**
|
|
14261
14261
|
*
|
|
14262
14262
|
* @summary Get all bookings.
|
|
@@ -14272,7 +14272,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14272
14272
|
* @throws {RequiredError}
|
|
14273
14273
|
* @memberof BookingsApi
|
|
14274
14274
|
*/
|
|
14275
|
-
apiV2BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel>>;
|
|
14275
|
+
apiV2BookingsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: BookingStatus, dealPackageId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingsModel, any>>;
|
|
14276
14276
|
/**
|
|
14277
14277
|
*
|
|
14278
14278
|
* @summary Create booking.
|
|
@@ -14282,7 +14282,7 @@ export declare class BookingsApi extends BaseAPI {
|
|
|
14282
14282
|
* @throws {RequiredError}
|
|
14283
14283
|
* @memberof BookingsApi
|
|
14284
14284
|
*/
|
|
14285
|
-
apiV2BookingsRequestIdPost(requestId: string, createBookingCommand?: CreateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel>>;
|
|
14285
|
+
apiV2BookingsRequestIdPost(requestId: string, createBookingCommand?: CreateBookingCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BookingModel, any>>;
|
|
14286
14286
|
}
|
|
14287
14287
|
/**
|
|
14288
14288
|
* ChatUsersApi - axios parameter creator
|
|
@@ -14351,7 +14351,7 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
|
|
|
14351
14351
|
* @param {*} [options] Override http request option.
|
|
14352
14352
|
* @throws {RequiredError}
|
|
14353
14353
|
*/
|
|
14354
|
-
apiV2ChatusersCurrentGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14354
|
+
apiV2ChatusersCurrentGet(options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14355
14355
|
/**
|
|
14356
14356
|
*
|
|
14357
14357
|
* @summary Get all chatUsers.
|
|
@@ -14363,7 +14363,7 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
|
|
|
14363
14363
|
* @param {*} [options] Override http request option.
|
|
14364
14364
|
* @throws {RequiredError}
|
|
14365
14365
|
*/
|
|
14366
|
-
apiV2ChatusersGet(limit?: number | undefined, token?: string | undefined, userIds?: string | undefined, nickname?: string | undefined, nicknameStartswith?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUsersModel>>;
|
|
14366
|
+
apiV2ChatusersGet(limit?: number | undefined, token?: string | undefined, userIds?: string | undefined, nickname?: string | undefined, nicknameStartswith?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUsersModel>>;
|
|
14367
14367
|
/**
|
|
14368
14368
|
*
|
|
14369
14369
|
* @summary Create a chatUser.
|
|
@@ -14371,7 +14371,7 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
|
|
|
14371
14371
|
* @param {*} [options] Override http request option.
|
|
14372
14372
|
* @throws {RequiredError}
|
|
14373
14373
|
*/
|
|
14374
|
-
apiV2ChatusersPost(createChatUserCommand?: CreateChatUserCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14374
|
+
apiV2ChatusersPost(createChatUserCommand?: CreateChatUserCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14375
14375
|
/**
|
|
14376
14376
|
*
|
|
14377
14377
|
* @summary Delete chatUser.
|
|
@@ -14379,7 +14379,7 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
|
|
|
14379
14379
|
* @param {*} [options] Override http request option.
|
|
14380
14380
|
* @throws {RequiredError}
|
|
14381
14381
|
*/
|
|
14382
|
-
apiV2ChatusersUserIdDelete(userId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14382
|
+
apiV2ChatusersUserIdDelete(userId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14383
14383
|
/**
|
|
14384
14384
|
*
|
|
14385
14385
|
* @summary Get chatUser.
|
|
@@ -14387,7 +14387,7 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
|
|
|
14387
14387
|
* @param {*} [options] Override http request option.
|
|
14388
14388
|
* @throws {RequiredError}
|
|
14389
14389
|
*/
|
|
14390
|
-
apiV2ChatusersUserIdGet(userId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14390
|
+
apiV2ChatusersUserIdGet(userId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14391
14391
|
/**
|
|
14392
14392
|
*
|
|
14393
14393
|
* @summary Update chatUser.
|
|
@@ -14396,7 +14396,7 @@ export declare const ChatUsersApiFp: (configuration?: Configuration | undefined)
|
|
|
14396
14396
|
* @param {*} [options] Override http request option.
|
|
14397
14397
|
* @throws {RequiredError}
|
|
14398
14398
|
*/
|
|
14399
|
-
apiV2ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14399
|
+
apiV2ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ChatUserModel>>;
|
|
14400
14400
|
};
|
|
14401
14401
|
/**
|
|
14402
14402
|
* ChatUsersApi - factory interface
|
|
@@ -14468,7 +14468,7 @@ export declare class ChatUsersApi extends BaseAPI {
|
|
|
14468
14468
|
* @throws {RequiredError}
|
|
14469
14469
|
* @memberof ChatUsersApi
|
|
14470
14470
|
*/
|
|
14471
|
-
apiV2ChatusersCurrentGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
|
|
14471
|
+
apiV2ChatusersCurrentGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel, any>>;
|
|
14472
14472
|
/**
|
|
14473
14473
|
*
|
|
14474
14474
|
* @summary Get all chatUsers.
|
|
@@ -14481,7 +14481,7 @@ export declare class ChatUsersApi extends BaseAPI {
|
|
|
14481
14481
|
* @throws {RequiredError}
|
|
14482
14482
|
* @memberof ChatUsersApi
|
|
14483
14483
|
*/
|
|
14484
|
-
apiV2ChatusersGet(limit?: number, token?: string, userIds?: string, nickname?: string, nicknameStartswith?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUsersModel>>;
|
|
14484
|
+
apiV2ChatusersGet(limit?: number, token?: string, userIds?: string, nickname?: string, nicknameStartswith?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUsersModel, any>>;
|
|
14485
14485
|
/**
|
|
14486
14486
|
*
|
|
14487
14487
|
* @summary Create a chatUser.
|
|
@@ -14490,7 +14490,7 @@ export declare class ChatUsersApi extends BaseAPI {
|
|
|
14490
14490
|
* @throws {RequiredError}
|
|
14491
14491
|
* @memberof ChatUsersApi
|
|
14492
14492
|
*/
|
|
14493
|
-
apiV2ChatusersPost(createChatUserCommand?: CreateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
|
|
14493
|
+
apiV2ChatusersPost(createChatUserCommand?: CreateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel, any>>;
|
|
14494
14494
|
/**
|
|
14495
14495
|
*
|
|
14496
14496
|
* @summary Delete chatUser.
|
|
@@ -14499,7 +14499,7 @@ export declare class ChatUsersApi extends BaseAPI {
|
|
|
14499
14499
|
* @throws {RequiredError}
|
|
14500
14500
|
* @memberof ChatUsersApi
|
|
14501
14501
|
*/
|
|
14502
|
-
apiV2ChatusersUserIdDelete(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14502
|
+
apiV2ChatusersUserIdDelete(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
14503
14503
|
/**
|
|
14504
14504
|
*
|
|
14505
14505
|
* @summary Get chatUser.
|
|
@@ -14508,7 +14508,7 @@ export declare class ChatUsersApi extends BaseAPI {
|
|
|
14508
14508
|
* @throws {RequiredError}
|
|
14509
14509
|
* @memberof ChatUsersApi
|
|
14510
14510
|
*/
|
|
14511
|
-
apiV2ChatusersUserIdGet(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
|
|
14511
|
+
apiV2ChatusersUserIdGet(userId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel, any>>;
|
|
14512
14512
|
/**
|
|
14513
14513
|
*
|
|
14514
14514
|
* @summary Update chatUser.
|
|
@@ -14518,7 +14518,7 @@ export declare class ChatUsersApi extends BaseAPI {
|
|
|
14518
14518
|
* @throws {RequiredError}
|
|
14519
14519
|
* @memberof ChatUsersApi
|
|
14520
14520
|
*/
|
|
14521
|
-
apiV2ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel>>;
|
|
14521
|
+
apiV2ChatusersUserIdPut(userId: string, updateChatUserCommand?: UpdateChatUserCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ChatUserModel, any>>;
|
|
14522
14522
|
}
|
|
14523
14523
|
/**
|
|
14524
14524
|
* CommunicationsApi - axios parameter creator
|
|
@@ -14558,21 +14558,21 @@ export declare const CommunicationsApiFp: (configuration?: Configuration | undef
|
|
|
14558
14558
|
* @param {*} [options] Override http request option.
|
|
14559
14559
|
* @throws {RequiredError}
|
|
14560
14560
|
*/
|
|
14561
|
-
apiV2CommunicationsDelete(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<number>>;
|
|
14561
|
+
apiV2CommunicationsDelete(options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<number>>;
|
|
14562
14562
|
/**
|
|
14563
14563
|
*
|
|
14564
14564
|
* @summary Get CommunicationUser.
|
|
14565
14565
|
* @param {*} [options] Override http request option.
|
|
14566
14566
|
* @throws {RequiredError}
|
|
14567
14567
|
*/
|
|
14568
|
-
apiV2CommunicationsGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
|
|
14568
|
+
apiV2CommunicationsGet(options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
|
|
14569
14569
|
/**
|
|
14570
14570
|
*
|
|
14571
14571
|
* @summary Revoke CommunicationUser.
|
|
14572
14572
|
* @param {*} [options] Override http request option.
|
|
14573
14573
|
* @throws {RequiredError}
|
|
14574
14574
|
*/
|
|
14575
|
-
apiV2CommunicationsPut(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
|
|
14575
|
+
apiV2CommunicationsPut(options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CommunicationUserTokenModel>>;
|
|
14576
14576
|
};
|
|
14577
14577
|
/**
|
|
14578
14578
|
* CommunicationsApi - factory interface
|
|
@@ -14615,7 +14615,7 @@ export declare class CommunicationsApi extends BaseAPI {
|
|
|
14615
14615
|
* @throws {RequiredError}
|
|
14616
14616
|
* @memberof CommunicationsApi
|
|
14617
14617
|
*/
|
|
14618
|
-
apiV2CommunicationsDelete(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<number>>;
|
|
14618
|
+
apiV2CommunicationsDelete(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<number, any>>;
|
|
14619
14619
|
/**
|
|
14620
14620
|
*
|
|
14621
14621
|
* @summary Get CommunicationUser.
|
|
@@ -14623,7 +14623,7 @@ export declare class CommunicationsApi extends BaseAPI {
|
|
|
14623
14623
|
* @throws {RequiredError}
|
|
14624
14624
|
* @memberof CommunicationsApi
|
|
14625
14625
|
*/
|
|
14626
|
-
apiV2CommunicationsGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel>>;
|
|
14626
|
+
apiV2CommunicationsGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel, any>>;
|
|
14627
14627
|
/**
|
|
14628
14628
|
*
|
|
14629
14629
|
* @summary Revoke CommunicationUser.
|
|
@@ -14631,7 +14631,7 @@ export declare class CommunicationsApi extends BaseAPI {
|
|
|
14631
14631
|
* @throws {RequiredError}
|
|
14632
14632
|
* @memberof CommunicationsApi
|
|
14633
14633
|
*/
|
|
14634
|
-
apiV2CommunicationsPut(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel>>;
|
|
14634
|
+
apiV2CommunicationsPut(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CommunicationUserTokenModel, any>>;
|
|
14635
14635
|
}
|
|
14636
14636
|
/**
|
|
14637
14637
|
* ConsultationsApi - axios parameter creator
|
|
@@ -14735,7 +14735,7 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
14735
14735
|
* @param {*} [options] Override http request option.
|
|
14736
14736
|
* @throws {RequiredError}
|
|
14737
14737
|
*/
|
|
14738
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14738
|
+
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14739
14739
|
/**
|
|
14740
14740
|
*
|
|
14741
14741
|
* @summary Cancel consultation.
|
|
@@ -14743,7 +14743,7 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
14743
14743
|
* @param {*} [options] Override http request option.
|
|
14744
14744
|
* @throws {RequiredError}
|
|
14745
14745
|
*/
|
|
14746
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14746
|
+
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14747
14747
|
/**
|
|
14748
14748
|
*
|
|
14749
14749
|
* @summary Delete consultation.
|
|
@@ -14751,7 +14751,7 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
14751
14751
|
* @param {*} [options] Override http request option.
|
|
14752
14752
|
* @throws {RequiredError}
|
|
14753
14753
|
*/
|
|
14754
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14754
|
+
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14755
14755
|
/**
|
|
14756
14756
|
*
|
|
14757
14757
|
* @summary Get consultation.
|
|
@@ -14759,7 +14759,7 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
14759
14759
|
* @param {*} [options] Override http request option.
|
|
14760
14760
|
* @throws {RequiredError}
|
|
14761
14761
|
*/
|
|
14762
|
-
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
14762
|
+
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
14763
14763
|
/**
|
|
14764
14764
|
*
|
|
14765
14765
|
* @summary Pay consultation.
|
|
@@ -14767,7 +14767,7 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
14767
14767
|
* @param {*} [options] Override http request option.
|
|
14768
14768
|
* @throws {RequiredError}
|
|
14769
14769
|
*/
|
|
14770
|
-
apiV2ConsultationsConsultationIdPayPost(consultationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
14770
|
+
apiV2ConsultationsConsultationIdPayPost(consultationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<string>>;
|
|
14771
14771
|
/**
|
|
14772
14772
|
*
|
|
14773
14773
|
* @summary Update consultation.
|
|
@@ -14776,7 +14776,7 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
14776
14776
|
* @param {*} [options] Override http request option.
|
|
14777
14777
|
* @throws {RequiredError}
|
|
14778
14778
|
*/
|
|
14779
|
-
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
14779
|
+
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
14780
14780
|
/**
|
|
14781
14781
|
*
|
|
14782
14782
|
* @summary Reject consultation.
|
|
@@ -14785,7 +14785,7 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
14785
14785
|
* @param {*} [options] Override http request option.
|
|
14786
14786
|
* @throws {RequiredError}
|
|
14787
14787
|
*/
|
|
14788
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14788
|
+
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
14789
14789
|
/**
|
|
14790
14790
|
*
|
|
14791
14791
|
* @summary Get all consultations.
|
|
@@ -14800,7 +14800,7 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
14800
14800
|
* @param {*} [options] Override http request option.
|
|
14801
14801
|
* @throws {RequiredError}
|
|
14802
14802
|
*/
|
|
14803
|
-
apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
14803
|
+
apiV2ConsultationsGet(searchString?: string | undefined, isOpen?: boolean | undefined, isCompleted?: boolean | undefined, status?: ConsultationStatus | undefined, consultationType?: ConsultationType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationsModel>>;
|
|
14804
14804
|
/**
|
|
14805
14805
|
*
|
|
14806
14806
|
* @summary Create consultation.
|
|
@@ -14809,7 +14809,7 @@ export declare const ConsultationsApiFp: (configuration?: Configuration | undefi
|
|
|
14809
14809
|
* @param {*} [options] Override http request option.
|
|
14810
14810
|
* @throws {RequiredError}
|
|
14811
14811
|
*/
|
|
14812
|
-
apiV2ConsultationsRequestIdPost(requestId: string, createConsultationCommand?: CreateConsultationCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
14812
|
+
apiV2ConsultationsRequestIdPost(requestId: string, createConsultationCommand?: CreateConsultationCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ConsultationModel>>;
|
|
14813
14813
|
};
|
|
14814
14814
|
/**
|
|
14815
14815
|
* ConsultationsApi - factory interface
|
|
@@ -14916,7 +14916,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
14916
14916
|
* @throws {RequiredError}
|
|
14917
14917
|
* @memberof ConsultationsApi
|
|
14918
14918
|
*/
|
|
14919
|
-
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14919
|
+
apiV2ConsultationsConsultationIdApprovePut(consultationId: string, approveConsultationCommand?: ApproveConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
14920
14920
|
/**
|
|
14921
14921
|
*
|
|
14922
14922
|
* @summary Cancel consultation.
|
|
@@ -14925,7 +14925,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
14925
14925
|
* @throws {RequiredError}
|
|
14926
14926
|
* @memberof ConsultationsApi
|
|
14927
14927
|
*/
|
|
14928
|
-
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14928
|
+
apiV2ConsultationsConsultationIdCancelPut(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
14929
14929
|
/**
|
|
14930
14930
|
*
|
|
14931
14931
|
* @summary Delete consultation.
|
|
@@ -14934,7 +14934,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
14934
14934
|
* @throws {RequiredError}
|
|
14935
14935
|
* @memberof ConsultationsApi
|
|
14936
14936
|
*/
|
|
14937
|
-
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14937
|
+
apiV2ConsultationsConsultationIdDelete(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
14938
14938
|
/**
|
|
14939
14939
|
*
|
|
14940
14940
|
* @summary Get consultation.
|
|
@@ -14943,7 +14943,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
14943
14943
|
* @throws {RequiredError}
|
|
14944
14944
|
* @memberof ConsultationsApi
|
|
14945
14945
|
*/
|
|
14946
|
-
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
|
|
14946
|
+
apiV2ConsultationsConsultationIdGet(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
|
|
14947
14947
|
/**
|
|
14948
14948
|
*
|
|
14949
14949
|
* @summary Pay consultation.
|
|
@@ -14952,7 +14952,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
14952
14952
|
* @throws {RequiredError}
|
|
14953
14953
|
* @memberof ConsultationsApi
|
|
14954
14954
|
*/
|
|
14955
|
-
apiV2ConsultationsConsultationIdPayPost(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string>>;
|
|
14955
|
+
apiV2ConsultationsConsultationIdPayPost(consultationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
14956
14956
|
/**
|
|
14957
14957
|
*
|
|
14958
14958
|
* @summary Update consultation.
|
|
@@ -14962,7 +14962,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
14962
14962
|
* @throws {RequiredError}
|
|
14963
14963
|
* @memberof ConsultationsApi
|
|
14964
14964
|
*/
|
|
14965
|
-
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
|
|
14965
|
+
apiV2ConsultationsConsultationIdPut(consultationId: string, updateConsultationCommand?: UpdateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
|
|
14966
14966
|
/**
|
|
14967
14967
|
*
|
|
14968
14968
|
* @summary Reject consultation.
|
|
@@ -14972,7 +14972,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
14972
14972
|
* @throws {RequiredError}
|
|
14973
14973
|
* @memberof ConsultationsApi
|
|
14974
14974
|
*/
|
|
14975
|
-
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
14975
|
+
apiV2ConsultationsConsultationIdRejectPut(consultationId: string, rejectConsultationCommand?: RejectConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
14976
14976
|
/**
|
|
14977
14977
|
*
|
|
14978
14978
|
* @summary Get all consultations.
|
|
@@ -14988,7 +14988,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
14988
14988
|
* @throws {RequiredError}
|
|
14989
14989
|
* @memberof ConsultationsApi
|
|
14990
14990
|
*/
|
|
14991
|
-
apiV2ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel>>;
|
|
14991
|
+
apiV2ConsultationsGet(searchString?: string, isOpen?: boolean, isCompleted?: boolean, status?: ConsultationStatus, consultationType?: ConsultationType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationsModel, any>>;
|
|
14992
14992
|
/**
|
|
14993
14993
|
*
|
|
14994
14994
|
* @summary Create consultation.
|
|
@@ -14998,7 +14998,7 @@ export declare class ConsultationsApi extends BaseAPI {
|
|
|
14998
14998
|
* @throws {RequiredError}
|
|
14999
14999
|
* @memberof ConsultationsApi
|
|
15000
15000
|
*/
|
|
15001
|
-
apiV2ConsultationsRequestIdPost(requestId: string, createConsultationCommand?: CreateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel>>;
|
|
15001
|
+
apiV2ConsultationsRequestIdPost(requestId: string, createConsultationCommand?: CreateConsultationCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ConsultationModel, any>>;
|
|
15002
15002
|
}
|
|
15003
15003
|
/**
|
|
15004
15004
|
* ContributorsApi - axios parameter creator
|
|
@@ -15080,7 +15080,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
15080
15080
|
* @param {*} [options] Override http request option.
|
|
15081
15081
|
* @throws {RequiredError}
|
|
15082
15082
|
*/
|
|
15083
|
-
apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
|
|
15083
|
+
apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
|
|
15084
15084
|
/**
|
|
15085
15085
|
*
|
|
15086
15086
|
* @summary Get all ContributorHandles.
|
|
@@ -15095,7 +15095,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
15095
15095
|
* @param {*} [options] Override http request option.
|
|
15096
15096
|
* @throws {RequiredError}
|
|
15097
15097
|
*/
|
|
15098
|
-
apiV2ContributorsContributorIdHandlesGet(contributorId: string, contributorId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorSnsHandlesModel>>;
|
|
15098
|
+
apiV2ContributorsContributorIdHandlesGet(contributorId: string, contributorId2?: string | undefined, id?: string | undefined, snsType?: SnsType | undefined, handle?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorSnsHandlesModel>>;
|
|
15099
15099
|
/**
|
|
15100
15100
|
*
|
|
15101
15101
|
* @summary Get ContributorHandle.
|
|
@@ -15104,7 +15104,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
15104
15104
|
* @param {*} [options] Override http request option.
|
|
15105
15105
|
* @throws {RequiredError}
|
|
15106
15106
|
*/
|
|
15107
|
-
apiV2ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
15107
|
+
apiV2ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SnsHandleModel>>;
|
|
15108
15108
|
/**
|
|
15109
15109
|
*
|
|
15110
15110
|
* @summary Get all Contributors.
|
|
@@ -15123,7 +15123,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
15123
15123
|
* @param {*} [options] Override http request option.
|
|
15124
15124
|
* @throws {RequiredError}
|
|
15125
15125
|
*/
|
|
15126
|
-
apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
|
|
15126
|
+
apiV2ContributorsGet(id?: string | undefined, name?: string | undefined, email?: string | undefined, description?: string | undefined, website?: string | undefined, hospitalId?: string | undefined, interviewerOnly?: boolean | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorsModel>>;
|
|
15127
15127
|
/**
|
|
15128
15128
|
*
|
|
15129
15129
|
* @summary Get Contributor by slug.
|
|
@@ -15132,7 +15132,7 @@ export declare const ContributorsApiFp: (configuration?: Configuration | undefin
|
|
|
15132
15132
|
* @param {*} [options] Override http request option.
|
|
15133
15133
|
* @throws {RequiredError}
|
|
15134
15134
|
*/
|
|
15135
|
-
apiV2ContributorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
|
|
15135
|
+
apiV2ContributorsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ContributorModel>>;
|
|
15136
15136
|
};
|
|
15137
15137
|
/**
|
|
15138
15138
|
* ContributorsApi - factory interface
|
|
@@ -15217,7 +15217,7 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
15217
15217
|
* @throws {RequiredError}
|
|
15218
15218
|
* @memberof ContributorsApi
|
|
15219
15219
|
*/
|
|
15220
|
-
apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel>>;
|
|
15220
|
+
apiV2ContributorsContributorIdGet(contributorId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel, any>>;
|
|
15221
15221
|
/**
|
|
15222
15222
|
*
|
|
15223
15223
|
* @summary Get all ContributorHandles.
|
|
@@ -15233,7 +15233,7 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
15233
15233
|
* @throws {RequiredError}
|
|
15234
15234
|
* @memberof ContributorsApi
|
|
15235
15235
|
*/
|
|
15236
|
-
apiV2ContributorsContributorIdHandlesGet(contributorId: string, contributorId2?: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorSnsHandlesModel>>;
|
|
15236
|
+
apiV2ContributorsContributorIdHandlesGet(contributorId: string, contributorId2?: string, id?: string, snsType?: SnsType, handle?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorSnsHandlesModel, any>>;
|
|
15237
15237
|
/**
|
|
15238
15238
|
*
|
|
15239
15239
|
* @summary Get ContributorHandle.
|
|
@@ -15243,7 +15243,7 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
15243
15243
|
* @throws {RequiredError}
|
|
15244
15244
|
* @memberof ContributorsApi
|
|
15245
15245
|
*/
|
|
15246
|
-
apiV2ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel>>;
|
|
15246
|
+
apiV2ContributorsContributorIdHandlesHandleIdGet(contributorId: string, handleId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SnsHandleModel, any>>;
|
|
15247
15247
|
/**
|
|
15248
15248
|
*
|
|
15249
15249
|
* @summary Get all Contributors.
|
|
@@ -15263,7 +15263,7 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
15263
15263
|
* @throws {RequiredError}
|
|
15264
15264
|
* @memberof ContributorsApi
|
|
15265
15265
|
*/
|
|
15266
|
-
apiV2ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel>>;
|
|
15266
|
+
apiV2ContributorsGet(id?: string, name?: string, email?: string, description?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorsModel, any>>;
|
|
15267
15267
|
/**
|
|
15268
15268
|
*
|
|
15269
15269
|
* @summary Get Contributor by slug.
|
|
@@ -15273,7 +15273,7 @@ export declare class ContributorsApi extends BaseAPI {
|
|
|
15273
15273
|
* @throws {RequiredError}
|
|
15274
15274
|
* @memberof ContributorsApi
|
|
15275
15275
|
*/
|
|
15276
|
-
apiV2ContributorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel>>;
|
|
15276
|
+
apiV2ContributorsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ContributorModel, any>>;
|
|
15277
15277
|
}
|
|
15278
15278
|
/**
|
|
15279
15279
|
* CountriesApi - axios parameter creator
|
|
@@ -15351,7 +15351,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
15351
15351
|
* @param {*} [options] Override http request option.
|
|
15352
15352
|
* @throws {RequiredError}
|
|
15353
15353
|
*/
|
|
15354
|
-
apiV2CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
15354
|
+
apiV2CountriesCountryIdGet(countryId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
15355
15355
|
/**
|
|
15356
15356
|
*
|
|
15357
15357
|
* @summary Get all CountryMedias.
|
|
@@ -15364,7 +15364,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
15364
15364
|
* @param {*} [options] Override http request option.
|
|
15365
15365
|
* @throws {RequiredError}
|
|
15366
15366
|
*/
|
|
15367
|
-
apiV2CountriesCountryIdMediasGet(countryId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
15367
|
+
apiV2CountriesCountryIdMediasGet(countryId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
15368
15368
|
/**
|
|
15369
15369
|
*
|
|
15370
15370
|
* @summary Get CountryMedia.
|
|
@@ -15373,7 +15373,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
15373
15373
|
* @param {*} [options] Override http request option.
|
|
15374
15374
|
* @throws {RequiredError}
|
|
15375
15375
|
*/
|
|
15376
|
-
apiV2CountriesCountryIdMediasMediaIdGet(countryId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15376
|
+
apiV2CountriesCountryIdMediasMediaIdGet(countryId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
15377
15377
|
/**
|
|
15378
15378
|
*
|
|
15379
15379
|
* @summary Get all countries.
|
|
@@ -15390,7 +15390,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
15390
15390
|
* @param {*} [options] Override http request option.
|
|
15391
15391
|
* @throws {RequiredError}
|
|
15392
15392
|
*/
|
|
15393
|
-
apiV2CountriesGet(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>>;
|
|
15393
|
+
apiV2CountriesGet(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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountriesModel>>;
|
|
15394
15394
|
/**
|
|
15395
15395
|
*
|
|
15396
15396
|
* @param {string} slug
|
|
@@ -15399,7 +15399,7 @@ export declare const CountriesApiFp: (configuration?: Configuration | undefined)
|
|
|
15399
15399
|
* @param {*} [options] Override http request option.
|
|
15400
15400
|
* @throws {RequiredError}
|
|
15401
15401
|
*/
|
|
15402
|
-
apiV2CountriesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
15402
|
+
apiV2CountriesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CountryModel>>;
|
|
15403
15403
|
};
|
|
15404
15404
|
/**
|
|
15405
15405
|
* CountriesApi - factory interface
|
|
@@ -15480,7 +15480,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15480
15480
|
* @throws {RequiredError}
|
|
15481
15481
|
* @memberof CountriesApi
|
|
15482
15482
|
*/
|
|
15483
|
-
apiV2CountriesCountryIdGet(countryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15483
|
+
apiV2CountriesCountryIdGet(countryId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel, any>>;
|
|
15484
15484
|
/**
|
|
15485
15485
|
*
|
|
15486
15486
|
* @summary Get all CountryMedias.
|
|
@@ -15494,7 +15494,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15494
15494
|
* @throws {RequiredError}
|
|
15495
15495
|
* @memberof CountriesApi
|
|
15496
15496
|
*/
|
|
15497
|
-
apiV2CountriesCountryIdMediasGet(countryId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
15497
|
+
apiV2CountriesCountryIdMediasGet(countryId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
15498
15498
|
/**
|
|
15499
15499
|
*
|
|
15500
15500
|
* @summary Get CountryMedia.
|
|
@@ -15504,7 +15504,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15504
15504
|
* @throws {RequiredError}
|
|
15505
15505
|
* @memberof CountriesApi
|
|
15506
15506
|
*/
|
|
15507
|
-
apiV2CountriesCountryIdMediasMediaIdGet(countryId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
15507
|
+
apiV2CountriesCountryIdMediasMediaIdGet(countryId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
15508
15508
|
/**
|
|
15509
15509
|
*
|
|
15510
15510
|
* @summary Get all countries.
|
|
@@ -15522,7 +15522,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15522
15522
|
* @throws {RequiredError}
|
|
15523
15523
|
* @memberof CountriesApi
|
|
15524
15524
|
*/
|
|
15525
|
-
apiV2CountriesGet(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>>;
|
|
15525
|
+
apiV2CountriesGet(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, any>>;
|
|
15526
15526
|
/**
|
|
15527
15527
|
*
|
|
15528
15528
|
* @param {string} slug
|
|
@@ -15532,7 +15532,7 @@ export declare class CountriesApi extends BaseAPI {
|
|
|
15532
15532
|
* @throws {RequiredError}
|
|
15533
15533
|
* @memberof CountriesApi
|
|
15534
15534
|
*/
|
|
15535
|
-
apiV2CountriesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel>>;
|
|
15535
|
+
apiV2CountriesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CountryModel, any>>;
|
|
15536
15536
|
}
|
|
15537
15537
|
/**
|
|
15538
15538
|
* DealsApi - axios parameter creator
|
|
@@ -15645,7 +15645,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15645
15645
|
* @param {*} [options] Override http request option.
|
|
15646
15646
|
* @throws {RequiredError}
|
|
15647
15647
|
*/
|
|
15648
|
-
apiV2DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15648
|
+
apiV2DealsDealIdGet(dealId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15649
15649
|
/**
|
|
15650
15650
|
*
|
|
15651
15651
|
* @summary Get all DealPackage.
|
|
@@ -15662,7 +15662,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15662
15662
|
* @param {*} [options] Override http request option.
|
|
15663
15663
|
* @throws {RequiredError}
|
|
15664
15664
|
*/
|
|
15665
|
-
apiV2DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string | undefined, dealName?: string | undefined, name?: string | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackagesModel>>;
|
|
15665
|
+
apiV2DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string | undefined, dealName?: string | undefined, name?: string | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackagesModel>>;
|
|
15666
15666
|
/**
|
|
15667
15667
|
*
|
|
15668
15668
|
* @summary Get DealPackage.
|
|
@@ -15671,7 +15671,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15671
15671
|
* @param {*} [options] Override http request option.
|
|
15672
15672
|
* @throws {RequiredError}
|
|
15673
15673
|
*/
|
|
15674
|
-
apiV2DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackageModel>>;
|
|
15674
|
+
apiV2DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealPackageModel>>;
|
|
15675
15675
|
/**
|
|
15676
15676
|
*
|
|
15677
15677
|
* @summary Get all DealService.
|
|
@@ -15682,7 +15682,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15682
15682
|
* @param {*} [options] Override http request option.
|
|
15683
15683
|
* @throws {RequiredError}
|
|
15684
15684
|
*/
|
|
15685
|
-
apiV2DealsDealIdServicesGet(dealId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealServicesModel>>;
|
|
15685
|
+
apiV2DealsDealIdServicesGet(dealId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealServicesModel>>;
|
|
15686
15686
|
/**
|
|
15687
15687
|
*
|
|
15688
15688
|
* @summary Get DealService.
|
|
@@ -15691,7 +15691,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15691
15691
|
* @param {*} [options] Override http request option.
|
|
15692
15692
|
* @throws {RequiredError}
|
|
15693
15693
|
*/
|
|
15694
|
-
apiV2DealsDealIdServicesServiceIdGet(dealId: string, serviceId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealServiceModel>>;
|
|
15694
|
+
apiV2DealsDealIdServicesServiceIdGet(dealId: string, serviceId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealServiceModel>>;
|
|
15695
15695
|
/**
|
|
15696
15696
|
*
|
|
15697
15697
|
* @summary Get all deals.
|
|
@@ -15716,7 +15716,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15716
15716
|
* @param {*} [options] Override http request option.
|
|
15717
15717
|
* @throws {RequiredError}
|
|
15718
15718
|
*/
|
|
15719
|
-
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: 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>>;
|
|
15719
|
+
apiV2DealsGet(id?: string | undefined, name?: string | undefined, marketingType?: MarketingType | undefined, countryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, specialtyId?: string | undefined, specialtyTypeId?: string | undefined, serviceId?: 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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
15720
15720
|
/**
|
|
15721
15721
|
*
|
|
15722
15722
|
* @summary Get deal by slug.
|
|
@@ -15726,7 +15726,7 @@ export declare const DealsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
15726
15726
|
* @param {*} [options] Override http request option.
|
|
15727
15727
|
* @throws {RequiredError}
|
|
15728
15728
|
*/
|
|
15729
|
-
apiV2DealsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15729
|
+
apiV2DealsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealModel>>;
|
|
15730
15730
|
};
|
|
15731
15731
|
/**
|
|
15732
15732
|
* DealsApi - factory interface
|
|
@@ -15842,7 +15842,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15842
15842
|
* @throws {RequiredError}
|
|
15843
15843
|
* @memberof DealsApi
|
|
15844
15844
|
*/
|
|
15845
|
-
apiV2DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15845
|
+
apiV2DealsDealIdGet(dealId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel, any>>;
|
|
15846
15846
|
/**
|
|
15847
15847
|
*
|
|
15848
15848
|
* @summary Get all DealPackage.
|
|
@@ -15860,7 +15860,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15860
15860
|
* @throws {RequiredError}
|
|
15861
15861
|
* @memberof DealsApi
|
|
15862
15862
|
*/
|
|
15863
|
-
apiV2DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackagesModel>>;
|
|
15863
|
+
apiV2DealsDealIdPackagesGet(dealId: string, relatedDealPackageId?: string, dealName?: string, name?: string, countryId?: string, hospitalId?: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackagesModel, any>>;
|
|
15864
15864
|
/**
|
|
15865
15865
|
*
|
|
15866
15866
|
* @summary Get DealPackage.
|
|
@@ -15870,7 +15870,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15870
15870
|
* @throws {RequiredError}
|
|
15871
15871
|
* @memberof DealsApi
|
|
15872
15872
|
*/
|
|
15873
|
-
apiV2DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel>>;
|
|
15873
|
+
apiV2DealsDealIdPackagesPackageIdGet(dealId: string, packageId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealPackageModel, any>>;
|
|
15874
15874
|
/**
|
|
15875
15875
|
*
|
|
15876
15876
|
* @summary Get all DealService.
|
|
@@ -15882,7 +15882,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15882
15882
|
* @throws {RequiredError}
|
|
15883
15883
|
* @memberof DealsApi
|
|
15884
15884
|
*/
|
|
15885
|
-
apiV2DealsDealIdServicesGet(dealId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServicesModel>>;
|
|
15885
|
+
apiV2DealsDealIdServicesGet(dealId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServicesModel, any>>;
|
|
15886
15886
|
/**
|
|
15887
15887
|
*
|
|
15888
15888
|
* @summary Get DealService.
|
|
@@ -15892,7 +15892,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15892
15892
|
* @throws {RequiredError}
|
|
15893
15893
|
* @memberof DealsApi
|
|
15894
15894
|
*/
|
|
15895
|
-
apiV2DealsDealIdServicesServiceIdGet(dealId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel>>;
|
|
15895
|
+
apiV2DealsDealIdServicesServiceIdGet(dealId: string, serviceId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealServiceModel, any>>;
|
|
15896
15896
|
/**
|
|
15897
15897
|
*
|
|
15898
15898
|
* @summary Get all deals.
|
|
@@ -15918,7 +15918,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15918
15918
|
* @throws {RequiredError}
|
|
15919
15919
|
* @memberof DealsApi
|
|
15920
15920
|
*/
|
|
15921
|
-
apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: 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>>;
|
|
15921
|
+
apiV2DealsGet(id?: string, name?: string, marketingType?: MarketingType, countryId?: string, hospitalId?: string, hospitalName?: string, specialtyId?: string, specialtyTypeId?: string, serviceId?: 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, any>>;
|
|
15922
15922
|
/**
|
|
15923
15923
|
*
|
|
15924
15924
|
* @summary Get deal by slug.
|
|
@@ -15929,7 +15929,7 @@ export declare class DealsApi extends BaseAPI {
|
|
|
15929
15929
|
* @throws {RequiredError}
|
|
15930
15930
|
* @memberof DealsApi
|
|
15931
15931
|
*/
|
|
15932
|
-
apiV2DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel>>;
|
|
15932
|
+
apiV2DealsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel, any>>;
|
|
15933
15933
|
}
|
|
15934
15934
|
/**
|
|
15935
15935
|
* DoctorsApi - axios parameter creator
|
|
@@ -16091,6 +16091,8 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16091
16091
|
* @param {string} [languageCode]
|
|
16092
16092
|
* @param {boolean} [returnDefaultValue]
|
|
16093
16093
|
* @param {Array<string>} [ids]
|
|
16094
|
+
* @param {string} [specialtyId]
|
|
16095
|
+
* @param {boolean} [consultationEnabled]
|
|
16094
16096
|
* @param {string} [id]
|
|
16095
16097
|
* @param {string} [fullname]
|
|
16096
16098
|
* @param {string} [email]
|
|
@@ -16104,7 +16106,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16104
16106
|
* @param {*} [options] Override http request option.
|
|
16105
16107
|
* @throws {RequiredError}
|
|
16106
16108
|
*/
|
|
16107
|
-
apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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>;
|
|
16109
|
+
apiV2DoctorsGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: 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>;
|
|
16108
16110
|
/**
|
|
16109
16111
|
*
|
|
16110
16112
|
* @summary Get all Doctors.
|
|
@@ -16112,6 +16114,8 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16112
16114
|
* @param {string} [languageCode]
|
|
16113
16115
|
* @param {boolean} [returnDefaultValue]
|
|
16114
16116
|
* @param {Array<string>} [ids]
|
|
16117
|
+
* @param {string} [specialtyId]
|
|
16118
|
+
* @param {boolean} [consultationEnabled]
|
|
16115
16119
|
* @param {string} [id]
|
|
16116
16120
|
* @param {string} [fullname]
|
|
16117
16121
|
* @param {string} [email]
|
|
@@ -16125,7 +16129,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16125
16129
|
* @param {*} [options] Override http request option.
|
|
16126
16130
|
* @throws {RequiredError}
|
|
16127
16131
|
*/
|
|
16128
|
-
apiV2DoctorsSimpleGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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>;
|
|
16132
|
+
apiV2DoctorsSimpleGet: (hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: 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>;
|
|
16129
16133
|
/**
|
|
16130
16134
|
*
|
|
16131
16135
|
* @param {string} slug
|
|
@@ -16152,7 +16156,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16152
16156
|
* @param {*} [options] Override http request option.
|
|
16153
16157
|
* @throws {RequiredError}
|
|
16154
16158
|
*/
|
|
16155
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
16159
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationsModel>>;
|
|
16156
16160
|
/**
|
|
16157
16161
|
*
|
|
16158
16162
|
* @summary Get doctor affiliation.
|
|
@@ -16161,7 +16165,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16161
16165
|
* @param {*} [options] Override http request option.
|
|
16162
16166
|
* @throws {RequiredError}
|
|
16163
16167
|
*/
|
|
16164
|
-
apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
16168
|
+
apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorAffiliationModel>>;
|
|
16165
16169
|
/**
|
|
16166
16170
|
*
|
|
16167
16171
|
* @summary Get DoctorCertificate.
|
|
@@ -16170,7 +16174,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16170
16174
|
* @param {*} [options] Override http request option.
|
|
16171
16175
|
* @throws {RequiredError}
|
|
16172
16176
|
*/
|
|
16173
|
-
apiV2DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
|
|
16177
|
+
apiV2DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificateModel>>;
|
|
16174
16178
|
/**
|
|
16175
16179
|
*
|
|
16176
16180
|
* @summary Delete DoctorCertificate.
|
|
@@ -16186,7 +16190,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16186
16190
|
* @param {*} [options] Override http request option.
|
|
16187
16191
|
* @throws {RequiredError}
|
|
16188
16192
|
*/
|
|
16189
|
-
apiV2DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificatesModel>>;
|
|
16193
|
+
apiV2DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string | undefined, certificateId?: string | undefined, certificate?: string | undefined, activeFrom?: Date | undefined, activeTo?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorCertificatesModel>>;
|
|
16190
16194
|
/**
|
|
16191
16195
|
*
|
|
16192
16196
|
* @summary Get DoctorEducation.
|
|
@@ -16195,7 +16199,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16195
16199
|
* @param {*} [options] Override http request option.
|
|
16196
16200
|
* @throws {RequiredError}
|
|
16197
16201
|
*/
|
|
16198
|
-
apiV2DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
|
|
16202
|
+
apiV2DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationModel>>;
|
|
16199
16203
|
/**
|
|
16200
16204
|
*
|
|
16201
16205
|
* @summary Get all DoctorEducations.
|
|
@@ -16211,7 +16215,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16211
16215
|
* @param {*} [options] Override http request option.
|
|
16212
16216
|
* @throws {RequiredError}
|
|
16213
16217
|
*/
|
|
16214
|
-
apiV2DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationsModel>>;
|
|
16218
|
+
apiV2DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string | undefined, educationId?: string | undefined, institution?: string | undefined, qualification?: string | undefined, graduationDate?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorEducationsModel>>;
|
|
16215
16219
|
/**
|
|
16216
16220
|
*
|
|
16217
16221
|
* @param {string} doctorId
|
|
@@ -16220,7 +16224,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16220
16224
|
* @param {*} [options] Override http request option.
|
|
16221
16225
|
* @throws {RequiredError}
|
|
16222
16226
|
*/
|
|
16223
|
-
apiV2DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16227
|
+
apiV2DoctorsDoctorIdGet(doctorId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16224
16228
|
/**
|
|
16225
16229
|
*
|
|
16226
16230
|
* @summary Get all DoctorMedias.
|
|
@@ -16233,7 +16237,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16233
16237
|
* @param {*} [options] Override http request option.
|
|
16234
16238
|
* @throws {RequiredError}
|
|
16235
16239
|
*/
|
|
16236
|
-
apiV2DoctorsDoctorIdMediasGet(doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
16240
|
+
apiV2DoctorsDoctorIdMediasGet(doctorId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
16237
16241
|
/**
|
|
16238
16242
|
*
|
|
16239
16243
|
* @summary Get DoctorMedia.
|
|
@@ -16242,7 +16246,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16242
16246
|
* @param {*} [options] Override http request option.
|
|
16243
16247
|
* @throws {RequiredError}
|
|
16244
16248
|
*/
|
|
16245
|
-
apiV2DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
16249
|
+
apiV2DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
16246
16250
|
/**
|
|
16247
16251
|
*
|
|
16248
16252
|
* @summary Get All DoctorPortfolios
|
|
@@ -16256,7 +16260,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16256
16260
|
* @param {*} [options] Override http request option.
|
|
16257
16261
|
* @throws {RequiredError}
|
|
16258
16262
|
*/
|
|
16259
|
-
apiV2DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfoliosModel>>;
|
|
16263
|
+
apiV2DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string | undefined, portfolioId?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfoliosModel>>;
|
|
16260
16264
|
/**
|
|
16261
16265
|
*
|
|
16262
16266
|
* @summary Get DoctorPortfolio.
|
|
@@ -16265,7 +16269,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16265
16269
|
* @param {*} [options] Override http request option.
|
|
16266
16270
|
* @throws {RequiredError}
|
|
16267
16271
|
*/
|
|
16268
|
-
apiV2DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
|
|
16272
|
+
apiV2DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorPortfolioModel>>;
|
|
16269
16273
|
/**
|
|
16270
16274
|
*
|
|
16271
16275
|
* @summary Get All DoctorSpecialties.
|
|
@@ -16279,7 +16283,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16279
16283
|
* @param {*} [options] Override http request option.
|
|
16280
16284
|
* @throws {RequiredError}
|
|
16281
16285
|
*/
|
|
16282
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
16286
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtiesModel>>;
|
|
16283
16287
|
/**
|
|
16284
16288
|
*
|
|
16285
16289
|
* @summary Get DoctorSpecialty
|
|
@@ -16288,7 +16292,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16288
16292
|
* @param {*} [options] Override http request option.
|
|
16289
16293
|
* @throws {RequiredError}
|
|
16290
16294
|
*/
|
|
16291
|
-
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16295
|
+
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16292
16296
|
/**
|
|
16293
16297
|
*
|
|
16294
16298
|
* @summary Get all Doctors.
|
|
@@ -16296,6 +16300,8 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16296
16300
|
* @param {string} [languageCode]
|
|
16297
16301
|
* @param {boolean} [returnDefaultValue]
|
|
16298
16302
|
* @param {Array<string>} [ids]
|
|
16303
|
+
* @param {string} [specialtyId]
|
|
16304
|
+
* @param {boolean} [consultationEnabled]
|
|
16299
16305
|
* @param {string} [id]
|
|
16300
16306
|
* @param {string} [fullname]
|
|
16301
16307
|
* @param {string} [email]
|
|
@@ -16309,7 +16315,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16309
16315
|
* @param {*} [options] Override http request option.
|
|
16310
16316
|
* @throws {RequiredError}
|
|
16311
16317
|
*/
|
|
16312
|
-
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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>>;
|
|
16318
|
+
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: 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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
16313
16319
|
/**
|
|
16314
16320
|
*
|
|
16315
16321
|
* @summary Get all Doctors.
|
|
@@ -16317,6 +16323,8 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16317
16323
|
* @param {string} [languageCode]
|
|
16318
16324
|
* @param {boolean} [returnDefaultValue]
|
|
16319
16325
|
* @param {Array<string>} [ids]
|
|
16326
|
+
* @param {string} [specialtyId]
|
|
16327
|
+
* @param {boolean} [consultationEnabled]
|
|
16320
16328
|
* @param {string} [id]
|
|
16321
16329
|
* @param {string} [fullname]
|
|
16322
16330
|
* @param {string} [email]
|
|
@@ -16330,7 +16338,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16330
16338
|
* @param {*} [options] Override http request option.
|
|
16331
16339
|
* @throws {RequiredError}
|
|
16332
16340
|
*/
|
|
16333
|
-
apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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<DoctorsSimpleModel>>;
|
|
16341
|
+
apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: 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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsSimpleModel>>;
|
|
16334
16342
|
/**
|
|
16335
16343
|
*
|
|
16336
16344
|
* @param {string} slug
|
|
@@ -16339,7 +16347,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16339
16347
|
* @param {*} [options] Override http request option.
|
|
16340
16348
|
* @throws {RequiredError}
|
|
16341
16349
|
*/
|
|
16342
|
-
apiV2DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16350
|
+
apiV2DoctorsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorModel>>;
|
|
16343
16351
|
};
|
|
16344
16352
|
/**
|
|
16345
16353
|
* DoctorsApi - factory interface
|
|
@@ -16501,6 +16509,8 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16501
16509
|
* @param {string} [languageCode]
|
|
16502
16510
|
* @param {boolean} [returnDefaultValue]
|
|
16503
16511
|
* @param {Array<string>} [ids]
|
|
16512
|
+
* @param {string} [specialtyId]
|
|
16513
|
+
* @param {boolean} [consultationEnabled]
|
|
16504
16514
|
* @param {string} [id]
|
|
16505
16515
|
* @param {string} [fullname]
|
|
16506
16516
|
* @param {string} [email]
|
|
@@ -16514,7 +16524,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16514
16524
|
* @param {*} [options] Override http request option.
|
|
16515
16525
|
* @throws {RequiredError}
|
|
16516
16526
|
*/
|
|
16517
|
-
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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>;
|
|
16527
|
+
apiV2DoctorsGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: 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>;
|
|
16518
16528
|
/**
|
|
16519
16529
|
*
|
|
16520
16530
|
* @summary Get all Doctors.
|
|
@@ -16522,6 +16532,8 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16522
16532
|
* @param {string} [languageCode]
|
|
16523
16533
|
* @param {boolean} [returnDefaultValue]
|
|
16524
16534
|
* @param {Array<string>} [ids]
|
|
16535
|
+
* @param {string} [specialtyId]
|
|
16536
|
+
* @param {boolean} [consultationEnabled]
|
|
16525
16537
|
* @param {string} [id]
|
|
16526
16538
|
* @param {string} [fullname]
|
|
16527
16539
|
* @param {string} [email]
|
|
@@ -16535,7 +16547,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16535
16547
|
* @param {*} [options] Override http request option.
|
|
16536
16548
|
* @throws {RequiredError}
|
|
16537
16549
|
*/
|
|
16538
|
-
apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: 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<DoctorsSimpleModel>;
|
|
16550
|
+
apiV2DoctorsSimpleGet(hospitalId?: string | undefined, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, ids?: string[] | undefined, specialtyId?: string | undefined, consultationEnabled?: 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<DoctorsSimpleModel>;
|
|
16539
16551
|
/**
|
|
16540
16552
|
*
|
|
16541
16553
|
* @param {string} slug
|
|
@@ -16565,7 +16577,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16565
16577
|
* @throws {RequiredError}
|
|
16566
16578
|
* @memberof DoctorsApi
|
|
16567
16579
|
*/
|
|
16568
|
-
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel>>;
|
|
16580
|
+
apiV2DoctorsDoctorIdAffiliationsGet(doctorId: string, hospitalName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationsModel, any>>;
|
|
16569
16581
|
/**
|
|
16570
16582
|
*
|
|
16571
16583
|
* @summary Get doctor affiliation.
|
|
@@ -16575,7 +16587,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16575
16587
|
* @throws {RequiredError}
|
|
16576
16588
|
* @memberof DoctorsApi
|
|
16577
16589
|
*/
|
|
16578
|
-
apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel>>;
|
|
16590
|
+
apiV2DoctorsDoctorIdAffiliationsHospitalIdGet(doctorId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorAffiliationModel, any>>;
|
|
16579
16591
|
/**
|
|
16580
16592
|
*
|
|
16581
16593
|
* @summary Get DoctorCertificate.
|
|
@@ -16585,7 +16597,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16585
16597
|
* @throws {RequiredError}
|
|
16586
16598
|
* @memberof DoctorsApi
|
|
16587
16599
|
*/
|
|
16588
|
-
apiV2DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel>>;
|
|
16600
|
+
apiV2DoctorsDoctorIdCertificatesCertificateIdGet(doctorId: string, certificateId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificateModel, any>>;
|
|
16589
16601
|
/**
|
|
16590
16602
|
*
|
|
16591
16603
|
* @summary Delete DoctorCertificate.
|
|
@@ -16602,7 +16614,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16602
16614
|
* @throws {RequiredError}
|
|
16603
16615
|
* @memberof DoctorsApi
|
|
16604
16616
|
*/
|
|
16605
|
-
apiV2DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string, certificateId?: string, certificate?: string, activeFrom?: Date, activeTo?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificatesModel>>;
|
|
16617
|
+
apiV2DoctorsDoctorIdCertificatesGet(doctorId: string, doctorName?: string, certificateId?: string, certificate?: string, activeFrom?: Date, activeTo?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorCertificatesModel, any>>;
|
|
16606
16618
|
/**
|
|
16607
16619
|
*
|
|
16608
16620
|
* @summary Get DoctorEducation.
|
|
@@ -16612,7 +16624,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16612
16624
|
* @throws {RequiredError}
|
|
16613
16625
|
* @memberof DoctorsApi
|
|
16614
16626
|
*/
|
|
16615
|
-
apiV2DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel>>;
|
|
16627
|
+
apiV2DoctorsDoctorIdEducationsEducationIdGet(doctorId: string, educationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationModel, any>>;
|
|
16616
16628
|
/**
|
|
16617
16629
|
*
|
|
16618
16630
|
* @summary Get all DoctorEducations.
|
|
@@ -16629,7 +16641,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16629
16641
|
* @throws {RequiredError}
|
|
16630
16642
|
* @memberof DoctorsApi
|
|
16631
16643
|
*/
|
|
16632
|
-
apiV2DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationsModel>>;
|
|
16644
|
+
apiV2DoctorsDoctorIdEducationsGet(doctorId: string, doctorName?: string, educationId?: string, institution?: string, qualification?: string, graduationDate?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorEducationsModel, any>>;
|
|
16633
16645
|
/**
|
|
16634
16646
|
*
|
|
16635
16647
|
* @param {string} doctorId
|
|
@@ -16639,7 +16651,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16639
16651
|
* @throws {RequiredError}
|
|
16640
16652
|
* @memberof DoctorsApi
|
|
16641
16653
|
*/
|
|
16642
|
-
apiV2DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16654
|
+
apiV2DoctorsDoctorIdGet(doctorId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel, any>>;
|
|
16643
16655
|
/**
|
|
16644
16656
|
*
|
|
16645
16657
|
* @summary Get all DoctorMedias.
|
|
@@ -16653,7 +16665,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16653
16665
|
* @throws {RequiredError}
|
|
16654
16666
|
* @memberof DoctorsApi
|
|
16655
16667
|
*/
|
|
16656
|
-
apiV2DoctorsDoctorIdMediasGet(doctorId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
16668
|
+
apiV2DoctorsDoctorIdMediasGet(doctorId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
16657
16669
|
/**
|
|
16658
16670
|
*
|
|
16659
16671
|
* @summary Get DoctorMedia.
|
|
@@ -16663,7 +16675,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16663
16675
|
* @throws {RequiredError}
|
|
16664
16676
|
* @memberof DoctorsApi
|
|
16665
16677
|
*/
|
|
16666
|
-
apiV2DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
16678
|
+
apiV2DoctorsDoctorIdMediasMediaIdGet(doctorId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
16667
16679
|
/**
|
|
16668
16680
|
*
|
|
16669
16681
|
* @summary Get All DoctorPortfolios
|
|
@@ -16678,7 +16690,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16678
16690
|
* @throws {RequiredError}
|
|
16679
16691
|
* @memberof DoctorsApi
|
|
16680
16692
|
*/
|
|
16681
|
-
apiV2DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfoliosModel>>;
|
|
16693
|
+
apiV2DoctorsDoctorIdPortfoliosGet(doctorId: string, doctorName?: string, portfolioId?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfoliosModel, any>>;
|
|
16682
16694
|
/**
|
|
16683
16695
|
*
|
|
16684
16696
|
* @summary Get DoctorPortfolio.
|
|
@@ -16688,7 +16700,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16688
16700
|
* @throws {RequiredError}
|
|
16689
16701
|
* @memberof DoctorsApi
|
|
16690
16702
|
*/
|
|
16691
|
-
apiV2DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel>>;
|
|
16703
|
+
apiV2DoctorsDoctorIdPortfoliosPortfolioIdGet(doctorId: string, portfolioId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorPortfolioModel, any>>;
|
|
16692
16704
|
/**
|
|
16693
16705
|
*
|
|
16694
16706
|
* @summary Get All DoctorSpecialties.
|
|
@@ -16703,7 +16715,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16703
16715
|
* @throws {RequiredError}
|
|
16704
16716
|
* @memberof DoctorsApi
|
|
16705
16717
|
*/
|
|
16706
|
-
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel>>;
|
|
16718
|
+
apiV2DoctorsDoctorIdSpecialtiesGet(doctorId: string, doctorName?: string, specialtyId?: string, specialtyName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtiesModel, any>>;
|
|
16707
16719
|
/**
|
|
16708
16720
|
*
|
|
16709
16721
|
* @summary Get DoctorSpecialty
|
|
@@ -16713,7 +16725,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16713
16725
|
* @throws {RequiredError}
|
|
16714
16726
|
* @memberof DoctorsApi
|
|
16715
16727
|
*/
|
|
16716
|
-
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
16728
|
+
apiV2DoctorsDoctorIdSpecialtiesSpecialtyIdGet(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel, any>>;
|
|
16717
16729
|
/**
|
|
16718
16730
|
*
|
|
16719
16731
|
* @summary Get all Doctors.
|
|
@@ -16721,6 +16733,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16721
16733
|
* @param {string} [languageCode]
|
|
16722
16734
|
* @param {boolean} [returnDefaultValue]
|
|
16723
16735
|
* @param {Array<string>} [ids]
|
|
16736
|
+
* @param {string} [specialtyId]
|
|
16737
|
+
* @param {boolean} [consultationEnabled]
|
|
16724
16738
|
* @param {string} [id]
|
|
16725
16739
|
* @param {string} [fullname]
|
|
16726
16740
|
* @param {string} [email]
|
|
@@ -16735,7 +16749,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16735
16749
|
* @throws {RequiredError}
|
|
16736
16750
|
* @memberof DoctorsApi
|
|
16737
16751
|
*/
|
|
16738
|
-
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<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>>;
|
|
16752
|
+
apiV2DoctorsGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel, any>>;
|
|
16739
16753
|
/**
|
|
16740
16754
|
*
|
|
16741
16755
|
* @summary Get all Doctors.
|
|
@@ -16743,6 +16757,8 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16743
16757
|
* @param {string} [languageCode]
|
|
16744
16758
|
* @param {boolean} [returnDefaultValue]
|
|
16745
16759
|
* @param {Array<string>} [ids]
|
|
16760
|
+
* @param {string} [specialtyId]
|
|
16761
|
+
* @param {boolean} [consultationEnabled]
|
|
16746
16762
|
* @param {string} [id]
|
|
16747
16763
|
* @param {string} [fullname]
|
|
16748
16764
|
* @param {string} [email]
|
|
@@ -16757,7 +16773,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16757
16773
|
* @throws {RequiredError}
|
|
16758
16774
|
* @memberof DoctorsApi
|
|
16759
16775
|
*/
|
|
16760
|
-
apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<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<DoctorsSimpleModel>>;
|
|
16776
|
+
apiV2DoctorsSimpleGet(hospitalId?: string, languageCode?: string, returnDefaultValue?: boolean, ids?: Array<string>, specialtyId?: string, consultationEnabled?: boolean, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsSimpleModel, any>>;
|
|
16761
16777
|
/**
|
|
16762
16778
|
*
|
|
16763
16779
|
* @param {string} slug
|
|
@@ -16767,7 +16783,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
16767
16783
|
* @throws {RequiredError}
|
|
16768
16784
|
* @memberof DoctorsApi
|
|
16769
16785
|
*/
|
|
16770
|
-
apiV2DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel>>;
|
|
16786
|
+
apiV2DoctorsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorModel, any>>;
|
|
16771
16787
|
}
|
|
16772
16788
|
/**
|
|
16773
16789
|
* FaqCategoriesApi - axios parameter creator
|
|
@@ -16830,7 +16846,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16830
16846
|
* @param {*} [options] Override http request option.
|
|
16831
16847
|
* @throws {RequiredError}
|
|
16832
16848
|
*/
|
|
16833
|
-
apiV2FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<FaqCategoryBreadCrumbModel>>>;
|
|
16849
|
+
apiV2FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<FaqCategoryBreadCrumbModel>>>;
|
|
16834
16850
|
/**
|
|
16835
16851
|
*
|
|
16836
16852
|
* @summary Get FaqCategory.
|
|
@@ -16839,7 +16855,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16839
16855
|
* @param {*} [options] Override http request option.
|
|
16840
16856
|
* @throws {RequiredError}
|
|
16841
16857
|
*/
|
|
16842
|
-
apiV2FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
16858
|
+
apiV2FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
16843
16859
|
/**
|
|
16844
16860
|
*
|
|
16845
16861
|
* @summary Get all FaqCategories.
|
|
@@ -16854,7 +16870,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16854
16870
|
* @param {*} [options] Override http request option.
|
|
16855
16871
|
* @throws {RequiredError}
|
|
16856
16872
|
*/
|
|
16857
|
-
apiV2FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoriesModel>>;
|
|
16873
|
+
apiV2FaqcategoriesGet(id?: string | undefined, parentId?: string | undefined, name?: string | undefined, description?: string | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoriesModel>>;
|
|
16858
16874
|
/**
|
|
16859
16875
|
*
|
|
16860
16876
|
* @summary Get FaqCategory by slug.
|
|
@@ -16863,7 +16879,7 @@ export declare const FaqCategoriesApiFp: (configuration?: Configuration | undefi
|
|
|
16863
16879
|
* @param {*} [options] Override http request option.
|
|
16864
16880
|
* @throws {RequiredError}
|
|
16865
16881
|
*/
|
|
16866
|
-
apiV2FaqcategoriesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
16882
|
+
apiV2FaqcategoriesSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqCategoryModel>>;
|
|
16867
16883
|
};
|
|
16868
16884
|
/**
|
|
16869
16885
|
* FaqCategoriesApi - factory interface
|
|
@@ -16929,7 +16945,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
16929
16945
|
* @throws {RequiredError}
|
|
16930
16946
|
* @memberof FaqCategoriesApi
|
|
16931
16947
|
*/
|
|
16932
|
-
apiV2FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryBreadCrumbModel[]>>;
|
|
16948
|
+
apiV2FaqcategoriesBreadcrumbsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryBreadCrumbModel[], any>>;
|
|
16933
16949
|
/**
|
|
16934
16950
|
*
|
|
16935
16951
|
* @summary Get FaqCategory.
|
|
@@ -16939,7 +16955,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
16939
16955
|
* @throws {RequiredError}
|
|
16940
16956
|
* @memberof FaqCategoriesApi
|
|
16941
16957
|
*/
|
|
16942
|
-
apiV2FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
16958
|
+
apiV2FaqcategoriesFaqCategoryIdGet(faqCategoryId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel, any>>;
|
|
16943
16959
|
/**
|
|
16944
16960
|
*
|
|
16945
16961
|
* @summary Get all FaqCategories.
|
|
@@ -16955,7 +16971,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
16955
16971
|
* @throws {RequiredError}
|
|
16956
16972
|
* @memberof FaqCategoriesApi
|
|
16957
16973
|
*/
|
|
16958
|
-
apiV2FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel>>;
|
|
16974
|
+
apiV2FaqcategoriesGet(id?: string, parentId?: string, name?: string, description?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoriesModel, any>>;
|
|
16959
16975
|
/**
|
|
16960
16976
|
*
|
|
16961
16977
|
* @summary Get FaqCategory by slug.
|
|
@@ -16965,7 +16981,7 @@ export declare class FaqCategoriesApi extends BaseAPI {
|
|
|
16965
16981
|
* @throws {RequiredError}
|
|
16966
16982
|
* @memberof FaqCategoriesApi
|
|
16967
16983
|
*/
|
|
16968
|
-
apiV2FaqcategoriesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel>>;
|
|
16984
|
+
apiV2FaqcategoriesSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqCategoryModel, any>>;
|
|
16969
16985
|
}
|
|
16970
16986
|
/**
|
|
16971
16987
|
* FaqsApi - axios parameter creator
|
|
@@ -17044,7 +17060,7 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
17044
17060
|
* @param {*} [options] Override http request option.
|
|
17045
17061
|
* @throws {RequiredError}
|
|
17046
17062
|
*/
|
|
17047
|
-
apiV2FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
17063
|
+
apiV2FaqsFaqIdGet(faqId: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
17048
17064
|
/**
|
|
17049
17065
|
*
|
|
17050
17066
|
* @summary Get all FaqMedias.
|
|
@@ -17057,7 +17073,7 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
17057
17073
|
* @param {*} [options] Override http request option.
|
|
17058
17074
|
* @throws {RequiredError}
|
|
17059
17075
|
*/
|
|
17060
|
-
apiV2FaqsFaqIdMediasGet(faqId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
17076
|
+
apiV2FaqsFaqIdMediasGet(faqId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
17061
17077
|
/**
|
|
17062
17078
|
*
|
|
17063
17079
|
* @summary Get FaqMedia.
|
|
@@ -17066,7 +17082,7 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
17066
17082
|
* @param {*} [options] Override http request option.
|
|
17067
17083
|
* @throws {RequiredError}
|
|
17068
17084
|
*/
|
|
17069
|
-
apiV2FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
17085
|
+
apiV2FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
17070
17086
|
/**
|
|
17071
17087
|
*
|
|
17072
17088
|
* @summary Get all Faqs.
|
|
@@ -17084,7 +17100,7 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
17084
17100
|
* @param {*} [options] Override http request option.
|
|
17085
17101
|
* @throws {RequiredError}
|
|
17086
17102
|
*/
|
|
17087
|
-
apiV2FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
|
|
17103
|
+
apiV2FaqsGet(id?: string | undefined, title?: string | undefined, content?: string | undefined, categoryId?: string | undefined, hospitalId?: string | undefined, hospitalName?: string | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqsModel>>;
|
|
17088
17104
|
/**
|
|
17089
17105
|
*
|
|
17090
17106
|
* @summary Get faq by slug.
|
|
@@ -17093,7 +17109,7 @@ export declare const FaqsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
17093
17109
|
* @param {*} [options] Override http request option.
|
|
17094
17110
|
* @throws {RequiredError}
|
|
17095
17111
|
*/
|
|
17096
|
-
apiV2FaqsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
17112
|
+
apiV2FaqsSlugGet(slug: string, languageCode?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FaqModel>>;
|
|
17097
17113
|
};
|
|
17098
17114
|
/**
|
|
17099
17115
|
* FaqsApi - factory interface
|
|
@@ -17175,7 +17191,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
17175
17191
|
* @throws {RequiredError}
|
|
17176
17192
|
* @memberof FaqsApi
|
|
17177
17193
|
*/
|
|
17178
|
-
apiV2FaqsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
17194
|
+
apiV2FaqsFaqIdGet(faqId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel, any>>;
|
|
17179
17195
|
/**
|
|
17180
17196
|
*
|
|
17181
17197
|
* @summary Get all FaqMedias.
|
|
@@ -17189,7 +17205,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
17189
17205
|
* @throws {RequiredError}
|
|
17190
17206
|
* @memberof FaqsApi
|
|
17191
17207
|
*/
|
|
17192
|
-
apiV2FaqsFaqIdMediasGet(faqId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
17208
|
+
apiV2FaqsFaqIdMediasGet(faqId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
17193
17209
|
/**
|
|
17194
17210
|
*
|
|
17195
17211
|
* @summary Get FaqMedia.
|
|
@@ -17199,7 +17215,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
17199
17215
|
* @throws {RequiredError}
|
|
17200
17216
|
* @memberof FaqsApi
|
|
17201
17217
|
*/
|
|
17202
|
-
apiV2FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
17218
|
+
apiV2FaqsFaqIdMediasMediaIdGet(faqId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
17203
17219
|
/**
|
|
17204
17220
|
*
|
|
17205
17221
|
* @summary Get all Faqs.
|
|
@@ -17218,7 +17234,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
17218
17234
|
* @throws {RequiredError}
|
|
17219
17235
|
* @memberof FaqsApi
|
|
17220
17236
|
*/
|
|
17221
|
-
apiV2FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel>>;
|
|
17237
|
+
apiV2FaqsGet(id?: string, title?: string, content?: string, categoryId?: string, hospitalId?: string, hospitalName?: string, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqsModel, any>>;
|
|
17222
17238
|
/**
|
|
17223
17239
|
*
|
|
17224
17240
|
* @summary Get faq by slug.
|
|
@@ -17228,7 +17244,7 @@ export declare class FaqsApi extends BaseAPI {
|
|
|
17228
17244
|
* @throws {RequiredError}
|
|
17229
17245
|
* @memberof FaqsApi
|
|
17230
17246
|
*/
|
|
17231
|
-
apiV2FaqsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel>>;
|
|
17247
|
+
apiV2FaqsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FaqModel, any>>;
|
|
17232
17248
|
}
|
|
17233
17249
|
/**
|
|
17234
17250
|
* HospitalsApi - axios parameter creator
|
|
@@ -17555,7 +17571,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17555
17571
|
* @param {*} [options] Override http request option.
|
|
17556
17572
|
* @throws {RequiredError}
|
|
17557
17573
|
*/
|
|
17558
|
-
apiV2HospitalsGet(hospitalId?: string | undefined, name?: 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>>;
|
|
17574
|
+
apiV2HospitalsGet(hospitalId?: string | undefined, name?: 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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
17559
17575
|
/**
|
|
17560
17576
|
*
|
|
17561
17577
|
* @summary Get HospitalAccreditation.
|
|
@@ -17564,7 +17580,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17564
17580
|
* @param {*} [options] Override http request option.
|
|
17565
17581
|
* @throws {RequiredError}
|
|
17566
17582
|
*/
|
|
17567
|
-
apiV2HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalAccreditationModel>>;
|
|
17583
|
+
apiV2HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalAccreditationModel>>;
|
|
17568
17584
|
/**
|
|
17569
17585
|
*
|
|
17570
17586
|
* @summary Get all HospitalAccreditations.
|
|
@@ -17578,7 +17594,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17578
17594
|
* @param {*} [options] Override http request option.
|
|
17579
17595
|
* @throws {RequiredError}
|
|
17580
17596
|
*/
|
|
17581
|
-
apiV2HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string | undefined, accreditationId?: string | undefined, accreditationName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalAccreditationsModel>>;
|
|
17597
|
+
apiV2HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string | undefined, accreditationId?: string | undefined, accreditationName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalAccreditationsModel>>;
|
|
17582
17598
|
/**
|
|
17583
17599
|
*
|
|
17584
17600
|
* @summary Get HospitalEquipment.
|
|
@@ -17587,7 +17603,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17587
17603
|
* @param {*} [options] Override http request option.
|
|
17588
17604
|
* @throws {RequiredError}
|
|
17589
17605
|
*/
|
|
17590
|
-
apiV2HospitalsHospitalIdEquipmentsEquipmentIdGet(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEquipmentModel>>;
|
|
17606
|
+
apiV2HospitalsHospitalIdEquipmentsEquipmentIdGet(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEquipmentModel>>;
|
|
17591
17607
|
/**
|
|
17592
17608
|
*
|
|
17593
17609
|
* @summary Get all EquipmentMedia.
|
|
@@ -17601,7 +17617,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17601
17617
|
* @param {*} [options] Override http request option.
|
|
17602
17618
|
* @throws {RequiredError}
|
|
17603
17619
|
*/
|
|
17604
|
-
apiV2HospitalsHospitalIdEquipmentsEquipmentIdMediasGet(hospitalId: string, equipmentId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
17620
|
+
apiV2HospitalsHospitalIdEquipmentsEquipmentIdMediasGet(hospitalId: string, equipmentId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
17605
17621
|
/**
|
|
17606
17622
|
*
|
|
17607
17623
|
* @summary Get EquipmentMedia.
|
|
@@ -17611,7 +17627,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17611
17627
|
* @param {*} [options] Override http request option.
|
|
17612
17628
|
* @throws {RequiredError}
|
|
17613
17629
|
*/
|
|
17614
|
-
apiV2HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdGet(hospitalId: string, equipmentId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
17630
|
+
apiV2HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdGet(hospitalId: string, equipmentId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
17615
17631
|
/**
|
|
17616
17632
|
*
|
|
17617
17633
|
* @summary Get all HospitalEquipments.
|
|
@@ -17628,7 +17644,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17628
17644
|
* @param {*} [options] Override http request option.
|
|
17629
17645
|
* @throws {RequiredError}
|
|
17630
17646
|
*/
|
|
17631
|
-
apiV2HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string | undefined, name?: string | undefined, hospitalId2?: string | undefined, hospitalName?: string | undefined, description?: string | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEquipmentsModel>>;
|
|
17647
|
+
apiV2HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string | undefined, name?: string | undefined, hospitalId2?: string | undefined, hospitalName?: string | undefined, description?: string | undefined, created?: Date | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEquipmentsModel>>;
|
|
17632
17648
|
/**
|
|
17633
17649
|
*
|
|
17634
17650
|
* @summary Get HospitalEvaluation.
|
|
@@ -17637,7 +17653,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17637
17653
|
* @param {*} [options] Override http request option.
|
|
17638
17654
|
* @throws {RequiredError}
|
|
17639
17655
|
*/
|
|
17640
|
-
apiV2HospitalsHospitalIdEvaluationsEvaluationIdGet(hospitalId: string, evaluationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEvaluationModel>>;
|
|
17656
|
+
apiV2HospitalsHospitalIdEvaluationsEvaluationIdGet(hospitalId: string, evaluationId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEvaluationModel>>;
|
|
17641
17657
|
/**
|
|
17642
17658
|
*
|
|
17643
17659
|
* @summary Get all HospitalEvaluations.
|
|
@@ -17651,7 +17667,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17651
17667
|
* @param {*} [options] Override http request option.
|
|
17652
17668
|
* @throws {RequiredError}
|
|
17653
17669
|
*/
|
|
17654
|
-
apiV2HospitalsHospitalIdEvaluationsGet(hospitalId: string, id?: string | undefined, name?: string | undefined, stars?: number | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEvaluationsModel>>;
|
|
17670
|
+
apiV2HospitalsHospitalIdEvaluationsGet(hospitalId: string, id?: string | undefined, name?: string | undefined, stars?: number | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalEvaluationsModel>>;
|
|
17655
17671
|
/**
|
|
17656
17672
|
*
|
|
17657
17673
|
* @param {string} hospitalId
|
|
@@ -17660,7 +17676,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17660
17676
|
* @param {*} [options] Override http request option.
|
|
17661
17677
|
* @throws {RequiredError}
|
|
17662
17678
|
*/
|
|
17663
|
-
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
17679
|
+
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
17664
17680
|
/**
|
|
17665
17681
|
*
|
|
17666
17682
|
* @summary Get all HospitalMedias.
|
|
@@ -17673,7 +17689,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17673
17689
|
* @param {*} [options] Override http request option.
|
|
17674
17690
|
* @throws {RequiredError}
|
|
17675
17691
|
*/
|
|
17676
|
-
apiV2HospitalsHospitalIdMediasGet(hospitalId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
17692
|
+
apiV2HospitalsHospitalIdMediasGet(hospitalId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
17677
17693
|
/**
|
|
17678
17694
|
*
|
|
17679
17695
|
* @summary Get HospitalMedia.
|
|
@@ -17682,7 +17698,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17682
17698
|
* @param {*} [options] Override http request option.
|
|
17683
17699
|
* @throws {RequiredError}
|
|
17684
17700
|
*/
|
|
17685
|
-
apiV2HospitalsHospitalIdMediasMediaIdGet(hospitalId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
17701
|
+
apiV2HospitalsHospitalIdMediasMediaIdGet(hospitalId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
17686
17702
|
/**
|
|
17687
17703
|
*
|
|
17688
17704
|
* @summary Get all HospitalSpecialties.
|
|
@@ -17704,7 +17720,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17704
17720
|
* @param {*} [options] Override http request option.
|
|
17705
17721
|
* @throws {RequiredError}
|
|
17706
17722
|
*/
|
|
17707
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
17723
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string | undefined, hospitalSlug?: string | undefined, specialtyId?: string | undefined, specialtyName?: string | undefined, specialtyTypeId?: string | undefined, title?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, showHidden?: boolean | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtiesModel>>;
|
|
17708
17724
|
/**
|
|
17709
17725
|
*
|
|
17710
17726
|
* @summary Get HospitalSpecialty.
|
|
@@ -17716,7 +17732,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17716
17732
|
* @param {*} [options] Override http request option.
|
|
17717
17733
|
* @throws {RequiredError}
|
|
17718
17734
|
*/
|
|
17719
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
17735
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
17720
17736
|
/**
|
|
17721
17737
|
*
|
|
17722
17738
|
* @summary Get all HospitalServices.
|
|
@@ -17742,7 +17758,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17742
17758
|
* @param {*} [options] Override http request option.
|
|
17743
17759
|
* @throws {RequiredError}
|
|
17744
17760
|
*/
|
|
17745
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(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>>;
|
|
17761
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
|
|
17746
17762
|
/**
|
|
17747
17763
|
*
|
|
17748
17764
|
* @summary Get HospitalService.
|
|
@@ -17754,7 +17770,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17754
17770
|
* @param {*} [options] Override http request option.
|
|
17755
17771
|
* @throws {RequiredError}
|
|
17756
17772
|
*/
|
|
17757
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
17773
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
17758
17774
|
/**
|
|
17759
17775
|
*
|
|
17760
17776
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -17769,7 +17785,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17769
17785
|
* @param {*} [options] Override http request option.
|
|
17770
17786
|
* @throws {RequiredError}
|
|
17771
17787
|
*/
|
|
17772
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
17788
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
17773
17789
|
/**
|
|
17774
17790
|
*
|
|
17775
17791
|
* @summary Get HospitalServiceMedia.
|
|
@@ -17780,7 +17796,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17780
17796
|
* @param {*} [options] Override http request option.
|
|
17781
17797
|
* @throws {RequiredError}
|
|
17782
17798
|
*/
|
|
17783
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
17799
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
17784
17800
|
/**
|
|
17785
17801
|
*
|
|
17786
17802
|
* @summary Get HospitalSpecialty by Specialty slug
|
|
@@ -17792,7 +17808,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17792
17808
|
* @param {*} [options] Override http request option.
|
|
17793
17809
|
* @throws {RequiredError}
|
|
17794
17810
|
*/
|
|
17795
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
17811
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, includeServices?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalSpecialtyModel>>;
|
|
17796
17812
|
/**
|
|
17797
17813
|
*
|
|
17798
17814
|
* @summary Get all Hospitals.
|
|
@@ -17815,7 +17831,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17815
17831
|
* @param {*} [options] Override http request option.
|
|
17816
17832
|
* @throws {RequiredError}
|
|
17817
17833
|
*/
|
|
17818
|
-
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: 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>>;
|
|
17834
|
+
apiV2HospitalsSimpleGet(hospitalId?: string | undefined, name?: 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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsSimpleModel>>;
|
|
17819
17835
|
/**
|
|
17820
17836
|
*
|
|
17821
17837
|
* @param {string} slug
|
|
@@ -17824,7 +17840,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17824
17840
|
* @param {*} [options] Override http request option.
|
|
17825
17841
|
* @throws {RequiredError}
|
|
17826
17842
|
*/
|
|
17827
|
-
apiV2HospitalsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
17843
|
+
apiV2HospitalsSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalModel>>;
|
|
17828
17844
|
};
|
|
17829
17845
|
/**
|
|
17830
17846
|
* HospitalsApi - factory interface
|
|
@@ -18154,7 +18170,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18154
18170
|
* @throws {RequiredError}
|
|
18155
18171
|
* @memberof HospitalsApi
|
|
18156
18172
|
*/
|
|
18157
|
-
apiV2HospitalsGet(hospitalId?: string, name?: 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>>;
|
|
18173
|
+
apiV2HospitalsGet(hospitalId?: string, name?: 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, any>>;
|
|
18158
18174
|
/**
|
|
18159
18175
|
*
|
|
18160
18176
|
* @summary Get HospitalAccreditation.
|
|
@@ -18164,7 +18180,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18164
18180
|
* @throws {RequiredError}
|
|
18165
18181
|
* @memberof HospitalsApi
|
|
18166
18182
|
*/
|
|
18167
|
-
apiV2HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationModel>>;
|
|
18183
|
+
apiV2HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationModel, any>>;
|
|
18168
18184
|
/**
|
|
18169
18185
|
*
|
|
18170
18186
|
* @summary Get all HospitalAccreditations.
|
|
@@ -18179,7 +18195,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18179
18195
|
* @throws {RequiredError}
|
|
18180
18196
|
* @memberof HospitalsApi
|
|
18181
18197
|
*/
|
|
18182
|
-
apiV2HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string, accreditationId?: string, accreditationName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationsModel>>;
|
|
18198
|
+
apiV2HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string, accreditationId?: string, accreditationName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationsModel, any>>;
|
|
18183
18199
|
/**
|
|
18184
18200
|
*
|
|
18185
18201
|
* @summary Get HospitalEquipment.
|
|
@@ -18189,7 +18205,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18189
18205
|
* @throws {RequiredError}
|
|
18190
18206
|
* @memberof HospitalsApi
|
|
18191
18207
|
*/
|
|
18192
|
-
apiV2HospitalsHospitalIdEquipmentsEquipmentIdGet(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentModel>>;
|
|
18208
|
+
apiV2HospitalsHospitalIdEquipmentsEquipmentIdGet(hospitalId: string, equipmentId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentModel, any>>;
|
|
18193
18209
|
/**
|
|
18194
18210
|
*
|
|
18195
18211
|
* @summary Get all EquipmentMedia.
|
|
@@ -18204,7 +18220,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18204
18220
|
* @throws {RequiredError}
|
|
18205
18221
|
* @memberof HospitalsApi
|
|
18206
18222
|
*/
|
|
18207
|
-
apiV2HospitalsHospitalIdEquipmentsEquipmentIdMediasGet(hospitalId: string, equipmentId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
18223
|
+
apiV2HospitalsHospitalIdEquipmentsEquipmentIdMediasGet(hospitalId: string, equipmentId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
18208
18224
|
/**
|
|
18209
18225
|
*
|
|
18210
18226
|
* @summary Get EquipmentMedia.
|
|
@@ -18215,7 +18231,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18215
18231
|
* @throws {RequiredError}
|
|
18216
18232
|
* @memberof HospitalsApi
|
|
18217
18233
|
*/
|
|
18218
|
-
apiV2HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdGet(hospitalId: string, equipmentId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
18234
|
+
apiV2HospitalsHospitalIdEquipmentsEquipmentIdMediasMediaIdGet(hospitalId: string, equipmentId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
18219
18235
|
/**
|
|
18220
18236
|
*
|
|
18221
18237
|
* @summary Get all HospitalEquipments.
|
|
@@ -18233,7 +18249,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18233
18249
|
* @throws {RequiredError}
|
|
18234
18250
|
* @memberof HospitalsApi
|
|
18235
18251
|
*/
|
|
18236
|
-
apiV2HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string, name?: string, hospitalId2?: string, hospitalName?: string, description?: string, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentsModel>>;
|
|
18252
|
+
apiV2HospitalsHospitalIdEquipmentsGet(hospitalId: string, id?: string, name?: string, hospitalId2?: string, hospitalName?: string, description?: string, created?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEquipmentsModel, any>>;
|
|
18237
18253
|
/**
|
|
18238
18254
|
*
|
|
18239
18255
|
* @summary Get HospitalEvaluation.
|
|
@@ -18243,7 +18259,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18243
18259
|
* @throws {RequiredError}
|
|
18244
18260
|
* @memberof HospitalsApi
|
|
18245
18261
|
*/
|
|
18246
|
-
apiV2HospitalsHospitalIdEvaluationsEvaluationIdGet(hospitalId: string, evaluationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEvaluationModel>>;
|
|
18262
|
+
apiV2HospitalsHospitalIdEvaluationsEvaluationIdGet(hospitalId: string, evaluationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEvaluationModel, any>>;
|
|
18247
18263
|
/**
|
|
18248
18264
|
*
|
|
18249
18265
|
* @summary Get all HospitalEvaluations.
|
|
@@ -18258,7 +18274,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18258
18274
|
* @throws {RequiredError}
|
|
18259
18275
|
* @memberof HospitalsApi
|
|
18260
18276
|
*/
|
|
18261
|
-
apiV2HospitalsHospitalIdEvaluationsGet(hospitalId: string, id?: string, name?: string, stars?: number, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEvaluationsModel>>;
|
|
18277
|
+
apiV2HospitalsHospitalIdEvaluationsGet(hospitalId: string, id?: string, name?: string, stars?: number, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalEvaluationsModel, any>>;
|
|
18262
18278
|
/**
|
|
18263
18279
|
*
|
|
18264
18280
|
* @param {string} hospitalId
|
|
@@ -18268,7 +18284,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18268
18284
|
* @throws {RequiredError}
|
|
18269
18285
|
* @memberof HospitalsApi
|
|
18270
18286
|
*/
|
|
18271
|
-
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
18287
|
+
apiV2HospitalsHospitalIdGet(hospitalId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel, any>>;
|
|
18272
18288
|
/**
|
|
18273
18289
|
*
|
|
18274
18290
|
* @summary Get all HospitalMedias.
|
|
@@ -18282,7 +18298,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18282
18298
|
* @throws {RequiredError}
|
|
18283
18299
|
* @memberof HospitalsApi
|
|
18284
18300
|
*/
|
|
18285
|
-
apiV2HospitalsHospitalIdMediasGet(hospitalId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
18301
|
+
apiV2HospitalsHospitalIdMediasGet(hospitalId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
18286
18302
|
/**
|
|
18287
18303
|
*
|
|
18288
18304
|
* @summary Get HospitalMedia.
|
|
@@ -18292,7 +18308,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18292
18308
|
* @throws {RequiredError}
|
|
18293
18309
|
* @memberof HospitalsApi
|
|
18294
18310
|
*/
|
|
18295
|
-
apiV2HospitalsHospitalIdMediasMediaIdGet(hospitalId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
18311
|
+
apiV2HospitalsHospitalIdMediasMediaIdGet(hospitalId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
18296
18312
|
/**
|
|
18297
18313
|
*
|
|
18298
18314
|
* @summary Get all HospitalSpecialties.
|
|
@@ -18315,7 +18331,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18315
18331
|
* @throws {RequiredError}
|
|
18316
18332
|
* @memberof HospitalsApi
|
|
18317
18333
|
*/
|
|
18318
|
-
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel>>;
|
|
18334
|
+
apiV2HospitalsHospitalIdSpecialtiesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, title?: string, marketingType?: MarketingType, languageCode?: string, showHidden?: boolean, returnDefaultValue?: boolean, includeServices?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtiesModel, any>>;
|
|
18319
18335
|
/**
|
|
18320
18336
|
*
|
|
18321
18337
|
* @summary Get HospitalSpecialty.
|
|
@@ -18328,7 +18344,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18328
18344
|
* @throws {RequiredError}
|
|
18329
18345
|
* @memberof HospitalsApi
|
|
18330
18346
|
*/
|
|
18331
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
18347
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdGet(hospitalId: string, specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
18332
18348
|
/**
|
|
18333
18349
|
*
|
|
18334
18350
|
* @summary Get all HospitalServices.
|
|
@@ -18355,7 +18371,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18355
18371
|
* @throws {RequiredError}
|
|
18356
18372
|
* @memberof HospitalsApi
|
|
18357
18373
|
*/
|
|
18358
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(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>>;
|
|
18374
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesGet(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, any>>;
|
|
18359
18375
|
/**
|
|
18360
18376
|
*
|
|
18361
18377
|
* @summary Get HospitalService.
|
|
@@ -18368,7 +18384,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18368
18384
|
* @throws {RequiredError}
|
|
18369
18385
|
* @memberof HospitalsApi
|
|
18370
18386
|
*/
|
|
18371
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
18387
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdGet(hospitalId: string, specialtyId: string, serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel, any>>;
|
|
18372
18388
|
/**
|
|
18373
18389
|
*
|
|
18374
18390
|
* @summary Get all HospitalServiceMedias.
|
|
@@ -18384,7 +18400,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18384
18400
|
* @throws {RequiredError}
|
|
18385
18401
|
* @memberof HospitalsApi
|
|
18386
18402
|
*/
|
|
18387
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
18403
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasGet(hospitalId: string, specialtyId: string, serviceId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
18388
18404
|
/**
|
|
18389
18405
|
*
|
|
18390
18406
|
* @summary Get HospitalServiceMedia.
|
|
@@ -18396,7 +18412,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18396
18412
|
* @throws {RequiredError}
|
|
18397
18413
|
* @memberof HospitalsApi
|
|
18398
18414
|
*/
|
|
18399
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
18415
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
18400
18416
|
/**
|
|
18401
18417
|
*
|
|
18402
18418
|
* @summary Get HospitalSpecialty by Specialty slug
|
|
@@ -18409,7 +18425,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18409
18425
|
* @throws {RequiredError}
|
|
18410
18426
|
* @memberof HospitalsApi
|
|
18411
18427
|
*/
|
|
18412
|
-
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel>>;
|
|
18428
|
+
apiV2HospitalsHospitalIdSpecialtiesSpecialtySlugGet(hospitalId: string, specialtySlug: string, languageCode?: string, returnDefaultValue?: boolean, includeServices?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalSpecialtyModel, any>>;
|
|
18413
18429
|
/**
|
|
18414
18430
|
*
|
|
18415
18431
|
* @summary Get all Hospitals.
|
|
@@ -18433,7 +18449,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18433
18449
|
* @throws {RequiredError}
|
|
18434
18450
|
* @memberof HospitalsApi
|
|
18435
18451
|
*/
|
|
18436
|
-
apiV2HospitalsSimpleGet(hospitalId?: string, name?: 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>>;
|
|
18452
|
+
apiV2HospitalsSimpleGet(hospitalId?: string, name?: 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, any>>;
|
|
18437
18453
|
/**
|
|
18438
18454
|
*
|
|
18439
18455
|
* @param {string} slug
|
|
@@ -18443,7 +18459,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18443
18459
|
* @throws {RequiredError}
|
|
18444
18460
|
* @memberof HospitalsApi
|
|
18445
18461
|
*/
|
|
18446
|
-
apiV2HospitalsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel>>;
|
|
18462
|
+
apiV2HospitalsSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalModel, any>>;
|
|
18447
18463
|
}
|
|
18448
18464
|
/**
|
|
18449
18465
|
* ImagesApi - axios parameter creator
|
|
@@ -18467,7 +18483,7 @@ export declare const ImagesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
18467
18483
|
* @param {*} [options] Override http request option.
|
|
18468
18484
|
* @throws {RequiredError}
|
|
18469
18485
|
*/
|
|
18470
|
-
apiV2ImagesPost(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<MediaModel>>>;
|
|
18486
|
+
apiV2ImagesPost(options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<MediaModel>>>;
|
|
18471
18487
|
};
|
|
18472
18488
|
/**
|
|
18473
18489
|
* ImagesApi - factory interface
|
|
@@ -18494,7 +18510,7 @@ export declare class ImagesApi extends BaseAPI {
|
|
|
18494
18510
|
* @throws {RequiredError}
|
|
18495
18511
|
* @memberof ImagesApi
|
|
18496
18512
|
*/
|
|
18497
|
-
apiV2ImagesPost(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel[]>>;
|
|
18513
|
+
apiV2ImagesPost(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel[], any>>;
|
|
18498
18514
|
}
|
|
18499
18515
|
/**
|
|
18500
18516
|
* LanguagesApi - axios parameter creator
|
|
@@ -18544,7 +18560,7 @@ export declare const LanguagesApiFp: (configuration?: Configuration | undefined)
|
|
|
18544
18560
|
* @param {*} [options] Override http request option.
|
|
18545
18561
|
* @throws {RequiredError}
|
|
18546
18562
|
*/
|
|
18547
|
-
apiV2LanguagesCodeGet(code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
18563
|
+
apiV2LanguagesCodeGet(code: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
18548
18564
|
/**
|
|
18549
18565
|
*
|
|
18550
18566
|
* @summary Get all Languages.
|
|
@@ -18558,7 +18574,7 @@ export declare const LanguagesApiFp: (configuration?: Configuration | undefined)
|
|
|
18558
18574
|
* @param {*} [options] Override http request option.
|
|
18559
18575
|
* @throws {RequiredError}
|
|
18560
18576
|
*/
|
|
18561
|
-
apiV2LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguagesModel>>;
|
|
18577
|
+
apiV2LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguagesModel>>;
|
|
18562
18578
|
/**
|
|
18563
18579
|
*
|
|
18564
18580
|
* @summary Get Language.
|
|
@@ -18566,7 +18582,7 @@ export declare const LanguagesApiFp: (configuration?: Configuration | undefined)
|
|
|
18566
18582
|
* @param {*} [options] Override http request option.
|
|
18567
18583
|
* @throws {RequiredError}
|
|
18568
18584
|
*/
|
|
18569
|
-
apiV2LanguagesIdGet(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
18585
|
+
apiV2LanguagesIdGet(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
18570
18586
|
};
|
|
18571
18587
|
/**
|
|
18572
18588
|
* LanguagesApi - factory interface
|
|
@@ -18619,7 +18635,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
18619
18635
|
* @throws {RequiredError}
|
|
18620
18636
|
* @memberof LanguagesApi
|
|
18621
18637
|
*/
|
|
18622
|
-
apiV2LanguagesCodeGet(code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
18638
|
+
apiV2LanguagesCodeGet(code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel, any>>;
|
|
18623
18639
|
/**
|
|
18624
18640
|
*
|
|
18625
18641
|
* @summary Get all Languages.
|
|
@@ -18634,7 +18650,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
18634
18650
|
* @throws {RequiredError}
|
|
18635
18651
|
* @memberof LanguagesApi
|
|
18636
18652
|
*/
|
|
18637
|
-
apiV2LanguagesGet(id?: string, name?: string, code?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
18653
|
+
apiV2LanguagesGet(id?: string, name?: string, code?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel, any>>;
|
|
18638
18654
|
/**
|
|
18639
18655
|
*
|
|
18640
18656
|
* @summary Get Language.
|
|
@@ -18643,7 +18659,7 @@ export declare class LanguagesApi extends BaseAPI {
|
|
|
18643
18659
|
* @throws {RequiredError}
|
|
18644
18660
|
* @memberof LanguagesApi
|
|
18645
18661
|
*/
|
|
18646
|
-
apiV2LanguagesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
18662
|
+
apiV2LanguagesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel, any>>;
|
|
18647
18663
|
}
|
|
18648
18664
|
/**
|
|
18649
18665
|
* MembershipsApi - axios parameter creator
|
|
@@ -18706,7 +18722,7 @@ export declare const MembershipsApiFp: (configuration?: Configuration | undefine
|
|
|
18706
18722
|
* @param {*} [options] Override http request option.
|
|
18707
18723
|
* @throws {RequiredError}
|
|
18708
18724
|
*/
|
|
18709
|
-
apiV2MembershipsGet(id?: string | undefined, planId?: string | undefined, planName?: string | undefined, ownerId?: string | undefined, ownerName?: string | undefined, isActive?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MembershipsModel>>;
|
|
18725
|
+
apiV2MembershipsGet(id?: string | undefined, planId?: string | undefined, planName?: string | undefined, ownerId?: string | undefined, ownerName?: string | undefined, isActive?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MembershipsModel>>;
|
|
18710
18726
|
/**
|
|
18711
18727
|
*
|
|
18712
18728
|
* @summary Get membership.
|
|
@@ -18714,7 +18730,7 @@ export declare const MembershipsApiFp: (configuration?: Configuration | undefine
|
|
|
18714
18730
|
* @param {*} [options] Override http request option.
|
|
18715
18731
|
* @throws {RequiredError}
|
|
18716
18732
|
*/
|
|
18717
|
-
apiV2MembershipsMembershipIdGet(membershipId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MembershipModel>>;
|
|
18733
|
+
apiV2MembershipsMembershipIdGet(membershipId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MembershipModel>>;
|
|
18718
18734
|
/**
|
|
18719
18735
|
*
|
|
18720
18736
|
* @summary Get all members.
|
|
@@ -18725,7 +18741,7 @@ export declare const MembershipsApiFp: (configuration?: Configuration | undefine
|
|
|
18725
18741
|
* @param {*} [options] Override http request option.
|
|
18726
18742
|
* @throws {RequiredError}
|
|
18727
18743
|
*/
|
|
18728
|
-
apiV2MembershipsMembershipIdMembersGet(membershipId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MembersModel>>;
|
|
18744
|
+
apiV2MembershipsMembershipIdMembersGet(membershipId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MembersModel>>;
|
|
18729
18745
|
};
|
|
18730
18746
|
/**
|
|
18731
18747
|
* MembershipsApi - factory interface
|
|
@@ -18791,7 +18807,7 @@ export declare class MembershipsApi extends BaseAPI {
|
|
|
18791
18807
|
* @throws {RequiredError}
|
|
18792
18808
|
* @memberof MembershipsApi
|
|
18793
18809
|
*/
|
|
18794
|
-
apiV2MembershipsGet(id?: string, planId?: string, planName?: string, ownerId?: string, ownerName?: string, isActive?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MembershipsModel>>;
|
|
18810
|
+
apiV2MembershipsGet(id?: string, planId?: string, planName?: string, ownerId?: string, ownerName?: string, isActive?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MembershipsModel, any>>;
|
|
18795
18811
|
/**
|
|
18796
18812
|
*
|
|
18797
18813
|
* @summary Get membership.
|
|
@@ -18800,7 +18816,7 @@ export declare class MembershipsApi extends BaseAPI {
|
|
|
18800
18816
|
* @throws {RequiredError}
|
|
18801
18817
|
* @memberof MembershipsApi
|
|
18802
18818
|
*/
|
|
18803
|
-
apiV2MembershipsMembershipIdGet(membershipId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MembershipModel>>;
|
|
18819
|
+
apiV2MembershipsMembershipIdGet(membershipId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MembershipModel, any>>;
|
|
18804
18820
|
/**
|
|
18805
18821
|
*
|
|
18806
18822
|
* @summary Get all members.
|
|
@@ -18812,7 +18828,7 @@ export declare class MembershipsApi extends BaseAPI {
|
|
|
18812
18828
|
* @throws {RequiredError}
|
|
18813
18829
|
* @memberof MembershipsApi
|
|
18814
18830
|
*/
|
|
18815
|
-
apiV2MembershipsMembershipIdMembersGet(membershipId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MembersModel>>;
|
|
18831
|
+
apiV2MembershipsMembershipIdMembersGet(membershipId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MembersModel, any>>;
|
|
18816
18832
|
}
|
|
18817
18833
|
/**
|
|
18818
18834
|
* NotificationsApi - axios parameter creator
|
|
@@ -18852,7 +18868,7 @@ export declare const NotificationsApiFp: (configuration?: Configuration | undefi
|
|
|
18852
18868
|
* @param {*} [options] Override http request option.
|
|
18853
18869
|
* @throws {RequiredError}
|
|
18854
18870
|
*/
|
|
18855
|
-
apiV2NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18871
|
+
apiV2NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18856
18872
|
/**
|
|
18857
18873
|
*
|
|
18858
18874
|
* @summary Get all notifications.
|
|
@@ -18864,7 +18880,7 @@ export declare const NotificationsApiFp: (configuration?: Configuration | undefi
|
|
|
18864
18880
|
* @param {*} [options] Override http request option.
|
|
18865
18881
|
* @throws {RequiredError}
|
|
18866
18882
|
*/
|
|
18867
|
-
apiV2NotificationsGet(notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<NotificationsModel>>;
|
|
18883
|
+
apiV2NotificationsGet(notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<NotificationsModel>>;
|
|
18868
18884
|
};
|
|
18869
18885
|
/**
|
|
18870
18886
|
* NotificationsApi - factory interface
|
|
@@ -18907,7 +18923,7 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
18907
18923
|
* @throws {RequiredError}
|
|
18908
18924
|
* @memberof NotificationsApi
|
|
18909
18925
|
*/
|
|
18910
|
-
apiV2NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
18926
|
+
apiV2NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
18911
18927
|
/**
|
|
18912
18928
|
*
|
|
18913
18929
|
* @summary Get all notifications.
|
|
@@ -18920,7 +18936,7 @@ export declare class NotificationsApi extends BaseAPI {
|
|
|
18920
18936
|
* @throws {RequiredError}
|
|
18921
18937
|
* @memberof NotificationsApi
|
|
18922
18938
|
*/
|
|
18923
|
-
apiV2NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel>>;
|
|
18939
|
+
apiV2NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel, any>>;
|
|
18924
18940
|
}
|
|
18925
18941
|
/**
|
|
18926
18942
|
* PatientsApi - axios parameter creator
|
|
@@ -18973,7 +18989,7 @@ export declare const PatientsApiFp: (configuration?: Configuration | undefined)
|
|
|
18973
18989
|
* @param {*} [options] Override http request option.
|
|
18974
18990
|
* @throws {RequiredError}
|
|
18975
18991
|
*/
|
|
18976
|
-
apiV2PatientsPatientIdDelete(patientId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18992
|
+
apiV2PatientsPatientIdDelete(patientId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
18977
18993
|
/**
|
|
18978
18994
|
*
|
|
18979
18995
|
* @summary Get Patient.
|
|
@@ -18981,7 +18997,7 @@ export declare const PatientsApiFp: (configuration?: Configuration | undefined)
|
|
|
18981
18997
|
* @param {*} [options] Override http request option.
|
|
18982
18998
|
* @throws {RequiredError}
|
|
18983
18999
|
*/
|
|
18984
|
-
apiV2PatientsPatientIdGet(patientId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PatientModel>>;
|
|
19000
|
+
apiV2PatientsPatientIdGet(patientId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PatientModel>>;
|
|
18985
19001
|
/**
|
|
18986
19002
|
*
|
|
18987
19003
|
* @summary Update Patient.
|
|
@@ -18990,7 +19006,7 @@ export declare const PatientsApiFp: (configuration?: Configuration | undefined)
|
|
|
18990
19006
|
* @param {*} [options] Override http request option.
|
|
18991
19007
|
* @throws {RequiredError}
|
|
18992
19008
|
*/
|
|
18993
|
-
apiV2PatientsPatientIdPut(patientId: string, updatePatientCommand?: UpdatePatientCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PatientModel>>;
|
|
19009
|
+
apiV2PatientsPatientIdPut(patientId: string, updatePatientCommand?: UpdatePatientCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PatientModel>>;
|
|
18994
19010
|
/**
|
|
18995
19011
|
*
|
|
18996
19012
|
* @summary Create a Patient.
|
|
@@ -18998,7 +19014,7 @@ export declare const PatientsApiFp: (configuration?: Configuration | undefined)
|
|
|
18998
19014
|
* @param {*} [options] Override http request option.
|
|
18999
19015
|
* @throws {RequiredError}
|
|
19000
19016
|
*/
|
|
19001
|
-
apiV2PatientsPost(createPatientCommand?: CreatePatientCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PatientModel>>;
|
|
19017
|
+
apiV2PatientsPost(createPatientCommand?: CreatePatientCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PatientModel>>;
|
|
19002
19018
|
};
|
|
19003
19019
|
/**
|
|
19004
19020
|
* PatientsApi - factory interface
|
|
@@ -19054,7 +19070,7 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
19054
19070
|
* @throws {RequiredError}
|
|
19055
19071
|
* @memberof PatientsApi
|
|
19056
19072
|
*/
|
|
19057
|
-
apiV2PatientsPatientIdDelete(patientId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19073
|
+
apiV2PatientsPatientIdDelete(patientId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
19058
19074
|
/**
|
|
19059
19075
|
*
|
|
19060
19076
|
* @summary Get Patient.
|
|
@@ -19063,7 +19079,7 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
19063
19079
|
* @throws {RequiredError}
|
|
19064
19080
|
* @memberof PatientsApi
|
|
19065
19081
|
*/
|
|
19066
|
-
apiV2PatientsPatientIdGet(patientId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientModel>>;
|
|
19082
|
+
apiV2PatientsPatientIdGet(patientId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientModel, any>>;
|
|
19067
19083
|
/**
|
|
19068
19084
|
*
|
|
19069
19085
|
* @summary Update Patient.
|
|
@@ -19073,7 +19089,7 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
19073
19089
|
* @throws {RequiredError}
|
|
19074
19090
|
* @memberof PatientsApi
|
|
19075
19091
|
*/
|
|
19076
|
-
apiV2PatientsPatientIdPut(patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientModel>>;
|
|
19092
|
+
apiV2PatientsPatientIdPut(patientId: string, updatePatientCommand?: UpdatePatientCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientModel, any>>;
|
|
19077
19093
|
/**
|
|
19078
19094
|
*
|
|
19079
19095
|
* @summary Create a Patient.
|
|
@@ -19082,7 +19098,7 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
19082
19098
|
* @throws {RequiredError}
|
|
19083
19099
|
* @memberof PatientsApi
|
|
19084
19100
|
*/
|
|
19085
|
-
apiV2PatientsPost(createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientModel>>;
|
|
19101
|
+
apiV2PatientsPost(createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientModel, any>>;
|
|
19086
19102
|
}
|
|
19087
19103
|
/**
|
|
19088
19104
|
* PlansApi - axios parameter creator
|
|
@@ -19146,7 +19162,7 @@ export declare const PlansApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19146
19162
|
* @param {*} [options] Override http request option.
|
|
19147
19163
|
* @throws {RequiredError}
|
|
19148
19164
|
*/
|
|
19149
|
-
apiV2PlansGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlansModel>>;
|
|
19165
|
+
apiV2PlansGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlansModel>>;
|
|
19150
19166
|
/**
|
|
19151
19167
|
*
|
|
19152
19168
|
* @summary Get plan.
|
|
@@ -19154,7 +19170,7 @@ export declare const PlansApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19154
19170
|
* @param {*} [options] Override http request option.
|
|
19155
19171
|
* @throws {RequiredError}
|
|
19156
19172
|
*/
|
|
19157
|
-
apiV2PlansPlanIdGet(planId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanModel>>;
|
|
19173
|
+
apiV2PlansPlanIdGet(planId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanModel>>;
|
|
19158
19174
|
/**
|
|
19159
19175
|
*
|
|
19160
19176
|
* @summary Get all plan hospital.
|
|
@@ -19165,7 +19181,7 @@ export declare const PlansApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19165
19181
|
* @param {*} [options] Override http request option.
|
|
19166
19182
|
* @throws {RequiredError}
|
|
19167
19183
|
*/
|
|
19168
|
-
apiV2PlansPlanIdHospitalsGet(planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalsModel>>;
|
|
19184
|
+
apiV2PlansPlanIdHospitalsGet(planId: string, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalsModel>>;
|
|
19169
19185
|
/**
|
|
19170
19186
|
*
|
|
19171
19187
|
* @summary Get plan hospital.
|
|
@@ -19174,7 +19190,7 @@ export declare const PlansApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19174
19190
|
* @param {*} [options] Override http request option.
|
|
19175
19191
|
* @throws {RequiredError}
|
|
19176
19192
|
*/
|
|
19177
|
-
apiV2PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalModel>>;
|
|
19193
|
+
apiV2PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PlanHospitalModel>>;
|
|
19178
19194
|
};
|
|
19179
19195
|
/**
|
|
19180
19196
|
* PlansApi - factory interface
|
|
@@ -19241,7 +19257,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19241
19257
|
* @throws {RequiredError}
|
|
19242
19258
|
* @memberof PlansApi
|
|
19243
19259
|
*/
|
|
19244
|
-
apiV2PlansGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlansModel>>;
|
|
19260
|
+
apiV2PlansGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlansModel, any>>;
|
|
19245
19261
|
/**
|
|
19246
19262
|
*
|
|
19247
19263
|
* @summary Get plan.
|
|
@@ -19250,7 +19266,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19250
19266
|
* @throws {RequiredError}
|
|
19251
19267
|
* @memberof PlansApi
|
|
19252
19268
|
*/
|
|
19253
|
-
apiV2PlansPlanIdGet(planId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanModel>>;
|
|
19269
|
+
apiV2PlansPlanIdGet(planId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanModel, any>>;
|
|
19254
19270
|
/**
|
|
19255
19271
|
*
|
|
19256
19272
|
* @summary Get all plan hospital.
|
|
@@ -19262,7 +19278,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19262
19278
|
* @throws {RequiredError}
|
|
19263
19279
|
* @memberof PlansApi
|
|
19264
19280
|
*/
|
|
19265
|
-
apiV2PlansPlanIdHospitalsGet(planId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalsModel>>;
|
|
19281
|
+
apiV2PlansPlanIdHospitalsGet(planId: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalsModel, any>>;
|
|
19266
19282
|
/**
|
|
19267
19283
|
*
|
|
19268
19284
|
* @summary Get plan hospital.
|
|
@@ -19272,7 +19288,7 @@ export declare class PlansApi extends BaseAPI {
|
|
|
19272
19288
|
* @throws {RequiredError}
|
|
19273
19289
|
* @memberof PlansApi
|
|
19274
19290
|
*/
|
|
19275
|
-
apiV2PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalModel>>;
|
|
19291
|
+
apiV2PlansPlanIdHospitalsHospitalIdGet(planId: string, hospitalId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PlanHospitalModel, any>>;
|
|
19276
19292
|
}
|
|
19277
19293
|
/**
|
|
19278
19294
|
* ProfilesApi - axios parameter creator
|
|
@@ -19323,7 +19339,7 @@ export declare const ProfilesApiFp: (configuration?: Configuration | undefined)
|
|
|
19323
19339
|
* @param {*} [options] Override http request option.
|
|
19324
19340
|
* @throws {RequiredError}
|
|
19325
19341
|
*/
|
|
19326
|
-
apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19342
|
+
apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19327
19343
|
/**
|
|
19328
19344
|
*
|
|
19329
19345
|
* @summary Configm email.
|
|
@@ -19331,14 +19347,14 @@ export declare const ProfilesApiFp: (configuration?: Configuration | undefined)
|
|
|
19331
19347
|
* @param {*} [options] Override http request option.
|
|
19332
19348
|
* @throws {RequiredError}
|
|
19333
19349
|
*/
|
|
19334
|
-
apiV2ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19350
|
+
apiV2ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19335
19351
|
/**
|
|
19336
19352
|
*
|
|
19337
19353
|
* @summary Get Profile.
|
|
19338
19354
|
* @param {*} [options] Override http request option.
|
|
19339
19355
|
* @throws {RequiredError}
|
|
19340
19356
|
*/
|
|
19341
|
-
apiV2ProfilesGet(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
|
|
19357
|
+
apiV2ProfilesGet(options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
|
|
19342
19358
|
/**
|
|
19343
19359
|
*
|
|
19344
19360
|
* @summary Update Profile.
|
|
@@ -19346,7 +19362,7 @@ export declare const ProfilesApiFp: (configuration?: Configuration | undefined)
|
|
|
19346
19362
|
* @param {*} [options] Override http request option.
|
|
19347
19363
|
* @throws {RequiredError}
|
|
19348
19364
|
*/
|
|
19349
|
-
apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
|
|
19365
|
+
apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<UserModel>>;
|
|
19350
19366
|
};
|
|
19351
19367
|
/**
|
|
19352
19368
|
* ProfilesApi - factory interface
|
|
@@ -19400,7 +19416,7 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
19400
19416
|
* @throws {RequiredError}
|
|
19401
19417
|
* @memberof ProfilesApi
|
|
19402
19418
|
*/
|
|
19403
|
-
apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19419
|
+
apiV2ProfilesChangeemailPost(changeEmailCommand?: ChangeEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
19404
19420
|
/**
|
|
19405
19421
|
*
|
|
19406
19422
|
* @summary Configm email.
|
|
@@ -19409,7 +19425,7 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
19409
19425
|
* @throws {RequiredError}
|
|
19410
19426
|
* @memberof ProfilesApi
|
|
19411
19427
|
*/
|
|
19412
|
-
apiV2ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19428
|
+
apiV2ProfilesConfirmemailPost(confirmEmailCommand?: ConfirmEmailCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
19413
19429
|
/**
|
|
19414
19430
|
*
|
|
19415
19431
|
* @summary Get Profile.
|
|
@@ -19417,7 +19433,7 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
19417
19433
|
* @throws {RequiredError}
|
|
19418
19434
|
* @memberof ProfilesApi
|
|
19419
19435
|
*/
|
|
19420
|
-
apiV2ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
19436
|
+
apiV2ProfilesGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
|
|
19421
19437
|
/**
|
|
19422
19438
|
*
|
|
19423
19439
|
* @summary Update Profile.
|
|
@@ -19426,7 +19442,7 @@ export declare class ProfilesApi extends BaseAPI {
|
|
|
19426
19442
|
* @throws {RequiredError}
|
|
19427
19443
|
* @memberof ProfilesApi
|
|
19428
19444
|
*/
|
|
19429
|
-
apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel>>;
|
|
19445
|
+
apiV2ProfilesPut(updateProfileCommand?: UpdateProfileCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UserModel, any>>;
|
|
19430
19446
|
}
|
|
19431
19447
|
/**
|
|
19432
19448
|
* SearchApi - axios parameter creator
|
|
@@ -19562,7 +19578,7 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19562
19578
|
* @param {*} [options] Override http request option.
|
|
19563
19579
|
* @throws {RequiredError}
|
|
19564
19580
|
*/
|
|
19565
|
-
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceAutocompleteModel>>;
|
|
19581
|
+
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode | undefined, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, minimumCoverage?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceAutocompleteModel>>;
|
|
19566
19582
|
/**
|
|
19567
19583
|
*
|
|
19568
19584
|
* @param {string} [searchTerm]
|
|
@@ -19577,7 +19593,7 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19577
19593
|
* @param {*} [options] Override http request option.
|
|
19578
19594
|
* @throws {RequiredError}
|
|
19579
19595
|
*/
|
|
19580
|
-
apiV2SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
19596
|
+
apiV2SearchDealsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DealsModel>>;
|
|
19581
19597
|
/**
|
|
19582
19598
|
*
|
|
19583
19599
|
* @param {string} [searchTerm]
|
|
@@ -19592,7 +19608,7 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19592
19608
|
* @param {*} [options] Override http request option.
|
|
19593
19609
|
* @throws {RequiredError}
|
|
19594
19610
|
*/
|
|
19595
|
-
apiV2SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
19611
|
+
apiV2SearchDoctorsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorsModel>>;
|
|
19596
19612
|
/**
|
|
19597
19613
|
*
|
|
19598
19614
|
* @param {string} [searchTerm]
|
|
@@ -19607,7 +19623,7 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19607
19623
|
* @param {*} [options] Override http request option.
|
|
19608
19624
|
* @throws {RequiredError}
|
|
19609
19625
|
*/
|
|
19610
|
-
apiV2SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchModel>>;
|
|
19626
|
+
apiV2SearchGetcountGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchModel>>;
|
|
19611
19627
|
/**
|
|
19612
19628
|
*
|
|
19613
19629
|
* @param {string} [searchTerm]
|
|
@@ -19622,7 +19638,7 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19622
19638
|
* @param {*} [options] Override http request option.
|
|
19623
19639
|
* @throws {RequiredError}
|
|
19624
19640
|
*/
|
|
19625
|
-
apiV2SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
19641
|
+
apiV2SearchHospitalsGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalsModel>>;
|
|
19626
19642
|
/**
|
|
19627
19643
|
*
|
|
19628
19644
|
* @param {string} [searchTerm]
|
|
@@ -19637,7 +19653,7 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19637
19653
|
* @param {*} [options] Override http request option.
|
|
19638
19654
|
* @throws {RequiredError}
|
|
19639
19655
|
*/
|
|
19640
|
-
apiV2SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
19656
|
+
apiV2SearchSpecialtiesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
19641
19657
|
/**
|
|
19642
19658
|
*
|
|
19643
19659
|
* @param {string} [searchTerm]
|
|
@@ -19652,7 +19668,7 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19652
19668
|
* @param {*} [options] Override http request option.
|
|
19653
19669
|
* @throws {RequiredError}
|
|
19654
19670
|
*/
|
|
19655
|
-
apiV2SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
|
|
19671
|
+
apiV2SearchSpecialtytypesGet(searchTerm?: string | undefined, countOnly?: boolean | undefined, countryId?: string | undefined, hospitalId?: string | undefined, marketingType?: MarketingType | undefined, languageCode?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
|
|
19656
19672
|
/**
|
|
19657
19673
|
*
|
|
19658
19674
|
* @param {string} keyword
|
|
@@ -19662,7 +19678,7 @@ export declare const SearchApiFp: (configuration?: Configuration | undefined) =>
|
|
|
19662
19678
|
* @param {*} [options] Override http request option.
|
|
19663
19679
|
* @throws {RequiredError}
|
|
19664
19680
|
*/
|
|
19665
|
-
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceSuggestModel>>;
|
|
19681
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean | undefined, highlights?: boolean | undefined, size?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AzureSearchServiceSuggestModel>>;
|
|
19666
19682
|
};
|
|
19667
19683
|
/**
|
|
19668
19684
|
* SearchApi - factory interface
|
|
@@ -19801,7 +19817,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
19801
19817
|
* @throws {RequiredError}
|
|
19802
19818
|
* @memberof SearchApi
|
|
19803
19819
|
*/
|
|
19804
|
-
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceAutocompleteModel>>;
|
|
19820
|
+
apiV2SearchAutocompleteGet(keyword: string, mode?: AutocompleteMode, fuzzy?: boolean, highlights?: boolean, size?: number, minimumCoverage?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceAutocompleteModel, any>>;
|
|
19805
19821
|
/**
|
|
19806
19822
|
*
|
|
19807
19823
|
* @param {string} [searchTerm]
|
|
@@ -19817,7 +19833,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
19817
19833
|
* @throws {RequiredError}
|
|
19818
19834
|
* @memberof SearchApi
|
|
19819
19835
|
*/
|
|
19820
|
-
apiV2SearchDealsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel>>;
|
|
19836
|
+
apiV2SearchDealsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealsModel, any>>;
|
|
19821
19837
|
/**
|
|
19822
19838
|
*
|
|
19823
19839
|
* @param {string} [searchTerm]
|
|
@@ -19833,7 +19849,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
19833
19849
|
* @throws {RequiredError}
|
|
19834
19850
|
* @memberof SearchApi
|
|
19835
19851
|
*/
|
|
19836
|
-
apiV2SearchDoctorsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel>>;
|
|
19852
|
+
apiV2SearchDoctorsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorsModel, any>>;
|
|
19837
19853
|
/**
|
|
19838
19854
|
*
|
|
19839
19855
|
* @param {string} [searchTerm]
|
|
@@ -19849,7 +19865,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
19849
19865
|
* @throws {RequiredError}
|
|
19850
19866
|
* @memberof SearchApi
|
|
19851
19867
|
*/
|
|
19852
|
-
apiV2SearchGetcountGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchModel>>;
|
|
19868
|
+
apiV2SearchGetcountGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchModel, any>>;
|
|
19853
19869
|
/**
|
|
19854
19870
|
*
|
|
19855
19871
|
* @param {string} [searchTerm]
|
|
@@ -19865,7 +19881,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
19865
19881
|
* @throws {RequiredError}
|
|
19866
19882
|
* @memberof SearchApi
|
|
19867
19883
|
*/
|
|
19868
|
-
apiV2SearchHospitalsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel>>;
|
|
19884
|
+
apiV2SearchHospitalsGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalsModel, any>>;
|
|
19869
19885
|
/**
|
|
19870
19886
|
*
|
|
19871
19887
|
* @param {string} [searchTerm]
|
|
@@ -19881,7 +19897,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
19881
19897
|
* @throws {RequiredError}
|
|
19882
19898
|
* @memberof SearchApi
|
|
19883
19899
|
*/
|
|
19884
|
-
apiV2SearchSpecialtiesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel>>;
|
|
19900
|
+
apiV2SearchSpecialtiesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtiesModel, any>>;
|
|
19885
19901
|
/**
|
|
19886
19902
|
*
|
|
19887
19903
|
* @param {string} [searchTerm]
|
|
@@ -19897,7 +19913,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
19897
19913
|
* @throws {RequiredError}
|
|
19898
19914
|
* @memberof SearchApi
|
|
19899
19915
|
*/
|
|
19900
|
-
apiV2SearchSpecialtytypesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel>>;
|
|
19916
|
+
apiV2SearchSpecialtytypesGet(searchTerm?: string, countOnly?: boolean, countryId?: string, hospitalId?: string, marketingType?: MarketingType, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypesModel, any>>;
|
|
19901
19917
|
/**
|
|
19902
19918
|
*
|
|
19903
19919
|
* @param {string} keyword
|
|
@@ -19908,7 +19924,7 @@ export declare class SearchApi extends BaseAPI {
|
|
|
19908
19924
|
* @throws {RequiredError}
|
|
19909
19925
|
* @memberof SearchApi
|
|
19910
19926
|
*/
|
|
19911
|
-
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceSuggestModel>>;
|
|
19927
|
+
apiV2SearchSuggestGet(keyword: string, fuzzy?: boolean, highlights?: boolean, size?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AzureSearchServiceSuggestModel, any>>;
|
|
19912
19928
|
}
|
|
19913
19929
|
/**
|
|
19914
19930
|
* ServiceReviewsApi - axios parameter creator
|
|
@@ -20040,7 +20056,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
20040
20056
|
* @param {*} [options] Override http request option.
|
|
20041
20057
|
* @throws {RequiredError}
|
|
20042
20058
|
*/
|
|
20043
|
-
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
20059
|
+
apiV2ServicereviewsGet(hospitalId?: string | undefined, serviceId?: string | undefined, serviceName?: string | undefined, patientId?: string | undefined, patientName?: string | undefined, gender?: Gender | undefined, recommended?: boolean | undefined, rate?: number | undefined, reviewType?: ReviewType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewsModel>>;
|
|
20044
20060
|
/**
|
|
20045
20061
|
*
|
|
20046
20062
|
* @summary Create a ServiceReview.
|
|
@@ -20048,7 +20064,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
20048
20064
|
* @param {*} [options] Override http request option.
|
|
20049
20065
|
* @throws {RequiredError}
|
|
20050
20066
|
*/
|
|
20051
|
-
apiV2ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
20067
|
+
apiV2ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
20052
20068
|
/**
|
|
20053
20069
|
*
|
|
20054
20070
|
* @summary Delete ServiceReview.
|
|
@@ -20056,14 +20072,14 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
20056
20072
|
* @param {*} [options] Override http request option.
|
|
20057
20073
|
* @throws {RequiredError}
|
|
20058
20074
|
*/
|
|
20059
|
-
apiV2ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20075
|
+
apiV2ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20060
20076
|
/**
|
|
20061
20077
|
*
|
|
20062
20078
|
* @param {string} serviceReviewId
|
|
20063
20079
|
* @param {*} [options] Override http request option.
|
|
20064
20080
|
* @throws {RequiredError}
|
|
20065
20081
|
*/
|
|
20066
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
20082
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
20067
20083
|
/**
|
|
20068
20084
|
*
|
|
20069
20085
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -20076,7 +20092,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
20076
20092
|
* @param {*} [options] Override http request option.
|
|
20077
20093
|
* @throws {RequiredError}
|
|
20078
20094
|
*/
|
|
20079
|
-
apiV2ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
20095
|
+
apiV2ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
20080
20096
|
/**
|
|
20081
20097
|
*
|
|
20082
20098
|
* @summary Delete ServiceReviewMedia
|
|
@@ -20085,7 +20101,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
20085
20101
|
* @param {*} [options] Override http request option.
|
|
20086
20102
|
* @throws {RequiredError}
|
|
20087
20103
|
*/
|
|
20088
|
-
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20104
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
20089
20105
|
/**
|
|
20090
20106
|
*
|
|
20091
20107
|
* @summary Get ServiceReviewMedia.
|
|
@@ -20094,7 +20110,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
20094
20110
|
* @param {*} [options] Override http request option.
|
|
20095
20111
|
* @throws {RequiredError}
|
|
20096
20112
|
*/
|
|
20097
|
-
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
20113
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
20098
20114
|
/**
|
|
20099
20115
|
*
|
|
20100
20116
|
* @summary Update ServiceReviewMedia.
|
|
@@ -20104,7 +20120,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
20104
20120
|
* @param {*} [options] Override http request option.
|
|
20105
20121
|
* @throws {RequiredError}
|
|
20106
20122
|
*/
|
|
20107
|
-
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
20123
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
20108
20124
|
/**
|
|
20109
20125
|
*
|
|
20110
20126
|
* @summary Create ServiceReviewMedia.
|
|
@@ -20113,7 +20129,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
20113
20129
|
* @param {*} [options] Override http request option.
|
|
20114
20130
|
* @throws {RequiredError}
|
|
20115
20131
|
*/
|
|
20116
|
-
apiV2ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
20132
|
+
apiV2ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
20117
20133
|
/**
|
|
20118
20134
|
*
|
|
20119
20135
|
* @summary Update ServiceReview.
|
|
@@ -20122,7 +20138,7 @@ export declare const ServiceReviewsApiFp: (configuration?: Configuration | undef
|
|
|
20122
20138
|
* @param {*} [options] Override http request option.
|
|
20123
20139
|
* @throws {RequiredError}
|
|
20124
20140
|
*/
|
|
20125
|
-
apiV2ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
20141
|
+
apiV2ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceReviewModel>>;
|
|
20126
20142
|
};
|
|
20127
20143
|
/**
|
|
20128
20144
|
* ServiceReviewsApi - factory interface
|
|
@@ -20257,7 +20273,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
20257
20273
|
* @throws {RequiredError}
|
|
20258
20274
|
* @memberof ServiceReviewsApi
|
|
20259
20275
|
*/
|
|
20260
|
-
apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel>>;
|
|
20276
|
+
apiV2ServicereviewsGet(hospitalId?: string, serviceId?: string, serviceName?: string, patientId?: string, patientName?: string, gender?: Gender, recommended?: boolean, rate?: number, reviewType?: ReviewType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewsModel, any>>;
|
|
20261
20277
|
/**
|
|
20262
20278
|
*
|
|
20263
20279
|
* @summary Create a ServiceReview.
|
|
@@ -20266,7 +20282,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
20266
20282
|
* @throws {RequiredError}
|
|
20267
20283
|
* @memberof ServiceReviewsApi
|
|
20268
20284
|
*/
|
|
20269
|
-
apiV2ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
20285
|
+
apiV2ServicereviewsPost(createServiceReviewCommand?: CreateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
20270
20286
|
/**
|
|
20271
20287
|
*
|
|
20272
20288
|
* @summary Delete ServiceReview.
|
|
@@ -20275,7 +20291,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
20275
20291
|
* @throws {RequiredError}
|
|
20276
20292
|
* @memberof ServiceReviewsApi
|
|
20277
20293
|
*/
|
|
20278
|
-
apiV2ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20294
|
+
apiV2ServicereviewsServiceReviewIdDelete(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
20279
20295
|
/**
|
|
20280
20296
|
*
|
|
20281
20297
|
* @param {string} serviceReviewId
|
|
@@ -20283,7 +20299,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
20283
20299
|
* @throws {RequiredError}
|
|
20284
20300
|
* @memberof ServiceReviewsApi
|
|
20285
20301
|
*/
|
|
20286
|
-
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
20302
|
+
apiV2ServicereviewsServiceReviewIdGet(serviceReviewId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
20287
20303
|
/**
|
|
20288
20304
|
*
|
|
20289
20305
|
* @summary Get all ServiceReviewMedias.
|
|
@@ -20297,7 +20313,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
20297
20313
|
* @throws {RequiredError}
|
|
20298
20314
|
* @memberof ServiceReviewsApi
|
|
20299
20315
|
*/
|
|
20300
|
-
apiV2ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
20316
|
+
apiV2ServicereviewsServiceReviewIdMediasGet(serviceReviewId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
20301
20317
|
/**
|
|
20302
20318
|
*
|
|
20303
20319
|
* @summary Delete ServiceReviewMedia
|
|
@@ -20307,7 +20323,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
20307
20323
|
* @throws {RequiredError}
|
|
20308
20324
|
* @memberof ServiceReviewsApi
|
|
20309
20325
|
*/
|
|
20310
|
-
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
20326
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdDelete(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
20311
20327
|
/**
|
|
20312
20328
|
*
|
|
20313
20329
|
* @summary Get ServiceReviewMedia.
|
|
@@ -20317,7 +20333,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
20317
20333
|
* @throws {RequiredError}
|
|
20318
20334
|
* @memberof ServiceReviewsApi
|
|
20319
20335
|
*/
|
|
20320
|
-
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
20336
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdGet(serviceReviewId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
20321
20337
|
/**
|
|
20322
20338
|
*
|
|
20323
20339
|
* @summary Update ServiceReviewMedia.
|
|
@@ -20328,7 +20344,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
20328
20344
|
* @throws {RequiredError}
|
|
20329
20345
|
* @memberof ServiceReviewsApi
|
|
20330
20346
|
*/
|
|
20331
|
-
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
20347
|
+
apiV2ServicereviewsServiceReviewIdMediasMediaIdPut(serviceReviewId: string, mediaId: string, updateMediaCommand?: UpdateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
20332
20348
|
/**
|
|
20333
20349
|
*
|
|
20334
20350
|
* @summary Create ServiceReviewMedia.
|
|
@@ -20338,7 +20354,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
20338
20354
|
* @throws {RequiredError}
|
|
20339
20355
|
* @memberof ServiceReviewsApi
|
|
20340
20356
|
*/
|
|
20341
|
-
apiV2ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
20357
|
+
apiV2ServicereviewsServiceReviewIdMediasPost(serviceReviewId: string, createMediaCommand?: CreateMediaCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
20342
20358
|
/**
|
|
20343
20359
|
*
|
|
20344
20360
|
* @summary Update ServiceReview.
|
|
@@ -20348,7 +20364,7 @@ export declare class ServiceReviewsApi extends BaseAPI {
|
|
|
20348
20364
|
* @throws {RequiredError}
|
|
20349
20365
|
* @memberof ServiceReviewsApi
|
|
20350
20366
|
*/
|
|
20351
|
-
apiV2ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel>>;
|
|
20367
|
+
apiV2ServicereviewsServiceReviewIdPut(serviceReviewId: string, updateServiceReviewCommand?: UpdateServiceReviewCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceReviewModel, any>>;
|
|
20352
20368
|
}
|
|
20353
20369
|
/**
|
|
20354
20370
|
* ServicesApi - axios parameter creator
|
|
@@ -20430,7 +20446,7 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
20430
20446
|
* @param {*} [options] Override http request option.
|
|
20431
20447
|
* @throws {RequiredError}
|
|
20432
20448
|
*/
|
|
20433
|
-
apiV2ServicesGet(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>>;
|
|
20449
|
+
apiV2ServicesGet(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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServicesModel>>;
|
|
20434
20450
|
/**
|
|
20435
20451
|
*
|
|
20436
20452
|
* @param {string} serviceId
|
|
@@ -20439,7 +20455,7 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
20439
20455
|
* @param {*} [options] Override http request option.
|
|
20440
20456
|
* @throws {RequiredError}
|
|
20441
20457
|
*/
|
|
20442
|
-
apiV2ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
20458
|
+
apiV2ServicesServiceIdGet(serviceId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
20443
20459
|
/**
|
|
20444
20460
|
*
|
|
20445
20461
|
* @param {string} slug
|
|
@@ -20448,7 +20464,7 @@ export declare const ServicesApiFp: (configuration?: Configuration | undefined)
|
|
|
20448
20464
|
* @param {*} [options] Override http request option.
|
|
20449
20465
|
* @throws {RequiredError}
|
|
20450
20466
|
*/
|
|
20451
|
-
apiV2ServicesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
20467
|
+
apiV2ServicesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalServiceModel>>;
|
|
20452
20468
|
};
|
|
20453
20469
|
/**
|
|
20454
20470
|
* ServicesApi - factory interface
|
|
@@ -20533,7 +20549,7 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
20533
20549
|
* @throws {RequiredError}
|
|
20534
20550
|
* @memberof ServicesApi
|
|
20535
20551
|
*/
|
|
20536
|
-
apiV2ServicesGet(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>>;
|
|
20552
|
+
apiV2ServicesGet(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, any>>;
|
|
20537
20553
|
/**
|
|
20538
20554
|
*
|
|
20539
20555
|
* @param {string} serviceId
|
|
@@ -20543,7 +20559,7 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
20543
20559
|
* @throws {RequiredError}
|
|
20544
20560
|
* @memberof ServicesApi
|
|
20545
20561
|
*/
|
|
20546
|
-
apiV2ServicesServiceIdGet(serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
20562
|
+
apiV2ServicesServiceIdGet(serviceId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel, any>>;
|
|
20547
20563
|
/**
|
|
20548
20564
|
*
|
|
20549
20565
|
* @param {string} slug
|
|
@@ -20553,7 +20569,7 @@ export declare class ServicesApi extends BaseAPI {
|
|
|
20553
20569
|
* @throws {RequiredError}
|
|
20554
20570
|
* @memberof ServicesApi
|
|
20555
20571
|
*/
|
|
20556
|
-
apiV2ServicesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel>>;
|
|
20572
|
+
apiV2ServicesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServiceModel, any>>;
|
|
20557
20573
|
}
|
|
20558
20574
|
/**
|
|
20559
20575
|
* ServicesCategoriesApi - axios parameter creator
|
|
@@ -20597,7 +20613,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
20597
20613
|
* @param {*} [options] Override http request option.
|
|
20598
20614
|
* @throws {RequiredError}
|
|
20599
20615
|
*/
|
|
20600
|
-
apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
|
|
20616
|
+
apiV2ServicescategoriesGet(id?: string | undefined, name?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoriesModel>>;
|
|
20601
20617
|
/**
|
|
20602
20618
|
*
|
|
20603
20619
|
* @summary Get ServiceCategory.
|
|
@@ -20605,7 +20621,7 @@ export declare const ServicesCategoriesApiFp: (configuration?: Configuration | u
|
|
|
20605
20621
|
* @param {*} [options] Override http request option.
|
|
20606
20622
|
* @throws {RequiredError}
|
|
20607
20623
|
*/
|
|
20608
|
-
apiV2ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
|
|
20624
|
+
apiV2ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ServiceCategoryModel>>;
|
|
20609
20625
|
};
|
|
20610
20626
|
/**
|
|
20611
20627
|
* ServicesCategoriesApi - factory interface
|
|
@@ -20652,7 +20668,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
20652
20668
|
* @throws {RequiredError}
|
|
20653
20669
|
* @memberof ServicesCategoriesApi
|
|
20654
20670
|
*/
|
|
20655
|
-
apiV2ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel>>;
|
|
20671
|
+
apiV2ServicescategoriesGet(id?: string, name?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoriesModel, any>>;
|
|
20656
20672
|
/**
|
|
20657
20673
|
*
|
|
20658
20674
|
* @summary Get ServiceCategory.
|
|
@@ -20661,7 +20677,7 @@ export declare class ServicesCategoriesApi extends BaseAPI {
|
|
|
20661
20677
|
* @throws {RequiredError}
|
|
20662
20678
|
* @memberof ServicesCategoriesApi
|
|
20663
20679
|
*/
|
|
20664
|
-
apiV2ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel>>;
|
|
20680
|
+
apiV2ServicescategoriesServiceCategoryIdGet(serviceCategoryId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceCategoryModel, any>>;
|
|
20665
20681
|
}
|
|
20666
20682
|
/**
|
|
20667
20683
|
* SpecialtiesApi - axios parameter creator
|
|
@@ -20751,7 +20767,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
20751
20767
|
* @param {*} [options] Override http request option.
|
|
20752
20768
|
* @throws {RequiredError}
|
|
20753
20769
|
*/
|
|
20754
|
-
apiV2SpecialtiesGet(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>>;
|
|
20770
|
+
apiV2SpecialtiesGet(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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtiesModel>>;
|
|
20755
20771
|
/**
|
|
20756
20772
|
*
|
|
20757
20773
|
* @param {string} slug
|
|
@@ -20760,7 +20776,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
20760
20776
|
* @param {*} [options] Override http request option.
|
|
20761
20777
|
* @throws {RequiredError}
|
|
20762
20778
|
*/
|
|
20763
|
-
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
20779
|
+
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
20764
20780
|
/**
|
|
20765
20781
|
*
|
|
20766
20782
|
* @param {string} specialtyId
|
|
@@ -20769,7 +20785,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
20769
20785
|
* @param {*} [options] Override http request option.
|
|
20770
20786
|
* @throws {RequiredError}
|
|
20771
20787
|
*/
|
|
20772
|
-
apiV2SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
20788
|
+
apiV2SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyModel>>;
|
|
20773
20789
|
/**
|
|
20774
20790
|
*
|
|
20775
20791
|
* @summary Get all SpecialtyMedias.
|
|
@@ -20782,7 +20798,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
20782
20798
|
* @param {*} [options] Override http request option.
|
|
20783
20799
|
* @throws {RequiredError}
|
|
20784
20800
|
*/
|
|
20785
|
-
apiV2SpecialtiesSpecialtyIdMediasGet(specialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
20801
|
+
apiV2SpecialtiesSpecialtyIdMediasGet(specialtyId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
20786
20802
|
/**
|
|
20787
20803
|
*
|
|
20788
20804
|
* @summary Get SpecialtyMedia.
|
|
@@ -20791,7 +20807,7 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration | undefine
|
|
|
20791
20807
|
* @param {*} [options] Override http request option.
|
|
20792
20808
|
* @throws {RequiredError}
|
|
20793
20809
|
*/
|
|
20794
|
-
apiV2SpecialtiesSpecialtyIdMediasMediaIdGet(specialtyId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
20810
|
+
apiV2SpecialtiesSpecialtyIdMediasMediaIdGet(specialtyId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
20795
20811
|
};
|
|
20796
20812
|
/**
|
|
20797
20813
|
* SpecialtiesApi - factory interface
|
|
@@ -20884,7 +20900,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
20884
20900
|
* @throws {RequiredError}
|
|
20885
20901
|
* @memberof SpecialtiesApi
|
|
20886
20902
|
*/
|
|
20887
|
-
apiV2SpecialtiesGet(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>>;
|
|
20903
|
+
apiV2SpecialtiesGet(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, any>>;
|
|
20888
20904
|
/**
|
|
20889
20905
|
*
|
|
20890
20906
|
* @param {string} slug
|
|
@@ -20894,7 +20910,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
20894
20910
|
* @throws {RequiredError}
|
|
20895
20911
|
* @memberof SpecialtiesApi
|
|
20896
20912
|
*/
|
|
20897
|
-
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
20913
|
+
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel, any>>;
|
|
20898
20914
|
/**
|
|
20899
20915
|
*
|
|
20900
20916
|
* @param {string} specialtyId
|
|
@@ -20904,7 +20920,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
20904
20920
|
* @throws {RequiredError}
|
|
20905
20921
|
* @memberof SpecialtiesApi
|
|
20906
20922
|
*/
|
|
20907
|
-
apiV2SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel>>;
|
|
20923
|
+
apiV2SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyModel, any>>;
|
|
20908
20924
|
/**
|
|
20909
20925
|
*
|
|
20910
20926
|
* @summary Get all SpecialtyMedias.
|
|
@@ -20918,7 +20934,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
20918
20934
|
* @throws {RequiredError}
|
|
20919
20935
|
* @memberof SpecialtiesApi
|
|
20920
20936
|
*/
|
|
20921
|
-
apiV2SpecialtiesSpecialtyIdMediasGet(specialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
20937
|
+
apiV2SpecialtiesSpecialtyIdMediasGet(specialtyId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
20922
20938
|
/**
|
|
20923
20939
|
*
|
|
20924
20940
|
* @summary Get SpecialtyMedia.
|
|
@@ -20928,7 +20944,7 @@ export declare class SpecialtiesApi extends BaseAPI {
|
|
|
20928
20944
|
* @throws {RequiredError}
|
|
20929
20945
|
* @memberof SpecialtiesApi
|
|
20930
20946
|
*/
|
|
20931
|
-
apiV2SpecialtiesSpecialtyIdMediasMediaIdGet(specialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
20947
|
+
apiV2SpecialtiesSpecialtyIdMediasMediaIdGet(specialtyId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
20932
20948
|
}
|
|
20933
20949
|
/**
|
|
20934
20950
|
* SpecialtyTypesApi - axios parameter creator
|
|
@@ -21040,7 +21056,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
21040
21056
|
* @param {*} [options] Override http request option.
|
|
21041
21057
|
* @throws {RequiredError}
|
|
21042
21058
|
*/
|
|
21043
|
-
apiV2SpecialtytypesGet(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>>;
|
|
21059
|
+
apiV2SpecialtytypesGet(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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesModel>>;
|
|
21044
21060
|
/**
|
|
21045
21061
|
*
|
|
21046
21062
|
* @summary Get all Hospitals.
|
|
@@ -21060,7 +21076,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
21060
21076
|
* @param {*} [options] Override http request option.
|
|
21061
21077
|
* @throws {RequiredError}
|
|
21062
21078
|
*/
|
|
21063
|
-
apiV2SpecialtytypesSimpleGet(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>>;
|
|
21079
|
+
apiV2SpecialtytypesSimpleGet(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<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypesSimpleModel>>;
|
|
21064
21080
|
/**
|
|
21065
21081
|
*
|
|
21066
21082
|
* @param {string} slug
|
|
@@ -21069,7 +21085,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
21069
21085
|
* @param {*} [options] Override http request option.
|
|
21070
21086
|
* @throws {RequiredError}
|
|
21071
21087
|
*/
|
|
21072
|
-
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
21088
|
+
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
21073
21089
|
/**
|
|
21074
21090
|
*
|
|
21075
21091
|
* @param {string} specialtyTypeId
|
|
@@ -21078,7 +21094,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
21078
21094
|
* @param {*} [options] Override http request option.
|
|
21079
21095
|
* @throws {RequiredError}
|
|
21080
21096
|
*/
|
|
21081
|
-
apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
21097
|
+
apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string | undefined, returnDefaultValue?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SpecialtyTypeModel>>;
|
|
21082
21098
|
/**
|
|
21083
21099
|
*
|
|
21084
21100
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -21091,7 +21107,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
21091
21107
|
* @param {*} [options] Override http request option.
|
|
21092
21108
|
* @throws {RequiredError}
|
|
21093
21109
|
*/
|
|
21094
|
-
apiV2SpecialtytypesSpecialtyTypeIdMediasGet(specialtyTypeId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
21110
|
+
apiV2SpecialtytypesSpecialtyTypeIdMediasGet(specialtyTypeId: string, id?: string | undefined, mediaType?: MediaType | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediasModel>>;
|
|
21095
21111
|
/**
|
|
21096
21112
|
*
|
|
21097
21113
|
* @summary Get SpecialtyTypeMedia.
|
|
@@ -21100,7 +21116,7 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration | undef
|
|
|
21100
21116
|
* @param {*} [options] Override http request option.
|
|
21101
21117
|
* @throws {RequiredError}
|
|
21102
21118
|
*/
|
|
21103
|
-
apiV2SpecialtytypesSpecialtyTypeIdMediasMediaIdGet(specialtyTypeId: string, mediaId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
21119
|
+
apiV2SpecialtytypesSpecialtyTypeIdMediasMediaIdGet(specialtyTypeId: string, mediaId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MediaModel>>;
|
|
21104
21120
|
};
|
|
21105
21121
|
/**
|
|
21106
21122
|
* SpecialtyTypesApi - factory interface
|
|
@@ -21215,7 +21231,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
21215
21231
|
* @throws {RequiredError}
|
|
21216
21232
|
* @memberof SpecialtyTypesApi
|
|
21217
21233
|
*/
|
|
21218
|
-
apiV2SpecialtytypesGet(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>>;
|
|
21234
|
+
apiV2SpecialtytypesGet(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, any>>;
|
|
21219
21235
|
/**
|
|
21220
21236
|
*
|
|
21221
21237
|
* @summary Get all Hospitals.
|
|
@@ -21236,7 +21252,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
21236
21252
|
* @throws {RequiredError}
|
|
21237
21253
|
* @memberof SpecialtyTypesApi
|
|
21238
21254
|
*/
|
|
21239
|
-
apiV2SpecialtytypesSimpleGet(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>>;
|
|
21255
|
+
apiV2SpecialtytypesSimpleGet(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, any>>;
|
|
21240
21256
|
/**
|
|
21241
21257
|
*
|
|
21242
21258
|
* @param {string} slug
|
|
@@ -21246,7 +21262,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
21246
21262
|
* @throws {RequiredError}
|
|
21247
21263
|
* @memberof SpecialtyTypesApi
|
|
21248
21264
|
*/
|
|
21249
|
-
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
21265
|
+
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel, any>>;
|
|
21250
21266
|
/**
|
|
21251
21267
|
*
|
|
21252
21268
|
* @param {string} specialtyTypeId
|
|
@@ -21256,7 +21272,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
21256
21272
|
* @throws {RequiredError}
|
|
21257
21273
|
* @memberof SpecialtyTypesApi
|
|
21258
21274
|
*/
|
|
21259
|
-
apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel>>;
|
|
21275
|
+
apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpecialtyTypeModel, any>>;
|
|
21260
21276
|
/**
|
|
21261
21277
|
*
|
|
21262
21278
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -21270,7 +21286,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
21270
21286
|
* @throws {RequiredError}
|
|
21271
21287
|
* @memberof SpecialtyTypesApi
|
|
21272
21288
|
*/
|
|
21273
|
-
apiV2SpecialtytypesSpecialtyTypeIdMediasGet(specialtyTypeId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel>>;
|
|
21289
|
+
apiV2SpecialtytypesSpecialtyTypeIdMediasGet(specialtyTypeId: string, id?: string, mediaType?: MediaType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediasModel, any>>;
|
|
21274
21290
|
/**
|
|
21275
21291
|
*
|
|
21276
21292
|
* @summary Get SpecialtyTypeMedia.
|
|
@@ -21280,7 +21296,7 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
21280
21296
|
* @throws {RequiredError}
|
|
21281
21297
|
* @memberof SpecialtyTypesApi
|
|
21282
21298
|
*/
|
|
21283
|
-
apiV2SpecialtytypesSpecialtyTypeIdMediasMediaIdGet(specialtyTypeId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel>>;
|
|
21299
|
+
apiV2SpecialtytypesSpecialtyTypeIdMediasMediaIdGet(specialtyTypeId: string, mediaId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel, any>>;
|
|
21284
21300
|
}
|
|
21285
21301
|
/**
|
|
21286
21302
|
* TagsApi - axios parameter creator
|
|
@@ -21323,7 +21339,7 @@ export declare const TagsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
21323
21339
|
* @param {*} [options] Override http request option.
|
|
21324
21340
|
* @throws {RequiredError}
|
|
21325
21341
|
*/
|
|
21326
|
-
apiV2TagsGet(tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TagsModel>>;
|
|
21342
|
+
apiV2TagsGet(tagId?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TagsModel>>;
|
|
21327
21343
|
/**
|
|
21328
21344
|
*
|
|
21329
21345
|
* @summary Get Tag.
|
|
@@ -21332,7 +21348,7 @@ export declare const TagsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
21332
21348
|
* @param {*} [options] Override http request option.
|
|
21333
21349
|
* @throws {RequiredError}
|
|
21334
21350
|
*/
|
|
21335
|
-
apiV2TagsTagIdGet(tagId: string, releatedTags?: boolean | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TagModel>>;
|
|
21351
|
+
apiV2TagsTagIdGet(tagId: string, releatedTags?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TagModel>>;
|
|
21336
21352
|
};
|
|
21337
21353
|
/**
|
|
21338
21354
|
* TagsApi - factory interface
|
|
@@ -21378,7 +21394,7 @@ export declare class TagsApi extends BaseAPI {
|
|
|
21378
21394
|
* @throws {RequiredError}
|
|
21379
21395
|
* @memberof TagsApi
|
|
21380
21396
|
*/
|
|
21381
|
-
apiV2TagsGet(tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TagsModel>>;
|
|
21397
|
+
apiV2TagsGet(tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TagsModel, any>>;
|
|
21382
21398
|
/**
|
|
21383
21399
|
*
|
|
21384
21400
|
* @summary Get Tag.
|
|
@@ -21388,6 +21404,6 @@ export declare class TagsApi extends BaseAPI {
|
|
|
21388
21404
|
* @throws {RequiredError}
|
|
21389
21405
|
* @memberof TagsApi
|
|
21390
21406
|
*/
|
|
21391
|
-
apiV2TagsTagIdGet(tagId: string, releatedTags?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TagModel>>;
|
|
21407
|
+
apiV2TagsTagIdGet(tagId: string, releatedTags?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TagModel, any>>;
|
|
21392
21408
|
}
|
|
21393
21409
|
//# sourceMappingURL=api.d.ts.map
|