ch-admin-api-client-typescript 4.7.2 → 4.7.3
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 +33 -14
- package/lib/api.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api.ts +33 -14
package/lib/api.d.ts
CHANGED
|
@@ -7571,12 +7571,6 @@ export interface FaqCategoryModel {
|
|
|
7571
7571
|
* @memberof FaqCategoryModel
|
|
7572
7572
|
*/
|
|
7573
7573
|
'content'?: string | null;
|
|
7574
|
-
/**
|
|
7575
|
-
*
|
|
7576
|
-
* @type {Array<MediaModel>}
|
|
7577
|
-
* @memberof FaqCategoryModel
|
|
7578
|
-
*/
|
|
7579
|
-
'medias'?: Array<MediaModel> | null;
|
|
7580
7574
|
}
|
|
7581
7575
|
/**
|
|
7582
7576
|
*
|
|
@@ -8539,16 +8533,16 @@ export interface HospitalItemModel {
|
|
|
8539
8533
|
'location'?: LocationModel;
|
|
8540
8534
|
/**
|
|
8541
8535
|
*
|
|
8542
|
-
* @type {
|
|
8536
|
+
* @type {HospitalConsultationOptionModel}
|
|
8543
8537
|
* @memberof HospitalItemModel
|
|
8544
8538
|
*/
|
|
8545
|
-
'
|
|
8539
|
+
'consultationOption'?: HospitalConsultationOptionModel;
|
|
8546
8540
|
/**
|
|
8547
8541
|
*
|
|
8548
|
-
* @type {
|
|
8542
|
+
* @type {AuditableEntity}
|
|
8549
8543
|
* @memberof HospitalItemModel
|
|
8550
8544
|
*/
|
|
8551
|
-
'
|
|
8545
|
+
'auditableEntity'?: AuditableEntity;
|
|
8552
8546
|
}
|
|
8553
8547
|
/**
|
|
8554
8548
|
*
|
|
@@ -8716,16 +8710,16 @@ export interface HospitalModel {
|
|
|
8716
8710
|
'location'?: LocationModel;
|
|
8717
8711
|
/**
|
|
8718
8712
|
*
|
|
8719
|
-
* @type {
|
|
8713
|
+
* @type {HospitalConsultationOptionModel}
|
|
8720
8714
|
* @memberof HospitalModel
|
|
8721
8715
|
*/
|
|
8722
|
-
'
|
|
8716
|
+
'consultationOption'?: HospitalConsultationOptionModel;
|
|
8723
8717
|
/**
|
|
8724
8718
|
*
|
|
8725
|
-
* @type {
|
|
8719
|
+
* @type {AuditableEntity}
|
|
8726
8720
|
* @memberof HospitalModel
|
|
8727
8721
|
*/
|
|
8728
|
-
'
|
|
8722
|
+
'auditableEntity'?: AuditableEntity;
|
|
8729
8723
|
/**
|
|
8730
8724
|
*
|
|
8731
8725
|
* @type {string}
|
|
@@ -9082,6 +9076,12 @@ export interface HospitalServiceModel {
|
|
|
9082
9076
|
* @memberof HospitalServiceModel
|
|
9083
9077
|
*/
|
|
9084
9078
|
'content'?: string | null;
|
|
9079
|
+
/**
|
|
9080
|
+
*
|
|
9081
|
+
* @type {ServiceCategoryMappingModel}
|
|
9082
|
+
* @memberof HospitalServiceModel
|
|
9083
|
+
*/
|
|
9084
|
+
'serviceCategory'?: ServiceCategoryMappingModel;
|
|
9085
9085
|
/**
|
|
9086
9086
|
*
|
|
9087
9087
|
* @type {string}
|
|
@@ -11774,6 +11774,25 @@ export interface ServiceCategoryItemModel {
|
|
|
11774
11774
|
*/
|
|
11775
11775
|
'serviceCount'?: number;
|
|
11776
11776
|
}
|
|
11777
|
+
/**
|
|
11778
|
+
*
|
|
11779
|
+
* @export
|
|
11780
|
+
* @interface ServiceCategoryMappingModel
|
|
11781
|
+
*/
|
|
11782
|
+
export interface ServiceCategoryMappingModel {
|
|
11783
|
+
/**
|
|
11784
|
+
*
|
|
11785
|
+
* @type {string}
|
|
11786
|
+
* @memberof ServiceCategoryMappingModel
|
|
11787
|
+
*/
|
|
11788
|
+
'id'?: string;
|
|
11789
|
+
/**
|
|
11790
|
+
*
|
|
11791
|
+
* @type {string}
|
|
11792
|
+
* @memberof ServiceCategoryMappingModel
|
|
11793
|
+
*/
|
|
11794
|
+
'name'?: string | null;
|
|
11795
|
+
}
|
|
11777
11796
|
/**
|
|
11778
11797
|
*
|
|
11779
11798
|
* @export
|