@objectstack/platform-objects 7.0.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.js +22 -29
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +22 -29
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +48 -48
- package/dist/audit/index.d.ts +48 -48
- package/dist/identity/index.d.mts +61 -61
- package/dist/identity/index.d.ts +61 -61
- package/dist/identity/index.js +1 -1
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +1 -1
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.js +43 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +43 -30
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +3 -3
- package/dist/integration/index.d.ts +3 -3
- package/dist/metadata/index.d.mts +6 -6
- package/dist/metadata/index.d.ts +6 -6
- package/dist/pages/index.d.mts +8 -3
- package/dist/pages/index.d.ts +8 -3
- package/dist/pages/index.js.map +1 -1
- package/dist/pages/index.mjs.map +1 -1
- package/dist/plugin.js +4 -8
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +4 -8
- package/dist/plugin.mjs.map +1 -1
- package/dist/security/index.d.mts +21 -21
- package/dist/security/index.d.ts +21 -21
- package/dist/security/index.js +20 -0
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +20 -0
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +9 -9
- package/dist/system/index.d.ts +9 -9
- package/package.json +2 -2
|
@@ -20,7 +20,7 @@ declare const SysUser: Omit<{
|
|
|
20
20
|
abstract: boolean;
|
|
21
21
|
datasource: string;
|
|
22
22
|
fields: Record<string, {
|
|
23
|
-
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";
|
|
23
|
+
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";
|
|
24
24
|
required: boolean;
|
|
25
25
|
searchable: boolean;
|
|
26
26
|
multiple: boolean;
|
|
@@ -159,7 +159,7 @@ declare const SysUser: Omit<{
|
|
|
159
159
|
autoRotate: boolean;
|
|
160
160
|
} | undefined;
|
|
161
161
|
};
|
|
162
|
-
scope: "
|
|
162
|
+
scope: "record" | "field" | "table" | "database";
|
|
163
163
|
deterministicEncryption: boolean;
|
|
164
164
|
searchableEncryption: boolean;
|
|
165
165
|
} | undefined;
|
|
@@ -642,7 +642,7 @@ declare const SysUser: Omit<{
|
|
|
642
642
|
field?: string | undefined;
|
|
643
643
|
objectOverride?: string | undefined;
|
|
644
644
|
label?: string | undefined;
|
|
645
|
-
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;
|
|
645
|
+
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;
|
|
646
646
|
options?: {
|
|
647
647
|
label: string;
|
|
648
648
|
value: string;
|
|
@@ -3210,7 +3210,7 @@ declare const SysSession: Omit<{
|
|
|
3210
3210
|
abstract: boolean;
|
|
3211
3211
|
datasource: string;
|
|
3212
3212
|
fields: Record<string, {
|
|
3213
|
-
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";
|
|
3213
|
+
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";
|
|
3214
3214
|
required: boolean;
|
|
3215
3215
|
searchable: boolean;
|
|
3216
3216
|
multiple: boolean;
|
|
@@ -3349,7 +3349,7 @@ declare const SysSession: Omit<{
|
|
|
3349
3349
|
autoRotate: boolean;
|
|
3350
3350
|
} | undefined;
|
|
3351
3351
|
};
|
|
3352
|
-
scope: "
|
|
3352
|
+
scope: "record" | "field" | "table" | "database";
|
|
3353
3353
|
deterministicEncryption: boolean;
|
|
3354
3354
|
searchableEncryption: boolean;
|
|
3355
3355
|
} | undefined;
|
|
@@ -3832,7 +3832,7 @@ declare const SysSession: Omit<{
|
|
|
3832
3832
|
field?: string | undefined;
|
|
3833
3833
|
objectOverride?: string | undefined;
|
|
3834
3834
|
label?: string | undefined;
|
|
3835
|
-
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;
|
|
3835
|
+
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;
|
|
3836
3836
|
options?: {
|
|
3837
3837
|
label: string;
|
|
3838
3838
|
value: string;
|
|
@@ -5933,7 +5933,7 @@ declare const SysAccount: Omit<{
|
|
|
5933
5933
|
abstract: boolean;
|
|
5934
5934
|
datasource: string;
|
|
5935
5935
|
fields: Record<string, {
|
|
5936
|
-
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";
|
|
5936
|
+
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";
|
|
5937
5937
|
required: boolean;
|
|
5938
5938
|
searchable: boolean;
|
|
5939
5939
|
multiple: boolean;
|
|
@@ -6072,7 +6072,7 @@ declare const SysAccount: Omit<{
|
|
|
6072
6072
|
autoRotate: boolean;
|
|
6073
6073
|
} | undefined;
|
|
6074
6074
|
};
|
|
6075
|
-
scope: "
|
|
6075
|
+
scope: "record" | "field" | "table" | "database";
|
|
6076
6076
|
deterministicEncryption: boolean;
|
|
6077
6077
|
searchableEncryption: boolean;
|
|
6078
6078
|
} | undefined;
|
|
@@ -6555,7 +6555,7 @@ declare const SysAccount: Omit<{
|
|
|
6555
6555
|
field?: string | undefined;
|
|
6556
6556
|
objectOverride?: string | undefined;
|
|
6557
6557
|
label?: string | undefined;
|
|
6558
|
-
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;
|
|
6558
|
+
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;
|
|
6559
6559
|
options?: {
|
|
6560
6560
|
label: string;
|
|
6561
6561
|
value: string;
|
|
@@ -9063,7 +9063,7 @@ declare const SysVerification: Omit<{
|
|
|
9063
9063
|
abstract: boolean;
|
|
9064
9064
|
datasource: string;
|
|
9065
9065
|
fields: Record<string, {
|
|
9066
|
-
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";
|
|
9066
|
+
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";
|
|
9067
9067
|
required: boolean;
|
|
9068
9068
|
searchable: boolean;
|
|
9069
9069
|
multiple: boolean;
|
|
@@ -9202,7 +9202,7 @@ declare const SysVerification: Omit<{
|
|
|
9202
9202
|
autoRotate: boolean;
|
|
9203
9203
|
} | undefined;
|
|
9204
9204
|
};
|
|
9205
|
-
scope: "
|
|
9205
|
+
scope: "record" | "field" | "table" | "database";
|
|
9206
9206
|
deterministicEncryption: boolean;
|
|
9207
9207
|
searchableEncryption: boolean;
|
|
9208
9208
|
} | undefined;
|
|
@@ -9685,7 +9685,7 @@ declare const SysVerification: Omit<{
|
|
|
9685
9685
|
field?: string | undefined;
|
|
9686
9686
|
objectOverride?: string | undefined;
|
|
9687
9687
|
label?: string | undefined;
|
|
9688
|
-
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;
|
|
9688
|
+
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;
|
|
9689
9689
|
options?: {
|
|
9690
9690
|
label: string;
|
|
9691
9691
|
value: string;
|
|
@@ -10842,7 +10842,7 @@ declare const SysOrganization: Omit<{
|
|
|
10842
10842
|
abstract: boolean;
|
|
10843
10843
|
datasource: string;
|
|
10844
10844
|
fields: Record<string, {
|
|
10845
|
-
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";
|
|
10845
|
+
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";
|
|
10846
10846
|
required: boolean;
|
|
10847
10847
|
searchable: boolean;
|
|
10848
10848
|
multiple: boolean;
|
|
@@ -10981,7 +10981,7 @@ declare const SysOrganization: Omit<{
|
|
|
10981
10981
|
autoRotate: boolean;
|
|
10982
10982
|
} | undefined;
|
|
10983
10983
|
};
|
|
10984
|
-
scope: "
|
|
10984
|
+
scope: "record" | "field" | "table" | "database";
|
|
10985
10985
|
deterministicEncryption: boolean;
|
|
10986
10986
|
searchableEncryption: boolean;
|
|
10987
10987
|
} | undefined;
|
|
@@ -11464,7 +11464,7 @@ declare const SysOrganization: Omit<{
|
|
|
11464
11464
|
field?: string | undefined;
|
|
11465
11465
|
objectOverride?: string | undefined;
|
|
11466
11466
|
label?: string | undefined;
|
|
11467
|
-
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;
|
|
11467
|
+
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;
|
|
11468
11468
|
options?: {
|
|
11469
11469
|
label: string;
|
|
11470
11470
|
value: string;
|
|
@@ -12915,7 +12915,7 @@ declare const SysMember: Omit<{
|
|
|
12915
12915
|
abstract: boolean;
|
|
12916
12916
|
datasource: string;
|
|
12917
12917
|
fields: Record<string, {
|
|
12918
|
-
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";
|
|
12918
|
+
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";
|
|
12919
12919
|
required: boolean;
|
|
12920
12920
|
searchable: boolean;
|
|
12921
12921
|
multiple: boolean;
|
|
@@ -13054,7 +13054,7 @@ declare const SysMember: Omit<{
|
|
|
13054
13054
|
autoRotate: boolean;
|
|
13055
13055
|
} | undefined;
|
|
13056
13056
|
};
|
|
13057
|
-
scope: "
|
|
13057
|
+
scope: "record" | "field" | "table" | "database";
|
|
13058
13058
|
deterministicEncryption: boolean;
|
|
13059
13059
|
searchableEncryption: boolean;
|
|
13060
13060
|
} | undefined;
|
|
@@ -13537,7 +13537,7 @@ declare const SysMember: Omit<{
|
|
|
13537
13537
|
field?: string | undefined;
|
|
13538
13538
|
objectOverride?: string | undefined;
|
|
13539
13539
|
label?: string | undefined;
|
|
13540
|
-
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;
|
|
13540
|
+
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;
|
|
13541
13541
|
options?: {
|
|
13542
13542
|
label: string;
|
|
13543
13543
|
value: string;
|
|
@@ -14611,7 +14611,7 @@ declare const SysInvitation: Omit<{
|
|
|
14611
14611
|
abstract: boolean;
|
|
14612
14612
|
datasource: string;
|
|
14613
14613
|
fields: Record<string, {
|
|
14614
|
-
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";
|
|
14614
|
+
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";
|
|
14615
14615
|
required: boolean;
|
|
14616
14616
|
searchable: boolean;
|
|
14617
14617
|
multiple: boolean;
|
|
@@ -14750,7 +14750,7 @@ declare const SysInvitation: Omit<{
|
|
|
14750
14750
|
autoRotate: boolean;
|
|
14751
14751
|
} | undefined;
|
|
14752
14752
|
};
|
|
14753
|
-
scope: "
|
|
14753
|
+
scope: "record" | "field" | "table" | "database";
|
|
14754
14754
|
deterministicEncryption: boolean;
|
|
14755
14755
|
searchableEncryption: boolean;
|
|
14756
14756
|
} | undefined;
|
|
@@ -15233,7 +15233,7 @@ declare const SysInvitation: Omit<{
|
|
|
15233
15233
|
field?: string | undefined;
|
|
15234
15234
|
objectOverride?: string | undefined;
|
|
15235
15235
|
label?: string | undefined;
|
|
15236
|
-
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;
|
|
15236
|
+
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;
|
|
15237
15237
|
options?: {
|
|
15238
15238
|
label: string;
|
|
15239
15239
|
value: string;
|
|
@@ -17075,7 +17075,7 @@ declare const SysTeam: Omit<{
|
|
|
17075
17075
|
abstract: boolean;
|
|
17076
17076
|
datasource: string;
|
|
17077
17077
|
fields: Record<string, {
|
|
17078
|
-
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";
|
|
17078
|
+
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";
|
|
17079
17079
|
required: boolean;
|
|
17080
17080
|
searchable: boolean;
|
|
17081
17081
|
multiple: boolean;
|
|
@@ -17214,7 +17214,7 @@ declare const SysTeam: Omit<{
|
|
|
17214
17214
|
autoRotate: boolean;
|
|
17215
17215
|
} | undefined;
|
|
17216
17216
|
};
|
|
17217
|
-
scope: "
|
|
17217
|
+
scope: "record" | "field" | "table" | "database";
|
|
17218
17218
|
deterministicEncryption: boolean;
|
|
17219
17219
|
searchableEncryption: boolean;
|
|
17220
17220
|
} | undefined;
|
|
@@ -17697,7 +17697,7 @@ declare const SysTeam: Omit<{
|
|
|
17697
17697
|
field?: string | undefined;
|
|
17698
17698
|
objectOverride?: string | undefined;
|
|
17699
17699
|
label?: string | undefined;
|
|
17700
|
-
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;
|
|
17700
|
+
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;
|
|
17701
17701
|
options?: {
|
|
17702
17702
|
label: string;
|
|
17703
17703
|
value: string;
|
|
@@ -18772,7 +18772,7 @@ declare const SysTeamMember: Omit<{
|
|
|
18772
18772
|
abstract: boolean;
|
|
18773
18773
|
datasource: string;
|
|
18774
18774
|
fields: Record<string, {
|
|
18775
|
-
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";
|
|
18775
|
+
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";
|
|
18776
18776
|
required: boolean;
|
|
18777
18777
|
searchable: boolean;
|
|
18778
18778
|
multiple: boolean;
|
|
@@ -18911,7 +18911,7 @@ declare const SysTeamMember: Omit<{
|
|
|
18911
18911
|
autoRotate: boolean;
|
|
18912
18912
|
} | undefined;
|
|
18913
18913
|
};
|
|
18914
|
-
scope: "
|
|
18914
|
+
scope: "record" | "field" | "table" | "database";
|
|
18915
18915
|
deterministicEncryption: boolean;
|
|
18916
18916
|
searchableEncryption: boolean;
|
|
18917
18917
|
} | undefined;
|
|
@@ -19394,7 +19394,7 @@ declare const SysTeamMember: Omit<{
|
|
|
19394
19394
|
field?: string | undefined;
|
|
19395
19395
|
objectOverride?: string | undefined;
|
|
19396
19396
|
label?: string | undefined;
|
|
19397
|
-
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;
|
|
19397
|
+
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;
|
|
19398
19398
|
options?: {
|
|
19399
19399
|
label: string;
|
|
19400
19400
|
value: string;
|
|
@@ -20250,7 +20250,7 @@ declare const SysDepartment: Omit<{
|
|
|
20250
20250
|
abstract: boolean;
|
|
20251
20251
|
datasource: string;
|
|
20252
20252
|
fields: Record<string, {
|
|
20253
|
-
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";
|
|
20253
|
+
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";
|
|
20254
20254
|
required: boolean;
|
|
20255
20255
|
searchable: boolean;
|
|
20256
20256
|
multiple: boolean;
|
|
@@ -20389,7 +20389,7 @@ declare const SysDepartment: Omit<{
|
|
|
20389
20389
|
autoRotate: boolean;
|
|
20390
20390
|
} | undefined;
|
|
20391
20391
|
};
|
|
20392
|
-
scope: "
|
|
20392
|
+
scope: "record" | "field" | "table" | "database";
|
|
20393
20393
|
deterministicEncryption: boolean;
|
|
20394
20394
|
searchableEncryption: boolean;
|
|
20395
20395
|
} | undefined;
|
|
@@ -20872,7 +20872,7 @@ declare const SysDepartment: Omit<{
|
|
|
20872
20872
|
field?: string | undefined;
|
|
20873
20873
|
objectOverride?: string | undefined;
|
|
20874
20874
|
label?: string | undefined;
|
|
20875
|
-
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;
|
|
20875
|
+
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;
|
|
20876
20876
|
options?: {
|
|
20877
20877
|
label: string;
|
|
20878
20878
|
value: string;
|
|
@@ -23349,7 +23349,7 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23349
23349
|
abstract: boolean;
|
|
23350
23350
|
datasource: string;
|
|
23351
23351
|
fields: Record<string, {
|
|
23352
|
-
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";
|
|
23352
|
+
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";
|
|
23353
23353
|
required: boolean;
|
|
23354
23354
|
searchable: boolean;
|
|
23355
23355
|
multiple: boolean;
|
|
@@ -23488,7 +23488,7 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23488
23488
|
autoRotate: boolean;
|
|
23489
23489
|
} | undefined;
|
|
23490
23490
|
};
|
|
23491
|
-
scope: "
|
|
23491
|
+
scope: "record" | "field" | "table" | "database";
|
|
23492
23492
|
deterministicEncryption: boolean;
|
|
23493
23493
|
searchableEncryption: boolean;
|
|
23494
23494
|
} | undefined;
|
|
@@ -23971,7 +23971,7 @@ declare const SysDepartmentMember: Omit<{
|
|
|
23971
23971
|
field?: string | undefined;
|
|
23972
23972
|
objectOverride?: string | undefined;
|
|
23973
23973
|
label?: string | undefined;
|
|
23974
|
-
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;
|
|
23974
|
+
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;
|
|
23975
23975
|
options?: {
|
|
23976
23976
|
label: string;
|
|
23977
23977
|
value: string;
|
|
@@ -25654,7 +25654,7 @@ declare const SysApiKey: Omit<{
|
|
|
25654
25654
|
abstract: boolean;
|
|
25655
25655
|
datasource: string;
|
|
25656
25656
|
fields: Record<string, {
|
|
25657
|
-
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";
|
|
25657
|
+
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";
|
|
25658
25658
|
required: boolean;
|
|
25659
25659
|
searchable: boolean;
|
|
25660
25660
|
multiple: boolean;
|
|
@@ -25793,7 +25793,7 @@ declare const SysApiKey: Omit<{
|
|
|
25793
25793
|
autoRotate: boolean;
|
|
25794
25794
|
} | undefined;
|
|
25795
25795
|
};
|
|
25796
|
-
scope: "
|
|
25796
|
+
scope: "record" | "field" | "table" | "database";
|
|
25797
25797
|
deterministicEncryption: boolean;
|
|
25798
25798
|
searchableEncryption: boolean;
|
|
25799
25799
|
} | undefined;
|
|
@@ -26276,7 +26276,7 @@ declare const SysApiKey: Omit<{
|
|
|
26276
26276
|
field?: string | undefined;
|
|
26277
26277
|
objectOverride?: string | undefined;
|
|
26278
26278
|
label?: string | undefined;
|
|
26279
|
-
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;
|
|
26279
|
+
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;
|
|
26280
26280
|
options?: {
|
|
26281
26281
|
label: string;
|
|
26282
26282
|
value: string;
|
|
@@ -28427,7 +28427,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
28427
28427
|
abstract: boolean;
|
|
28428
28428
|
datasource: string;
|
|
28429
28429
|
fields: Record<string, {
|
|
28430
|
-
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";
|
|
28430
|
+
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";
|
|
28431
28431
|
required: boolean;
|
|
28432
28432
|
searchable: boolean;
|
|
28433
28433
|
multiple: boolean;
|
|
@@ -28566,7 +28566,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
28566
28566
|
autoRotate: boolean;
|
|
28567
28567
|
} | undefined;
|
|
28568
28568
|
};
|
|
28569
|
-
scope: "
|
|
28569
|
+
scope: "record" | "field" | "table" | "database";
|
|
28570
28570
|
deterministicEncryption: boolean;
|
|
28571
28571
|
searchableEncryption: boolean;
|
|
28572
28572
|
} | undefined;
|
|
@@ -29049,7 +29049,7 @@ declare const SysTwoFactor: Omit<{
|
|
|
29049
29049
|
field?: string | undefined;
|
|
29050
29050
|
objectOverride?: string | undefined;
|
|
29051
29051
|
label?: string | undefined;
|
|
29052
|
-
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;
|
|
29052
|
+
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;
|
|
29053
29053
|
options?: {
|
|
29054
29054
|
label: string;
|
|
29055
29055
|
value: string;
|
|
@@ -30498,7 +30498,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
30498
30498
|
abstract: boolean;
|
|
30499
30499
|
datasource: string;
|
|
30500
30500
|
fields: Record<string, {
|
|
30501
|
-
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";
|
|
30501
|
+
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";
|
|
30502
30502
|
required: boolean;
|
|
30503
30503
|
searchable: boolean;
|
|
30504
30504
|
multiple: boolean;
|
|
@@ -30637,7 +30637,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
30637
30637
|
autoRotate: boolean;
|
|
30638
30638
|
} | undefined;
|
|
30639
30639
|
};
|
|
30640
|
-
scope: "
|
|
30640
|
+
scope: "record" | "field" | "table" | "database";
|
|
30641
30641
|
deterministicEncryption: boolean;
|
|
30642
30642
|
searchableEncryption: boolean;
|
|
30643
30643
|
} | undefined;
|
|
@@ -31120,7 +31120,7 @@ declare const SysDeviceCode: Omit<{
|
|
|
31120
31120
|
field?: string | undefined;
|
|
31121
31121
|
objectOverride?: string | undefined;
|
|
31122
31122
|
label?: string | undefined;
|
|
31123
|
-
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;
|
|
31123
|
+
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;
|
|
31124
31124
|
options?: {
|
|
31125
31125
|
label: string;
|
|
31126
31126
|
value: string;
|
|
@@ -33337,7 +33337,7 @@ declare const SysUserPreference: Omit<{
|
|
|
33337
33337
|
abstract: boolean;
|
|
33338
33338
|
datasource: string;
|
|
33339
33339
|
fields: Record<string, {
|
|
33340
|
-
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";
|
|
33340
|
+
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";
|
|
33341
33341
|
required: boolean;
|
|
33342
33342
|
searchable: boolean;
|
|
33343
33343
|
multiple: boolean;
|
|
@@ -33476,7 +33476,7 @@ declare const SysUserPreference: Omit<{
|
|
|
33476
33476
|
autoRotate: boolean;
|
|
33477
33477
|
} | undefined;
|
|
33478
33478
|
};
|
|
33479
|
-
scope: "
|
|
33479
|
+
scope: "record" | "field" | "table" | "database";
|
|
33480
33480
|
deterministicEncryption: boolean;
|
|
33481
33481
|
searchableEncryption: boolean;
|
|
33482
33482
|
} | undefined;
|
|
@@ -33959,7 +33959,7 @@ declare const SysUserPreference: Omit<{
|
|
|
33959
33959
|
field?: string | undefined;
|
|
33960
33960
|
objectOverride?: string | undefined;
|
|
33961
33961
|
label?: string | undefined;
|
|
33962
|
-
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;
|
|
33962
|
+
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;
|
|
33963
33963
|
options?: {
|
|
33964
33964
|
label: string;
|
|
33965
33965
|
value: string;
|
|
@@ -35188,7 +35188,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35188
35188
|
abstract: boolean;
|
|
35189
35189
|
datasource: string;
|
|
35190
35190
|
fields: Record<string, {
|
|
35191
|
-
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";
|
|
35191
|
+
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";
|
|
35192
35192
|
required: boolean;
|
|
35193
35193
|
searchable: boolean;
|
|
35194
35194
|
multiple: boolean;
|
|
@@ -35327,7 +35327,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35327
35327
|
autoRotate: boolean;
|
|
35328
35328
|
} | undefined;
|
|
35329
35329
|
};
|
|
35330
|
-
scope: "
|
|
35330
|
+
scope: "record" | "field" | "table" | "database";
|
|
35331
35331
|
deterministicEncryption: boolean;
|
|
35332
35332
|
searchableEncryption: boolean;
|
|
35333
35333
|
} | undefined;
|
|
@@ -35810,7 +35810,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35810
35810
|
field?: string | undefined;
|
|
35811
35811
|
objectOverride?: string | undefined;
|
|
35812
35812
|
label?: string | undefined;
|
|
35813
|
-
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;
|
|
35813
|
+
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;
|
|
35814
35814
|
options?: {
|
|
35815
35815
|
label: string;
|
|
35816
35816
|
value: string;
|
|
@@ -35936,7 +35936,7 @@ declare const SysOauthApplication: Omit<{
|
|
|
35936
35936
|
readonly locations: ["list_toolbar"];
|
|
35937
35937
|
readonly type: "api";
|
|
35938
35938
|
readonly method: "POST";
|
|
35939
|
-
readonly target: "/api/v1/auth/
|
|
35939
|
+
readonly target: "/api/v1/auth/sys-oauth-application/register";
|
|
35940
35940
|
readonly refreshAfter: true;
|
|
35941
35941
|
readonly params: [{
|
|
35942
35942
|
readonly name: "name";
|
|
@@ -41406,7 +41406,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41406
41406
|
abstract: boolean;
|
|
41407
41407
|
datasource: string;
|
|
41408
41408
|
fields: Record<string, {
|
|
41409
|
-
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";
|
|
41409
|
+
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";
|
|
41410
41410
|
required: boolean;
|
|
41411
41411
|
searchable: boolean;
|
|
41412
41412
|
multiple: boolean;
|
|
@@ -41545,7 +41545,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
41545
41545
|
autoRotate: boolean;
|
|
41546
41546
|
} | undefined;
|
|
41547
41547
|
};
|
|
41548
|
-
scope: "
|
|
41548
|
+
scope: "record" | "field" | "table" | "database";
|
|
41549
41549
|
deterministicEncryption: boolean;
|
|
41550
41550
|
searchableEncryption: boolean;
|
|
41551
41551
|
} | undefined;
|
|
@@ -42028,7 +42028,7 @@ declare const SysOauthAccessToken: Omit<{
|
|
|
42028
42028
|
field?: string | undefined;
|
|
42029
42029
|
objectOverride?: string | undefined;
|
|
42030
42030
|
label?: string | undefined;
|
|
42031
|
-
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;
|
|
42031
|
+
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;
|
|
42032
42032
|
options?: {
|
|
42033
42033
|
label: string;
|
|
42034
42034
|
value: string;
|
|
@@ -43890,7 +43890,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
43890
43890
|
abstract: boolean;
|
|
43891
43891
|
datasource: string;
|
|
43892
43892
|
fields: Record<string, {
|
|
43893
|
-
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";
|
|
43893
|
+
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";
|
|
43894
43894
|
required: boolean;
|
|
43895
43895
|
searchable: boolean;
|
|
43896
43896
|
multiple: boolean;
|
|
@@ -44029,7 +44029,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
44029
44029
|
autoRotate: boolean;
|
|
44030
44030
|
} | undefined;
|
|
44031
44031
|
};
|
|
44032
|
-
scope: "
|
|
44032
|
+
scope: "record" | "field" | "table" | "database";
|
|
44033
44033
|
deterministicEncryption: boolean;
|
|
44034
44034
|
searchableEncryption: boolean;
|
|
44035
44035
|
} | undefined;
|
|
@@ -44512,7 +44512,7 @@ declare const SysOauthRefreshToken: Omit<{
|
|
|
44512
44512
|
field?: string | undefined;
|
|
44513
44513
|
objectOverride?: string | undefined;
|
|
44514
44514
|
label?: string | undefined;
|
|
44515
|
-
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;
|
|
44515
|
+
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;
|
|
44516
44516
|
options?: {
|
|
44517
44517
|
label: string;
|
|
44518
44518
|
value: string;
|
|
@@ -46549,7 +46549,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
46549
46549
|
abstract: boolean;
|
|
46550
46550
|
datasource: string;
|
|
46551
46551
|
fields: Record<string, {
|
|
46552
|
-
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";
|
|
46552
|
+
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";
|
|
46553
46553
|
required: boolean;
|
|
46554
46554
|
searchable: boolean;
|
|
46555
46555
|
multiple: boolean;
|
|
@@ -46688,7 +46688,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
46688
46688
|
autoRotate: boolean;
|
|
46689
46689
|
} | undefined;
|
|
46690
46690
|
};
|
|
46691
|
-
scope: "
|
|
46691
|
+
scope: "record" | "field" | "table" | "database";
|
|
46692
46692
|
deterministicEncryption: boolean;
|
|
46693
46693
|
searchableEncryption: boolean;
|
|
46694
46694
|
} | undefined;
|
|
@@ -47171,7 +47171,7 @@ declare const SysOauthConsent: Omit<{
|
|
|
47171
47171
|
field?: string | undefined;
|
|
47172
47172
|
objectOverride?: string | undefined;
|
|
47173
47173
|
label?: string | undefined;
|
|
47174
|
-
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;
|
|
47174
|
+
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;
|
|
47175
47175
|
options?: {
|
|
47176
47176
|
label: string;
|
|
47177
47177
|
value: string;
|
|
@@ -48501,7 +48501,7 @@ declare const SysJwks: Omit<{
|
|
|
48501
48501
|
abstract: boolean;
|
|
48502
48502
|
datasource: string;
|
|
48503
48503
|
fields: Record<string, {
|
|
48504
|
-
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";
|
|
48504
|
+
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";
|
|
48505
48505
|
required: boolean;
|
|
48506
48506
|
searchable: boolean;
|
|
48507
48507
|
multiple: boolean;
|
|
@@ -48640,7 +48640,7 @@ declare const SysJwks: Omit<{
|
|
|
48640
48640
|
autoRotate: boolean;
|
|
48641
48641
|
} | undefined;
|
|
48642
48642
|
};
|
|
48643
|
-
scope: "
|
|
48643
|
+
scope: "record" | "field" | "table" | "database";
|
|
48644
48644
|
deterministicEncryption: boolean;
|
|
48645
48645
|
searchableEncryption: boolean;
|
|
48646
48646
|
} | undefined;
|
|
@@ -49123,7 +49123,7 @@ declare const SysJwks: Omit<{
|
|
|
49123
49123
|
field?: string | undefined;
|
|
49124
49124
|
objectOverride?: string | undefined;
|
|
49125
49125
|
label?: string | undefined;
|
|
49126
|
-
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;
|
|
49126
|
+
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;
|
|
49127
49127
|
options?: {
|
|
49128
49128
|
label: string;
|
|
49129
49129
|
value: string;
|