@blackcode_sa/metaestetics-api 1.15.17-staging.2 → 1.15.17-staging.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/dist/index.js CHANGED
@@ -25101,7 +25101,7 @@ var ResourceService = class extends BaseService {
25101
25101
  name: data.name,
25102
25102
  nameLower: data.name.toLowerCase(),
25103
25103
  category: data.category,
25104
- description: data.description || void 0,
25104
+ description: data.description || "",
25105
25105
  quantity: data.quantity,
25106
25106
  status: "active" /* ACTIVE */,
25107
25107
  linkedProcedureIds: [],
package/dist/index.mjs CHANGED
@@ -25335,7 +25335,7 @@ var ResourceService = class extends BaseService {
25335
25335
  name: data.name,
25336
25336
  nameLower: data.name.toLowerCase(),
25337
25337
  category: data.category,
25338
- description: data.description || void 0,
25338
+ description: data.description || "",
25339
25339
  quantity: data.quantity,
25340
25340
  status: "active" /* ACTIVE */,
25341
25341
  linkedProcedureIds: [],
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.2",
4
+ "version": "1.15.17-staging.3",
5
5
  "description": "Firebase authentication service with anonymous upgrade support",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.mjs",
@@ -116,7 +116,7 @@ export class ResourceService extends BaseService {
116
116
  name: data.name,
117
117
  nameLower: data.name.toLowerCase(),
118
118
  category: data.category,
119
- description: data.description || undefined,
119
+ description: data.description || "",
120
120
  quantity: data.quantity,
121
121
  status: ResourceStatus.ACTIVE,
122
122
  linkedProcedureIds: [],