@objectstack/platform-objects 7.0.0 → 7.2.0

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.
Files changed (43) hide show
  1. package/dist/apps/index.js +25 -29
  2. package/dist/apps/index.js.map +1 -1
  3. package/dist/apps/index.mjs +25 -29
  4. package/dist/apps/index.mjs.map +1 -1
  5. package/dist/audit/index.d.mts +192 -96
  6. package/dist/audit/index.d.ts +192 -96
  7. package/dist/identity/index.d.mts +244 -122
  8. package/dist/identity/index.d.ts +244 -122
  9. package/dist/identity/index.js +5 -2
  10. package/dist/identity/index.js.map +1 -1
  11. package/dist/identity/index.mjs +5 -2
  12. package/dist/identity/index.mjs.map +1 -1
  13. package/dist/index.d.mts +1 -1
  14. package/dist/index.d.ts +1 -1
  15. package/dist/index.js +180 -31
  16. package/dist/index.js.map +1 -1
  17. package/dist/index.mjs +180 -32
  18. package/dist/index.mjs.map +1 -1
  19. package/dist/integration/index.d.mts +12 -6
  20. package/dist/integration/index.d.ts +12 -6
  21. package/dist/metadata/index.d.mts +3252 -13
  22. package/dist/metadata/index.d.ts +3252 -13
  23. package/dist/metadata/index.js +130 -0
  24. package/dist/metadata/index.js.map +1 -1
  25. package/dist/metadata/index.mjs +130 -1
  26. package/dist/metadata/index.mjs.map +1 -1
  27. package/dist/pages/index.d.mts +8 -3
  28. package/dist/pages/index.d.ts +8 -3
  29. package/dist/pages/index.js.map +1 -1
  30. package/dist/pages/index.mjs.map +1 -1
  31. package/dist/plugin.js +4 -8
  32. package/dist/plugin.js.map +1 -1
  33. package/dist/plugin.mjs +4 -8
  34. package/dist/plugin.mjs.map +1 -1
  35. package/dist/security/index.d.mts +84 -42
  36. package/dist/security/index.d.ts +84 -42
  37. package/dist/security/index.js +20 -0
  38. package/dist/security/index.js.map +1 -1
  39. package/dist/security/index.mjs +20 -0
  40. package/dist/security/index.mjs.map +1 -1
  41. package/dist/system/index.d.mts +36 -18
  42. package/dist/system/index.d.ts +36 -18
  43. package/package.json +2 -2
@@ -38,7 +38,7 @@ declare const SysSetting: Omit<{
38
38
  abstract: boolean;
39
39
  datasource: string;
40
40
  fields: Record<string, {
41
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
41
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
42
42
  required: boolean;
43
43
  searchable: boolean;
44
44
  multiple: boolean;
@@ -177,7 +177,7 @@ declare const SysSetting: Omit<{
177
177
  autoRotate: boolean;
178
178
  } | undefined;
179
179
  };
180
- scope: "field" | "record" | "table" | "database";
180
+ scope: "record" | "field" | "table" | "database";
181
181
  deterministicEncryption: boolean;
182
182
  searchableEncryption: boolean;
183
183
  } | undefined;
@@ -228,6 +228,12 @@ declare const SysSetting: Omit<{
228
228
  caseSensitive?: boolean | undefined;
229
229
  autonumberFormat?: string | undefined;
230
230
  }>;
231
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
232
+ _lockReason?: string | undefined;
233
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
234
+ _provenance?: "package" | "env-forced" | "org" | undefined;
235
+ _packageId?: string | undefined;
236
+ _packageVersion?: string | undefined;
231
237
  label?: string | undefined;
232
238
  pluralLabel?: string | undefined;
233
239
  description?: string | undefined;
@@ -373,7 +379,7 @@ declare const SysSetting: Omit<{
373
379
  wrap?: boolean | undefined;
374
380
  type?: string | undefined;
375
381
  pinned?: "left" | "right" | undefined;
376
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
382
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
377
383
  link?: boolean | undefined;
378
384
  action?: string | undefined;
379
385
  }[];
