@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
@@ -634,7 +634,7 @@ declare const SysWebhook: Omit<{
634
634
  refreshAfter: boolean;
635
635
  objectName?: string | undefined;
636
636
  icon?: string | undefined;
637
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
637
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
638
638
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
639
639
  target?: string | undefined;
640
640
  body?: {
@@ -667,6 +667,17 @@ declare const SysWebhook: Omit<{
667
667
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
668
668
  confirmText?: string | undefined;
669
669
  successMessage?: string | undefined;
670
+ resultDialog?: {
671
+ title?: string | undefined;
672
+ description?: string | undefined;
673
+ acknowledge?: string | undefined;
674
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
675
+ fields?: {
676
+ path: string;
677
+ label?: string | undefined;
678
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
679
+ }[] | undefined;
680
+ } | undefined;
670
681
  visible?: {
671
682
  dialect: "cel" | "js" | "cron" | "template";
672
683
  source?: string | undefined;
@@ -634,7 +634,7 @@ declare const SysWebhook: Omit<{
634
634
  refreshAfter: boolean;
635
635
  objectName?: string | undefined;
636
636
  icon?: string | undefined;
637
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
637
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
638
638
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
639
639
  target?: string | undefined;
640
640
  body?: {
@@ -667,6 +667,17 @@ declare const SysWebhook: Omit<{
667
667
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
668
668
  confirmText?: string | undefined;
669
669
  successMessage?: string | undefined;
670
+ resultDialog?: {
671
+ title?: string | undefined;
672
+ description?: string | undefined;
673
+ acknowledge?: string | undefined;
674
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
675
+ fields?: {
676
+ path: string;
677
+ label?: string | undefined;
678
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
679
+ }[] | undefined;
680
+ } | undefined;
670
681
  visible?: {
671
682
  dialect: "cel" | "js" | "cron" | "template";
672
683
  source?: string | undefined;
@@ -623,7 +623,7 @@ declare const SysMetadataObject: Omit<{
623
623
  refreshAfter: boolean;
624
624
  objectName?: string | undefined;
625
625
  icon?: string | undefined;
626
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
626
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
627
627
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
628
628
  target?: string | undefined;
629
629
  body?: {
@@ -656,6 +656,17 @@ declare const SysMetadataObject: Omit<{
656
656
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
657
657
  confirmText?: string | undefined;
658
658
  successMessage?: string | undefined;
659
+ resultDialog?: {
660
+ title?: string | undefined;
661
+ description?: string | undefined;
662
+ acknowledge?: string | undefined;
663
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
664
+ fields?: {
665
+ path: string;
666
+ label?: string | undefined;
667
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
668
+ }[] | undefined;
669
+ } | undefined;
659
670
  visible?: {
660
671
  dialect: "cel" | "js" | "cron" | "template";
661
672
  source?: string | undefined;
@@ -5491,7 +5502,7 @@ declare const SysMetadataHistoryObject: Omit<{
5491
5502
  refreshAfter: boolean;
5492
5503
  objectName?: string | undefined;
5493
5504
  icon?: string | undefined;
5494
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
5505
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
5495
5506
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
5496
5507
  target?: string | undefined;
5497
5508
  body?: {
@@ -5524,6 +5535,17 @@ declare const SysMetadataHistoryObject: Omit<{
5524
5535
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
5525
5536
  confirmText?: string | undefined;
5526
5537
  successMessage?: string | undefined;
5538
+ resultDialog?: {
5539
+ title?: string | undefined;
5540
+ description?: string | undefined;
5541
+ acknowledge?: string | undefined;
5542
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
5543
+ fields?: {
5544
+ path: string;
5545
+ label?: string | undefined;
5546
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
5547
+ }[] | undefined;
5548
+ } | undefined;
5527
5549
  visible?: {
5528
5550
  dialect: "cel" | "js" | "cron" | "template";
5529
5551
  source?: string | undefined;
@@ -623,7 +623,7 @@ declare const SysMetadataObject: Omit<{
623
623
  refreshAfter: boolean;
624
624
  objectName?: string | undefined;
625
625
  icon?: string | undefined;
626
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
626
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
627
627
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
628
628
  target?: string | undefined;
629
629
  body?: {
@@ -656,6 +656,17 @@ declare const SysMetadataObject: Omit<{
656
656
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
657
657
  confirmText?: string | undefined;
658
658
  successMessage?: string | undefined;
659
+ resultDialog?: {
660
+ title?: string | undefined;
661
+ description?: string | undefined;
662
+ acknowledge?: string | undefined;
663
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
664
+ fields?: {
665
+ path: string;
666
+ label?: string | undefined;
667
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
668
+ }[] | undefined;
669
+ } | undefined;
659
670
  visible?: {
660
671
  dialect: "cel" | "js" | "cron" | "template";
661
672
  source?: string | undefined;
@@ -5491,7 +5502,7 @@ declare const SysMetadataHistoryObject: Omit<{
5491
5502
  refreshAfter: boolean;
5492
5503
  objectName?: string | undefined;
5493
5504
  icon?: string | undefined;
5494
- locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "global_nav")[] | undefined;
5505
+ locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
5495
5506
  component?: "action:button" | "action:icon" | "action:menu" | "action:group" | undefined;
5496
5507
  target?: string | undefined;
5497
5508
  body?: {
@@ -5524,6 +5535,17 @@ declare const SysMetadataHistoryObject: Omit<{
5524
5535
  variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
5525
5536
  confirmText?: string | undefined;
5526
5537
  successMessage?: string | undefined;
5538
+ resultDialog?: {
5539
+ title?: string | undefined;
5540
+ description?: string | undefined;
5541
+ acknowledge?: string | undefined;
5542
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
5543
+ fields?: {
5544
+ path: string;
5545
+ label?: string | undefined;
5546
+ format?: "secret" | "text" | "json" | "qrcode" | "code-list" | undefined;
5547
+ }[] | undefined;
5548
+ } | undefined;
5527
5549
  visible?: {
5528
5550
  dialect: "cel" | "js" | "cron" | "template";
5529
5551
  source?: string | undefined;
@@ -0,0 +1,20 @@
1
+ import { TranslationBundle } from '@objectstack/spec/system';
2
+
3
+ /**
4
+ * `MetadataFormsTranslations`
5
+ *
6
+ * Platform-default i18n bundle for the metadata-type configuration forms
7
+ * (object / field / agent / flow / view / …) shipped from `@objectstack/spec`.
8
+ *
9
+ * Single source of truth: the `*.metadata-forms.generated.ts` files in
10
+ * `apps/translations/`. Edit the generated files directly — they are
11
+ * hand-editable. Re-running
12
+ *
13
+ * pnpm --filter @objectstack/platform-objects i18n:extract
14
+ *
15
+ * preserves existing translations (via `--merge`) and only fills newly
16
+ * added schema keys per `--fill=default`.
17
+ */
18
+ declare const MetadataFormsTranslations: TranslationBundle;
19
+
20
+ export { MetadataFormsTranslations };
@@ -0,0 +1,20 @@
1
+ import { TranslationBundle } from '@objectstack/spec/system';
2
+
3
+ /**
4
+ * `MetadataFormsTranslations`
5
+ *
6
+ * Platform-default i18n bundle for the metadata-type configuration forms
7
+ * (object / field / agent / flow / view / …) shipped from `@objectstack/spec`.
8
+ *
9
+ * Single source of truth: the `*.metadata-forms.generated.ts` files in
10
+ * `apps/translations/`. Edit the generated files directly — they are
11
+ * hand-editable. Re-running
12
+ *
13
+ * pnpm --filter @objectstack/platform-objects i18n:extract
14
+ *
15
+ * preserves existing translations (via `--merge`) and only fills newly
16
+ * added schema keys per `--fill=default`.
17
+ */
18
+ declare const MetadataFormsTranslations: TranslationBundle;
19
+
20
+ export { MetadataFormsTranslations };