@objectstack/platform-objects 6.9.0 → 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 +192 -16
  8. package/dist/audit/index.d.ts +192 -16
  9. package/dist/identity/index.d.mts +840 -22
  10. package/dist/identity/index.d.ts +840 -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 +4 -1
  16. package/dist/index.d.ts +4 -1
  17. package/dist/index.js +6815 -104
  18. package/dist/index.js.map +1 -1
  19. package/dist/index.mjs +6810 -105
  20. package/dist/index.mjs.map +1 -1
  21. package/dist/integration/index.d.mts +12 -1
  22. package/dist/integration/index.d.ts +12 -1
  23. package/dist/metadata/index.d.mts +24 -2
  24. package/dist/metadata/index.d.ts +24 -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 +785 -183
  44. package/dist/security/index.d.ts +785 -183
  45. package/dist/security/index.js +188 -1
  46. package/dist/security/index.js.map +1 -1
  47. package/dist/security/index.mjs +188 -1
  48. package/dist/security/index.mjs.map +1 -1
  49. package/dist/system/index.d.mts +36 -3
  50. package/dist/system/index.d.ts +36 -3
  51. package/package.json +17 -2
@@ -640,7 +640,7 @@ declare const SysSetting: Omit<{
640
640
  refreshAfter: boolean;
641
641
  objectName?: string | undefined;
642
642
  icon?: string | undefined;
643
- 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;
644
644
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
645
645
  target?: string | undefined;
646
646
  body?: {
@@ -673,6 +673,17 @@ declare const SysSetting: Omit<{
673
673
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
674
674
  confirmText?: string | undefined;
675
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;
676
687
  visible?: {
677
688
  dialect: "cel" | "js" | "cron" | "template";
678
689
  source?: string | undefined;
@@ -3749,7 +3760,7 @@ declare const SysSecret: Omit<{
3749
3760
  refreshAfter: boolean;
3750
3761
  objectName?: string | undefined;
3751
3762
  icon?: string | undefined;
3752
- 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;
3753
3764
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
3754
3765
  target?: string | undefined;
3755
3766
  body?: {
@@ -3782,6 +3793,17 @@ declare const SysSecret: Omit<{
3782
3793
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
3783
3794
  confirmText?: string | undefined;
3784
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;
3785
3807
  visible?: {
3786
3808
  dialect: "cel" | "js" | "cron" | "template";
3787
3809
  source?: string | undefined;
@@ -6069,7 +6091,7 @@ declare const SysSettingAudit: Omit<{
6069
6091
  refreshAfter: boolean;
6070
6092
  objectName?: string | undefined;
6071
6093
  icon?: string | undefined;
6072
- 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;
6073
6095
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
6074
6096
  target?: string | undefined;
6075
6097
  body?: {
@@ -6102,6 +6124,17 @@ declare const SysSettingAudit: Omit<{
6102
6124
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
6103
6125
  confirmText?: string | undefined;
6104
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;
6105
6138
  visible?: {
6106
6139
  dialect: "cel" | "js" | "cron" | "template";
6107
6140
  source?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/platform-objects",
3
- "version": "6.9.0",
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.9.0"
66
+ "@objectstack/spec": "7.0.0"
52
67
  },
53
68
  "devDependencies": {
54
69
  "@types/node": "^25.9.1",