@open-mercato/shared 0.7.1-develop.7195.1.b5efd1d51a → 0.7.1-develop.7201.1.9bd6c88e3d

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.
@@ -1,4 +1,4 @@
1
- const APP_VERSION = "0.7.1-develop.7195.1.b5efd1d51a";
1
+ const APP_VERSION = "0.7.1-develop.7201.1.9bd6c88e3d";
2
2
  const appVersion = APP_VERSION;
3
3
  export {
4
4
  APP_VERSION,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/lib/version.ts"],
4
- "sourcesContent": ["// Build-time generated version\nexport const APP_VERSION = '0.7.1-develop.7195.1.b5efd1d51a';\nexport const appVersion = APP_VERSION;\n"],
4
+ "sourcesContent": ["// Build-time generated version\nexport const APP_VERSION = '0.7.1-develop.7201.1.9bd6c88e3d';\nexport const appVersion = APP_VERSION;\n"],
5
5
  "mappings": "AACO,MAAM,cAAc;AACpB,MAAM,aAAa;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-mercato/shared",
3
- "version": "0.7.1-develop.7195.1.b5efd1d51a",
3
+ "version": "0.7.1-develop.7201.1.9bd6c88e3d",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -113,7 +113,7 @@
113
113
  "@mikro-orm/core": "^7.1.14",
114
114
  "@mikro-orm/decorators": "^7.1.14",
115
115
  "@mikro-orm/postgresql": "^7.1.14",
116
- "@open-mercato/cache": "0.7.1-develop.7195.1.b5efd1d51a",
116
+ "@open-mercato/cache": "0.7.1-develop.7201.1.9bd6c88e3d",
117
117
  "@types/html-to-text": "^9.0.4",
118
118
  "@types/sanitize-html": "^2.16.1",
119
119
  "dotenv": "^17.4.2",
@@ -66,6 +66,11 @@ export type CustomFieldDefinition = {
66
66
  formEditable?: boolean
67
67
  indexed?: boolean
68
68
  listVisible?: boolean
69
+ // Store the value encrypted with the tenant key. Declaring it here keeps the
70
+ // flag idempotent across `entities install` runs; an admin-enabled flag is
71
+ // never downgraded by an install that omits it (turn it off explicitly with
72
+ // `encrypted: false`).
73
+ encrypted?: boolean
69
74
  // Display order within a form/card; lower renders first. When omitted, the
70
75
  // installer derives it from the declaration order of the field set.
71
76
  priority?: number