@objectstack/platform-objects 6.8.1 → 7.0.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 (51) hide show
  1. package/dist/apps/index.d.mts +30 -1
  2. package/dist/apps/index.d.ts +30 -1
  3. package/dist/apps/index.js +994 -37
  4. package/dist/apps/index.js.map +1 -1
  5. package/dist/apps/index.mjs +994 -38
  6. package/dist/apps/index.mjs.map +1 -1
  7. package/dist/audit/index.d.mts +320 -16
  8. package/dist/audit/index.d.ts +320 -16
  9. package/dist/identity/index.d.mts +1000 -22
  10. package/dist/identity/index.d.ts +1000 -22
  11. package/dist/identity/index.js +384 -8
  12. package/dist/identity/index.js.map +1 -1
  13. package/dist/identity/index.mjs +384 -8
  14. package/dist/identity/index.mjs.map +1 -1
  15. package/dist/index.d.mts +5 -2
  16. package/dist/index.d.ts +5 -2
  17. package/dist/index.js +7060 -154
  18. package/dist/index.js.map +1 -1
  19. package/dist/index.mjs +7054 -155
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/integration/index.d.mts +20 -1
  22. package/dist/integration/index.d.ts +20 -1
  23. package/dist/metadata/index.d.mts +40 -2
  24. package/dist/metadata/index.d.ts +40 -2
  25. package/dist/metadata-translations/index.d.mts +20 -0
  26. package/dist/metadata-translations/index.d.ts +20 -0
  27. package/dist/metadata-translations/index.js +4777 -0
  28. package/dist/metadata-translations/index.js.map +1 -0
  29. package/dist/metadata-translations/index.mjs +4775 -0
  30. package/dist/metadata-translations/index.mjs.map +1 -0
  31. package/dist/pages/index.d.mts +68 -0
  32. package/dist/pages/index.d.ts +68 -0
  33. package/dist/pages/index.js +371 -0
  34. package/dist/pages/index.js.map +1 -0
  35. package/dist/pages/index.mjs +368 -0
  36. package/dist/pages/index.mjs.map +1 -0
  37. package/dist/plugin.d.mts +35 -0
  38. package/dist/plugin.d.ts +35 -0
  39. package/dist/plugin.js +17566 -0
  40. package/dist/plugin.js.map +1 -0
  41. package/dist/plugin.mjs +17563 -0
  42. package/dist/plugin.mjs.map +1 -0
  43. package/dist/security/index.d.mts +6376 -2094
  44. package/dist/security/index.d.ts +6376 -2094
  45. package/dist/security/index.js +383 -1
  46. package/dist/security/index.js.map +1 -1
  47. package/dist/security/index.mjs +383 -2
  48. package/dist/security/index.mjs.map +1 -1
  49. package/dist/system/index.d.mts +60 -3
  50. package/dist/system/index.d.ts +60 -3
  51. package/package.json +17 -2
@@ -618,6 +618,14 @@ declare const SysSetting: Omit<{
618
618
  } | undefined;
619
619
  recordTypes?: string[] | undefined;
620
620
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
621
+ publicSharing?: {
622
+ enabled: boolean;
623
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
624
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
625
+ maxExpiryDays?: number | undefined;
626
+ redactFields?: string[] | undefined;
627
+ eligibility?: string | undefined;
628
+ } | undefined;
621
629
  keyPrefix?: string | undefined;
