@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
package/dist/audit/index.d.mts
CHANGED
|
@@ -20,7 +20,7 @@ declare const SysAuditLog: 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 SysAuditLog: 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 SysAuditLog: 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;
|
|
@@ -2962,7 +2962,7 @@ declare const SysPresence: Omit<{
|
|
|
2962
2962
|
abstract: boolean;
|
|
2963
2963
|
datasource: string;
|
|
2964
2964
|
fields: Record<string, {
|
|
2965
|
-
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";
|
|
2965
|
+
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";
|
|
2966
2966
|
required: boolean;
|
|
2967
2967
|
searchable: boolean;
|
|
2968
2968
|
multiple: boolean;
|
|
@@ -3101,7 +3101,7 @@ declare const SysPresence: Omit<{
|
|
|
3101
3101
|
autoRotate: boolean;
|
|
3102
3102
|
} | undefined;
|
|
3103
3103
|
};
|
|
3104
|
-
scope: "
|
|
3104
|
+
scope: "record" | "field" | "table" | "database";
|
|
3105
3105
|
deterministicEncryption: boolean;
|
|
3106
3106
|
searchableEncryption: boolean;
|
|
3107
3107
|
} | undefined;
|
|
@@ -3584,7 +3584,7 @@ declare const SysPresence: Omit<{
|
|
|
3584
3584
|
field?: string | undefined;
|
|
3585
3585
|
objectOverride?: string | undefined;
|
|
3586
3586
|
label?: string | undefined;
|
|
3587
|
-
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;
|
|
3587
|
+
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;
|
|
3588
3588
|
options?: {
|
|
3589
3589
|
label: string;
|
|
3590
3590
|
value: string;
|
|
@@ -5622,7 +5622,7 @@ declare const SysActivity: Omit<{
|
|
|
5622
5622
|
abstract: boolean;
|
|
5623
5623
|
datasource: string;
|
|
5624
5624
|
fields: Record<string, {
|
|
5625
|
-
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";
|
|
5625
|
+
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";
|
|
5626
5626
|
required: boolean;
|
|
5627
5627
|
searchable: boolean;
|
|
5628
5628
|
multiple: boolean;
|
|
@@ -5761,7 +5761,7 @@ declare const SysActivity: Omit<{
|
|
|
5761
5761
|
autoRotate: boolean;
|
|
5762
5762
|
} | undefined;
|
|
5763
5763
|
};
|
|
5764
|
-
scope: "
|
|
5764
|
+
scope: "record" | "field" | "table" | "database";
|
|
5765
5765
|
deterministicEncryption: boolean;
|
|
5766
5766
|
searchableEncryption: boolean;
|
|
5767
5767
|
} | undefined;
|
|
@@ -6244,7 +6244,7 @@ declare const SysActivity: Omit<{
|
|
|
6244
6244
|
field?: string | undefined;
|
|
6245
6245
|
objectOverride?: string | undefined;
|
|
6246
6246
|
label?: string | undefined;
|
|
6247
|
-
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;
|
|
6247
|
+
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;
|
|
6248
6248
|
options?: {
|
|
6249
6249
|
label: string;
|
|
6250
6250
|
value: string;
|
|
@@ -8636,7 +8636,7 @@ declare const SysComment: Omit<{
|
|
|
8636
8636
|
abstract: boolean;
|
|
8637
8637
|
datasource: string;
|
|
8638
8638
|
fields: Record<string, {
|
|
8639
|
-
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";
|
|
8639
|
+
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";
|
|
8640
8640
|
required: boolean;
|
|
8641
8641
|
searchable: boolean;
|
|
8642
8642
|
multiple: boolean;
|
|
@@ -8775,7 +8775,7 @@ declare const SysComment: Omit<{
|
|
|
8775
8775
|
autoRotate: boolean;
|
|
8776
8776
|
} | undefined;
|
|
8777
8777
|
};
|
|
8778
|
-
scope: "
|
|
8778
|
+
scope: "record" | "field" | "table" | "database";
|
|
8779
8779
|
deterministicEncryption: boolean;
|
|
8780
8780
|
searchableEncryption: boolean;
|
|
8781
8781
|
} | undefined;
|
|
@@ -9258,7 +9258,7 @@ declare const SysComment: Omit<{
|
|
|
9258
9258
|
field?: string | undefined;
|
|
9259
9259
|
objectOverride?: string | undefined;
|
|
9260
9260
|
label?: string | undefined;
|
|
9261
|
-
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;
|
|
9261
|
+
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;
|
|
9262
9262
|
options?: {
|
|
9263
9263
|
label: string;
|
|
9264
9264
|
value: string;
|
|
@@ -12000,7 +12000,7 @@ declare const SysAttachment: Omit<{
|
|
|
12000
12000
|
abstract: boolean;
|
|
12001
12001
|
datasource: string;
|
|
12002
12002
|
fields: Record<string, {
|
|
12003
|
-
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";
|
|
12003
|
+
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";
|
|
12004
12004
|
required: boolean;
|
|
12005
12005
|
searchable: boolean;
|
|
12006
12006
|
multiple: boolean;
|
|
@@ -12139,7 +12139,7 @@ declare const SysAttachment: Omit<{
|
|
|
12139
12139
|
autoRotate: boolean;
|
|
12140
12140
|
} | undefined;
|
|
12141
12141
|
};
|
|
12142
|
-
scope: "
|
|
12142
|
+
scope: "record" | "field" | "table" | "database";
|
|
12143
12143
|
deterministicEncryption: boolean;
|
|
12144
12144
|
searchableEncryption: boolean;
|
|
12145
12145
|
} | undefined;
|
|
@@ -12622,7 +12622,7 @@ declare const SysAttachment: Omit<{
|
|
|
12622
12622
|
field?: string | undefined;
|
|
12623
12623
|
objectOverride?: string | undefined;
|
|
12624
12624
|
label?: string | undefined;
|
|
12625
|
-
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;
|
|
12625
|
+
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;
|
|
12626
12626
|
options?: {
|
|
12627
12627
|
label: string;
|
|
12628
12628
|
value: string;
|
|
@@ -15008,7 +15008,7 @@ declare const SysNotification: Omit<{
|
|
|
15008
15008
|
abstract: boolean;
|
|
15009
15009
|
datasource: string;
|
|
15010
15010
|
fields: Record<string, {
|
|
15011
|
-
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";
|
|
15011
|
+
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";
|
|
15012
15012
|
required: boolean;
|
|
15013
15013
|
searchable: boolean;
|
|
15014
15014
|
multiple: boolean;
|
|
@@ -15147,7 +15147,7 @@ declare const SysNotification: Omit<{
|
|
|
15147
15147
|
autoRotate: boolean;
|
|
15148
15148
|
} | undefined;
|
|
15149
15149
|
};
|
|
15150
|
-
scope: "
|
|
15150
|
+
scope: "record" | "field" | "table" | "database";
|
|
15151
15151
|
deterministicEncryption: boolean;
|
|
15152
15152
|
searchableEncryption: boolean;
|
|
15153
15153
|
} | undefined;
|
|
@@ -15630,7 +15630,7 @@ declare const SysNotification: Omit<{
|
|
|
15630
15630
|
field?: string | undefined;
|
|
15631
15631
|
objectOverride?: string | undefined;
|
|
15632
15632
|
label?: string | undefined;
|
|
15633
|
-
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;
|
|
15633
|
+
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;
|
|
15634
15634
|
options?: {
|
|
15635
15635
|
label: string;
|
|
15636
15636
|
value: string;
|
|
@@ -18306,7 +18306,7 @@ declare const SysEmail: Omit<{
|
|
|
18306
18306
|
abstract: boolean;
|
|
18307
18307
|
datasource: string;
|
|
18308
18308
|
fields: Record<string, {
|
|
18309
|
-
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";
|
|
18309
|
+
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";
|
|
18310
18310
|
required: boolean;
|
|
18311
18311
|
searchable: boolean;
|
|
18312
18312
|
multiple: boolean;
|
|
@@ -18445,7 +18445,7 @@ declare const SysEmail: Omit<{
|
|
|
18445
18445
|
autoRotate: boolean;
|
|
18446
18446
|
} | undefined;
|
|
18447
18447
|
};
|
|
18448
|
-
scope: "
|
|
18448
|
+
scope: "record" | "field" | "table" | "database";
|
|
18449
18449
|
deterministicEncryption: boolean;
|
|
18450
18450
|
searchableEncryption: boolean;
|
|
18451
18451
|
} | undefined;
|
|
@@ -18928,7 +18928,7 @@ declare const SysEmail: Omit<{
|
|
|
18928
18928
|
field?: string | undefined;
|
|
18929
18929
|
objectOverride?: string | undefined;
|
|
18930
18930
|
label?: string | undefined;
|
|
18931
|
-
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;
|
|
18931
|
+
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;
|
|
18932
18932
|
options?: {
|
|
18933
18933
|
label: string;
|
|
18934
18934
|
value: string;
|
|
@@ -22356,7 +22356,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22356
22356
|
abstract: boolean;
|
|
22357
22357
|
datasource: string;
|
|
22358
22358
|
fields: Record<string, {
|
|
22359
|
-
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";
|
|
22359
|
+
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";
|
|
22360
22360
|
required: boolean;
|
|
22361
22361
|
searchable: boolean;
|
|
22362
22362
|
multiple: boolean;
|
|
@@ -22495,7 +22495,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22495
22495
|
autoRotate: boolean;
|
|
22496
22496
|
} | undefined;
|
|
22497
22497
|
};
|
|
22498
|
-
scope: "
|
|
22498
|
+
scope: "record" | "field" | "table" | "database";
|
|
22499
22499
|
deterministicEncryption: boolean;
|
|
22500
22500
|
searchableEncryption: boolean;
|
|
22501
22501
|
} | undefined;
|
|
@@ -22978,7 +22978,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22978
22978
|
field?: string | undefined;
|
|
22979
22979
|
objectOverride?: string | undefined;
|
|
22980
22980
|
label?: string | undefined;
|
|
22981
|
-
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;
|
|
22981
|
+
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;
|
|
22982
22982
|
options?: {
|
|
22983
22983
|
label: string;
|
|
22984
22984
|
value: string;
|
|
@@ -26070,7 +26070,7 @@ declare const SysSavedReport: Omit<{
|
|
|
26070
26070
|
abstract: boolean;
|
|
26071
26071
|
datasource: string;
|
|
26072
26072
|
fields: Record<string, {
|
|
26073
|
-
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";
|
|
26073
|
+
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";
|
|
26074
26074
|
required: boolean;
|
|
26075
26075
|
searchable: boolean;
|
|
26076
26076
|
multiple: boolean;
|
|
@@ -26209,7 +26209,7 @@ declare const SysSavedReport: Omit<{
|
|
|
26209
26209
|
autoRotate: boolean;
|
|
26210
26210
|
} | undefined;
|
|
26211
26211
|
};
|
|
26212
|
-
scope: "
|
|
26212
|
+
scope: "record" | "field" | "table" | "database";
|
|
26213
26213
|
deterministicEncryption: boolean;
|
|
26214
26214
|
searchableEncryption: boolean;
|
|
26215
26215
|
} | undefined;
|
|
@@ -26692,7 +26692,7 @@ declare const SysSavedReport: Omit<{
|
|
|
26692
26692
|
field?: string | undefined;
|
|
26693
26693
|
objectOverride?: string | undefined;
|
|
26694
26694
|
label?: string | undefined;
|
|
26695
|
-
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;
|
|
26695
|
+
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;
|
|
26696
26696
|
options?: {
|
|
26697
26697
|
label: string;
|
|
26698
26698
|
value: string;
|
|
@@ -28732,7 +28732,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
28732
28732
|
abstract: boolean;
|
|
28733
28733
|
datasource: string;
|
|
28734
28734
|
fields: Record<string, {
|
|
28735
|
-
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";
|
|
28735
|
+
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";
|
|
28736
28736
|
required: boolean;
|
|
28737
28737
|
searchable: boolean;
|
|
28738
28738
|
multiple: boolean;
|
|
@@ -28871,7 +28871,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
28871
28871
|
autoRotate: boolean;
|
|
28872
28872
|
} | undefined;
|
|
28873
28873
|
};
|
|
28874
|
-
scope: "
|
|
28874
|
+
scope: "record" | "field" | "table" | "database";
|
|
28875
28875
|
deterministicEncryption: boolean;
|
|
28876
28876
|
searchableEncryption: boolean;
|
|
28877
28877
|
} | undefined;
|
|
@@ -29354,7 +29354,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
29354
29354
|
field?: string | undefined;
|
|
29355
29355
|
objectOverride?: string | undefined;
|
|
29356
29356
|
label?: string | undefined;
|
|
29357
|
-
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;
|
|
29357
|
+
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;
|
|
29358
29358
|
options?: {
|
|
29359
29359
|
label: string;
|
|
29360
29360
|
value: string;
|
|
@@ -32433,7 +32433,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32433
32433
|
abstract: boolean;
|
|
32434
32434
|
datasource: string;
|
|
32435
32435
|
fields: Record<string, {
|
|
32436
|
-
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";
|
|
32436
|
+
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";
|
|
32437
32437
|
required: boolean;
|
|
32438
32438
|
searchable: boolean;
|
|
32439
32439
|
multiple: boolean;
|
|
@@ -32572,7 +32572,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32572
32572
|
autoRotate: boolean;
|
|
32573
32573
|
} | undefined;
|
|
32574
32574
|
};
|
|
32575
|
-
scope: "
|
|
32575
|
+
scope: "record" | "field" | "table" | "database";
|
|
32576
32576
|
deterministicEncryption: boolean;
|
|
32577
32577
|
searchableEncryption: boolean;
|
|
32578
32578
|
} | undefined;
|
|
@@ -33055,7 +33055,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
33055
33055
|
field?: string | undefined;
|
|
33056
33056
|
objectOverride?: string | undefined;
|
|
33057
33057
|
label?: string | undefined;
|
|
33058
|
-
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;
|
|
33058
|
+
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;
|
|
33059
33059
|
options?: {
|
|
33060
33060
|
label: string;
|
|
33061
33061
|
value: string;
|
|
@@ -34835,7 +34835,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
34835
34835
|
abstract: boolean;
|
|
34836
34836
|
datasource: string;
|
|
34837
34837
|
fields: Record<string, {
|
|
34838
|
-
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";
|
|
34838
|
+
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";
|
|
34839
34839
|
required: boolean;
|
|
34840
34840
|
searchable: boolean;
|
|
34841
34841
|
multiple: boolean;
|
|
@@ -34974,7 +34974,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
34974
34974
|
autoRotate: boolean;
|
|
34975
34975
|
} | undefined;
|
|
34976
34976
|
};
|
|
34977
|
-
scope: "
|
|
34977
|
+
scope: "record" | "field" | "table" | "database";
|
|
34978
34978
|
deterministicEncryption: boolean;
|
|
34979
34979
|
searchableEncryption: boolean;
|
|
34980
34980
|
} | undefined;
|
|
@@ -35457,7 +35457,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35457
35457
|
field?: string | undefined;
|
|
35458
35458
|
objectOverride?: string | undefined;
|
|
35459
35459
|
label?: string | undefined;
|
|
35460
|
-
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;
|
|
35460
|
+
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;
|
|
35461
35461
|
options?: {
|
|
35462
35462
|
label: string;
|
|
35463
35463
|
value: string;
|
|
@@ -38452,7 +38452,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
38452
38452
|
abstract: boolean;
|
|
38453
38453
|
datasource: string;
|
|
38454
38454
|
fields: Record<string, {
|
|
38455
|
-
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";
|
|
38455
|
+
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";
|
|
38456
38456
|
required: boolean;
|
|
38457
38457
|
searchable: boolean;
|
|
38458
38458
|
multiple: boolean;
|
|
@@ -38591,7 +38591,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
38591
38591
|
autoRotate: boolean;
|
|
38592
38592
|
} | undefined;
|
|
38593
38593
|
};
|
|
38594
|
-
scope: "
|
|
38594
|
+
scope: "record" | "field" | "table" | "database";
|
|
38595
38595
|
deterministicEncryption: boolean;
|
|
38596
38596
|
searchableEncryption: boolean;
|
|
38597
38597
|
} | undefined;
|
|
@@ -39074,7 +39074,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
39074
39074
|
field?: string | undefined;
|
|
39075
39075
|
objectOverride?: string | undefined;
|
|
39076
39076
|
label?: string | undefined;
|
|
39077
|
-
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;
|
|
39077
|
+
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;
|
|
39078
39078
|
options?: {
|
|
39079
39079
|
label: string;
|
|
39080
39080
|
value: string;
|
|
@@ -40816,7 +40816,7 @@ declare const SysJob: Omit<{
|
|
|
40816
40816
|
abstract: boolean;
|
|
40817
40817
|
datasource: string;
|
|
40818
40818
|
fields: Record<string, {
|
|
40819
|
-
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";
|
|
40819
|
+
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";
|
|
40820
40820
|
required: boolean;
|
|
40821
40821
|
searchable: boolean;
|
|
40822
40822
|
multiple: boolean;
|
|
@@ -40955,7 +40955,7 @@ declare const SysJob: Omit<{
|
|
|
40955
40955
|
autoRotate: boolean;
|
|
40956
40956
|
} | undefined;
|
|
40957
40957
|
};
|
|
40958
|
-
scope: "
|
|
40958
|
+
scope: "record" | "field" | "table" | "database";
|
|
40959
40959
|
deterministicEncryption: boolean;
|
|
40960
40960
|
searchableEncryption: boolean;
|
|
40961
40961
|
} | undefined;
|
|
@@ -41438,7 +41438,7 @@ declare const SysJob: Omit<{
|
|
|
41438
41438
|
field?: string | undefined;
|
|
41439
41439
|
objectOverride?: string | undefined;
|
|
41440
41440
|
label?: string | undefined;
|
|
41441
|
-
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;
|
|
41441
|
+
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;
|
|
41442
41442
|
options?: {
|
|
41443
41443
|
label: string;
|
|
41444
41444
|
value: string;
|
|
@@ -43814,7 +43814,7 @@ declare const SysJobRun: Omit<{
|
|
|
43814
43814
|
abstract: boolean;
|
|
43815
43815
|
datasource: string;
|
|
43816
43816
|
fields: Record<string, {
|
|
43817
|
-
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";
|
|
43817
|
+
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";
|
|
43818
43818
|
required: boolean;
|
|
43819
43819
|
searchable: boolean;
|
|
43820
43820
|
multiple: boolean;
|
|
@@ -43953,7 +43953,7 @@ declare const SysJobRun: Omit<{
|
|
|
43953
43953
|
autoRotate: boolean;
|
|
43954
43954
|
} | undefined;
|
|
43955
43955
|
};
|
|
43956
|
-
scope: "
|
|
43956
|
+
scope: "record" | "field" | "table" | "database";
|
|
43957
43957
|
deterministicEncryption: boolean;
|
|
43958
43958
|
searchableEncryption: boolean;
|
|
43959
43959
|
} | undefined;
|
|
@@ -44436,7 +44436,7 @@ declare const SysJobRun: Omit<{
|
|
|
44436
44436
|
field?: string | undefined;
|
|
44437
44437
|
objectOverride?: string | undefined;
|
|
44438
44438
|
label?: string | undefined;
|
|
44439
|
-
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;
|
|
44439
|
+
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;
|
|
44440
44440
|
options?: {
|
|
44441
44441
|
label: string;
|
|
44442
44442
|
value: string;
|
|
@@ -46295,7 +46295,7 @@ declare const SysJobQueue: Omit<{
|
|
|
46295
46295
|
abstract: boolean;
|
|
46296
46296
|
datasource: string;
|
|
46297
46297
|
fields: Record<string, {
|
|
46298
|
-
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";
|
|
46298
|
+
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";
|
|
46299
46299
|
required: boolean;
|
|
46300
46300
|
searchable: boolean;
|
|
46301
46301
|
multiple: boolean;
|
|
@@ -46434,7 +46434,7 @@ declare const SysJobQueue: Omit<{
|
|
|
46434
46434
|
autoRotate: boolean;
|
|
46435
46435
|
} | undefined;
|
|
46436
46436
|
};
|
|
46437
|
-
scope: "
|
|
46437
|
+
scope: "record" | "field" | "table" | "database";
|
|
46438
46438
|
deterministicEncryption: boolean;
|
|
46439
46439
|
searchableEncryption: boolean;
|
|
46440
46440
|
} | undefined;
|
|
@@ -46917,7 +46917,7 @@ declare const SysJobQueue: Omit<{
|
|
|
46917
46917
|
field?: string | undefined;
|
|
46918
46918
|
objectOverride?: string | undefined;
|
|
46919
46919
|
label?: string | undefined;
|
|
46920
|
-
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;
|
|
46920
|
+
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;
|
|
46921
46921
|
options?: {
|
|
46922
46922
|
label: string;
|
|
46923
46923
|
value: string;
|