@blackcode_sa/metaestetics-api 1.8.13 → 1.8.15
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/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +536 -213
- package/dist/index.mjs +537 -214
- package/package.json +1 -1
- package/src/services/clinic/utils/filter.utils.ts +242 -57
- package/src/services/practitioner/practitioner.service.ts +195 -82
- package/src/services/procedure/procedure.service.ts +279 -123
- package/src/admin/scripts/migrateProcedures.js +0 -23
- package/src/admin/scripts/serviceAccountKey.json +0 -13
package/dist/index.d.mts
CHANGED
|
@@ -4266,6 +4266,7 @@ declare class ProcedureService extends BaseService {
|
|
|
4266
4266
|
})[];
|
|
4267
4267
|
lastDoc: any;
|
|
4268
4268
|
}>;
|
|
4269
|
+
private handleGeoQuery;
|
|
4269
4270
|
/**
|
|
4270
4271
|
* Creates a consultation procedure without requiring a product
|
|
4271
4272
|
* This is a special method for consultation procedures that don't use products
|
package/dist/index.d.ts
CHANGED
|
@@ -4266,6 +4266,7 @@ declare class ProcedureService extends BaseService {
|
|
|
4266
4266
|
})[];
|
|
4267
4267
|
lastDoc: any;
|
|
4268
4268
|
}>;
|
|
4269
|
+
private handleGeoQuery;
|
|
4269
4270
|
/**
|
|
4270
4271
|
* Creates a consultation procedure without requiring a product
|
|
4271
4272
|
* This is a special method for consultation procedures that don't use products
|