622
630
  detail?: {
623
631
  [x: string]: unknown;
@@ -632,7 +640,7 @@ declare const SysSetting: Omit<{
632
640
  refreshAfter: boolean;
633
641
  objectName?: string | undefined;
634
642
  icon?: string | undefined;
635
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
643
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
636
644
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
637
645
  target?: string | undefined;
638
646
  body?: {
@@ -665,6 +673,17 @@ declare const SysSetting: Omit<{
665
673
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
666
674
  confirmText?: string | undefined;
667
675
  successMessage?: string | undefined;
676
+ resultDialog?: {
677
+ title?: string | undefined;
678
+ description?: string | undefined;
679
+ acknowledge?: string | undefined;
680
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
681
+ fields?: {
682
+ path: string;
683
+ label?: string | undefined;
684
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
685
+ }[] | undefined;
686
+ } | undefined;
668
687
  visible?: {
669
688
  dialect: "cel" | "js" | "cron" | "template";
670
689
  source?: string | undefined;
@@ -3719,6 +3738,14 @@ declare const SysSecret: Omit<{
3719
3738
  } | undefined;
3720
3739
  recordTypes?: string[] | undefined;
3721
3740
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
3741
+ publicSharing?: {
3742
+ enabled: boolean;
3743
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
3744
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
3745
+ maxExpiryDays?: number | undefined;
3746
+ redactFields?: string[] | undefined;
3747
+ eligibility?: string | undefined;
3748
+ } | undefined;
3722
3749
  keyPrefix?: string | undefined;
3723
3750
  detail?: {
3724
3751
  [x: string]: unknown;
@@ -3733,7 +3760,7 @@ declare const SysSecret: Omit<{
3733
3760
  refreshAfter: boolean;
3734
3761
  objectName?: string | undefined;
3735
3762
  icon?: string | undefined;
3736
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
3763
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
3737
3764
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
3738
3765
  target?: string | undefined;
3739
3766
  body?: {
@@ -3766,6 +3793,17 @@ declare const SysSecret: Omit<{
3766
3793
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
3767
3794
  confirmText?: string | undefined;
3768
3795
  successMessage?: string | undefined;
3796
+ resultDialog?: {
3797
+ title?: string | undefined;
3798
+ description?: string | undefined;
3799
+ acknowledge?: string | undefined;
3800
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
3801
+ fields?: {
3802
+ path: string;
3803
+ label?: string | undefined;
3804
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
3805
+ }[] | undefined;
3806
+ } | undefined;
3769
3807
  visible?: {
3770
3808
  dialect: "cel" | "js" | "cron" | "template";
3771
3809
  source?: string | undefined;
@@ -6031,6 +6069,14 @@ declare const SysSettingAudit: Omit<{
6031
6069
  } | undefined;
6032
6070
  recordTypes?: string[] | undefined;
6033
6071
  sharingModel?: "read" | "full" | "private" | "read_write" | undefined;
6072
+ publicSharing?: {
6073
+ enabled: boolean;
6074
+ allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
6075
+ allowedPermissions?: ("edit" | "view" | "comment")[] | undefined;
6076
+ maxExpiryDays?: number | undefined;
6077
+ redactFields?: string[] | undefined;
6078
+ eligibility?: string | undefined;
6079
+ } | undefined;
6034
6080
  keyPrefix?: string | undefined;
6035
6081
  detail?: {
6036
6082
  [x: string]: unknown;
@@ -6045,7 +6091,7 @@ declare const SysSettingAudit: Omit<{
6045
6091
  refreshAfter: boolean;
6046
6092
  objectName?: string | undefined;
6047
6093
  icon?: string | undefined;
6048
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
6094
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
6049
6095
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
6050
6096
  target?: string | undefined;
6051
6097
  body?: {
@@ -6078,6 +6124,17 @@ declare const SysSettingAudit: Omit<{
6078
6124
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
6079
6125
  confirmText?: string | undefined;
6080
6126
  successMessage?: string | undefined;
6127
+ resultDialog?: {
6128
+ title?: string | undefined;
6129
+ description?: string | undefined;
6130
+ acknowledge?: string | undefined;
6131
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
6132
+ fields?: {
6133
+ path: string;
6134
+ label?: string | undefined;
6135
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
6136
+ }[] | undefined;
6137
+ } | undefined;
6081
6138
  visible?: {
6082
6139
  dialect: "cel" | "js" | "cron" | "template";
6083
6140
  source?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/platform-objects",
3
- "version": "6.8.1",
3
+ "version": "7.0.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",
@@ -45,10 +45,25 @@
45
45
  "types": "./dist/apps/index.d.ts",
46
46
  "import": "./dist/apps/index.mjs",
47
47
  "require": "./dist/apps/index.js"
48
+ },
49
+ "./pages": {
50
+ "types": "./dist/pages/index.d.ts",
51
+ "import": "./dist/pages/index.mjs",
52
+ "require": "./dist/pages/index.js"
53
+ },
54
+ "./metadata-translations": {
55
+ "types": "./dist/metadata-translations/index.d.ts",
56
+ "import": "./dist/metadata-translations/index.mjs",
57
+ "require": "./dist/metadata-translations/index.js"
58
+ },
59
+ "./plugin": {
60
+ "types": "./dist/plugin.d.ts",
61
+ "import": "./dist/plugin.mjs",
62
+ "require": "./dist/plugin.js"
48
63
  }
49
64
  },
50
65
  "dependencies": {
51
- "@objectstack/spec": "6.8.1"
66
+ "@objectstack/spec": "7.0.0"
52
67
  },
53
68
  "devDependencies": {
54
69
  "@types/node": "^25.9.1",