@blackcode_sa/metaestetics-api 1.15.17-staging.10 → 1.15.17-staging.11
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.js
CHANGED
|
@@ -24110,6 +24110,8 @@ var ProcedureService = class extends BaseService {
|
|
|
24110
24110
|
updatedProcedureData.duration = validatedData.duration;
|
|
24111
24111
|
if (validatedData.isActive !== void 0)
|
|
24112
24112
|
updatedProcedureData.isActive = validatedData.isActive;
|
|
24113
|
+
if (validatedData.resourceRequirements !== void 0)
|
|
24114
|
+
updatedProcedureData.resourceRequirements = validatedData.resourceRequirements;
|
|
24113
24115
|
let practitionerChanged = false;
|
|
24114
24116
|
let clinicChanged = false;
|
|
24115
24117
|
const oldPractitionerId = existingProcedure.practitionerId;
|
package/dist/index.mjs
CHANGED
|
@@ -24329,6 +24329,8 @@ var ProcedureService = class extends BaseService {
|
|
|
24329
24329
|
updatedProcedureData.duration = validatedData.duration;
|
|
24330
24330
|
if (validatedData.isActive !== void 0)
|
|
24331
24331
|
updatedProcedureData.isActive = validatedData.isActive;
|
|
24332
|
+
if (validatedData.resourceRequirements !== void 0)
|
|
24333
|
+
updatedProcedureData.resourceRequirements = validatedData.resourceRequirements;
|
|
24332
24334
|
let practitionerChanged = false;
|
|
24333
24335
|
let clinicChanged = false;
|
|
24334
24336
|
const oldPractitionerId = existingProcedure.practitionerId;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blackcode_sa/metaestetics-api",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.15.17-staging.
|
|
4
|
+
"version": "1.15.17-staging.11",
|
|
5
5
|
"description": "Firebase authentication service with anonymous upgrade support",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.mjs",
|
|
@@ -1232,6 +1232,8 @@ export class ProcedureService extends BaseService {
|
|
|
1232
1232
|
updatedProcedureData.duration = validatedData.duration;
|
|
1233
1233
|
if (validatedData.isActive !== undefined)
|
|
1234
1234
|
updatedProcedureData.isActive = validatedData.isActive;
|
|
1235
|
+
if (validatedData.resourceRequirements !== undefined)
|
|
1236
|
+
updatedProcedureData.resourceRequirements = validatedData.resourceRequirements;
|
|
1235
1237
|
|
|
1236
1238
|
let practitionerChanged = false;
|
|
1237
1239
|
let clinicChanged = false;
|