@objectstack/plugin-approvals 17.0.0-rc.1 → 17.0.0-rc.3
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/CHANGELOG.md +436 -0
- package/dist/index.d.mts +1773 -1034
- package/dist/index.d.ts +1773 -1034
- package/dist/index.js +476 -86
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +476 -86
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -29,7 +29,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
29
29
|
isSystem: boolean;
|
|
30
30
|
datasource: string;
|
|
31
31
|
fields: Record<string, {
|
|
32
|
-
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
32
|
+
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
33
33
|
required: boolean;
|
|
34
34
|
searchable: boolean;
|
|
35
35
|
multiple: boolean;
|
|
@@ -39,6 +39,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
39
39
|
readonly: boolean;
|
|
40
40
|
sortable: boolean;
|
|
41
41
|
externalId: boolean;
|
|
42
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
43
|
+
_lockReason?: string | undefined;
|
|
44
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
45
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
46
|
+
_packageId?: string | undefined;
|
|
47
|
+
_packageVersion?: string | undefined;
|
|
48
|
+
_lockDocsUrl?: string | undefined;
|
|
42
49
|
name?: string | undefined;
|
|
43
50
|
label?: string | undefined;
|
|
44
51
|
description?: string | undefined;
|
|
@@ -210,7 +217,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
210
217
|
pluralLabel?: string | undefined;
|
|
211
218
|
description?: string | undefined;
|
|
212
219
|
icon?: string | undefined;
|
|
213
|
-
managedBy?: "
|
|
220
|
+
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
214
221
|
ownership?: "none" | "org" | "user" | undefined;
|
|
215
222
|
userActions?: {
|
|
216
223
|
create?: boolean | undefined;
|
|
@@ -305,7 +312,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
305
312
|
} | undefined;
|
|
306
313
|
indexes?: {
|
|
307
314
|
fields: string[];
|
|
308
|
-
type: "hash" | "
|
|
315
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
309
316
|
unique: boolean | "global";
|
|
310
317
|
name?: string | undefined;
|
|
311
318
|
partial?: string | undefined;
|
|
@@ -430,6 +437,33 @@ declare const SysApprovalRequest: Omit<{
|
|
|
430
437
|
defaultExpandedDepth?: number | undefined;
|
|
431
438
|
} | undefined;
|
|
432
439
|
inlineEdit?: boolean | undefined;
|
|
440
|
+
data?: {
|
|
441
|
+
provider: "object";
|
|
442
|
+
object: string;
|
|
443
|
+
} | {
|
|
444
|
+
provider: "api";
|
|
445
|
+
read?: {
|
|
446
|
+
url: string;
|
|
447
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
448
|
+
headers?: Record<string, string> | undefined;
|
|
449
|
+
params?: Record<string, unknown> | undefined;
|
|
450
|
+
body?: unknown;
|
|
451
|
+
} | undefined;
|
|
452
|
+
write?: {
|
|
453
|
+
url: string;
|
|
454
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
455
|
+
headers?: Record<string, string> | undefined;
|
|
456
|
+
params?: Record<string, unknown> | undefined;
|
|
457
|
+
body?: unknown;
|
|
458
|
+
} | undefined;
|
|
459
|
+
} | {
|
|
460
|
+
provider: "value";
|
|
461
|
+
items: unknown[];
|
|
462
|
+
} | {
|
|
463
|
+
provider: "schema";
|
|
464
|
+
schemaId: string;
|
|
465
|
+
schema?: Record<string, unknown> | undefined;
|
|
466
|
+
} | undefined;
|
|
433
467
|
navigation?: {
|
|
434
468
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
435
469
|
preventNavigation: boolean;
|
|
@@ -462,44 +496,27 @@ declare const SysApprovalRequest: Omit<{
|
|
|
462
496
|
}[] | undefined;
|
|
463
497
|
order?: number | undefined;
|
|
464
498
|
}[] | undefined;
|
|
465
|
-
data?: {
|
|
466
|
-
provider: "object";
|
|
467
|
-
object: string;
|
|
468
|
-
} | {
|
|
469
|
-
provider: "api";
|
|
470
|
-
read?: {
|
|
471
|
-
url: string;
|
|
472
|
-
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
473
|
-
headers?: Record<string, string> | undefined;
|
|
474
|
-
params?: Record<string, unknown> | undefined;
|
|
475
|
-
body?: unknown;
|
|
476
|
-
} | undefined;
|
|
477
|
-
write?: {
|
|
478
|
-
url: string;
|
|
479
|
-
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
480
|
-
headers?: Record<string, string> | undefined;
|
|
481
|
-
params?: Record<string, unknown> | undefined;
|
|
482
|
-
body?: unknown;
|
|
483
|
-
} | undefined;
|
|
484
|
-
} | {
|
|
485
|
-
provider: "value";
|
|
486
|
-
items: unknown[];
|
|
487
|
-
} | {
|
|
488
|
-
provider: "schema";
|
|
489
|
-
schemaId: string;
|
|
490
|
-
schema?: Record<string, unknown> | undefined;
|
|
491
|
-
} | undefined;
|
|
492
|
-
pagination?: {
|
|
493
|
-
pageSize: number;
|
|
494
|
-
pageSizeOptions?: number[] | undefined;
|
|
495
|
-
} | undefined;
|
|
496
499
|
emptyState?: {
|
|
497
500
|
title?: string | undefined;
|
|
498
501
|
message?: string | undefined;
|
|
499
502
|
icon?: string | undefined;
|
|
500
503
|
} | undefined;
|
|
504
|
+
userActions?: {
|
|
505
|
+
sort: boolean;
|
|
506
|
+
search: boolean;
|
|
507
|
+
filter: boolean;
|
|
508
|
+
refresh: boolean;
|
|
509
|
+
rowHeight: boolean;
|
|
510
|
+
addRecordForm: boolean;
|
|
511
|
+
editInline: boolean;
|
|
512
|
+
buttons?: string[] | undefined;
|
|
513
|
+
} | undefined;
|
|
501
514
|
responsive?: undefined;
|
|
502
515
|
performance?: undefined;
|
|
516
|
+
appearance?: {
|
|
517
|
+
showDescription: boolean;
|
|
518
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
519
|
+
} | undefined;
|
|
503
520
|
resizable?: boolean | undefined;
|
|
504
521
|
kanban?: {
|
|
505
522
|
groupByField: string;
|
|
@@ -573,6 +590,10 @@ declare const SysApprovalRequest: Omit<{
|
|
|
573
590
|
selection?: {
|
|
574
591
|
type: "none" | "multiple" | "single";
|
|
575
592
|
} | undefined;
|
|
593
|
+
pagination?: {
|
|
594
|
+
pageSize: number;
|
|
595
|
+
pageSizeOptions?: number[] | undefined;
|
|
596
|
+
} | undefined;
|
|
576
597
|
grouping?: {
|
|
577
598
|
fields: {
|
|
578
599
|
field: string;
|
|
@@ -588,7 +609,54 @@ declare const SysApprovalRequest: Omit<{
|
|
|
588
609
|
fieldOrder?: string[] | undefined;
|
|
589
610
|
rowActions?: string[] | undefined;
|
|
590
611
|
bulkActions?: string[] | undefined;
|
|
591
|
-
bulkActionDefs?:
|
|
612
|
+
bulkActionDefs?: {
|
|
613
|
+
name: string;
|
|
614
|
+
operation: "delete" | "update" | "custom";
|
|
615
|
+
label?: string | undefined;
|
|
616
|
+
icon?: string | undefined;
|
|
617
|
+
variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
|
|
618
|
+
execution?: "aggregate" | "perRecord" | undefined;
|
|
619
|
+
patch?: Record<string, unknown> | undefined;
|
|
620
|
+
params?: {
|
|
621
|
+
[x: string]: unknown;
|
|
622
|
+
name: string;
|
|
623
|
+
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
624
|
+
label?: string | undefined;
|
|
625
|
+
help?: string | undefined;
|
|
626
|
+
required?: boolean | undefined;
|
|
627
|
+
default?: unknown;
|
|
628
|
+
options?: {
|
|
629
|
+
[x: string]: unknown;
|
|
630
|
+
label: string;
|
|
631
|
+
value: string | number | boolean;
|
|
632
|
+
}[] | undefined;
|
|
633
|
+
object?: string | undefined;
|
|
634
|
+
labelField?: string | undefined;
|
|
635
|
+
multiple?: boolean | undefined;
|
|
636
|
+
placeholder?: string | undefined;
|
|
637
|
+
}[] | undefined;
|
|
638
|
+
confirmText?: string | undefined;
|
|
639
|
+
confirmLabel?: string | undefined;
|
|
640
|
+
visible?: {
|
|
641
|
+
dialect: "cel" | "cron" | "template";
|
|
642
|
+
source?: string | undefined;
|
|
643
|
+
ast?: unknown;
|
|
644
|
+
meta?: {
|
|
645
|
+
rationale?: string | undefined;
|
|
646
|
+
generatedBy?: string | undefined;
|
|
647
|
+
} | undefined;
|
|
648
|
+
} | {
|
|
649
|
+
dialect: "cel" | "cron" | "template";
|
|
650
|
+
source?: string | undefined;
|
|
651
|
+
ast?: unknown;
|
|
652
|
+
meta?: {
|
|
653
|
+
rationale?: string | undefined;
|
|
654
|
+
generatedBy?: string | undefined;
|
|
655
|
+
} | undefined;
|
|
656
|
+
} | undefined;
|
|
657
|
+
maxRecords?: number | undefined;
|
|
658
|
+
batchSize?: number | undefined;
|
|
659
|
+
}[] | undefined;
|
|
592
660
|
virtualScroll?: boolean | undefined;
|
|
593
661
|
conditionalFormatting?: {
|
|
594
662
|
condition: {
|
|
@@ -611,20 +679,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
611
679
|
style: Record<string, string>;
|
|
612
680
|
}[] | undefined;
|
|
613
681
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
614
|
-
userActions?: {
|
|
615
|
-
sort: boolean;
|
|
616
|
-
search: boolean;
|
|
617
|
-
filter: boolean;
|
|
618
|
-
refresh: boolean;
|
|
619
|
-
rowHeight: boolean;
|
|
620
|
-
addRecordForm: boolean;
|
|
621
|
-
editInline: boolean;
|
|
622
|
-
buttons?: string[] | undefined;
|
|
623
|
-
} | undefined;
|
|
624
|
-
appearance?: {
|
|
625
|
-
showDescription: boolean;
|
|
626
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
627
|
-
} | undefined;
|
|
628
682
|
addRecord?: {
|
|
629
683
|
enabled: boolean;
|
|
630
684
|
position: "top" | "bottom" | "both";
|
|
@@ -675,6 +729,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
675
729
|
label: string;
|
|
676
730
|
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
677
731
|
refreshAfter: boolean;
|
|
732
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
733
|
+
_lockReason?: string | undefined;
|
|
734
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
735
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
736
|
+
_packageId?: string | undefined;
|
|
737
|
+
_packageVersion?: string | undefined;
|
|
738
|
+
_lockDocsUrl?: string | undefined;
|
|
678
739
|
objectName?: string | undefined;
|
|
679
740
|
icon?: string | undefined;
|
|
680
741
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
@@ -687,7 +748,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
687
748
|
} | {
|
|
688
749
|
language: "js";
|
|
689
750
|
source: string;
|
|
690
|
-
capabilities: ("
|
|
751
|
+
capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
|
|
691
752
|
timeoutMs?: number | undefined;
|
|
692
753
|
memoryMb?: number | undefined;
|
|
693
754
|
} | undefined;
|
|
@@ -698,7 +759,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
698
759
|
field?: string | undefined;
|
|
699
760
|
objectOverride?: string | undefined;
|
|
700
761
|
label?: string | undefined;
|
|
701
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
762
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "user" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
702
763
|
options?: {
|
|
703
764
|
label: string;
|
|
704
765
|
value: string;
|
|
@@ -930,8 +991,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
930
991
|
notNull?: boolean | undefined;
|
|
931
992
|
} | undefined;
|
|
932
993
|
readonly maxSize?: number | undefined;
|
|
933
|
-
readonly
|
|
934
|
-
readonly
|
|
994
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
995
|
+
readonly _lockReason?: string | undefined;
|
|
996
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
997
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
998
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
999
|
+
readonly _packageId?: string | undefined;
|
|
1000
|
+
readonly _packageVersion?: string | undefined;
|
|
1001
|
+
readonly lookupFilters?: {
|
|
1002
|
+
field: string;
|
|
1003
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1004
|
+
value: any;
|
|
1005
|
+
}[] | undefined;
|
|
1006
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1007
|
+
readonly expression?: {
|
|
1008
|
+
dialect: "cel" | "cron" | "template";
|
|
1009
|
+
source?: string | undefined;
|
|
1010
|
+
ast?: unknown;
|
|
1011
|
+
meta?: {
|
|
1012
|
+
rationale?: string | undefined;
|
|
1013
|
+
generatedBy?: string | undefined;
|
|
1014
|
+
} | undefined;
|
|
1015
|
+
} | undefined;
|
|
1016
|
+
readonly autonumberFormat?: string | undefined;
|
|
1017
|
+
readonly summaryOperations?: {
|
|
1018
|
+
object: string;
|
|
1019
|
+
field: string;
|
|
1020
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1021
|
+
relationshipField?: string | undefined;
|
|
1022
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1023
|
+
} | undefined;
|
|
935
1024
|
readonly visibleWhen?: {
|
|
936
1025
|
dialect: "cel" | "cron" | "template";
|
|
937
1026
|
source?: string | undefined;
|
|
@@ -941,16 +1030,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
941
1030
|
generatedBy?: string | undefined;
|
|
942
1031
|
} | undefined;
|
|
943
1032
|
} | undefined;
|
|
1033
|
+
readonly scale?: number | undefined;
|
|
944
1034
|
readonly searchable?: boolean | undefined;
|
|
945
1035
|
readonly unique?: boolean | "global" | undefined;
|
|
1036
|
+
readonly defaultValue?: unknown;
|
|
946
1037
|
readonly maxLength?: number | undefined;
|
|
947
1038
|
readonly minLength?: number | undefined;
|
|
948
|
-
readonly scale?: number | undefined;
|
|
949
1039
|
readonly min?: number | undefined;
|
|
950
1040
|
readonly max?: number | undefined;
|
|
951
1041
|
readonly accept?: string[] | undefined;
|
|
952
1042
|
readonly reference?: string | undefined;
|
|
953
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
954
1043
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
955
1044
|
readonly inlineTitle?: string | undefined;
|
|
956
1045
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -967,32 +1056,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
967
1056
|
type?: string | undefined;
|
|
968
1057
|
})[] | undefined;
|
|
969
1058
|
readonly lookupPageSize?: number | undefined;
|
|
970
|
-
readonly lookupFilters?: {
|
|
971
|
-
field: string;
|
|
972
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
973
|
-
value: any;
|
|
974
|
-
}[] | undefined;
|
|
975
1059
|
readonly dependsOn?: (string | {
|
|
976
1060
|
field: string;
|
|
977
1061
|
param?: string | undefined;
|
|
978
1062
|
})[] | undefined;
|
|
979
1063
|
readonly allowCreate?: boolean | undefined;
|
|
980
|
-
readonly expression?: {
|
|
981
|
-
dialect: "cel" | "cron" | "template";
|
|
982
|
-
source?: string | undefined;
|
|
983
|
-
ast?: unknown;
|
|
984
|
-
meta?: {
|
|
985
|
-
rationale?: string | undefined;
|
|
986
|
-
generatedBy?: string | undefined;
|
|
987
|
-
} | undefined;
|
|
988
|
-
} | undefined;
|
|
989
|
-
readonly summaryOperations?: {
|
|
990
|
-
object: string;
|
|
991
|
-
field: string;
|
|
992
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
993
|
-
relationshipField?: string | undefined;
|
|
994
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
995
|
-
} | undefined;
|
|
996
1064
|
readonly language?: string | undefined;
|
|
997
1065
|
readonly step?: number | undefined;
|
|
998
1066
|
readonly currencyConfig?: {
|
|
@@ -1028,7 +1096,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1028
1096
|
readonly system?: boolean | undefined;
|
|
1029
1097
|
readonly sortable?: boolean | undefined;
|
|
1030
1098
|
readonly inlineHelpText?: string | undefined;
|
|
1031
|
-
readonly
|
|
1099
|
+
readonly externalId?: boolean | undefined;
|
|
1032
1100
|
readonly type: "text";
|
|
1033
1101
|
};
|
|
1034
1102
|
readonly organization_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -1070,8 +1138,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1070
1138
|
notNull?: boolean | undefined;
|
|
1071
1139
|
} | undefined;
|
|
1072
1140
|
readonly maxSize?: number | undefined;
|
|
1073
|
-
readonly
|
|
1074
|
-
readonly
|
|
1141
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1142
|
+
readonly _lockReason?: string | undefined;
|
|
1143
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1144
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1145
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1146
|
+
readonly _packageId?: string | undefined;
|
|
1147
|
+
readonly _packageVersion?: string | undefined;
|
|
1148
|
+
readonly lookupFilters?: {
|
|
1149
|
+
field: string;
|
|
1150
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1151
|
+
value: any;
|
|
1152
|
+
}[] | undefined;
|
|
1153
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1154
|
+
readonly expression?: {
|
|
1155
|
+
dialect: "cel" | "cron" | "template";
|
|
1156
|
+
source?: string | undefined;
|
|
1157
|
+
ast?: unknown;
|
|
1158
|
+
meta?: {
|
|
1159
|
+
rationale?: string | undefined;
|
|
1160
|
+
generatedBy?: string | undefined;
|
|
1161
|
+
} | undefined;
|
|
1162
|
+
} | undefined;
|
|
1163
|
+
readonly autonumberFormat?: string | undefined;
|
|
1164
|
+
readonly summaryOperations?: {
|
|
1165
|
+
object: string;
|
|
1166
|
+
field: string;
|
|
1167
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1168
|
+
relationshipField?: string | undefined;
|
|
1169
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1170
|
+
} | undefined;
|
|
1075
1171
|
readonly visibleWhen?: {
|
|
1076
1172
|
dialect: "cel" | "cron" | "template";
|
|
1077
1173
|
source?: string | undefined;
|
|
@@ -1081,16 +1177,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1081
1177
|
generatedBy?: string | undefined;
|
|
1082
1178
|
} | undefined;
|
|
1083
1179
|
} | undefined;
|
|
1180
|
+
readonly scale?: number | undefined;
|
|
1084
1181
|
readonly searchable?: boolean | undefined;
|
|
1085
1182
|
readonly unique?: boolean | "global" | undefined;
|
|
1183
|
+
readonly defaultValue?: unknown;
|
|
1086
1184
|
readonly maxLength?: number | undefined;
|
|
1087
1185
|
readonly minLength?: number | undefined;
|
|
1088
|
-
readonly scale?: number | undefined;
|
|
1089
1186
|
readonly min?: number | undefined;
|
|
1090
1187
|
readonly max?: number | undefined;
|
|
1091
1188
|
readonly accept?: string[] | undefined;
|
|
1092
1189
|
readonly reference?: string | undefined;
|
|
1093
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1094
1190
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1095
1191
|
readonly inlineTitle?: string | undefined;
|
|
1096
1192
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1107,32 +1203,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1107
1203
|
type?: string | undefined;
|
|
1108
1204
|
})[] | undefined;
|
|
1109
1205
|
readonly lookupPageSize?: number | undefined;
|
|
1110
|
-
readonly lookupFilters?: {
|
|
1111
|
-
field: string;
|
|
1112
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1113
|
-
value: any;
|
|
1114
|
-
}[] | undefined;
|
|
1115
1206
|
readonly dependsOn?: (string | {
|
|
1116
1207
|
field: string;
|
|
1117
1208
|
param?: string | undefined;
|
|
1118
1209
|
})[] | undefined;
|
|
1119
1210
|
readonly allowCreate?: boolean | undefined;
|
|
1120
|
-
readonly expression?: {
|
|
1121
|
-
dialect: "cel" | "cron" | "template";
|
|
1122
|
-
source?: string | undefined;
|
|
1123
|
-
ast?: unknown;
|
|
1124
|
-
meta?: {
|
|
1125
|
-
rationale?: string | undefined;
|
|
1126
|
-
generatedBy?: string | undefined;
|
|
1127
|
-
} | undefined;
|
|
1128
|
-
} | undefined;
|
|
1129
|
-
readonly summaryOperations?: {
|
|
1130
|
-
object: string;
|
|
1131
|
-
field: string;
|
|
1132
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1133
|
-
relationshipField?: string | undefined;
|
|
1134
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1135
|
-
} | undefined;
|
|
1136
1211
|
readonly language?: string | undefined;
|
|
1137
1212
|
readonly step?: number | undefined;
|
|
1138
1213
|
readonly currencyConfig?: {
|
|
@@ -1168,7 +1243,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1168
1243
|
readonly system?: boolean | undefined;
|
|
1169
1244
|
readonly sortable?: boolean | undefined;
|
|
1170
1245
|
readonly inlineHelpText?: string | undefined;
|
|
1171
|
-
readonly
|
|
1246
|
+
readonly externalId?: boolean | undefined;
|
|
1172
1247
|
readonly type: "text";
|
|
1173
1248
|
};
|
|
1174
1249
|
readonly object_name: {
|
|
@@ -1201,8 +1276,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1201
1276
|
notNull?: boolean | undefined;
|
|
1202
1277
|
} | undefined;
|
|
1203
1278
|
readonly maxSize?: number | undefined;
|
|
1204
|
-
readonly
|
|
1205
|
-
readonly
|
|
1279
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1280
|
+
readonly _lockReason?: string | undefined;
|
|
1281
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1282
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1283
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1284
|
+
readonly _packageId?: string | undefined;
|
|
1285
|
+
readonly _packageVersion?: string | undefined;
|
|
1286
|
+
readonly lookupFilters?: {
|
|
1287
|
+
field: string;
|
|
1288
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1289
|
+
value: any;
|
|
1290
|
+
}[] | undefined;
|
|
1291
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1292
|
+
readonly expression?: {
|
|
1293
|
+
dialect: "cel" | "cron" | "template";
|
|
1294
|
+
source?: string | undefined;
|
|
1295
|
+
ast?: unknown;
|
|
1296
|
+
meta?: {
|
|
1297
|
+
rationale?: string | undefined;
|
|
1298
|
+
generatedBy?: string | undefined;
|
|
1299
|
+
} | undefined;
|
|
1300
|
+
} | undefined;
|
|
1301
|
+
readonly autonumberFormat?: string | undefined;
|
|
1302
|
+
readonly summaryOperations?: {
|
|
1303
|
+
object: string;
|
|
1304
|
+
field: string;
|
|
1305
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1306
|
+
relationshipField?: string | undefined;
|
|
1307
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1308
|
+
} | undefined;
|
|
1206
1309
|
readonly visibleWhen?: {
|
|
1207
1310
|
dialect: "cel" | "cron" | "template";
|
|
1208
1311
|
source?: string | undefined;
|
|
@@ -1212,16 +1315,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1212
1315
|
generatedBy?: string | undefined;
|
|
1213
1316
|
} | undefined;
|
|
1214
1317
|
} | undefined;
|
|
1318
|
+
readonly scale?: number | undefined;
|
|
1215
1319
|
readonly searchable?: boolean | undefined;
|
|
1216
1320
|
readonly unique?: boolean | "global" | undefined;
|
|
1321
|
+
readonly defaultValue?: unknown;
|
|
1217
1322
|
readonly maxLength?: number | undefined;
|
|
1218
1323
|
readonly minLength?: number | undefined;
|
|
1219
|
-
readonly scale?: number | undefined;
|
|
1220
1324
|
readonly min?: number | undefined;
|
|
1221
1325
|
readonly max?: number | undefined;
|
|
1222
1326
|
readonly accept?: string[] | undefined;
|
|
1223
1327
|
readonly reference?: string | undefined;
|
|
1224
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1225
1328
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1226
1329
|
readonly inlineTitle?: string | undefined;
|
|
1227
1330
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1238,32 +1341,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1238
1341
|
type?: string | undefined;
|
|
1239
1342
|
})[] | undefined;
|
|
1240
1343
|
readonly lookupPageSize?: number | undefined;
|
|
1241
|
-
readonly lookupFilters?: {
|
|
1242
|
-
field: string;
|
|
1243
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1244
|
-
value: any;
|
|
1245
|
-
}[] | undefined;
|
|
1246
1344
|
readonly dependsOn?: (string | {
|
|
1247
1345
|
field: string;
|
|
1248
1346
|
param?: string | undefined;
|
|
1249
1347
|
})[] | undefined;
|
|
1250
1348
|
readonly allowCreate?: boolean | undefined;
|
|
1251
|
-
readonly expression?: {
|
|
1252
|
-
dialect: "cel" | "cron" | "template";
|
|
1253
|
-
source?: string | undefined;
|
|
1254
|
-
ast?: unknown;
|
|
1255
|
-
meta?: {
|
|
1256
|
-
rationale?: string | undefined;
|
|
1257
|
-
generatedBy?: string | undefined;
|
|
1258
|
-
} | undefined;
|
|
1259
|
-
} | undefined;
|
|
1260
|
-
readonly summaryOperations?: {
|
|
1261
|
-
object: string;
|
|
1262
|
-
field: string;
|
|
1263
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1264
|
-
relationshipField?: string | undefined;
|
|
1265
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1266
|
-
} | undefined;
|
|
1267
1349
|
readonly language?: string | undefined;
|
|
1268
1350
|
readonly step?: number | undefined;
|
|
1269
1351
|
readonly currencyConfig?: {
|
|
@@ -1299,7 +1381,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1299
1381
|
readonly system?: boolean | undefined;
|
|
1300
1382
|
readonly sortable?: boolean | undefined;
|
|
1301
1383
|
readonly inlineHelpText?: string | undefined;
|
|
1302
|
-
readonly
|
|
1384
|
+
readonly externalId?: boolean | undefined;
|
|
1303
1385
|
readonly type: "text";
|
|
1304
1386
|
};
|
|
1305
1387
|
readonly record_id: {
|
|
@@ -1332,8 +1414,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1332
1414
|
notNull?: boolean | undefined;
|
|
1333
1415
|
} | undefined;
|
|
1334
1416
|
readonly maxSize?: number | undefined;
|
|
1335
|
-
readonly
|
|
1336
|
-
readonly
|
|
1417
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1418
|
+
readonly _lockReason?: string | undefined;
|
|
1419
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1420
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1421
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1422
|
+
readonly _packageId?: string | undefined;
|
|
1423
|
+
readonly _packageVersion?: string | undefined;
|
|
1424
|
+
readonly lookupFilters?: {
|
|
1425
|
+
field: string;
|
|
1426
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1427
|
+
value: any;
|
|
1428
|
+
}[] | undefined;
|
|
1429
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1430
|
+
readonly expression?: {
|
|
1431
|
+
dialect: "cel" | "cron" | "template";
|
|
1432
|
+
source?: string | undefined;
|
|
1433
|
+
ast?: unknown;
|
|
1434
|
+
meta?: {
|
|
1435
|
+
rationale?: string | undefined;
|
|
1436
|
+
generatedBy?: string | undefined;
|
|
1437
|
+
} | undefined;
|
|
1438
|
+
} | undefined;
|
|
1439
|
+
readonly autonumberFormat?: string | undefined;
|
|
1440
|
+
readonly summaryOperations?: {
|
|
1441
|
+
object: string;
|
|
1442
|
+
field: string;
|
|
1443
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1444
|
+
relationshipField?: string | undefined;
|
|
1445
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1446
|
+
} | undefined;
|
|
1337
1447
|
readonly visibleWhen?: {
|
|
1338
1448
|
dialect: "cel" | "cron" | "template";
|
|
1339
1449
|
source?: string | undefined;
|
|
@@ -1343,16 +1453,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1343
1453
|
generatedBy?: string | undefined;
|
|
1344
1454
|
} | undefined;
|
|
1345
1455
|
} | undefined;
|
|
1456
|
+
readonly scale?: number | undefined;
|
|
1346
1457
|
readonly searchable?: boolean | undefined;
|
|
1347
1458
|
readonly unique?: boolean | "global" | undefined;
|
|
1459
|
+
readonly defaultValue?: unknown;
|
|
1348
1460
|
readonly maxLength?: number | undefined;
|
|
1349
1461
|
readonly minLength?: number | undefined;
|
|
1350
|
-
readonly scale?: number | undefined;
|
|
1351
1462
|
readonly min?: number | undefined;
|
|
1352
1463
|
readonly max?: number | undefined;
|
|
1353
1464
|
readonly accept?: string[] | undefined;
|
|
1354
1465
|
readonly reference?: string | undefined;
|
|
1355
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1356
1466
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1357
1467
|
readonly inlineTitle?: string | undefined;
|
|
1358
1468
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1369,32 +1479,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1369
1479
|
type?: string | undefined;
|
|
1370
1480
|
})[] | undefined;
|
|
1371
1481
|
readonly lookupPageSize?: number | undefined;
|
|
1372
|
-
readonly lookupFilters?: {
|
|
1373
|
-
field: string;
|
|
1374
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1375
|
-
value: any;
|
|
1376
|
-
}[] | undefined;
|
|
1377
1482
|
readonly dependsOn?: (string | {
|
|
1378
1483
|
field: string;
|
|
1379
1484
|
param?: string | undefined;
|
|
1380
1485
|
})[] | undefined;
|
|
1381
1486
|
readonly allowCreate?: boolean | undefined;
|
|
1382
|
-
readonly expression?: {
|
|
1383
|
-
dialect: "cel" | "cron" | "template";
|
|
1384
|
-
source?: string | undefined;
|
|
1385
|
-
ast?: unknown;
|
|
1386
|
-
meta?: {
|
|
1387
|
-
rationale?: string | undefined;
|
|
1388
|
-
generatedBy?: string | undefined;
|
|
1389
|
-
} | undefined;
|
|
1390
|
-
} | undefined;
|
|
1391
|
-
readonly summaryOperations?: {
|
|
1392
|
-
object: string;
|
|
1393
|
-
field: string;
|
|
1394
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1395
|
-
relationshipField?: string | undefined;
|
|
1396
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1397
|
-
} | undefined;
|
|
1398
1487
|
readonly language?: string | undefined;
|
|
1399
1488
|
readonly step?: number | undefined;
|
|
1400
1489
|
readonly currencyConfig?: {
|
|
@@ -1430,7 +1519,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1430
1519
|
readonly system?: boolean | undefined;
|
|
1431
1520
|
readonly sortable?: boolean | undefined;
|
|
1432
1521
|
readonly inlineHelpText?: string | undefined;
|
|
1433
|
-
readonly
|
|
1522
|
+
readonly externalId?: boolean | undefined;
|
|
1434
1523
|
readonly type: "text";
|
|
1435
1524
|
};
|
|
1436
1525
|
readonly submitter_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -1471,8 +1560,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1471
1560
|
notNull?: boolean | undefined;
|
|
1472
1561
|
} | undefined;
|
|
1473
1562
|
readonly maxSize?: number | undefined;
|
|
1474
|
-
readonly
|
|
1475
|
-
readonly
|
|
1563
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1564
|
+
readonly _lockReason?: string | undefined;
|
|
1565
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1566
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1567
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1568
|
+
readonly _packageId?: string | undefined;
|
|
1569
|
+
readonly _packageVersion?: string | undefined;
|
|
1570
|
+
readonly lookupFilters?: {
|
|
1571
|
+
field: string;
|
|
1572
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1573
|
+
value: any;
|
|
1574
|
+
}[] | undefined;
|
|
1575
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1576
|
+
readonly expression?: {
|
|
1577
|
+
dialect: "cel" | "cron" | "template";
|
|
1578
|
+
source?: string | undefined;
|
|
1579
|
+
ast?: unknown;
|
|
1580
|
+
meta?: {
|
|
1581
|
+
rationale?: string | undefined;
|
|
1582
|
+
generatedBy?: string | undefined;
|
|
1583
|
+
} | undefined;
|
|
1584
|
+
} | undefined;
|
|
1585
|
+
readonly autonumberFormat?: string | undefined;
|
|
1586
|
+
readonly summaryOperations?: {
|
|
1587
|
+
object: string;
|
|
1588
|
+
field: string;
|
|
1589
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1590
|
+
relationshipField?: string | undefined;
|
|
1591
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1592
|
+
} | undefined;
|
|
1476
1593
|
readonly visibleWhen?: {
|
|
1477
1594
|
dialect: "cel" | "cron" | "template";
|
|
1478
1595
|
source?: string | undefined;
|
|
@@ -1482,16 +1599,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1482
1599
|
generatedBy?: string | undefined;
|
|
1483
1600
|
} | undefined;
|
|
1484
1601
|
} | undefined;
|
|
1602
|
+
readonly scale?: number | undefined;
|
|
1485
1603
|
readonly searchable?: boolean | undefined;
|
|
1486
1604
|
readonly unique?: boolean | "global" | undefined;
|
|
1605
|
+
readonly defaultValue?: unknown;
|
|
1487
1606
|
readonly maxLength?: number | undefined;
|
|
1488
1607
|
readonly minLength?: number | undefined;
|
|
1489
|
-
readonly scale?: number | undefined;
|
|
1490
1608
|
readonly min?: number | undefined;
|
|
1491
1609
|
readonly max?: number | undefined;
|
|
1492
1610
|
readonly accept?: string[] | undefined;
|
|
1493
1611
|
readonly reference?: string | undefined;
|
|
1494
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1495
1612
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1496
1613
|
readonly inlineTitle?: string | undefined;
|
|
1497
1614
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1508,32 +1625,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1508
1625
|
type?: string | undefined;
|
|
1509
1626
|
})[] | undefined;
|
|
1510
1627
|
readonly lookupPageSize?: number | undefined;
|
|
1511
|
-
readonly lookupFilters?: {
|
|
1512
|
-
field: string;
|
|
1513
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1514
|
-
value: any;
|
|
1515
|
-
}[] | undefined;
|
|
1516
1628
|
readonly dependsOn?: (string | {
|
|
1517
1629
|
field: string;
|
|
1518
1630
|
param?: string | undefined;
|
|
1519
1631
|
})[] | undefined;
|
|
1520
1632
|
readonly allowCreate?: boolean | undefined;
|
|
1521
|
-
readonly expression?: {
|
|
1522
|
-
dialect: "cel" | "cron" | "template";
|
|
1523
|
-
source?: string | undefined;
|
|
1524
|
-
ast?: unknown;
|
|
1525
|
-
meta?: {
|
|
1526
|
-
rationale?: string | undefined;
|
|
1527
|
-
generatedBy?: string | undefined;
|
|
1528
|
-
} | undefined;
|
|
1529
|
-
} | undefined;
|
|
1530
|
-
readonly summaryOperations?: {
|
|
1531
|
-
object: string;
|
|
1532
|
-
field: string;
|
|
1533
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1534
|
-
relationshipField?: string | undefined;
|
|
1535
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1536
|
-
} | undefined;
|
|
1537
1633
|
readonly language?: string | undefined;
|
|
1538
1634
|
readonly step?: number | undefined;
|
|
1539
1635
|
readonly currencyConfig?: {
|
|
@@ -1569,7 +1665,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1569
1665
|
readonly system?: boolean | undefined;
|
|
1570
1666
|
readonly sortable?: boolean | undefined;
|
|
1571
1667
|
readonly inlineHelpText?: string | undefined;
|
|
1572
|
-
readonly
|
|
1668
|
+
readonly externalId?: boolean | undefined;
|
|
1573
1669
|
readonly type: "textarea";
|
|
1574
1670
|
};
|
|
1575
1671
|
readonly status: {
|
|
@@ -1602,8 +1698,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1602
1698
|
notNull?: boolean | undefined;
|
|
1603
1699
|
} | undefined;
|
|
1604
1700
|
readonly maxSize?: number | undefined;
|
|
1605
|
-
readonly
|
|
1606
|
-
readonly
|
|
1701
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1702
|
+
readonly _lockReason?: string | undefined;
|
|
1703
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1704
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1705
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1706
|
+
readonly _packageId?: string | undefined;
|
|
1707
|
+
readonly _packageVersion?: string | undefined;
|
|
1708
|
+
readonly lookupFilters?: {
|
|
1709
|
+
field: string;
|
|
1710
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1711
|
+
value: any;
|
|
1712
|
+
}[] | undefined;
|
|
1713
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1714
|
+
readonly expression?: {
|
|
1715
|
+
dialect: "cel" | "cron" | "template";
|
|
1716
|
+
source?: string | undefined;
|
|
1717
|
+
ast?: unknown;
|
|
1718
|
+
meta?: {
|
|
1719
|
+
rationale?: string | undefined;
|
|
1720
|
+
generatedBy?: string | undefined;
|
|
1721
|
+
} | undefined;
|
|
1722
|
+
} | undefined;
|
|
1723
|
+
readonly autonumberFormat?: string | undefined;
|
|
1724
|
+
readonly summaryOperations?: {
|
|
1725
|
+
object: string;
|
|
1726
|
+
field: string;
|
|
1727
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1728
|
+
relationshipField?: string | undefined;
|
|
1729
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1730
|
+
} | undefined;
|
|
1607
1731
|
readonly visibleWhen?: {
|
|
1608
1732
|
dialect: "cel" | "cron" | "template";
|
|
1609
1733
|
source?: string | undefined;
|
|
@@ -1613,16 +1737,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1613
1737
|
generatedBy?: string | undefined;
|
|
1614
1738
|
} | undefined;
|
|
1615
1739
|
} | undefined;
|
|
1740
|
+
readonly scale?: number | undefined;
|
|
1616
1741
|
readonly searchable?: boolean | undefined;
|
|
1617
1742
|
readonly unique?: boolean | "global" | undefined;
|
|
1743
|
+
readonly defaultValue?: unknown;
|
|
1618
1744
|
readonly maxLength?: number | undefined;
|
|
1619
1745
|
readonly minLength?: number | undefined;
|
|
1620
|
-
readonly scale?: number | undefined;
|
|
1621
1746
|
readonly min?: number | undefined;
|
|
1622
1747
|
readonly max?: number | undefined;
|
|
1623
1748
|
readonly accept?: string[] | undefined;
|
|
1624
1749
|
readonly reference?: string | undefined;
|
|
1625
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1626
1750
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1627
1751
|
readonly inlineTitle?: string | undefined;
|
|
1628
1752
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1639,32 +1763,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1639
1763
|
type?: string | undefined;
|
|
1640
1764
|
})[] | undefined;
|
|
1641
1765
|
readonly lookupPageSize?: number | undefined;
|
|
1642
|
-
readonly lookupFilters?: {
|
|
1643
|
-
field: string;
|
|
1644
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1645
|
-
value: any;
|
|
1646
|
-
}[] | undefined;
|
|
1647
1766
|
readonly dependsOn?: (string | {
|
|
1648
1767
|
field: string;
|
|
1649
1768
|
param?: string | undefined;
|
|
1650
1769
|
})[] | undefined;
|
|
1651
1770
|
readonly allowCreate?: boolean | undefined;
|
|
1652
|
-
readonly expression?: {
|
|
1653
|
-
dialect: "cel" | "cron" | "template";
|
|
1654
|
-
source?: string | undefined;
|
|
1655
|
-
ast?: unknown;
|
|
1656
|
-
meta?: {
|
|
1657
|
-
rationale?: string | undefined;
|
|
1658
|
-
generatedBy?: string | undefined;
|
|
1659
|
-
} | undefined;
|
|
1660
|
-
} | undefined;
|
|
1661
|
-
readonly summaryOperations?: {
|
|
1662
|
-
object: string;
|
|
1663
|
-
field: string;
|
|
1664
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1665
|
-
relationshipField?: string | undefined;
|
|
1666
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1667
|
-
} | undefined;
|
|
1668
1771
|
readonly language?: string | undefined;
|
|
1669
1772
|
readonly step?: number | undefined;
|
|
1670
1773
|
readonly currencyConfig?: {
|
|
@@ -1700,7 +1803,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1700
1803
|
readonly system?: boolean | undefined;
|
|
1701
1804
|
readonly sortable?: boolean | undefined;
|
|
1702
1805
|
readonly inlineHelpText?: string | undefined;
|
|
1703
|
-
readonly
|
|
1806
|
+
readonly externalId?: boolean | undefined;
|
|
1704
1807
|
readonly type: "select";
|
|
1705
1808
|
};
|
|
1706
1809
|
readonly current_step: {
|
|
@@ -1733,8 +1836,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1733
1836
|
notNull?: boolean | undefined;
|
|
1734
1837
|
} | undefined;
|
|
1735
1838
|
readonly maxSize?: number | undefined;
|
|
1736
|
-
readonly
|
|
1737
|
-
readonly
|
|
1839
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1840
|
+
readonly _lockReason?: string | undefined;
|
|
1841
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1842
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1843
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1844
|
+
readonly _packageId?: string | undefined;
|
|
1845
|
+
readonly _packageVersion?: string | undefined;
|
|
1846
|
+
readonly lookupFilters?: {
|
|
1847
|
+
field: string;
|
|
1848
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1849
|
+
value: any;
|
|
1850
|
+
}[] | undefined;
|
|
1851
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1852
|
+
readonly expression?: {
|
|
1853
|
+
dialect: "cel" | "cron" | "template";
|
|
1854
|
+
source?: string | undefined;
|
|
1855
|
+
ast?: unknown;
|
|
1856
|
+
meta?: {
|
|
1857
|
+
rationale?: string | undefined;
|
|
1858
|
+
generatedBy?: string | undefined;
|
|
1859
|
+
} | undefined;
|
|
1860
|
+
} | undefined;
|
|
1861
|
+
readonly autonumberFormat?: string | undefined;
|
|
1862
|
+
readonly summaryOperations?: {
|
|
1863
|
+
object: string;
|
|
1864
|
+
field: string;
|
|
1865
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1866
|
+
relationshipField?: string | undefined;
|
|
1867
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1868
|
+
} | undefined;
|
|
1738
1869
|
readonly visibleWhen?: {
|
|
1739
1870
|
dialect: "cel" | "cron" | "template";
|
|
1740
1871
|
source?: string | undefined;
|
|
@@ -1744,16 +1875,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1744
1875
|
generatedBy?: string | undefined;
|
|
1745
1876
|
} | undefined;
|
|
1746
1877
|
} | undefined;
|
|
1878
|
+
readonly scale?: number | undefined;
|
|
1747
1879
|
readonly searchable?: boolean | undefined;
|
|
1748
1880
|
readonly unique?: boolean | "global" | undefined;
|
|
1881
|
+
readonly defaultValue?: unknown;
|
|
1749
1882
|
readonly maxLength?: number | undefined;
|
|
1750
1883
|
readonly minLength?: number | undefined;
|
|
1751
|
-
readonly scale?: number | undefined;
|
|
1752
1884
|
readonly min?: number | undefined;
|
|
1753
1885
|
readonly max?: number | undefined;
|
|
1754
1886
|
readonly accept?: string[] | undefined;
|
|
1755
1887
|
readonly reference?: string | undefined;
|
|
1756
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1757
1888
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1758
1889
|
readonly inlineTitle?: string | undefined;
|
|
1759
1890
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1770,32 +1901,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1770
1901
|
type?: string | undefined;
|
|
1771
1902
|
})[] | undefined;
|
|
1772
1903
|
readonly lookupPageSize?: number | undefined;
|
|
1773
|
-
readonly lookupFilters?: {
|
|
1774
|
-
field: string;
|
|
1775
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1776
|
-
value: any;
|
|
1777
|
-
}[] | undefined;
|
|
1778
1904
|
readonly dependsOn?: (string | {
|
|
1779
1905
|
field: string;
|
|
1780
1906
|
param?: string | undefined;
|
|
1781
1907
|
})[] | undefined;
|
|
1782
1908
|
readonly allowCreate?: boolean | undefined;
|
|
1783
|
-
readonly expression?: {
|
|
1784
|
-
dialect: "cel" | "cron" | "template";
|
|
1785
|
-
source?: string | undefined;
|
|
1786
|
-
ast?: unknown;
|
|
1787
|
-
meta?: {
|
|
1788
|
-
rationale?: string | undefined;
|
|
1789
|
-
generatedBy?: string | undefined;
|
|
1790
|
-
} | undefined;
|
|
1791
|
-
} | undefined;
|
|
1792
|
-
readonly summaryOperations?: {
|
|
1793
|
-
object: string;
|
|
1794
|
-
field: string;
|
|
1795
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1796
|
-
relationshipField?: string | undefined;
|
|
1797
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1798
|
-
} | undefined;
|
|
1799
1909
|
readonly language?: string | undefined;
|
|
1800
1910
|
readonly step?: number | undefined;
|
|
1801
1911
|
readonly currencyConfig?: {
|
|
@@ -1831,7 +1941,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1831
1941
|
readonly system?: boolean | undefined;
|
|
1832
1942
|
readonly sortable?: boolean | undefined;
|
|
1833
1943
|
readonly inlineHelpText?: string | undefined;
|
|
1834
|
-
readonly
|
|
1944
|
+
readonly externalId?: boolean | undefined;
|
|
1835
1945
|
readonly type: "text";
|
|
1836
1946
|
};
|
|
1837
1947
|
readonly current_step_index: {
|
|
@@ -1864,8 +1974,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1864
1974
|
notNull?: boolean | undefined;
|
|
1865
1975
|
} | undefined;
|
|
1866
1976
|
readonly maxSize?: number | undefined;
|
|
1867
|
-
readonly
|
|
1868
|
-
readonly
|
|
1977
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1978
|
+
readonly _lockReason?: string | undefined;
|
|
1979
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1980
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1981
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1982
|
+
readonly _packageId?: string | undefined;
|
|
1983
|
+
readonly _packageVersion?: string | undefined;
|
|
1984
|
+
readonly lookupFilters?: {
|
|
1985
|
+
field: string;
|
|
1986
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1987
|
+
value: any;
|
|
1988
|
+
}[] | undefined;
|
|
1989
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1990
|
+
readonly expression?: {
|
|
1991
|
+
dialect: "cel" | "cron" | "template";
|
|
1992
|
+
source?: string | undefined;
|
|
1993
|
+
ast?: unknown;
|
|
1994
|
+
meta?: {
|
|
1995
|
+
rationale?: string | undefined;
|
|
1996
|
+
generatedBy?: string | undefined;
|
|
1997
|
+
} | undefined;
|
|
1998
|
+
} | undefined;
|
|
1999
|
+
readonly autonumberFormat?: string | undefined;
|
|
2000
|
+
readonly summaryOperations?: {
|
|
2001
|
+
object: string;
|
|
2002
|
+
field: string;
|
|
2003
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2004
|
+
relationshipField?: string | undefined;
|
|
2005
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2006
|
+
} | undefined;
|
|
1869
2007
|
readonly visibleWhen?: {
|
|
1870
2008
|
dialect: "cel" | "cron" | "template";
|
|
1871
2009
|
source?: string | undefined;
|
|
@@ -1875,16 +2013,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1875
2013
|
generatedBy?: string | undefined;
|
|
1876
2014
|
} | undefined;
|
|
1877
2015
|
} | undefined;
|
|
2016
|
+
readonly scale?: number | undefined;
|
|
1878
2017
|
readonly searchable?: boolean | undefined;
|
|
1879
2018
|
readonly unique?: boolean | "global" | undefined;
|
|
2019
|
+
readonly defaultValue?: unknown;
|
|
1880
2020
|
readonly maxLength?: number | undefined;
|
|
1881
2021
|
readonly minLength?: number | undefined;
|
|
1882
|
-
readonly scale?: number | undefined;
|
|
1883
2022
|
readonly min?: number | undefined;
|
|
1884
2023
|
readonly max?: number | undefined;
|
|
1885
2024
|
readonly accept?: string[] | undefined;
|
|
1886
2025
|
readonly reference?: string | undefined;
|
|
1887
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1888
2026
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1889
2027
|
readonly inlineTitle?: string | undefined;
|
|
1890
2028
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1901,32 +2039,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1901
2039
|
type?: string | undefined;
|
|
1902
2040
|
})[] | undefined;
|
|
1903
2041
|
readonly lookupPageSize?: number | undefined;
|
|
1904
|
-
readonly
|
|
1905
|
-
field: string;
|
|
1906
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1907
|
-
value: any;
|
|
1908
|
-
}[] | undefined;
|
|
1909
|
-
readonly dependsOn?: (string | {
|
|
2042
|
+
readonly dependsOn?: (string | {
|
|
1910
2043
|
field: string;
|
|
1911
2044
|
param?: string | undefined;
|
|
1912
2045
|
})[] | undefined;
|
|
1913
2046
|
readonly allowCreate?: boolean | undefined;
|
|
1914
|
-
readonly expression?: {
|
|
1915
|
-
dialect: "cel" | "cron" | "template";
|
|
1916
|
-
source?: string | undefined;
|
|
1917
|
-
ast?: unknown;
|
|
1918
|
-
meta?: {
|
|
1919
|
-
rationale?: string | undefined;
|
|
1920
|
-
generatedBy?: string | undefined;
|
|
1921
|
-
} | undefined;
|
|
1922
|
-
} | undefined;
|
|
1923
|
-
readonly summaryOperations?: {
|
|
1924
|
-
object: string;
|
|
1925
|
-
field: string;
|
|
1926
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1927
|
-
relationshipField?: string | undefined;
|
|
1928
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1929
|
-
} | undefined;
|
|
1930
2047
|
readonly language?: string | undefined;
|
|
1931
2048
|
readonly step?: number | undefined;
|
|
1932
2049
|
readonly currencyConfig?: {
|
|
@@ -1962,7 +2079,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1962
2079
|
readonly system?: boolean | undefined;
|
|
1963
2080
|
readonly sortable?: boolean | undefined;
|
|
1964
2081
|
readonly inlineHelpText?: string | undefined;
|
|
1965
|
-
readonly
|
|
2082
|
+
readonly externalId?: boolean | undefined;
|
|
1966
2083
|
readonly type: "number";
|
|
1967
2084
|
};
|
|
1968
2085
|
readonly pending_approvers: {
|
|
@@ -1995,8 +2112,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1995
2112
|
notNull?: boolean | undefined;
|
|
1996
2113
|
} | undefined;
|
|
1997
2114
|
readonly maxSize?: number | undefined;
|
|
1998
|
-
readonly
|
|
1999
|
-
readonly
|
|
2115
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2116
|
+
readonly _lockReason?: string | undefined;
|
|
2117
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2118
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2119
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2120
|
+
readonly _packageId?: string | undefined;
|
|
2121
|
+
readonly _packageVersion?: string | undefined;
|
|
2122
|
+
readonly lookupFilters?: {
|
|
2123
|
+
field: string;
|
|
2124
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2125
|
+
value: any;
|
|
2126
|
+
}[] | undefined;
|
|
2127
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2128
|
+
readonly expression?: {
|
|
2129
|
+
dialect: "cel" | "cron" | "template";
|
|
2130
|
+
source?: string | undefined;
|
|
2131
|
+
ast?: unknown;
|
|
2132
|
+
meta?: {
|
|
2133
|
+
rationale?: string | undefined;
|
|
2134
|
+
generatedBy?: string | undefined;
|
|
2135
|
+
} | undefined;
|
|
2136
|
+
} | undefined;
|
|
2137
|
+
readonly autonumberFormat?: string | undefined;
|
|
2138
|
+
readonly summaryOperations?: {
|
|
2139
|
+
object: string;
|
|
2140
|
+
field: string;
|
|
2141
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2142
|
+
relationshipField?: string | undefined;
|
|
2143
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2144
|
+
} | undefined;
|
|
2000
2145
|
readonly visibleWhen?: {
|
|
2001
2146
|
dialect: "cel" | "cron" | "template";
|
|
2002
2147
|
source?: string | undefined;
|
|
@@ -2006,16 +2151,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2006
2151
|
generatedBy?: string | undefined;
|
|
2007
2152
|
} | undefined;
|
|
2008
2153
|
} | undefined;
|
|
2154
|
+
readonly scale?: number | undefined;
|
|
2009
2155
|
readonly searchable?: boolean | undefined;
|
|
2010
2156
|
readonly unique?: boolean | "global" | undefined;
|
|
2157
|
+
readonly defaultValue?: unknown;
|
|
2011
2158
|
readonly maxLength?: number | undefined;
|
|
2012
2159
|
readonly minLength?: number | undefined;
|
|
2013
|
-
readonly scale?: number | undefined;
|
|
2014
2160
|
readonly min?: number | undefined;
|
|
2015
2161
|
readonly max?: number | undefined;
|
|
2016
2162
|
readonly accept?: string[] | undefined;
|
|
2017
2163
|
readonly reference?: string | undefined;
|
|
2018
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2019
2164
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2020
2165
|
readonly inlineTitle?: string | undefined;
|
|
2021
2166
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2032,32 +2177,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2032
2177
|
type?: string | undefined;
|
|
2033
2178
|
})[] | undefined;
|
|
2034
2179
|
readonly lookupPageSize?: number | undefined;
|
|
2035
|
-
readonly lookupFilters?: {
|
|
2036
|
-
field: string;
|
|
2037
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2038
|
-
value: any;
|
|
2039
|
-
}[] | undefined;
|
|
2040
2180
|
readonly dependsOn?: (string | {
|
|
2041
2181
|
field: string;
|
|
2042
2182
|
param?: string | undefined;
|
|
2043
2183
|
})[] | undefined;
|
|
2044
2184
|
readonly allowCreate?: boolean | undefined;
|
|
2045
|
-
readonly expression?: {
|
|
2046
|
-
dialect: "cel" | "cron" | "template";
|
|
2047
|
-
source?: string | undefined;
|
|
2048
|
-
ast?: unknown;
|
|
2049
|
-
meta?: {
|
|
2050
|
-
rationale?: string | undefined;
|
|
2051
|
-
generatedBy?: string | undefined;
|
|
2052
|
-
} | undefined;
|
|
2053
|
-
} | undefined;
|
|
2054
|
-
readonly summaryOperations?: {
|
|
2055
|
-
object: string;
|
|
2056
|
-
field: string;
|
|
2057
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2058
|
-
relationshipField?: string | undefined;
|
|
2059
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2060
|
-
} | undefined;
|
|
2061
2185
|
readonly language?: string | undefined;
|
|
2062
2186
|
readonly step?: number | undefined;
|
|
2063
2187
|
readonly currencyConfig?: {
|
|
@@ -2093,7 +2217,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2093
2217
|
readonly system?: boolean | undefined;
|
|
2094
2218
|
readonly sortable?: boolean | undefined;
|
|
2095
2219
|
readonly inlineHelpText?: string | undefined;
|
|
2096
|
-
readonly
|
|
2220
|
+
readonly externalId?: boolean | undefined;
|
|
2097
2221
|
readonly type: "textarea";
|
|
2098
2222
|
};
|
|
2099
2223
|
readonly payload_json: {
|
|
@@ -2126,8 +2250,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2126
2250
|
notNull?: boolean | undefined;
|
|
2127
2251
|
} | undefined;
|
|
2128
2252
|
readonly maxSize?: number | undefined;
|
|
2129
|
-
readonly
|
|
2130
|
-
readonly
|
|
2253
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2254
|
+
readonly _lockReason?: string | undefined;
|
|
2255
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2256
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2257
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2258
|
+
readonly _packageId?: string | undefined;
|
|
2259
|
+
readonly _packageVersion?: string | undefined;
|
|
2260
|
+
readonly lookupFilters?: {
|
|
2261
|
+
field: string;
|
|
2262
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2263
|
+
value: any;
|
|
2264
|
+
}[] | undefined;
|
|
2265
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2266
|
+
readonly expression?: {
|
|
2267
|
+
dialect: "cel" | "cron" | "template";
|
|
2268
|
+
source?: string | undefined;
|
|
2269
|
+
ast?: unknown;
|
|
2270
|
+
meta?: {
|
|
2271
|
+
rationale?: string | undefined;
|
|
2272
|
+
generatedBy?: string | undefined;
|
|
2273
|
+
} | undefined;
|
|
2274
|
+
} | undefined;
|
|
2275
|
+
readonly autonumberFormat?: string | undefined;
|
|
2276
|
+
readonly summaryOperations?: {
|
|
2277
|
+
object: string;
|
|
2278
|
+
field: string;
|
|
2279
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2280
|
+
relationshipField?: string | undefined;
|
|
2281
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2282
|
+
} | undefined;
|
|
2131
2283
|
readonly visibleWhen?: {
|
|
2132
2284
|
dialect: "cel" | "cron" | "template";
|
|
2133
2285
|
source?: string | undefined;
|
|
@@ -2137,16 +2289,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2137
2289
|
generatedBy?: string | undefined;
|
|
2138
2290
|
} | undefined;
|
|
2139
2291
|
} | undefined;
|
|
2292
|
+
readonly scale?: number | undefined;
|
|
2140
2293
|
readonly searchable?: boolean | undefined;
|
|
2141
2294
|
readonly unique?: boolean | "global" | undefined;
|
|
2295
|
+
readonly defaultValue?: unknown;
|
|
2142
2296
|
readonly maxLength?: number | undefined;
|
|
2143
2297
|
readonly minLength?: number | undefined;
|
|
2144
|
-
readonly scale?: number | undefined;
|
|
2145
2298
|
readonly min?: number | undefined;
|
|
2146
2299
|
readonly max?: number | undefined;
|
|
2147
2300
|
readonly accept?: string[] | undefined;
|
|
2148
2301
|
readonly reference?: string | undefined;
|
|
2149
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2150
2302
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2151
2303
|
readonly inlineTitle?: string | undefined;
|
|
2152
2304
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2163,32 +2315,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2163
2315
|
type?: string | undefined;
|
|
2164
2316
|
})[] | undefined;
|
|
2165
2317
|
readonly lookupPageSize?: number | undefined;
|
|
2166
|
-
readonly lookupFilters?: {
|
|
2167
|
-
field: string;
|
|
2168
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2169
|
-
value: any;
|
|
2170
|
-
}[] | undefined;
|
|
2171
2318
|
readonly dependsOn?: (string | {
|
|
2172
2319
|
field: string;
|
|
2173
2320
|
param?: string | undefined;
|
|
2174
2321
|
})[] | undefined;
|
|
2175
2322
|
readonly allowCreate?: boolean | undefined;
|
|
2176
|
-
readonly expression?: {
|
|
2177
|
-
dialect: "cel" | "cron" | "template";
|
|
2178
|
-
source?: string | undefined;
|
|
2179
|
-
ast?: unknown;
|
|
2180
|
-
meta?: {
|
|
2181
|
-
rationale?: string | undefined;
|
|
2182
|
-
generatedBy?: string | undefined;
|
|
2183
|
-
} | undefined;
|
|
2184
|
-
} | undefined;
|
|
2185
|
-
readonly summaryOperations?: {
|
|
2186
|
-
object: string;
|
|
2187
|
-
field: string;
|
|
2188
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2189
|
-
relationshipField?: string | undefined;
|
|
2190
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2191
|
-
} | undefined;
|
|
2192
2323
|
readonly language?: string | undefined;
|
|
2193
2324
|
readonly step?: number | undefined;
|
|
2194
2325
|
readonly currencyConfig?: {
|
|
@@ -2224,7 +2355,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2224
2355
|
readonly system?: boolean | undefined;
|
|
2225
2356
|
readonly sortable?: boolean | undefined;
|
|
2226
2357
|
readonly inlineHelpText?: string | undefined;
|
|
2227
|
-
readonly
|
|
2358
|
+
readonly externalId?: boolean | undefined;
|
|
2228
2359
|
readonly type: "textarea";
|
|
2229
2360
|
};
|
|
2230
2361
|
readonly flow_run_id: {
|
|
@@ -2257,8 +2388,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2257
2388
|
notNull?: boolean | undefined;
|
|
2258
2389
|
} | undefined;
|
|
2259
2390
|
readonly maxSize?: number | undefined;
|
|
2260
|
-
readonly
|
|
2261
|
-
readonly
|
|
2391
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2392
|
+
readonly _lockReason?: string | undefined;
|
|
2393
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2394
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2395
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2396
|
+
readonly _packageId?: string | undefined;
|
|
2397
|
+
readonly _packageVersion?: string | undefined;
|
|
2398
|
+
readonly lookupFilters?: {
|
|
2399
|
+
field: string;
|
|
2400
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2401
|
+
value: any;
|
|
2402
|
+
}[] | undefined;
|
|
2403
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2404
|
+
readonly expression?: {
|
|
2405
|
+
dialect: "cel" | "cron" | "template";
|
|
2406
|
+
source?: string | undefined;
|
|
2407
|
+
ast?: unknown;
|
|
2408
|
+
meta?: {
|
|
2409
|
+
rationale?: string | undefined;
|
|
2410
|
+
generatedBy?: string | undefined;
|
|
2411
|
+
} | undefined;
|
|
2412
|
+
} | undefined;
|
|
2413
|
+
readonly autonumberFormat?: string | undefined;
|
|
2414
|
+
readonly summaryOperations?: {
|
|
2415
|
+
object: string;
|
|
2416
|
+
field: string;
|
|
2417
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2418
|
+
relationshipField?: string | undefined;
|
|
2419
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2420
|
+
} | undefined;
|
|
2262
2421
|
readonly visibleWhen?: {
|
|
2263
2422
|
dialect: "cel" | "cron" | "template";
|
|
2264
2423
|
source?: string | undefined;
|
|
@@ -2268,16 +2427,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2268
2427
|
generatedBy?: string | undefined;
|
|
2269
2428
|
} | undefined;
|
|
2270
2429
|
} | undefined;
|
|
2430
|
+
readonly scale?: number | undefined;
|
|
2271
2431
|
readonly searchable?: boolean | undefined;
|
|
2272
2432
|
readonly unique?: boolean | "global" | undefined;
|
|
2433
|
+
readonly defaultValue?: unknown;
|
|
2273
2434
|
readonly maxLength?: number | undefined;
|
|
2274
2435
|
readonly minLength?: number | undefined;
|
|
2275
|
-
readonly scale?: number | undefined;
|
|
2276
2436
|
readonly min?: number | undefined;
|
|
2277
2437
|
readonly max?: number | undefined;
|
|
2278
2438
|
readonly accept?: string[] | undefined;
|
|
2279
2439
|
readonly reference?: string | undefined;
|
|
2280
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2281
2440
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2282
2441
|
readonly inlineTitle?: string | undefined;
|
|
2283
2442
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2294,32 +2453,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2294
2453
|
type?: string | undefined;
|
|
2295
2454
|
})[] | undefined;
|
|
2296
2455
|
readonly lookupPageSize?: number | undefined;
|
|
2297
|
-
readonly lookupFilters?: {
|
|
2298
|
-
field: string;
|
|
2299
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2300
|
-
value: any;
|
|
2301
|
-
}[] | undefined;
|
|
2302
2456
|
readonly dependsOn?: (string | {
|
|
2303
2457
|
field: string;
|
|
2304
2458
|
param?: string | undefined;
|
|
2305
2459
|
})[] | undefined;
|
|
2306
2460
|
readonly allowCreate?: boolean | undefined;
|
|
2307
|
-
readonly expression?: {
|
|
2308
|
-
dialect: "cel" | "cron" | "template";
|
|
2309
|
-
source?: string | undefined;
|
|
2310
|
-
ast?: unknown;
|
|
2311
|
-
meta?: {
|
|
2312
|
-
rationale?: string | undefined;
|
|
2313
|
-
generatedBy?: string | undefined;
|
|
2314
|
-
} | undefined;
|
|
2315
|
-
} | undefined;
|
|
2316
|
-
readonly summaryOperations?: {
|
|
2317
|
-
object: string;
|
|
2318
|
-
field: string;
|
|
2319
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2320
|
-
relationshipField?: string | undefined;
|
|
2321
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2322
|
-
} | undefined;
|
|
2323
2461
|
readonly language?: string | undefined;
|
|
2324
2462
|
readonly step?: number | undefined;
|
|
2325
2463
|
readonly currencyConfig?: {
|
|
@@ -2355,7 +2493,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2355
2493
|
readonly system?: boolean | undefined;
|
|
2356
2494
|
readonly sortable?: boolean | undefined;
|
|
2357
2495
|
readonly inlineHelpText?: string | undefined;
|
|
2358
|
-
readonly
|
|
2496
|
+
readonly externalId?: boolean | undefined;
|
|
2359
2497
|
readonly type: "text";
|
|
2360
2498
|
};
|
|
2361
2499
|
readonly flow_node_id: {
|
|
@@ -2388,8 +2526,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2388
2526
|
notNull?: boolean | undefined;
|
|
2389
2527
|
} | undefined;
|
|
2390
2528
|
readonly maxSize?: number | undefined;
|
|
2391
|
-
readonly
|
|
2392
|
-
readonly
|
|
2529
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2530
|
+
readonly _lockReason?: string | undefined;
|
|
2531
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2532
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2533
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2534
|
+
readonly _packageId?: string | undefined;
|
|
2535
|
+
readonly _packageVersion?: string | undefined;
|
|
2536
|
+
readonly lookupFilters?: {
|
|
2537
|
+
field: string;
|
|
2538
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2539
|
+
value: any;
|
|
2540
|
+
}[] | undefined;
|
|
2541
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2542
|
+
readonly expression?: {
|
|
2543
|
+
dialect: "cel" | "cron" | "template";
|
|
2544
|
+
source?: string | undefined;
|
|
2545
|
+
ast?: unknown;
|
|
2546
|
+
meta?: {
|
|
2547
|
+
rationale?: string | undefined;
|
|
2548
|
+
generatedBy?: string | undefined;
|
|
2549
|
+
} | undefined;
|
|
2550
|
+
} | undefined;
|
|
2551
|
+
readonly autonumberFormat?: string | undefined;
|
|
2552
|
+
readonly summaryOperations?: {
|
|
2553
|
+
object: string;
|
|
2554
|
+
field: string;
|
|
2555
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2556
|
+
relationshipField?: string | undefined;
|
|
2557
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2558
|
+
} | undefined;
|
|
2393
2559
|
readonly visibleWhen?: {
|
|
2394
2560
|
dialect: "cel" | "cron" | "template";
|
|
2395
2561
|
source?: string | undefined;
|
|
@@ -2399,16 +2565,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2399
2565
|
generatedBy?: string | undefined;
|
|
2400
2566
|
} | undefined;
|
|
2401
2567
|
} | undefined;
|
|
2568
|
+
readonly scale?: number | undefined;
|
|
2402
2569
|
readonly searchable?: boolean | undefined;
|
|
2403
2570
|
readonly unique?: boolean | "global" | undefined;
|
|
2571
|
+
readonly defaultValue?: unknown;
|
|
2404
2572
|
readonly maxLength?: number | undefined;
|
|
2405
2573
|
readonly minLength?: number | undefined;
|
|
2406
|
-
readonly scale?: number | undefined;
|
|
2407
2574
|
readonly min?: number | undefined;
|
|
2408
2575
|
readonly max?: number | undefined;
|
|
2409
2576
|
readonly accept?: string[] | undefined;
|
|
2410
2577
|
readonly reference?: string | undefined;
|
|
2411
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2412
2578
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2413
2579
|
readonly inlineTitle?: string | undefined;
|
|
2414
2580
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2425,32 +2591,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2425
2591
|
type?: string | undefined;
|
|
2426
2592
|
})[] | undefined;
|
|
2427
2593
|
readonly lookupPageSize?: number | undefined;
|
|
2428
|
-
readonly lookupFilters?: {
|
|
2429
|
-
field: string;
|
|
2430
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2431
|
-
value: any;
|
|
2432
|
-
}[] | undefined;
|
|
2433
2594
|
readonly dependsOn?: (string | {
|
|
2434
2595
|
field: string;
|
|
2435
2596
|
param?: string | undefined;
|
|
2436
2597
|
})[] | undefined;
|
|
2437
2598
|
readonly allowCreate?: boolean | undefined;
|
|
2438
|
-
readonly expression?: {
|
|
2439
|
-
dialect: "cel" | "cron" | "template";
|
|
2440
|
-
source?: string | undefined;
|
|
2441
|
-
ast?: unknown;
|
|
2442
|
-
meta?: {
|
|
2443
|
-
rationale?: string | undefined;
|
|
2444
|
-
generatedBy?: string | undefined;
|
|
2445
|
-
} | undefined;
|
|
2446
|
-
} | undefined;
|
|
2447
|
-
readonly summaryOperations?: {
|
|
2448
|
-
object: string;
|
|
2449
|
-
field: string;
|
|
2450
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2451
|
-
relationshipField?: string | undefined;
|
|
2452
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2453
|
-
} | undefined;
|
|
2454
2599
|
readonly language?: string | undefined;
|
|
2455
2600
|
readonly step?: number | undefined;
|
|
2456
2601
|
readonly currencyConfig?: {
|
|
@@ -2486,7 +2631,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2486
2631
|
readonly system?: boolean | undefined;
|
|
2487
2632
|
readonly sortable?: boolean | undefined;
|
|
2488
2633
|
readonly inlineHelpText?: string | undefined;
|
|
2489
|
-
readonly
|
|
2634
|
+
readonly externalId?: boolean | undefined;
|
|
2490
2635
|
readonly type: "text";
|
|
2491
2636
|
};
|
|
2492
2637
|
readonly node_config_json: {
|
|
@@ -2519,8 +2664,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2519
2664
|
notNull?: boolean | undefined;
|
|
2520
2665
|
} | undefined;
|
|
2521
2666
|
readonly maxSize?: number | undefined;
|
|
2522
|
-
readonly
|
|
2523
|
-
readonly
|
|
2667
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2668
|
+
readonly _lockReason?: string | undefined;
|
|
2669
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2670
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2671
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2672
|
+
readonly _packageId?: string | undefined;
|
|
2673
|
+
readonly _packageVersion?: string | undefined;
|
|
2674
|
+
readonly lookupFilters?: {
|
|
2675
|
+
field: string;
|
|
2676
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2677
|
+
value: any;
|
|
2678
|
+
}[] | undefined;
|
|
2679
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2680
|
+
readonly expression?: {
|
|
2681
|
+
dialect: "cel" | "cron" | "template";
|
|
2682
|
+
source?: string | undefined;
|
|
2683
|
+
ast?: unknown;
|
|
2684
|
+
meta?: {
|
|
2685
|
+
rationale?: string | undefined;
|
|
2686
|
+
generatedBy?: string | undefined;
|
|
2687
|
+
} | undefined;
|
|
2688
|
+
} | undefined;
|
|
2689
|
+
readonly autonumberFormat?: string | undefined;
|
|
2690
|
+
readonly summaryOperations?: {
|
|
2691
|
+
object: string;
|
|
2692
|
+
field: string;
|
|
2693
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2694
|
+
relationshipField?: string | undefined;
|
|
2695
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2696
|
+
} | undefined;
|
|
2524
2697
|
readonly visibleWhen?: {
|
|
2525
2698
|
dialect: "cel" | "cron" | "template";
|
|
2526
2699
|
source?: string | undefined;
|
|
@@ -2530,16 +2703,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2530
2703
|
generatedBy?: string | undefined;
|
|
2531
2704
|
} | undefined;
|
|
2532
2705
|
} | undefined;
|
|
2706
|
+
readonly scale?: number | undefined;
|
|
2533
2707
|
readonly searchable?: boolean | undefined;
|
|
2534
2708
|
readonly unique?: boolean | "global" | undefined;
|
|
2709
|
+
readonly defaultValue?: unknown;
|
|
2535
2710
|
readonly maxLength?: number | undefined;
|
|
2536
2711
|
readonly minLength?: number | undefined;
|
|
2537
|
-
readonly scale?: number | undefined;
|
|
2538
2712
|
readonly min?: number | undefined;
|
|
2539
2713
|
readonly max?: number | undefined;
|
|
2540
2714
|
readonly accept?: string[] | undefined;
|
|
2541
2715
|
readonly reference?: string | undefined;
|
|
2542
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2543
2716
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2544
2717
|
readonly inlineTitle?: string | undefined;
|
|
2545
2718
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2556,32 +2729,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2556
2729
|
type?: string | undefined;
|
|
2557
2730
|
})[] | undefined;
|
|
2558
2731
|
readonly lookupPageSize?: number | undefined;
|
|
2559
|
-
readonly lookupFilters?: {
|
|
2560
|
-
field: string;
|
|
2561
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2562
|
-
value: any;
|
|
2563
|
-
}[] | undefined;
|
|
2564
2732
|
readonly dependsOn?: (string | {
|
|
2565
2733
|
field: string;
|
|
2566
2734
|
param?: string | undefined;
|
|
2567
2735
|
})[] | undefined;
|
|
2568
2736
|
readonly allowCreate?: boolean | undefined;
|
|
2569
|
-
readonly expression?: {
|
|
2570
|
-
dialect: "cel" | "cron" | "template";
|
|
2571
|
-
source?: string | undefined;
|
|
2572
|
-
ast?: unknown;
|
|
2573
|
-
meta?: {
|
|
2574
|
-
rationale?: string | undefined;
|
|
2575
|
-
generatedBy?: string | undefined;
|
|
2576
|
-
} | undefined;
|
|
2577
|
-
} | undefined;
|
|
2578
|
-
readonly summaryOperations?: {
|
|
2579
|
-
object: string;
|
|
2580
|
-
field: string;
|
|
2581
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2582
|
-
relationshipField?: string | undefined;
|
|
2583
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2584
|
-
} | undefined;
|
|
2585
2737
|
readonly language?: string | undefined;
|
|
2586
2738
|
readonly step?: number | undefined;
|
|
2587
2739
|
readonly currencyConfig?: {
|
|
@@ -2617,7 +2769,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2617
2769
|
readonly system?: boolean | undefined;
|
|
2618
2770
|
readonly sortable?: boolean | undefined;
|
|
2619
2771
|
readonly inlineHelpText?: string | undefined;
|
|
2620
|
-
readonly
|
|
2772
|
+
readonly externalId?: boolean | undefined;
|
|
2621
2773
|
readonly type: "textarea";
|
|
2622
2774
|
};
|
|
2623
2775
|
readonly completed_at: {
|
|
@@ -2650,8 +2802,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2650
2802
|
notNull?: boolean | undefined;
|
|
2651
2803
|
} | undefined;
|
|
2652
2804
|
readonly maxSize?: number | undefined;
|
|
2653
|
-
readonly
|
|
2654
|
-
readonly
|
|
2805
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2806
|
+
readonly _lockReason?: string | undefined;
|
|
2807
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2808
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2809
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2810
|
+
readonly _packageId?: string | undefined;
|
|
2811
|
+
readonly _packageVersion?: string | undefined;
|
|
2812
|
+
readonly lookupFilters?: {
|
|
2813
|
+
field: string;
|
|
2814
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2815
|
+
value: any;
|
|
2816
|
+
}[] | undefined;
|
|
2817
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2818
|
+
readonly expression?: {
|
|
2819
|
+
dialect: "cel" | "cron" | "template";
|
|
2820
|
+
source?: string | undefined;
|
|
2821
|
+
ast?: unknown;
|
|
2822
|
+
meta?: {
|
|
2823
|
+
rationale?: string | undefined;
|
|
2824
|
+
generatedBy?: string | undefined;
|
|
2825
|
+
} | undefined;
|
|
2826
|
+
} | undefined;
|
|
2827
|
+
readonly autonumberFormat?: string | undefined;
|
|
2828
|
+
readonly summaryOperations?: {
|
|
2829
|
+
object: string;
|
|
2830
|
+
field: string;
|
|
2831
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2832
|
+
relationshipField?: string | undefined;
|
|
2833
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2834
|
+
} | undefined;
|
|
2655
2835
|
readonly visibleWhen?: {
|
|
2656
2836
|
dialect: "cel" | "cron" | "template";
|
|
2657
2837
|
source?: string | undefined;
|
|
@@ -2661,16 +2841,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2661
2841
|
generatedBy?: string | undefined;
|
|
2662
2842
|
} | undefined;
|
|
2663
2843
|
} | undefined;
|
|
2844
|
+
readonly scale?: number | undefined;
|
|
2664
2845
|
readonly searchable?: boolean | undefined;
|
|
2665
2846
|
readonly unique?: boolean | "global" | undefined;
|
|
2847
|
+
readonly defaultValue?: unknown;
|
|
2666
2848
|
readonly maxLength?: number | undefined;
|
|
2667
2849
|
readonly minLength?: number | undefined;
|
|
2668
|
-
readonly scale?: number | undefined;
|
|
2669
2850
|
readonly min?: number | undefined;
|
|
2670
2851
|
readonly max?: number | undefined;
|
|
2671
2852
|
readonly accept?: string[] | undefined;
|
|
2672
2853
|
readonly reference?: string | undefined;
|
|
2673
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2674
2854
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2675
2855
|
readonly inlineTitle?: string | undefined;
|
|
2676
2856
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2687,32 +2867,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2687
2867
|
type?: string | undefined;
|
|
2688
2868
|
})[] | undefined;
|
|
2689
2869
|
readonly lookupPageSize?: number | undefined;
|
|
2690
|
-
readonly lookupFilters?: {
|
|
2691
|
-
field: string;
|
|
2692
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2693
|
-
value: any;
|
|
2694
|
-
}[] | undefined;
|
|
2695
2870
|
readonly dependsOn?: (string | {
|
|
2696
2871
|
field: string;
|
|
2697
2872
|
param?: string | undefined;
|
|
2698
2873
|
})[] | undefined;
|
|
2699
2874
|
readonly allowCreate?: boolean | undefined;
|
|
2700
|
-
readonly expression?: {
|
|
2701
|
-
dialect: "cel" | "cron" | "template";
|
|
2702
|
-
source?: string | undefined;
|
|
2703
|
-
ast?: unknown;
|
|
2704
|
-
meta?: {
|
|
2705
|
-
rationale?: string | undefined;
|
|
2706
|
-
generatedBy?: string | undefined;
|
|
2707
|
-
} | undefined;
|
|
2708
|
-
} | undefined;
|
|
2709
|
-
readonly summaryOperations?: {
|
|
2710
|
-
object: string;
|
|
2711
|
-
field: string;
|
|
2712
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2713
|
-
relationshipField?: string | undefined;
|
|
2714
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2715
|
-
} | undefined;
|
|
2716
2875
|
readonly language?: string | undefined;
|
|
2717
2876
|
readonly step?: number | undefined;
|
|
2718
2877
|
readonly currencyConfig?: {
|
|
@@ -2748,7 +2907,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2748
2907
|
readonly system?: boolean | undefined;
|
|
2749
2908
|
readonly sortable?: boolean | undefined;
|
|
2750
2909
|
readonly inlineHelpText?: string | undefined;
|
|
2751
|
-
readonly
|
|
2910
|
+
readonly externalId?: boolean | undefined;
|
|
2752
2911
|
readonly type: "datetime";
|
|
2753
2912
|
};
|
|
2754
2913
|
readonly created_at: {
|
|
@@ -2781,8 +2940,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2781
2940
|
notNull?: boolean | undefined;
|
|
2782
2941
|
} | undefined;
|
|
2783
2942
|
readonly maxSize?: number | undefined;
|
|
2784
|
-
readonly
|
|
2785
|
-
readonly
|
|
2943
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2944
|
+
readonly _lockReason?: string | undefined;
|
|
2945
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2946
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2947
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2948
|
+
readonly _packageId?: string | undefined;
|
|
2949
|
+
readonly _packageVersion?: string | undefined;
|
|
2950
|
+
readonly lookupFilters?: {
|
|
2951
|
+
field: string;
|
|
2952
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2953
|
+
value: any;
|
|
2954
|
+
}[] | undefined;
|
|
2955
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2956
|
+
readonly expression?: {
|
|
2957
|
+
dialect: "cel" | "cron" | "template";
|
|
2958
|
+
source?: string | undefined;
|
|
2959
|
+
ast?: unknown;
|
|
2960
|
+
meta?: {
|
|
2961
|
+
rationale?: string | undefined;
|
|
2962
|
+
generatedBy?: string | undefined;
|
|
2963
|
+
} | undefined;
|
|
2964
|
+
} | undefined;
|
|
2965
|
+
readonly autonumberFormat?: string | undefined;
|
|
2966
|
+
readonly summaryOperations?: {
|
|
2967
|
+
object: string;
|
|
2968
|
+
field: string;
|
|
2969
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2970
|
+
relationshipField?: string | undefined;
|
|
2971
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2972
|
+
} | undefined;
|
|
2786
2973
|
readonly visibleWhen?: {
|
|
2787
2974
|
dialect: "cel" | "cron" | "template";
|
|
2788
2975
|
source?: string | undefined;
|
|
@@ -2792,16 +2979,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2792
2979
|
generatedBy?: string | undefined;
|
|
2793
2980
|
} | undefined;
|
|
2794
2981
|
} | undefined;
|
|
2982
|
+
readonly scale?: number | undefined;
|
|
2795
2983
|
readonly searchable?: boolean | undefined;
|
|
2796
2984
|
readonly unique?: boolean | "global" | undefined;
|
|
2985
|
+
readonly defaultValue?: unknown;
|
|
2797
2986
|
readonly maxLength?: number | undefined;
|
|
2798
2987
|
readonly minLength?: number | undefined;
|
|
2799
|
-
readonly scale?: number | undefined;
|
|
2800
2988
|
readonly min?: number | undefined;
|
|
2801
2989
|
readonly max?: number | undefined;
|
|
2802
2990
|
readonly accept?: string[] | undefined;
|
|
2803
2991
|
readonly reference?: string | undefined;
|
|
2804
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2805
2992
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2806
2993
|
readonly inlineTitle?: string | undefined;
|
|
2807
2994
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2818,32 +3005,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2818
3005
|
type?: string | undefined;
|
|
2819
3006
|
})[] | undefined;
|
|
2820
3007
|
readonly lookupPageSize?: number | undefined;
|
|
2821
|
-
readonly lookupFilters?: {
|
|
2822
|
-
field: string;
|
|
2823
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2824
|
-
value: any;
|
|
2825
|
-
}[] | undefined;
|
|
2826
3008
|
readonly dependsOn?: (string | {
|
|
2827
3009
|
field: string;
|
|
2828
3010
|
param?: string | undefined;
|
|
2829
3011
|
})[] | undefined;
|
|
2830
3012
|
readonly allowCreate?: boolean | undefined;
|
|
2831
|
-
readonly expression?: {
|
|
2832
|
-
dialect: "cel" | "cron" | "template";
|
|
2833
|
-
source?: string | undefined;
|
|
2834
|
-
ast?: unknown;
|
|
2835
|
-
meta?: {
|
|
2836
|
-
rationale?: string | undefined;
|
|
2837
|
-
generatedBy?: string | undefined;
|
|
2838
|
-
} | undefined;
|
|
2839
|
-
} | undefined;
|
|
2840
|
-
readonly summaryOperations?: {
|
|
2841
|
-
object: string;
|
|
2842
|
-
field: string;
|
|
2843
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2844
|
-
relationshipField?: string | undefined;
|
|
2845
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2846
|
-
} | undefined;
|
|
2847
3013
|
readonly language?: string | undefined;
|
|
2848
3014
|
readonly step?: number | undefined;
|
|
2849
3015
|
readonly currencyConfig?: {
|
|
@@ -2879,7 +3045,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2879
3045
|
readonly system?: boolean | undefined;
|
|
2880
3046
|
readonly sortable?: boolean | undefined;
|
|
2881
3047
|
readonly inlineHelpText?: string | undefined;
|
|
2882
|
-
readonly
|
|
3048
|
+
readonly externalId?: boolean | undefined;
|
|
2883
3049
|
readonly type: "datetime";
|
|
2884
3050
|
};
|
|
2885
3051
|
readonly updated_at: {
|
|
@@ -2912,8 +3078,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2912
3078
|
notNull?: boolean | undefined;
|
|
2913
3079
|
} | undefined;
|
|
2914
3080
|
readonly maxSize?: number | undefined;
|
|
2915
|
-
readonly
|
|
2916
|
-
readonly
|
|
3081
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3082
|
+
readonly _lockReason?: string | undefined;
|
|
3083
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3084
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
3085
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3086
|
+
readonly _packageId?: string | undefined;
|
|
3087
|
+
readonly _packageVersion?: string | undefined;
|
|
3088
|
+
readonly lookupFilters?: {
|
|
3089
|
+
field: string;
|
|
3090
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
3091
|
+
value: any;
|
|
3092
|
+
}[] | undefined;
|
|
3093
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3094
|
+
readonly expression?: {
|
|
3095
|
+
dialect: "cel" | "cron" | "template";
|
|
3096
|
+
source?: string | undefined;
|
|
3097
|
+
ast?: unknown;
|
|
3098
|
+
meta?: {
|
|
3099
|
+
rationale?: string | undefined;
|
|
3100
|
+
generatedBy?: string | undefined;
|
|
3101
|
+
} | undefined;
|
|
3102
|
+
} | undefined;
|
|
3103
|
+
readonly autonumberFormat?: string | undefined;
|
|
3104
|
+
readonly summaryOperations?: {
|
|
3105
|
+
object: string;
|
|
3106
|
+
field: string;
|
|
3107
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3108
|
+
relationshipField?: string | undefined;
|
|
3109
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
3110
|
+
} | undefined;
|
|
2917
3111
|
readonly visibleWhen?: {
|
|
2918
3112
|
dialect: "cel" | "cron" | "template";
|
|
2919
3113
|
source?: string | undefined;
|
|
@@ -2923,16 +3117,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2923
3117
|
generatedBy?: string | undefined;
|
|
2924
3118
|
} | undefined;
|
|
2925
3119
|
} | undefined;
|
|
3120
|
+
readonly scale?: number | undefined;
|
|
2926
3121
|
readonly searchable?: boolean | undefined;
|
|
2927
3122
|
readonly unique?: boolean | "global" | undefined;
|
|
3123
|
+
readonly defaultValue?: unknown;
|
|
2928
3124
|
readonly maxLength?: number | undefined;
|
|
2929
3125
|
readonly minLength?: number | undefined;
|
|
2930
|
-
readonly scale?: number | undefined;
|
|
2931
3126
|
readonly min?: number | undefined;
|
|
2932
3127
|
readonly max?: number | undefined;
|
|
2933
3128
|
readonly accept?: string[] | undefined;
|
|
2934
3129
|
readonly reference?: string | undefined;
|
|
2935
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2936
3130
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2937
3131
|
readonly inlineTitle?: string | undefined;
|
|
2938
3132
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2949,32 +3143,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2949
3143
|
type?: string | undefined;
|
|
2950
3144
|
})[] | undefined;
|
|
2951
3145
|
readonly lookupPageSize?: number | undefined;
|
|
2952
|
-
readonly lookupFilters?: {
|
|
2953
|
-
field: string;
|
|
2954
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2955
|
-
value: any;
|
|
2956
|
-
}[] | undefined;
|
|
2957
3146
|
readonly dependsOn?: (string | {
|
|
2958
3147
|
field: string;
|
|
2959
3148
|
param?: string | undefined;
|
|
2960
3149
|
})[] | undefined;
|
|
2961
3150
|
readonly allowCreate?: boolean | undefined;
|
|
2962
|
-
readonly expression?: {
|
|
2963
|
-
dialect: "cel" | "cron" | "template";
|
|
2964
|
-
source?: string | undefined;
|
|
2965
|
-
ast?: unknown;
|
|
2966
|
-
meta?: {
|
|
2967
|
-
rationale?: string | undefined;
|
|
2968
|
-
generatedBy?: string | undefined;
|
|
2969
|
-
} | undefined;
|
|
2970
|
-
} | undefined;
|
|
2971
|
-
readonly summaryOperations?: {
|
|
2972
|
-
object: string;
|
|
2973
|
-
field: string;
|
|
2974
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2975
|
-
relationshipField?: string | undefined;
|
|
2976
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2977
|
-
} | undefined;
|
|
2978
3151
|
readonly language?: string | undefined;
|
|
2979
3152
|
readonly step?: number | undefined;
|
|
2980
3153
|
readonly currencyConfig?: {
|
|
@@ -3010,7 +3183,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3010
3183
|
readonly system?: boolean | undefined;
|
|
3011
3184
|
readonly sortable?: boolean | undefined;
|
|
3012
3185
|
readonly inlineHelpText?: string | undefined;
|
|
3013
|
-
readonly
|
|
3186
|
+
readonly externalId?: boolean | undefined;
|
|
3014
3187
|
readonly type: "datetime";
|
|
3015
3188
|
};
|
|
3016
3189
|
};
|
|
@@ -3203,7 +3376,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3203
3376
|
isSystem: boolean;
|
|
3204
3377
|
datasource: string;
|
|
3205
3378
|
fields: Record<string, {
|
|
3206
|
-
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
3379
|
+
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
3207
3380
|
required: boolean;
|
|
3208
3381
|
searchable: boolean;
|
|
3209
3382
|
multiple: boolean;
|
|
@@ -3213,6 +3386,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
3213
3386
|
readonly: boolean;
|
|
3214
3387
|
sortable: boolean;
|
|
3215
3388
|
externalId: boolean;
|
|
3389
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3390
|
+
_lockReason?: string | undefined;
|
|
3391
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3392
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3393
|
+
_packageId?: string | undefined;
|
|
3394
|
+
_packageVersion?: string | undefined;
|
|
3395
|
+
_lockDocsUrl?: string | undefined;
|
|
3216
3396
|
name?: string | undefined;
|
|
3217
3397
|
label?: string | undefined;
|
|
3218
3398
|
description?: string | undefined;
|
|
@@ -3384,7 +3564,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3384
3564
|
pluralLabel?: string | undefined;
|
|
3385
3565
|
description?: string | undefined;
|
|
3386
3566
|
icon?: string | undefined;
|
|
3387
|
-
managedBy?: "
|
|
3567
|
+
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
3388
3568
|
ownership?: "none" | "org" | "user" | undefined;
|
|
3389
3569
|
userActions?: {
|
|
3390
3570
|
create?: boolean | undefined;
|
|
@@ -3479,7 +3659,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3479
3659
|
} | undefined;
|
|
3480
3660
|
indexes?: {
|
|
3481
3661
|
fields: string[];
|
|
3482
|
-
type: "hash" | "
|
|
3662
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
3483
3663
|
unique: boolean | "global";
|
|
3484
3664
|
name?: string | undefined;
|
|
3485
3665
|
partial?: string | undefined;
|
|
@@ -3604,6 +3784,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
3604
3784
|
defaultExpandedDepth?: number | undefined;
|
|
3605
3785
|
} | undefined;
|
|
3606
3786
|
inlineEdit?: boolean | undefined;
|
|
3787
|
+
data?: {
|
|
3788
|
+
provider: "object";
|
|
3789
|
+
object: string;
|
|
3790
|
+
} | {
|
|
3791
|
+
provider: "api";
|
|
3792
|
+
read?: {
|
|
3793
|
+
url: string;
|
|
3794
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
3795
|
+
headers?: Record<string, string> | undefined;
|
|
3796
|
+
params?: Record<string, unknown> | undefined;
|
|
3797
|
+
body?: unknown;
|
|
3798
|
+
} | undefined;
|
|
3799
|
+
write?: {
|
|
3800
|
+
url: string;
|
|
3801
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
3802
|
+
headers?: Record<string, string> | undefined;
|
|
3803
|
+
params?: Record<string, unknown> | undefined;
|
|
3804
|
+
body?: unknown;
|
|
3805
|
+
} | undefined;
|
|
3806
|
+
} | {
|
|
3807
|
+
provider: "value";
|
|
3808
|
+
items: unknown[];
|
|
3809
|
+
} | {
|
|
3810
|
+
provider: "schema";
|
|
3811
|
+
schemaId: string;
|
|
3812
|
+
schema?: Record<string, unknown> | undefined;
|
|
3813
|
+
} | undefined;
|
|
3607
3814
|
navigation?: {
|
|
3608
3815
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
3609
3816
|
preventNavigation: boolean;
|
|
@@ -3636,44 +3843,27 @@ declare const SysApprovalAction: Omit<{
|
|
|
3636
3843
|
}[] | undefined;
|
|
3637
3844
|
order?: number | undefined;
|
|
3638
3845
|
}[] | undefined;
|
|
3639
|
-
data?: {
|
|
3640
|
-
provider: "object";
|
|
3641
|
-
object: string;
|
|
3642
|
-
} | {
|
|
3643
|
-
provider: "api";
|
|
3644
|
-
read?: {
|
|
3645
|
-
url: string;
|
|
3646
|
-
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
3647
|
-
headers?: Record<string, string> | undefined;
|
|
3648
|
-
params?: Record<string, unknown> | undefined;
|
|
3649
|
-
body?: unknown;
|
|
3650
|
-
} | undefined;
|
|
3651
|
-
write?: {
|
|
3652
|
-
url: string;
|
|
3653
|
-
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
3654
|
-
headers?: Record<string, string> | undefined;
|
|
3655
|
-
params?: Record<string, unknown> | undefined;
|
|
3656
|
-
body?: unknown;
|
|
3657
|
-
} | undefined;
|
|
3658
|
-
} | {
|
|
3659
|
-
provider: "value";
|
|
3660
|
-
items: unknown[];
|
|
3661
|
-
} | {
|
|
3662
|
-
provider: "schema";
|
|
3663
|
-
schemaId: string;
|
|
3664
|
-
schema?: Record<string, unknown> | undefined;
|
|
3665
|
-
} | undefined;
|
|
3666
|
-
pagination?: {
|
|
3667
|
-
pageSize: number;
|
|
3668
|
-
pageSizeOptions?: number[] | undefined;
|
|
3669
|
-
} | undefined;
|
|
3670
3846
|
emptyState?: {
|
|
3671
3847
|
title?: string | undefined;
|
|
3672
3848
|
message?: string | undefined;
|
|
3673
3849
|
icon?: string | undefined;
|
|
3674
3850
|
} | undefined;
|
|
3851
|
+
userActions?: {
|
|
3852
|
+
sort: boolean;
|
|
3853
|
+
search: boolean;
|
|
3854
|
+
filter: boolean;
|
|
3855
|
+
refresh: boolean;
|
|
3856
|
+
rowHeight: boolean;
|
|
3857
|
+
addRecordForm: boolean;
|
|
3858
|
+
editInline: boolean;
|
|
3859
|
+
buttons?: string[] | undefined;
|
|
3860
|
+
} | undefined;
|
|
3675
3861
|
responsive?: undefined;
|
|
3676
3862
|
performance?: undefined;
|
|
3863
|
+
appearance?: {
|
|
3864
|
+
showDescription: boolean;
|
|
3865
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
3866
|
+
} | undefined;
|
|
3677
3867
|
resizable?: boolean | undefined;
|
|
3678
3868
|
kanban?: {
|
|
3679
3869
|
groupByField: string;
|
|
@@ -3747,7 +3937,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
3747
3937
|
selection?: {
|
|
3748
3938
|
type: "none" | "multiple" | "single";
|
|
3749
3939
|
} | undefined;
|
|
3750
|
-
|
|
3940
|
+
pagination?: {
|
|
3941
|
+
pageSize: number;
|
|
3942
|
+
pageSizeOptions?: number[] | undefined;
|
|
3943
|
+
} | undefined;
|
|
3944
|
+
grouping?: {
|
|
3751
3945
|
fields: {
|
|
3752
3946
|
field: string;
|
|
3753
3947
|
order: "desc" | "asc";
|
|
@@ -3762,7 +3956,54 @@ declare const SysApprovalAction: Omit<{
|
|
|
3762
3956
|
fieldOrder?: string[] | undefined;
|
|
3763
3957
|
rowActions?: string[] | undefined;
|
|
3764
3958
|
bulkActions?: string[] | undefined;
|
|
3765
|
-
bulkActionDefs?:
|
|
3959
|
+
bulkActionDefs?: {
|
|
3960
|
+
name: string;
|
|
3961
|
+
operation: "delete" | "update" | "custom";
|
|
3962
|
+
label?: string | undefined;
|
|
3963
|
+
icon?: string | undefined;
|
|
3964
|
+
variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
|
|
3965
|
+
execution?: "aggregate" | "perRecord" | undefined;
|
|
3966
|
+
patch?: Record<string, unknown> | undefined;
|
|
3967
|
+
params?: {
|
|
3968
|
+
[x: string]: unknown;
|
|
3969
|
+
name: string;
|
|
3970
|
+
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
3971
|
+
label?: string | undefined;
|
|
3972
|
+
help?: string | undefined;
|
|
3973
|
+
required?: boolean | undefined;
|
|
3974
|
+
default?: unknown;
|
|
3975
|
+
options?: {
|
|
3976
|
+
[x: string]: unknown;
|
|
3977
|
+
label: string;
|
|
3978
|
+
value: string | number | boolean;
|
|
3979
|
+
}[] | undefined;
|
|
3980
|
+
object?: string | undefined;
|
|
3981
|
+
labelField?: string | undefined;
|
|
3982
|
+
multiple?: boolean | undefined;
|
|
3983
|
+
placeholder?: string | undefined;
|
|
3984
|
+
}[] | undefined;
|
|
3985
|
+
confirmText?: string | undefined;
|
|
3986
|
+
confirmLabel?: string | undefined;
|
|
3987
|
+
visible?: {
|
|
3988
|
+
dialect: "cel" | "cron" | "template";
|
|
3989
|
+
source?: string | undefined;
|
|
3990
|
+
ast?: unknown;
|
|
3991
|
+
meta?: {
|
|
3992
|
+
rationale?: string | undefined;
|
|
3993
|
+
generatedBy?: string | undefined;
|
|
3994
|
+
} | undefined;
|
|
3995
|
+
} | {
|
|
3996
|
+
dialect: "cel" | "cron" | "template";
|
|
3997
|
+
source?: string | undefined;
|
|
3998
|
+
ast?: unknown;
|
|
3999
|
+
meta?: {
|
|
4000
|
+
rationale?: string | undefined;
|
|
4001
|
+
generatedBy?: string | undefined;
|
|
4002
|
+
} | undefined;
|
|
4003
|
+
} | undefined;
|
|
4004
|
+
maxRecords?: number | undefined;
|
|
4005
|
+
batchSize?: number | undefined;
|
|
4006
|
+
}[] | undefined;
|
|
3766
4007
|
virtualScroll?: boolean | undefined;
|
|
3767
4008
|
conditionalFormatting?: {
|
|
3768
4009
|
condition: {
|
|
@@ -3785,20 +4026,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
3785
4026
|
style: Record<string, string>;
|
|
3786
4027
|
}[] | undefined;
|
|
3787
4028
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
3788
|
-
userActions?: {
|
|
3789
|
-
sort: boolean;
|
|
3790
|
-
search: boolean;
|
|
3791
|
-
filter: boolean;
|
|
3792
|
-
refresh: boolean;
|
|
3793
|
-
rowHeight: boolean;
|
|
3794
|
-
addRecordForm: boolean;
|
|
3795
|
-
editInline: boolean;
|
|
3796
|
-
buttons?: string[] | undefined;
|
|
3797
|
-
} | undefined;
|
|
3798
|
-
appearance?: {
|
|
3799
|
-
showDescription: boolean;
|
|
3800
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
3801
|
-
} | undefined;
|
|
3802
4029
|
addRecord?: {
|
|
3803
4030
|
enabled: boolean;
|
|
3804
4031
|
position: "top" | "bottom" | "both";
|
|
@@ -3849,6 +4076,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
3849
4076
|
label: string;
|
|
3850
4077
|
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
3851
4078
|
refreshAfter: boolean;
|
|
4079
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4080
|
+
_lockReason?: string | undefined;
|
|
4081
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4082
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4083
|
+
_packageId?: string | undefined;
|
|
4084
|
+
_packageVersion?: string | undefined;
|
|
4085
|
+
_lockDocsUrl?: string | undefined;
|
|
3852
4086
|
objectName?: string | undefined;
|
|
3853
4087
|
icon?: string | undefined;
|
|
3854
4088
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
@@ -3861,7 +4095,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3861
4095
|
} | {
|
|
3862
4096
|
language: "js";
|
|
3863
4097
|
source: string;
|
|
3864
|
-
capabilities: ("
|
|
4098
|
+
capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
|
|
3865
4099
|
timeoutMs?: number | undefined;
|
|
3866
4100
|
memoryMb?: number | undefined;
|
|
3867
4101
|
} | undefined;
|
|
@@ -3872,7 +4106,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3872
4106
|
field?: string | undefined;
|
|
3873
4107
|
objectOverride?: string | undefined;
|
|
3874
4108
|
label?: string | undefined;
|
|
3875
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
4109
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "user" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
3876
4110
|
options?: {
|
|
3877
4111
|
label: string;
|
|
3878
4112
|
value: string;
|
|
@@ -3979,7 +4213,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3979
4213
|
readonly displayNameField: "id";
|
|
3980
4214
|
readonly nameField: "id";
|
|
3981
4215
|
readonly titleFormat: "{action} · {step_name}";
|
|
3982
|
-
readonly highlightFields: ["request_id", "step_name", "action", "actor_id", "created_at"];
|
|
4216
|
+
readonly highlightFields: ["request_id", "step_name", "action", "actor_id", "via_override", "created_at"];
|
|
3983
4217
|
readonly fileAccessDelegate: "approvals";
|
|
3984
4218
|
readonly listViews: {
|
|
3985
4219
|
readonly recent: {
|
|
@@ -3990,7 +4224,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3990
4224
|
readonly provider: "object";
|
|
3991
4225
|
readonly object: "sys_approval_action";
|
|
3992
4226
|
};
|
|
3993
|
-
readonly columns: ["created_at", "request_id", "step_name", "action", "actor_id", "comment"];
|
|
4227
|
+
readonly columns: ["created_at", "request_id", "step_name", "action", "actor_id", "via_override", "comment"];
|
|
3994
4228
|
readonly sort: [{
|
|
3995
4229
|
readonly field: "created_at";
|
|
3996
4230
|
readonly order: "desc";
|
|
@@ -4038,7 +4272,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4038
4272
|
readonly provider: "object";
|
|
4039
4273
|
readonly object: "sys_approval_action";
|
|
4040
4274
|
};
|
|
4041
|
-
readonly columns: ["created_at", "request_id", "step_name", "action", "actor_id", "comment"];
|
|
4275
|
+
readonly columns: ["created_at", "request_id", "step_name", "action", "actor_id", "via_override", "comment"];
|
|
4042
4276
|
readonly sort: [{
|
|
4043
4277
|
readonly field: "created_at";
|
|
4044
4278
|
readonly order: "desc";
|
|
@@ -4079,8 +4313,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4079
4313
|
notNull?: boolean | undefined;
|
|
4080
4314
|
} | undefined;
|
|
4081
4315
|
readonly maxSize?: number | undefined;
|
|
4082
|
-
readonly
|
|
4083
|
-
readonly
|
|
4316
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4317
|
+
readonly _lockReason?: string | undefined;
|
|
4318
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4319
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
4320
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4321
|
+
readonly _packageId?: string | undefined;
|
|
4322
|
+
readonly _packageVersion?: string | undefined;
|
|
4323
|
+
readonly lookupFilters?: {
|
|
4324
|
+
field: string;
|
|
4325
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4326
|
+
value: any;
|
|
4327
|
+
}[] | undefined;
|
|
4328
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4329
|
+
readonly expression?: {
|
|
4330
|
+
dialect: "cel" | "cron" | "template";
|
|
4331
|
+
source?: string | undefined;
|
|
4332
|
+
ast?: unknown;
|
|
4333
|
+
meta?: {
|
|
4334
|
+
rationale?: string | undefined;
|
|
4335
|
+
generatedBy?: string | undefined;
|
|
4336
|
+
} | undefined;
|
|
4337
|
+
} | undefined;
|
|
4338
|
+
readonly autonumberFormat?: string | undefined;
|
|
4339
|
+
readonly summaryOperations?: {
|
|
4340
|
+
object: string;
|
|
4341
|
+
field: string;
|
|
4342
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4343
|
+
relationshipField?: string | undefined;
|
|
4344
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4345
|
+
} | undefined;
|
|
4084
4346
|
readonly visibleWhen?: {
|
|
4085
4347
|
dialect: "cel" | "cron" | "template";
|
|
4086
4348
|
source?: string | undefined;
|
|
@@ -4090,16 +4352,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4090
4352
|
generatedBy?: string | undefined;
|
|
4091
4353
|
} | undefined;
|
|
4092
4354
|
} | undefined;
|
|
4355
|
+
readonly scale?: number | undefined;
|
|
4093
4356
|
readonly searchable?: boolean | undefined;
|
|
4094
4357
|
readonly unique?: boolean | "global" | undefined;
|
|
4358
|
+
readonly defaultValue?: unknown;
|
|
4095
4359
|
readonly maxLength?: number | undefined;
|
|
4096
4360
|
readonly minLength?: number | undefined;
|
|
4097
|
-
readonly scale?: number | undefined;
|
|
4098
4361
|
readonly min?: number | undefined;
|
|
4099
4362
|
readonly max?: number | undefined;
|
|
4100
4363
|
readonly accept?: string[] | undefined;
|
|
4101
4364
|
readonly reference?: string | undefined;
|
|
4102
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4103
4365
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4104
4366
|
readonly inlineTitle?: string | undefined;
|
|
4105
4367
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4116,32 +4378,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4116
4378
|
type?: string | undefined;
|
|
4117
4379
|
})[] | undefined;
|
|
4118
4380
|
readonly lookupPageSize?: number | undefined;
|
|
4119
|
-
readonly lookupFilters?: {
|
|
4120
|
-
field: string;
|
|
4121
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4122
|
-
value: any;
|
|
4123
|
-
}[] | undefined;
|
|
4124
4381
|
readonly dependsOn?: (string | {
|
|
4125
4382
|
field: string;
|
|
4126
4383
|
param?: string | undefined;
|
|
4127
4384
|
})[] | undefined;
|
|
4128
4385
|
readonly allowCreate?: boolean | undefined;
|
|
4129
|
-
readonly expression?: {
|
|
4130
|
-
dialect: "cel" | "cron" | "template";
|
|
4131
|
-
source?: string | undefined;
|
|
4132
|
-
ast?: unknown;
|
|
4133
|
-
meta?: {
|
|
4134
|
-
rationale?: string | undefined;
|
|
4135
|
-
generatedBy?: string | undefined;
|
|
4136
|
-
} | undefined;
|
|
4137
|
-
} | undefined;
|
|
4138
|
-
readonly summaryOperations?: {
|
|
4139
|
-
object: string;
|
|
4140
|
-
field: string;
|
|
4141
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4142
|
-
relationshipField?: string | undefined;
|
|
4143
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4144
|
-
} | undefined;
|
|
4145
4386
|
readonly language?: string | undefined;
|
|
4146
4387
|
readonly step?: number | undefined;
|
|
4147
4388
|
readonly currencyConfig?: {
|
|
@@ -4177,7 +4418,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4177
4418
|
readonly system?: boolean | undefined;
|
|
4178
4419
|
readonly sortable?: boolean | undefined;
|
|
4179
4420
|
readonly inlineHelpText?: string | undefined;
|
|
4180
|
-
readonly
|
|
4421
|
+
readonly externalId?: boolean | undefined;
|
|
4181
4422
|
readonly type: "text";
|
|
4182
4423
|
};
|
|
4183
4424
|
readonly organization_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -4227,8 +4468,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4227
4468
|
notNull?: boolean | undefined;
|
|
4228
4469
|
} | undefined;
|
|
4229
4470
|
readonly maxSize?: number | undefined;
|
|
4230
|
-
readonly
|
|
4231
|
-
readonly
|
|
4471
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4472
|
+
readonly _lockReason?: string | undefined;
|
|
4473
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4474
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
4475
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4476
|
+
readonly _packageId?: string | undefined;
|
|
4477
|
+
readonly _packageVersion?: string | undefined;
|
|
4478
|
+
readonly lookupFilters?: {
|
|
4479
|
+
field: string;
|
|
4480
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4481
|
+
value: any;
|
|
4482
|
+
}[] | undefined;
|
|
4483
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4484
|
+
readonly expression?: {
|
|
4485
|
+
dialect: "cel" | "cron" | "template";
|
|
4486
|
+
source?: string | undefined;
|
|
4487
|
+
ast?: unknown;
|
|
4488
|
+
meta?: {
|
|
4489
|
+
rationale?: string | undefined;
|
|
4490
|
+
generatedBy?: string | undefined;
|
|
4491
|
+
} | undefined;
|
|
4492
|
+
} | undefined;
|
|
4493
|
+
readonly autonumberFormat?: string | undefined;
|
|
4494
|
+
readonly summaryOperations?: {
|
|
4495
|
+
object: string;
|
|
4496
|
+
field: string;
|
|
4497
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4498
|
+
relationshipField?: string | undefined;
|
|
4499
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4500
|
+
} | undefined;
|
|
4232
4501
|
readonly visibleWhen?: {
|
|
4233
4502
|
dialect: "cel" | "cron" | "template";
|
|
4234
4503
|
source?: string | undefined;
|
|
@@ -4238,16 +4507,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4238
4507
|
generatedBy?: string | undefined;
|
|
4239
4508
|
} | undefined;
|
|
4240
4509
|
} | undefined;
|
|
4510
|
+
readonly scale?: number | undefined;
|
|
4241
4511
|
readonly searchable?: boolean | undefined;
|
|
4242
4512
|
readonly unique?: boolean | "global" | undefined;
|
|
4513
|
+
readonly defaultValue?: unknown;
|
|
4243
4514
|
readonly maxLength?: number | undefined;
|
|
4244
4515
|
readonly minLength?: number | undefined;
|
|
4245
|
-
readonly scale?: number | undefined;
|
|
4246
4516
|
readonly min?: number | undefined;
|
|
4247
4517
|
readonly max?: number | undefined;
|
|
4248
4518
|
readonly accept?: string[] | undefined;
|
|
4249
4519
|
readonly reference?: string | undefined;
|
|
4250
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4251
4520
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4252
4521
|
readonly inlineTitle?: string | undefined;
|
|
4253
4522
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4264,32 +4533,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4264
4533
|
type?: string | undefined;
|
|
4265
4534
|
})[] | undefined;
|
|
4266
4535
|
readonly lookupPageSize?: number | undefined;
|
|
4267
|
-
readonly lookupFilters?: {
|
|
4268
|
-
field: string;
|
|
4269
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4270
|
-
value: any;
|
|
4271
|
-
}[] | undefined;
|
|
4272
4536
|
readonly dependsOn?: (string | {
|
|
4273
4537
|
field: string;
|
|
4274
4538
|
param?: string | undefined;
|
|
4275
4539
|
})[] | undefined;
|
|
4276
4540
|
readonly allowCreate?: boolean | undefined;
|
|
4277
|
-
readonly expression?: {
|
|
4278
|
-
dialect: "cel" | "cron" | "template";
|
|
4279
|
-
source?: string | undefined;
|
|
4280
|
-
ast?: unknown;
|
|
4281
|
-
meta?: {
|
|
4282
|
-
rationale?: string | undefined;
|
|
4283
|
-
generatedBy?: string | undefined;
|
|
4284
|
-
} | undefined;
|
|
4285
|
-
} | undefined;
|
|
4286
|
-
readonly summaryOperations?: {
|
|
4287
|
-
object: string;
|
|
4288
|
-
field: string;
|
|
4289
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4290
|
-
relationshipField?: string | undefined;
|
|
4291
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4292
|
-
} | undefined;
|
|
4293
4541
|
readonly language?: string | undefined;
|
|
4294
4542
|
readonly step?: number | undefined;
|
|
4295
4543
|
readonly currencyConfig?: {
|
|
@@ -4325,7 +4573,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4325
4573
|
readonly system?: boolean | undefined;
|
|
4326
4574
|
readonly sortable?: boolean | undefined;
|
|
4327
4575
|
readonly inlineHelpText?: string | undefined;
|
|
4328
|
-
readonly
|
|
4576
|
+
readonly externalId?: boolean | undefined;
|
|
4329
4577
|
readonly type: "text";
|
|
4330
4578
|
};
|
|
4331
4579
|
readonly step_index: {
|
|
@@ -4358,8 +4606,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4358
4606
|
notNull?: boolean | undefined;
|
|
4359
4607
|
} | undefined;
|
|
4360
4608
|
readonly maxSize?: number | undefined;
|
|
4361
|
-
readonly
|
|
4362
|
-
readonly
|
|
4609
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4610
|
+
readonly _lockReason?: string | undefined;
|
|
4611
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4612
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
4613
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4614
|
+
readonly _packageId?: string | undefined;
|
|
4615
|
+
readonly _packageVersion?: string | undefined;
|
|
4616
|
+
readonly lookupFilters?: {
|
|
4617
|
+
field: string;
|
|
4618
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4619
|
+
value: any;
|
|
4620
|
+
}[] | undefined;
|
|
4621
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4622
|
+
readonly expression?: {
|
|
4623
|
+
dialect: "cel" | "cron" | "template";
|
|
4624
|
+
source?: string | undefined;
|
|
4625
|
+
ast?: unknown;
|
|
4626
|
+
meta?: {
|
|
4627
|
+
rationale?: string | undefined;
|
|
4628
|
+
generatedBy?: string | undefined;
|
|
4629
|
+
} | undefined;
|
|
4630
|
+
} | undefined;
|
|
4631
|
+
readonly autonumberFormat?: string | undefined;
|
|
4632
|
+
readonly summaryOperations?: {
|
|
4633
|
+
object: string;
|
|
4634
|
+
field: string;
|
|
4635
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4636
|
+
relationshipField?: string | undefined;
|
|
4637
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4638
|
+
} | undefined;
|
|
4363
4639
|
readonly visibleWhen?: {
|
|
4364
4640
|
dialect: "cel" | "cron" | "template";
|
|
4365
4641
|
source?: string | undefined;
|
|
@@ -4369,16 +4645,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4369
4645
|
generatedBy?: string | undefined;
|
|
4370
4646
|
} | undefined;
|
|
4371
4647
|
} | undefined;
|
|
4648
|
+
readonly scale?: number | undefined;
|
|
4372
4649
|
readonly searchable?: boolean | undefined;
|
|
4373
4650
|
readonly unique?: boolean | "global" | undefined;
|
|
4651
|
+
readonly defaultValue?: unknown;
|
|
4374
4652
|
readonly maxLength?: number | undefined;
|
|
4375
4653
|
readonly minLength?: number | undefined;
|
|
4376
|
-
readonly scale?: number | undefined;
|
|
4377
4654
|
readonly min?: number | undefined;
|
|
4378
4655
|
readonly max?: number | undefined;
|
|
4379
4656
|
readonly accept?: string[] | undefined;
|
|
4380
4657
|
readonly reference?: string | undefined;
|
|
4381
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4382
4658
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4383
4659
|
readonly inlineTitle?: string | undefined;
|
|
4384
4660
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4395,32 +4671,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4395
4671
|
type?: string | undefined;
|
|
4396
4672
|
})[] | undefined;
|
|
4397
4673
|
readonly lookupPageSize?: number | undefined;
|
|
4398
|
-
readonly lookupFilters?: {
|
|
4399
|
-
field: string;
|
|
4400
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4401
|
-
value: any;
|
|
4402
|
-
}[] | undefined;
|
|
4403
4674
|
readonly dependsOn?: (string | {
|
|
4404
4675
|
field: string;
|
|
4405
4676
|
param?: string | undefined;
|
|
4406
4677
|
})[] | undefined;
|
|
4407
4678
|
readonly allowCreate?: boolean | undefined;
|
|
4408
|
-
readonly expression?: {
|
|
4409
|
-
dialect: "cel" | "cron" | "template";
|
|
4410
|
-
source?: string | undefined;
|
|
4411
|
-
ast?: unknown;
|
|
4412
|
-
meta?: {
|
|
4413
|
-
rationale?: string | undefined;
|
|
4414
|
-
generatedBy?: string | undefined;
|
|
4415
|
-
} | undefined;
|
|
4416
|
-
} | undefined;
|
|
4417
|
-
readonly summaryOperations?: {
|
|
4418
|
-
object: string;
|
|
4419
|
-
field: string;
|
|
4420
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4421
|
-
relationshipField?: string | undefined;
|
|
4422
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4423
|
-
} | undefined;
|
|
4424
4679
|
readonly language?: string | undefined;
|
|
4425
4680
|
readonly step?: number | undefined;
|
|
4426
4681
|
readonly currencyConfig?: {
|
|
@@ -4456,7 +4711,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4456
4711
|
readonly system?: boolean | undefined;
|
|
4457
4712
|
readonly sortable?: boolean | undefined;
|
|
4458
4713
|
readonly inlineHelpText?: string | undefined;
|
|
4459
|
-
readonly
|
|
4714
|
+
readonly externalId?: boolean | undefined;
|
|
4460
4715
|
readonly type: "number";
|
|
4461
4716
|
};
|
|
4462
4717
|
readonly action: {
|
|
@@ -4489,8 +4744,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4489
4744
|
notNull?: boolean | undefined;
|
|
4490
4745
|
} | undefined;
|
|
4491
4746
|
readonly maxSize?: number | undefined;
|
|
4492
|
-
readonly
|
|
4493
|
-
readonly
|
|
4747
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4748
|
+
readonly _lockReason?: string | undefined;
|
|
4749
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4750
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
4751
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4752
|
+
readonly _packageId?: string | undefined;
|
|
4753
|
+
readonly _packageVersion?: string | undefined;
|
|
4754
|
+
readonly lookupFilters?: {
|
|
4755
|
+
field: string;
|
|
4756
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4757
|
+
value: any;
|
|
4758
|
+
}[] | undefined;
|
|
4759
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4760
|
+
readonly expression?: {
|
|
4761
|
+
dialect: "cel" | "cron" | "template";
|
|
4762
|
+
source?: string | undefined;
|
|
4763
|
+
ast?: unknown;
|
|
4764
|
+
meta?: {
|
|
4765
|
+
rationale?: string | undefined;
|
|
4766
|
+
generatedBy?: string | undefined;
|
|
4767
|
+
} | undefined;
|
|
4768
|
+
} | undefined;
|
|
4769
|
+
readonly autonumberFormat?: string | undefined;
|
|
4770
|
+
readonly summaryOperations?: {
|
|
4771
|
+
object: string;
|
|
4772
|
+
field: string;
|
|
4773
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4774
|
+
relationshipField?: string | undefined;
|
|
4775
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4776
|
+
} | undefined;
|
|
4494
4777
|
readonly visibleWhen?: {
|
|
4495
4778
|
dialect: "cel" | "cron" | "template";
|
|
4496
4779
|
source?: string | undefined;
|
|
@@ -4500,16 +4783,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4500
4783
|
generatedBy?: string | undefined;
|
|
4501
4784
|
} | undefined;
|
|
4502
4785
|
} | undefined;
|
|
4786
|
+
readonly scale?: number | undefined;
|
|
4503
4787
|
readonly searchable?: boolean | undefined;
|
|
4504
4788
|
readonly unique?: boolean | "global" | undefined;
|
|
4789
|
+
readonly defaultValue?: unknown;
|
|
4505
4790
|
readonly maxLength?: number | undefined;
|
|
4506
4791
|
readonly minLength?: number | undefined;
|
|
4507
|
-
readonly scale?: number | undefined;
|
|
4508
4792
|
readonly min?: number | undefined;
|
|
4509
4793
|
readonly max?: number | undefined;
|
|
4510
4794
|
readonly accept?: string[] | undefined;
|
|
4511
4795
|
readonly reference?: string | undefined;
|
|
4512
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4513
4796
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4514
4797
|
readonly inlineTitle?: string | undefined;
|
|
4515
4798
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4526,32 +4809,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4526
4809
|
type?: string | undefined;
|
|
4527
4810
|
})[] | undefined;
|
|
4528
4811
|
readonly lookupPageSize?: number | undefined;
|
|
4529
|
-
readonly lookupFilters?: {
|
|
4530
|
-
field: string;
|
|
4531
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4532
|
-
value: any;
|
|
4533
|
-
}[] | undefined;
|
|
4534
4812
|
readonly dependsOn?: (string | {
|
|
4535
4813
|
field: string;
|
|
4536
4814
|
param?: string | undefined;
|
|
4537
4815
|
})[] | undefined;
|
|
4538
4816
|
readonly allowCreate?: boolean | undefined;
|
|
4539
|
-
readonly expression?: {
|
|
4540
|
-
dialect: "cel" | "cron" | "template";
|
|
4541
|
-
source?: string | undefined;
|
|
4542
|
-
ast?: unknown;
|
|
4543
|
-
meta?: {
|
|
4544
|
-
rationale?: string | undefined;
|
|
4545
|
-
generatedBy?: string | undefined;
|
|
4546
|
-
} | undefined;
|
|
4547
|
-
} | undefined;
|
|
4548
|
-
readonly summaryOperations?: {
|
|
4549
|
-
object: string;
|
|
4550
|
-
field: string;
|
|
4551
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4552
|
-
relationshipField?: string | undefined;
|
|
4553
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4554
|
-
} | undefined;
|
|
4555
4817
|
readonly language?: string | undefined;
|
|
4556
4818
|
readonly step?: number | undefined;
|
|
4557
4819
|
readonly currencyConfig?: {
|
|
@@ -4587,7 +4849,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4587
4849
|
readonly system?: boolean | undefined;
|
|
4588
4850
|
readonly sortable?: boolean | undefined;
|
|
4589
4851
|
readonly inlineHelpText?: string | undefined;
|
|
4590
|
-
readonly
|
|
4852
|
+
readonly externalId?: boolean | undefined;
|
|
4591
4853
|
readonly type: "select";
|
|
4592
4854
|
};
|
|
4593
4855
|
readonly actor_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -4628,8 +4890,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4628
4890
|
notNull?: boolean | undefined;
|
|
4629
4891
|
} | undefined;
|
|
4630
4892
|
readonly maxSize?: number | undefined;
|
|
4631
|
-
readonly
|
|
4632
|
-
readonly
|
|
4893
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4894
|
+
readonly _lockReason?: string | undefined;
|
|
4895
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4896
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
4897
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4898
|
+
readonly _packageId?: string | undefined;
|
|
4899
|
+
readonly _packageVersion?: string | undefined;
|
|
4900
|
+
readonly lookupFilters?: {
|
|
4901
|
+
field: string;
|
|
4902
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4903
|
+
value: any;
|
|
4904
|
+
}[] | undefined;
|
|
4905
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4906
|
+
readonly expression?: {
|
|
4907
|
+
dialect: "cel" | "cron" | "template";
|
|
4908
|
+
source?: string | undefined;
|
|
4909
|
+
ast?: unknown;
|
|
4910
|
+
meta?: {
|
|
4911
|
+
rationale?: string | undefined;
|
|
4912
|
+
generatedBy?: string | undefined;
|
|
4913
|
+
} | undefined;
|
|
4914
|
+
} | undefined;
|
|
4915
|
+
readonly autonumberFormat?: string | undefined;
|
|
4916
|
+
readonly summaryOperations?: {
|
|
4917
|
+
object: string;
|
|
4918
|
+
field: string;
|
|
4919
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4920
|
+
relationshipField?: string | undefined;
|
|
4921
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4922
|
+
} | undefined;
|
|
4633
4923
|
readonly visibleWhen?: {
|
|
4634
4924
|
dialect: "cel" | "cron" | "template";
|
|
4635
4925
|
source?: string | undefined;
|
|
@@ -4639,16 +4929,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4639
4929
|
generatedBy?: string | undefined;
|
|
4640
4930
|
} | undefined;
|
|
4641
4931
|
} | undefined;
|
|
4932
|
+
readonly scale?: number | undefined;
|
|
4642
4933
|
readonly searchable?: boolean | undefined;
|
|
4643
4934
|
readonly unique?: boolean | "global" | undefined;
|
|
4935
|
+
readonly defaultValue?: unknown;
|
|
4644
4936
|
readonly maxLength?: number | undefined;
|
|
4645
4937
|
readonly minLength?: number | undefined;
|
|
4646
|
-
readonly scale?: number | undefined;
|
|
4647
4938
|
readonly min?: number | undefined;
|
|
4648
4939
|
readonly max?: number | undefined;
|
|
4649
4940
|
readonly accept?: string[] | undefined;
|
|
4650
4941
|
readonly reference?: string | undefined;
|
|
4651
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4652
4942
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4653
4943
|
readonly inlineTitle?: string | undefined;
|
|
4654
4944
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4665,16 +4955,92 @@ declare const SysApprovalAction: Omit<{
|
|
|
4665
4955
|
type?: string | undefined;
|
|
4666
4956
|
})[] | undefined;
|
|
4667
4957
|
readonly lookupPageSize?: number | undefined;
|
|
4668
|
-
readonly lookupFilters?: {
|
|
4669
|
-
field: string;
|
|
4670
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4671
|
-
value: any;
|
|
4672
|
-
}[] | undefined;
|
|
4673
4958
|
readonly dependsOn?: (string | {
|
|
4674
4959
|
field: string;
|
|
4675
4960
|
param?: string | undefined;
|
|
4676
4961
|
})[] | undefined;
|
|
4677
4962
|
readonly allowCreate?: boolean | undefined;
|
|
4963
|
+
readonly language?: string | undefined;
|
|
4964
|
+
readonly step?: number | undefined;
|
|
4965
|
+
readonly currencyConfig?: {
|
|
4966
|
+
precision: number;
|
|
4967
|
+
currencyMode: "fixed" | "dynamic";
|
|
4968
|
+
defaultCurrency: string;
|
|
4969
|
+
} | undefined;
|
|
4970
|
+
readonly dimensions?: number | undefined;
|
|
4971
|
+
readonly trackHistory?: boolean | undefined;
|
|
4972
|
+
readonly group?: string | undefined;
|
|
4973
|
+
readonly readonlyWhen?: {
|
|
4974
|
+
dialect: "cel" | "cron" | "template";
|
|
4975
|
+
source?: string | undefined;
|
|
4976
|
+
ast?: unknown;
|
|
4977
|
+
meta?: {
|
|
4978
|
+
rationale?: string | undefined;
|
|
4979
|
+
generatedBy?: string | undefined;
|
|
4980
|
+
} | undefined;
|
|
4981
|
+
} | undefined;
|
|
4982
|
+
readonly requiredWhen?: {
|
|
4983
|
+
dialect: "cel" | "cron" | "template";
|
|
4984
|
+
source?: string | undefined;
|
|
4985
|
+
ast?: unknown;
|
|
4986
|
+
meta?: {
|
|
4987
|
+
rationale?: string | undefined;
|
|
4988
|
+
generatedBy?: string | undefined;
|
|
4989
|
+
} | undefined;
|
|
4990
|
+
} | undefined;
|
|
4991
|
+
readonly conditionalRequired?: undefined;
|
|
4992
|
+
readonly hidden?: boolean | undefined;
|
|
4993
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4994
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
4995
|
+
readonly system?: boolean | undefined;
|
|
4996
|
+
readonly sortable?: boolean | undefined;
|
|
4997
|
+
readonly inlineHelpText?: string | undefined;
|
|
4998
|
+
readonly externalId?: boolean | undefined;
|
|
4999
|
+
readonly type: "textarea";
|
|
5000
|
+
};
|
|
5001
|
+
readonly via_override: {
|
|
5002
|
+
readonly readonly?: boolean | undefined;
|
|
5003
|
+
readonly format?: string | undefined;
|
|
5004
|
+
readonly options?: {
|
|
5005
|
+
label: string;
|
|
5006
|
+
value: string;
|
|
5007
|
+
color?: string | undefined;
|
|
5008
|
+
default?: boolean | undefined;
|
|
5009
|
+
visibleWhen?: {
|
|
5010
|
+
dialect: "cel" | "cron" | "template";
|
|
5011
|
+
source?: string | undefined;
|
|
5012
|
+
ast?: unknown;
|
|
5013
|
+
meta?: {
|
|
5014
|
+
rationale?: string | undefined;
|
|
5015
|
+
generatedBy?: string | undefined;
|
|
5016
|
+
} | undefined;
|
|
5017
|
+
} | undefined;
|
|
5018
|
+
}[] | undefined;
|
|
5019
|
+
readonly description?: string | undefined;
|
|
5020
|
+
readonly label?: string | undefined;
|
|
5021
|
+
readonly name?: string | undefined;
|
|
5022
|
+
readonly precision?: number | undefined;
|
|
5023
|
+
readonly required?: boolean | undefined;
|
|
5024
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5025
|
+
readonly widget?: string | undefined;
|
|
5026
|
+
readonly multiple?: boolean | undefined;
|
|
5027
|
+
readonly storage?: {
|
|
5028
|
+
notNull?: boolean | undefined;
|
|
5029
|
+
} | undefined;
|
|
5030
|
+
readonly maxSize?: number | undefined;
|
|
5031
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5032
|
+
readonly _lockReason?: string | undefined;
|
|
5033
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5034
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
5035
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5036
|
+
readonly _packageId?: string | undefined;
|
|
5037
|
+
readonly _packageVersion?: string | undefined;
|
|
5038
|
+
readonly lookupFilters?: {
|
|
5039
|
+
field: string;
|
|
5040
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
5041
|
+
value: any;
|
|
5042
|
+
}[] | undefined;
|
|
5043
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4678
5044
|
readonly expression?: {
|
|
4679
5045
|
dialect: "cel" | "cron" | "template";
|
|
4680
5046
|
source?: string | undefined;
|
|
@@ -4684,6 +5050,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4684
5050
|
generatedBy?: string | undefined;
|
|
4685
5051
|
} | undefined;
|
|
4686
5052
|
} | undefined;
|
|
5053
|
+
readonly autonumberFormat?: string | undefined;
|
|
4687
5054
|
readonly summaryOperations?: {
|
|
4688
5055
|
object: string;
|
|
4689
5056
|
field: string;
|
|
@@ -4691,6 +5058,46 @@ declare const SysApprovalAction: Omit<{
|
|
|
4691
5058
|
relationshipField?: string | undefined;
|
|
4692
5059
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4693
5060
|
} | undefined;
|
|
5061
|
+
readonly visibleWhen?: {
|
|
5062
|
+
dialect: "cel" | "cron" | "template";
|
|
5063
|
+
source?: string | undefined;
|
|
5064
|
+
ast?: unknown;
|
|
5065
|
+
meta?: {
|
|
5066
|
+
rationale?: string | undefined;
|
|
5067
|
+
generatedBy?: string | undefined;
|
|
5068
|
+
} | undefined;
|
|
5069
|
+
} | undefined;
|
|
5070
|
+
readonly scale?: number | undefined;
|
|
5071
|
+
readonly searchable?: boolean | undefined;
|
|
5072
|
+
readonly unique?: boolean | "global" | undefined;
|
|
5073
|
+
readonly defaultValue?: unknown;
|
|
5074
|
+
readonly maxLength?: number | undefined;
|
|
5075
|
+
readonly minLength?: number | undefined;
|
|
5076
|
+
readonly min?: number | undefined;
|
|
5077
|
+
readonly max?: number | undefined;
|
|
5078
|
+
readonly accept?: string[] | undefined;
|
|
5079
|
+
readonly reference?: string | undefined;
|
|
5080
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5081
|
+
readonly inlineTitle?: string | undefined;
|
|
5082
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5083
|
+
readonly inlineAmountField?: string | undefined;
|
|
5084
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5085
|
+
readonly relatedListTitle?: string | undefined;
|
|
5086
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5087
|
+
readonly displayField?: string | undefined;
|
|
5088
|
+
readonly descriptionField?: string | undefined;
|
|
5089
|
+
readonly lookupColumns?: (string | {
|
|
5090
|
+
field: string;
|
|
5091
|
+
label?: string | undefined;
|
|
5092
|
+
width?: string | undefined;
|
|
5093
|
+
type?: string | undefined;
|
|
5094
|
+
})[] | undefined;
|
|
5095
|
+
readonly lookupPageSize?: number | undefined;
|
|
5096
|
+
readonly dependsOn?: (string | {
|
|
5097
|
+
field: string;
|
|
5098
|
+
param?: string | undefined;
|
|
5099
|
+
})[] | undefined;
|
|
5100
|
+
readonly allowCreate?: boolean | undefined;
|
|
4694
5101
|
readonly language?: string | undefined;
|
|
4695
5102
|
readonly step?: number | undefined;
|
|
4696
5103
|
readonly currencyConfig?: {
|
|
@@ -4726,8 +5133,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
4726
5133
|
readonly system?: boolean | undefined;
|
|
4727
5134
|
readonly sortable?: boolean | undefined;
|
|
4728
5135
|
readonly inlineHelpText?: string | undefined;
|
|
4729
|
-
readonly
|
|
4730
|
-
readonly type: "
|
|
5136
|
+
readonly externalId?: boolean | undefined;
|
|
5137
|
+
readonly type: "boolean";
|
|
4731
5138
|
};
|
|
4732
5139
|
readonly reassign_from: _objectstack_spec_data.FieldInput & {
|
|
4733
5140
|
readonly label: "Reassigned From";
|
|
@@ -4777,8 +5184,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4777
5184
|
notNull?: boolean | undefined;
|
|
4778
5185
|
} | undefined;
|
|
4779
5186
|
readonly maxSize?: number | undefined;
|
|
4780
|
-
readonly
|
|
4781
|
-
readonly
|
|
5187
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5188
|
+
readonly _lockReason?: string | undefined;
|
|
5189
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5190
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
5191
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5192
|
+
readonly _packageId?: string | undefined;
|
|
5193
|
+
readonly _packageVersion?: string | undefined;
|
|
5194
|
+
readonly lookupFilters?: {
|
|
5195
|
+
field: string;
|
|
5196
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
5197
|
+
value: any;
|
|
5198
|
+
}[] | undefined;
|
|
5199
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5200
|
+
readonly expression?: {
|
|
5201
|
+
dialect: "cel" | "cron" | "template";
|
|
5202
|
+
source?: string | undefined;
|
|
5203
|
+
ast?: unknown;
|
|
5204
|
+
meta?: {
|
|
5205
|
+
rationale?: string | undefined;
|
|
5206
|
+
generatedBy?: string | undefined;
|
|
5207
|
+
} | undefined;
|
|
5208
|
+
} | undefined;
|
|
5209
|
+
readonly autonumberFormat?: string | undefined;
|
|
5210
|
+
readonly summaryOperations?: {
|
|
5211
|
+
object: string;
|
|
5212
|
+
field: string;
|
|
5213
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5214
|
+
relationshipField?: string | undefined;
|
|
5215
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
5216
|
+
} | undefined;
|
|
4782
5217
|
readonly visibleWhen?: {
|
|
4783
5218
|
dialect: "cel" | "cron" | "template";
|
|
4784
5219
|
source?: string | undefined;
|
|
@@ -4788,16 +5223,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4788
5223
|
generatedBy?: string | undefined;
|
|
4789
5224
|
} | undefined;
|
|
4790
5225
|
} | undefined;
|
|
5226
|
+
readonly scale?: number | undefined;
|
|
4791
5227
|
readonly searchable?: boolean | undefined;
|
|
4792
5228
|
readonly unique?: boolean | "global" | undefined;
|
|
5229
|
+
readonly defaultValue?: unknown;
|
|
4793
5230
|
readonly maxLength?: number | undefined;
|
|
4794
5231
|
readonly minLength?: number | undefined;
|
|
4795
|
-
readonly scale?: number | undefined;
|
|
4796
5232
|
readonly min?: number | undefined;
|
|
4797
5233
|
readonly max?: number | undefined;
|
|
4798
5234
|
readonly accept?: string[] | undefined;
|
|
4799
5235
|
readonly reference?: string | undefined;
|
|
4800
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4801
5236
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4802
5237
|
readonly inlineTitle?: string | undefined;
|
|
4803
5238
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4814,32 +5249,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4814
5249
|
type?: string | undefined;
|
|
4815
5250
|
})[] | undefined;
|
|
4816
5251
|
readonly lookupPageSize?: number | undefined;
|
|
4817
|
-
readonly lookupFilters?: {
|
|
4818
|
-
field: string;
|
|
4819
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4820
|
-
value: any;
|
|
4821
|
-
}[] | undefined;
|
|
4822
5252
|
readonly dependsOn?: (string | {
|
|
4823
5253
|
field: string;
|
|
4824
5254
|
param?: string | undefined;
|
|
4825
5255
|
})[] | undefined;
|
|
4826
5256
|
readonly allowCreate?: boolean | undefined;
|
|
4827
|
-
readonly expression?: {
|
|
4828
|
-
dialect: "cel" | "cron" | "template";
|
|
4829
|
-
source?: string | undefined;
|
|
4830
|
-
ast?: unknown;
|
|
4831
|
-
meta?: {
|
|
4832
|
-
rationale?: string | undefined;
|
|
4833
|
-
generatedBy?: string | undefined;
|
|
4834
|
-
} | undefined;
|
|
4835
|
-
} | undefined;
|
|
4836
|
-
readonly summaryOperations?: {
|
|
4837
|
-
object: string;
|
|
4838
|
-
field: string;
|
|
4839
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4840
|
-
relationshipField?: string | undefined;
|
|
4841
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4842
|
-
} | undefined;
|
|
4843
5257
|
readonly language?: string | undefined;
|
|
4844
5258
|
readonly step?: number | undefined;
|
|
4845
5259
|
readonly currencyConfig?: {
|
|
@@ -4875,7 +5289,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4875
5289
|
readonly system?: boolean | undefined;
|
|
4876
5290
|
readonly sortable?: boolean | undefined;
|
|
4877
5291
|
readonly inlineHelpText?: string | undefined;
|
|
4878
|
-
readonly
|
|
5292
|
+
readonly externalId?: boolean | undefined;
|
|
4879
5293
|
readonly type: "file";
|
|
4880
5294
|
};
|
|
4881
5295
|
readonly created_at: {
|
|
@@ -4907,9 +5321,37 @@ declare const SysApprovalAction: Omit<{
|
|
|
4907
5321
|
readonly storage?: {
|
|
4908
5322
|
notNull?: boolean | undefined;
|
|
4909
5323
|
} | undefined;
|
|
4910
|
-
readonly maxSize?: number | undefined;
|
|
4911
|
-
readonly
|
|
4912
|
-
readonly
|
|
5324
|
+
readonly maxSize?: number | undefined;
|
|
5325
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5326
|
+
readonly _lockReason?: string | undefined;
|
|
5327
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5328
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
5329
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5330
|
+
readonly _packageId?: string | undefined;
|
|
5331
|
+
readonly _packageVersion?: string | undefined;
|
|
5332
|
+
readonly lookupFilters?: {
|
|
5333
|
+
field: string;
|
|
5334
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
5335
|
+
value: any;
|
|
5336
|
+
}[] | undefined;
|
|
5337
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5338
|
+
readonly expression?: {
|
|
5339
|
+
dialect: "cel" | "cron" | "template";
|
|
5340
|
+
source?: string | undefined;
|
|
5341
|
+
ast?: unknown;
|
|
5342
|
+
meta?: {
|
|
5343
|
+
rationale?: string | undefined;
|
|
5344
|
+
generatedBy?: string | undefined;
|
|
5345
|
+
} | undefined;
|
|
5346
|
+
} | undefined;
|
|
5347
|
+
readonly autonumberFormat?: string | undefined;
|
|
5348
|
+
readonly summaryOperations?: {
|
|
5349
|
+
object: string;
|
|
5350
|
+
field: string;
|
|
5351
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5352
|
+
relationshipField?: string | undefined;
|
|
5353
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
5354
|
+
} | undefined;
|
|
4913
5355
|
readonly visibleWhen?: {
|
|
4914
5356
|
dialect: "cel" | "cron" | "template";
|
|
4915
5357
|
source?: string | undefined;
|
|
@@ -4919,16 +5361,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4919
5361
|
generatedBy?: string | undefined;
|
|
4920
5362
|
} | undefined;
|
|
4921
5363
|
} | undefined;
|
|
5364
|
+
readonly scale?: number | undefined;
|
|
4922
5365
|
readonly searchable?: boolean | undefined;
|
|
4923
5366
|
readonly unique?: boolean | "global" | undefined;
|
|
5367
|
+
readonly defaultValue?: unknown;
|
|
4924
5368
|
readonly maxLength?: number | undefined;
|
|
4925
5369
|
readonly minLength?: number | undefined;
|
|
4926
|
-
readonly scale?: number | undefined;
|
|
4927
5370
|
readonly min?: number | undefined;
|
|
4928
5371
|
readonly max?: number | undefined;
|
|
4929
5372
|
readonly accept?: string[] | undefined;
|
|
4930
5373
|
readonly reference?: string | undefined;
|
|
4931
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4932
5374
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4933
5375
|
readonly inlineTitle?: string | undefined;
|
|
4934
5376
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4945,32 +5387,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4945
5387
|
type?: string | undefined;
|
|
4946
5388
|
})[] | undefined;
|
|
4947
5389
|
readonly lookupPageSize?: number | undefined;
|
|
4948
|
-
readonly lookupFilters?: {
|
|
4949
|
-
field: string;
|
|
4950
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4951
|
-
value: any;
|
|
4952
|
-
}[] | undefined;
|
|
4953
5390
|
readonly dependsOn?: (string | {
|
|
4954
5391
|
field: string;
|
|
4955
5392
|
param?: string | undefined;
|
|
4956
5393
|
})[] | undefined;
|
|
4957
5394
|
readonly allowCreate?: boolean | undefined;
|
|
4958
|
-
readonly expression?: {
|
|
4959
|
-
dialect: "cel" | "cron" | "template";
|
|
4960
|
-
source?: string | undefined;
|
|
4961
|
-
ast?: unknown;
|
|
4962
|
-
meta?: {
|
|
4963
|
-
rationale?: string | undefined;
|
|
4964
|
-
generatedBy?: string | undefined;
|
|
4965
|
-
} | undefined;
|
|
4966
|
-
} | undefined;
|
|
4967
|
-
readonly summaryOperations?: {
|
|
4968
|
-
object: string;
|
|
4969
|
-
field: string;
|
|
4970
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4971
|
-
relationshipField?: string | undefined;
|
|
4972
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4973
|
-
} | undefined;
|
|
4974
5395
|
readonly language?: string | undefined;
|
|
4975
5396
|
readonly step?: number | undefined;
|
|
4976
5397
|
readonly currencyConfig?: {
|
|
@@ -5006,7 +5427,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5006
5427
|
readonly system?: boolean | undefined;
|
|
5007
5428
|
readonly sortable?: boolean | undefined;
|
|
5008
5429
|
readonly inlineHelpText?: string | undefined;
|
|
5009
|
-
readonly
|
|
5430
|
+
readonly externalId?: boolean | undefined;
|
|
5010
5431
|
readonly type: "datetime";
|
|
5011
5432
|
};
|
|
5012
5433
|
};
|
|
@@ -5047,7 +5468,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5047
5468
|
isSystem: boolean;
|
|
5048
5469
|
datasource: string;
|
|
5049
5470
|
fields: Record<string, {
|
|
5050
|
-
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
5471
|
+
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
5051
5472
|
required: boolean;
|
|
5052
5473
|
searchable: boolean;
|
|
5053
5474
|
multiple: boolean;
|
|
@@ -5057,6 +5478,13 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5057
5478
|
readonly: boolean;
|
|
5058
5479
|
sortable: boolean;
|
|
5059
5480
|
externalId: boolean;
|
|
5481
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5482
|
+
_lockReason?: string | undefined;
|
|
5483
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5484
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5485
|
+
_packageId?: string | undefined;
|
|
5486
|
+
_packageVersion?: string | undefined;
|
|
5487
|
+
_lockDocsUrl?: string | undefined;
|
|
5060
5488
|
name?: string | undefined;
|
|
5061
5489
|
label?: string | undefined;
|
|
5062
5490
|
description?: string | undefined;
|
|
@@ -5228,7 +5656,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5228
5656
|
pluralLabel?: string | undefined;
|
|
5229
5657
|
description?: string | undefined;
|
|
5230
5658
|
icon?: string | undefined;
|
|
5231
|
-
managedBy?: "
|
|
5659
|
+
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
5232
5660
|
ownership?: "none" | "org" | "user" | undefined;
|
|
5233
5661
|
userActions?: {
|
|
5234
5662
|
create?: boolean | undefined;
|
|
@@ -5323,7 +5751,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5323
5751
|
} | undefined;
|
|
5324
5752
|
indexes?: {
|
|
5325
5753
|
fields: string[];
|
|
5326
|
-
type: "hash" | "
|
|
5754
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
5327
5755
|
unique: boolean | "global";
|
|
5328
5756
|
name?: string | undefined;
|
|
5329
5757
|
partial?: string | undefined;
|
|
@@ -5448,6 +5876,33 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5448
5876
|
defaultExpandedDepth?: number | undefined;
|
|
5449
5877
|
} | undefined;
|
|
5450
5878
|
inlineEdit?: boolean | undefined;
|
|
5879
|
+
data?: {
|
|
5880
|
+
provider: "object";
|
|
5881
|
+
object: string;
|
|
5882
|
+
} | {
|
|
5883
|
+
provider: "api";
|
|
5884
|
+
read?: {
|
|
5885
|
+
url: string;
|
|
5886
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
5887
|
+
headers?: Record<string, string> | undefined;
|
|
5888
|
+
params?: Record<string, unknown> | undefined;
|
|
5889
|
+
body?: unknown;
|
|
5890
|
+
} | undefined;
|
|
5891
|
+
write?: {
|
|
5892
|
+
url: string;
|
|
5893
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
5894
|
+
headers?: Record<string, string> | undefined;
|
|
5895
|
+
params?: Record<string, unknown> | undefined;
|
|
5896
|
+
body?: unknown;
|
|
5897
|
+
} | undefined;
|
|
5898
|
+
} | {
|
|
5899
|
+
provider: "value";
|
|
5900
|
+
items: unknown[];
|
|
5901
|
+
} | {
|
|
5902
|
+
provider: "schema";
|
|
5903
|
+
schemaId: string;
|
|
5904
|
+
schema?: Record<string, unknown> | undefined;
|
|
5905
|
+
} | undefined;
|
|
5451
5906
|
navigation?: {
|
|
5452
5907
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
5453
5908
|
preventNavigation: boolean;
|
|
@@ -5480,44 +5935,27 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5480
5935
|
}[] | undefined;
|
|
5481
5936
|
order?: number | undefined;
|
|
5482
5937
|
}[] | undefined;
|
|
5483
|
-
data?: {
|
|
5484
|
-
provider: "object";
|
|
5485
|
-
object: string;
|
|
5486
|
-
} | {
|
|
5487
|
-
provider: "api";
|
|
5488
|
-
read?: {
|
|
5489
|
-
url: string;
|
|
5490
|
-
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
5491
|
-
headers?: Record<string, string> | undefined;
|
|
5492
|
-
params?: Record<string, unknown> | undefined;
|
|
5493
|
-
body?: unknown;
|
|
5494
|
-
} | undefined;
|
|
5495
|
-
write?: {
|
|
5496
|
-
url: string;
|
|
5497
|
-
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
5498
|
-
headers?: Record<string, string> | undefined;
|
|
5499
|
-
params?: Record<string, unknown> | undefined;
|
|
5500
|
-
body?: unknown;
|
|
5501
|
-
} | undefined;
|
|
5502
|
-
} | {
|
|
5503
|
-
provider: "value";
|
|
5504
|
-
items: unknown[];
|
|
5505
|
-
} | {
|
|
5506
|
-
provider: "schema";
|
|
5507
|
-
schemaId: string;
|
|
5508
|
-
schema?: Record<string, unknown> | undefined;
|
|
5509
|
-
} | undefined;
|
|
5510
|
-
pagination?: {
|
|
5511
|
-
pageSize: number;
|
|
5512
|
-
pageSizeOptions?: number[] | undefined;
|
|
5513
|
-
} | undefined;
|
|
5514
5938
|
emptyState?: {
|
|
5515
5939
|
title?: string | undefined;
|
|
5516
5940
|
message?: string | undefined;
|
|
5517
5941
|
icon?: string | undefined;
|
|
5518
5942
|
} | undefined;
|
|
5943
|
+
userActions?: {
|
|
5944
|
+
sort: boolean;
|
|
5945
|
+
search: boolean;
|
|
5946
|
+
filter: boolean;
|
|
5947
|
+
refresh: boolean;
|
|
5948
|
+
rowHeight: boolean;
|
|
5949
|
+
addRecordForm: boolean;
|
|
5950
|
+
editInline: boolean;
|
|
5951
|
+
buttons?: string[] | undefined;
|
|
5952
|
+
} | undefined;
|
|
5519
5953
|
responsive?: undefined;
|
|
5520
5954
|
performance?: undefined;
|
|
5955
|
+
appearance?: {
|
|
5956
|
+
showDescription: boolean;
|
|
5957
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
5958
|
+
} | undefined;
|
|
5521
5959
|
resizable?: boolean | undefined;
|
|
5522
5960
|
kanban?: {
|
|
5523
5961
|
groupByField: string;
|
|
@@ -5591,6 +6029,10 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5591
6029
|
selection?: {
|
|
5592
6030
|
type: "none" | "multiple" | "single";
|
|
5593
6031
|
} | undefined;
|
|
6032
|
+
pagination?: {
|
|
6033
|
+
pageSize: number;
|
|
6034
|
+
pageSizeOptions?: number[] | undefined;
|
|
6035
|
+
} | undefined;
|
|
5594
6036
|
grouping?: {
|
|
5595
6037
|
fields: {
|
|
5596
6038
|
field: string;
|
|
@@ -5606,7 +6048,54 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5606
6048
|
fieldOrder?: string[] | undefined;
|
|
5607
6049
|
rowActions?: string[] | undefined;
|
|
5608
6050
|
bulkActions?: string[] | undefined;
|
|
5609
|
-
bulkActionDefs?:
|
|
6051
|
+
bulkActionDefs?: {
|
|
6052
|
+
name: string;
|
|
6053
|
+
operation: "delete" | "update" | "custom";
|
|
6054
|
+
label?: string | undefined;
|
|
6055
|
+
icon?: string | undefined;
|
|
6056
|
+
variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
|
|
6057
|
+
execution?: "aggregate" | "perRecord" | undefined;
|
|
6058
|
+
patch?: Record<string, unknown> | undefined;
|
|
6059
|
+
params?: {
|
|
6060
|
+
[x: string]: unknown;
|
|
6061
|
+
name: string;
|
|
6062
|
+
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
6063
|
+
label?: string | undefined;
|
|
6064
|
+
help?: string | undefined;
|
|
6065
|
+
required?: boolean | undefined;
|
|
6066
|
+
default?: unknown;
|
|
6067
|
+
options?: {
|
|
6068
|
+
[x: string]: unknown;
|
|
6069
|
+
label: string;
|
|
6070
|
+
value: string | number | boolean;
|
|
6071
|
+
}[] | undefined;
|
|
6072
|
+
object?: string | undefined;
|
|
6073
|
+
labelField?: string | undefined;
|
|
6074
|
+
multiple?: boolean | undefined;
|
|
6075
|
+
placeholder?: string | undefined;
|
|
6076
|
+
}[] | undefined;
|
|
6077
|
+
confirmText?: string | undefined;
|
|
6078
|
+
confirmLabel?: string | undefined;
|
|
6079
|
+
visible?: {
|
|
6080
|
+
dialect: "cel" | "cron" | "template";
|
|
6081
|
+
source?: string | undefined;
|
|
6082
|
+
ast?: unknown;
|
|
6083
|
+
meta?: {
|
|
6084
|
+
rationale?: string | undefined;
|
|
6085
|
+
generatedBy?: string | undefined;
|
|
6086
|
+
} | undefined;
|
|
6087
|
+
} | {
|
|
6088
|
+
dialect: "cel" | "cron" | "template";
|
|
6089
|
+
source?: string | undefined;
|
|
6090
|
+
ast?: unknown;
|
|
6091
|
+
meta?: {
|
|
6092
|
+
rationale?: string | undefined;
|
|
6093
|
+
generatedBy?: string | undefined;
|
|
6094
|
+
} | undefined;
|
|
6095
|
+
} | undefined;
|
|
6096
|
+
maxRecords?: number | undefined;
|
|
6097
|
+
batchSize?: number | undefined;
|
|
6098
|
+
}[] | undefined;
|
|
5610
6099
|
virtualScroll?: boolean | undefined;
|
|
5611
6100
|
conditionalFormatting?: {
|
|
5612
6101
|
condition: {
|
|
@@ -5629,20 +6118,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5629
6118
|
style: Record<string, string>;
|
|
5630
6119
|
}[] | undefined;
|
|
5631
6120
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
5632
|
-
userActions?: {
|
|
5633
|
-
sort: boolean;
|
|
5634
|
-
search: boolean;
|
|
5635
|
-
filter: boolean;
|
|
5636
|
-
refresh: boolean;
|
|
5637
|
-
rowHeight: boolean;
|
|
5638
|
-
addRecordForm: boolean;
|
|
5639
|
-
editInline: boolean;
|
|
5640
|
-
buttons?: string[] | undefined;
|
|
5641
|
-
} | undefined;
|
|
5642
|
-
appearance?: {
|
|
5643
|
-
showDescription: boolean;
|
|
5644
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
5645
|
-
} | undefined;
|
|
5646
6121
|
addRecord?: {
|
|
5647
6122
|
enabled: boolean;
|
|
5648
6123
|
position: "top" | "bottom" | "both";
|
|
@@ -5693,6 +6168,13 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5693
6168
|
label: string;
|
|
5694
6169
|
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
5695
6170
|
refreshAfter: boolean;
|
|
6171
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6172
|
+
_lockReason?: string | undefined;
|
|
6173
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6174
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6175
|
+
_packageId?: string | undefined;
|
|
6176
|
+
_packageVersion?: string | undefined;
|
|
6177
|
+
_lockDocsUrl?: string | undefined;
|
|
5696
6178
|
objectName?: string | undefined;
|
|
5697
6179
|
icon?: string | undefined;
|
|
5698
6180
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
@@ -5705,7 +6187,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5705
6187
|
} | {
|
|
5706
6188
|
language: "js";
|
|
5707
6189
|
source: string;
|
|
5708
|
-
capabilities: ("
|
|
6190
|
+
capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
|
|
5709
6191
|
timeoutMs?: number | undefined;
|
|
5710
6192
|
memoryMb?: number | undefined;
|
|
5711
6193
|
} | undefined;
|
|
@@ -5716,7 +6198,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5716
6198
|
field?: string | undefined;
|
|
5717
6199
|
objectOverride?: string | undefined;
|
|
5718
6200
|
label?: string | undefined;
|
|
5719
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
6201
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "user" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
5720
6202
|
options?: {
|
|
5721
6203
|
label: string;
|
|
5722
6204
|
value: string;
|
|
@@ -5855,8 +6337,36 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5855
6337
|
notNull?: boolean | undefined;
|
|
5856
6338
|
} | undefined;
|
|
5857
6339
|
readonly maxSize?: number | undefined;
|
|
5858
|
-
readonly
|
|
5859
|
-
readonly
|
|
6340
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6341
|
+
readonly _lockReason?: string | undefined;
|
|
6342
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6343
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
6344
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6345
|
+
readonly _packageId?: string | undefined;
|
|
6346
|
+
readonly _packageVersion?: string | undefined;
|
|
6347
|
+
readonly lookupFilters?: {
|
|
6348
|
+
field: string;
|
|
6349
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
6350
|
+
value: any;
|
|
6351
|
+
}[] | undefined;
|
|
6352
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6353
|
+
readonly expression?: {
|
|
6354
|
+
dialect: "cel" | "cron" | "template";
|
|
6355
|
+
source?: string | undefined;
|
|
6356
|
+
ast?: unknown;
|
|
6357
|
+
meta?: {
|
|
6358
|
+
rationale?: string | undefined;
|
|
6359
|
+
generatedBy?: string | undefined;
|
|
6360
|
+
} | undefined;
|
|
6361
|
+
} | undefined;
|
|
6362
|
+
readonly autonumberFormat?: string | undefined;
|
|
6363
|
+
readonly summaryOperations?: {
|
|
6364
|
+
object: string;
|
|
6365
|
+
field: string;
|
|
6366
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6367
|
+
relationshipField?: string | undefined;
|
|
6368
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6369
|
+
} | undefined;
|
|
5860
6370
|
readonly visibleWhen?: {
|
|
5861
6371
|
dialect: "cel" | "cron" | "template";
|
|
5862
6372
|
source?: string | undefined;
|
|
@@ -5866,16 +6376,16 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5866
6376
|
generatedBy?: string | undefined;
|
|
5867
6377
|
} | undefined;
|
|
5868
6378
|
} | undefined;
|
|
6379
|
+
readonly scale?: number | undefined;
|
|
5869
6380
|
readonly searchable?: boolean | undefined;
|
|
5870
6381
|
readonly unique?: boolean | "global" | undefined;
|
|
6382
|
+
readonly defaultValue?: unknown;
|
|
5871
6383
|
readonly maxLength?: number | undefined;
|
|
5872
6384
|
readonly minLength?: number | undefined;
|
|
5873
|
-
readonly scale?: number | undefined;
|
|
5874
6385
|
readonly min?: number | undefined;
|
|
5875
6386
|
readonly max?: number | undefined;
|
|
5876
6387
|
readonly accept?: string[] | undefined;
|
|
5877
6388
|
readonly reference?: string | undefined;
|
|
5878
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5879
6389
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5880
6390
|
readonly inlineTitle?: string | undefined;
|
|
5881
6391
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -5892,32 +6402,11 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5892
6402
|
type?: string | undefined;
|
|
5893
6403
|
})[] | undefined;
|
|
5894
6404
|
readonly lookupPageSize?: number | undefined;
|
|
5895
|
-
readonly lookupFilters?: {
|
|
5896
|
-
field: string;
|
|
5897
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
5898
|
-
value: any;
|
|
5899
|
-
}[] | undefined;
|
|
5900
6405
|
readonly dependsOn?: (string | {
|
|
5901
6406
|
field: string;
|
|
5902
6407
|
param?: string | undefined;
|
|
5903
6408
|
})[] | undefined;
|
|
5904
6409
|
readonly allowCreate?: boolean | undefined;
|
|
5905
|
-
readonly expression?: {
|
|
5906
|
-
dialect: "cel" | "cron" | "template";
|
|
5907
|
-
source?: string | undefined;
|
|
5908
|
-
ast?: unknown;
|
|
5909
|
-
meta?: {
|
|
5910
|
-
rationale?: string | undefined;
|
|
5911
|
-
generatedBy?: string | undefined;
|
|
5912
|
-
} | undefined;
|
|
5913
|
-
} | undefined;
|
|
5914
|
-
readonly summaryOperations?: {
|
|
5915
|
-
object: string;
|
|
5916
|
-
field: string;
|
|
5917
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5918
|
-
relationshipField?: string | undefined;
|
|
5919
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
5920
|
-
} | undefined;
|
|
5921
6410
|
readonly language?: string | undefined;
|
|
5922
6411
|
readonly step?: number | undefined;
|
|
5923
6412
|
readonly currencyConfig?: {
|
|
@@ -5953,7 +6442,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5953
6442
|
readonly system?: boolean | undefined;
|
|
5954
6443
|
readonly sortable?: boolean | undefined;
|
|
5955
6444
|
readonly inlineHelpText?: string | undefined;
|
|
5956
|
-
readonly
|
|
6445
|
+
readonly externalId?: boolean | undefined;
|
|
5957
6446
|
readonly type: "text";
|
|
5958
6447
|
};
|
|
5959
6448
|
readonly organization_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -6003,8 +6492,36 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6003
6492
|
notNull?: boolean | undefined;
|
|
6004
6493
|
} | undefined;
|
|
6005
6494
|
readonly maxSize?: number | undefined;
|
|
6006
|
-
readonly
|
|
6007
|
-
readonly
|
|
6495
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6496
|
+
readonly _lockReason?: string | undefined;
|
|
6497
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6498
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
6499
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6500
|
+
readonly _packageId?: string | undefined;
|
|
6501
|
+
readonly _packageVersion?: string | undefined;
|
|
6502
|
+
readonly lookupFilters?: {
|
|
6503
|
+
field: string;
|
|
6504
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
6505
|
+
value: any;
|
|
6506
|
+
}[] | undefined;
|
|
6507
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6508
|
+
readonly expression?: {
|
|
6509
|
+
dialect: "cel" | "cron" | "template";
|
|
6510
|
+
source?: string | undefined;
|
|
6511
|
+
ast?: unknown;
|
|
6512
|
+
meta?: {
|
|
6513
|
+
rationale?: string | undefined;
|
|
6514
|
+
generatedBy?: string | undefined;
|
|
6515
|
+
} | undefined;
|
|
6516
|
+
} | undefined;
|
|
6517
|
+
readonly autonumberFormat?: string | undefined;
|
|
6518
|
+
readonly summaryOperations?: {
|
|
6519
|
+
object: string;
|
|
6520
|
+
field: string;
|
|
6521
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6522
|
+
relationshipField?: string | undefined;
|
|
6523
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6524
|
+
} | undefined;
|
|
6008
6525
|
readonly visibleWhen?: {
|
|
6009
6526
|
dialect: "cel" | "cron" | "template";
|
|
6010
6527
|
source?: string | undefined;
|
|
@@ -6014,16 +6531,16 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6014
6531
|
generatedBy?: string | undefined;
|
|
6015
6532
|
} | undefined;
|
|
6016
6533
|
} | undefined;
|
|
6534
|
+
readonly scale?: number | undefined;
|
|
6017
6535
|
readonly searchable?: boolean | undefined;
|
|
6018
6536
|
readonly unique?: boolean | "global" | undefined;
|
|
6537
|
+
readonly defaultValue?: unknown;
|
|
6019
6538
|
readonly maxLength?: number | undefined;
|
|
6020
6539
|
readonly minLength?: number | undefined;
|
|
6021
|
-
readonly scale?: number | undefined;
|
|
6022
6540
|
readonly min?: number | undefined;
|
|
6023
6541
|
readonly max?: number | undefined;
|
|
6024
6542
|
readonly accept?: string[] | undefined;
|
|
6025
6543
|
readonly reference?: string | undefined;
|
|
6026
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6027
6544
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6028
6545
|
readonly inlineTitle?: string | undefined;
|
|
6029
6546
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -6040,32 +6557,11 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6040
6557
|
type?: string | undefined;
|
|
6041
6558
|
})[] | undefined;
|
|
6042
6559
|
readonly lookupPageSize?: number | undefined;
|
|
6043
|
-
readonly lookupFilters?: {
|
|
6044
|
-
field: string;
|
|
6045
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
6046
|
-
value: any;
|
|
6047
|
-
}[] | undefined;
|
|
6048
6560
|
readonly dependsOn?: (string | {
|
|
6049
6561
|
field: string;
|
|
6050
6562
|
param?: string | undefined;
|
|
6051
6563
|
})[] | undefined;
|
|
6052
6564
|
readonly allowCreate?: boolean | undefined;
|
|
6053
|
-
readonly expression?: {
|
|
6054
|
-
dialect: "cel" | "cron" | "template";
|
|
6055
|
-
source?: string | undefined;
|
|
6056
|
-
ast?: unknown;
|
|
6057
|
-
meta?: {
|
|
6058
|
-
rationale?: string | undefined;
|
|
6059
|
-
generatedBy?: string | undefined;
|
|
6060
|
-
} | undefined;
|
|
6061
|
-
} | undefined;
|
|
6062
|
-
readonly summaryOperations?: {
|
|
6063
|
-
object: string;
|
|
6064
|
-
field: string;
|
|
6065
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6066
|
-
relationshipField?: string | undefined;
|
|
6067
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6068
|
-
} | undefined;
|
|
6069
6565
|
readonly language?: string | undefined;
|
|
6070
6566
|
readonly step?: number | undefined;
|
|
6071
6567
|
readonly currencyConfig?: {
|
|
@@ -6101,7 +6597,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6101
6597
|
readonly system?: boolean | undefined;
|
|
6102
6598
|
readonly sortable?: boolean | undefined;
|
|
6103
6599
|
readonly inlineHelpText?: string | undefined;
|
|
6104
|
-
readonly
|
|
6600
|
+
readonly externalId?: boolean | undefined;
|
|
6105
6601
|
readonly type: "text";
|
|
6106
6602
|
};
|
|
6107
6603
|
readonly created_at: {
|
|
@@ -6134,8 +6630,36 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6134
6630
|
notNull?: boolean | undefined;
|
|
6135
6631
|
} | undefined;
|
|
6136
6632
|
readonly maxSize?: number | undefined;
|
|
6137
|
-
readonly
|
|
6138
|
-
readonly
|
|
6633
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6634
|
+
readonly _lockReason?: string | undefined;
|
|
6635
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6636
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
6637
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6638
|
+
readonly _packageId?: string | undefined;
|
|
6639
|
+
readonly _packageVersion?: string | undefined;
|
|
6640
|
+
readonly lookupFilters?: {
|
|
6641
|
+
field: string;
|
|
6642
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
6643
|
+
value: any;
|
|
6644
|
+
}[] | undefined;
|
|
6645
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6646
|
+
readonly expression?: {
|
|
6647
|
+
dialect: "cel" | "cron" | "template";
|
|
6648
|
+
source?: string | undefined;
|
|
6649
|
+
ast?: unknown;
|
|
6650
|
+
meta?: {
|
|
6651
|
+
rationale?: string | undefined;
|
|
6652
|
+
generatedBy?: string | undefined;
|
|
6653
|
+
} | undefined;
|
|
6654
|
+
} | undefined;
|
|
6655
|
+
readonly autonumberFormat?: string | undefined;
|
|
6656
|
+
readonly summaryOperations?: {
|
|
6657
|
+
object: string;
|
|
6658
|
+
field: string;
|
|
6659
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6660
|
+
relationshipField?: string | undefined;
|
|
6661
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6662
|
+
} | undefined;
|
|
6139
6663
|
readonly visibleWhen?: {
|
|
6140
6664
|
dialect: "cel" | "cron" | "template";
|
|
6141
6665
|
source?: string | undefined;
|
|
@@ -6145,16 +6669,16 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6145
6669
|
generatedBy?: string | undefined;
|
|
6146
6670
|
} | undefined;
|
|
6147
6671
|
} | undefined;
|
|
6672
|
+
readonly scale?: number | undefined;
|
|
6148
6673
|
readonly searchable?: boolean | undefined;
|
|
6149
6674
|
readonly unique?: boolean | "global" | undefined;
|
|
6675
|
+
readonly defaultValue?: unknown;
|
|
6150
6676
|
readonly maxLength?: number | undefined;
|
|
6151
6677
|
readonly minLength?: number | undefined;
|
|
6152
|
-
readonly scale?: number | undefined;
|
|
6153
6678
|
readonly min?: number | undefined;
|
|
6154
6679
|
readonly max?: number | undefined;
|
|
6155
6680
|
readonly accept?: string[] | undefined;
|
|
6156
6681
|
readonly reference?: string | undefined;
|
|
6157
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6158
6682
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6159
6683
|
readonly inlineTitle?: string | undefined;
|
|
6160
6684
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -6171,32 +6695,11 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6171
6695
|
type?: string | undefined;
|
|
6172
6696
|
})[] | undefined;
|
|
6173
6697
|
readonly lookupPageSize?: number | undefined;
|
|
6174
|
-
readonly lookupFilters?: {
|
|
6175
|
-
field: string;
|
|
6176
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
6177
|
-
value: any;
|
|
6178
|
-
}[] | undefined;
|
|
6179
6698
|
readonly dependsOn?: (string | {
|
|
6180
6699
|
field: string;
|
|
6181
6700
|
param?: string | undefined;
|
|
6182
6701
|
})[] | undefined;
|
|
6183
6702
|
readonly allowCreate?: boolean | undefined;
|
|
6184
|
-
readonly expression?: {
|
|
6185
|
-
dialect: "cel" | "cron" | "template";
|
|
6186
|
-
source?: string | undefined;
|
|
6187
|
-
ast?: unknown;
|
|
6188
|
-
meta?: {
|
|
6189
|
-
rationale?: string | undefined;
|
|
6190
|
-
generatedBy?: string | undefined;
|
|
6191
|
-
} | undefined;
|
|
6192
|
-
} | undefined;
|
|
6193
|
-
readonly summaryOperations?: {
|
|
6194
|
-
object: string;
|
|
6195
|
-
field: string;
|
|
6196
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6197
|
-
relationshipField?: string | undefined;
|
|
6198
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6199
|
-
} | undefined;
|
|
6200
6703
|
readonly language?: string | undefined;
|
|
6201
6704
|
readonly step?: number | undefined;
|
|
6202
6705
|
readonly currencyConfig?: {
|
|
@@ -6232,7 +6735,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6232
6735
|
readonly system?: boolean | undefined;
|
|
6233
6736
|
readonly sortable?: boolean | undefined;
|
|
6234
6737
|
readonly inlineHelpText?: string | undefined;
|
|
6235
|
-
readonly
|
|
6738
|
+
readonly externalId?: boolean | undefined;
|
|
6236
6739
|
readonly type: "datetime";
|
|
6237
6740
|
};
|
|
6238
6741
|
};
|
|
@@ -6276,7 +6779,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6276
6779
|
isSystem: boolean;
|
|
6277
6780
|
datasource: string;
|
|
6278
6781
|
fields: Record<string, {
|
|
6279
|
-
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
6782
|
+
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
6280
6783
|
required: boolean;
|
|
6281
6784
|
searchable: boolean;
|
|
6282
6785
|
multiple: boolean;
|
|
@@ -6286,6 +6789,13 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6286
6789
|
readonly: boolean;
|
|
6287
6790
|
sortable: boolean;
|
|
6288
6791
|
externalId: boolean;
|
|
6792
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6793
|
+
_lockReason?: string | undefined;
|
|
6794
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6795
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6796
|
+
_packageId?: string | undefined;
|
|
6797
|
+
_packageVersion?: string | undefined;
|
|
6798
|
+
_lockDocsUrl?: string | undefined;
|
|
6289
6799
|
name?: string | undefined;
|
|
6290
6800
|
label?: string | undefined;
|
|
6291
6801
|
description?: string | undefined;
|
|
@@ -6457,7 +6967,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6457
6967
|
pluralLabel?: string | undefined;
|
|
6458
6968
|
description?: string | undefined;
|
|
6459
6969
|
icon?: string | undefined;
|
|
6460
|
-
managedBy?: "
|
|
6970
|
+
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
6461
6971
|
ownership?: "none" | "org" | "user" | undefined;
|
|
6462
6972
|
userActions?: {
|
|
6463
6973
|
create?: boolean | undefined;
|
|
@@ -6552,7 +7062,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6552
7062
|
} | undefined;
|
|
6553
7063
|
indexes?: {
|
|
6554
7064
|
fields: string[];
|
|
6555
|
-
type: "hash" | "
|
|
7065
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
6556
7066
|
unique: boolean | "global";
|
|
6557
7067
|
name?: string | undefined;
|
|
6558
7068
|
partial?: string | undefined;
|
|
@@ -6677,6 +7187,33 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6677
7187
|
defaultExpandedDepth?: number | undefined;
|
|
6678
7188
|
} | undefined;
|
|
6679
7189
|
inlineEdit?: boolean | undefined;
|
|
7190
|
+
data?: {
|
|
7191
|
+
provider: "object";
|
|
7192
|
+
object: string;
|
|
7193
|
+
} | {
|
|
7194
|
+
provider: "api";
|
|
7195
|
+
read?: {
|
|
7196
|
+
url: string;
|
|
7197
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
7198
|
+
headers?: Record<string, string> | undefined;
|
|
7199
|
+
params?: Record<string, unknown> | undefined;
|
|
7200
|
+
body?: unknown;
|
|
7201
|
+
} | undefined;
|
|
7202
|
+
write?: {
|
|
7203
|
+
url: string;
|
|
7204
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
7205
|
+
headers?: Record<string, string> | undefined;
|
|
7206
|
+
params?: Record<string, unknown> | undefined;
|
|
7207
|
+
body?: unknown;
|
|
7208
|
+
} | undefined;
|
|
7209
|
+
} | {
|
|
7210
|
+
provider: "value";
|
|
7211
|
+
items: unknown[];
|
|
7212
|
+
} | {
|
|
7213
|
+
provider: "schema";
|
|
7214
|
+
schemaId: string;
|
|
7215
|
+
schema?: Record<string, unknown> | undefined;
|
|
7216
|
+
} | undefined;
|
|
6680
7217
|
navigation?: {
|
|
6681
7218
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
6682
7219
|
preventNavigation: boolean;
|
|
@@ -6709,44 +7246,27 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6709
7246
|
}[] | undefined;
|
|
6710
7247
|
order?: number | undefined;
|
|
6711
7248
|
}[] | undefined;
|
|
6712
|
-
data?: {
|
|
6713
|
-
provider: "object";
|
|
6714
|
-
object: string;
|
|
6715
|
-
} | {
|
|
6716
|
-
provider: "api";
|
|
6717
|
-
read?: {
|
|
6718
|
-
url: string;
|
|
6719
|
-
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
6720
|
-
headers?: Record<string, string> | undefined;
|
|
6721
|
-
params?: Record<string, unknown> | undefined;
|
|
6722
|
-
body?: unknown;
|
|
6723
|
-
} | undefined;
|
|
6724
|
-
write?: {
|
|
6725
|
-
url: string;
|
|
6726
|
-
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
6727
|
-
headers?: Record<string, string> | undefined;
|
|
6728
|
-
params?: Record<string, unknown> | undefined;
|
|
6729
|
-
body?: unknown;
|
|
6730
|
-
} | undefined;
|
|
6731
|
-
} | {
|
|
6732
|
-
provider: "value";
|
|
6733
|
-
items: unknown[];
|
|
6734
|
-
} | {
|
|
6735
|
-
provider: "schema";
|
|
6736
|
-
schemaId: string;
|
|
6737
|
-
schema?: Record<string, unknown> | undefined;
|
|
6738
|
-
} | undefined;
|
|
6739
|
-
pagination?: {
|
|
6740
|
-
pageSize: number;
|
|
6741
|
-
pageSizeOptions?: number[] | undefined;
|
|
6742
|
-
} | undefined;
|
|
6743
7249
|
emptyState?: {
|
|
6744
7250
|
title?: string | undefined;
|
|
6745
7251
|
message?: string | undefined;
|
|
6746
7252
|
icon?: string | undefined;
|
|
6747
7253
|
} | undefined;
|
|
7254
|
+
userActions?: {
|
|
7255
|
+
sort: boolean;
|
|
7256
|
+
search: boolean;
|
|
7257
|
+
filter: boolean;
|
|
7258
|
+
refresh: boolean;
|
|
7259
|
+
rowHeight: boolean;
|
|
7260
|
+
addRecordForm: boolean;
|
|
7261
|
+
editInline: boolean;
|
|
7262
|
+
buttons?: string[] | undefined;
|
|
7263
|
+
} | undefined;
|
|
6748
7264
|
responsive?: undefined;
|
|
6749
7265
|
performance?: undefined;
|
|
7266
|
+
appearance?: {
|
|
7267
|
+
showDescription: boolean;
|
|
7268
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
7269
|
+
} | undefined;
|
|
6750
7270
|
resizable?: boolean | undefined;
|
|
6751
7271
|
kanban?: {
|
|
6752
7272
|
groupByField: string;
|
|
@@ -6820,6 +7340,10 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6820
7340
|
selection?: {
|
|
6821
7341
|
type: "none" | "multiple" | "single";
|
|
6822
7342
|
} | undefined;
|
|
7343
|
+
pagination?: {
|
|
7344
|
+
pageSize: number;
|
|
7345
|
+
pageSizeOptions?: number[] | undefined;
|
|
7346
|
+
} | undefined;
|
|
6823
7347
|
grouping?: {
|
|
6824
7348
|
fields: {
|
|
6825
7349
|
field: string;
|
|
@@ -6835,7 +7359,54 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6835
7359
|
fieldOrder?: string[] | undefined;
|
|
6836
7360
|
rowActions?: string[] | undefined;
|
|
6837
7361
|
bulkActions?: string[] | undefined;
|
|
6838
|
-
bulkActionDefs?:
|
|
7362
|
+
bulkActionDefs?: {
|
|
7363
|
+
name: string;
|
|
7364
|
+
operation: "delete" | "update" | "custom";
|
|
7365
|
+
label?: string | undefined;
|
|
7366
|
+
icon?: string | undefined;
|
|
7367
|
+
variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
|
|
7368
|
+
execution?: "aggregate" | "perRecord" | undefined;
|
|
7369
|
+
patch?: Record<string, unknown> | undefined;
|
|
7370
|
+
params?: {
|
|
7371
|
+
[x: string]: unknown;
|
|
7372
|
+
name: string;
|
|
7373
|
+
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector";
|
|
7374
|
+
label?: string | undefined;
|
|
7375
|
+
help?: string | undefined;
|
|
7376
|
+
required?: boolean | undefined;
|
|
7377
|
+
default?: unknown;
|
|
7378
|
+
options?: {
|
|
7379
|
+
[x: string]: unknown;
|
|
7380
|
+
label: string;
|
|
7381
|
+
value: string | number | boolean;
|
|
7382
|
+
}[] | undefined;
|
|
7383
|
+
object?: string | undefined;
|
|
7384
|
+
labelField?: string | undefined;
|
|
7385
|
+
multiple?: boolean | undefined;
|
|
7386
|
+
placeholder?: string | undefined;
|
|
7387
|
+
}[] | undefined;
|
|
7388
|
+
confirmText?: string | undefined;
|
|
7389
|
+
confirmLabel?: string | undefined;
|
|
7390
|
+
visible?: {
|
|
7391
|
+
dialect: "cel" | "cron" | "template";
|
|
7392
|
+
source?: string | undefined;
|
|
7393
|
+
ast?: unknown;
|
|
7394
|
+
meta?: {
|
|
7395
|
+
rationale?: string | undefined;
|
|
7396
|
+
generatedBy?: string | undefined;
|
|
7397
|
+
} | undefined;
|
|
7398
|
+
} | {
|
|
7399
|
+
dialect: "cel" | "cron" | "template";
|
|
7400
|
+
source?: string | undefined;
|
|
7401
|
+
ast?: unknown;
|
|
7402
|
+
meta?: {
|
|
7403
|
+
rationale?: string | undefined;
|
|
7404
|
+
generatedBy?: string | undefined;
|
|
7405
|
+
} | undefined;
|
|
7406
|
+
} | undefined;
|
|
7407
|
+
maxRecords?: number | undefined;
|
|
7408
|
+
batchSize?: number | undefined;
|
|
7409
|
+
}[] | undefined;
|
|
6839
7410
|
virtualScroll?: boolean | undefined;
|
|
6840
7411
|
conditionalFormatting?: {
|
|
6841
7412
|
condition: {
|
|
@@ -6858,20 +7429,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6858
7429
|
style: Record<string, string>;
|
|
6859
7430
|
}[] | undefined;
|
|
6860
7431
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
6861
|
-
userActions?: {
|
|
6862
|
-
sort: boolean;
|
|
6863
|
-
search: boolean;
|
|
6864
|
-
filter: boolean;
|
|
6865
|
-
refresh: boolean;
|
|
6866
|
-
rowHeight: boolean;
|
|
6867
|
-
addRecordForm: boolean;
|
|
6868
|
-
editInline: boolean;
|
|
6869
|
-
buttons?: string[] | undefined;
|
|
6870
|
-
} | undefined;
|
|
6871
|
-
appearance?: {
|
|
6872
|
-
showDescription: boolean;
|
|
6873
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
6874
|
-
} | undefined;
|
|
6875
7432
|
addRecord?: {
|
|
6876
7433
|
enabled: boolean;
|
|
6877
7434
|
position: "top" | "bottom" | "both";
|
|
@@ -6922,6 +7479,13 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6922
7479
|
label: string;
|
|
6923
7480
|
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
6924
7481
|
refreshAfter: boolean;
|
|
7482
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7483
|
+
_lockReason?: string | undefined;
|
|
7484
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
7485
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7486
|
+
_packageId?: string | undefined;
|
|
7487
|
+
_packageVersion?: string | undefined;
|
|
7488
|
+
_lockDocsUrl?: string | undefined;
|
|
6925
7489
|
objectName?: string | undefined;
|
|
6926
7490
|
icon?: string | undefined;
|
|
6927
7491
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
@@ -6934,7 +7498,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6934
7498
|
} | {
|
|
6935
7499
|
language: "js";
|
|
6936
7500
|
source: string;
|
|
6937
|
-
capabilities: ("
|
|
7501
|
+
capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
|
|
6938
7502
|
timeoutMs?: number | undefined;
|
|
6939
7503
|
memoryMb?: number | undefined;
|
|
6940
7504
|
} | undefined;
|
|
@@ -6945,7 +7509,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6945
7509
|
field?: string | undefined;
|
|
6946
7510
|
objectOverride?: string | undefined;
|
|
6947
7511
|
label?: string | undefined;
|
|
6948
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
7512
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "currency" | "percent" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "user" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
6949
7513
|
options?: {
|
|
6950
7514
|
label: string;
|
|
6951
7515
|
value: string;
|
|
@@ -7047,12 +7611,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7047
7611
|
readonly pluralLabel: "Approval Delegations";
|
|
7048
7612
|
readonly icon: "user-clock";
|
|
7049
7613
|
readonly isSystem: true;
|
|
7050
|
-
readonly managedBy: "system";
|
|
7051
|
-
readonly userActions: {
|
|
7052
|
-
readonly create: true;
|
|
7053
|
-
readonly edit: true;
|
|
7054
|
-
readonly delete: true;
|
|
7055
|
-
};
|
|
7614
|
+
readonly managedBy: "system-data";
|
|
7056
7615
|
readonly description: "Self-service out-of-office rule: route this user's approver slots to a delegate within a time window (#1322 M1).";
|
|
7057
7616
|
readonly titleFormat: "{delegator_id} → {delegate_id}";
|
|
7058
7617
|
readonly highlightFields: ["delegator_id", "delegate_id", "valid_from", "valid_until"];
|
|
@@ -7110,8 +7669,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7110
7669
|
notNull?: boolean | undefined;
|
|
7111
7670
|
} | undefined;
|
|
7112
7671
|
readonly maxSize?: number | undefined;
|
|
7113
|
-
readonly
|
|
7114
|
-
readonly
|
|
7672
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7673
|
+
readonly _lockReason?: string | undefined;
|
|
7674
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
7675
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
7676
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7677
|
+
readonly _packageId?: string | undefined;
|
|
7678
|
+
readonly _packageVersion?: string | undefined;
|
|
7679
|
+
readonly lookupFilters?: {
|
|
7680
|
+
field: string;
|
|
7681
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7682
|
+
value: any;
|
|
7683
|
+
}[] | undefined;
|
|
7684
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7685
|
+
readonly expression?: {
|
|
7686
|
+
dialect: "cel" | "cron" | "template";
|
|
7687
|
+
source?: string | undefined;
|
|
7688
|
+
ast?: unknown;
|
|
7689
|
+
meta?: {
|
|
7690
|
+
rationale?: string | undefined;
|
|
7691
|
+
generatedBy?: string | undefined;
|
|
7692
|
+
} | undefined;
|
|
7693
|
+
} | undefined;
|
|
7694
|
+
readonly autonumberFormat?: string | undefined;
|
|
7695
|
+
readonly summaryOperations?: {
|
|
7696
|
+
object: string;
|
|
7697
|
+
field: string;
|
|
7698
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7699
|
+
relationshipField?: string | undefined;
|
|
7700
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7701
|
+
} | undefined;
|
|
7115
7702
|
readonly visibleWhen?: {
|
|
7116
7703
|
dialect: "cel" | "cron" | "template";
|
|
7117
7704
|
source?: string | undefined;
|
|
@@ -7121,16 +7708,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7121
7708
|
generatedBy?: string | undefined;
|
|
7122
7709
|
} | undefined;
|
|
7123
7710
|
} | undefined;
|
|
7711
|
+
readonly scale?: number | undefined;
|
|
7124
7712
|
readonly searchable?: boolean | undefined;
|
|
7125
7713
|
readonly unique?: boolean | "global" | undefined;
|
|
7714
|
+
readonly defaultValue?: unknown;
|
|
7126
7715
|
readonly maxLength?: number | undefined;
|
|
7127
7716
|
readonly minLength?: number | undefined;
|
|
7128
|
-
readonly scale?: number | undefined;
|
|
7129
7717
|
readonly min?: number | undefined;
|
|
7130
7718
|
readonly max?: number | undefined;
|
|
7131
7719
|
readonly accept?: string[] | undefined;
|
|
7132
7720
|
readonly reference?: string | undefined;
|
|
7133
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7134
7721
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7135
7722
|
readonly inlineTitle?: string | undefined;
|
|
7136
7723
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7147,32 +7734,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7147
7734
|
type?: string | undefined;
|
|
7148
7735
|
})[] | undefined;
|
|
7149
7736
|
readonly lookupPageSize?: number | undefined;
|
|
7150
|
-
readonly lookupFilters?: {
|
|
7151
|
-
field: string;
|
|
7152
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7153
|
-
value: any;
|
|
7154
|
-
}[] | undefined;
|
|
7155
7737
|
readonly dependsOn?: (string | {
|
|
7156
7738
|
field: string;
|
|
7157
7739
|
param?: string | undefined;
|
|
7158
7740
|
})[] | undefined;
|
|
7159
7741
|
readonly allowCreate?: boolean | undefined;
|
|
7160
|
-
readonly expression?: {
|
|
7161
|
-
dialect: "cel" | "cron" | "template";
|
|
7162
|
-
source?: string | undefined;
|
|
7163
|
-
ast?: unknown;
|
|
7164
|
-
meta?: {
|
|
7165
|
-
rationale?: string | undefined;
|
|
7166
|
-
generatedBy?: string | undefined;
|
|
7167
|
-
} | undefined;
|
|
7168
|
-
} | undefined;
|
|
7169
|
-
readonly summaryOperations?: {
|
|
7170
|
-
object: string;
|
|
7171
|
-
field: string;
|
|
7172
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7173
|
-
relationshipField?: string | undefined;
|
|
7174
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7175
|
-
} | undefined;
|
|
7176
7742
|
readonly language?: string | undefined;
|
|
7177
7743
|
readonly step?: number | undefined;
|
|
7178
7744
|
readonly currencyConfig?: {
|
|
@@ -7208,7 +7774,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7208
7774
|
readonly system?: boolean | undefined;
|
|
7209
7775
|
readonly sortable?: boolean | undefined;
|
|
7210
7776
|
readonly inlineHelpText?: string | undefined;
|
|
7211
|
-
readonly
|
|
7777
|
+
readonly externalId?: boolean | undefined;
|
|
7212
7778
|
readonly type: "text";
|
|
7213
7779
|
};
|
|
7214
7780
|
readonly delegator_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -7259,8 +7825,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7259
7825
|
notNull?: boolean | undefined;
|
|
7260
7826
|
} | undefined;
|
|
7261
7827
|
readonly maxSize?: number | undefined;
|
|
7262
|
-
readonly
|
|
7263
|
-
readonly
|
|
7828
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7829
|
+
readonly _lockReason?: string | undefined;
|
|
7830
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
7831
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
7832
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7833
|
+
readonly _packageId?: string | undefined;
|
|
7834
|
+
readonly _packageVersion?: string | undefined;
|
|
7835
|
+
readonly lookupFilters?: {
|
|
7836
|
+
field: string;
|
|
7837
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7838
|
+
value: any;
|
|
7839
|
+
}[] | undefined;
|
|
7840
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7841
|
+
readonly expression?: {
|
|
7842
|
+
dialect: "cel" | "cron" | "template";
|
|
7843
|
+
source?: string | undefined;
|
|
7844
|
+
ast?: unknown;
|
|
7845
|
+
meta?: {
|
|
7846
|
+
rationale?: string | undefined;
|
|
7847
|
+
generatedBy?: string | undefined;
|
|
7848
|
+
} | undefined;
|
|
7849
|
+
} | undefined;
|
|
7850
|
+
readonly autonumberFormat?: string | undefined;
|
|
7851
|
+
readonly summaryOperations?: {
|
|
7852
|
+
object: string;
|
|
7853
|
+
field: string;
|
|
7854
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7855
|
+
relationshipField?: string | undefined;
|
|
7856
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7857
|
+
} | undefined;
|
|
7264
7858
|
readonly visibleWhen?: {
|
|
7265
7859
|
dialect: "cel" | "cron" | "template";
|
|
7266
7860
|
source?: string | undefined;
|
|
@@ -7270,16 +7864,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7270
7864
|
generatedBy?: string | undefined;
|
|
7271
7865
|
} | undefined;
|
|
7272
7866
|
} | undefined;
|
|
7867
|
+
readonly scale?: number | undefined;
|
|
7273
7868
|
readonly searchable?: boolean | undefined;
|
|
7274
7869
|
readonly unique?: boolean | "global" | undefined;
|
|
7870
|
+
readonly defaultValue?: unknown;
|
|
7275
7871
|
readonly maxLength?: number | undefined;
|
|
7276
7872
|
readonly minLength?: number | undefined;
|
|
7277
|
-
readonly scale?: number | undefined;
|
|
7278
7873
|
readonly min?: number | undefined;
|
|
7279
7874
|
readonly max?: number | undefined;
|
|
7280
7875
|
readonly accept?: string[] | undefined;
|
|
7281
7876
|
readonly reference?: string | undefined;
|
|
7282
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7283
7877
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7284
7878
|
readonly inlineTitle?: string | undefined;
|
|
7285
7879
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7296,32 +7890,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7296
7890
|
type?: string | undefined;
|
|
7297
7891
|
})[] | undefined;
|
|
7298
7892
|
readonly lookupPageSize?: number | undefined;
|
|
7299
|
-
readonly lookupFilters?: {
|
|
7300
|
-
field: string;
|
|
7301
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7302
|
-
value: any;
|
|
7303
|
-
}[] | undefined;
|
|
7304
7893
|
readonly dependsOn?: (string | {
|
|
7305
7894
|
field: string;
|
|
7306
7895
|
param?: string | undefined;
|
|
7307
7896
|
})[] | undefined;
|
|
7308
7897
|
readonly allowCreate?: boolean | undefined;
|
|
7309
|
-
readonly expression?: {
|
|
7310
|
-
dialect: "cel" | "cron" | "template";
|
|
7311
|
-
source?: string | undefined;
|
|
7312
|
-
ast?: unknown;
|
|
7313
|
-
meta?: {
|
|
7314
|
-
rationale?: string | undefined;
|
|
7315
|
-
generatedBy?: string | undefined;
|
|
7316
|
-
} | undefined;
|
|
7317
|
-
} | undefined;
|
|
7318
|
-
readonly summaryOperations?: {
|
|
7319
|
-
object: string;
|
|
7320
|
-
field: string;
|
|
7321
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7322
|
-
relationshipField?: string | undefined;
|
|
7323
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7324
|
-
} | undefined;
|
|
7325
7898
|
readonly language?: string | undefined;
|
|
7326
7899
|
readonly step?: number | undefined;
|
|
7327
7900
|
readonly currencyConfig?: {
|
|
@@ -7357,7 +7930,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7357
7930
|
readonly system?: boolean | undefined;
|
|
7358
7931
|
readonly sortable?: boolean | undefined;
|
|
7359
7932
|
readonly inlineHelpText?: string | undefined;
|
|
7360
|
-
readonly
|
|
7933
|
+
readonly externalId?: boolean | undefined;
|
|
7361
7934
|
readonly type: "datetime";
|
|
7362
7935
|
};
|
|
7363
7936
|
readonly valid_until: {
|
|
@@ -7390,8 +7963,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7390
7963
|
notNull?: boolean | undefined;
|
|
7391
7964
|
} | undefined;
|
|
7392
7965
|
readonly maxSize?: number | undefined;
|
|
7393
|
-
readonly
|
|
7394
|
-
readonly
|
|
7966
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7967
|
+
readonly _lockReason?: string | undefined;
|
|
7968
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
7969
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
7970
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7971
|
+
readonly _packageId?: string | undefined;
|
|
7972
|
+
readonly _packageVersion?: string | undefined;
|
|
7973
|
+
readonly lookupFilters?: {
|
|
7974
|
+
field: string;
|
|
7975
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7976
|
+
value: any;
|
|
7977
|
+
}[] | undefined;
|
|
7978
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7979
|
+
readonly expression?: {
|
|
7980
|
+
dialect: "cel" | "cron" | "template";
|
|
7981
|
+
source?: string | undefined;
|
|
7982
|
+
ast?: unknown;
|
|
7983
|
+
meta?: {
|
|
7984
|
+
rationale?: string | undefined;
|
|
7985
|
+
generatedBy?: string | undefined;
|
|
7986
|
+
} | undefined;
|
|
7987
|
+
} | undefined;
|
|
7988
|
+
readonly autonumberFormat?: string | undefined;
|
|
7989
|
+
readonly summaryOperations?: {
|
|
7990
|
+
object: string;
|
|
7991
|
+
field: string;
|
|
7992
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7993
|
+
relationshipField?: string | undefined;
|
|
7994
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7995
|
+
} | undefined;
|
|
7395
7996
|
readonly visibleWhen?: {
|
|
7396
7997
|
dialect: "cel" | "cron" | "template";
|
|
7397
7998
|
source?: string | undefined;
|
|
@@ -7401,16 +8002,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7401
8002
|
generatedBy?: string | undefined;
|
|
7402
8003
|
} | undefined;
|
|
7403
8004
|
} | undefined;
|
|
8005
|
+
readonly scale?: number | undefined;
|
|
7404
8006
|
readonly searchable?: boolean | undefined;
|
|
7405
8007
|
readonly unique?: boolean | "global" | undefined;
|
|
8008
|
+
readonly defaultValue?: unknown;
|
|
7406
8009
|
readonly maxLength?: number | undefined;
|
|
7407
8010
|
readonly minLength?: number | undefined;
|
|
7408
|
-
readonly scale?: number | undefined;
|
|
7409
8011
|
readonly min?: number | undefined;
|
|
7410
8012
|
readonly max?: number | undefined;
|
|
7411
8013
|
readonly accept?: string[] | undefined;
|
|
7412
8014
|
readonly reference?: string | undefined;
|
|
7413
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7414
8015
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7415
8016
|
readonly inlineTitle?: string | undefined;
|
|
7416
8017
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7427,32 +8028,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7427
8028
|
type?: string | undefined;
|
|
7428
8029
|
})[] | undefined;
|
|
7429
8030
|
readonly lookupPageSize?: number | undefined;
|
|
7430
|
-
readonly lookupFilters?: {
|
|
7431
|
-
field: string;
|
|
7432
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7433
|
-
value: any;
|
|
7434
|
-
}[] | undefined;
|
|
7435
8031
|
readonly dependsOn?: (string | {
|
|
7436
8032
|
field: string;
|
|
7437
8033
|
param?: string | undefined;
|
|
7438
8034
|
})[] | undefined;
|
|
7439
8035
|
readonly allowCreate?: boolean | undefined;
|
|
7440
|
-
readonly expression?: {
|
|
7441
|
-
dialect: "cel" | "cron" | "template";
|
|
7442
|
-
source?: string | undefined;
|
|
7443
|
-
ast?: unknown;
|
|
7444
|
-
meta?: {
|
|
7445
|
-
rationale?: string | undefined;
|
|
7446
|
-
generatedBy?: string | undefined;
|
|
7447
|
-
} | undefined;
|
|
7448
|
-
} | undefined;
|
|
7449
|
-
readonly summaryOperations?: {
|
|
7450
|
-
object: string;
|
|
7451
|
-
field: string;
|
|
7452
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7453
|
-
relationshipField?: string | undefined;
|
|
7454
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7455
|
-
} | undefined;
|
|
7456
8036
|
readonly language?: string | undefined;
|
|
7457
8037
|
readonly step?: number | undefined;
|
|
7458
8038
|
readonly currencyConfig?: {
|
|
@@ -7488,7 +8068,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7488
8068
|
readonly system?: boolean | undefined;
|
|
7489
8069
|
readonly sortable?: boolean | undefined;
|
|
7490
8070
|
readonly inlineHelpText?: string | undefined;
|
|
7491
|
-
readonly
|
|
8071
|
+
readonly externalId?: boolean | undefined;
|
|
7492
8072
|
readonly type: "datetime";
|
|
7493
8073
|
};
|
|
7494
8074
|
readonly reason: {
|
|
@@ -7521,8 +8101,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7521
8101
|
notNull?: boolean | undefined;
|
|
7522
8102
|
} | undefined;
|
|
7523
8103
|
readonly maxSize?: number | undefined;
|
|
7524
|
-
readonly
|
|
7525
|
-
readonly
|
|
8104
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
8105
|
+
readonly _lockReason?: string | undefined;
|
|
8106
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
8107
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
8108
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
8109
|
+
readonly _packageId?: string | undefined;
|
|
8110
|
+
readonly _packageVersion?: string | undefined;
|
|
8111
|
+
readonly lookupFilters?: {
|
|
8112
|
+
field: string;
|
|
8113
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
8114
|
+
value: any;
|
|
8115
|
+
}[] | undefined;
|
|
8116
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8117
|
+
readonly expression?: {
|
|
8118
|
+
dialect: "cel" | "cron" | "template";
|
|
8119
|
+
source?: string | undefined;
|
|
8120
|
+
ast?: unknown;
|
|
8121
|
+
meta?: {
|
|
8122
|
+
rationale?: string | undefined;
|
|
8123
|
+
generatedBy?: string | undefined;
|
|
8124
|
+
} | undefined;
|
|
8125
|
+
} | undefined;
|
|
8126
|
+
readonly autonumberFormat?: string | undefined;
|
|
8127
|
+
readonly summaryOperations?: {
|
|
8128
|
+
object: string;
|
|
8129
|
+
field: string;
|
|
8130
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
8131
|
+
relationshipField?: string | undefined;
|
|
8132
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
8133
|
+
} | undefined;
|
|
7526
8134
|
readonly visibleWhen?: {
|
|
7527
8135
|
dialect: "cel" | "cron" | "template";
|
|
7528
8136
|
source?: string | undefined;
|
|
@@ -7532,16 +8140,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7532
8140
|
generatedBy?: string | undefined;
|
|
7533
8141
|
} | undefined;
|
|
7534
8142
|
} | undefined;
|
|
8143
|
+
readonly scale?: number | undefined;
|
|
7535
8144
|
readonly searchable?: boolean | undefined;
|
|
7536
8145
|
readonly unique?: boolean | "global" | undefined;
|
|
8146
|
+
readonly defaultValue?: unknown;
|
|
7537
8147
|
readonly maxLength?: number | undefined;
|
|
7538
8148
|
readonly minLength?: number | undefined;
|
|
7539
|
-
readonly scale?: number | undefined;
|
|
7540
8149
|
readonly min?: number | undefined;
|
|
7541
8150
|
readonly max?: number | undefined;
|
|
7542
8151
|
readonly accept?: string[] | undefined;
|
|
7543
8152
|
readonly reference?: string | undefined;
|
|
7544
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7545
8153
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7546
8154
|
readonly inlineTitle?: string | undefined;
|
|
7547
8155
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7558,32 +8166,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7558
8166
|
type?: string | undefined;
|
|
7559
8167
|
})[] | undefined;
|
|
7560
8168
|
readonly lookupPageSize?: number | undefined;
|
|
7561
|
-
readonly lookupFilters?: {
|
|
7562
|
-
field: string;
|
|
7563
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7564
|
-
value: any;
|
|
7565
|
-
}[] | undefined;
|
|
7566
8169
|
readonly dependsOn?: (string | {
|
|
7567
8170
|
field: string;
|
|
7568
8171
|
param?: string | undefined;
|
|
7569
8172
|
})[] | undefined;
|
|
7570
8173
|
readonly allowCreate?: boolean | undefined;
|
|
7571
|
-
readonly expression?: {
|
|
7572
|
-
dialect: "cel" | "cron" | "template";
|
|
7573
|
-
source?: string | undefined;
|
|
7574
|
-
ast?: unknown;
|
|
7575
|
-
meta?: {
|
|
7576
|
-
rationale?: string | undefined;
|
|
7577
|
-
generatedBy?: string | undefined;
|
|
7578
|
-
} | undefined;
|
|
7579
|
-
} | undefined;
|
|
7580
|
-
readonly summaryOperations?: {
|
|
7581
|
-
object: string;
|
|
7582
|
-
field: string;
|
|
7583
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7584
|
-
relationshipField?: string | undefined;
|
|
7585
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7586
|
-
} | undefined;
|
|
7587
8174
|
readonly language?: string | undefined;
|
|
7588
8175
|
readonly step?: number | undefined;
|
|
7589
8176
|
readonly currencyConfig?: {
|
|
@@ -7619,7 +8206,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7619
8206
|
readonly system?: boolean | undefined;
|
|
7620
8207
|
readonly sortable?: boolean | undefined;
|
|
7621
8208
|
readonly inlineHelpText?: string | undefined;
|
|
7622
|
-
readonly
|
|
8209
|
+
readonly externalId?: boolean | undefined;
|
|
7623
8210
|
readonly type: "text";
|
|
7624
8211
|
};
|
|
7625
8212
|
readonly organization_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -7661,8 +8248,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7661
8248
|
notNull?: boolean | undefined;
|
|
7662
8249
|
} | undefined;
|
|
7663
8250
|
readonly maxSize?: number | undefined;
|
|
7664
|
-
readonly
|
|
7665
|
-
readonly
|
|
8251
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
8252
|
+
readonly _lockReason?: string | undefined;
|
|
8253
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
8254
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
8255
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
8256
|
+
readonly _packageId?: string | undefined;
|
|
8257
|
+
readonly _packageVersion?: string | undefined;
|
|
8258
|
+
readonly lookupFilters?: {
|
|
8259
|
+
field: string;
|
|
8260
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
8261
|
+
value: any;
|
|
8262
|
+
}[] | undefined;
|
|
8263
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8264
|
+
readonly expression?: {
|
|
8265
|
+
dialect: "cel" | "cron" | "template";
|
|
8266
|
+
source?: string | undefined;
|
|
8267
|
+
ast?: unknown;
|
|
8268
|
+
meta?: {
|
|
8269
|
+
rationale?: string | undefined;
|
|
8270
|
+
generatedBy?: string | undefined;
|
|
8271
|
+
} | undefined;
|
|
8272
|
+
} | undefined;
|
|
8273
|
+
readonly autonumberFormat?: string | undefined;
|
|
8274
|
+
readonly summaryOperations?: {
|
|
8275
|
+
object: string;
|
|
8276
|
+
field: string;
|
|
8277
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
8278
|
+
relationshipField?: string | undefined;
|
|
8279
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
8280
|
+
} | undefined;
|
|
7666
8281
|
readonly visibleWhen?: {
|
|
7667
8282
|
dialect: "cel" | "cron" | "template";
|
|
7668
8283
|
source?: string | undefined;
|
|
@@ -7672,16 +8287,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7672
8287
|
generatedBy?: string | undefined;
|
|
7673
8288
|
} | undefined;
|
|
7674
8289
|
} | undefined;
|
|
8290
|
+
readonly scale?: number | undefined;
|
|
7675
8291
|
readonly searchable?: boolean | undefined;
|
|
7676
8292
|
readonly unique?: boolean | "global" | undefined;
|
|
8293
|
+
readonly defaultValue?: unknown;
|
|
7677
8294
|
readonly maxLength?: number | undefined;
|
|
7678
8295
|
readonly minLength?: number | undefined;
|
|
7679
|
-
readonly scale?: number | undefined;
|
|
7680
8296
|
readonly min?: number | undefined;
|
|
7681
8297
|
readonly max?: number | undefined;
|
|
7682
8298
|
readonly accept?: string[] | undefined;
|
|
7683
8299
|
readonly reference?: string | undefined;
|
|
7684
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7685
8300
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7686
8301
|
readonly inlineTitle?: string | undefined;
|
|
7687
8302
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7698,32 +8313,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7698
8313
|
type?: string | undefined;
|
|
7699
8314
|
})[] | undefined;
|
|
7700
8315
|
readonly lookupPageSize?: number | undefined;
|
|
7701
|
-
readonly lookupFilters?: {
|
|
7702
|
-
field: string;
|
|
7703
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7704
|
-
value: any;
|
|
7705
|
-
}[] | undefined;
|
|
7706
8316
|
readonly dependsOn?: (string | {
|
|
7707
8317
|
field: string;
|
|
7708
8318
|
param?: string | undefined;
|
|
7709
8319
|
})[] | undefined;
|
|
7710
8320
|
readonly allowCreate?: boolean | undefined;
|
|
7711
|
-
readonly expression?: {
|
|
7712
|
-
dialect: "cel" | "cron" | "template";
|
|
7713
|
-
source?: string | undefined;
|
|
7714
|
-
ast?: unknown;
|
|
7715
|
-
meta?: {
|
|
7716
|
-
rationale?: string | undefined;
|
|
7717
|
-
generatedBy?: string | undefined;
|
|
7718
|
-
} | undefined;
|
|
7719
|
-
} | undefined;
|
|
7720
|
-
readonly summaryOperations?: {
|
|
7721
|
-
object: string;
|
|
7722
|
-
field: string;
|
|
7723
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7724
|
-
relationshipField?: string | undefined;
|
|
7725
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7726
|
-
} | undefined;
|
|
7727
8321
|
readonly language?: string | undefined;
|
|
7728
8322
|
readonly step?: number | undefined;
|
|
7729
8323
|
readonly currencyConfig?: {
|
|
@@ -7759,7 +8353,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7759
8353
|
readonly system?: boolean | undefined;
|
|
7760
8354
|
readonly sortable?: boolean | undefined;
|
|
7761
8355
|
readonly inlineHelpText?: string | undefined;
|
|
7762
|
-
readonly
|
|
8356
|
+
readonly externalId?: boolean | undefined;
|
|
7763
8357
|
readonly type: "datetime";
|
|
7764
8358
|
};
|
|
7765
8359
|
readonly updated_at: {
|
|
@@ -7792,8 +8386,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7792
8386
|
notNull?: boolean | undefined;
|
|
7793
8387
|
} | undefined;
|
|
7794
8388
|
readonly maxSize?: number | undefined;
|
|
7795
|
-
readonly
|
|
7796
|
-
readonly
|
|
8389
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
8390
|
+
readonly _lockReason?: string | undefined;
|
|
8391
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
8392
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
8393
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
8394
|
+
readonly _packageId?: string | undefined;
|
|
8395
|
+
readonly _packageVersion?: string | undefined;
|
|
8396
|
+
readonly lookupFilters?: {
|
|
8397
|
+
field: string;
|
|
8398
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
8399
|
+
value: any;
|
|
8400
|
+
}[] | undefined;
|
|
8401
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8402
|
+
readonly expression?: {
|
|
8403
|
+
dialect: "cel" | "cron" | "template";
|
|
8404
|
+
source?: string | undefined;
|
|
8405
|
+
ast?: unknown;
|
|
8406
|
+
meta?: {
|
|
8407
|
+
rationale?: string | undefined;
|
|
8408
|
+
generatedBy?: string | undefined;
|
|
8409
|
+
} | undefined;
|
|
8410
|
+
} | undefined;
|
|
8411
|
+
readonly autonumberFormat?: string | undefined;
|
|
8412
|
+
readonly summaryOperations?: {
|
|
8413
|
+
object: string;
|
|
8414
|
+
field: string;
|
|
8415
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
8416
|
+
relationshipField?: string | undefined;
|
|
8417
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
8418
|
+
} | undefined;
|
|
7797
8419
|
readonly visibleWhen?: {
|
|
7798
8420
|
dialect: "cel" | "cron" | "template";
|
|
7799
8421
|
source?: string | undefined;
|
|
@@ -7803,16 +8425,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7803
8425
|
generatedBy?: string | undefined;
|
|
7804
8426
|
} | undefined;
|
|
7805
8427
|
} | undefined;
|
|
8428
|
+
readonly scale?: number | undefined;
|
|
7806
8429
|
readonly searchable?: boolean | undefined;
|
|
7807
8430
|
readonly unique?: boolean | "global" | undefined;
|
|
8431
|
+
readonly defaultValue?: unknown;
|
|
7808
8432
|
readonly maxLength?: number | undefined;
|
|
7809
8433
|
readonly minLength?: number | undefined;
|
|
7810
|
-
readonly scale?: number | undefined;
|
|
7811
8434
|
readonly min?: number | undefined;
|
|
7812
8435
|
readonly max?: number | undefined;
|
|
7813
8436
|
readonly accept?: string[] | undefined;
|
|
7814
8437
|
readonly reference?: string | undefined;
|
|
7815
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7816
8438
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7817
8439
|
readonly inlineTitle?: string | undefined;
|
|
7818
8440
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7829,32 +8451,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7829
8451
|
type?: string | undefined;
|
|
7830
8452
|
})[] | undefined;
|
|
7831
8453
|
readonly lookupPageSize?: number | undefined;
|
|
7832
|
-
readonly lookupFilters?: {
|
|
7833
|
-
field: string;
|
|
7834
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7835
|
-
value: any;
|
|
7836
|
-
}[] | undefined;
|
|
7837
8454
|
readonly dependsOn?: (string | {
|
|
7838
8455
|
field: string;
|
|
7839
8456
|
param?: string | undefined;
|
|
7840
8457
|
})[] | undefined;
|
|
7841
8458
|
readonly allowCreate?: boolean | undefined;
|
|
7842
|
-
readonly expression?: {
|
|
7843
|
-
dialect: "cel" | "cron" | "template";
|
|
7844
|
-
source?: string | undefined;
|
|
7845
|
-
ast?: unknown;
|
|
7846
|
-
meta?: {
|
|
7847
|
-
rationale?: string | undefined;
|
|
7848
|
-
generatedBy?: string | undefined;
|
|
7849
|
-
} | undefined;
|
|
7850
|
-
} | undefined;
|
|
7851
|
-
readonly summaryOperations?: {
|
|
7852
|
-
object: string;
|
|
7853
|
-
field: string;
|
|
7854
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7855
|
-
relationshipField?: string | undefined;
|
|
7856
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7857
|
-
} | undefined;
|
|
7858
8459
|
readonly language?: string | undefined;
|
|
7859
8460
|
readonly step?: number | undefined;
|
|
7860
8461
|
readonly currencyConfig?: {
|
|
@@ -7890,7 +8491,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7890
8491
|
readonly system?: boolean | undefined;
|
|
7891
8492
|
readonly sortable?: boolean | undefined;
|
|
7892
8493
|
readonly inlineHelpText?: string | undefined;
|
|
7893
|
-
readonly
|
|
8494
|
+
readonly externalId?: boolean | undefined;
|
|
7894
8495
|
readonly type: "datetime";
|
|
7895
8496
|
};
|
|
7896
8497
|
};
|
|
@@ -7974,6 +8575,21 @@ interface ApprovalResumeSurface {
|
|
|
7974
8575
|
getRun?(runId: string): Promise<{
|
|
7975
8576
|
status?: string;
|
|
7976
8577
|
} | null>;
|
|
8578
|
+
/**
|
|
8579
|
+
* Whether a suspension still exists for `runId` — the pre-flight that keeps
|
|
8580
|
+
* a decision from being recorded against a run that can never advance
|
|
8581
|
+
* (#4420). Read-only; it never consumes the suspension.
|
|
8582
|
+
*
|
|
8583
|
+
* Distinct from {@link getRun}, which reports on the execution LOG: a run
|
|
8584
|
+
* suspended by a PREVIOUS process resolves to `null` there even when its
|
|
8585
|
+
* state is durable, so it cannot tell "waiting for a human" from "dead".
|
|
8586
|
+
* This asks the suspension store itself.
|
|
8587
|
+
*
|
|
8588
|
+
* Rejects when the durable store cannot be read — existence is then
|
|
8589
|
+
* unknown, and callers must not read an outage as a dead run. Optional: an
|
|
8590
|
+
* engine that does not implement it simply gets no pre-flight.
|
|
8591
|
+
*/
|
|
8592
|
+
hasSuspendedRun?(runId: string): Promise<boolean>;
|
|
7977
8593
|
}
|
|
7978
8594
|
/**
|
|
7979
8595
|
* Optional messaging surface (ADR-0012 `messaging` service). When attached,
|
|
@@ -7994,6 +8610,30 @@ interface ApprovalMessagingSurface {
|
|
|
7994
8610
|
actorId?: string;
|
|
7995
8611
|
}): Promise<unknown>;
|
|
7996
8612
|
}
|
|
8613
|
+
/**
|
|
8614
|
+
* One terminal request whose owning flow run is unrecoverable (#4469) — the
|
|
8615
|
+
* decision was recorded and the flow never moved. Reporting shape only: the
|
|
8616
|
+
* sweep never rewrites these rows (see
|
|
8617
|
+
* {@link ApprovalService.inspectStrandedRequests}).
|
|
8618
|
+
*/
|
|
8619
|
+
interface StrandedApprovalRequest {
|
|
8620
|
+
requestId: string;
|
|
8621
|
+
/** Terminal status the request reached — the decision that WAS recorded. */
|
|
8622
|
+
status: string;
|
|
8623
|
+
/** The `flow_run_id` that resolves to neither a suspension nor a run history row. */
|
|
8624
|
+
runId: string;
|
|
8625
|
+
flowName?: string;
|
|
8626
|
+
/** Approval node the run should have continued from. */
|
|
8627
|
+
nodeId?: string;
|
|
8628
|
+
objectName: string;
|
|
8629
|
+
recordId: string;
|
|
8630
|
+
organizationId?: string | null;
|
|
8631
|
+
completedAt?: string;
|
|
8632
|
+
/** `config.approvalStatusField`, when the node mirrors status onto the record. */
|
|
8633
|
+
mirrorField?: string;
|
|
8634
|
+
/** What that mirror field currently reads — usually the stale value an operator sees. */
|
|
8635
|
+
mirroredStatus?: string;
|
|
8636
|
+
}
|
|
7997
8637
|
/** Outcome of redeeming (or peeking) an actionable-link token. */
|
|
7998
8638
|
type ActionTokenOutcome = {
|
|
7999
8639
|
ok: true;
|
|
@@ -8391,12 +9031,63 @@ declare class ApprovalService implements IApprovalService {
|
|
|
8391
9031
|
* Callers still guard on `typeof this.automation?.resume === 'function'`
|
|
8392
9032
|
* (approvals runs fine with no automation attached) and keep their own
|
|
8393
9033
|
* try/catch, because what a failed resume means differs per path.
|
|
9034
|
+
*
|
|
9035
|
+
* Throws when the engine REPORTS failure, not only when it throws one. The
|
|
9036
|
+
* engine answers a lost run with `{ success: false, code: 'RUN_NOT_FOUND' }`
|
|
9037
|
+
* — a plain return value that every caller here used to discard, which is
|
|
9038
|
+
* how an approval could be recorded, reported as resumed, and leave its flow
|
|
9039
|
+
* stranded forever (#4420). The thrown error carries {@link resumeCodeOf}'s
|
|
9040
|
+
* `resumeCode` so callers can tell a benign duplicate from a dead run.
|
|
8394
9041
|
*/
|
|
8395
9042
|
private serviceResume;
|
|
9043
|
+
/** The engine failure code behind a {@link serviceResume} rejection, if any. */
|
|
9044
|
+
private static resumeCodeOf;
|
|
9045
|
+
/**
|
|
9046
|
+
* Refuse an operation whose whole point is to advance a flow run when that
|
|
9047
|
+
* run no longer exists — BEFORE anything is written down (#4420).
|
|
9048
|
+
*
|
|
9049
|
+
* The half-state this prevents is the one the issue reported: a request
|
|
9050
|
+
* flipped to `approved`, a success toast, and a flow that never moves. Once
|
|
9051
|
+
* the decision row is written there is nothing left to fail cleanly.
|
|
9052
|
+
*
|
|
9053
|
+
* Deliberately permissive at the edges:
|
|
9054
|
+
* - no automation attached, or an engine without `hasSuspendedRun` → no
|
|
9055
|
+
* pre-flight at all (standalone approvals compositions are unaffected);
|
|
9056
|
+
* - the store cannot be READ → fail OPEN. A transient outage must not block
|
|
9057
|
+
* every decision in the tenant; the post-resume check still catches a real
|
|
9058
|
+
* failure and reports it loudly.
|
|
9059
|
+
*/
|
|
9060
|
+
private assertRunResumable;
|
|
9061
|
+
/**
|
|
9062
|
+
* Resume the run behind an outcome that has ALREADY been written down, and
|
|
9063
|
+
* fail loudly when it cannot be (#4420).
|
|
9064
|
+
*
|
|
9065
|
+
* For the operations whose product is the resume — a finalised decision, a
|
|
9066
|
+
* send-back, a resubmit. Their rows are durable by the time this runs, so a
|
|
9067
|
+
* failure here cannot be undone; the one thing left worth doing is refusing
|
|
9068
|
+
* to call it success. {@link assertRunResumable} is what keeps this rare:
|
|
9069
|
+
* everything it catches never reaches a write.
|
|
9070
|
+
*
|
|
9071
|
+
* `RESUME_IN_PROGRESS` is the exception — a concurrent resume is already
|
|
9072
|
+
* advancing the run, so the outcome stands and only `resumed` is false.
|
|
9073
|
+
*
|
|
9074
|
+
* @param what - how the recorded outcome reads in the error, e.g.
|
|
9075
|
+
* `"the approve decision"`.
|
|
9076
|
+
*/
|
|
9077
|
+
private resumeRecordedOutcome;
|
|
8396
9078
|
/**
|
|
8397
9079
|
* Public contract entrypoint (ADR-0019). Records a decision on a node-driven
|
|
8398
9080
|
* request via {@link ApprovalService.decideNode} and, when it finalizes,
|
|
8399
9081
|
* resumes the owning flow run down the matching `approve` / `reject` edge.
|
|
9082
|
+
*
|
|
9083
|
+
* A finalising decision whose run cannot be resumed FAILS (#4420). The
|
|
9084
|
+
* decision is already durable by then, so the failure cannot be rolled back
|
|
9085
|
+
* — but it must not be reported as success either: this used to answer HTTP
|
|
9086
|
+
* 200 with `resumed: true` while the flow stayed parked forever, which left
|
|
9087
|
+
* the approver with no signal and the record mirroring a stage it never
|
|
9088
|
+
* reached. `decideNode`'s pre-flight means the common case (the run died
|
|
9089
|
+
* before the decision) never gets this far; what survives here is a genuine
|
|
9090
|
+
* race, and it names the stranded run.
|
|
8400
9091
|
*/
|
|
8401
9092
|
decide(requestId: string, input: ApprovalDecisionInput, context: SharingExecutionContext): Promise<ApprovalDecisionResult>;
|
|
8402
9093
|
/**
|
|
@@ -8551,6 +9242,54 @@ declare class ApprovalService implements IApprovalService {
|
|
|
8551
9242
|
* the real cause and {@link DEAD_RUN_ACTOR_ID} the real actor, so a dead-run
|
|
8552
9243
|
* release is never mistaken for a submitter's withdrawal.
|
|
8553
9244
|
*/
|
|
9245
|
+
/**
|
|
9246
|
+
* Read-only inspection for the OTHER dead-run shape: a request that is
|
|
9247
|
+
* already TERMINAL while its `flow_run_id` points at nothing (#4469).
|
|
9248
|
+
*
|
|
9249
|
+
* #4460 stopped new ones being produced; nothing found the ones already
|
|
9250
|
+
* stuck. The failure mode (#4420) is a request row flipped to `approved` /
|
|
9251
|
+
* `rejected` / `returned` whose owning run no longer exists — the decision
|
|
9252
|
+
* landed, the flow never moved. Any deployment on 17.0.0-rc.1 that hit the
|
|
9253
|
+
* wiring hole and crossed a restart mid-approval can be carrying these rows.
|
|
9254
|
+
*
|
|
9255
|
+
* {@link releaseDeadRunRequests} cannot see them, for a reason worth naming:
|
|
9256
|
+
* it scans `status: 'pending'`, and the very step that zombified the request
|
|
9257
|
+
* is the one that took it OUT of `pending`. The act of breaking it removed it
|
|
9258
|
+
* from the only sweeper's field of view — which is a large part of why this
|
|
9259
|
+
* class of failure stayed silent.
|
|
9260
|
+
*
|
|
9261
|
+
* It also could not have answered the question even if it looked: its
|
|
9262
|
+
* liveness oracle is `getRun`, which reads the execution LOG, and after a
|
|
9263
|
+
* restart that returns `null` for a perfectly ALIVE suspended run. It treats
|
|
9264
|
+
* `null` as alive (conservative, correct) — but that means it has no way to
|
|
9265
|
+
* say "this run is really gone".
|
|
9266
|
+
*
|
|
9267
|
+
* So this uses BOTH oracles, and a row must fail both to be reported:
|
|
9268
|
+
*
|
|
9269
|
+
* - `hasSuspendedRun(runId) === false` — the suspension store itself says no
|
|
9270
|
+
* live pause exists. It THROWS when the store cannot be read, and that
|
|
9271
|
+
* case is SKIPPED, never counted as dead: an unreadable store means
|
|
9272
|
+
* "unknown", and a storage outage must not be published as a lost run.
|
|
9273
|
+
* - `getRun(runId) == null` — no terminal history row either (the `run_`
|
|
9274
|
+
* prefixed rows in `sys_automation_run`). A run that merely finished is
|
|
9275
|
+
* not stranded; a request whose run neither waits nor ever completed is.
|
|
9276
|
+
*
|
|
9277
|
+
* **Reports; never rewrites.** No status is changed and no run is cancelled.
|
|
9278
|
+
* The decision genuinely happened — a human approved or rejected — and
|
|
9279
|
+
* silently rolling it back would make the audit trail disagree with the
|
|
9280
|
+
* facts. What an operator needs first is visibility: which requests are stuck
|
|
9281
|
+
* at which step, and what the mirrored status field on the business record
|
|
9282
|
+
* still says. Whether to re-run the downstream actions or re-open the
|
|
9283
|
+
* approval is a judgement call this cannot make.
|
|
9284
|
+
*/
|
|
9285
|
+
inspectStrandedRequests(options?: {
|
|
9286
|
+
limit?: number;
|
|
9287
|
+
}): Promise<{
|
|
9288
|
+
scanned: number;
|
|
9289
|
+
stranded: StrandedApprovalRequest[];
|
|
9290
|
+
/** Rows skipped because the suspension store could not be read — NOT healthy, just unknown. */
|
|
9291
|
+
undetermined: number;
|
|
9292
|
+
}>;
|
|
8554
9293
|
releaseDeadRunRequests(): Promise<{
|
|
8555
9294
|
scanned: number;
|
|
8556
9295
|
released: number;
|
|
@@ -8815,4 +9554,4 @@ interface MinimalLogger {
|
|
|
8815
9554
|
*/
|
|
8816
9555
|
declare function registerApprovalNode(automation: ApprovalAutomationSurface, service: ApprovalService, logger?: MinimalLogger): void;
|
|
8817
9556
|
|
|
8818
|
-
export { type ApprovalAutomationSurface, type ApprovalClock, type ApprovalEngine, type ApprovalNodeAutoOutcome, type ApprovalResumeSurface, ApprovalService, type ApprovalServiceOptions, type ApprovalsPluginOptions, ApprovalsServicePlugin, type ApproverExpressionContext, SysApprovalAction, SysApprovalApprover, SysApprovalDelegation, SysApprovalRequest, registerApprovalNode };
|
|
9557
|
+
export { type ApprovalAutomationSurface, type ApprovalClock, type ApprovalEngine, type ApprovalNodeAutoOutcome, type ApprovalResumeSurface, ApprovalService, type ApprovalServiceOptions, type ApprovalsPluginOptions, ApprovalsServicePlugin, type ApproverExpressionContext, type StrandedApprovalRequest, SysApprovalAction, SysApprovalApprover, SysApprovalDelegation, SysApprovalRequest, registerApprovalNode };
|