ch-admin-api-client-typescript 5.88.14 → 5.88.21
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/deals-api.d.ts +25 -6
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +30 -18
- package/lib/api/frequently-asked-questions-api.d.ts +48 -3
- package/lib/api/frequently-asked-questions-api.d.ts.map +1 -1
- package/lib/api/frequently-asked-questions-api.js +39 -9
- package/lib/api/hospitals-api.d.ts +12 -3
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +15 -9
- package/lib/models/create-frequently-asked-question-command.d.ts +30 -0
- package/lib/models/create-frequently-asked-question-command.d.ts.map +1 -1
- package/lib/models/create-specialty-type-command.d.ts +7 -0
- package/lib/models/create-specialty-type-command.d.ts.map +1 -1
- package/lib/models/frequently-asked-question-item-model.d.ts +60 -0
- package/lib/models/frequently-asked-question-item-model.d.ts.map +1 -1
- package/lib/models/frequently-asked-question-model.d.ts +60 -0
- package/lib/models/frequently-asked-question-model.d.ts.map +1 -1
- package/lib/models/frequently-asked-question-subcategories.d.ts +5 -0
- package/lib/models/frequently-asked-question-subcategories.d.ts.map +1 -1
- package/lib/models/frequently-asked-question-subcategories.js +6 -1
- package/lib/models/patch-specialty-type-command.d.ts +7 -0
- package/lib/models/patch-specialty-type-command.d.ts.map +1 -1
- package/lib/models/specialty-type-model.d.ts +7 -0
- package/lib/models/specialty-type-model.d.ts.map +1 -1
- package/lib/models/update-specialty-type-command.d.ts +7 -0
- package/lib/models/update-specialty-type-command.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -362,6 +362,11 @@ var FrequentlyAskedQuestionsApiAxiosParamCreator = function (configuration) {
|
|
|
362
362
|
* @param {string} [doctorAffiliationId]
|
|
363
363
|
* @param {string} [dealId]
|
|
364
364
|
* @param {string} [articleId]
|
|
365
|
+
* @param {string} [generalArticleId]
|
|
366
|
+
* @param {string} [hospitalSpecialtyId]
|
|
367
|
+
* @param {string} [serviceId]
|
|
368
|
+
* @param {string} [specialtyTypeId]
|
|
369
|
+
* @param {string} [specialtyId]
|
|
365
370
|
* @param {FrequentlyAskedQuestionStatus} [status]
|
|
366
371
|
* @param {boolean} [showHidden]
|
|
367
372
|
* @param {number} [page]
|
|
@@ -370,12 +375,12 @@ var FrequentlyAskedQuestionsApiAxiosParamCreator = function (configuration) {
|
|
|
370
375
|
* @param {*} [options] Override http request option.
|
|
371
376
|
* @throws {RequiredError}
|
|
372
377
|
*/
|
|
373
|
-
apiV1FrequentlyaskedquestionsGet: function (languageCode_1, name_1, category_1, subcategory_1, id_1, hospitalId_1, doctorAffiliationId_1, dealId_1, articleId_1, status_1, showHidden_1, page_1, limit_1, lastRetrieved_1) {
|
|
378
|
+
apiV1FrequentlyaskedquestionsGet: function (languageCode_1, name_1, category_1, subcategory_1, id_1, hospitalId_1, doctorAffiliationId_1, dealId_1, articleId_1, generalArticleId_1, hospitalSpecialtyId_1, serviceId_1, specialtyTypeId_1, specialtyId_1, status_1, showHidden_1, page_1, limit_1, lastRetrieved_1) {
|
|
374
379
|
var args_1 = [];
|
|
375
|
-
for (var _i =
|
|
376
|
-
args_1[_i -
|
|
380
|
+
for (var _i = 19; _i < arguments.length; _i++) {
|
|
381
|
+
args_1[_i - 19] = arguments[_i];
|
|
377
382
|
}
|
|
378
|
-
return __awaiter(_this, __spreadArray([languageCode_1, name_1, category_1, subcategory_1, id_1, hospitalId_1, doctorAffiliationId_1, dealId_1, articleId_1, status_1, showHidden_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (languageCode, name, category, subcategory, id, hospitalId, doctorAffiliationId, dealId, articleId, status, showHidden, page, limit, lastRetrieved, options) {
|
|
383
|
+
return __awaiter(_this, __spreadArray([languageCode_1, name_1, category_1, subcategory_1, id_1, hospitalId_1, doctorAffiliationId_1, dealId_1, articleId_1, generalArticleId_1, hospitalSpecialtyId_1, serviceId_1, specialtyTypeId_1, specialtyId_1, status_1, showHidden_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (languageCode, name, category, subcategory, id, hospitalId, doctorAffiliationId, dealId, articleId, generalArticleId, hospitalSpecialtyId, serviceId, specialtyTypeId, specialtyId, status, showHidden, page, limit, lastRetrieved, options) {
|
|
379
384
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
380
385
|
if (options === void 0) { options = {}; }
|
|
381
386
|
return __generator(this, function (_a) {
|
|
@@ -423,6 +428,21 @@ var FrequentlyAskedQuestionsApiAxiosParamCreator = function (configuration) {
|
|
|
423
428
|
if (articleId !== undefined) {
|
|
424
429
|
localVarQueryParameter['articleId'] = articleId;
|
|
425
430
|
}
|
|
431
|
+
if (generalArticleId !== undefined) {
|
|
432
|
+
localVarQueryParameter['generalArticleId'] = generalArticleId;
|
|
433
|
+
}
|
|
434
|
+
if (hospitalSpecialtyId !== undefined) {
|
|
435
|
+
localVarQueryParameter['hospitalSpecialtyId'] = hospitalSpecialtyId;
|
|
436
|
+
}
|
|
437
|
+
if (serviceId !== undefined) {
|
|
438
|
+
localVarQueryParameter['serviceId'] = serviceId;
|
|
439
|
+
}
|
|
440
|
+
if (specialtyTypeId !== undefined) {
|
|
441
|
+
localVarQueryParameter['specialtyTypeId'] = specialtyTypeId;
|
|
442
|
+
}
|
|
443
|
+
if (specialtyId !== undefined) {
|
|
444
|
+
localVarQueryParameter['specialtyId'] = specialtyId;
|
|
445
|
+
}
|
|
426
446
|
if (status !== undefined) {
|
|
427
447
|
localVarQueryParameter['status'] = status;
|
|
428
448
|
}
|
|
@@ -623,6 +643,11 @@ var FrequentlyAskedQuestionsApiFp = function (configuration) {
|
|
|
623
643
|
* @param {string} [doctorAffiliationId]
|
|
624
644
|
* @param {string} [dealId]
|
|
625
645
|
* @param {string} [articleId]
|
|
646
|
+
* @param {string} [generalArticleId]
|
|
647
|
+
* @param {string} [hospitalSpecialtyId]
|
|
648
|
+
* @param {string} [serviceId]
|
|
649
|
+
* @param {string} [specialtyTypeId]
|
|
650
|
+
* @param {string} [specialtyId]
|
|
626
651
|
* @param {FrequentlyAskedQuestionStatus} [status]
|
|
627
652
|
* @param {boolean} [showHidden]
|
|
628
653
|
* @param {number} [page]
|
|
@@ -631,12 +656,12 @@ var FrequentlyAskedQuestionsApiFp = function (configuration) {
|
|
|
631
656
|
* @param {*} [options] Override http request option.
|
|
632
657
|
* @throws {RequiredError}
|
|
633
658
|
*/
|
|
634
|
-
apiV1FrequentlyaskedquestionsGet: function (languageCode, name, category, subcategory, id, hospitalId, doctorAffiliationId, dealId, articleId, status, showHidden, page, limit, lastRetrieved, options) {
|
|
659
|
+
apiV1FrequentlyaskedquestionsGet: function (languageCode, name, category, subcategory, id, hospitalId, doctorAffiliationId, dealId, articleId, generalArticleId, hospitalSpecialtyId, serviceId, specialtyTypeId, specialtyId, status, showHidden, page, limit, lastRetrieved, options) {
|
|
635
660
|
return __awaiter(this, void 0, void 0, function () {
|
|
636
661
|
var localVarAxiosArgs;
|
|
637
662
|
return __generator(this, function (_a) {
|
|
638
663
|
switch (_a.label) {
|
|
639
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1FrequentlyaskedquestionsGet(languageCode, name, category, subcategory, id, hospitalId, doctorAffiliationId, dealId, articleId, status, showHidden, page, limit, lastRetrieved, options)];
|
|
664
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1FrequentlyaskedquestionsGet(languageCode, name, category, subcategory, id, hospitalId, doctorAffiliationId, dealId, articleId, generalArticleId, hospitalSpecialtyId, serviceId, specialtyTypeId, specialtyId, status, showHidden, page, limit, lastRetrieved, options)];
|
|
640
665
|
case 1:
|
|
641
666
|
localVarAxiosArgs = _a.sent();
|
|
642
667
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -740,6 +765,11 @@ var FrequentlyAskedQuestionsApiFactory = function (configuration, basePath, axio
|
|
|
740
765
|
* @param {string} [doctorAffiliationId]
|
|
741
766
|
* @param {string} [dealId]
|
|
742
767
|
* @param {string} [articleId]
|
|
768
|
+
* @param {string} [generalArticleId]
|
|
769
|
+
* @param {string} [hospitalSpecialtyId]
|
|
770
|
+
* @param {string} [serviceId]
|
|
771
|
+
* @param {string} [specialtyTypeId]
|
|
772
|
+
* @param {string} [specialtyId]
|
|
743
773
|
* @param {FrequentlyAskedQuestionStatus} [status]
|
|
744
774
|
* @param {boolean} [showHidden]
|
|
745
775
|
* @param {number} [page]
|
|
@@ -748,8 +778,8 @@ var FrequentlyAskedQuestionsApiFactory = function (configuration, basePath, axio
|
|
|
748
778
|
* @param {*} [options] Override http request option.
|
|
749
779
|
* @throws {RequiredError}
|
|
750
780
|
*/
|
|
751
|
-
apiV1FrequentlyaskedquestionsGet: function (languageCode, name, category, subcategory, id, hospitalId, doctorAffiliationId, dealId, articleId, status, showHidden, page, limit, lastRetrieved, options) {
|
|
752
|
-
return localVarFp.apiV1FrequentlyaskedquestionsGet(languageCode, name, category, subcategory, id, hospitalId, doctorAffiliationId, dealId, articleId, status, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
781
|
+
apiV1FrequentlyaskedquestionsGet: function (languageCode, name, category, subcategory, id, hospitalId, doctorAffiliationId, dealId, articleId, generalArticleId, hospitalSpecialtyId, serviceId, specialtyTypeId, specialtyId, status, showHidden, page, limit, lastRetrieved, options) {
|
|
782
|
+
return localVarFp.apiV1FrequentlyaskedquestionsGet(languageCode, name, category, subcategory, id, hospitalId, doctorAffiliationId, dealId, articleId, generalArticleId, hospitalSpecialtyId, serviceId, specialtyTypeId, specialtyId, status, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
753
783
|
},
|
|
754
784
|
/**
|
|
755
785
|
*
|
|
@@ -846,7 +876,7 @@ var FrequentlyAskedQuestionsApi = /** @class */ (function (_super) {
|
|
|
846
876
|
FrequentlyAskedQuestionsApi.prototype.apiV1FrequentlyaskedquestionsGet = function (requestParameters, options) {
|
|
847
877
|
var _this = this;
|
|
848
878
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
849
|
-
return (0, exports.FrequentlyAskedQuestionsApiFp)(this.configuration).apiV1FrequentlyaskedquestionsGet(requestParameters.languageCode, requestParameters.name, requestParameters.category, requestParameters.subcategory, requestParameters.id, requestParameters.hospitalId, requestParameters.doctorAffiliationId, requestParameters.dealId, requestParameters.articleId, requestParameters.status, requestParameters.showHidden, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
879
|
+
return (0, exports.FrequentlyAskedQuestionsApiFp)(this.configuration).apiV1FrequentlyaskedquestionsGet(requestParameters.languageCode, requestParameters.name, requestParameters.category, requestParameters.subcategory, requestParameters.id, requestParameters.hospitalId, requestParameters.doctorAffiliationId, requestParameters.dealId, requestParameters.articleId, requestParameters.generalArticleId, requestParameters.hospitalSpecialtyId, requestParameters.serviceId, requestParameters.specialtyTypeId, requestParameters.specialtyId, requestParameters.status, requestParameters.showHidden, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
850
880
|
};
|
|
851
881
|
/**
|
|
852
882
|
*
|
|
@@ -2098,6 +2098,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2098
2098
|
*
|
|
2099
2099
|
* @summary Get all Hospitals. (Auth policies: RequireDefaultAdminAppRole)
|
|
2100
2100
|
* @param {boolean} [affiliatedItemsOnly]
|
|
2101
|
+
* @param {boolean} [webAppDeployed]
|
|
2101
2102
|
* @param {string} [hospitalId]
|
|
2102
2103
|
* @param {StringFilterTypes} [nameFilterType]
|
|
2103
2104
|
* @param {string} [name]
|
|
@@ -2117,7 +2118,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2117
2118
|
* @param {*} [options] Override http request option.
|
|
2118
2119
|
* @throws {RequiredError}
|
|
2119
2120
|
*/
|
|
2120
|
-
apiV1HospitalsSimpleGet: (affiliatedItemsOnly?: boolean, hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2121
|
+
apiV1HospitalsSimpleGet: (affiliatedItemsOnly?: boolean, webAppDeployed?: boolean, hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2121
2122
|
/**
|
|
2122
2123
|
*
|
|
2123
2124
|
* @summary (Auth policies: RequireDefaultAdminAppRole)
|
|
@@ -4086,6 +4087,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
4086
4087
|
*
|
|
4087
4088
|
* @summary Get all Hospitals. (Auth policies: RequireDefaultAdminAppRole)
|
|
4088
4089
|
* @param {boolean} [affiliatedItemsOnly]
|
|
4090
|
+
* @param {boolean} [webAppDeployed]
|
|
4089
4091
|
* @param {string} [hospitalId]
|
|
4090
4092
|
* @param {StringFilterTypes} [nameFilterType]
|
|
4091
4093
|
* @param {string} [name]
|
|
@@ -4105,7 +4107,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
4105
4107
|
* @param {*} [options] Override http request option.
|
|
4106
4108
|
* @throws {RequiredError}
|
|
4107
4109
|
*/
|
|
4108
|
-
apiV1HospitalsSimpleGet(affiliatedItemsOnly?: boolean, hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>>;
|
|
4110
|
+
apiV1HospitalsSimpleGet(affiliatedItemsOnly?: boolean, webAppDeployed?: boolean, hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>>;
|
|
4109
4111
|
/**
|
|
4110
4112
|
*
|
|
4111
4113
|
* @summary (Auth policies: RequireDefaultAdminAppRole)
|
|
@@ -6074,6 +6076,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
6074
6076
|
*
|
|
6075
6077
|
* @summary Get all Hospitals. (Auth policies: RequireDefaultAdminAppRole)
|
|
6076
6078
|
* @param {boolean} [affiliatedItemsOnly]
|
|
6079
|
+
* @param {boolean} [webAppDeployed]
|
|
6077
6080
|
* @param {string} [hospitalId]
|
|
6078
6081
|
* @param {StringFilterTypes} [nameFilterType]
|
|
6079
6082
|
* @param {string} [name]
|
|
@@ -6093,7 +6096,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
6093
6096
|
* @param {*} [options] Override http request option.
|
|
6094
6097
|
* @throws {RequiredError}
|
|
6095
6098
|
*/
|
|
6096
|
-
apiV1HospitalsSimpleGet(affiliatedItemsOnly?: boolean, hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
6099
|
+
apiV1HospitalsSimpleGet(affiliatedItemsOnly?: boolean, webAppDeployed?: boolean, hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
6097
6100
|
/**
|
|
6098
6101
|
*
|
|
6099
6102
|
* @summary (Auth policies: RequireDefaultAdminAppRole)
|
|
@@ -11470,6 +11473,12 @@ export interface HospitalsApiApiV1HospitalsSimpleGetRequest {
|
|
|
11470
11473
|
* @memberof HospitalsApiApiV1HospitalsSimpleGet
|
|
11471
11474
|
*/
|
|
11472
11475
|
readonly affiliatedItemsOnly?: boolean;
|
|
11476
|
+
/**
|
|
11477
|
+
*
|
|
11478
|
+
* @type {boolean}
|
|
11479
|
+
* @memberof HospitalsApiApiV1HospitalsSimpleGet
|
|
11480
|
+
*/
|
|
11481
|
+
readonly webAppDeployed?: boolean;
|
|
11473
11482
|
/**
|
|
11474
11483
|
*
|
|
11475
11484
|
* @type {string}
|