@blackcode_sa/metaestetics-api 1.7.10 → 1.7.12
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/dist/admin/index.d.mts +5 -4
- package/dist/admin/index.d.ts +5 -4
- package/dist/index.d.mts +246 -144
- package/dist/index.d.ts +246 -144
- package/dist/index.js +555 -875
- package/dist/index.mjs +597 -922
- package/package.json +1 -1
- package/src/admin/aggregation/reviews/reviews.aggregation.service.ts +641 -0
- package/src/index.ts +8 -0
- package/src/services/auth.service.ts +4 -0
- package/src/services/clinic/clinic-group.service.ts +49 -0
- package/src/services/clinic/clinic.service.ts +12 -0
- package/src/services/media/media.service.ts +6 -1
- package/src/services/reviews/reviews.service.ts +6 -572
- package/src/types/clinic/index.ts +17 -5
- package/src/validations/clinic.schema.ts +25 -9
- package/src/validations/media.schema.ts +10 -0
package/dist/admin/index.d.mts
CHANGED
|
@@ -924,6 +924,11 @@ declare enum ClinicTag {
|
|
|
924
924
|
HOLIDAY_HOURS = "holiday_hours"
|
|
925
925
|
}
|
|
926
926
|
|
|
927
|
+
/**
|
|
928
|
+
* Type that allows a field to be either a URL string or a File object
|
|
929
|
+
*/
|
|
930
|
+
type MediaResource = string | File | Blob;
|
|
931
|
+
|
|
927
932
|
/**
|
|
928
933
|
* Interface for clinic contact information
|
|
929
934
|
*/
|
|
@@ -1017,10 +1022,6 @@ interface DoctorInfo {
|
|
|
1017
1022
|
rating: number;
|
|
1018
1023
|
services: string[];
|
|
1019
1024
|
}
|
|
1020
|
-
/**
|
|
1021
|
-
* Type that allows a field to be either a URL string or a File object
|
|
1022
|
-
*/
|
|
1023
|
-
type MediaResource = string | File | Blob;
|
|
1024
1025
|
/**
|
|
1025
1026
|
* Interface for clinic
|
|
1026
1027
|
*/
|
package/dist/admin/index.d.ts
CHANGED
|
@@ -924,6 +924,11 @@ declare enum ClinicTag {
|
|
|
924
924
|
HOLIDAY_HOURS = "holiday_hours"
|
|
925
925
|
}
|
|
926
926
|
|
|
927
|
+
/**
|
|
928
|
+
* Type that allows a field to be either a URL string or a File object
|
|
929
|
+
*/
|
|
930
|
+
type MediaResource = string | File | Blob;
|
|
931
|
+
|
|
927
932
|
/**
|
|
928
933
|
* Interface for clinic contact information
|
|
929
934
|
*/
|
|
@@ -1017,10 +1022,6 @@ interface DoctorInfo {
|
|
|
1017
1022
|
rating: number;
|
|
1018
1023
|
services: string[];
|
|
1019
1024
|
}
|
|
1020
|
-
/**
|
|
1021
|
-
* Type that allows a field to be either a URL string or a File object
|
|
1022
|
-
*/
|
|
1023
|
-
type MediaResource = string | File | Blob;
|
|
1024
1025
|
/**
|
|
1025
1026
|
* Interface for clinic
|
|
1026
1027
|
*/
|