@@ -422,7 +428,7 @@ declare const SysSetting: Omit<{
422
428
  bordered?: boolean | undefined;
423
429
  compactToolbar?: boolean | undefined;
424
430
  selection?: {
425
- type: "multiple" | "single" | "none";
431
+ type: "none" | "multiple" | "single";
426
432
  } | undefined;
427
433
  navigation?: {
428
434
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -617,7 +623,7 @@ declare const SysSetting: Omit<{
617
623
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
618
624
  } | undefined;
619
625
  recordTypes?: string[] | undefined;
620
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
626
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
621
627
  publicSharing?: {
622
628
  enabled: boolean;
623
629
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -660,7 +666,7 @@ declare const SysSetting: Omit<{
660
666
  field?: string | undefined;
661
667
  objectOverride?: string | undefined;
662
668
  label?: string | undefined;
663
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
669
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
664
670
  options?: {
665
671
  label: string;
666
672
  value: string;
@@ -3158,7 +3164,7 @@ declare const SysSecret: Omit<{
3158
3164
  abstract: boolean;
3159
3165
  datasource: string;
3160
3166
  fields: Record<string, {
3161
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
3167
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
3162
3168
  required: boolean;
3163
3169
  searchable: boolean;
3164
3170
  multiple: boolean;
@@ -3297,7 +3303,7 @@ declare const SysSecret: Omit<{
3297
3303
  autoRotate: boolean;
3298
3304
  } | undefined;
3299
3305
  };
3300
- scope: "field" | "record" | "table" | "database";
3306
+ scope: "record" | "field" | "table" | "database";
3301
3307
  deterministicEncryption: boolean;
3302
3308
  searchableEncryption: boolean;
3303
3309
  } | undefined;
@@ -3348,6 +3354,12 @@ declare const SysSecret: Omit<{
3348
3354
  caseSensitive?: boolean | undefined;
3349
3355
  autonumberFormat?: string | undefined;
3350
3356
  }>;
3357
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
3358
+ _lockReason?: string | undefined;
3359
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
3360
+ _provenance?: "package" | "env-forced" | "org" | undefined;
3361
+ _packageId?: string | undefined;
3362
+ _packageVersion?: string | undefined;
3351
3363
  label?: string | undefined;
3352
3364
  pluralLabel?: string | undefined;
3353
3365
  description?: string | undefined;
@@ -3493,7 +3505,7 @@ declare const SysSecret: Omit<{
3493
3505
  wrap?: boolean | undefined;
3494
3506
  type?: string | undefined;
3495
3507
  pinned?: "left" | "right" | undefined;
3496
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
3508
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
3497
3509
  link?: boolean | undefined;
3498
3510
  action?: string | undefined;
3499
3511
  }[];
@@ -3542,7 +3554,7 @@ declare const SysSecret: Omit<{
3542
3554
  bordered?: boolean | undefined;
3543
3555
  compactToolbar?: boolean | undefined;
3544
3556
  selection?: {
3545
- type: "multiple" | "single" | "none";
3557
+ type: "none" | "multiple" | "single";
3546
3558
  } | undefined;
3547
3559
  navigation?: {
3548
3560
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -3737,7 +3749,7 @@ declare const SysSecret: Omit<{
3737
3749
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
3738
3750
  } | undefined;
3739
3751
  recordTypes?: string[] | undefined;
3740
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
3752
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
3741
3753
  publicSharing?: {
3742
3754
  enabled: boolean;
3743
3755
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -3780,7 +3792,7 @@ declare const SysSecret: Omit<{
3780
3792
  field?: string | undefined;
3781
3793
  objectOverride?: string | undefined;
3782
3794
  label?: string | undefined;
3783
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
3795
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
3784
3796
  options?: {
3785
3797
  label: string;
3786
3798
  value: string;
@@ -5489,7 +5501,7 @@ declare const SysSettingAudit: Omit<{
5489
5501
  abstract: boolean;
5490
5502
  datasource: string;
5491
5503
  fields: Record<string, {
5492
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
5504
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
5493
5505
  required: boolean;
5494
5506
  searchable: boolean;
5495
5507
  multiple: boolean;
@@ -5628,7 +5640,7 @@ declare const SysSettingAudit: Omit<{
5628
5640
  autoRotate: boolean;
5629
5641
  } | undefined;
5630
5642
  };
5631
- scope: "field" | "record" | "table" | "database";
5643
+ scope: "record" | "field" | "table" | "database";
5632
5644
  deterministicEncryption: boolean;
5633
5645
  searchableEncryption: boolean;
5634
5646
  } | undefined;
@@ -5679,6 +5691,12 @@ declare const SysSettingAudit: Omit<{
5679
5691
  caseSensitive?: boolean | undefined;
5680
5692
  autonumberFormat?: string | undefined;
5681
5693
  }>;
5694
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
5695
+ _lockReason?: string | undefined;
5696
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
5697
+ _provenance?: "package" | "env-forced" | "org" | undefined;
5698
+ _packageId?: string | undefined;
5699
+ _packageVersion?: string | undefined;
5682
5700
  label?: string | undefined;
5683
5701
  pluralLabel?: string | undefined;
5684
5702
  description?: string | undefined;
@@ -5824,7 +5842,7 @@ declare const SysSettingAudit: Omit<{
5824
5842
  wrap?: boolean | undefined;
5825
5843
  type?: string | undefined;
5826
5844
  pinned?: "left" | "right" | undefined;
5827
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
5845
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
5828
5846
  link?: boolean | undefined;
5829
5847
  action?: string | undefined;
5830
5848
  }[];
@@ -5873,7 +5891,7 @@ declare const SysSettingAudit: Omit<{
5873
5891
  bordered?: boolean | undefined;
5874
5892
  compactToolbar?: boolean | undefined;
5875
5893
  selection?: {
5876
- type: "multiple" | "single" | "none";
5894
+ type: "none" | "multiple" | "single";
5877
5895
  } | undefined;
5878
5896
  navigation?: {
5879
5897
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -6068,7 +6086,7 @@ declare const SysSettingAudit: Omit<{
6068
6086
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
6069
6087
  } | undefined;
6070
6088
  recordTypes?: string[] | undefined;
6071
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
6089
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
6072
6090
  publicSharing?: {
6073
6091
  enabled: boolean;
6074
6092
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -6111,7 +6129,7 @@ declare const SysSettingAudit: Omit<{
6111
6129
  field?: string | undefined;
6112
6130
  objectOverride?: string | undefined;
6113
6131
  label?: string | undefined;
6114
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
6132
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
6115
6133
  options?: {
6116
6134
  label: string;
6117
6135
  value: string;
@@ -38,7 +38,7 @@ declare const SysSetting: Omit<{
38
38
  abstract: boolean;
39
39
  datasource: string;
40
40
  fields: Record<string, {
41
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
41
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
42
42
  required: boolean;
43
43
  searchable: boolean;
44
44
  multiple: boolean;
@@ -177,7 +177,7 @@ declare const SysSetting: Omit<{
177
177
  autoRotate: boolean;
178
178
  } | undefined;
179
179
  };
180
- scope: "field" | "record" | "table" | "database";
180
+ scope: "record" | "field" | "table" | "database";
181
181
  deterministicEncryption: boolean;
182
182
  searchableEncryption: boolean;
183
183
  } | undefined;
@@ -228,6 +228,12 @@ declare const SysSetting: Omit<{
228
228
  caseSensitive?: boolean | undefined;
229
229
  autonumberFormat?: string | undefined;
230
230
  }>;
231
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
232
+ _lockReason?: string | undefined;
233
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
234
+ _provenance?: "package" | "env-forced" | "org" | undefined;
235
+ _packageId?: string | undefined;
236
+ _packageVersion?: string | undefined;
231
237
  label?: string | undefined;
232
238
  pluralLabel?: string | undefined;
233
239
  description?: string | undefined;
@@ -373,7 +379,7 @@ declare const SysSetting: Omit<{
373
379
  wrap?: boolean | undefined;
374
380
  type?: string | undefined;
375
381
  pinned?: "left" | "right" | undefined;
376
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
382
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
377
383
  link?: boolean | undefined;
378
384
  action?: string | undefined;
379
385
  }[];
@@ -422,7 +428,7 @@ declare const SysSetting: Omit<{
422
428
  bordered?: boolean | undefined;
423
429
  compactToolbar?: boolean | undefined;
424
430
  selection?: {
425
- type: "multiple" | "single" | "none";
431
+ type: "none" | "multiple" | "single";
426
432
  } | undefined;
427
433
  navigation?: {
428
434
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -617,7 +623,7 @@ declare const SysSetting: Omit<{
617
623
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
618
624
  } | undefined;
619
625
  recordTypes?: string[] | undefined;
620
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
626
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
621
627
  publicSharing?: {
622
628
  enabled: boolean;
623
629
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -660,7 +666,7 @@ declare const SysSetting: Omit<{
660
666
  field?: string | undefined;
661
667
  objectOverride?: string | undefined;
662
668
  label?: string | undefined;
663
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
669
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
664
670
  options?: {
665
671
  label: string;
666
672
  value: string;
@@ -3158,7 +3164,7 @@ declare const SysSecret: Omit<{
3158
3164
  abstract: boolean;
3159
3165
  datasource: string;
3160
3166
  fields: Record<string, {
3161
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
3167
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
3162
3168
  required: boolean;
3163
3169
  searchable: boolean;
3164
3170
  multiple: boolean;
@@ -3297,7 +3303,7 @@ declare const SysSecret: Omit<{
3297
3303
  autoRotate: boolean;
3298
3304
  } | undefined;
3299
3305
  };
3300
- scope: "field" | "record" | "table" | "database";
3306
+ scope: "record" | "field" | "table" | "database";
3301
3307
  deterministicEncryption: boolean;
3302
3308
  searchableEncryption: boolean;
3303
3309
  } | undefined;
@@ -3348,6 +3354,12 @@ declare const SysSecret: Omit<{
3348
3354
  caseSensitive?: boolean | undefined;
3349
3355
  autonumberFormat?: string | undefined;
3350
3356
  }>;
3357
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
3358
+ _lockReason?: string | undefined;
3359
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
3360
+ _provenance?: "package" | "env-forced" | "org" | undefined;
3361
+ _packageId?: string | undefined;
3362
+ _packageVersion?: string | undefined;
3351
3363
  label?: string | undefined;
3352
3364
  pluralLabel?: string | undefined;
3353
3365
  description?: string | undefined;
@@ -3493,7 +3505,7 @@ declare const SysSecret: Omit<{
3493
3505
  wrap?: boolean | undefined;
3494
3506
  type?: string | undefined;
3495
3507
  pinned?: "left" | "right" | undefined;
3496
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
3508
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
3497
3509
  link?: boolean | undefined;
3498
3510
  action?: string | undefined;
3499
3511
  }[];
@@ -3542,7 +3554,7 @@ declare const SysSecret: Omit<{
3542
3554
  bordered?: boolean | undefined;
3543
3555
  compactToolbar?: boolean | undefined;
3544
3556
  selection?: {
3545
- type: "multiple" | "single" | "none";
3557
+ type: "none" | "multiple" | "single";
3546
3558
  } | undefined;
3547
3559
  navigation?: {
3548
3560
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -3737,7 +3749,7 @@ declare const SysSecret: Omit<{
3737
3749
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
3738
3750
  } | undefined;
3739
3751
  recordTypes?: string[] | undefined;
3740
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
3752
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
3741
3753
  publicSharing?: {
3742
3754
  enabled: boolean;
3743
3755
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -3780,7 +3792,7 @@ declare const SysSecret: Omit<{
3780
3792
  field?: string | undefined;
3781
3793
  objectOverride?: string | undefined;
3782
3794
  label?: string | undefined;
3783
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
3795
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
3784
3796
  options?: {
3785
3797
  label: string;
3786
3798
  value: string;
@@ -5489,7 +5501,7 @@ declare const SysSettingAudit: Omit<{
5489
5501
  abstract: boolean;
5490
5502
  datasource: string;
5491
5503
  fields: Record<string, {
5492
- type: "number" | "boolean" | "tags" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
5504
+ type: "number" | "boolean" | "tags" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
5493
5505
  required: boolean;
5494
5506
  searchable: boolean;
5495
5507
  multiple: boolean;
@@ -5628,7 +5640,7 @@ declare const SysSettingAudit: Omit<{
5628
5640
  autoRotate: boolean;
5629
5641
  } | undefined;
5630
5642
  };
5631
- scope: "field" | "record" | "table" | "database";
5643
+ scope: "record" | "field" | "table" | "database";
5632
5644
  deterministicEncryption: boolean;
5633
5645
  searchableEncryption: boolean;
5634
5646
  } | undefined;
@@ -5679,6 +5691,12 @@ declare const SysSettingAudit: Omit<{
5679
5691
  caseSensitive?: boolean | undefined;
5680
5692
  autonumberFormat?: string | undefined;
5681
5693
  }>;
5694
+ _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
5695
+ _lockReason?: string | undefined;
5696
+ _lockSource?: "artifact" | "package" | "env-forced" | undefined;
5697
+ _provenance?: "package" | "env-forced" | "org" | undefined;
5698
+ _packageId?: string | undefined;
5699
+ _packageVersion?: string | undefined;
5682
5700
  label?: string | undefined;
5683
5701
  pluralLabel?: string | undefined;
5684
5702
  description?: string | undefined;
@@ -5824,7 +5842,7 @@ declare const SysSettingAudit: Omit<{
5824
5842
  wrap?: boolean | undefined;
5825
5843
  type?: string | undefined;
5826
5844
  pinned?: "left" | "right" | undefined;
5827
- summary?: "min" | "max" | "count" | "sum" | "avg" | "none" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
5845
+ summary?: "none" | "min" | "max" | "count" | "sum" | "avg" | "count_empty" | "count_filled" | "count_unique" | "percent_empty" | "percent_filled" | undefined;
5828
5846
  link?: boolean | undefined;
5829
5847
  action?: string | undefined;
5830
5848
  }[];
@@ -5873,7 +5891,7 @@ declare const SysSettingAudit: Omit<{
5873
5891
  bordered?: boolean | undefined;
5874
5892
  compactToolbar?: boolean | undefined;
5875
5893
  selection?: {
5876
- type: "multiple" | "single" | "none";
5894
+ type: "none" | "multiple" | "single";
5877
5895
  } | undefined;
5878
5896
  navigation?: {
5879
5897
  mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
@@ -6068,7 +6086,7 @@ declare const SysSettingAudit: Omit<{
6068
6086
  apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "history" | "bulk" | "aggregate" | "restore" | "purge" | "export")[] | undefined;
6069
6087
  } | undefined;
6070
6088
  recordTypes?: string[] | undefined;
6071
- sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
6089
+ sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
6072
6090
  publicSharing?: {
6073
6091
  enabled: boolean;
6074
6092
  allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
@@ -6111,7 +6129,7 @@ declare const SysSettingAudit: Omit<{
6111
6129
  field?: string | undefined;
6112
6130
  objectOverride?: string | undefined;
6113
6131
  label?: string | undefined;
6114
- type?: "number" | "boolean" | "date" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
6132
+ type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "text" | "textarea" | "email" | "phone" | "password" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
6115
6133
  options?: {
6116
6134
  label: string;
6117
6135
  value: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/platform-objects",
3
- "version": "7.0.0",
3
+ "version": "7.2.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Core platform object schemas for ObjectStack — identity, security, audit, tenant, and metadata objects",
6
6
  "main": "dist/index.js",
@@ -63,7 +63,7 @@
63
63
  }
64
64
  },
65
65
  "dependencies": {
66
- "@objectstack/spec": "7.0.0"
66
+ "@objectstack/spec": "7.2.0"
67
67
  },
68
68
  "devDependencies": {
69
69
  "@types/node": "^25.9.1",