@objectstack/platform-objects 6.9.0 → 7.1.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.
- package/dist/apps/index.d.mts +30 -1
- package/dist/apps/index.d.ts +30 -1
- package/dist/apps/index.js +987 -37
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +987 -38
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +240 -64
- package/dist/audit/index.d.ts +240 -64
- package/dist/identity/index.d.mts +900 -82
- package/dist/identity/index.d.ts +900 -82
- package/dist/identity/index.js +384 -8
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +384 -8
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +6823 -99
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6818 -100
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +15 -4
- package/dist/integration/index.d.ts +15 -4
- package/dist/metadata/index.d.mts +30 -8
- package/dist/metadata/index.d.ts +30 -8
- package/dist/metadata-translations/index.d.mts +20 -0
- package/dist/metadata-translations/index.d.ts +20 -0
- package/dist/metadata-translations/index.js +4777 -0
- package/dist/metadata-translations/index.js.map +1 -0
- package/dist/metadata-translations/index.mjs +4775 -0
- package/dist/metadata-translations/index.mjs.map +1 -0
- package/dist/pages/index.d.mts +73 -0
- package/dist/pages/index.d.ts +73 -0
- package/dist/pages/index.js +371 -0
- package/dist/pages/index.js.map +1 -0
- package/dist/pages/index.mjs +368 -0
- package/dist/pages/index.mjs.map +1 -0
- package/dist/plugin.d.mts +35 -0
- package/dist/plugin.d.ts +35 -0
- package/dist/plugin.js +17562 -0
- package/dist/plugin.js.map +1 -0
- package/dist/plugin.mjs +17559 -0
- package/dist/plugin.mjs.map +1 -0
- package/dist/security/index.d.mts +806 -204
- package/dist/security/index.d.ts +806 -204
- package/dist/security/index.js +208 -1
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +208 -1
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +45 -12
- package/dist/system/index.d.ts +45 -12
- package/package.json +17 -2
package/dist/system/index.d.mts
CHANGED
|
@@ -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: "
|
|
180
|
+
scope: "record" | "field" | "table" | "database";
|
|
181
181
|
deterministicEncryption: boolean;
|
|
182
182
|
searchableEncryption: boolean;
|
|
183
183
|
} | undefined;
|
|
@@ -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?: {
|
|
@@ -660,7 +660,7 @@ declare const SysSetting: Omit<{
|
|
|
660
660
|
field?: string | undefined;
|
|
661
661
|
objectOverride?: string | undefined;
|
|
662
662
|
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;
|
|
663
|
+
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
664
|
options?: {
|
|
665
665
|
label: string;
|
|
666
666
|
value: string;
|
|
@@ -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;
|
|
@@ -3147,7 +3158,7 @@ declare const SysSecret: Omit<{
|
|
|
3147
3158
|
abstract: boolean;
|
|
3148
3159
|
datasource: string;
|
|
3149
3160
|
fields: Record<string, {
|
|
3150
|
-
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";
|
|
3161
|
+
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";
|
|
3151
3162
|
required: boolean;
|
|
3152
3163
|
searchable: boolean;
|
|
3153
3164
|
multiple: boolean;
|
|
@@ -3286,7 +3297,7 @@ declare const SysSecret: Omit<{
|
|
|
3286
3297
|
autoRotate: boolean;
|
|
3287
3298
|
} | undefined;
|
|
3288
3299
|
};
|
|
3289
|
-
scope: "
|
|
3300
|
+
scope: "record" | "field" | "table" | "database";
|
|
3290
3301
|
deterministicEncryption: boolean;
|
|
3291
3302
|
searchableEncryption: boolean;
|
|
3292
3303
|
} | 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?: {
|
|
@@ -3769,7 +3780,7 @@ declare const SysSecret: Omit<{
|
|
|
3769
3780
|
field?: string | undefined;
|
|
3770
3781
|
objectOverride?: string | undefined;
|
|
3771
3782
|
label?: string | undefined;
|
|
3772
|
-
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;
|
|
3783
|
+
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;
|
|
3773
3784
|
options?: {
|
|
3774
3785
|
label: string;
|
|
3775
3786
|
value: string;
|
|
@@ -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;
|
|
@@ -5467,7 +5489,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5467
5489
|
abstract: boolean;
|
|
5468
5490
|
datasource: string;
|
|
5469
5491
|
fields: Record<string, {
|
|
5470
|
-
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";
|
|
5492
|
+
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";
|
|
5471
5493
|
required: boolean;
|
|
5472
5494
|
searchable: boolean;
|
|
5473
5495
|
multiple: boolean;
|
|
@@ -5606,7 +5628,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5606
5628
|
autoRotate: boolean;
|
|
5607
5629
|
} | undefined;
|
|
5608
5630
|
};
|
|
5609
|
-
scope: "
|
|
5631
|
+
scope: "record" | "field" | "table" | "database";
|
|
5610
5632
|
deterministicEncryption: boolean;
|
|
5611
5633
|
searchableEncryption: boolean;
|
|
5612
5634
|
} | 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?: {
|
|
@@ -6089,7 +6111,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6089
6111
|
field?: string | undefined;
|
|
6090
6112
|
objectOverride?: string | undefined;
|
|
6091
6113
|
label?: string | undefined;
|
|
6092
|
-
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;
|
|
6114
|
+
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;
|
|
6093
6115
|
options?: {
|
|
6094
6116
|
label: string;
|
|
6095
6117
|
value: string;
|
|
@@ -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/dist/system/index.d.ts
CHANGED
|
@@ -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: "
|
|
180
|
+
scope: "record" | "field" | "table" | "database";
|
|
181
181
|
deterministicEncryption: boolean;
|
|
182
182
|
searchableEncryption: boolean;
|
|
183
183
|
} | undefined;
|
|
@@ -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?: {
|
|
@@ -660,7 +660,7 @@ declare const SysSetting: Omit<{
|
|
|
660
660
|
field?: string | undefined;
|
|
661
661
|
objectOverride?: string | undefined;
|
|
662
662
|
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;
|
|
663
|
+
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
664
|
options?: {
|
|
665
665
|
label: string;
|
|
666
666
|
value: string;
|
|
@@ -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;
|
|
@@ -3147,7 +3158,7 @@ declare const SysSecret: Omit<{
|
|
|
3147
3158
|
abstract: boolean;
|
|
3148
3159
|
datasource: string;
|
|
3149
3160
|
fields: Record<string, {
|
|
3150
|
-
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";
|
|
3161
|
+
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";
|
|
3151
3162
|
required: boolean;
|
|
3152
3163
|
searchable: boolean;
|
|
3153
3164
|
multiple: boolean;
|
|
@@ -3286,7 +3297,7 @@ declare const SysSecret: Omit<{
|
|
|
3286
3297
|
autoRotate: boolean;
|
|
3287
3298
|
} | undefined;
|
|
3288
3299
|
};
|
|
3289
|
-
scope: "
|
|
3300
|
+
scope: "record" | "field" | "table" | "database";
|
|
3290
3301
|
deterministicEncryption: boolean;
|
|
3291
3302
|
searchableEncryption: boolean;
|
|
3292
3303
|
} | 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?: {
|
|
@@ -3769,7 +3780,7 @@ declare const SysSecret: Omit<{
|
|
|
3769
3780
|
field?: string | undefined;
|
|
3770
3781
|
objectOverride?: string | undefined;
|
|
3771
3782
|
label?: string | undefined;
|
|
3772
|
-
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;
|
|
3783
|
+
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;
|
|
3773
3784
|
options?: {
|
|
3774
3785
|
label: string;
|
|
3775
3786
|
value: string;
|
|
@@ -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;
|
|
@@ -5467,7 +5489,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5467
5489
|
abstract: boolean;
|
|
5468
5490
|
datasource: string;
|
|
5469
5491
|
fields: Record<string, {
|
|
5470
|
-
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";
|
|
5492
|
+
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";
|
|
5471
5493
|
required: boolean;
|
|
5472
5494
|
searchable: boolean;
|
|
5473
5495
|
multiple: boolean;
|
|
@@ -5606,7 +5628,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5606
5628
|
autoRotate: boolean;
|
|
5607
5629
|
} | undefined;
|
|
5608
5630
|
};
|
|
5609
|
-
scope: "
|
|
5631
|
+
scope: "record" | "field" | "table" | "database";
|
|
5610
5632
|
deterministicEncryption: boolean;
|
|
5611
5633
|
searchableEncryption: boolean;
|
|
5612
5634
|
} | 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?: {
|
|
@@ -6089,7 +6111,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6089
6111
|
field?: string | undefined;
|
|
6090
6112
|
objectOverride?: string | undefined;
|
|
6091
6113
|
label?: string | undefined;
|
|
6092
|
-
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;
|
|
6114
|
+
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;
|
|
6093
6115
|
options?: {
|
|
6094
6116
|
label: string;
|
|
6095
6117
|
value: string;
|
|
@@ -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": "
|
|
3
|
+
"version": "7.1.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": "
|
|
66
|
+
"@objectstack/spec": "7.1.0"
|
|
52
67
|
},
|
|
53
68
|
"devDependencies": {
|
|
54
69
|
"@types/node": "^25.9.1",
|