@objectstack/platform-objects 6.7.1 → 6.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.d.mts +28 -1
- package/dist/apps/index.d.ts +28 -1
- package/dist/apps/index.js +304 -6
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +304 -7
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +96 -32
- package/dist/audit/index.d.ts +96 -32
- package/dist/identity/index.d.mts +121 -40
- package/dist/identity/index.d.ts +121 -40
- package/dist/identity/index.js +6 -0
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +6 -0
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +349 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +349 -8
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +6 -2
- package/dist/integration/index.d.ts +6 -2
- package/dist/metadata/index.d.mts +75 -4
- package/dist/metadata/index.d.ts +75 -4
- package/dist/metadata/index.js +38 -0
- package/dist/metadata/index.js.map +1 -1
- package/dist/metadata/index.mjs +38 -0
- package/dist/metadata/index.mjs.map +1 -1
- package/dist/security/index.d.mts +36 -12
- package/dist/security/index.d.ts +36 -12
- package/dist/security/index.js +1 -1
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +1 -1
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +18 -6
- package/dist/system/index.d.ts +18 -6
- package/package.json +2 -2
package/dist/audit/index.d.ts
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
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";
|
|
24
24
|
required: boolean;
|
|
25
25
|
searchable: boolean;
|
|
26
26
|
multiple: boolean;
|
|
@@ -383,6 +383,10 @@ declare const SysAuditLog: Omit<{
|
|
|
383
383
|
} | {
|
|
384
384
|
provider: "value";
|
|
385
385
|
items: unknown[];
|
|
386
|
+
} | {
|
|
387
|
+
provider: "schema";
|
|
388
|
+
schemaId: string;
|
|
389
|
+
schema?: Record<string, unknown> | undefined;
|
|
386
390
|
} | undefined;
|
|
387
391
|
filter?: {
|
|
388
392
|
field: string;
|
|
@@ -630,7 +634,7 @@ declare const SysAuditLog: Omit<{
|
|
|
630
634
|
field?: string | undefined;
|
|
631
635
|
objectOverride?: string | undefined;
|
|
632
636
|
label?: string | undefined;
|
|
633
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
637
|
+
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;
|
|
634
638
|
options?: {
|
|
635
639
|
label: string;
|
|
636
640
|
value: string;
|
|
@@ -2939,7 +2943,7 @@ declare const SysPresence: Omit<{
|
|
|
2939
2943
|
abstract: boolean;
|
|
2940
2944
|
datasource: string;
|
|
2941
2945
|
fields: Record<string, {
|
|
2942
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
2946
|
+
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";
|
|
2943
2947
|
required: boolean;
|
|
2944
2948
|
searchable: boolean;
|
|
2945
2949
|
multiple: boolean;
|
|
@@ -3302,6 +3306,10 @@ declare const SysPresence: Omit<{
|
|
|
3302
3306
|
} | {
|
|
3303
3307
|
provider: "value";
|
|
3304
3308
|
items: unknown[];
|
|
3309
|
+
} | {
|
|
3310
|
+
provider: "schema";
|
|
3311
|
+
schemaId: string;
|
|
3312
|
+
schema?: Record<string, unknown> | undefined;
|
|
3305
3313
|
} | undefined;
|
|
3306
3314
|
filter?: {
|
|
3307
3315
|
field: string;
|
|
@@ -3549,7 +3557,7 @@ declare const SysPresence: Omit<{
|
|
|
3549
3557
|
field?: string | undefined;
|
|
3550
3558
|
objectOverride?: string | undefined;
|
|
3551
3559
|
label?: string | undefined;
|
|
3552
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
3560
|
+
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;
|
|
3553
3561
|
options?: {
|
|
3554
3562
|
label: string;
|
|
3555
3563
|
value: string;
|
|
@@ -5576,7 +5584,7 @@ declare const SysActivity: Omit<{
|
|
|
5576
5584
|
abstract: boolean;
|
|
5577
5585
|
datasource: string;
|
|
5578
5586
|
fields: Record<string, {
|
|
5579
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
5587
|
+
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";
|
|
5580
5588
|
required: boolean;
|
|
5581
5589
|
searchable: boolean;
|
|
5582
5590
|
multiple: boolean;
|
|
@@ -5939,6 +5947,10 @@ declare const SysActivity: Omit<{
|
|
|
5939
5947
|
} | {
|
|
5940
5948
|
provider: "value";
|
|
5941
5949
|
items: unknown[];
|
|
5950
|
+
} | {
|
|
5951
|
+
provider: "schema";
|
|
5952
|
+
schemaId: string;
|
|
5953
|
+
schema?: Record<string, unknown> | undefined;
|
|
5942
5954
|
} | undefined;
|
|
5943
5955
|
filter?: {
|
|
5944
5956
|
field: string;
|
|
@@ -6186,7 +6198,7 @@ declare const SysActivity: Omit<{
|
|
|
6186
6198
|
field?: string | undefined;
|
|
6187
6199
|
objectOverride?: string | undefined;
|
|
6188
6200
|
label?: string | undefined;
|
|
6189
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6201
|
+
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;
|
|
6190
6202
|
options?: {
|
|
6191
6203
|
label: string;
|
|
6192
6204
|
value: string;
|
|
@@ -8567,7 +8579,7 @@ declare const SysComment: Omit<{
|
|
|
8567
8579
|
abstract: boolean;
|
|
8568
8580
|
datasource: string;
|
|
8569
8581
|
fields: Record<string, {
|
|
8570
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
8582
|
+
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";
|
|
8571
8583
|
required: boolean;
|
|
8572
8584
|
searchable: boolean;
|
|
8573
8585
|
multiple: boolean;
|
|
@@ -8930,6 +8942,10 @@ declare const SysComment: Omit<{
|
|
|
8930
8942
|
} | {
|
|
8931
8943
|
provider: "value";
|
|
8932
8944
|
items: unknown[];
|
|
8945
|
+
} | {
|
|
8946
|
+
provider: "schema";
|
|
8947
|
+
schemaId: string;
|
|
8948
|
+
schema?: Record<string, unknown> | undefined;
|
|
8933
8949
|
} | undefined;
|
|
8934
8950
|
filter?: {
|
|
8935
8951
|
field: string;
|
|
@@ -9177,7 +9193,7 @@ declare const SysComment: Omit<{
|
|
|
9177
9193
|
field?: string | undefined;
|
|
9178
9194
|
objectOverride?: string | undefined;
|
|
9179
9195
|
label?: string | undefined;
|
|
9180
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
9196
|
+
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;
|
|
9181
9197
|
options?: {
|
|
9182
9198
|
label: string;
|
|
9183
9199
|
value: string;
|
|
@@ -11908,7 +11924,7 @@ declare const SysAttachment: Omit<{
|
|
|
11908
11924
|
abstract: boolean;
|
|
11909
11925
|
datasource: string;
|
|
11910
11926
|
fields: Record<string, {
|
|
11911
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
11927
|
+
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";
|
|
11912
11928
|
required: boolean;
|
|
11913
11929
|
searchable: boolean;
|
|
11914
11930
|
multiple: boolean;
|
|
@@ -12271,6 +12287,10 @@ declare const SysAttachment: Omit<{
|
|
|
12271
12287
|
} | {
|
|
12272
12288
|
provider: "value";
|
|
12273
12289
|
items: unknown[];
|
|
12290
|
+
} | {
|
|
12291
|
+
provider: "schema";
|
|
12292
|
+
schemaId: string;
|
|
12293
|
+
schema?: Record<string, unknown> | undefined;
|
|
12274
12294
|
} | undefined;
|
|
12275
12295
|
filter?: {
|
|
12276
12296
|
field: string;
|
|
@@ -12518,7 +12538,7 @@ declare const SysAttachment: Omit<{
|
|
|
12518
12538
|
field?: string | undefined;
|
|
12519
12539
|
objectOverride?: string | undefined;
|
|
12520
12540
|
label?: string | undefined;
|
|
12521
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
12541
|
+
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;
|
|
12522
12542
|
options?: {
|
|
12523
12543
|
label: string;
|
|
12524
12544
|
value: string;
|
|
@@ -14893,7 +14913,7 @@ declare const SysNotification: Omit<{
|
|
|
14893
14913
|
abstract: boolean;
|
|
14894
14914
|
datasource: string;
|
|
14895
14915
|
fields: Record<string, {
|
|
14896
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
14916
|
+
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";
|
|
14897
14917
|
required: boolean;
|
|
14898
14918
|
searchable: boolean;
|
|
14899
14919
|
multiple: boolean;
|
|
@@ -15256,6 +15276,10 @@ declare const SysNotification: Omit<{
|
|
|
15256
15276
|
} | {
|
|
15257
15277
|
provider: "value";
|
|
15258
15278
|
items: unknown[];
|
|
15279
|
+
} | {
|
|
15280
|
+
provider: "schema";
|
|
15281
|
+
schemaId: string;
|
|
15282
|
+
schema?: Record<string, unknown> | undefined;
|
|
15259
15283
|
} | undefined;
|
|
15260
15284
|
filter?: {
|
|
15261
15285
|
field: string;
|
|
@@ -15503,7 +15527,7 @@ declare const SysNotification: Omit<{
|
|
|
15503
15527
|
field?: string | undefined;
|
|
15504
15528
|
objectOverride?: string | undefined;
|
|
15505
15529
|
label?: string | undefined;
|
|
15506
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
15530
|
+
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;
|
|
15507
15531
|
options?: {
|
|
15508
15532
|
label: string;
|
|
15509
15533
|
value: string;
|
|
@@ -18168,7 +18192,7 @@ declare const SysEmail: Omit<{
|
|
|
18168
18192
|
abstract: boolean;
|
|
18169
18193
|
datasource: string;
|
|
18170
18194
|
fields: Record<string, {
|
|
18171
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
18195
|
+
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";
|
|
18172
18196
|
required: boolean;
|
|
18173
18197
|
searchable: boolean;
|
|
18174
18198
|
multiple: boolean;
|
|
@@ -18531,6 +18555,10 @@ declare const SysEmail: Omit<{
|
|
|
18531
18555
|
} | {
|
|
18532
18556
|
provider: "value";
|
|
18533
18557
|
items: unknown[];
|
|
18558
|
+
} | {
|
|
18559
|
+
provider: "schema";
|
|
18560
|
+
schemaId: string;
|
|
18561
|
+
schema?: Record<string, unknown> | undefined;
|
|
18534
18562
|
} | undefined;
|
|
18535
18563
|
filter?: {
|
|
18536
18564
|
field: string;
|
|
@@ -18778,7 +18806,7 @@ declare const SysEmail: Omit<{
|
|
|
18778
18806
|
field?: string | undefined;
|
|
18779
18807
|
objectOverride?: string | undefined;
|
|
18780
18808
|
label?: string | undefined;
|
|
18781
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
18809
|
+
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;
|
|
18782
18810
|
options?: {
|
|
18783
18811
|
label: string;
|
|
18784
18812
|
value: string;
|
|
@@ -22195,7 +22223,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22195
22223
|
abstract: boolean;
|
|
22196
22224
|
datasource: string;
|
|
22197
22225
|
fields: Record<string, {
|
|
22198
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
22226
|
+
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";
|
|
22199
22227
|
required: boolean;
|
|
22200
22228
|
searchable: boolean;
|
|
22201
22229
|
multiple: boolean;
|
|
@@ -22558,6 +22586,10 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22558
22586
|
} | {
|
|
22559
22587
|
provider: "value";
|
|
22560
22588
|
items: unknown[];
|
|
22589
|
+
} | {
|
|
22590
|
+
provider: "schema";
|
|
22591
|
+
schemaId: string;
|
|
22592
|
+
schema?: Record<string, unknown> | undefined;
|
|
22561
22593
|
} | undefined;
|
|
22562
22594
|
filter?: {
|
|
22563
22595
|
field: string;
|
|
@@ -22805,7 +22837,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
22805
22837
|
field?: string | undefined;
|
|
22806
22838
|
objectOverride?: string | undefined;
|
|
22807
22839
|
label?: string | undefined;
|
|
22808
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
22840
|
+
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;
|
|
22809
22841
|
options?: {
|
|
22810
22842
|
label: string;
|
|
22811
22843
|
value: string;
|
|
@@ -25886,7 +25918,7 @@ declare const SysSavedReport: Omit<{
|
|
|
25886
25918
|
abstract: boolean;
|
|
25887
25919
|
datasource: string;
|
|
25888
25920
|
fields: Record<string, {
|
|
25889
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
25921
|
+
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";
|
|
25890
25922
|
required: boolean;
|
|
25891
25923
|
searchable: boolean;
|
|
25892
25924
|
multiple: boolean;
|
|
@@ -26249,6 +26281,10 @@ declare const SysSavedReport: Omit<{
|
|
|
26249
26281
|
} | {
|
|
26250
26282
|
provider: "value";
|
|
26251
26283
|
items: unknown[];
|
|
26284
|
+
} | {
|
|
26285
|
+
provider: "schema";
|
|
26286
|
+
schemaId: string;
|
|
26287
|
+
schema?: Record<string, unknown> | undefined;
|
|
26252
26288
|
} | undefined;
|
|
26253
26289
|
filter?: {
|
|
26254
26290
|
field: string;
|
|
@@ -26496,7 +26532,7 @@ declare const SysSavedReport: Omit<{
|
|
|
26496
26532
|
field?: string | undefined;
|
|
26497
26533
|
objectOverride?: string | undefined;
|
|
26498
26534
|
label?: string | undefined;
|
|
26499
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
26535
|
+
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;
|
|
26500
26536
|
options?: {
|
|
26501
26537
|
label: string;
|
|
26502
26538
|
value: string;
|
|
@@ -28525,7 +28561,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
28525
28561
|
abstract: boolean;
|
|
28526
28562
|
datasource: string;
|
|
28527
28563
|
fields: Record<string, {
|
|
28528
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
28564
|
+
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";
|
|
28529
28565
|
required: boolean;
|
|
28530
28566
|
searchable: boolean;
|
|
28531
28567
|
multiple: boolean;
|
|
@@ -28888,6 +28924,10 @@ declare const SysReportSchedule: Omit<{
|
|
|
28888
28924
|
} | {
|
|
28889
28925
|
provider: "value";
|
|
28890
28926
|
items: unknown[];
|
|
28927
|
+
} | {
|
|
28928
|
+
provider: "schema";
|
|
28929
|
+
schemaId: string;
|
|
28930
|
+
schema?: Record<string, unknown> | undefined;
|
|
28891
28931
|
} | undefined;
|
|
28892
28932
|
filter?: {
|
|
28893
28933
|
field: string;
|
|
@@ -29135,7 +29175,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
29135
29175
|
field?: string | undefined;
|
|
29136
29176
|
objectOverride?: string | undefined;
|
|
29137
29177
|
label?: string | undefined;
|
|
29138
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
29178
|
+
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;
|
|
29139
29179
|
options?: {
|
|
29140
29180
|
label: string;
|
|
29141
29181
|
value: string;
|
|
@@ -32203,7 +32243,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32203
32243
|
abstract: boolean;
|
|
32204
32244
|
datasource: string;
|
|
32205
32245
|
fields: Record<string, {
|
|
32206
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
32246
|
+
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";
|
|
32207
32247
|
required: boolean;
|
|
32208
32248
|
searchable: boolean;
|
|
32209
32249
|
multiple: boolean;
|
|
@@ -32566,6 +32606,10 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32566
32606
|
} | {
|
|
32567
32607
|
provider: "value";
|
|
32568
32608
|
items: unknown[];
|
|
32609
|
+
} | {
|
|
32610
|
+
provider: "schema";
|
|
32611
|
+
schemaId: string;
|
|
32612
|
+
schema?: Record<string, unknown> | undefined;
|
|
32569
32613
|
} | undefined;
|
|
32570
32614
|
filter?: {
|
|
32571
32615
|
field: string;
|
|
@@ -32813,7 +32857,7 @@ declare const SysApprovalProcess: Omit<{
|
|
|
32813
32857
|
field?: string | undefined;
|
|
32814
32858
|
objectOverride?: string | undefined;
|
|
32815
32859
|
label?: string | undefined;
|
|
32816
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
32860
|
+
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;
|
|
32817
32861
|
options?: {
|
|
32818
32862
|
label: string;
|
|
32819
32863
|
value: string;
|
|
@@ -34582,7 +34626,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
34582
34626
|
abstract: boolean;
|
|
34583
34627
|
datasource: string;
|
|
34584
34628
|
fields: Record<string, {
|
|
34585
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
34629
|
+
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";
|
|
34586
34630
|
required: boolean;
|
|
34587
34631
|
searchable: boolean;
|
|
34588
34632
|
multiple: boolean;
|
|
@@ -34945,6 +34989,10 @@ declare const SysApprovalRequest: Omit<{
|
|
|
34945
34989
|
} | {
|
|
34946
34990
|
provider: "value";
|
|
34947
34991
|
items: unknown[];
|
|
34992
|
+
} | {
|
|
34993
|
+
provider: "schema";
|
|
34994
|
+
schemaId: string;
|
|
34995
|
+
schema?: Record<string, unknown> | undefined;
|
|
34948
34996
|
} | undefined;
|
|
34949
34997
|
filter?: {
|
|
34950
34998
|
field: string;
|
|
@@ -35192,7 +35240,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
35192
35240
|
field?: string | undefined;
|
|
35193
35241
|
objectOverride?: string | undefined;
|
|
35194
35242
|
label?: string | undefined;
|
|
35195
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
35243
|
+
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;
|
|
35196
35244
|
options?: {
|
|
35197
35245
|
label: string;
|
|
35198
35246
|
value: string;
|
|
@@ -38176,7 +38224,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
38176
38224
|
abstract: boolean;
|
|
38177
38225
|
datasource: string;
|
|
38178
38226
|
fields: Record<string, {
|
|
38179
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
38227
|
+
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";
|
|
38180
38228
|
required: boolean;
|
|
38181
38229
|
searchable: boolean;
|
|
38182
38230
|
multiple: boolean;
|
|
@@ -38539,6 +38587,10 @@ declare const SysApprovalAction: Omit<{
|
|
|
38539
38587
|
} | {
|
|
38540
38588
|
provider: "value";
|
|
38541
38589
|
items: unknown[];
|
|
38590
|
+
} | {
|
|
38591
|
+
provider: "schema";
|
|
38592
|
+
schemaId: string;
|
|
38593
|
+
schema?: Record<string, unknown> | undefined;
|
|
38542
38594
|
} | undefined;
|
|
38543
38595
|
filter?: {
|
|
38544
38596
|
field: string;
|
|
@@ -38786,7 +38838,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
38786
38838
|
field?: string | undefined;
|
|
38787
38839
|
objectOverride?: string | undefined;
|
|
38788
38840
|
label?: string | undefined;
|
|
38789
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
38841
|
+
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;
|
|
38790
38842
|
options?: {
|
|
38791
38843
|
label: string;
|
|
38792
38844
|
value: string;
|
|
@@ -40517,7 +40569,7 @@ declare const SysJob: Omit<{
|
|
|
40517
40569
|
abstract: boolean;
|
|
40518
40570
|
datasource: string;
|
|
40519
40571
|
fields: Record<string, {
|
|
40520
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
40572
|
+
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";
|
|
40521
40573
|
required: boolean;
|
|
40522
40574
|
searchable: boolean;
|
|
40523
40575
|
multiple: boolean;
|
|
@@ -40880,6 +40932,10 @@ declare const SysJob: Omit<{
|
|
|
40880
40932
|
} | {
|
|
40881
40933
|
provider: "value";
|
|
40882
40934
|
items: unknown[];
|
|
40935
|
+
} | {
|
|
40936
|
+
provider: "schema";
|
|
40937
|
+
schemaId: string;
|
|
40938
|
+
schema?: Record<string, unknown> | undefined;
|
|
40883
40939
|
} | undefined;
|
|
40884
40940
|
filter?: {
|
|
40885
40941
|
field: string;
|
|
@@ -41127,7 +41183,7 @@ declare const SysJob: Omit<{
|
|
|
41127
41183
|
field?: string | undefined;
|
|
41128
41184
|
objectOverride?: string | undefined;
|
|
41129
41185
|
label?: string | undefined;
|
|
41130
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
41186
|
+
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;
|
|
41131
41187
|
options?: {
|
|
41132
41188
|
label: string;
|
|
41133
41189
|
value: string;
|
|
@@ -43492,7 +43548,7 @@ declare const SysJobRun: Omit<{
|
|
|
43492
43548
|
abstract: boolean;
|
|
43493
43549
|
datasource: string;
|
|
43494
43550
|
fields: Record<string, {
|
|
43495
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
43551
|
+
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";
|
|
43496
43552
|
required: boolean;
|
|
43497
43553
|
searchable: boolean;
|
|
43498
43554
|
multiple: boolean;
|
|
@@ -43855,6 +43911,10 @@ declare const SysJobRun: Omit<{
|
|
|
43855
43911
|
} | {
|
|
43856
43912
|
provider: "value";
|
|
43857
43913
|
items: unknown[];
|
|
43914
|
+
} | {
|
|
43915
|
+
provider: "schema";
|
|
43916
|
+
schemaId: string;
|
|
43917
|
+
schema?: Record<string, unknown> | undefined;
|
|
43858
43918
|
} | undefined;
|
|
43859
43919
|
filter?: {
|
|
43860
43920
|
field: string;
|
|
@@ -44102,7 +44162,7 @@ declare const SysJobRun: Omit<{
|
|
|
44102
44162
|
field?: string | undefined;
|
|
44103
44163
|
objectOverride?: string | undefined;
|
|
44104
44164
|
label?: string | undefined;
|
|
44105
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
44165
|
+
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;
|
|
44106
44166
|
options?: {
|
|
44107
44167
|
label: string;
|
|
44108
44168
|
value: string;
|
|
@@ -45950,7 +46010,7 @@ declare const SysJobQueue: Omit<{
|
|
|
45950
46010
|
abstract: boolean;
|
|
45951
46011
|
datasource: string;
|
|
45952
46012
|
fields: Record<string, {
|
|
45953
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
46013
|
+
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";
|
|
45954
46014
|
required: boolean;
|
|
45955
46015
|
searchable: boolean;
|
|
45956
46016
|
multiple: boolean;
|
|
@@ -46313,6 +46373,10 @@ declare const SysJobQueue: Omit<{
|
|
|
46313
46373
|
} | {
|
|
46314
46374
|
provider: "value";
|
|
46315
46375
|
items: unknown[];
|
|
46376
|
+
} | {
|
|
46377
|
+
provider: "schema";
|
|
46378
|
+
schemaId: string;
|
|
46379
|
+
schema?: Record<string, unknown> | undefined;
|
|
46316
46380
|
} | undefined;
|
|
46317
46381
|
filter?: {
|
|
46318
46382
|
field: string;
|
|
@@ -46560,7 +46624,7 @@ declare const SysJobQueue: Omit<{
|
|
|
46560
46624
|
field?: string | undefined;
|
|
46561
46625
|
objectOverride?: string | undefined;
|
|
46562
46626
|
label?: string | undefined;
|
|
46563
|
-
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" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
46627
|
+
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;
|
|
46564
46628
|
options?: {
|
|
46565
46629
|
label: string;
|
|
46566
46630
|
value: string;
|