@blackcode_sa/metaestetics-api 1.8.14 → 1.8.16
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 +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +666 -214
- package/dist/index.mjs +667 -215
- package/package.json +1 -1
- package/src/services/clinic/utils/filter.utils.ts +242 -57
- package/src/services/practitioner/practitioner.service.ts +277 -81
- package/src/services/procedure/procedure.service.ts +346 -123
package/dist/index.d.mts
CHANGED
|
@@ -4266,6 +4266,12 @@ declare class ProcedureService extends BaseService {
|
|
|
4266
4266
|
})[];
|
|
4267
4267
|
lastDoc: any;
|
|
4268
4268
|
}>;
|
|
4269
|
+
/**
|
|
4270
|
+
* Applies in-memory filters to procedures array
|
|
4271
|
+
* Used when Firestore queries fail or for complex filtering
|
|
4272
|
+
*/
|
|
4273
|
+
private applyInMemoryFilters;
|
|
4274
|
+
private handleGeoQuery;
|
|
4269
4275
|
/**
|
|
4270
4276
|
* Creates a consultation procedure without requiring a product
|
|
4271
4277
|
* This is a special method for consultation procedures that don't use products
|
|
@@ -4464,6 +4470,11 @@ declare class PractitionerService extends BaseService {
|
|
|
4464
4470
|
practitioners: Practitioner[];
|
|
4465
4471
|
lastDoc: any;
|
|
4466
4472
|
}>;
|
|
4473
|
+
/**
|
|
4474
|
+
* Applies in-memory filters to practitioners array
|
|
4475
|
+
* Used when Firestore queries fail or for complex filtering
|
|
4476
|
+
*/
|
|
4477
|
+
private applyInMemoryFilters;
|
|
4467
4478
|
/**
|
|
4468
4479
|
* Enables free consultation for a practitioner in a specific clinic
|
|
4469
4480
|
* Creates a free consultation procedure with hardcoded parameters
|
package/dist/index.d.ts
CHANGED
|
@@ -4266,6 +4266,12 @@ declare class ProcedureService extends BaseService {
|
|
|
4266
4266
|
})[];
|
|
4267
4267
|
lastDoc: any;
|
|
4268
4268
|
}>;
|
|
4269
|
+
/**
|
|
4270
|
+
* Applies in-memory filters to procedures array
|
|
4271
|
+
* Used when Firestore queries fail or for complex filtering
|
|
4272
|
+
*/
|
|
4273
|
+
private applyInMemoryFilters;
|
|
4274
|
+
private handleGeoQuery;
|
|
4269
4275
|
/**
|
|
4270
4276
|
* Creates a consultation procedure without requiring a product
|
|
4271
4277
|
* This is a special method for consultation procedures that don't use products
|
|
@@ -4464,6 +4470,11 @@ declare class PractitionerService extends BaseService {
|
|
|
4464
4470
|
practitioners: Practitioner[];
|
|
4465
4471
|
lastDoc: any;
|
|
4466
4472
|
}>;
|
|
4473
|
+
/**
|
|
4474
|
+
* Applies in-memory filters to practitioners array
|
|
4475
|
+
* Used when Firestore queries fail or for complex filtering
|
|
4476
|
+
*/
|
|
4477
|
+
private applyInMemoryFilters;
|
|
4467
4478
|
/**
|
|
4468
4479
|
* Enables free consultation for a practitioner in a specific clinic
|
|
4469
4480
|
* Creates a free consultation procedure with hardcoded parameters
|