ch-api-client-typescript2 5.90.57 → 5.90.68
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 +141 -0
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +145 -0
- package/lib/api/doctor-affiliations-api.d.ts +141 -0
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +145 -0
- package/lib/api/hospitals-api.d.ts +281 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +288 -0
- package/lib/models/article-type.d.ts +3 -1
- package/lib/models/article-type.d.ts.map +1 -1
- package/lib/models/article-type.js +4 -2
- package/lib/models/create-form-result-command.d.ts +12 -0
- package/lib/models/create-form-result-command.d.ts.map +1 -1
- package/lib/models/form-result-item-model.d.ts +12 -0
- package/lib/models/form-result-item-model.d.ts.map +1 -1
- package/lib/models/form-result-model.d.ts +12 -0
- package/lib/models/form-result-model.d.ts.map +1 -1
- package/lib/models/sitemap-domain-names.d.ts +1 -0
- package/lib/models/sitemap-domain-names.d.ts.map +1 -1
- package/lib/models/sitemap-domain-names.js +1 -0
- package/package.json +1 -1
|
@@ -176,6 +176,89 @@ var DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
176
176
|
});
|
|
177
177
|
});
|
|
178
178
|
},
|
|
179
|
+
/**
|
|
180
|
+
*
|
|
181
|
+
* @summary Get formResults by doctorAffiliationId
|
|
182
|
+
* @param {string} doctorAffiliationId
|
|
183
|
+
* @param {FormResultByHospitalSortingField} [sortingField]
|
|
184
|
+
* @param {SortingDirection} [sortingDirection]
|
|
185
|
+
* @param {string} [languageCode]
|
|
186
|
+
* @param {Date} [startDate]
|
|
187
|
+
* @param {Date} [endDate]
|
|
188
|
+
* @param {FormTemplateType} [formTemplateType]
|
|
189
|
+
* @param {FormResultStatus} [status]
|
|
190
|
+
* @param {number} [page]
|
|
191
|
+
* @param {number} [limit]
|
|
192
|
+
* @param {Date} [lastRetrieved]
|
|
193
|
+
* @param {*} [options] Override http request option.
|
|
194
|
+
* @throws {RequiredError}
|
|
195
|
+
*/
|
|
196
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdFormresultsGet: function (doctorAffiliationId_1, sortingField_1, sortingDirection_1, languageCode_1, startDate_1, endDate_1, formTemplateType_1, status_1, page_1, limit_1, lastRetrieved_1) {
|
|
197
|
+
var args_1 = [];
|
|
198
|
+
for (var _i = 11; _i < arguments.length; _i++) {
|
|
199
|
+
args_1[_i - 11] = arguments[_i];
|
|
200
|
+
}
|
|
201
|
+
return __awaiter(_this, __spreadArray([doctorAffiliationId_1, sortingField_1, sortingDirection_1, languageCode_1, startDate_1, endDate_1, formTemplateType_1, status_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (doctorAffiliationId, sortingField, sortingDirection, languageCode, startDate, endDate, formTemplateType, status, page, limit, lastRetrieved, options) {
|
|
202
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
203
|
+
if (options === void 0) { options = {}; }
|
|
204
|
+
return __generator(this, function (_a) {
|
|
205
|
+
// verify required parameter 'doctorAffiliationId' is not null or undefined
|
|
206
|
+
(0, common_1.assertParamExists)('apiV2DoctoraffiliationsDoctorAffiliationIdFormresultsGet', 'doctorAffiliationId', doctorAffiliationId);
|
|
207
|
+
localVarPath = "/api/v2/doctoraffiliations/{doctorAffiliationId}/formresults"
|
|
208
|
+
.replace("{".concat("doctorAffiliationId", "}"), encodeURIComponent(String(doctorAffiliationId)));
|
|
209
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
210
|
+
if (configuration) {
|
|
211
|
+
baseOptions = configuration.baseOptions;
|
|
212
|
+
}
|
|
213
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
214
|
+
localVarHeaderParameter = {};
|
|
215
|
+
localVarQueryParameter = {};
|
|
216
|
+
if (sortingField !== undefined) {
|
|
217
|
+
localVarQueryParameter['sortingField'] = sortingField;
|
|
218
|
+
}
|
|
219
|
+
if (sortingDirection !== undefined) {
|
|
220
|
+
localVarQueryParameter['sortingDirection'] = sortingDirection;
|
|
221
|
+
}
|
|
222
|
+
if (languageCode !== undefined) {
|
|
223
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
224
|
+
}
|
|
225
|
+
if (startDate !== undefined) {
|
|
226
|
+
localVarQueryParameter['startDate'] = (startDate instanceof Date) ?
|
|
227
|
+
startDate.toISOString() :
|
|
228
|
+
startDate;
|
|
229
|
+
}
|
|
230
|
+
if (endDate !== undefined) {
|
|
231
|
+
localVarQueryParameter['endDate'] = (endDate instanceof Date) ?
|
|
232
|
+
endDate.toISOString() :
|
|
233
|
+
endDate;
|
|
234
|
+
}
|
|
235
|
+
if (formTemplateType !== undefined) {
|
|
236
|
+
localVarQueryParameter['formTemplateType'] = formTemplateType;
|
|
237
|
+
}
|
|
238
|
+
if (status !== undefined) {
|
|
239
|
+
localVarQueryParameter['status'] = status;
|
|
240
|
+
}
|
|
241
|
+
if (page !== undefined) {
|
|
242
|
+
localVarQueryParameter['page'] = page;
|
|
243
|
+
}
|
|
244
|
+
if (limit !== undefined) {
|
|
245
|
+
localVarQueryParameter['limit'] = limit;
|
|
246
|
+
}
|
|
247
|
+
if (lastRetrieved !== undefined) {
|
|
248
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
|
|
249
|
+
lastRetrieved.toISOString() :
|
|
250
|
+
lastRetrieved;
|
|
251
|
+
}
|
|
252
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
253
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
254
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
255
|
+
return [2 /*return*/, {
|
|
256
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
257
|
+
options: localVarRequestOptions,
|
|
258
|
+
}];
|
|
259
|
+
});
|
|
260
|
+
});
|
|
261
|
+
},
|
|
179
262
|
/**
|
|
180
263
|
*
|
|
181
264
|
* @summary Get all DoctorAffiliationMedias.
|
|
@@ -522,6 +605,36 @@ var DoctorAffiliationsApiFp = function (configuration) {
|
|
|
522
605
|
});
|
|
523
606
|
});
|
|
524
607
|
},
|
|
608
|
+
/**
|
|
609
|
+
*
|
|
610
|
+
* @summary Get formResults by doctorAffiliationId
|
|
611
|
+
* @param {string} doctorAffiliationId
|
|
612
|
+
* @param {FormResultByHospitalSortingField} [sortingField]
|
|
613
|
+
* @param {SortingDirection} [sortingDirection]
|
|
614
|
+
* @param {string} [languageCode]
|
|
615
|
+
* @param {Date} [startDate]
|
|
616
|
+
* @param {Date} [endDate]
|
|
617
|
+
* @param {FormTemplateType} [formTemplateType]
|
|
618
|
+
* @param {FormResultStatus} [status]
|
|
619
|
+
* @param {number} [page]
|
|
620
|
+
* @param {number} [limit]
|
|
621
|
+
* @param {Date} [lastRetrieved]
|
|
622
|
+
* @param {*} [options] Override http request option.
|
|
623
|
+
* @throws {RequiredError}
|
|
624
|
+
*/
|
|
625
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdFormresultsGet: function (doctorAffiliationId, sortingField, sortingDirection, languageCode, startDate, endDate, formTemplateType, status, page, limit, lastRetrieved, options) {
|
|
626
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
627
|
+
var localVarAxiosArgs;
|
|
628
|
+
return __generator(this, function (_a) {
|
|
629
|
+
switch (_a.label) {
|
|
630
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2DoctoraffiliationsDoctorAffiliationIdFormresultsGet(doctorAffiliationId, sortingField, sortingDirection, languageCode, startDate, endDate, formTemplateType, status, page, limit, lastRetrieved, options)];
|
|
631
|
+
case 1:
|
|
632
|
+
localVarAxiosArgs = _a.sent();
|
|
633
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
634
|
+
}
|
|
635
|
+
});
|
|
636
|
+
});
|
|
637
|
+
},
|
|
525
638
|
/**
|
|
526
639
|
*
|
|
527
640
|
* @summary Get all DoctorAffiliationMedias.
|
|
@@ -674,6 +787,26 @@ var DoctorAffiliationsApiFactory = function (configuration, basePath, axios) {
|
|
|
674
787
|
apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet: function (doctorAffiliationId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options) {
|
|
675
788
|
return localVarFp.apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(doctorAffiliationId, year, month, timeZone, isExternal, isOnline, appointmentIdExcluded, excludeUnavailableTimeSlots, options).then(function (request) { return request(axios, basePath); });
|
|
676
789
|
},
|
|
790
|
+
/**
|
|
791
|
+
*
|
|
792
|
+
* @summary Get formResults by doctorAffiliationId
|
|
793
|
+
* @param {string} doctorAffiliationId
|
|
794
|
+
* @param {FormResultByHospitalSortingField} [sortingField]
|
|
795
|
+
* @param {SortingDirection} [sortingDirection]
|
|
796
|
+
* @param {string} [languageCode]
|
|
797
|
+
* @param {Date} [startDate]
|
|
798
|
+
* @param {Date} [endDate]
|
|
799
|
+
* @param {FormTemplateType} [formTemplateType]
|
|
800
|
+
* @param {FormResultStatus} [status]
|
|
801
|
+
* @param {number} [page]
|
|
802
|
+
* @param {number} [limit]
|
|
803
|
+
* @param {Date} [lastRetrieved]
|
|
804
|
+
* @param {*} [options] Override http request option.
|
|
805
|
+
* @throws {RequiredError}
|
|
806
|
+
*/
|
|
807
|
+
apiV2DoctoraffiliationsDoctorAffiliationIdFormresultsGet: function (doctorAffiliationId, sortingField, sortingDirection, languageCode, startDate, endDate, formTemplateType, status, page, limit, lastRetrieved, options) {
|
|
808
|
+
return localVarFp.apiV2DoctoraffiliationsDoctorAffiliationIdFormresultsGet(doctorAffiliationId, sortingField, sortingDirection, languageCode, startDate, endDate, formTemplateType, status, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
809
|
+
},
|
|
677
810
|
/**
|
|
678
811
|
*
|
|
679
812
|
* @summary Get all DoctorAffiliationMedias.
|
|
@@ -775,6 +908,18 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
|
|
|
775
908
|
var _this = this;
|
|
776
909
|
return (0, exports.DoctorAffiliationsApiFp)(this.configuration).apiV2DoctoraffiliationsDoctorAffiliationIdAppointmenttimetablesGet(requestParameters.doctorAffiliationId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.isExternal, requestParameters.isOnline, requestParameters.appointmentIdExcluded, requestParameters.excludeUnavailableTimeSlots, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
777
910
|
};
|
|
911
|
+
/**
|
|
912
|
+
*
|
|
913
|
+
* @summary Get formResults by doctorAffiliationId
|
|
914
|
+
* @param {DoctorAffiliationsApiApiV2DoctoraffiliationsDoctorAffiliationIdFormresultsGetRequest} requestParameters Request parameters.
|
|
915
|
+
* @param {*} [options] Override http request option.
|
|
916
|
+
* @throws {RequiredError}
|
|
917
|
+
* @memberof DoctorAffiliationsApi
|
|
918
|
+
*/
|
|
919
|
+
DoctorAffiliationsApi.prototype.apiV2DoctoraffiliationsDoctorAffiliationIdFormresultsGet = function (requestParameters, options) {
|
|
920
|
+
var _this = this;
|
|
921
|
+
return (0, exports.DoctorAffiliationsApiFp)(this.configuration).apiV2DoctoraffiliationsDoctorAffiliationIdFormresultsGet(requestParameters.doctorAffiliationId, requestParameters.sortingField, requestParameters.sortingDirection, requestParameters.languageCode, requestParameters.startDate, requestParameters.endDate, requestParameters.formTemplateType, requestParameters.status, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
922
|
+
};
|
|
778
923
|
/**
|
|
779
924
|
*
|
|
780
925
|
* @summary Get all DoctorAffiliationMedias.
|
|
@@ -222,6 +222,17 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
222
222
|
* @throws {RequiredError}
|
|
223
223
|
*/
|
|
224
224
|
apiV2HospitalsHospitalIdDealsSlugGet: (hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
225
|
+
/**
|
|
226
|
+
*
|
|
227
|
+
* @summary Get default inquiry form by hospitalId and platform.
|
|
228
|
+
* @param {string} hospitalId
|
|
229
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
230
|
+
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
231
|
+
* @param {string} [previewSecret]
|
|
232
|
+
* @param {*} [options] Override http request option.
|
|
233
|
+
* @throws {RequiredError}
|
|
234
|
+
*/
|
|
235
|
+
apiV2HospitalsHospitalIdDefaultinquiryformGet: (hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, previewSecret?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
225
236
|
/**
|
|
226
237
|
*
|
|
227
238
|
* @summary Get hospital\'s doctorAffiliations by slug
|
|
@@ -565,6 +576,32 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
565
576
|
* @throws {RequiredError}
|
|
566
577
|
*/
|
|
567
578
|
apiV2HospitalsHospitalIdSecurefilesPost: (hospitalId: string, files?: Array<File>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
579
|
+
/**
|
|
580
|
+
*
|
|
581
|
+
* @summary Get all HospitalServices by Hospital.
|
|
582
|
+
* @param {string} hospitalId
|
|
583
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
584
|
+
* @param {string} [id]
|
|
585
|
+
* @param {string} [name]
|
|
586
|
+
* @param {string} [slug]
|
|
587
|
+
* @param {string} [specialtyId]
|
|
588
|
+
* @param {string} [specialtyName]
|
|
589
|
+
* @param {string} [specialtyTypeId]
|
|
590
|
+
* @param {string} [specialtyTypeName]
|
|
591
|
+
* @param {string} [serviceCategoryId]
|
|
592
|
+
* @param {boolean} [appointmentEnabled]
|
|
593
|
+
* @param {MarketingType} [marketingType]
|
|
594
|
+
* @param {Procedure} [procedure]
|
|
595
|
+
* @param {Date} [created]
|
|
596
|
+
* @param {string} [languageCode]
|
|
597
|
+
* @param {boolean} [returnDefaultValue]
|
|
598
|
+
* @param {number} [page]
|
|
599
|
+
* @param {number} [limit]
|
|
600
|
+
* @param {Date} [lastRetrieved]
|
|
601
|
+
* @param {*} [options] Override http request option.
|
|
602
|
+
* @throws {RequiredError}
|
|
603
|
+
*/
|
|
604
|
+
apiV2HospitalsHospitalIdServicesGet: (hospitalId: string, xCloudhospitalPlatform?: string, id?: string, name?: string, slug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, appointmentEnabled?: boolean, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
568
605
|
/**
|
|
569
606
|
*
|
|
570
607
|
* @summary Get all HospitalSpecialties.
|
|
@@ -1041,6 +1078,17 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1041
1078
|
* @throws {RequiredError}
|
|
1042
1079
|
*/
|
|
1043
1080
|
apiV2HospitalsHospitalIdDealsSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DealModel>>;
|
|
1081
|
+
/**
|
|
1082
|
+
*
|
|
1083
|
+
* @summary Get default inquiry form by hospitalId and platform.
|
|
1084
|
+
* @param {string} hospitalId
|
|
1085
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1086
|
+
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1087
|
+
* @param {string} [previewSecret]
|
|
1088
|
+
* @param {*} [options] Override http request option.
|
|
1089
|
+
* @throws {RequiredError}
|
|
1090
|
+
*/
|
|
1091
|
+
apiV2HospitalsHospitalIdDefaultinquiryformGet(hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, previewSecret?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyFormModel>>;
|
|
1044
1092
|
/**
|
|
1045
1093
|
*
|
|
1046
1094
|
* @summary Get hospital\'s doctorAffiliations by slug
|
|
@@ -1384,6 +1432,32 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
1384
1432
|
* @throws {RequiredError}
|
|
1385
1433
|
*/
|
|
1386
1434
|
apiV2HospitalsHospitalIdSecurefilesPost(hospitalId: string, files?: Array<File>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SecureFilesUploadedModel>>;
|
|
1435
|
+
/**
|
|
1436
|
+
*
|
|
1437
|
+
* @summary Get all HospitalServices by Hospital.
|
|
1438
|
+
* @param {string} hospitalId
|
|
1439
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1440
|
+
* @param {string} [id]
|
|
1441
|
+
* @param {string} [name]
|
|
1442
|
+
* @param {string} [slug]
|
|
1443
|
+
* @param {string} [specialtyId]
|
|
1444
|
+
* @param {string} [specialtyName]
|
|
1445
|
+
* @param {string} [specialtyTypeId]
|
|
1446
|
+
* @param {string} [specialtyTypeName]
|
|
1447
|
+
* @param {string} [serviceCategoryId]
|
|
1448
|
+
* @param {boolean} [appointmentEnabled]
|
|
1449
|
+
* @param {MarketingType} [marketingType]
|
|
1450
|
+
* @param {Procedure} [procedure]
|
|
1451
|
+
* @param {Date} [created]
|
|
1452
|
+
* @param {string} [languageCode]
|
|
1453
|
+
* @param {boolean} [returnDefaultValue]
|
|
1454
|
+
* @param {number} [page]
|
|
1455
|
+
* @param {number} [limit]
|
|
1456
|
+
* @param {Date} [lastRetrieved]
|
|
1457
|
+
* @param {*} [options] Override http request option.
|
|
1458
|
+
* @throws {RequiredError}
|
|
1459
|
+
*/
|
|
1460
|
+
apiV2HospitalsHospitalIdServicesGet(hospitalId: string, xCloudhospitalPlatform?: string, id?: string, name?: string, slug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, appointmentEnabled?: boolean, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalServicesModel>>;
|
|
1387
1461
|
/**
|
|
1388
1462
|
*
|
|
1389
1463
|
* @summary Get all HospitalSpecialties.
|
|
@@ -1860,6 +1934,17 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
1860
1934
|
* @throws {RequiredError}
|
|
1861
1935
|
*/
|
|
1862
1936
|
apiV2HospitalsHospitalIdDealsSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: any): AxiosPromise<DealModel>;
|
|
1937
|
+
/**
|
|
1938
|
+
*
|
|
1939
|
+
* @summary Get default inquiry form by hospitalId and platform.
|
|
1940
|
+
* @param {string} hospitalId
|
|
1941
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
1942
|
+
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
1943
|
+
* @param {string} [previewSecret]
|
|
1944
|
+
* @param {*} [options] Override http request option.
|
|
1945
|
+
* @throws {RequiredError}
|
|
1946
|
+
*/
|
|
1947
|
+
apiV2HospitalsHospitalIdDefaultinquiryformGet(hospitalId: string, xCloudhospitalPlatform?: string, languageCode?: string, previewSecret?: string, options?: any): AxiosPromise<SurveyFormModel>;
|
|
1863
1948
|
/**
|
|
1864
1949
|
*
|
|
1865
1950
|
* @summary Get hospital\'s doctorAffiliations by slug
|
|
@@ -2203,6 +2288,32 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
2203
2288
|
* @throws {RequiredError}
|
|
2204
2289
|
*/
|
|
2205
2290
|
apiV2HospitalsHospitalIdSecurefilesPost(hospitalId: string, files?: Array<File>, options?: any): AxiosPromise<SecureFilesUploadedModel>;
|
|
2291
|
+
/**
|
|
2292
|
+
*
|
|
2293
|
+
* @summary Get all HospitalServices by Hospital.
|
|
2294
|
+
* @param {string} hospitalId
|
|
2295
|
+
* @param {string} [xCloudhospitalPlatform] Platform identifier from request header
|
|
2296
|
+
* @param {string} [id]
|
|
2297
|
+
* @param {string} [name]
|
|
2298
|
+
* @param {string} [slug]
|
|
2299
|
+
* @param {string} [specialtyId]
|
|
2300
|
+
* @param {string} [specialtyName]
|
|
2301
|
+
* @param {string} [specialtyTypeId]
|
|
2302
|
+
* @param {string} [specialtyTypeName]
|
|
2303
|
+
* @param {string} [serviceCategoryId]
|
|
2304
|
+
* @param {boolean} [appointmentEnabled]
|
|
2305
|
+
* @param {MarketingType} [marketingType]
|
|
2306
|
+
* @param {Procedure} [procedure]
|
|
2307
|
+
* @param {Date} [created]
|
|
2308
|
+
* @param {string} [languageCode]
|
|
2309
|
+
* @param {boolean} [returnDefaultValue]
|
|
2310
|
+
* @param {number} [page]
|
|
2311
|
+
* @param {number} [limit]
|
|
2312
|
+
* @param {Date} [lastRetrieved]
|
|
2313
|
+
* @param {*} [options] Override http request option.
|
|
2314
|
+
* @throws {RequiredError}
|
|
2315
|
+
*/
|
|
2316
|
+
apiV2HospitalsHospitalIdServicesGet(hospitalId: string, xCloudhospitalPlatform?: string, id?: string, name?: string, slug?: string, specialtyId?: string, specialtyName?: string, specialtyTypeId?: string, specialtyTypeName?: string, serviceCategoryId?: string, appointmentEnabled?: boolean, marketingType?: MarketingType, procedure?: Procedure, created?: Date, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalServicesModel>;
|
|
2206
2317
|
/**
|
|
2207
2318
|
*
|
|
2208
2319
|
* @summary Get all HospitalSpecialties.
|
|
@@ -3029,6 +3140,37 @@ export interface HospitalsApiApiV2HospitalsHospitalIdDealsSlugGetRequest {
|
|
|
3029
3140
|
*/
|
|
3030
3141
|
readonly previewSecret?: string;
|
|
3031
3142
|
}
|
|
3143
|
+
/**
|
|
3144
|
+
* Request parameters for apiV2HospitalsHospitalIdDefaultinquiryformGet operation in HospitalsApi.
|
|
3145
|
+
* @export
|
|
3146
|
+
* @interface HospitalsApiApiV2HospitalsHospitalIdDefaultinquiryformGetRequest
|
|
3147
|
+
*/
|
|
3148
|
+
export interface HospitalsApiApiV2HospitalsHospitalIdDefaultinquiryformGetRequest {
|
|
3149
|
+
/**
|
|
3150
|
+
*
|
|
3151
|
+
* @type {string}
|
|
3152
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdDefaultinquiryformGet
|
|
3153
|
+
*/
|
|
3154
|
+
readonly hospitalId: string;
|
|
3155
|
+
/**
|
|
3156
|
+
* Platform identifier from request header
|
|
3157
|
+
* @type {string}
|
|
3158
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdDefaultinquiryformGet
|
|
3159
|
+
*/
|
|
3160
|
+
readonly xCloudhospitalPlatform?: string;
|
|
3161
|
+
/**
|
|
3162
|
+
* Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
3163
|
+
* @type {string}
|
|
3164
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdDefaultinquiryformGet
|
|
3165
|
+
*/
|
|
3166
|
+
readonly languageCode?: string;
|
|
3167
|
+
/**
|
|
3168
|
+
*
|
|
3169
|
+
* @type {string}
|
|
3170
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdDefaultinquiryformGet
|
|
3171
|
+
*/
|
|
3172
|
+
readonly previewSecret?: string;
|
|
3173
|
+
}
|
|
3032
3174
|
/**
|
|
3033
3175
|
* Request parameters for apiV2HospitalsHospitalIdDoctoraffiliationsSlugGet operation in HospitalsApi.
|
|
3034
3176
|
* @export
|
|
@@ -4072,6 +4214,127 @@ export interface HospitalsApiApiV2HospitalsHospitalIdSecurefilesPostRequest {
|
|
|
4072
4214
|
*/
|
|
4073
4215
|
readonly files?: Array<File>;
|
|
4074
4216
|
}
|
|
4217
|
+
/**
|
|
4218
|
+
* Request parameters for apiV2HospitalsHospitalIdServicesGet operation in HospitalsApi.
|
|
4219
|
+
* @export
|
|
4220
|
+
* @interface HospitalsApiApiV2HospitalsHospitalIdServicesGetRequest
|
|
4221
|
+
*/
|
|
4222
|
+
export interface HospitalsApiApiV2HospitalsHospitalIdServicesGetRequest {
|
|
4223
|
+
/**
|
|
4224
|
+
*
|
|
4225
|
+
* @type {string}
|
|
4226
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4227
|
+
*/
|
|
4228
|
+
readonly hospitalId: string;
|
|
4229
|
+
/**
|
|
4230
|
+
* Platform identifier from request header
|
|
4231
|
+
* @type {string}
|
|
4232
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4233
|
+
*/
|
|
4234
|
+
readonly xCloudhospitalPlatform?: string;
|
|
4235
|
+
/**
|
|
4236
|
+
*
|
|
4237
|
+
* @type {string}
|
|
4238
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4239
|
+
*/
|
|
4240
|
+
readonly id?: string;
|
|
4241
|
+
/**
|
|
4242
|
+
*
|
|
4243
|
+
* @type {string}
|
|
4244
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4245
|
+
*/
|
|
4246
|
+
readonly name?: string;
|
|
4247
|
+
/**
|
|
4248
|
+
*
|
|
4249
|
+
* @type {string}
|
|
4250
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4251
|
+
*/
|
|
4252
|
+
readonly slug?: string;
|
|
4253
|
+
/**
|
|
4254
|
+
*
|
|
4255
|
+
* @type {string}
|
|
4256
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4257
|
+
*/
|
|
4258
|
+
readonly specialtyId?: string;
|
|
4259
|
+
/**
|
|
4260
|
+
*
|
|
4261
|
+
* @type {string}
|
|
4262
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4263
|
+
*/
|
|
4264
|
+
readonly specialtyName?: string;
|
|
4265
|
+
/**
|
|
4266
|
+
*
|
|
4267
|
+
* @type {string}
|
|
4268
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4269
|
+
*/
|
|
4270
|
+
readonly specialtyTypeId?: string;
|
|
4271
|
+
/**
|
|
4272
|
+
*
|
|
4273
|
+
* @type {string}
|
|
4274
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4275
|
+
*/
|
|
4276
|
+
readonly specialtyTypeName?: string;
|
|
4277
|
+
/**
|
|
4278
|
+
*
|
|
4279
|
+
* @type {string}
|
|
4280
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4281
|
+
*/
|
|
4282
|
+
readonly serviceCategoryId?: string;
|
|
4283
|
+
/**
|
|
4284
|
+
*
|
|
4285
|
+
* @type {boolean}
|
|
4286
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4287
|
+
*/
|
|
4288
|
+
readonly appointmentEnabled?: boolean;
|
|
4289
|
+
/**
|
|
4290
|
+
*
|
|
4291
|
+
* @type {MarketingType}
|
|
4292
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4293
|
+
*/
|
|
4294
|
+
readonly marketingType?: MarketingType;
|
|
4295
|
+
/**
|
|
4296
|
+
*
|
|
4297
|
+
* @type {Procedure}
|
|
4298
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4299
|
+
*/
|
|
4300
|
+
readonly procedure?: Procedure;
|
|
4301
|
+
/**
|
|
4302
|
+
*
|
|
4303
|
+
* @type {Date}
|
|
4304
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4305
|
+
*/
|
|
4306
|
+
readonly created?: Date;
|
|
4307
|
+
/**
|
|
4308
|
+
*
|
|
4309
|
+
* @type {string}
|
|
4310
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4311
|
+
*/
|
|
4312
|
+
readonly languageCode?: string;
|
|
4313
|
+
/**
|
|
4314
|
+
*
|
|
4315
|
+
* @type {boolean}
|
|
4316
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4317
|
+
*/
|
|
4318
|
+
readonly returnDefaultValue?: boolean;
|
|
4319
|
+
/**
|
|
4320
|
+
*
|
|
4321
|
+
* @type {number}
|
|
4322
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4323
|
+
*/
|
|
4324
|
+
readonly page?: number;
|
|
4325
|
+
/**
|
|
4326
|
+
*
|
|
4327
|
+
* @type {number}
|
|
4328
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4329
|
+
*/
|
|
4330
|
+
readonly limit?: number;
|
|
4331
|
+
/**
|
|
4332
|
+
*
|
|
4333
|
+
* @type {Date}
|
|
4334
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdServicesGet
|
|
4335
|
+
*/
|
|
4336
|
+
readonly lastRetrieved?: Date;
|
|
4337
|
+
}
|
|
4075
4338
|
/**
|
|
4076
4339
|
* Request parameters for apiV2HospitalsHospitalIdSpecialtiesGet operation in HospitalsApi.
|
|
4077
4340
|
* @export
|
|
@@ -5305,6 +5568,15 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
5305
5568
|
* @memberof HospitalsApi
|
|
5306
5569
|
*/
|
|
5307
5570
|
apiV2HospitalsHospitalIdDealsSlugGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdDealsSlugGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DealModel, any>>;
|
|
5571
|
+
/**
|
|
5572
|
+
*
|
|
5573
|
+
* @summary Get default inquiry form by hospitalId and platform.
|
|
5574
|
+
* @param {HospitalsApiApiV2HospitalsHospitalIdDefaultinquiryformGetRequest} requestParameters Request parameters.
|
|
5575
|
+
* @param {*} [options] Override http request option.
|
|
5576
|
+
* @throws {RequiredError}
|
|
5577
|
+
* @memberof HospitalsApi
|
|
5578
|
+
*/
|
|
5579
|
+
apiV2HospitalsHospitalIdDefaultinquiryformGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdDefaultinquiryformGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyFormModel, any>>;
|
|
5308
5580
|
/**
|
|
5309
5581
|
*
|
|
5310
5582
|
* @summary Get hospital\'s doctorAffiliations by slug
|
|
@@ -5566,6 +5838,15 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
5566
5838
|
* @memberof HospitalsApi
|
|
5567
5839
|
*/
|
|
5568
5840
|
apiV2HospitalsHospitalIdSecurefilesPost(requestParameters: HospitalsApiApiV2HospitalsHospitalIdSecurefilesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SecureFilesUploadedModel, any>>;
|
|
5841
|
+
/**
|
|
5842
|
+
*
|
|
5843
|
+
* @summary Get all HospitalServices by Hospital.
|
|
5844
|
+
* @param {HospitalsApiApiV2HospitalsHospitalIdServicesGetRequest} requestParameters Request parameters.
|
|
5845
|
+
* @param {*} [options] Override http request option.
|
|
5846
|
+
* @throws {RequiredError}
|
|
5847
|
+
* @memberof HospitalsApi
|
|
5848
|
+
*/
|
|
5849
|
+
apiV2HospitalsHospitalIdServicesGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdServicesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalServicesModel, any>>;
|
|
5569
5850
|
/**
|
|
5570
5851
|
*
|
|
5571
5852
|
* @summary Get all HospitalSpecialties.
|