ch-admin-api-client-typescript 2.1.4 → 2.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +24 -36
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +42 -63
- package/package.json +1 -1
- package/src/api.ts +44 -68
package/src/api.ts
CHANGED
|
@@ -13080,7 +13080,6 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
13080
13080
|
*
|
|
13081
13081
|
* @summary GetAll ArticleContributors.
|
|
13082
13082
|
* @param {string} articleId
|
|
13083
|
-
* @param {string} [articleId2]
|
|
13084
13083
|
* @param {string} [articleName]
|
|
13085
13084
|
* @param {string} [contributorId]
|
|
13086
13085
|
* @param {string} [contributorName]
|
|
@@ -13094,7 +13093,7 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
13094
13093
|
* @param {*} [options] Override http request option.
|
|
13095
13094
|
* @throws {RequiredError}
|
|
13096
13095
|
*/
|
|
13097
|
-
apiV1ArticlesArticleIdContributorsGet: async (articleId: string,
|
|
13096
|
+
apiV1ArticlesArticleIdContributorsGet: async (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<RequestArgs> => {
|
|
13098
13097
|
// verify required parameter 'articleId' is not null or undefined
|
|
13099
13098
|
assertParamExists('apiV1ArticlesArticleIdContributorsGet', 'articleId', articleId)
|
|
13100
13099
|
const localVarPath = `/api/v1/articles/{articleId}/contributors`
|
|
@@ -13114,10 +13113,6 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
13114
13113
|
// oauth required
|
|
13115
13114
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
13116
13115
|
|
|
13117
|
-
if (articleId2 !== undefined) {
|
|
13118
|
-
localVarQueryParameter['ArticleId'] = articleId2;
|
|
13119
|
-
}
|
|
13120
|
-
|
|
13121
13116
|
if (articleName !== undefined) {
|
|
13122
13117
|
localVarQueryParameter['ArticleName'] = articleName;
|
|
13123
13118
|
}
|
|
@@ -13804,7 +13799,6 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
13804
13799
|
*
|
|
13805
13800
|
* @summary GetAll ArticleContributors.
|
|
13806
13801
|
* @param {string} articleId
|
|
13807
|
-
* @param {string} [articleId2]
|
|
13808
13802
|
* @param {string} [articleName]
|
|
13809
13803
|
* @param {string} [contributorId]
|
|
13810
13804
|
* @param {string} [contributorName]
|
|
@@ -13818,7 +13812,7 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
13818
13812
|
* @param {*} [options] Override http request option.
|
|
13819
13813
|
* @throws {RequiredError}
|
|
13820
13814
|
*/
|
|
13821
|
-
apiV1ArticlesArticleIdTagsGet: async (articleId: string,
|
|
13815
|
+
apiV1ArticlesArticleIdTagsGet: async (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<RequestArgs> => {
|
|
13822
13816
|
// verify required parameter 'articleId' is not null or undefined
|
|
13823
13817
|
assertParamExists('apiV1ArticlesArticleIdTagsGet', 'articleId', articleId)
|
|
13824
13818
|
const localVarPath = `/api/v1/articles/{articleId}/tags`
|
|
@@ -13838,10 +13832,6 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
13838
13832
|
// oauth required
|
|
13839
13833
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
13840
13834
|
|
|
13841
|
-
if (articleId2 !== undefined) {
|
|
13842
|
-
localVarQueryParameter['ArticleId'] = articleId2;
|
|
13843
|
-
}
|
|
13844
|
-
|
|
13845
13835
|
if (articleName !== undefined) {
|
|
13846
13836
|
localVarQueryParameter['ArticleName'] = articleName;
|
|
13847
13837
|
}
|
|
@@ -14286,7 +14276,6 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
|
|
|
14286
14276
|
*
|
|
14287
14277
|
* @summary GetAll ArticleContributors.
|
|
14288
14278
|
* @param {string} articleId
|
|
14289
|
-
* @param {string} [articleId2]
|
|
14290
14279
|
* @param {string} [articleName]
|
|
14291
14280
|
* @param {string} [contributorId]
|
|
14292
14281
|
* @param {string} [contributorName]
|
|
@@ -14300,8 +14289,8 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
|
|
|
14300
14289
|
* @param {*} [options] Override http request option.
|
|
14301
14290
|
* @throws {RequiredError}
|
|
14302
14291
|
*/
|
|
14303
|
-
async apiV1ArticlesArticleIdContributorsGet(articleId: string,
|
|
14304
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId,
|
|
14292
|
+
async apiV1ArticlesArticleIdContributorsGet(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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticleContributorsModel>> {
|
|
14293
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options);
|
|
14305
14294
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
14306
14295
|
},
|
|
14307
14296
|
/**
|
|
@@ -14483,7 +14472,6 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
|
|
|
14483
14472
|
*
|
|
14484
14473
|
* @summary GetAll ArticleContributors.
|
|
14485
14474
|
* @param {string} articleId
|
|
14486
|
-
* @param {string} [articleId2]
|
|
14487
14475
|
* @param {string} [articleName]
|
|
14488
14476
|
* @param {string} [contributorId]
|
|
14489
14477
|
* @param {string} [contributorName]
|
|
@@ -14497,8 +14485,8 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
|
|
|
14497
14485
|
* @param {*} [options] Override http request option.
|
|
14498
14486
|
* @throws {RequiredError}
|
|
14499
14487
|
*/
|
|
14500
|
-
async apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
14501
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesArticleIdTagsGet(articleId,
|
|
14488
|
+
async apiV1ArticlesArticleIdTagsGet(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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticleContributorsModel>> {
|
|
14489
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesArticleIdTagsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options);
|
|
14502
14490
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
14503
14491
|
},
|
|
14504
14492
|
/**
|
|
@@ -14637,7 +14625,6 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
|
|
|
14637
14625
|
*
|
|
14638
14626
|
* @summary GetAll ArticleContributors.
|
|
14639
14627
|
* @param {string} articleId
|
|
14640
|
-
* @param {string} [articleId2]
|
|
14641
14628
|
* @param {string} [articleName]
|
|
14642
14629
|
* @param {string} [contributorId]
|
|
14643
14630
|
* @param {string} [contributorName]
|
|
@@ -14651,8 +14638,8 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
|
|
|
14651
14638
|
* @param {*} [options] Override http request option.
|
|
14652
14639
|
* @throws {RequiredError}
|
|
14653
14640
|
*/
|
|
14654
|
-
apiV1ArticlesArticleIdContributorsGet(articleId: string,
|
|
14655
|
-
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId,
|
|
14641
|
+
apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ArticleContributorsModel> {
|
|
14642
|
+
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
14656
14643
|
},
|
|
14657
14644
|
/**
|
|
14658
14645
|
*
|
|
@@ -14819,7 +14806,6 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
|
|
|
14819
14806
|
*
|
|
14820
14807
|
* @summary GetAll ArticleContributors.
|
|
14821
14808
|
* @param {string} articleId
|
|
14822
|
-
* @param {string} [articleId2]
|
|
14823
14809
|
* @param {string} [articleName]
|
|
14824
14810
|
* @param {string} [contributorId]
|
|
14825
14811
|
* @param {string} [contributorName]
|
|
@@ -14833,8 +14819,8 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
|
|
|
14833
14819
|
* @param {*} [options] Override http request option.
|
|
14834
14820
|
* @throws {RequiredError}
|
|
14835
14821
|
*/
|
|
14836
|
-
apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
14837
|
-
return localVarFp.apiV1ArticlesArticleIdTagsGet(articleId,
|
|
14822
|
+
apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ArticleContributorsModel> {
|
|
14823
|
+
return localVarFp.apiV1ArticlesArticleIdTagsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
14838
14824
|
},
|
|
14839
14825
|
/**
|
|
14840
14826
|
*
|
|
@@ -14972,7 +14958,6 @@ export class ArticlesApi extends BaseAPI {
|
|
|
14972
14958
|
*
|
|
14973
14959
|
* @summary GetAll ArticleContributors.
|
|
14974
14960
|
* @param {string} articleId
|
|
14975
|
-
* @param {string} [articleId2]
|
|
14976
14961
|
* @param {string} [articleName]
|
|
14977
14962
|
* @param {string} [contributorId]
|
|
14978
14963
|
* @param {string} [contributorName]
|
|
@@ -14987,8 +14972,8 @@ export class ArticlesApi extends BaseAPI {
|
|
|
14987
14972
|
* @throws {RequiredError}
|
|
14988
14973
|
* @memberof ArticlesApi
|
|
14989
14974
|
*/
|
|
14990
|
-
public apiV1ArticlesArticleIdContributorsGet(articleId: string,
|
|
14991
|
-
return ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdContributorsGet(articleId,
|
|
14975
|
+
public apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
14976
|
+
return ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
14992
14977
|
}
|
|
14993
14978
|
|
|
14994
14979
|
/**
|
|
@@ -15184,7 +15169,6 @@ export class ArticlesApi extends BaseAPI {
|
|
|
15184
15169
|
*
|
|
15185
15170
|
* @summary GetAll ArticleContributors.
|
|
15186
15171
|
* @param {string} articleId
|
|
15187
|
-
* @param {string} [articleId2]
|
|
15188
15172
|
* @param {string} [articleName]
|
|
15189
15173
|
* @param {string} [contributorId]
|
|
15190
15174
|
* @param {string} [contributorName]
|
|
@@ -15199,8 +15183,8 @@ export class ArticlesApi extends BaseAPI {
|
|
|
15199
15183
|
* @throws {RequiredError}
|
|
15200
15184
|
* @memberof ArticlesApi
|
|
15201
15185
|
*/
|
|
15202
|
-
public apiV1ArticlesArticleIdTagsGet(articleId: string,
|
|
15203
|
-
return ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdTagsGet(articleId,
|
|
15186
|
+
public apiV1ArticlesArticleIdTagsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, description?: string, website?: string, contributionType?: ContributionType, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
15187
|
+
return ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdTagsGet(articleId, articleName, contributorId, contributorName, email, description, website, contributionType, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
15204
15188
|
}
|
|
15205
15189
|
|
|
15206
15190
|
/**
|
|
@@ -24102,13 +24086,12 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
24102
24086
|
/**
|
|
24103
24087
|
*
|
|
24104
24088
|
* @summary Get all HospitalServices.
|
|
24105
|
-
* @param {string}
|
|
24089
|
+
* @param {string} hospitalId
|
|
24090
|
+
* @param {string} [hospitalName]
|
|
24091
|
+
* @param {string} [hospitalSlug]
|
|
24106
24092
|
* @param {string} [id]
|
|
24107
24093
|
* @param {string} [name]
|
|
24108
24094
|
* @param {string} [description]
|
|
24109
|
-
* @param {string} [hospitalId]
|
|
24110
|
-
* @param {string} [hospitalName]
|
|
24111
|
-
* @param {string} [hospitalSlug]
|
|
24112
24095
|
* @param {string} [specialtyId]
|
|
24113
24096
|
* @param {string} [specialtyTypeId]
|
|
24114
24097
|
* @param {string} [specialtyTypeName]
|
|
@@ -24122,11 +24105,11 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
24122
24105
|
* @param {*} [options] Override http request option.
|
|
24123
24106
|
* @throws {RequiredError}
|
|
24124
24107
|
*/
|
|
24125
|
-
apiV1HospitalsHospitalIdServicesGet: async (
|
|
24126
|
-
// verify required parameter '
|
|
24127
|
-
assertParamExists('apiV1HospitalsHospitalIdServicesGet', '
|
|
24108
|
+
apiV1HospitalsHospitalIdServicesGet: async (hospitalId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyTypeId?: string, specialtyTypeName?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
24109
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
24110
|
+
assertParamExists('apiV1HospitalsHospitalIdServicesGet', 'hospitalId', hospitalId)
|
|
24128
24111
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/services`
|
|
24129
|
-
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(
|
|
24112
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
24130
24113
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
24131
24114
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
24132
24115
|
let baseOptions;
|
|
@@ -24142,6 +24125,14 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
24142
24125
|
// oauth required
|
|
24143
24126
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
24144
24127
|
|
|
24128
|
+
if (hospitalName !== undefined) {
|
|
24129
|
+
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
24130
|
+
}
|
|
24131
|
+
|
|
24132
|
+
if (hospitalSlug !== undefined) {
|
|
24133
|
+
localVarQueryParameter['HospitalSlug'] = hospitalSlug;
|
|
24134
|
+
}
|
|
24135
|
+
|
|
24145
24136
|
if (id !== undefined) {
|
|
24146
24137
|
localVarQueryParameter['Id'] = id;
|
|
24147
24138
|
}
|
|
@@ -24154,18 +24145,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
24154
24145
|
localVarQueryParameter['Description'] = description;
|
|
24155
24146
|
}
|
|
24156
24147
|
|
|
24157
|
-
if (hospitalId !== undefined) {
|
|
24158
|
-
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
24159
|
-
}
|
|
24160
|
-
|
|
24161
|
-
if (hospitalName !== undefined) {
|
|
24162
|
-
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
24163
|
-
}
|
|
24164
|
-
|
|
24165
|
-
if (hospitalSlug !== undefined) {
|
|
24166
|
-
localVarQueryParameter['HospitalSlug'] = hospitalSlug;
|
|
24167
|
-
}
|
|
24168
|
-
|
|
24169
24148
|
if (specialtyId !== undefined) {
|
|
24170
24149
|
localVarQueryParameter['SpecialtyId'] = specialtyId;
|
|
24171
24150
|
}
|
|
@@ -25081,13 +25060,12 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
25081
25060
|
/**
|
|
25082
25061
|
*
|
|
25083
25062
|
* @summary Get all HospitalServices.
|
|
25084
|
-
* @param {string}
|
|
25063
|
+
* @param {string} hospitalId
|
|
25064
|
+
* @param {string} [hospitalName]
|
|
25065
|
+
* @param {string} [hospitalSlug]
|
|
25085
25066
|
* @param {string} [id]
|
|
25086
25067
|
* @param {string} [name]
|
|
25087
25068
|
* @param {string} [description]
|
|
25088
|
-
* @param {string} [hospitalId]
|
|
25089
|
-
* @param {string} [hospitalName]
|
|
25090
|
-
* @param {string} [hospitalSlug]
|
|
25091
25069
|
* @param {string} [specialtyId]
|
|
25092
25070
|
* @param {string} [specialtyTypeId]
|
|
25093
25071
|
* @param {string} [specialtyTypeName]
|
|
@@ -25101,8 +25079,8 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
25101
25079
|
* @param {*} [options] Override http request option.
|
|
25102
25080
|
* @throws {RequiredError}
|
|
25103
25081
|
*/
|
|
25104
|
-
async apiV1HospitalsHospitalIdServicesGet(
|
|
25105
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdServicesGet(
|
|
25082
|
+
async apiV1HospitalsHospitalIdServicesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyTypeId?: string, specialtyTypeName?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServicesModel>> {
|
|
25083
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdServicesGet(hospitalId, hospitalName, hospitalSlug, id, name, description, specialtyId, specialtyTypeId, specialtyTypeName, marketingType, procedure, created, languageCode, page, limit, lastRetrieved, options);
|
|
25106
25084
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
25107
25085
|
},
|
|
25108
25086
|
/**
|
|
@@ -25592,13 +25570,12 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
25592
25570
|
/**
|
|
25593
25571
|
*
|
|
25594
25572
|
* @summary Get all HospitalServices.
|
|
25595
|
-
* @param {string}
|
|
25573
|
+
* @param {string} hospitalId
|
|
25574
|
+
* @param {string} [hospitalName]
|
|
25575
|
+
* @param {string} [hospitalSlug]
|
|
25596
25576
|
* @param {string} [id]
|
|
25597
25577
|
* @param {string} [name]
|
|
25598
25578
|
* @param {string} [description]
|
|
25599
|
-
* @param {string} [hospitalId]
|
|
25600
|
-
* @param {string} [hospitalName]
|
|
25601
|
-
* @param {string} [hospitalSlug]
|
|
25602
25579
|
* @param {string} [specialtyId]
|
|
25603
25580
|
* @param {string} [specialtyTypeId]
|
|
25604
25581
|
* @param {string} [specialtyTypeName]
|
|
@@ -25612,8 +25589,8 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
25612
25589
|
* @param {*} [options] Override http request option.
|
|
25613
25590
|
* @throws {RequiredError}
|
|
25614
25591
|
*/
|
|
25615
|
-
apiV1HospitalsHospitalIdServicesGet(
|
|
25616
|
-
return localVarFp.apiV1HospitalsHospitalIdServicesGet(
|
|
25592
|
+
apiV1HospitalsHospitalIdServicesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyTypeId?: string, specialtyTypeName?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalServicesModel> {
|
|
25593
|
+
return localVarFp.apiV1HospitalsHospitalIdServicesGet(hospitalId, hospitalName, hospitalSlug, id, name, description, specialtyId, specialtyTypeId, specialtyTypeName, marketingType, procedure, created, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
25617
25594
|
},
|
|
25618
25595
|
/**
|
|
25619
25596
|
*
|
|
@@ -26146,13 +26123,12 @@ export class HospitalsApi extends BaseAPI {
|
|
|
26146
26123
|
/**
|
|
26147
26124
|
*
|
|
26148
26125
|
* @summary Get all HospitalServices.
|
|
26149
|
-
* @param {string}
|
|
26126
|
+
* @param {string} hospitalId
|
|
26127
|
+
* @param {string} [hospitalName]
|
|
26128
|
+
* @param {string} [hospitalSlug]
|
|
26150
26129
|
* @param {string} [id]
|
|
26151
26130
|
* @param {string} [name]
|
|
26152
26131
|
* @param {string} [description]
|
|
26153
|
-
* @param {string} [hospitalId]
|
|
26154
|
-
* @param {string} [hospitalName]
|
|
26155
|
-
* @param {string} [hospitalSlug]
|
|
26156
26132
|
* @param {string} [specialtyId]
|
|
26157
26133
|
* @param {string} [specialtyTypeId]
|
|
26158
26134
|
* @param {string} [specialtyTypeName]
|
|
@@ -26167,8 +26143,8 @@ export class HospitalsApi extends BaseAPI {
|
|
|
26167
26143
|
* @throws {RequiredError}
|
|
26168
26144
|
* @memberof HospitalsApi
|
|
26169
26145
|
*/
|
|
26170
|
-
public apiV1HospitalsHospitalIdServicesGet(
|
|
26171
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdServicesGet(
|
|
26146
|
+
public apiV1HospitalsHospitalIdServicesGet(hospitalId: string, hospitalName?: string, hospitalSlug?: string, id?: string, name?: string, description?: string, specialtyId?: string, specialtyTypeId?: string, specialtyTypeName?: string, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
26147
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdServicesGet(hospitalId, hospitalName, hospitalSlug, id, name, description, specialtyId, specialtyTypeId, specialtyTypeName, marketingType, procedure, created, languageCode, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
26172
26148
|
}
|
|
26173
26149
|
|
|
26174
26150
|
/**
|