@objectstack/plugin-approvals 17.0.0-rc.1 → 17.0.0-rc.2
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 +424 -0
- package/dist/index.d.mts +1769 -1034
- package/dist/index.d.ts +1769 -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.ts
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,53 @@ 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
|
+
label: string;
|
|
630
|
+
value: string | number | boolean;
|
|
631
|
+
}[] | undefined;
|
|
632
|
+
object?: string | undefined;
|
|
633
|
+
labelField?: string | undefined;
|
|
634
|
+
multiple?: boolean | undefined;
|
|
635
|
+
placeholder?: string | undefined;
|
|
636
|
+
}[] | undefined;
|
|
637
|
+
confirmText?: string | undefined;
|
|
638
|
+
confirmLabel?: string | undefined;
|
|
639
|
+
visible?: {
|
|
640
|
+
dialect: "cel" | "cron" | "template";
|
|
641
|
+
source?: string | undefined;
|
|
642
|
+
ast?: unknown;
|
|
643
|
+
meta?: {
|
|
644
|
+
rationale?: string | undefined;
|
|
645
|
+
generatedBy?: string | undefined;
|
|
646
|
+
} | undefined;
|
|
647
|
+
} | {
|
|
648
|
+
dialect: "cel" | "cron" | "template";
|
|
649
|
+
source?: string | undefined;
|
|
650
|
+
ast?: unknown;
|
|
651
|
+
meta?: {
|
|
652
|
+
rationale?: string | undefined;
|
|
653
|
+
generatedBy?: string | undefined;
|
|
654
|
+
} | undefined;
|
|
655
|
+
} | undefined;
|
|
656
|
+
maxRecords?: number | undefined;
|
|
657
|
+
batchSize?: number | undefined;
|
|
658
|
+
}[] | undefined;
|
|
592
659
|
virtualScroll?: boolean | undefined;
|
|
593
660
|
conditionalFormatting?: {
|
|
594
661
|
condition: {
|
|
@@ -611,20 +678,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
611
678
|
style: Record<string, string>;
|
|
612
679
|
}[] | undefined;
|
|
613
680
|
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
681
|
addRecord?: {
|
|
629
682
|
enabled: boolean;
|
|
630
683
|
position: "top" | "bottom" | "both";
|
|
@@ -675,6 +728,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
675
728
|
label: string;
|
|
676
729
|
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
677
730
|
refreshAfter: boolean;
|
|
731
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
732
|
+
_lockReason?: string | undefined;
|
|
733
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
734
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
735
|
+
_packageId?: string | undefined;
|
|
736
|
+
_packageVersion?: string | undefined;
|
|
737
|
+
_lockDocsUrl?: string | undefined;
|
|
678
738
|
objectName?: string | undefined;
|
|
679
739
|
icon?: string | undefined;
|
|
680
740
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
@@ -687,7 +747,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
687
747
|
} | {
|
|
688
748
|
language: "js";
|
|
689
749
|
source: string;
|
|
690
|
-
capabilities: ("
|
|
750
|
+
capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
|
|
691
751
|
timeoutMs?: number | undefined;
|
|
692
752
|
memoryMb?: number | undefined;
|
|
693
753
|
} | undefined;
|
|
@@ -698,7 +758,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
698
758
|
field?: string | undefined;
|
|
699
759
|
objectOverride?: string | undefined;
|
|
700
760
|
label?: string | undefined;
|
|
701
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
761
|
+
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
762
|
options?: {
|
|
703
763
|
label: string;
|
|
704
764
|
value: string;
|
|
@@ -930,8 +990,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
930
990
|
notNull?: boolean | undefined;
|
|
931
991
|
} | undefined;
|
|
932
992
|
readonly maxSize?: number | undefined;
|
|
933
|
-
readonly
|
|
934
|
-
readonly
|
|
993
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
994
|
+
readonly _lockReason?: string | undefined;
|
|
995
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
996
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
997
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
998
|
+
readonly _packageId?: string | undefined;
|
|
999
|
+
readonly _packageVersion?: string | undefined;
|
|
1000
|
+
readonly lookupFilters?: {
|
|
1001
|
+
field: string;
|
|
1002
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1003
|
+
value: any;
|
|
1004
|
+
}[] | undefined;
|
|
1005
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1006
|
+
readonly expression?: {
|
|
1007
|
+
dialect: "cel" | "cron" | "template";
|
|
1008
|
+
source?: string | undefined;
|
|
1009
|
+
ast?: unknown;
|
|
1010
|
+
meta?: {
|
|
1011
|
+
rationale?: string | undefined;
|
|
1012
|
+
generatedBy?: string | undefined;
|
|
1013
|
+
} | undefined;
|
|
1014
|
+
} | undefined;
|
|
1015
|
+
readonly autonumberFormat?: string | undefined;
|
|
1016
|
+
readonly summaryOperations?: {
|
|
1017
|
+
object: string;
|
|
1018
|
+
field: string;
|
|
1019
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1020
|
+
relationshipField?: string | undefined;
|
|
1021
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1022
|
+
} | undefined;
|
|
935
1023
|
readonly visibleWhen?: {
|
|
936
1024
|
dialect: "cel" | "cron" | "template";
|
|
937
1025
|
source?: string | undefined;
|
|
@@ -941,16 +1029,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
941
1029
|
generatedBy?: string | undefined;
|
|
942
1030
|
} | undefined;
|
|
943
1031
|
} | undefined;
|
|
1032
|
+
readonly scale?: number | undefined;
|
|
944
1033
|
readonly searchable?: boolean | undefined;
|
|
945
1034
|
readonly unique?: boolean | "global" | undefined;
|
|
1035
|
+
readonly defaultValue?: unknown;
|
|
946
1036
|
readonly maxLength?: number | undefined;
|
|
947
1037
|
readonly minLength?: number | undefined;
|
|
948
|
-
readonly scale?: number | undefined;
|
|
949
1038
|
readonly min?: number | undefined;
|
|
950
1039
|
readonly max?: number | undefined;
|
|
951
1040
|
readonly accept?: string[] | undefined;
|
|
952
1041
|
readonly reference?: string | undefined;
|
|
953
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
954
1042
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
955
1043
|
readonly inlineTitle?: string | undefined;
|
|
956
1044
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -967,32 +1055,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
967
1055
|
type?: string | undefined;
|
|
968
1056
|
})[] | undefined;
|
|
969
1057
|
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
1058
|
readonly dependsOn?: (string | {
|
|
976
1059
|
field: string;
|
|
977
1060
|
param?: string | undefined;
|
|
978
1061
|
})[] | undefined;
|
|
979
1062
|
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
1063
|
readonly language?: string | undefined;
|
|
997
1064
|
readonly step?: number | undefined;
|
|
998
1065
|
readonly currencyConfig?: {
|
|
@@ -1028,7 +1095,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1028
1095
|
readonly system?: boolean | undefined;
|
|
1029
1096
|
readonly sortable?: boolean | undefined;
|
|
1030
1097
|
readonly inlineHelpText?: string | undefined;
|
|
1031
|
-
readonly
|
|
1098
|
+
readonly externalId?: boolean | undefined;
|
|
1032
1099
|
readonly type: "text";
|
|
1033
1100
|
};
|
|
1034
1101
|
readonly organization_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -1070,8 +1137,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1070
1137
|
notNull?: boolean | undefined;
|
|
1071
1138
|
} | undefined;
|
|
1072
1139
|
readonly maxSize?: number | undefined;
|
|
1073
|
-
readonly
|
|
1074
|
-
readonly
|
|
1140
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1141
|
+
readonly _lockReason?: string | undefined;
|
|
1142
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1143
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1144
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1145
|
+
readonly _packageId?: string | undefined;
|
|
1146
|
+
readonly _packageVersion?: string | undefined;
|
|
1147
|
+
readonly lookupFilters?: {
|
|
1148
|
+
field: string;
|
|
1149
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1150
|
+
value: any;
|
|
1151
|
+
}[] | undefined;
|
|
1152
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1153
|
+
readonly expression?: {
|
|
1154
|
+
dialect: "cel" | "cron" | "template";
|
|
1155
|
+
source?: string | undefined;
|
|
1156
|
+
ast?: unknown;
|
|
1157
|
+
meta?: {
|
|
1158
|
+
rationale?: string | undefined;
|
|
1159
|
+
generatedBy?: string | undefined;
|
|
1160
|
+
} | undefined;
|
|
1161
|
+
} | undefined;
|
|
1162
|
+
readonly autonumberFormat?: string | undefined;
|
|
1163
|
+
readonly summaryOperations?: {
|
|
1164
|
+
object: string;
|
|
1165
|
+
field: string;
|
|
1166
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1167
|
+
relationshipField?: string | undefined;
|
|
1168
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1169
|
+
} | undefined;
|
|
1075
1170
|
readonly visibleWhen?: {
|
|
1076
1171
|
dialect: "cel" | "cron" | "template";
|
|
1077
1172
|
source?: string | undefined;
|
|
@@ -1081,16 +1176,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1081
1176
|
generatedBy?: string | undefined;
|
|
1082
1177
|
} | undefined;
|
|
1083
1178
|
} | undefined;
|
|
1179
|
+
readonly scale?: number | undefined;
|
|
1084
1180
|
readonly searchable?: boolean | undefined;
|
|
1085
1181
|
readonly unique?: boolean | "global" | undefined;
|
|
1182
|
+
readonly defaultValue?: unknown;
|
|
1086
1183
|
readonly maxLength?: number | undefined;
|
|
1087
1184
|
readonly minLength?: number | undefined;
|
|
1088
|
-
readonly scale?: number | undefined;
|
|
1089
1185
|
readonly min?: number | undefined;
|
|
1090
1186
|
readonly max?: number | undefined;
|
|
1091
1187
|
readonly accept?: string[] | undefined;
|
|
1092
1188
|
readonly reference?: string | undefined;
|
|
1093
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1094
1189
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1095
1190
|
readonly inlineTitle?: string | undefined;
|
|
1096
1191
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1107,32 +1202,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1107
1202
|
type?: string | undefined;
|
|
1108
1203
|
})[] | undefined;
|
|
1109
1204
|
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
1205
|
readonly dependsOn?: (string | {
|
|
1116
1206
|
field: string;
|
|
1117
1207
|
param?: string | undefined;
|
|
1118
1208
|
})[] | undefined;
|
|
1119
1209
|
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
1210
|
readonly language?: string | undefined;
|
|
1137
1211
|
readonly step?: number | undefined;
|
|
1138
1212
|
readonly currencyConfig?: {
|
|
@@ -1168,7 +1242,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1168
1242
|
readonly system?: boolean | undefined;
|
|
1169
1243
|
readonly sortable?: boolean | undefined;
|
|
1170
1244
|
readonly inlineHelpText?: string | undefined;
|
|
1171
|
-
readonly
|
|
1245
|
+
readonly externalId?: boolean | undefined;
|
|
1172
1246
|
readonly type: "text";
|
|
1173
1247
|
};
|
|
1174
1248
|
readonly object_name: {
|
|
@@ -1201,8 +1275,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1201
1275
|
notNull?: boolean | undefined;
|
|
1202
1276
|
} | undefined;
|
|
1203
1277
|
readonly maxSize?: number | undefined;
|
|
1204
|
-
readonly
|
|
1205
|
-
readonly
|
|
1278
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1279
|
+
readonly _lockReason?: string | undefined;
|
|
1280
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1281
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1282
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1283
|
+
readonly _packageId?: string | undefined;
|
|
1284
|
+
readonly _packageVersion?: string | undefined;
|
|
1285
|
+
readonly lookupFilters?: {
|
|
1286
|
+
field: string;
|
|
1287
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1288
|
+
value: any;
|
|
1289
|
+
}[] | undefined;
|
|
1290
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1291
|
+
readonly expression?: {
|
|
1292
|
+
dialect: "cel" | "cron" | "template";
|
|
1293
|
+
source?: string | undefined;
|
|
1294
|
+
ast?: unknown;
|
|
1295
|
+
meta?: {
|
|
1296
|
+
rationale?: string | undefined;
|
|
1297
|
+
generatedBy?: string | undefined;
|
|
1298
|
+
} | undefined;
|
|
1299
|
+
} | undefined;
|
|
1300
|
+
readonly autonumberFormat?: string | undefined;
|
|
1301
|
+
readonly summaryOperations?: {
|
|
1302
|
+
object: string;
|
|
1303
|
+
field: string;
|
|
1304
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1305
|
+
relationshipField?: string | undefined;
|
|
1306
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1307
|
+
} | undefined;
|
|
1206
1308
|
readonly visibleWhen?: {
|
|
1207
1309
|
dialect: "cel" | "cron" | "template";
|
|
1208
1310
|
source?: string | undefined;
|
|
@@ -1212,16 +1314,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1212
1314
|
generatedBy?: string | undefined;
|
|
1213
1315
|
} | undefined;
|
|
1214
1316
|
} | undefined;
|
|
1317
|
+
readonly scale?: number | undefined;
|
|
1215
1318
|
readonly searchable?: boolean | undefined;
|
|
1216
1319
|
readonly unique?: boolean | "global" | undefined;
|
|
1320
|
+
readonly defaultValue?: unknown;
|
|
1217
1321
|
readonly maxLength?: number | undefined;
|
|
1218
1322
|
readonly minLength?: number | undefined;
|
|
1219
|
-
readonly scale?: number | undefined;
|
|
1220
1323
|
readonly min?: number | undefined;
|
|
1221
1324
|
readonly max?: number | undefined;
|
|
1222
1325
|
readonly accept?: string[] | undefined;
|
|
1223
1326
|
readonly reference?: string | undefined;
|
|
1224
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1225
1327
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1226
1328
|
readonly inlineTitle?: string | undefined;
|
|
1227
1329
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1238,32 +1340,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1238
1340
|
type?: string | undefined;
|
|
1239
1341
|
})[] | undefined;
|
|
1240
1342
|
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
1343
|
readonly dependsOn?: (string | {
|
|
1247
1344
|
field: string;
|
|
1248
1345
|
param?: string | undefined;
|
|
1249
1346
|
})[] | undefined;
|
|
1250
1347
|
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
1348
|
readonly language?: string | undefined;
|
|
1268
1349
|
readonly step?: number | undefined;
|
|
1269
1350
|
readonly currencyConfig?: {
|
|
@@ -1299,7 +1380,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1299
1380
|
readonly system?: boolean | undefined;
|
|
1300
1381
|
readonly sortable?: boolean | undefined;
|
|
1301
1382
|
readonly inlineHelpText?: string | undefined;
|
|
1302
|
-
readonly
|
|
1383
|
+
readonly externalId?: boolean | undefined;
|
|
1303
1384
|
readonly type: "text";
|
|
1304
1385
|
};
|
|
1305
1386
|
readonly record_id: {
|
|
@@ -1332,8 +1413,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1332
1413
|
notNull?: boolean | undefined;
|
|
1333
1414
|
} | undefined;
|
|
1334
1415
|
readonly maxSize?: number | undefined;
|
|
1335
|
-
readonly
|
|
1336
|
-
readonly
|
|
1416
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1417
|
+
readonly _lockReason?: string | undefined;
|
|
1418
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1419
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1420
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1421
|
+
readonly _packageId?: string | undefined;
|
|
1422
|
+
readonly _packageVersion?: string | undefined;
|
|
1423
|
+
readonly lookupFilters?: {
|
|
1424
|
+
field: string;
|
|
1425
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1426
|
+
value: any;
|
|
1427
|
+
}[] | undefined;
|
|
1428
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1429
|
+
readonly expression?: {
|
|
1430
|
+
dialect: "cel" | "cron" | "template";
|
|
1431
|
+
source?: string | undefined;
|
|
1432
|
+
ast?: unknown;
|
|
1433
|
+
meta?: {
|
|
1434
|
+
rationale?: string | undefined;
|
|
1435
|
+
generatedBy?: string | undefined;
|
|
1436
|
+
} | undefined;
|
|
1437
|
+
} | undefined;
|
|
1438
|
+
readonly autonumberFormat?: string | undefined;
|
|
1439
|
+
readonly summaryOperations?: {
|
|
1440
|
+
object: string;
|
|
1441
|
+
field: string;
|
|
1442
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1443
|
+
relationshipField?: string | undefined;
|
|
1444
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1445
|
+
} | undefined;
|
|
1337
1446
|
readonly visibleWhen?: {
|
|
1338
1447
|
dialect: "cel" | "cron" | "template";
|
|
1339
1448
|
source?: string | undefined;
|
|
@@ -1343,16 +1452,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1343
1452
|
generatedBy?: string | undefined;
|
|
1344
1453
|
} | undefined;
|
|
1345
1454
|
} | undefined;
|
|
1455
|
+
readonly scale?: number | undefined;
|
|
1346
1456
|
readonly searchable?: boolean | undefined;
|
|
1347
1457
|
readonly unique?: boolean | "global" | undefined;
|
|
1458
|
+
readonly defaultValue?: unknown;
|
|
1348
1459
|
readonly maxLength?: number | undefined;
|
|
1349
1460
|
readonly minLength?: number | undefined;
|
|
1350
|
-
readonly scale?: number | undefined;
|
|
1351
1461
|
readonly min?: number | undefined;
|
|
1352
1462
|
readonly max?: number | undefined;
|
|
1353
1463
|
readonly accept?: string[] | undefined;
|
|
1354
1464
|
readonly reference?: string | undefined;
|
|
1355
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1356
1465
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1357
1466
|
readonly inlineTitle?: string | undefined;
|
|
1358
1467
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1369,32 +1478,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1369
1478
|
type?: string | undefined;
|
|
1370
1479
|
})[] | undefined;
|
|
1371
1480
|
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
1481
|
readonly dependsOn?: (string | {
|
|
1378
1482
|
field: string;
|
|
1379
1483
|
param?: string | undefined;
|
|
1380
1484
|
})[] | undefined;
|
|
1381
1485
|
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
1486
|
readonly language?: string | undefined;
|
|
1399
1487
|
readonly step?: number | undefined;
|
|
1400
1488
|
readonly currencyConfig?: {
|
|
@@ -1430,7 +1518,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1430
1518
|
readonly system?: boolean | undefined;
|
|
1431
1519
|
readonly sortable?: boolean | undefined;
|
|
1432
1520
|
readonly inlineHelpText?: string | undefined;
|
|
1433
|
-
readonly
|
|
1521
|
+
readonly externalId?: boolean | undefined;
|
|
1434
1522
|
readonly type: "text";
|
|
1435
1523
|
};
|
|
1436
1524
|
readonly submitter_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -1471,8 +1559,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1471
1559
|
notNull?: boolean | undefined;
|
|
1472
1560
|
} | undefined;
|
|
1473
1561
|
readonly maxSize?: number | undefined;
|
|
1474
|
-
readonly
|
|
1475
|
-
readonly
|
|
1562
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1563
|
+
readonly _lockReason?: string | undefined;
|
|
1564
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1565
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1566
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1567
|
+
readonly _packageId?: string | undefined;
|
|
1568
|
+
readonly _packageVersion?: string | undefined;
|
|
1569
|
+
readonly lookupFilters?: {
|
|
1570
|
+
field: string;
|
|
1571
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1572
|
+
value: any;
|
|
1573
|
+
}[] | undefined;
|
|
1574
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1575
|
+
readonly expression?: {
|
|
1576
|
+
dialect: "cel" | "cron" | "template";
|
|
1577
|
+
source?: string | undefined;
|
|
1578
|
+
ast?: unknown;
|
|
1579
|
+
meta?: {
|
|
1580
|
+
rationale?: string | undefined;
|
|
1581
|
+
generatedBy?: string | undefined;
|
|
1582
|
+
} | undefined;
|
|
1583
|
+
} | undefined;
|
|
1584
|
+
readonly autonumberFormat?: string | undefined;
|
|
1585
|
+
readonly summaryOperations?: {
|
|
1586
|
+
object: string;
|
|
1587
|
+
field: string;
|
|
1588
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1589
|
+
relationshipField?: string | undefined;
|
|
1590
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1591
|
+
} | undefined;
|
|
1476
1592
|
readonly visibleWhen?: {
|
|
1477
1593
|
dialect: "cel" | "cron" | "template";
|
|
1478
1594
|
source?: string | undefined;
|
|
@@ -1482,16 +1598,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1482
1598
|
generatedBy?: string | undefined;
|
|
1483
1599
|
} | undefined;
|
|
1484
1600
|
} | undefined;
|
|
1601
|
+
readonly scale?: number | undefined;
|
|
1485
1602
|
readonly searchable?: boolean | undefined;
|
|
1486
1603
|
readonly unique?: boolean | "global" | undefined;
|
|
1604
|
+
readonly defaultValue?: unknown;
|
|
1487
1605
|
readonly maxLength?: number | undefined;
|
|
1488
1606
|
readonly minLength?: number | undefined;
|
|
1489
|
-
readonly scale?: number | undefined;
|
|
1490
1607
|
readonly min?: number | undefined;
|
|
1491
1608
|
readonly max?: number | undefined;
|
|
1492
1609
|
readonly accept?: string[] | undefined;
|
|
1493
1610
|
readonly reference?: string | undefined;
|
|
1494
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1495
1611
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1496
1612
|
readonly inlineTitle?: string | undefined;
|
|
1497
1613
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1508,32 +1624,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1508
1624
|
type?: string | undefined;
|
|
1509
1625
|
})[] | undefined;
|
|
1510
1626
|
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
1627
|
readonly dependsOn?: (string | {
|
|
1517
1628
|
field: string;
|
|
1518
1629
|
param?: string | undefined;
|
|
1519
1630
|
})[] | undefined;
|
|
1520
1631
|
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
1632
|
readonly language?: string | undefined;
|
|
1538
1633
|
readonly step?: number | undefined;
|
|
1539
1634
|
readonly currencyConfig?: {
|
|
@@ -1569,7 +1664,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1569
1664
|
readonly system?: boolean | undefined;
|
|
1570
1665
|
readonly sortable?: boolean | undefined;
|
|
1571
1666
|
readonly inlineHelpText?: string | undefined;
|
|
1572
|
-
readonly
|
|
1667
|
+
readonly externalId?: boolean | undefined;
|
|
1573
1668
|
readonly type: "textarea";
|
|
1574
1669
|
};
|
|
1575
1670
|
readonly status: {
|
|
@@ -1602,8 +1697,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1602
1697
|
notNull?: boolean | undefined;
|
|
1603
1698
|
} | undefined;
|
|
1604
1699
|
readonly maxSize?: number | undefined;
|
|
1605
|
-
readonly
|
|
1606
|
-
readonly
|
|
1700
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1701
|
+
readonly _lockReason?: string | undefined;
|
|
1702
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1703
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1704
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1705
|
+
readonly _packageId?: string | undefined;
|
|
1706
|
+
readonly _packageVersion?: string | undefined;
|
|
1707
|
+
readonly lookupFilters?: {
|
|
1708
|
+
field: string;
|
|
1709
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1710
|
+
value: any;
|
|
1711
|
+
}[] | undefined;
|
|
1712
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1713
|
+
readonly expression?: {
|
|
1714
|
+
dialect: "cel" | "cron" | "template";
|
|
1715
|
+
source?: string | undefined;
|
|
1716
|
+
ast?: unknown;
|
|
1717
|
+
meta?: {
|
|
1718
|
+
rationale?: string | undefined;
|
|
1719
|
+
generatedBy?: string | undefined;
|
|
1720
|
+
} | undefined;
|
|
1721
|
+
} | undefined;
|
|
1722
|
+
readonly autonumberFormat?: string | undefined;
|
|
1723
|
+
readonly summaryOperations?: {
|
|
1724
|
+
object: string;
|
|
1725
|
+
field: string;
|
|
1726
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1727
|
+
relationshipField?: string | undefined;
|
|
1728
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1729
|
+
} | undefined;
|
|
1607
1730
|
readonly visibleWhen?: {
|
|
1608
1731
|
dialect: "cel" | "cron" | "template";
|
|
1609
1732
|
source?: string | undefined;
|
|
@@ -1613,16 +1736,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1613
1736
|
generatedBy?: string | undefined;
|
|
1614
1737
|
} | undefined;
|
|
1615
1738
|
} | undefined;
|
|
1739
|
+
readonly scale?: number | undefined;
|
|
1616
1740
|
readonly searchable?: boolean | undefined;
|
|
1617
1741
|
readonly unique?: boolean | "global" | undefined;
|
|
1742
|
+
readonly defaultValue?: unknown;
|
|
1618
1743
|
readonly maxLength?: number | undefined;
|
|
1619
1744
|
readonly minLength?: number | undefined;
|
|
1620
|
-
readonly scale?: number | undefined;
|
|
1621
1745
|
readonly min?: number | undefined;
|
|
1622
1746
|
readonly max?: number | undefined;
|
|
1623
1747
|
readonly accept?: string[] | undefined;
|
|
1624
1748
|
readonly reference?: string | undefined;
|
|
1625
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1626
1749
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1627
1750
|
readonly inlineTitle?: string | undefined;
|
|
1628
1751
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1639,32 +1762,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1639
1762
|
type?: string | undefined;
|
|
1640
1763
|
})[] | undefined;
|
|
1641
1764
|
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
1765
|
readonly dependsOn?: (string | {
|
|
1648
1766
|
field: string;
|
|
1649
1767
|
param?: string | undefined;
|
|
1650
1768
|
})[] | undefined;
|
|
1651
1769
|
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
1770
|
readonly language?: string | undefined;
|
|
1669
1771
|
readonly step?: number | undefined;
|
|
1670
1772
|
readonly currencyConfig?: {
|
|
@@ -1700,7 +1802,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1700
1802
|
readonly system?: boolean | undefined;
|
|
1701
1803
|
readonly sortable?: boolean | undefined;
|
|
1702
1804
|
readonly inlineHelpText?: string | undefined;
|
|
1703
|
-
readonly
|
|
1805
|
+
readonly externalId?: boolean | undefined;
|
|
1704
1806
|
readonly type: "select";
|
|
1705
1807
|
};
|
|
1706
1808
|
readonly current_step: {
|
|
@@ -1733,8 +1835,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1733
1835
|
notNull?: boolean | undefined;
|
|
1734
1836
|
} | undefined;
|
|
1735
1837
|
readonly maxSize?: number | undefined;
|
|
1736
|
-
readonly
|
|
1737
|
-
readonly
|
|
1838
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1839
|
+
readonly _lockReason?: string | undefined;
|
|
1840
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1841
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1842
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1843
|
+
readonly _packageId?: string | undefined;
|
|
1844
|
+
readonly _packageVersion?: string | undefined;
|
|
1845
|
+
readonly lookupFilters?: {
|
|
1846
|
+
field: string;
|
|
1847
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1848
|
+
value: any;
|
|
1849
|
+
}[] | undefined;
|
|
1850
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1851
|
+
readonly expression?: {
|
|
1852
|
+
dialect: "cel" | "cron" | "template";
|
|
1853
|
+
source?: string | undefined;
|
|
1854
|
+
ast?: unknown;
|
|
1855
|
+
meta?: {
|
|
1856
|
+
rationale?: string | undefined;
|
|
1857
|
+
generatedBy?: string | undefined;
|
|
1858
|
+
} | undefined;
|
|
1859
|
+
} | undefined;
|
|
1860
|
+
readonly autonumberFormat?: string | undefined;
|
|
1861
|
+
readonly summaryOperations?: {
|
|
1862
|
+
object: string;
|
|
1863
|
+
field: string;
|
|
1864
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1865
|
+
relationshipField?: string | undefined;
|
|
1866
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1867
|
+
} | undefined;
|
|
1738
1868
|
readonly visibleWhen?: {
|
|
1739
1869
|
dialect: "cel" | "cron" | "template";
|
|
1740
1870
|
source?: string | undefined;
|
|
@@ -1744,16 +1874,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1744
1874
|
generatedBy?: string | undefined;
|
|
1745
1875
|
} | undefined;
|
|
1746
1876
|
} | undefined;
|
|
1877
|
+
readonly scale?: number | undefined;
|
|
1747
1878
|
readonly searchable?: boolean | undefined;
|
|
1748
1879
|
readonly unique?: boolean | "global" | undefined;
|
|
1880
|
+
readonly defaultValue?: unknown;
|
|
1749
1881
|
readonly maxLength?: number | undefined;
|
|
1750
1882
|
readonly minLength?: number | undefined;
|
|
1751
|
-
readonly scale?: number | undefined;
|
|
1752
1883
|
readonly min?: number | undefined;
|
|
1753
1884
|
readonly max?: number | undefined;
|
|
1754
1885
|
readonly accept?: string[] | undefined;
|
|
1755
1886
|
readonly reference?: string | undefined;
|
|
1756
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1757
1887
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1758
1888
|
readonly inlineTitle?: string | undefined;
|
|
1759
1889
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1770,32 +1900,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1770
1900
|
type?: string | undefined;
|
|
1771
1901
|
})[] | undefined;
|
|
1772
1902
|
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
1903
|
readonly dependsOn?: (string | {
|
|
1779
1904
|
field: string;
|
|
1780
1905
|
param?: string | undefined;
|
|
1781
1906
|
})[] | undefined;
|
|
1782
1907
|
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
1908
|
readonly language?: string | undefined;
|
|
1800
1909
|
readonly step?: number | undefined;
|
|
1801
1910
|
readonly currencyConfig?: {
|
|
@@ -1831,7 +1940,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1831
1940
|
readonly system?: boolean | undefined;
|
|
1832
1941
|
readonly sortable?: boolean | undefined;
|
|
1833
1942
|
readonly inlineHelpText?: string | undefined;
|
|
1834
|
-
readonly
|
|
1943
|
+
readonly externalId?: boolean | undefined;
|
|
1835
1944
|
readonly type: "text";
|
|
1836
1945
|
};
|
|
1837
1946
|
readonly current_step_index: {
|
|
@@ -1864,8 +1973,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1864
1973
|
notNull?: boolean | undefined;
|
|
1865
1974
|
} | undefined;
|
|
1866
1975
|
readonly maxSize?: number | undefined;
|
|
1867
|
-
readonly
|
|
1868
|
-
readonly
|
|
1976
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1977
|
+
readonly _lockReason?: string | undefined;
|
|
1978
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1979
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1980
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1981
|
+
readonly _packageId?: string | undefined;
|
|
1982
|
+
readonly _packageVersion?: string | undefined;
|
|
1983
|
+
readonly lookupFilters?: {
|
|
1984
|
+
field: string;
|
|
1985
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1986
|
+
value: any;
|
|
1987
|
+
}[] | undefined;
|
|
1988
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1989
|
+
readonly expression?: {
|
|
1990
|
+
dialect: "cel" | "cron" | "template";
|
|
1991
|
+
source?: string | undefined;
|
|
1992
|
+
ast?: unknown;
|
|
1993
|
+
meta?: {
|
|
1994
|
+
rationale?: string | undefined;
|
|
1995
|
+
generatedBy?: string | undefined;
|
|
1996
|
+
} | undefined;
|
|
1997
|
+
} | undefined;
|
|
1998
|
+
readonly autonumberFormat?: string | undefined;
|
|
1999
|
+
readonly summaryOperations?: {
|
|
2000
|
+
object: string;
|
|
2001
|
+
field: string;
|
|
2002
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2003
|
+
relationshipField?: string | undefined;
|
|
2004
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2005
|
+
} | undefined;
|
|
1869
2006
|
readonly visibleWhen?: {
|
|
1870
2007
|
dialect: "cel" | "cron" | "template";
|
|
1871
2008
|
source?: string | undefined;
|
|
@@ -1875,16 +2012,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1875
2012
|
generatedBy?: string | undefined;
|
|
1876
2013
|
} | undefined;
|
|
1877
2014
|
} | undefined;
|
|
2015
|
+
readonly scale?: number | undefined;
|
|
1878
2016
|
readonly searchable?: boolean | undefined;
|
|
1879
2017
|
readonly unique?: boolean | "global" | undefined;
|
|
2018
|
+
readonly defaultValue?: unknown;
|
|
1880
2019
|
readonly maxLength?: number | undefined;
|
|
1881
2020
|
readonly minLength?: number | undefined;
|
|
1882
|
-
readonly scale?: number | undefined;
|
|
1883
2021
|
readonly min?: number | undefined;
|
|
1884
2022
|
readonly max?: number | undefined;
|
|
1885
2023
|
readonly accept?: string[] | undefined;
|
|
1886
2024
|
readonly reference?: string | undefined;
|
|
1887
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1888
2025
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1889
2026
|
readonly inlineTitle?: string | undefined;
|
|
1890
2027
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1901,32 +2038,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1901
2038
|
type?: string | undefined;
|
|
1902
2039
|
})[] | undefined;
|
|
1903
2040
|
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 | {
|
|
2041
|
+
readonly dependsOn?: (string | {
|
|
1910
2042
|
field: string;
|
|
1911
2043
|
param?: string | undefined;
|
|
1912
2044
|
})[] | undefined;
|
|
1913
2045
|
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
2046
|
readonly language?: string | undefined;
|
|
1931
2047
|
readonly step?: number | undefined;
|
|
1932
2048
|
readonly currencyConfig?: {
|
|
@@ -1962,7 +2078,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1962
2078
|
readonly system?: boolean | undefined;
|
|
1963
2079
|
readonly sortable?: boolean | undefined;
|
|
1964
2080
|
readonly inlineHelpText?: string | undefined;
|
|
1965
|
-
readonly
|
|
2081
|
+
readonly externalId?: boolean | undefined;
|
|
1966
2082
|
readonly type: "number";
|
|
1967
2083
|
};
|
|
1968
2084
|
readonly pending_approvers: {
|
|
@@ -1995,8 +2111,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1995
2111
|
notNull?: boolean | undefined;
|
|
1996
2112
|
} | undefined;
|
|
1997
2113
|
readonly maxSize?: number | undefined;
|
|
1998
|
-
readonly
|
|
1999
|
-
readonly
|
|
2114
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2115
|
+
readonly _lockReason?: string | undefined;
|
|
2116
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2117
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2118
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2119
|
+
readonly _packageId?: string | undefined;
|
|
2120
|
+
readonly _packageVersion?: string | undefined;
|
|
2121
|
+
readonly lookupFilters?: {
|
|
2122
|
+
field: string;
|
|
2123
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2124
|
+
value: any;
|
|
2125
|
+
}[] | undefined;
|
|
2126
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2127
|
+
readonly expression?: {
|
|
2128
|
+
dialect: "cel" | "cron" | "template";
|
|
2129
|
+
source?: string | undefined;
|
|
2130
|
+
ast?: unknown;
|
|
2131
|
+
meta?: {
|
|
2132
|
+
rationale?: string | undefined;
|
|
2133
|
+
generatedBy?: string | undefined;
|
|
2134
|
+
} | undefined;
|
|
2135
|
+
} | undefined;
|
|
2136
|
+
readonly autonumberFormat?: string | undefined;
|
|
2137
|
+
readonly summaryOperations?: {
|
|
2138
|
+
object: string;
|
|
2139
|
+
field: string;
|
|
2140
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2141
|
+
relationshipField?: string | undefined;
|
|
2142
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2143
|
+
} | undefined;
|
|
2000
2144
|
readonly visibleWhen?: {
|
|
2001
2145
|
dialect: "cel" | "cron" | "template";
|
|
2002
2146
|
source?: string | undefined;
|
|
@@ -2006,16 +2150,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2006
2150
|
generatedBy?: string | undefined;
|
|
2007
2151
|
} | undefined;
|
|
2008
2152
|
} | undefined;
|
|
2153
|
+
readonly scale?: number | undefined;
|
|
2009
2154
|
readonly searchable?: boolean | undefined;
|
|
2010
2155
|
readonly unique?: boolean | "global" | undefined;
|
|
2156
|
+
readonly defaultValue?: unknown;
|
|
2011
2157
|
readonly maxLength?: number | undefined;
|
|
2012
2158
|
readonly minLength?: number | undefined;
|
|
2013
|
-
readonly scale?: number | undefined;
|
|
2014
2159
|
readonly min?: number | undefined;
|
|
2015
2160
|
readonly max?: number | undefined;
|
|
2016
2161
|
readonly accept?: string[] | undefined;
|
|
2017
2162
|
readonly reference?: string | undefined;
|
|
2018
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2019
2163
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2020
2164
|
readonly inlineTitle?: string | undefined;
|
|
2021
2165
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2032,32 +2176,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2032
2176
|
type?: string | undefined;
|
|
2033
2177
|
})[] | undefined;
|
|
2034
2178
|
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
2179
|
readonly dependsOn?: (string | {
|
|
2041
2180
|
field: string;
|
|
2042
2181
|
param?: string | undefined;
|
|
2043
2182
|
})[] | undefined;
|
|
2044
2183
|
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
2184
|
readonly language?: string | undefined;
|
|
2062
2185
|
readonly step?: number | undefined;
|
|
2063
2186
|
readonly currencyConfig?: {
|
|
@@ -2093,7 +2216,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2093
2216
|
readonly system?: boolean | undefined;
|
|
2094
2217
|
readonly sortable?: boolean | undefined;
|
|
2095
2218
|
readonly inlineHelpText?: string | undefined;
|
|
2096
|
-
readonly
|
|
2219
|
+
readonly externalId?: boolean | undefined;
|
|
2097
2220
|
readonly type: "textarea";
|
|
2098
2221
|
};
|
|
2099
2222
|
readonly payload_json: {
|
|
@@ -2126,8 +2249,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2126
2249
|
notNull?: boolean | undefined;
|
|
2127
2250
|
} | undefined;
|
|
2128
2251
|
readonly maxSize?: number | undefined;
|
|
2129
|
-
readonly
|
|
2130
|
-
readonly
|
|
2252
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2253
|
+
readonly _lockReason?: string | undefined;
|
|
2254
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2255
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2256
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2257
|
+
readonly _packageId?: string | undefined;
|
|
2258
|
+
readonly _packageVersion?: string | undefined;
|
|
2259
|
+
readonly lookupFilters?: {
|
|
2260
|
+
field: string;
|
|
2261
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2262
|
+
value: any;
|
|
2263
|
+
}[] | undefined;
|
|
2264
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2265
|
+
readonly expression?: {
|
|
2266
|
+
dialect: "cel" | "cron" | "template";
|
|
2267
|
+
source?: string | undefined;
|
|
2268
|
+
ast?: unknown;
|
|
2269
|
+
meta?: {
|
|
2270
|
+
rationale?: string | undefined;
|
|
2271
|
+
generatedBy?: string | undefined;
|
|
2272
|
+
} | undefined;
|
|
2273
|
+
} | undefined;
|
|
2274
|
+
readonly autonumberFormat?: string | undefined;
|
|
2275
|
+
readonly summaryOperations?: {
|
|
2276
|
+
object: string;
|
|
2277
|
+
field: string;
|
|
2278
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2279
|
+
relationshipField?: string | undefined;
|
|
2280
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2281
|
+
} | undefined;
|
|
2131
2282
|
readonly visibleWhen?: {
|
|
2132
2283
|
dialect: "cel" | "cron" | "template";
|
|
2133
2284
|
source?: string | undefined;
|
|
@@ -2137,16 +2288,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2137
2288
|
generatedBy?: string | undefined;
|
|
2138
2289
|
} | undefined;
|
|
2139
2290
|
} | undefined;
|
|
2291
|
+
readonly scale?: number | undefined;
|
|
2140
2292
|
readonly searchable?: boolean | undefined;
|
|
2141
2293
|
readonly unique?: boolean | "global" | undefined;
|
|
2294
|
+
readonly defaultValue?: unknown;
|
|
2142
2295
|
readonly maxLength?: number | undefined;
|
|
2143
2296
|
readonly minLength?: number | undefined;
|
|
2144
|
-
readonly scale?: number | undefined;
|
|
2145
2297
|
readonly min?: number | undefined;
|
|
2146
2298
|
readonly max?: number | undefined;
|
|
2147
2299
|
readonly accept?: string[] | undefined;
|
|
2148
2300
|
readonly reference?: string | undefined;
|
|
2149
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2150
2301
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2151
2302
|
readonly inlineTitle?: string | undefined;
|
|
2152
2303
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2163,32 +2314,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2163
2314
|
type?: string | undefined;
|
|
2164
2315
|
})[] | undefined;
|
|
2165
2316
|
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
2317
|
readonly dependsOn?: (string | {
|
|
2172
2318
|
field: string;
|
|
2173
2319
|
param?: string | undefined;
|
|
2174
2320
|
})[] | undefined;
|
|
2175
2321
|
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
2322
|
readonly language?: string | undefined;
|
|
2193
2323
|
readonly step?: number | undefined;
|
|
2194
2324
|
readonly currencyConfig?: {
|
|
@@ -2224,7 +2354,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2224
2354
|
readonly system?: boolean | undefined;
|
|
2225
2355
|
readonly sortable?: boolean | undefined;
|
|
2226
2356
|
readonly inlineHelpText?: string | undefined;
|
|
2227
|
-
readonly
|
|
2357
|
+
readonly externalId?: boolean | undefined;
|
|
2228
2358
|
readonly type: "textarea";
|
|
2229
2359
|
};
|
|
2230
2360
|
readonly flow_run_id: {
|
|
@@ -2257,8 +2387,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2257
2387
|
notNull?: boolean | undefined;
|
|
2258
2388
|
} | undefined;
|
|
2259
2389
|
readonly maxSize?: number | undefined;
|
|
2260
|
-
readonly
|
|
2261
|
-
readonly
|
|
2390
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2391
|
+
readonly _lockReason?: string | undefined;
|
|
2392
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2393
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2394
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2395
|
+
readonly _packageId?: string | undefined;
|
|
2396
|
+
readonly _packageVersion?: string | undefined;
|
|
2397
|
+
readonly lookupFilters?: {
|
|
2398
|
+
field: string;
|
|
2399
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2400
|
+
value: any;
|
|
2401
|
+
}[] | undefined;
|
|
2402
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2403
|
+
readonly expression?: {
|
|
2404
|
+
dialect: "cel" | "cron" | "template";
|
|
2405
|
+
source?: string | undefined;
|
|
2406
|
+
ast?: unknown;
|
|
2407
|
+
meta?: {
|
|
2408
|
+
rationale?: string | undefined;
|
|
2409
|
+
generatedBy?: string | undefined;
|
|
2410
|
+
} | undefined;
|
|
2411
|
+
} | undefined;
|
|
2412
|
+
readonly autonumberFormat?: string | undefined;
|
|
2413
|
+
readonly summaryOperations?: {
|
|
2414
|
+
object: string;
|
|
2415
|
+
field: string;
|
|
2416
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2417
|
+
relationshipField?: string | undefined;
|
|
2418
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2419
|
+
} | undefined;
|
|
2262
2420
|
readonly visibleWhen?: {
|
|
2263
2421
|
dialect: "cel" | "cron" | "template";
|
|
2264
2422
|
source?: string | undefined;
|
|
@@ -2268,16 +2426,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2268
2426
|
generatedBy?: string | undefined;
|
|
2269
2427
|
} | undefined;
|
|
2270
2428
|
} | undefined;
|
|
2429
|
+
readonly scale?: number | undefined;
|
|
2271
2430
|
readonly searchable?: boolean | undefined;
|
|
2272
2431
|
readonly unique?: boolean | "global" | undefined;
|
|
2432
|
+
readonly defaultValue?: unknown;
|
|
2273
2433
|
readonly maxLength?: number | undefined;
|
|
2274
2434
|
readonly minLength?: number | undefined;
|
|
2275
|
-
readonly scale?: number | undefined;
|
|
2276
2435
|
readonly min?: number | undefined;
|
|
2277
2436
|
readonly max?: number | undefined;
|
|
2278
2437
|
readonly accept?: string[] | undefined;
|
|
2279
2438
|
readonly reference?: string | undefined;
|
|
2280
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2281
2439
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2282
2440
|
readonly inlineTitle?: string | undefined;
|
|
2283
2441
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2294,32 +2452,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2294
2452
|
type?: string | undefined;
|
|
2295
2453
|
})[] | undefined;
|
|
2296
2454
|
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
2455
|
readonly dependsOn?: (string | {
|
|
2303
2456
|
field: string;
|
|
2304
2457
|
param?: string | undefined;
|
|
2305
2458
|
})[] | undefined;
|
|
2306
2459
|
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
2460
|
readonly language?: string | undefined;
|
|
2324
2461
|
readonly step?: number | undefined;
|
|
2325
2462
|
readonly currencyConfig?: {
|
|
@@ -2355,7 +2492,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2355
2492
|
readonly system?: boolean | undefined;
|
|
2356
2493
|
readonly sortable?: boolean | undefined;
|
|
2357
2494
|
readonly inlineHelpText?: string | undefined;
|
|
2358
|
-
readonly
|
|
2495
|
+
readonly externalId?: boolean | undefined;
|
|
2359
2496
|
readonly type: "text";
|
|
2360
2497
|
};
|
|
2361
2498
|
readonly flow_node_id: {
|
|
@@ -2388,8 +2525,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2388
2525
|
notNull?: boolean | undefined;
|
|
2389
2526
|
} | undefined;
|
|
2390
2527
|
readonly maxSize?: number | undefined;
|
|
2391
|
-
readonly
|
|
2392
|
-
readonly
|
|
2528
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2529
|
+
readonly _lockReason?: string | undefined;
|
|
2530
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2531
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2532
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2533
|
+
readonly _packageId?: string | undefined;
|
|
2534
|
+
readonly _packageVersion?: string | undefined;
|
|
2535
|
+
readonly lookupFilters?: {
|
|
2536
|
+
field: string;
|
|
2537
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2538
|
+
value: any;
|
|
2539
|
+
}[] | undefined;
|
|
2540
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2541
|
+
readonly expression?: {
|
|
2542
|
+
dialect: "cel" | "cron" | "template";
|
|
2543
|
+
source?: string | undefined;
|
|
2544
|
+
ast?: unknown;
|
|
2545
|
+
meta?: {
|
|
2546
|
+
rationale?: string | undefined;
|
|
2547
|
+
generatedBy?: string | undefined;
|
|
2548
|
+
} | undefined;
|
|
2549
|
+
} | undefined;
|
|
2550
|
+
readonly autonumberFormat?: string | undefined;
|
|
2551
|
+
readonly summaryOperations?: {
|
|
2552
|
+
object: string;
|
|
2553
|
+
field: string;
|
|
2554
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2555
|
+
relationshipField?: string | undefined;
|
|
2556
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2557
|
+
} | undefined;
|
|
2393
2558
|
readonly visibleWhen?: {
|
|
2394
2559
|
dialect: "cel" | "cron" | "template";
|
|
2395
2560
|
source?: string | undefined;
|
|
@@ -2399,16 +2564,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2399
2564
|
generatedBy?: string | undefined;
|
|
2400
2565
|
} | undefined;
|
|
2401
2566
|
} | undefined;
|
|
2567
|
+
readonly scale?: number | undefined;
|
|
2402
2568
|
readonly searchable?: boolean | undefined;
|
|
2403
2569
|
readonly unique?: boolean | "global" | undefined;
|
|
2570
|
+
readonly defaultValue?: unknown;
|
|
2404
2571
|
readonly maxLength?: number | undefined;
|
|
2405
2572
|
readonly minLength?: number | undefined;
|
|
2406
|
-
readonly scale?: number | undefined;
|
|
2407
2573
|
readonly min?: number | undefined;
|
|
2408
2574
|
readonly max?: number | undefined;
|
|
2409
2575
|
readonly accept?: string[] | undefined;
|
|
2410
2576
|
readonly reference?: string | undefined;
|
|
2411
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2412
2577
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2413
2578
|
readonly inlineTitle?: string | undefined;
|
|
2414
2579
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2425,32 +2590,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2425
2590
|
type?: string | undefined;
|
|
2426
2591
|
})[] | undefined;
|
|
2427
2592
|
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
2593
|
readonly dependsOn?: (string | {
|
|
2434
2594
|
field: string;
|
|
2435
2595
|
param?: string | undefined;
|
|
2436
2596
|
})[] | undefined;
|
|
2437
2597
|
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
2598
|
readonly language?: string | undefined;
|
|
2455
2599
|
readonly step?: number | undefined;
|
|
2456
2600
|
readonly currencyConfig?: {
|
|
@@ -2486,7 +2630,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2486
2630
|
readonly system?: boolean | undefined;
|
|
2487
2631
|
readonly sortable?: boolean | undefined;
|
|
2488
2632
|
readonly inlineHelpText?: string | undefined;
|
|
2489
|
-
readonly
|
|
2633
|
+
readonly externalId?: boolean | undefined;
|
|
2490
2634
|
readonly type: "text";
|
|
2491
2635
|
};
|
|
2492
2636
|
readonly node_config_json: {
|
|
@@ -2519,8 +2663,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2519
2663
|
notNull?: boolean | undefined;
|
|
2520
2664
|
} | undefined;
|
|
2521
2665
|
readonly maxSize?: number | undefined;
|
|
2522
|
-
readonly
|
|
2523
|
-
readonly
|
|
2666
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2667
|
+
readonly _lockReason?: string | undefined;
|
|
2668
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2669
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2670
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2671
|
+
readonly _packageId?: string | undefined;
|
|
2672
|
+
readonly _packageVersion?: string | undefined;
|
|
2673
|
+
readonly lookupFilters?: {
|
|
2674
|
+
field: string;
|
|
2675
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2676
|
+
value: any;
|
|
2677
|
+
}[] | undefined;
|
|
2678
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2679
|
+
readonly expression?: {
|
|
2680
|
+
dialect: "cel" | "cron" | "template";
|
|
2681
|
+
source?: string | undefined;
|
|
2682
|
+
ast?: unknown;
|
|
2683
|
+
meta?: {
|
|
2684
|
+
rationale?: string | undefined;
|
|
2685
|
+
generatedBy?: string | undefined;
|
|
2686
|
+
} | undefined;
|
|
2687
|
+
} | undefined;
|
|
2688
|
+
readonly autonumberFormat?: string | undefined;
|
|
2689
|
+
readonly summaryOperations?: {
|
|
2690
|
+
object: string;
|
|
2691
|
+
field: string;
|
|
2692
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2693
|
+
relationshipField?: string | undefined;
|
|
2694
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2695
|
+
} | undefined;
|
|
2524
2696
|
readonly visibleWhen?: {
|
|
2525
2697
|
dialect: "cel" | "cron" | "template";
|
|
2526
2698
|
source?: string | undefined;
|
|
@@ -2530,16 +2702,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2530
2702
|
generatedBy?: string | undefined;
|
|
2531
2703
|
} | undefined;
|
|
2532
2704
|
} | undefined;
|
|
2705
|
+
readonly scale?: number | undefined;
|
|
2533
2706
|
readonly searchable?: boolean | undefined;
|
|
2534
2707
|
readonly unique?: boolean | "global" | undefined;
|
|
2708
|
+
readonly defaultValue?: unknown;
|
|
2535
2709
|
readonly maxLength?: number | undefined;
|
|
2536
2710
|
readonly minLength?: number | undefined;
|
|
2537
|
-
readonly scale?: number | undefined;
|
|
2538
2711
|
readonly min?: number | undefined;
|
|
2539
2712
|
readonly max?: number | undefined;
|
|
2540
2713
|
readonly accept?: string[] | undefined;
|
|
2541
2714
|
readonly reference?: string | undefined;
|
|
2542
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2543
2715
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2544
2716
|
readonly inlineTitle?: string | undefined;
|
|
2545
2717
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2556,32 +2728,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2556
2728
|
type?: string | undefined;
|
|
2557
2729
|
})[] | undefined;
|
|
2558
2730
|
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
2731
|
readonly dependsOn?: (string | {
|
|
2565
2732
|
field: string;
|
|
2566
2733
|
param?: string | undefined;
|
|
2567
2734
|
})[] | undefined;
|
|
2568
2735
|
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
2736
|
readonly language?: string | undefined;
|
|
2586
2737
|
readonly step?: number | undefined;
|
|
2587
2738
|
readonly currencyConfig?: {
|
|
@@ -2617,7 +2768,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2617
2768
|
readonly system?: boolean | undefined;
|
|
2618
2769
|
readonly sortable?: boolean | undefined;
|
|
2619
2770
|
readonly inlineHelpText?: string | undefined;
|
|
2620
|
-
readonly
|
|
2771
|
+
readonly externalId?: boolean | undefined;
|
|
2621
2772
|
readonly type: "textarea";
|
|
2622
2773
|
};
|
|
2623
2774
|
readonly completed_at: {
|
|
@@ -2650,8 +2801,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2650
2801
|
notNull?: boolean | undefined;
|
|
2651
2802
|
} | undefined;
|
|
2652
2803
|
readonly maxSize?: number | undefined;
|
|
2653
|
-
readonly
|
|
2654
|
-
readonly
|
|
2804
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2805
|
+
readonly _lockReason?: string | undefined;
|
|
2806
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2807
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2808
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2809
|
+
readonly _packageId?: string | undefined;
|
|
2810
|
+
readonly _packageVersion?: string | undefined;
|
|
2811
|
+
readonly lookupFilters?: {
|
|
2812
|
+
field: string;
|
|
2813
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2814
|
+
value: any;
|
|
2815
|
+
}[] | undefined;
|
|
2816
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2817
|
+
readonly expression?: {
|
|
2818
|
+
dialect: "cel" | "cron" | "template";
|
|
2819
|
+
source?: string | undefined;
|
|
2820
|
+
ast?: unknown;
|
|
2821
|
+
meta?: {
|
|
2822
|
+
rationale?: string | undefined;
|
|
2823
|
+
generatedBy?: string | undefined;
|
|
2824
|
+
} | undefined;
|
|
2825
|
+
} | undefined;
|
|
2826
|
+
readonly autonumberFormat?: string | undefined;
|
|
2827
|
+
readonly summaryOperations?: {
|
|
2828
|
+
object: string;
|
|
2829
|
+
field: string;
|
|
2830
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2831
|
+
relationshipField?: string | undefined;
|
|
2832
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2833
|
+
} | undefined;
|
|
2655
2834
|
readonly visibleWhen?: {
|
|
2656
2835
|
dialect: "cel" | "cron" | "template";
|
|
2657
2836
|
source?: string | undefined;
|
|
@@ -2661,16 +2840,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2661
2840
|
generatedBy?: string | undefined;
|
|
2662
2841
|
} | undefined;
|
|
2663
2842
|
} | undefined;
|
|
2843
|
+
readonly scale?: number | undefined;
|
|
2664
2844
|
readonly searchable?: boolean | undefined;
|
|
2665
2845
|
readonly unique?: boolean | "global" | undefined;
|
|
2846
|
+
readonly defaultValue?: unknown;
|
|
2666
2847
|
readonly maxLength?: number | undefined;
|
|
2667
2848
|
readonly minLength?: number | undefined;
|
|
2668
|
-
readonly scale?: number | undefined;
|
|
2669
2849
|
readonly min?: number | undefined;
|
|
2670
2850
|
readonly max?: number | undefined;
|
|
2671
2851
|
readonly accept?: string[] | undefined;
|
|
2672
2852
|
readonly reference?: string | undefined;
|
|
2673
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2674
2853
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2675
2854
|
readonly inlineTitle?: string | undefined;
|
|
2676
2855
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2687,32 +2866,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2687
2866
|
type?: string | undefined;
|
|
2688
2867
|
})[] | undefined;
|
|
2689
2868
|
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
2869
|
readonly dependsOn?: (string | {
|
|
2696
2870
|
field: string;
|
|
2697
2871
|
param?: string | undefined;
|
|
2698
2872
|
})[] | undefined;
|
|
2699
2873
|
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
2874
|
readonly language?: string | undefined;
|
|
2717
2875
|
readonly step?: number | undefined;
|
|
2718
2876
|
readonly currencyConfig?: {
|
|
@@ -2748,7 +2906,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2748
2906
|
readonly system?: boolean | undefined;
|
|
2749
2907
|
readonly sortable?: boolean | undefined;
|
|
2750
2908
|
readonly inlineHelpText?: string | undefined;
|
|
2751
|
-
readonly
|
|
2909
|
+
readonly externalId?: boolean | undefined;
|
|
2752
2910
|
readonly type: "datetime";
|
|
2753
2911
|
};
|
|
2754
2912
|
readonly created_at: {
|
|
@@ -2781,8 +2939,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2781
2939
|
notNull?: boolean | undefined;
|
|
2782
2940
|
} | undefined;
|
|
2783
2941
|
readonly maxSize?: number | undefined;
|
|
2784
|
-
readonly
|
|
2785
|
-
readonly
|
|
2942
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2943
|
+
readonly _lockReason?: string | undefined;
|
|
2944
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2945
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2946
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2947
|
+
readonly _packageId?: string | undefined;
|
|
2948
|
+
readonly _packageVersion?: string | undefined;
|
|
2949
|
+
readonly lookupFilters?: {
|
|
2950
|
+
field: string;
|
|
2951
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2952
|
+
value: any;
|
|
2953
|
+
}[] | undefined;
|
|
2954
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2955
|
+
readonly expression?: {
|
|
2956
|
+
dialect: "cel" | "cron" | "template";
|
|
2957
|
+
source?: string | undefined;
|
|
2958
|
+
ast?: unknown;
|
|
2959
|
+
meta?: {
|
|
2960
|
+
rationale?: string | undefined;
|
|
2961
|
+
generatedBy?: string | undefined;
|
|
2962
|
+
} | undefined;
|
|
2963
|
+
} | undefined;
|
|
2964
|
+
readonly autonumberFormat?: string | undefined;
|
|
2965
|
+
readonly summaryOperations?: {
|
|
2966
|
+
object: string;
|
|
2967
|
+
field: string;
|
|
2968
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2969
|
+
relationshipField?: string | undefined;
|
|
2970
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2971
|
+
} | undefined;
|
|
2786
2972
|
readonly visibleWhen?: {
|
|
2787
2973
|
dialect: "cel" | "cron" | "template";
|
|
2788
2974
|
source?: string | undefined;
|
|
@@ -2792,16 +2978,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2792
2978
|
generatedBy?: string | undefined;
|
|
2793
2979
|
} | undefined;
|
|
2794
2980
|
} | undefined;
|
|
2981
|
+
readonly scale?: number | undefined;
|
|
2795
2982
|
readonly searchable?: boolean | undefined;
|
|
2796
2983
|
readonly unique?: boolean | "global" | undefined;
|
|
2984
|
+
readonly defaultValue?: unknown;
|
|
2797
2985
|
readonly maxLength?: number | undefined;
|
|
2798
2986
|
readonly minLength?: number | undefined;
|
|
2799
|
-
readonly scale?: number | undefined;
|
|
2800
2987
|
readonly min?: number | undefined;
|
|
2801
2988
|
readonly max?: number | undefined;
|
|
2802
2989
|
readonly accept?: string[] | undefined;
|
|
2803
2990
|
readonly reference?: string | undefined;
|
|
2804
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2805
2991
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2806
2992
|
readonly inlineTitle?: string | undefined;
|
|
2807
2993
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2818,32 +3004,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2818
3004
|
type?: string | undefined;
|
|
2819
3005
|
})[] | undefined;
|
|
2820
3006
|
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
3007
|
readonly dependsOn?: (string | {
|
|
2827
3008
|
field: string;
|
|
2828
3009
|
param?: string | undefined;
|
|
2829
3010
|
})[] | undefined;
|
|
2830
3011
|
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
3012
|
readonly language?: string | undefined;
|
|
2848
3013
|
readonly step?: number | undefined;
|
|
2849
3014
|
readonly currencyConfig?: {
|
|
@@ -2879,7 +3044,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2879
3044
|
readonly system?: boolean | undefined;
|
|
2880
3045
|
readonly sortable?: boolean | undefined;
|
|
2881
3046
|
readonly inlineHelpText?: string | undefined;
|
|
2882
|
-
readonly
|
|
3047
|
+
readonly externalId?: boolean | undefined;
|
|
2883
3048
|
readonly type: "datetime";
|
|
2884
3049
|
};
|
|
2885
3050
|
readonly updated_at: {
|
|
@@ -2912,8 +3077,36 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2912
3077
|
notNull?: boolean | undefined;
|
|
2913
3078
|
} | undefined;
|
|
2914
3079
|
readonly maxSize?: number | undefined;
|
|
2915
|
-
readonly
|
|
2916
|
-
readonly
|
|
3080
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3081
|
+
readonly _lockReason?: string | undefined;
|
|
3082
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3083
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
3084
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3085
|
+
readonly _packageId?: string | undefined;
|
|
3086
|
+
readonly _packageVersion?: string | undefined;
|
|
3087
|
+
readonly lookupFilters?: {
|
|
3088
|
+
field: string;
|
|
3089
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
3090
|
+
value: any;
|
|
3091
|
+
}[] | undefined;
|
|
3092
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3093
|
+
readonly expression?: {
|
|
3094
|
+
dialect: "cel" | "cron" | "template";
|
|
3095
|
+
source?: string | undefined;
|
|
3096
|
+
ast?: unknown;
|
|
3097
|
+
meta?: {
|
|
3098
|
+
rationale?: string | undefined;
|
|
3099
|
+
generatedBy?: string | undefined;
|
|
3100
|
+
} | undefined;
|
|
3101
|
+
} | undefined;
|
|
3102
|
+
readonly autonumberFormat?: string | undefined;
|
|
3103
|
+
readonly summaryOperations?: {
|
|
3104
|
+
object: string;
|
|
3105
|
+
field: string;
|
|
3106
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
3107
|
+
relationshipField?: string | undefined;
|
|
3108
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
3109
|
+
} | undefined;
|
|
2917
3110
|
readonly visibleWhen?: {
|
|
2918
3111
|
dialect: "cel" | "cron" | "template";
|
|
2919
3112
|
source?: string | undefined;
|
|
@@ -2923,16 +3116,16 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2923
3116
|
generatedBy?: string | undefined;
|
|
2924
3117
|
} | undefined;
|
|
2925
3118
|
} | undefined;
|
|
3119
|
+
readonly scale?: number | undefined;
|
|
2926
3120
|
readonly searchable?: boolean | undefined;
|
|
2927
3121
|
readonly unique?: boolean | "global" | undefined;
|
|
3122
|
+
readonly defaultValue?: unknown;
|
|
2928
3123
|
readonly maxLength?: number | undefined;
|
|
2929
3124
|
readonly minLength?: number | undefined;
|
|
2930
|
-
readonly scale?: number | undefined;
|
|
2931
3125
|
readonly min?: number | undefined;
|
|
2932
3126
|
readonly max?: number | undefined;
|
|
2933
3127
|
readonly accept?: string[] | undefined;
|
|
2934
3128
|
readonly reference?: string | undefined;
|
|
2935
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2936
3129
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2937
3130
|
readonly inlineTitle?: string | undefined;
|
|
2938
3131
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2949,32 +3142,11 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2949
3142
|
type?: string | undefined;
|
|
2950
3143
|
})[] | undefined;
|
|
2951
3144
|
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
3145
|
readonly dependsOn?: (string | {
|
|
2958
3146
|
field: string;
|
|
2959
3147
|
param?: string | undefined;
|
|
2960
3148
|
})[] | undefined;
|
|
2961
3149
|
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
3150
|
readonly language?: string | undefined;
|
|
2979
3151
|
readonly step?: number | undefined;
|
|
2980
3152
|
readonly currencyConfig?: {
|
|
@@ -3010,7 +3182,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3010
3182
|
readonly system?: boolean | undefined;
|
|
3011
3183
|
readonly sortable?: boolean | undefined;
|
|
3012
3184
|
readonly inlineHelpText?: string | undefined;
|
|
3013
|
-
readonly
|
|
3185
|
+
readonly externalId?: boolean | undefined;
|
|
3014
3186
|
readonly type: "datetime";
|
|
3015
3187
|
};
|
|
3016
3188
|
};
|
|
@@ -3203,7 +3375,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3203
3375
|
isSystem: boolean;
|
|
3204
3376
|
datasource: string;
|
|
3205
3377
|
fields: Record<string, {
|
|
3206
|
-
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
3378
|
+
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
3379
|
required: boolean;
|
|
3208
3380
|
searchable: boolean;
|
|
3209
3381
|
multiple: boolean;
|
|
@@ -3213,6 +3385,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
3213
3385
|
readonly: boolean;
|
|
3214
3386
|
sortable: boolean;
|
|
3215
3387
|
externalId: boolean;
|
|
3388
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
3389
|
+
_lockReason?: string | undefined;
|
|
3390
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
3391
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3392
|
+
_packageId?: string | undefined;
|
|
3393
|
+
_packageVersion?: string | undefined;
|
|
3394
|
+
_lockDocsUrl?: string | undefined;
|
|
3216
3395
|
name?: string | undefined;
|
|
3217
3396
|
label?: string | undefined;
|
|
3218
3397
|
description?: string | undefined;
|
|
@@ -3384,7 +3563,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3384
3563
|
pluralLabel?: string | undefined;
|
|
3385
3564
|
description?: string | undefined;
|
|
3386
3565
|
icon?: string | undefined;
|
|
3387
|
-
managedBy?: "
|
|
3566
|
+
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
3388
3567
|
ownership?: "none" | "org" | "user" | undefined;
|
|
3389
3568
|
userActions?: {
|
|
3390
3569
|
create?: boolean | undefined;
|
|
@@ -3479,7 +3658,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3479
3658
|
} | undefined;
|
|
3480
3659
|
indexes?: {
|
|
3481
3660
|
fields: string[];
|
|
3482
|
-
type: "hash" | "
|
|
3661
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
3483
3662
|
unique: boolean | "global";
|
|
3484
3663
|
name?: string | undefined;
|
|
3485
3664
|
partial?: string | undefined;
|
|
@@ -3604,6 +3783,33 @@ declare const SysApprovalAction: Omit<{
|
|
|
3604
3783
|
defaultExpandedDepth?: number | undefined;
|
|
3605
3784
|
} | undefined;
|
|
3606
3785
|
inlineEdit?: boolean | undefined;
|
|
3786
|
+
data?: {
|
|
3787
|
+
provider: "object";
|
|
3788
|
+
object: string;
|
|
3789
|
+
} | {
|
|
3790
|
+
provider: "api";
|
|
3791
|
+
read?: {
|
|
3792
|
+
url: string;
|
|
3793
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
3794
|
+
headers?: Record<string, string> | undefined;
|
|
3795
|
+
params?: Record<string, unknown> | undefined;
|
|
3796
|
+
body?: unknown;
|
|
3797
|
+
} | undefined;
|
|
3798
|
+
write?: {
|
|
3799
|
+
url: string;
|
|
3800
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
3801
|
+
headers?: Record<string, string> | undefined;
|
|
3802
|
+
params?: Record<string, unknown> | undefined;
|
|
3803
|
+
body?: unknown;
|
|
3804
|
+
} | undefined;
|
|
3805
|
+
} | {
|
|
3806
|
+
provider: "value";
|
|
3807
|
+
items: unknown[];
|
|
3808
|
+
} | {
|
|
3809
|
+
provider: "schema";
|
|
3810
|
+
schemaId: string;
|
|
3811
|
+
schema?: Record<string, unknown> | undefined;
|
|
3812
|
+
} | undefined;
|
|
3607
3813
|
navigation?: {
|
|
3608
3814
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
3609
3815
|
preventNavigation: boolean;
|
|
@@ -3636,44 +3842,27 @@ declare const SysApprovalAction: Omit<{
|
|
|
3636
3842
|
}[] | undefined;
|
|
3637
3843
|
order?: number | undefined;
|
|
3638
3844
|
}[] | 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
3845
|
emptyState?: {
|
|
3671
3846
|
title?: string | undefined;
|
|
3672
3847
|
message?: string | undefined;
|
|
3673
3848
|
icon?: string | undefined;
|
|
3674
3849
|
} | undefined;
|
|
3850
|
+
userActions?: {
|
|
3851
|
+
sort: boolean;
|
|
3852
|
+
search: boolean;
|
|
3853
|
+
filter: boolean;
|
|
3854
|
+
refresh: boolean;
|
|
3855
|
+
rowHeight: boolean;
|
|
3856
|
+
addRecordForm: boolean;
|
|
3857
|
+
editInline: boolean;
|
|
3858
|
+
buttons?: string[] | undefined;
|
|
3859
|
+
} | undefined;
|
|
3675
3860
|
responsive?: undefined;
|
|
3676
3861
|
performance?: undefined;
|
|
3862
|
+
appearance?: {
|
|
3863
|
+
showDescription: boolean;
|
|
3864
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
3865
|
+
} | undefined;
|
|
3677
3866
|
resizable?: boolean | undefined;
|
|
3678
3867
|
kanban?: {
|
|
3679
3868
|
groupByField: string;
|
|
@@ -3747,7 +3936,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
3747
3936
|
selection?: {
|
|
3748
3937
|
type: "none" | "multiple" | "single";
|
|
3749
3938
|
} | undefined;
|
|
3750
|
-
|
|
3939
|
+
pagination?: {
|
|
3940
|
+
pageSize: number;
|
|
3941
|
+
pageSizeOptions?: number[] | undefined;
|
|
3942
|
+
} | undefined;
|
|
3943
|
+
grouping?: {
|
|
3751
3944
|
fields: {
|
|
3752
3945
|
field: string;
|
|
3753
3946
|
order: "desc" | "asc";
|
|
@@ -3762,7 +3955,53 @@ declare const SysApprovalAction: Omit<{
|
|
|
3762
3955
|
fieldOrder?: string[] | undefined;
|
|
3763
3956
|
rowActions?: string[] | undefined;
|
|
3764
3957
|
bulkActions?: string[] | undefined;
|
|
3765
|
-
bulkActionDefs?:
|
|
3958
|
+
bulkActionDefs?: {
|
|
3959
|
+
name: string;
|
|
3960
|
+
operation: "delete" | "update" | "custom";
|
|
3961
|
+
label?: string | undefined;
|
|
3962
|
+
icon?: string | undefined;
|
|
3963
|
+
variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
|
|
3964
|
+
execution?: "aggregate" | "perRecord" | undefined;
|
|
3965
|
+
patch?: Record<string, unknown> | undefined;
|
|
3966
|
+
params?: {
|
|
3967
|
+
[x: string]: unknown;
|
|
3968
|
+
name: string;
|
|
3969
|
+
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";
|
|
3970
|
+
label?: string | undefined;
|
|
3971
|
+
help?: string | undefined;
|
|
3972
|
+
required?: boolean | undefined;
|
|
3973
|
+
default?: unknown;
|
|
3974
|
+
options?: {
|
|
3975
|
+
label: string;
|
|
3976
|
+
value: string | number | boolean;
|
|
3977
|
+
}[] | undefined;
|
|
3978
|
+
object?: string | undefined;
|
|
3979
|
+
labelField?: string | undefined;
|
|
3980
|
+
multiple?: boolean | undefined;
|
|
3981
|
+
placeholder?: string | undefined;
|
|
3982
|
+
}[] | undefined;
|
|
3983
|
+
confirmText?: string | undefined;
|
|
3984
|
+
confirmLabel?: string | undefined;
|
|
3985
|
+
visible?: {
|
|
3986
|
+
dialect: "cel" | "cron" | "template";
|
|
3987
|
+
source?: string | undefined;
|
|
3988
|
+
ast?: unknown;
|
|
3989
|
+
meta?: {
|
|
3990
|
+
rationale?: string | undefined;
|
|
3991
|
+
generatedBy?: string | undefined;
|
|
3992
|
+
} | undefined;
|
|
3993
|
+
} | {
|
|
3994
|
+
dialect: "cel" | "cron" | "template";
|
|
3995
|
+
source?: string | undefined;
|
|
3996
|
+
ast?: unknown;
|
|
3997
|
+
meta?: {
|
|
3998
|
+
rationale?: string | undefined;
|
|
3999
|
+
generatedBy?: string | undefined;
|
|
4000
|
+
} | undefined;
|
|
4001
|
+
} | undefined;
|
|
4002
|
+
maxRecords?: number | undefined;
|
|
4003
|
+
batchSize?: number | undefined;
|
|
4004
|
+
}[] | undefined;
|
|
3766
4005
|
virtualScroll?: boolean | undefined;
|
|
3767
4006
|
conditionalFormatting?: {
|
|
3768
4007
|
condition: {
|
|
@@ -3785,20 +4024,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
3785
4024
|
style: Record<string, string>;
|
|
3786
4025
|
}[] | undefined;
|
|
3787
4026
|
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
4027
|
addRecord?: {
|
|
3803
4028
|
enabled: boolean;
|
|
3804
4029
|
position: "top" | "bottom" | "both";
|
|
@@ -3849,6 +4074,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
3849
4074
|
label: string;
|
|
3850
4075
|
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
3851
4076
|
refreshAfter: boolean;
|
|
4077
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4078
|
+
_lockReason?: string | undefined;
|
|
4079
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4080
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4081
|
+
_packageId?: string | undefined;
|
|
4082
|
+
_packageVersion?: string | undefined;
|
|
4083
|
+
_lockDocsUrl?: string | undefined;
|
|
3852
4084
|
objectName?: string | undefined;
|
|
3853
4085
|
icon?: string | undefined;
|
|
3854
4086
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
@@ -3861,7 +4093,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3861
4093
|
} | {
|
|
3862
4094
|
language: "js";
|
|
3863
4095
|
source: string;
|
|
3864
|
-
capabilities: ("
|
|
4096
|
+
capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
|
|
3865
4097
|
timeoutMs?: number | undefined;
|
|
3866
4098
|
memoryMb?: number | undefined;
|
|
3867
4099
|
} | undefined;
|
|
@@ -3872,7 +4104,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3872
4104
|
field?: string | undefined;
|
|
3873
4105
|
objectOverride?: string | undefined;
|
|
3874
4106
|
label?: string | undefined;
|
|
3875
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
4107
|
+
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
4108
|
options?: {
|
|
3877
4109
|
label: string;
|
|
3878
4110
|
value: string;
|
|
@@ -3979,7 +4211,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3979
4211
|
readonly displayNameField: "id";
|
|
3980
4212
|
readonly nameField: "id";
|
|
3981
4213
|
readonly titleFormat: "{action} · {step_name}";
|
|
3982
|
-
readonly highlightFields: ["request_id", "step_name", "action", "actor_id", "created_at"];
|
|
4214
|
+
readonly highlightFields: ["request_id", "step_name", "action", "actor_id", "via_override", "created_at"];
|
|
3983
4215
|
readonly fileAccessDelegate: "approvals";
|
|
3984
4216
|
readonly listViews: {
|
|
3985
4217
|
readonly recent: {
|
|
@@ -3990,7 +4222,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
3990
4222
|
readonly provider: "object";
|
|
3991
4223
|
readonly object: "sys_approval_action";
|
|
3992
4224
|
};
|
|
3993
|
-
readonly columns: ["created_at", "request_id", "step_name", "action", "actor_id", "comment"];
|
|
4225
|
+
readonly columns: ["created_at", "request_id", "step_name", "action", "actor_id", "via_override", "comment"];
|
|
3994
4226
|
readonly sort: [{
|
|
3995
4227
|
readonly field: "created_at";
|
|
3996
4228
|
readonly order: "desc";
|
|
@@ -4038,7 +4270,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4038
4270
|
readonly provider: "object";
|
|
4039
4271
|
readonly object: "sys_approval_action";
|
|
4040
4272
|
};
|
|
4041
|
-
readonly columns: ["created_at", "request_id", "step_name", "action", "actor_id", "comment"];
|
|
4273
|
+
readonly columns: ["created_at", "request_id", "step_name", "action", "actor_id", "via_override", "comment"];
|
|
4042
4274
|
readonly sort: [{
|
|
4043
4275
|
readonly field: "created_at";
|
|
4044
4276
|
readonly order: "desc";
|
|
@@ -4079,8 +4311,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4079
4311
|
notNull?: boolean | undefined;
|
|
4080
4312
|
} | undefined;
|
|
4081
4313
|
readonly maxSize?: number | undefined;
|
|
4082
|
-
readonly
|
|
4083
|
-
readonly
|
|
4314
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4315
|
+
readonly _lockReason?: string | undefined;
|
|
4316
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4317
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
4318
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4319
|
+
readonly _packageId?: string | undefined;
|
|
4320
|
+
readonly _packageVersion?: string | undefined;
|
|
4321
|
+
readonly lookupFilters?: {
|
|
4322
|
+
field: string;
|
|
4323
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4324
|
+
value: any;
|
|
4325
|
+
}[] | undefined;
|
|
4326
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4327
|
+
readonly expression?: {
|
|
4328
|
+
dialect: "cel" | "cron" | "template";
|
|
4329
|
+
source?: string | undefined;
|
|
4330
|
+
ast?: unknown;
|
|
4331
|
+
meta?: {
|
|
4332
|
+
rationale?: string | undefined;
|
|
4333
|
+
generatedBy?: string | undefined;
|
|
4334
|
+
} | undefined;
|
|
4335
|
+
} | undefined;
|
|
4336
|
+
readonly autonumberFormat?: string | undefined;
|
|
4337
|
+
readonly summaryOperations?: {
|
|
4338
|
+
object: string;
|
|
4339
|
+
field: string;
|
|
4340
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4341
|
+
relationshipField?: string | undefined;
|
|
4342
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4343
|
+
} | undefined;
|
|
4084
4344
|
readonly visibleWhen?: {
|
|
4085
4345
|
dialect: "cel" | "cron" | "template";
|
|
4086
4346
|
source?: string | undefined;
|
|
@@ -4090,16 +4350,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4090
4350
|
generatedBy?: string | undefined;
|
|
4091
4351
|
} | undefined;
|
|
4092
4352
|
} | undefined;
|
|
4353
|
+
readonly scale?: number | undefined;
|
|
4093
4354
|
readonly searchable?: boolean | undefined;
|
|
4094
4355
|
readonly unique?: boolean | "global" | undefined;
|
|
4356
|
+
readonly defaultValue?: unknown;
|
|
4095
4357
|
readonly maxLength?: number | undefined;
|
|
4096
4358
|
readonly minLength?: number | undefined;
|
|
4097
|
-
readonly scale?: number | undefined;
|
|
4098
4359
|
readonly min?: number | undefined;
|
|
4099
4360
|
readonly max?: number | undefined;
|
|
4100
4361
|
readonly accept?: string[] | undefined;
|
|
4101
4362
|
readonly reference?: string | undefined;
|
|
4102
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4103
4363
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4104
4364
|
readonly inlineTitle?: string | undefined;
|
|
4105
4365
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4116,32 +4376,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4116
4376
|
type?: string | undefined;
|
|
4117
4377
|
})[] | undefined;
|
|
4118
4378
|
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
4379
|
readonly dependsOn?: (string | {
|
|
4125
4380
|
field: string;
|
|
4126
4381
|
param?: string | undefined;
|
|
4127
4382
|
})[] | undefined;
|
|
4128
4383
|
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
4384
|
readonly language?: string | undefined;
|
|
4146
4385
|
readonly step?: number | undefined;
|
|
4147
4386
|
readonly currencyConfig?: {
|
|
@@ -4177,7 +4416,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4177
4416
|
readonly system?: boolean | undefined;
|
|
4178
4417
|
readonly sortable?: boolean | undefined;
|
|
4179
4418
|
readonly inlineHelpText?: string | undefined;
|
|
4180
|
-
readonly
|
|
4419
|
+
readonly externalId?: boolean | undefined;
|
|
4181
4420
|
readonly type: "text";
|
|
4182
4421
|
};
|
|
4183
4422
|
readonly organization_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -4227,8 +4466,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4227
4466
|
notNull?: boolean | undefined;
|
|
4228
4467
|
} | undefined;
|
|
4229
4468
|
readonly maxSize?: number | undefined;
|
|
4230
|
-
readonly
|
|
4231
|
-
readonly
|
|
4469
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4470
|
+
readonly _lockReason?: string | undefined;
|
|
4471
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4472
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
4473
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4474
|
+
readonly _packageId?: string | undefined;
|
|
4475
|
+
readonly _packageVersion?: string | undefined;
|
|
4476
|
+
readonly lookupFilters?: {
|
|
4477
|
+
field: string;
|
|
4478
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4479
|
+
value: any;
|
|
4480
|
+
}[] | undefined;
|
|
4481
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4482
|
+
readonly expression?: {
|
|
4483
|
+
dialect: "cel" | "cron" | "template";
|
|
4484
|
+
source?: string | undefined;
|
|
4485
|
+
ast?: unknown;
|
|
4486
|
+
meta?: {
|
|
4487
|
+
rationale?: string | undefined;
|
|
4488
|
+
generatedBy?: string | undefined;
|
|
4489
|
+
} | undefined;
|
|
4490
|
+
} | undefined;
|
|
4491
|
+
readonly autonumberFormat?: string | undefined;
|
|
4492
|
+
readonly summaryOperations?: {
|
|
4493
|
+
object: string;
|
|
4494
|
+
field: string;
|
|
4495
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4496
|
+
relationshipField?: string | undefined;
|
|
4497
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4498
|
+
} | undefined;
|
|
4232
4499
|
readonly visibleWhen?: {
|
|
4233
4500
|
dialect: "cel" | "cron" | "template";
|
|
4234
4501
|
source?: string | undefined;
|
|
@@ -4238,16 +4505,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4238
4505
|
generatedBy?: string | undefined;
|
|
4239
4506
|
} | undefined;
|
|
4240
4507
|
} | undefined;
|
|
4508
|
+
readonly scale?: number | undefined;
|
|
4241
4509
|
readonly searchable?: boolean | undefined;
|
|
4242
4510
|
readonly unique?: boolean | "global" | undefined;
|
|
4511
|
+
readonly defaultValue?: unknown;
|
|
4243
4512
|
readonly maxLength?: number | undefined;
|
|
4244
4513
|
readonly minLength?: number | undefined;
|
|
4245
|
-
readonly scale?: number | undefined;
|
|
4246
4514
|
readonly min?: number | undefined;
|
|
4247
4515
|
readonly max?: number | undefined;
|
|
4248
4516
|
readonly accept?: string[] | undefined;
|
|
4249
4517
|
readonly reference?: string | undefined;
|
|
4250
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4251
4518
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4252
4519
|
readonly inlineTitle?: string | undefined;
|
|
4253
4520
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4264,32 +4531,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4264
4531
|
type?: string | undefined;
|
|
4265
4532
|
})[] | undefined;
|
|
4266
4533
|
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
4534
|
readonly dependsOn?: (string | {
|
|
4273
4535
|
field: string;
|
|
4274
4536
|
param?: string | undefined;
|
|
4275
4537
|
})[] | undefined;
|
|
4276
4538
|
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
4539
|
readonly language?: string | undefined;
|
|
4294
4540
|
readonly step?: number | undefined;
|
|
4295
4541
|
readonly currencyConfig?: {
|
|
@@ -4325,7 +4571,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4325
4571
|
readonly system?: boolean | undefined;
|
|
4326
4572
|
readonly sortable?: boolean | undefined;
|
|
4327
4573
|
readonly inlineHelpText?: string | undefined;
|
|
4328
|
-
readonly
|
|
4574
|
+
readonly externalId?: boolean | undefined;
|
|
4329
4575
|
readonly type: "text";
|
|
4330
4576
|
};
|
|
4331
4577
|
readonly step_index: {
|
|
@@ -4358,8 +4604,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4358
4604
|
notNull?: boolean | undefined;
|
|
4359
4605
|
} | undefined;
|
|
4360
4606
|
readonly maxSize?: number | undefined;
|
|
4361
|
-
readonly
|
|
4362
|
-
readonly
|
|
4607
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4608
|
+
readonly _lockReason?: string | undefined;
|
|
4609
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4610
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
4611
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4612
|
+
readonly _packageId?: string | undefined;
|
|
4613
|
+
readonly _packageVersion?: string | undefined;
|
|
4614
|
+
readonly lookupFilters?: {
|
|
4615
|
+
field: string;
|
|
4616
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4617
|
+
value: any;
|
|
4618
|
+
}[] | undefined;
|
|
4619
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4620
|
+
readonly expression?: {
|
|
4621
|
+
dialect: "cel" | "cron" | "template";
|
|
4622
|
+
source?: string | undefined;
|
|
4623
|
+
ast?: unknown;
|
|
4624
|
+
meta?: {
|
|
4625
|
+
rationale?: string | undefined;
|
|
4626
|
+
generatedBy?: string | undefined;
|
|
4627
|
+
} | undefined;
|
|
4628
|
+
} | undefined;
|
|
4629
|
+
readonly autonumberFormat?: string | undefined;
|
|
4630
|
+
readonly summaryOperations?: {
|
|
4631
|
+
object: string;
|
|
4632
|
+
field: string;
|
|
4633
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4634
|
+
relationshipField?: string | undefined;
|
|
4635
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4636
|
+
} | undefined;
|
|
4363
4637
|
readonly visibleWhen?: {
|
|
4364
4638
|
dialect: "cel" | "cron" | "template";
|
|
4365
4639
|
source?: string | undefined;
|
|
@@ -4369,16 +4643,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4369
4643
|
generatedBy?: string | undefined;
|
|
4370
4644
|
} | undefined;
|
|
4371
4645
|
} | undefined;
|
|
4646
|
+
readonly scale?: number | undefined;
|
|
4372
4647
|
readonly searchable?: boolean | undefined;
|
|
4373
4648
|
readonly unique?: boolean | "global" | undefined;
|
|
4649
|
+
readonly defaultValue?: unknown;
|
|
4374
4650
|
readonly maxLength?: number | undefined;
|
|
4375
4651
|
readonly minLength?: number | undefined;
|
|
4376
|
-
readonly scale?: number | undefined;
|
|
4377
4652
|
readonly min?: number | undefined;
|
|
4378
4653
|
readonly max?: number | undefined;
|
|
4379
4654
|
readonly accept?: string[] | undefined;
|
|
4380
4655
|
readonly reference?: string | undefined;
|
|
4381
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4382
4656
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4383
4657
|
readonly inlineTitle?: string | undefined;
|
|
4384
4658
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4395,32 +4669,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4395
4669
|
type?: string | undefined;
|
|
4396
4670
|
})[] | undefined;
|
|
4397
4671
|
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
4672
|
readonly dependsOn?: (string | {
|
|
4404
4673
|
field: string;
|
|
4405
4674
|
param?: string | undefined;
|
|
4406
4675
|
})[] | undefined;
|
|
4407
4676
|
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
4677
|
readonly language?: string | undefined;
|
|
4425
4678
|
readonly step?: number | undefined;
|
|
4426
4679
|
readonly currencyConfig?: {
|
|
@@ -4456,7 +4709,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4456
4709
|
readonly system?: boolean | undefined;
|
|
4457
4710
|
readonly sortable?: boolean | undefined;
|
|
4458
4711
|
readonly inlineHelpText?: string | undefined;
|
|
4459
|
-
readonly
|
|
4712
|
+
readonly externalId?: boolean | undefined;
|
|
4460
4713
|
readonly type: "number";
|
|
4461
4714
|
};
|
|
4462
4715
|
readonly action: {
|
|
@@ -4489,8 +4742,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4489
4742
|
notNull?: boolean | undefined;
|
|
4490
4743
|
} | undefined;
|
|
4491
4744
|
readonly maxSize?: number | undefined;
|
|
4492
|
-
readonly
|
|
4493
|
-
readonly
|
|
4745
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4746
|
+
readonly _lockReason?: string | undefined;
|
|
4747
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4748
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
4749
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4750
|
+
readonly _packageId?: string | undefined;
|
|
4751
|
+
readonly _packageVersion?: string | undefined;
|
|
4752
|
+
readonly lookupFilters?: {
|
|
4753
|
+
field: string;
|
|
4754
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4755
|
+
value: any;
|
|
4756
|
+
}[] | undefined;
|
|
4757
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4758
|
+
readonly expression?: {
|
|
4759
|
+
dialect: "cel" | "cron" | "template";
|
|
4760
|
+
source?: string | undefined;
|
|
4761
|
+
ast?: unknown;
|
|
4762
|
+
meta?: {
|
|
4763
|
+
rationale?: string | undefined;
|
|
4764
|
+
generatedBy?: string | undefined;
|
|
4765
|
+
} | undefined;
|
|
4766
|
+
} | undefined;
|
|
4767
|
+
readonly autonumberFormat?: string | undefined;
|
|
4768
|
+
readonly summaryOperations?: {
|
|
4769
|
+
object: string;
|
|
4770
|
+
field: string;
|
|
4771
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4772
|
+
relationshipField?: string | undefined;
|
|
4773
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4774
|
+
} | undefined;
|
|
4494
4775
|
readonly visibleWhen?: {
|
|
4495
4776
|
dialect: "cel" | "cron" | "template";
|
|
4496
4777
|
source?: string | undefined;
|
|
@@ -4500,16 +4781,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4500
4781
|
generatedBy?: string | undefined;
|
|
4501
4782
|
} | undefined;
|
|
4502
4783
|
} | undefined;
|
|
4784
|
+
readonly scale?: number | undefined;
|
|
4503
4785
|
readonly searchable?: boolean | undefined;
|
|
4504
4786
|
readonly unique?: boolean | "global" | undefined;
|
|
4787
|
+
readonly defaultValue?: unknown;
|
|
4505
4788
|
readonly maxLength?: number | undefined;
|
|
4506
4789
|
readonly minLength?: number | undefined;
|
|
4507
|
-
readonly scale?: number | undefined;
|
|
4508
4790
|
readonly min?: number | undefined;
|
|
4509
4791
|
readonly max?: number | undefined;
|
|
4510
4792
|
readonly accept?: string[] | undefined;
|
|
4511
4793
|
readonly reference?: string | undefined;
|
|
4512
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4513
4794
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4514
4795
|
readonly inlineTitle?: string | undefined;
|
|
4515
4796
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4526,32 +4807,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4526
4807
|
type?: string | undefined;
|
|
4527
4808
|
})[] | undefined;
|
|
4528
4809
|
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
4810
|
readonly dependsOn?: (string | {
|
|
4535
4811
|
field: string;
|
|
4536
4812
|
param?: string | undefined;
|
|
4537
4813
|
})[] | undefined;
|
|
4538
4814
|
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
4815
|
readonly language?: string | undefined;
|
|
4556
4816
|
readonly step?: number | undefined;
|
|
4557
4817
|
readonly currencyConfig?: {
|
|
@@ -4587,7 +4847,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4587
4847
|
readonly system?: boolean | undefined;
|
|
4588
4848
|
readonly sortable?: boolean | undefined;
|
|
4589
4849
|
readonly inlineHelpText?: string | undefined;
|
|
4590
|
-
readonly
|
|
4850
|
+
readonly externalId?: boolean | undefined;
|
|
4591
4851
|
readonly type: "select";
|
|
4592
4852
|
};
|
|
4593
4853
|
readonly actor_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -4628,8 +4888,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4628
4888
|
notNull?: boolean | undefined;
|
|
4629
4889
|
} | undefined;
|
|
4630
4890
|
readonly maxSize?: number | undefined;
|
|
4631
|
-
readonly
|
|
4632
|
-
readonly
|
|
4891
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
4892
|
+
readonly _lockReason?: string | undefined;
|
|
4893
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
4894
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
4895
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4896
|
+
readonly _packageId?: string | undefined;
|
|
4897
|
+
readonly _packageVersion?: string | undefined;
|
|
4898
|
+
readonly lookupFilters?: {
|
|
4899
|
+
field: string;
|
|
4900
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
4901
|
+
value: any;
|
|
4902
|
+
}[] | undefined;
|
|
4903
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4904
|
+
readonly expression?: {
|
|
4905
|
+
dialect: "cel" | "cron" | "template";
|
|
4906
|
+
source?: string | undefined;
|
|
4907
|
+
ast?: unknown;
|
|
4908
|
+
meta?: {
|
|
4909
|
+
rationale?: string | undefined;
|
|
4910
|
+
generatedBy?: string | undefined;
|
|
4911
|
+
} | undefined;
|
|
4912
|
+
} | undefined;
|
|
4913
|
+
readonly autonumberFormat?: string | undefined;
|
|
4914
|
+
readonly summaryOperations?: {
|
|
4915
|
+
object: string;
|
|
4916
|
+
field: string;
|
|
4917
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
4918
|
+
relationshipField?: string | undefined;
|
|
4919
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4920
|
+
} | undefined;
|
|
4633
4921
|
readonly visibleWhen?: {
|
|
4634
4922
|
dialect: "cel" | "cron" | "template";
|
|
4635
4923
|
source?: string | undefined;
|
|
@@ -4639,16 +4927,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4639
4927
|
generatedBy?: string | undefined;
|
|
4640
4928
|
} | undefined;
|
|
4641
4929
|
} | undefined;
|
|
4930
|
+
readonly scale?: number | undefined;
|
|
4642
4931
|
readonly searchable?: boolean | undefined;
|
|
4643
4932
|
readonly unique?: boolean | "global" | undefined;
|
|
4933
|
+
readonly defaultValue?: unknown;
|
|
4644
4934
|
readonly maxLength?: number | undefined;
|
|
4645
4935
|
readonly minLength?: number | undefined;
|
|
4646
|
-
readonly scale?: number | undefined;
|
|
4647
4936
|
readonly min?: number | undefined;
|
|
4648
4937
|
readonly max?: number | undefined;
|
|
4649
4938
|
readonly accept?: string[] | undefined;
|
|
4650
4939
|
readonly reference?: string | undefined;
|
|
4651
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4652
4940
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4653
4941
|
readonly inlineTitle?: string | undefined;
|
|
4654
4942
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4665,16 +4953,92 @@ declare const SysApprovalAction: Omit<{
|
|
|
4665
4953
|
type?: string | undefined;
|
|
4666
4954
|
})[] | undefined;
|
|
4667
4955
|
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
4956
|
readonly dependsOn?: (string | {
|
|
4674
4957
|
field: string;
|
|
4675
4958
|
param?: string | undefined;
|
|
4676
4959
|
})[] | undefined;
|
|
4677
4960
|
readonly allowCreate?: boolean | undefined;
|
|
4961
|
+
readonly language?: string | undefined;
|
|
4962
|
+
readonly step?: number | undefined;
|
|
4963
|
+
readonly currencyConfig?: {
|
|
4964
|
+
precision: number;
|
|
4965
|
+
currencyMode: "fixed" | "dynamic";
|
|
4966
|
+
defaultCurrency: string;
|
|
4967
|
+
} | undefined;
|
|
4968
|
+
readonly dimensions?: number | undefined;
|
|
4969
|
+
readonly trackHistory?: boolean | undefined;
|
|
4970
|
+
readonly group?: string | undefined;
|
|
4971
|
+
readonly readonlyWhen?: {
|
|
4972
|
+
dialect: "cel" | "cron" | "template";
|
|
4973
|
+
source?: string | undefined;
|
|
4974
|
+
ast?: unknown;
|
|
4975
|
+
meta?: {
|
|
4976
|
+
rationale?: string | undefined;
|
|
4977
|
+
generatedBy?: string | undefined;
|
|
4978
|
+
} | undefined;
|
|
4979
|
+
} | undefined;
|
|
4980
|
+
readonly requiredWhen?: {
|
|
4981
|
+
dialect: "cel" | "cron" | "template";
|
|
4982
|
+
source?: string | undefined;
|
|
4983
|
+
ast?: unknown;
|
|
4984
|
+
meta?: {
|
|
4985
|
+
rationale?: string | undefined;
|
|
4986
|
+
generatedBy?: string | undefined;
|
|
4987
|
+
} | undefined;
|
|
4988
|
+
} | undefined;
|
|
4989
|
+
readonly conditionalRequired?: undefined;
|
|
4990
|
+
readonly hidden?: boolean | undefined;
|
|
4991
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
4992
|
+
readonly ackPlaintextMasking?: boolean | undefined;
|
|
4993
|
+
readonly system?: boolean | undefined;
|
|
4994
|
+
readonly sortable?: boolean | undefined;
|
|
4995
|
+
readonly inlineHelpText?: string | undefined;
|
|
4996
|
+
readonly externalId?: boolean | undefined;
|
|
4997
|
+
readonly type: "textarea";
|
|
4998
|
+
};
|
|
4999
|
+
readonly via_override: {
|
|
5000
|
+
readonly readonly?: boolean | undefined;
|
|
5001
|
+
readonly format?: string | undefined;
|
|
5002
|
+
readonly options?: {
|
|
5003
|
+
label: string;
|
|
5004
|
+
value: string;
|
|
5005
|
+
color?: string | undefined;
|
|
5006
|
+
default?: boolean | undefined;
|
|
5007
|
+
visibleWhen?: {
|
|
5008
|
+
dialect: "cel" | "cron" | "template";
|
|
5009
|
+
source?: string | undefined;
|
|
5010
|
+
ast?: unknown;
|
|
5011
|
+
meta?: {
|
|
5012
|
+
rationale?: string | undefined;
|
|
5013
|
+
generatedBy?: string | undefined;
|
|
5014
|
+
} | undefined;
|
|
5015
|
+
} | undefined;
|
|
5016
|
+
}[] | undefined;
|
|
5017
|
+
readonly description?: string | undefined;
|
|
5018
|
+
readonly label?: string | undefined;
|
|
5019
|
+
readonly name?: string | undefined;
|
|
5020
|
+
readonly precision?: number | undefined;
|
|
5021
|
+
readonly required?: boolean | undefined;
|
|
5022
|
+
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
5023
|
+
readonly widget?: string | undefined;
|
|
5024
|
+
readonly multiple?: boolean | undefined;
|
|
5025
|
+
readonly storage?: {
|
|
5026
|
+
notNull?: boolean | undefined;
|
|
5027
|
+
} | undefined;
|
|
5028
|
+
readonly maxSize?: number | undefined;
|
|
5029
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5030
|
+
readonly _lockReason?: string | undefined;
|
|
5031
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5032
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
5033
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5034
|
+
readonly _packageId?: string | undefined;
|
|
5035
|
+
readonly _packageVersion?: string | undefined;
|
|
5036
|
+
readonly lookupFilters?: {
|
|
5037
|
+
field: string;
|
|
5038
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
5039
|
+
value: any;
|
|
5040
|
+
}[] | undefined;
|
|
5041
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4678
5042
|
readonly expression?: {
|
|
4679
5043
|
dialect: "cel" | "cron" | "template";
|
|
4680
5044
|
source?: string | undefined;
|
|
@@ -4684,6 +5048,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4684
5048
|
generatedBy?: string | undefined;
|
|
4685
5049
|
} | undefined;
|
|
4686
5050
|
} | undefined;
|
|
5051
|
+
readonly autonumberFormat?: string | undefined;
|
|
4687
5052
|
readonly summaryOperations?: {
|
|
4688
5053
|
object: string;
|
|
4689
5054
|
field: string;
|
|
@@ -4691,6 +5056,46 @@ declare const SysApprovalAction: Omit<{
|
|
|
4691
5056
|
relationshipField?: string | undefined;
|
|
4692
5057
|
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
4693
5058
|
} | undefined;
|
|
5059
|
+
readonly visibleWhen?: {
|
|
5060
|
+
dialect: "cel" | "cron" | "template";
|
|
5061
|
+
source?: string | undefined;
|
|
5062
|
+
ast?: unknown;
|
|
5063
|
+
meta?: {
|
|
5064
|
+
rationale?: string | undefined;
|
|
5065
|
+
generatedBy?: string | undefined;
|
|
5066
|
+
} | undefined;
|
|
5067
|
+
} | undefined;
|
|
5068
|
+
readonly scale?: number | undefined;
|
|
5069
|
+
readonly searchable?: boolean | undefined;
|
|
5070
|
+
readonly unique?: boolean | "global" | undefined;
|
|
5071
|
+
readonly defaultValue?: unknown;
|
|
5072
|
+
readonly maxLength?: number | undefined;
|
|
5073
|
+
readonly minLength?: number | undefined;
|
|
5074
|
+
readonly min?: number | undefined;
|
|
5075
|
+
readonly max?: number | undefined;
|
|
5076
|
+
readonly accept?: string[] | undefined;
|
|
5077
|
+
readonly reference?: string | undefined;
|
|
5078
|
+
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5079
|
+
readonly inlineTitle?: string | undefined;
|
|
5080
|
+
readonly inlineColumns?: any[] | undefined;
|
|
5081
|
+
readonly inlineAmountField?: string | undefined;
|
|
5082
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5083
|
+
readonly relatedListTitle?: string | undefined;
|
|
5084
|
+
readonly relatedListColumns?: any[] | undefined;
|
|
5085
|
+
readonly displayField?: string | undefined;
|
|
5086
|
+
readonly descriptionField?: string | undefined;
|
|
5087
|
+
readonly lookupColumns?: (string | {
|
|
5088
|
+
field: string;
|
|
5089
|
+
label?: string | undefined;
|
|
5090
|
+
width?: string | undefined;
|
|
5091
|
+
type?: string | undefined;
|
|
5092
|
+
})[] | undefined;
|
|
5093
|
+
readonly lookupPageSize?: number | undefined;
|
|
5094
|
+
readonly dependsOn?: (string | {
|
|
5095
|
+
field: string;
|
|
5096
|
+
param?: string | undefined;
|
|
5097
|
+
})[] | undefined;
|
|
5098
|
+
readonly allowCreate?: boolean | undefined;
|
|
4694
5099
|
readonly language?: string | undefined;
|
|
4695
5100
|
readonly step?: number | undefined;
|
|
4696
5101
|
readonly currencyConfig?: {
|
|
@@ -4726,8 +5131,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
4726
5131
|
readonly system?: boolean | undefined;
|
|
4727
5132
|
readonly sortable?: boolean | undefined;
|
|
4728
5133
|
readonly inlineHelpText?: string | undefined;
|
|
4729
|
-
readonly
|
|
4730
|
-
readonly type: "
|
|
5134
|
+
readonly externalId?: boolean | undefined;
|
|
5135
|
+
readonly type: "boolean";
|
|
4731
5136
|
};
|
|
4732
5137
|
readonly reassign_from: _objectstack_spec_data.FieldInput & {
|
|
4733
5138
|
readonly label: "Reassigned From";
|
|
@@ -4777,8 +5182,36 @@ declare const SysApprovalAction: Omit<{
|
|
|
4777
5182
|
notNull?: boolean | undefined;
|
|
4778
5183
|
} | undefined;
|
|
4779
5184
|
readonly maxSize?: number | undefined;
|
|
4780
|
-
readonly
|
|
4781
|
-
readonly
|
|
5185
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5186
|
+
readonly _lockReason?: string | undefined;
|
|
5187
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5188
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
5189
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5190
|
+
readonly _packageId?: string | undefined;
|
|
5191
|
+
readonly _packageVersion?: string | undefined;
|
|
5192
|
+
readonly lookupFilters?: {
|
|
5193
|
+
field: string;
|
|
5194
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
5195
|
+
value: any;
|
|
5196
|
+
}[] | undefined;
|
|
5197
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5198
|
+
readonly expression?: {
|
|
5199
|
+
dialect: "cel" | "cron" | "template";
|
|
5200
|
+
source?: string | undefined;
|
|
5201
|
+
ast?: unknown;
|
|
5202
|
+
meta?: {
|
|
5203
|
+
rationale?: string | undefined;
|
|
5204
|
+
generatedBy?: string | undefined;
|
|
5205
|
+
} | undefined;
|
|
5206
|
+
} | undefined;
|
|
5207
|
+
readonly autonumberFormat?: string | undefined;
|
|
5208
|
+
readonly summaryOperations?: {
|
|
5209
|
+
object: string;
|
|
5210
|
+
field: string;
|
|
5211
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5212
|
+
relationshipField?: string | undefined;
|
|
5213
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
5214
|
+
} | undefined;
|
|
4782
5215
|
readonly visibleWhen?: {
|
|
4783
5216
|
dialect: "cel" | "cron" | "template";
|
|
4784
5217
|
source?: string | undefined;
|
|
@@ -4788,16 +5221,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4788
5221
|
generatedBy?: string | undefined;
|
|
4789
5222
|
} | undefined;
|
|
4790
5223
|
} | undefined;
|
|
5224
|
+
readonly scale?: number | undefined;
|
|
4791
5225
|
readonly searchable?: boolean | undefined;
|
|
4792
5226
|
readonly unique?: boolean | "global" | undefined;
|
|
5227
|
+
readonly defaultValue?: unknown;
|
|
4793
5228
|
readonly maxLength?: number | undefined;
|
|
4794
5229
|
readonly minLength?: number | undefined;
|
|
4795
|
-
readonly scale?: number | undefined;
|
|
4796
5230
|
readonly min?: number | undefined;
|
|
4797
5231
|
readonly max?: number | undefined;
|
|
4798
5232
|
readonly accept?: string[] | undefined;
|
|
4799
5233
|
readonly reference?: string | undefined;
|
|
4800
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4801
5234
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4802
5235
|
readonly inlineTitle?: string | undefined;
|
|
4803
5236
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4814,32 +5247,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4814
5247
|
type?: string | undefined;
|
|
4815
5248
|
})[] | undefined;
|
|
4816
5249
|
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
5250
|
readonly dependsOn?: (string | {
|
|
4823
5251
|
field: string;
|
|
4824
5252
|
param?: string | undefined;
|
|
4825
5253
|
})[] | undefined;
|
|
4826
5254
|
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
5255
|
readonly language?: string | undefined;
|
|
4844
5256
|
readonly step?: number | undefined;
|
|
4845
5257
|
readonly currencyConfig?: {
|
|
@@ -4875,7 +5287,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4875
5287
|
readonly system?: boolean | undefined;
|
|
4876
5288
|
readonly sortable?: boolean | undefined;
|
|
4877
5289
|
readonly inlineHelpText?: string | undefined;
|
|
4878
|
-
readonly
|
|
5290
|
+
readonly externalId?: boolean | undefined;
|
|
4879
5291
|
readonly type: "file";
|
|
4880
5292
|
};
|
|
4881
5293
|
readonly created_at: {
|
|
@@ -4907,9 +5319,37 @@ declare const SysApprovalAction: Omit<{
|
|
|
4907
5319
|
readonly storage?: {
|
|
4908
5320
|
notNull?: boolean | undefined;
|
|
4909
5321
|
} | undefined;
|
|
4910
|
-
readonly maxSize?: number | undefined;
|
|
4911
|
-
readonly
|
|
4912
|
-
readonly
|
|
5322
|
+
readonly maxSize?: number | undefined;
|
|
5323
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5324
|
+
readonly _lockReason?: string | undefined;
|
|
5325
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5326
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
5327
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5328
|
+
readonly _packageId?: string | undefined;
|
|
5329
|
+
readonly _packageVersion?: string | undefined;
|
|
5330
|
+
readonly lookupFilters?: {
|
|
5331
|
+
field: string;
|
|
5332
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
5333
|
+
value: any;
|
|
5334
|
+
}[] | undefined;
|
|
5335
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5336
|
+
readonly expression?: {
|
|
5337
|
+
dialect: "cel" | "cron" | "template";
|
|
5338
|
+
source?: string | undefined;
|
|
5339
|
+
ast?: unknown;
|
|
5340
|
+
meta?: {
|
|
5341
|
+
rationale?: string | undefined;
|
|
5342
|
+
generatedBy?: string | undefined;
|
|
5343
|
+
} | undefined;
|
|
5344
|
+
} | undefined;
|
|
5345
|
+
readonly autonumberFormat?: string | undefined;
|
|
5346
|
+
readonly summaryOperations?: {
|
|
5347
|
+
object: string;
|
|
5348
|
+
field: string;
|
|
5349
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
5350
|
+
relationshipField?: string | undefined;
|
|
5351
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
5352
|
+
} | undefined;
|
|
4913
5353
|
readonly visibleWhen?: {
|
|
4914
5354
|
dialect: "cel" | "cron" | "template";
|
|
4915
5355
|
source?: string | undefined;
|
|
@@ -4919,16 +5359,16 @@ declare const SysApprovalAction: Omit<{
|
|
|
4919
5359
|
generatedBy?: string | undefined;
|
|
4920
5360
|
} | undefined;
|
|
4921
5361
|
} | undefined;
|
|
5362
|
+
readonly scale?: number | undefined;
|
|
4922
5363
|
readonly searchable?: boolean | undefined;
|
|
4923
5364
|
readonly unique?: boolean | "global" | undefined;
|
|
5365
|
+
readonly defaultValue?: unknown;
|
|
4924
5366
|
readonly maxLength?: number | undefined;
|
|
4925
5367
|
readonly minLength?: number | undefined;
|
|
4926
|
-
readonly scale?: number | undefined;
|
|
4927
5368
|
readonly min?: number | undefined;
|
|
4928
5369
|
readonly max?: number | undefined;
|
|
4929
5370
|
readonly accept?: string[] | undefined;
|
|
4930
5371
|
readonly reference?: string | undefined;
|
|
4931
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4932
5372
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4933
5373
|
readonly inlineTitle?: string | undefined;
|
|
4934
5374
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -4945,32 +5385,11 @@ declare const SysApprovalAction: Omit<{
|
|
|
4945
5385
|
type?: string | undefined;
|
|
4946
5386
|
})[] | undefined;
|
|
4947
5387
|
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
5388
|
readonly dependsOn?: (string | {
|
|
4954
5389
|
field: string;
|
|
4955
5390
|
param?: string | undefined;
|
|
4956
5391
|
})[] | undefined;
|
|
4957
5392
|
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
5393
|
readonly language?: string | undefined;
|
|
4975
5394
|
readonly step?: number | undefined;
|
|
4976
5395
|
readonly currencyConfig?: {
|
|
@@ -5006,7 +5425,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5006
5425
|
readonly system?: boolean | undefined;
|
|
5007
5426
|
readonly sortable?: boolean | undefined;
|
|
5008
5427
|
readonly inlineHelpText?: string | undefined;
|
|
5009
|
-
readonly
|
|
5428
|
+
readonly externalId?: boolean | undefined;
|
|
5010
5429
|
readonly type: "datetime";
|
|
5011
5430
|
};
|
|
5012
5431
|
};
|
|
@@ -5047,7 +5466,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5047
5466
|
isSystem: boolean;
|
|
5048
5467
|
datasource: string;
|
|
5049
5468
|
fields: Record<string, {
|
|
5050
|
-
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
5469
|
+
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
5470
|
required: boolean;
|
|
5052
5471
|
searchable: boolean;
|
|
5053
5472
|
multiple: boolean;
|
|
@@ -5057,6 +5476,13 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5057
5476
|
readonly: boolean;
|
|
5058
5477
|
sortable: boolean;
|
|
5059
5478
|
externalId: boolean;
|
|
5479
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
5480
|
+
_lockReason?: string | undefined;
|
|
5481
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
5482
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
5483
|
+
_packageId?: string | undefined;
|
|
5484
|
+
_packageVersion?: string | undefined;
|
|
5485
|
+
_lockDocsUrl?: string | undefined;
|
|
5060
5486
|
name?: string | undefined;
|
|
5061
5487
|
label?: string | undefined;
|
|
5062
5488
|
description?: string | undefined;
|
|
@@ -5228,7 +5654,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5228
5654
|
pluralLabel?: string | undefined;
|
|
5229
5655
|
description?: string | undefined;
|
|
5230
5656
|
icon?: string | undefined;
|
|
5231
|
-
managedBy?: "
|
|
5657
|
+
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
5232
5658
|
ownership?: "none" | "org" | "user" | undefined;
|
|
5233
5659
|
userActions?: {
|
|
5234
5660
|
create?: boolean | undefined;
|
|
@@ -5323,7 +5749,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5323
5749
|
} | undefined;
|
|
5324
5750
|
indexes?: {
|
|
5325
5751
|
fields: string[];
|
|
5326
|
-
type: "hash" | "
|
|
5752
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
5327
5753
|
unique: boolean | "global";
|
|
5328
5754
|
name?: string | undefined;
|
|
5329
5755
|
partial?: string | undefined;
|
|
@@ -5448,6 +5874,33 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5448
5874
|
defaultExpandedDepth?: number | undefined;
|
|
5449
5875
|
} | undefined;
|
|
5450
5876
|
inlineEdit?: boolean | undefined;
|
|
5877
|
+
data?: {
|
|
5878
|
+
provider: "object";
|
|
5879
|
+
object: string;
|
|
5880
|
+
} | {
|
|
5881
|
+
provider: "api";
|
|
5882
|
+
read?: {
|
|
5883
|
+
url: string;
|
|
5884
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
5885
|
+
headers?: Record<string, string> | undefined;
|
|
5886
|
+
params?: Record<string, unknown> | undefined;
|
|
5887
|
+
body?: unknown;
|
|
5888
|
+
} | undefined;
|
|
5889
|
+
write?: {
|
|
5890
|
+
url: string;
|
|
5891
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
5892
|
+
headers?: Record<string, string> | undefined;
|
|
5893
|
+
params?: Record<string, unknown> | undefined;
|
|
5894
|
+
body?: unknown;
|
|
5895
|
+
} | undefined;
|
|
5896
|
+
} | {
|
|
5897
|
+
provider: "value";
|
|
5898
|
+
items: unknown[];
|
|
5899
|
+
} | {
|
|
5900
|
+
provider: "schema";
|
|
5901
|
+
schemaId: string;
|
|
5902
|
+
schema?: Record<string, unknown> | undefined;
|
|
5903
|
+
} | undefined;
|
|
5451
5904
|
navigation?: {
|
|
5452
5905
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
5453
5906
|
preventNavigation: boolean;
|
|
@@ -5480,44 +5933,27 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5480
5933
|
}[] | undefined;
|
|
5481
5934
|
order?: number | undefined;
|
|
5482
5935
|
}[] | 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
5936
|
emptyState?: {
|
|
5515
5937
|
title?: string | undefined;
|
|
5516
5938
|
message?: string | undefined;
|
|
5517
5939
|
icon?: string | undefined;
|
|
5518
5940
|
} | undefined;
|
|
5941
|
+
userActions?: {
|
|
5942
|
+
sort: boolean;
|
|
5943
|
+
search: boolean;
|
|
5944
|
+
filter: boolean;
|
|
5945
|
+
refresh: boolean;
|
|
5946
|
+
rowHeight: boolean;
|
|
5947
|
+
addRecordForm: boolean;
|
|
5948
|
+
editInline: boolean;
|
|
5949
|
+
buttons?: string[] | undefined;
|
|
5950
|
+
} | undefined;
|
|
5519
5951
|
responsive?: undefined;
|
|
5520
5952
|
performance?: undefined;
|
|
5953
|
+
appearance?: {
|
|
5954
|
+
showDescription: boolean;
|
|
5955
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
5956
|
+
} | undefined;
|
|
5521
5957
|
resizable?: boolean | undefined;
|
|
5522
5958
|
kanban?: {
|
|
5523
5959
|
groupByField: string;
|
|
@@ -5591,6 +6027,10 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5591
6027
|
selection?: {
|
|
5592
6028
|
type: "none" | "multiple" | "single";
|
|
5593
6029
|
} | undefined;
|
|
6030
|
+
pagination?: {
|
|
6031
|
+
pageSize: number;
|
|
6032
|
+
pageSizeOptions?: number[] | undefined;
|
|
6033
|
+
} | undefined;
|
|
5594
6034
|
grouping?: {
|
|
5595
6035
|
fields: {
|
|
5596
6036
|
field: string;
|
|
@@ -5606,7 +6046,53 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5606
6046
|
fieldOrder?: string[] | undefined;
|
|
5607
6047
|
rowActions?: string[] | undefined;
|
|
5608
6048
|
bulkActions?: string[] | undefined;
|
|
5609
|
-
bulkActionDefs?:
|
|
6049
|
+
bulkActionDefs?: {
|
|
6050
|
+
name: string;
|
|
6051
|
+
operation: "delete" | "update" | "custom";
|
|
6052
|
+
label?: string | undefined;
|
|
6053
|
+
icon?: string | undefined;
|
|
6054
|
+
variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
|
|
6055
|
+
execution?: "aggregate" | "perRecord" | undefined;
|
|
6056
|
+
patch?: Record<string, unknown> | undefined;
|
|
6057
|
+
params?: {
|
|
6058
|
+
[x: string]: unknown;
|
|
6059
|
+
name: string;
|
|
6060
|
+
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";
|
|
6061
|
+
label?: string | undefined;
|
|
6062
|
+
help?: string | undefined;
|
|
6063
|
+
required?: boolean | undefined;
|
|
6064
|
+
default?: unknown;
|
|
6065
|
+
options?: {
|
|
6066
|
+
label: string;
|
|
6067
|
+
value: string | number | boolean;
|
|
6068
|
+
}[] | undefined;
|
|
6069
|
+
object?: string | undefined;
|
|
6070
|
+
labelField?: string | undefined;
|
|
6071
|
+
multiple?: boolean | undefined;
|
|
6072
|
+
placeholder?: string | undefined;
|
|
6073
|
+
}[] | undefined;
|
|
6074
|
+
confirmText?: string | undefined;
|
|
6075
|
+
confirmLabel?: string | undefined;
|
|
6076
|
+
visible?: {
|
|
6077
|
+
dialect: "cel" | "cron" | "template";
|
|
6078
|
+
source?: string | undefined;
|
|
6079
|
+
ast?: unknown;
|
|
6080
|
+
meta?: {
|
|
6081
|
+
rationale?: string | undefined;
|
|
6082
|
+
generatedBy?: string | undefined;
|
|
6083
|
+
} | undefined;
|
|
6084
|
+
} | {
|
|
6085
|
+
dialect: "cel" | "cron" | "template";
|
|
6086
|
+
source?: string | undefined;
|
|
6087
|
+
ast?: unknown;
|
|
6088
|
+
meta?: {
|
|
6089
|
+
rationale?: string | undefined;
|
|
6090
|
+
generatedBy?: string | undefined;
|
|
6091
|
+
} | undefined;
|
|
6092
|
+
} | undefined;
|
|
6093
|
+
maxRecords?: number | undefined;
|
|
6094
|
+
batchSize?: number | undefined;
|
|
6095
|
+
}[] | undefined;
|
|
5610
6096
|
virtualScroll?: boolean | undefined;
|
|
5611
6097
|
conditionalFormatting?: {
|
|
5612
6098
|
condition: {
|
|
@@ -5629,20 +6115,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5629
6115
|
style: Record<string, string>;
|
|
5630
6116
|
}[] | undefined;
|
|
5631
6117
|
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
6118
|
addRecord?: {
|
|
5647
6119
|
enabled: boolean;
|
|
5648
6120
|
position: "top" | "bottom" | "both";
|
|
@@ -5693,6 +6165,13 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5693
6165
|
label: string;
|
|
5694
6166
|
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
5695
6167
|
refreshAfter: boolean;
|
|
6168
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6169
|
+
_lockReason?: string | undefined;
|
|
6170
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6171
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6172
|
+
_packageId?: string | undefined;
|
|
6173
|
+
_packageVersion?: string | undefined;
|
|
6174
|
+
_lockDocsUrl?: string | undefined;
|
|
5696
6175
|
objectName?: string | undefined;
|
|
5697
6176
|
icon?: string | undefined;
|
|
5698
6177
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
@@ -5705,7 +6184,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5705
6184
|
} | {
|
|
5706
6185
|
language: "js";
|
|
5707
6186
|
source: string;
|
|
5708
|
-
capabilities: ("
|
|
6187
|
+
capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
|
|
5709
6188
|
timeoutMs?: number | undefined;
|
|
5710
6189
|
memoryMb?: number | undefined;
|
|
5711
6190
|
} | undefined;
|
|
@@ -5716,7 +6195,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5716
6195
|
field?: string | undefined;
|
|
5717
6196
|
objectOverride?: string | undefined;
|
|
5718
6197
|
label?: string | undefined;
|
|
5719
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
6198
|
+
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
6199
|
options?: {
|
|
5721
6200
|
label: string;
|
|
5722
6201
|
value: string;
|
|
@@ -5855,8 +6334,36 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5855
6334
|
notNull?: boolean | undefined;
|
|
5856
6335
|
} | undefined;
|
|
5857
6336
|
readonly maxSize?: number | undefined;
|
|
5858
|
-
readonly
|
|
5859
|
-
readonly
|
|
6337
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6338
|
+
readonly _lockReason?: string | undefined;
|
|
6339
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6340
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
6341
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6342
|
+
readonly _packageId?: string | undefined;
|
|
6343
|
+
readonly _packageVersion?: string | undefined;
|
|
6344
|
+
readonly lookupFilters?: {
|
|
6345
|
+
field: string;
|
|
6346
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
6347
|
+
value: any;
|
|
6348
|
+
}[] | undefined;
|
|
6349
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6350
|
+
readonly expression?: {
|
|
6351
|
+
dialect: "cel" | "cron" | "template";
|
|
6352
|
+
source?: string | undefined;
|
|
6353
|
+
ast?: unknown;
|
|
6354
|
+
meta?: {
|
|
6355
|
+
rationale?: string | undefined;
|
|
6356
|
+
generatedBy?: string | undefined;
|
|
6357
|
+
} | undefined;
|
|
6358
|
+
} | undefined;
|
|
6359
|
+
readonly autonumberFormat?: string | undefined;
|
|
6360
|
+
readonly summaryOperations?: {
|
|
6361
|
+
object: string;
|
|
6362
|
+
field: string;
|
|
6363
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6364
|
+
relationshipField?: string | undefined;
|
|
6365
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6366
|
+
} | undefined;
|
|
5860
6367
|
readonly visibleWhen?: {
|
|
5861
6368
|
dialect: "cel" | "cron" | "template";
|
|
5862
6369
|
source?: string | undefined;
|
|
@@ -5866,16 +6373,16 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5866
6373
|
generatedBy?: string | undefined;
|
|
5867
6374
|
} | undefined;
|
|
5868
6375
|
} | undefined;
|
|
6376
|
+
readonly scale?: number | undefined;
|
|
5869
6377
|
readonly searchable?: boolean | undefined;
|
|
5870
6378
|
readonly unique?: boolean | "global" | undefined;
|
|
6379
|
+
readonly defaultValue?: unknown;
|
|
5871
6380
|
readonly maxLength?: number | undefined;
|
|
5872
6381
|
readonly minLength?: number | undefined;
|
|
5873
|
-
readonly scale?: number | undefined;
|
|
5874
6382
|
readonly min?: number | undefined;
|
|
5875
6383
|
readonly max?: number | undefined;
|
|
5876
6384
|
readonly accept?: string[] | undefined;
|
|
5877
6385
|
readonly reference?: string | undefined;
|
|
5878
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5879
6386
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5880
6387
|
readonly inlineTitle?: string | undefined;
|
|
5881
6388
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -5892,32 +6399,11 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5892
6399
|
type?: string | undefined;
|
|
5893
6400
|
})[] | undefined;
|
|
5894
6401
|
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
6402
|
readonly dependsOn?: (string | {
|
|
5901
6403
|
field: string;
|
|
5902
6404
|
param?: string | undefined;
|
|
5903
6405
|
})[] | undefined;
|
|
5904
6406
|
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
6407
|
readonly language?: string | undefined;
|
|
5922
6408
|
readonly step?: number | undefined;
|
|
5923
6409
|
readonly currencyConfig?: {
|
|
@@ -5953,7 +6439,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
5953
6439
|
readonly system?: boolean | undefined;
|
|
5954
6440
|
readonly sortable?: boolean | undefined;
|
|
5955
6441
|
readonly inlineHelpText?: string | undefined;
|
|
5956
|
-
readonly
|
|
6442
|
+
readonly externalId?: boolean | undefined;
|
|
5957
6443
|
readonly type: "text";
|
|
5958
6444
|
};
|
|
5959
6445
|
readonly organization_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -6003,8 +6489,36 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6003
6489
|
notNull?: boolean | undefined;
|
|
6004
6490
|
} | undefined;
|
|
6005
6491
|
readonly maxSize?: number | undefined;
|
|
6006
|
-
readonly
|
|
6007
|
-
readonly
|
|
6492
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6493
|
+
readonly _lockReason?: string | undefined;
|
|
6494
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6495
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
6496
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6497
|
+
readonly _packageId?: string | undefined;
|
|
6498
|
+
readonly _packageVersion?: string | undefined;
|
|
6499
|
+
readonly lookupFilters?: {
|
|
6500
|
+
field: string;
|
|
6501
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
6502
|
+
value: any;
|
|
6503
|
+
}[] | undefined;
|
|
6504
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6505
|
+
readonly expression?: {
|
|
6506
|
+
dialect: "cel" | "cron" | "template";
|
|
6507
|
+
source?: string | undefined;
|
|
6508
|
+
ast?: unknown;
|
|
6509
|
+
meta?: {
|
|
6510
|
+
rationale?: string | undefined;
|
|
6511
|
+
generatedBy?: string | undefined;
|
|
6512
|
+
} | undefined;
|
|
6513
|
+
} | undefined;
|
|
6514
|
+
readonly autonumberFormat?: string | undefined;
|
|
6515
|
+
readonly summaryOperations?: {
|
|
6516
|
+
object: string;
|
|
6517
|
+
field: string;
|
|
6518
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6519
|
+
relationshipField?: string | undefined;
|
|
6520
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6521
|
+
} | undefined;
|
|
6008
6522
|
readonly visibleWhen?: {
|
|
6009
6523
|
dialect: "cel" | "cron" | "template";
|
|
6010
6524
|
source?: string | undefined;
|
|
@@ -6014,16 +6528,16 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6014
6528
|
generatedBy?: string | undefined;
|
|
6015
6529
|
} | undefined;
|
|
6016
6530
|
} | undefined;
|
|
6531
|
+
readonly scale?: number | undefined;
|
|
6017
6532
|
readonly searchable?: boolean | undefined;
|
|
6018
6533
|
readonly unique?: boolean | "global" | undefined;
|
|
6534
|
+
readonly defaultValue?: unknown;
|
|
6019
6535
|
readonly maxLength?: number | undefined;
|
|
6020
6536
|
readonly minLength?: number | undefined;
|
|
6021
|
-
readonly scale?: number | undefined;
|
|
6022
6537
|
readonly min?: number | undefined;
|
|
6023
6538
|
readonly max?: number | undefined;
|
|
6024
6539
|
readonly accept?: string[] | undefined;
|
|
6025
6540
|
readonly reference?: string | undefined;
|
|
6026
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6027
6541
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6028
6542
|
readonly inlineTitle?: string | undefined;
|
|
6029
6543
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -6040,32 +6554,11 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6040
6554
|
type?: string | undefined;
|
|
6041
6555
|
})[] | undefined;
|
|
6042
6556
|
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
6557
|
readonly dependsOn?: (string | {
|
|
6049
6558
|
field: string;
|
|
6050
6559
|
param?: string | undefined;
|
|
6051
6560
|
})[] | undefined;
|
|
6052
6561
|
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
6562
|
readonly language?: string | undefined;
|
|
6070
6563
|
readonly step?: number | undefined;
|
|
6071
6564
|
readonly currencyConfig?: {
|
|
@@ -6101,7 +6594,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6101
6594
|
readonly system?: boolean | undefined;
|
|
6102
6595
|
readonly sortable?: boolean | undefined;
|
|
6103
6596
|
readonly inlineHelpText?: string | undefined;
|
|
6104
|
-
readonly
|
|
6597
|
+
readonly externalId?: boolean | undefined;
|
|
6105
6598
|
readonly type: "text";
|
|
6106
6599
|
};
|
|
6107
6600
|
readonly created_at: {
|
|
@@ -6134,8 +6627,36 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6134
6627
|
notNull?: boolean | undefined;
|
|
6135
6628
|
} | undefined;
|
|
6136
6629
|
readonly maxSize?: number | undefined;
|
|
6137
|
-
readonly
|
|
6138
|
-
readonly
|
|
6630
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6631
|
+
readonly _lockReason?: string | undefined;
|
|
6632
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6633
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
6634
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6635
|
+
readonly _packageId?: string | undefined;
|
|
6636
|
+
readonly _packageVersion?: string | undefined;
|
|
6637
|
+
readonly lookupFilters?: {
|
|
6638
|
+
field: string;
|
|
6639
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
6640
|
+
value: any;
|
|
6641
|
+
}[] | undefined;
|
|
6642
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6643
|
+
readonly expression?: {
|
|
6644
|
+
dialect: "cel" | "cron" | "template";
|
|
6645
|
+
source?: string | undefined;
|
|
6646
|
+
ast?: unknown;
|
|
6647
|
+
meta?: {
|
|
6648
|
+
rationale?: string | undefined;
|
|
6649
|
+
generatedBy?: string | undefined;
|
|
6650
|
+
} | undefined;
|
|
6651
|
+
} | undefined;
|
|
6652
|
+
readonly autonumberFormat?: string | undefined;
|
|
6653
|
+
readonly summaryOperations?: {
|
|
6654
|
+
object: string;
|
|
6655
|
+
field: string;
|
|
6656
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
6657
|
+
relationshipField?: string | undefined;
|
|
6658
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
6659
|
+
} | undefined;
|
|
6139
6660
|
readonly visibleWhen?: {
|
|
6140
6661
|
dialect: "cel" | "cron" | "template";
|
|
6141
6662
|
source?: string | undefined;
|
|
@@ -6145,16 +6666,16 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6145
6666
|
generatedBy?: string | undefined;
|
|
6146
6667
|
} | undefined;
|
|
6147
6668
|
} | undefined;
|
|
6669
|
+
readonly scale?: number | undefined;
|
|
6148
6670
|
readonly searchable?: boolean | undefined;
|
|
6149
6671
|
readonly unique?: boolean | "global" | undefined;
|
|
6672
|
+
readonly defaultValue?: unknown;
|
|
6150
6673
|
readonly maxLength?: number | undefined;
|
|
6151
6674
|
readonly minLength?: number | undefined;
|
|
6152
|
-
readonly scale?: number | undefined;
|
|
6153
6675
|
readonly min?: number | undefined;
|
|
6154
6676
|
readonly max?: number | undefined;
|
|
6155
6677
|
readonly accept?: string[] | undefined;
|
|
6156
6678
|
readonly reference?: string | undefined;
|
|
6157
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6158
6679
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6159
6680
|
readonly inlineTitle?: string | undefined;
|
|
6160
6681
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -6171,32 +6692,11 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6171
6692
|
type?: string | undefined;
|
|
6172
6693
|
})[] | undefined;
|
|
6173
6694
|
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
6695
|
readonly dependsOn?: (string | {
|
|
6180
6696
|
field: string;
|
|
6181
6697
|
param?: string | undefined;
|
|
6182
6698
|
})[] | undefined;
|
|
6183
6699
|
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
6700
|
readonly language?: string | undefined;
|
|
6201
6701
|
readonly step?: number | undefined;
|
|
6202
6702
|
readonly currencyConfig?: {
|
|
@@ -6232,7 +6732,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6232
6732
|
readonly system?: boolean | undefined;
|
|
6233
6733
|
readonly sortable?: boolean | undefined;
|
|
6234
6734
|
readonly inlineHelpText?: string | undefined;
|
|
6235
|
-
readonly
|
|
6735
|
+
readonly externalId?: boolean | undefined;
|
|
6236
6736
|
readonly type: "datetime";
|
|
6237
6737
|
};
|
|
6238
6738
|
};
|
|
@@ -6276,7 +6776,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6276
6776
|
isSystem: boolean;
|
|
6277
6777
|
datasource: string;
|
|
6278
6778
|
fields: Record<string, {
|
|
6279
|
-
type: "number" | "boolean" | "user" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
6779
|
+
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
6780
|
required: boolean;
|
|
6281
6781
|
searchable: boolean;
|
|
6282
6782
|
multiple: boolean;
|
|
@@ -6286,6 +6786,13 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6286
6786
|
readonly: boolean;
|
|
6287
6787
|
sortable: boolean;
|
|
6288
6788
|
externalId: boolean;
|
|
6789
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
6790
|
+
_lockReason?: string | undefined;
|
|
6791
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
6792
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
6793
|
+
_packageId?: string | undefined;
|
|
6794
|
+
_packageVersion?: string | undefined;
|
|
6795
|
+
_lockDocsUrl?: string | undefined;
|
|
6289
6796
|
name?: string | undefined;
|
|
6290
6797
|
label?: string | undefined;
|
|
6291
6798
|
description?: string | undefined;
|
|
@@ -6457,7 +6964,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6457
6964
|
pluralLabel?: string | undefined;
|
|
6458
6965
|
description?: string | undefined;
|
|
6459
6966
|
icon?: string | undefined;
|
|
6460
|
-
managedBy?: "
|
|
6967
|
+
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
6461
6968
|
ownership?: "none" | "org" | "user" | undefined;
|
|
6462
6969
|
userActions?: {
|
|
6463
6970
|
create?: boolean | undefined;
|
|
@@ -6552,7 +7059,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6552
7059
|
} | undefined;
|
|
6553
7060
|
indexes?: {
|
|
6554
7061
|
fields: string[];
|
|
6555
|
-
type: "hash" | "
|
|
7062
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
6556
7063
|
unique: boolean | "global";
|
|
6557
7064
|
name?: string | undefined;
|
|
6558
7065
|
partial?: string | undefined;
|
|
@@ -6677,6 +7184,33 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6677
7184
|
defaultExpandedDepth?: number | undefined;
|
|
6678
7185
|
} | undefined;
|
|
6679
7186
|
inlineEdit?: boolean | undefined;
|
|
7187
|
+
data?: {
|
|
7188
|
+
provider: "object";
|
|
7189
|
+
object: string;
|
|
7190
|
+
} | {
|
|
7191
|
+
provider: "api";
|
|
7192
|
+
read?: {
|
|
7193
|
+
url: string;
|
|
7194
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
7195
|
+
headers?: Record<string, string> | undefined;
|
|
7196
|
+
params?: Record<string, unknown> | undefined;
|
|
7197
|
+
body?: unknown;
|
|
7198
|
+
} | undefined;
|
|
7199
|
+
write?: {
|
|
7200
|
+
url: string;
|
|
7201
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
7202
|
+
headers?: Record<string, string> | undefined;
|
|
7203
|
+
params?: Record<string, unknown> | undefined;
|
|
7204
|
+
body?: unknown;
|
|
7205
|
+
} | undefined;
|
|
7206
|
+
} | {
|
|
7207
|
+
provider: "value";
|
|
7208
|
+
items: unknown[];
|
|
7209
|
+
} | {
|
|
7210
|
+
provider: "schema";
|
|
7211
|
+
schemaId: string;
|
|
7212
|
+
schema?: Record<string, unknown> | undefined;
|
|
7213
|
+
} | undefined;
|
|
6680
7214
|
navigation?: {
|
|
6681
7215
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
6682
7216
|
preventNavigation: boolean;
|
|
@@ -6709,44 +7243,27 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6709
7243
|
}[] | undefined;
|
|
6710
7244
|
order?: number | undefined;
|
|
6711
7245
|
}[] | 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
7246
|
emptyState?: {
|
|
6744
7247
|
title?: string | undefined;
|
|
6745
7248
|
message?: string | undefined;
|
|
6746
7249
|
icon?: string | undefined;
|
|
6747
7250
|
} | undefined;
|
|
7251
|
+
userActions?: {
|
|
7252
|
+
sort: boolean;
|
|
7253
|
+
search: boolean;
|
|
7254
|
+
filter: boolean;
|
|
7255
|
+
refresh: boolean;
|
|
7256
|
+
rowHeight: boolean;
|
|
7257
|
+
addRecordForm: boolean;
|
|
7258
|
+
editInline: boolean;
|
|
7259
|
+
buttons?: string[] | undefined;
|
|
7260
|
+
} | undefined;
|
|
6748
7261
|
responsive?: undefined;
|
|
6749
7262
|
performance?: undefined;
|
|
7263
|
+
appearance?: {
|
|
7264
|
+
showDescription: boolean;
|
|
7265
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
7266
|
+
} | undefined;
|
|
6750
7267
|
resizable?: boolean | undefined;
|
|
6751
7268
|
kanban?: {
|
|
6752
7269
|
groupByField: string;
|
|
@@ -6820,6 +7337,10 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6820
7337
|
selection?: {
|
|
6821
7338
|
type: "none" | "multiple" | "single";
|
|
6822
7339
|
} | undefined;
|
|
7340
|
+
pagination?: {
|
|
7341
|
+
pageSize: number;
|
|
7342
|
+
pageSizeOptions?: number[] | undefined;
|
|
7343
|
+
} | undefined;
|
|
6823
7344
|
grouping?: {
|
|
6824
7345
|
fields: {
|
|
6825
7346
|
field: string;
|
|
@@ -6835,7 +7356,53 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6835
7356
|
fieldOrder?: string[] | undefined;
|
|
6836
7357
|
rowActions?: string[] | undefined;
|
|
6837
7358
|
bulkActions?: string[] | undefined;
|
|
6838
|
-
bulkActionDefs?:
|
|
7359
|
+
bulkActionDefs?: {
|
|
7360
|
+
name: string;
|
|
7361
|
+
operation: "delete" | "update" | "custom";
|
|
7362
|
+
label?: string | undefined;
|
|
7363
|
+
icon?: string | undefined;
|
|
7364
|
+
variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
|
|
7365
|
+
execution?: "aggregate" | "perRecord" | undefined;
|
|
7366
|
+
patch?: Record<string, unknown> | undefined;
|
|
7367
|
+
params?: {
|
|
7368
|
+
[x: string]: unknown;
|
|
7369
|
+
name: string;
|
|
7370
|
+
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";
|
|
7371
|
+
label?: string | undefined;
|
|
7372
|
+
help?: string | undefined;
|
|
7373
|
+
required?: boolean | undefined;
|
|
7374
|
+
default?: unknown;
|
|
7375
|
+
options?: {
|
|
7376
|
+
label: string;
|
|
7377
|
+
value: string | number | boolean;
|
|
7378
|
+
}[] | undefined;
|
|
7379
|
+
object?: string | undefined;
|
|
7380
|
+
labelField?: string | undefined;
|
|
7381
|
+
multiple?: boolean | undefined;
|
|
7382
|
+
placeholder?: string | undefined;
|
|
7383
|
+
}[] | undefined;
|
|
7384
|
+
confirmText?: string | undefined;
|
|
7385
|
+
confirmLabel?: string | undefined;
|
|
7386
|
+
visible?: {
|
|
7387
|
+
dialect: "cel" | "cron" | "template";
|
|
7388
|
+
source?: string | undefined;
|
|
7389
|
+
ast?: unknown;
|
|
7390
|
+
meta?: {
|
|
7391
|
+
rationale?: string | undefined;
|
|
7392
|
+
generatedBy?: string | undefined;
|
|
7393
|
+
} | undefined;
|
|
7394
|
+
} | {
|
|
7395
|
+
dialect: "cel" | "cron" | "template";
|
|
7396
|
+
source?: string | undefined;
|
|
7397
|
+
ast?: unknown;
|
|
7398
|
+
meta?: {
|
|
7399
|
+
rationale?: string | undefined;
|
|
7400
|
+
generatedBy?: string | undefined;
|
|
7401
|
+
} | undefined;
|
|
7402
|
+
} | undefined;
|
|
7403
|
+
maxRecords?: number | undefined;
|
|
7404
|
+
batchSize?: number | undefined;
|
|
7405
|
+
}[] | undefined;
|
|
6839
7406
|
virtualScroll?: boolean | undefined;
|
|
6840
7407
|
conditionalFormatting?: {
|
|
6841
7408
|
condition: {
|
|
@@ -6858,20 +7425,6 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6858
7425
|
style: Record<string, string>;
|
|
6859
7426
|
}[] | undefined;
|
|
6860
7427
|
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
7428
|
addRecord?: {
|
|
6876
7429
|
enabled: boolean;
|
|
6877
7430
|
position: "top" | "bottom" | "both";
|
|
@@ -6922,6 +7475,13 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6922
7475
|
label: string;
|
|
6923
7476
|
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
6924
7477
|
refreshAfter: boolean;
|
|
7478
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7479
|
+
_lockReason?: string | undefined;
|
|
7480
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
7481
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7482
|
+
_packageId?: string | undefined;
|
|
7483
|
+
_packageVersion?: string | undefined;
|
|
7484
|
+
_lockDocsUrl?: string | undefined;
|
|
6925
7485
|
objectName?: string | undefined;
|
|
6926
7486
|
icon?: string | undefined;
|
|
6927
7487
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
@@ -6934,7 +7494,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6934
7494
|
} | {
|
|
6935
7495
|
language: "js";
|
|
6936
7496
|
source: string;
|
|
6937
|
-
capabilities: ("
|
|
7497
|
+
capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
|
|
6938
7498
|
timeoutMs?: number | undefined;
|
|
6939
7499
|
memoryMb?: number | undefined;
|
|
6940
7500
|
} | undefined;
|
|
@@ -6945,7 +7505,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
6945
7505
|
field?: string | undefined;
|
|
6946
7506
|
objectOverride?: string | undefined;
|
|
6947
7507
|
label?: string | undefined;
|
|
6948
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
7508
|
+
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
7509
|
options?: {
|
|
6950
7510
|
label: string;
|
|
6951
7511
|
value: string;
|
|
@@ -7047,12 +7607,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7047
7607
|
readonly pluralLabel: "Approval Delegations";
|
|
7048
7608
|
readonly icon: "user-clock";
|
|
7049
7609
|
readonly isSystem: true;
|
|
7050
|
-
readonly managedBy: "system";
|
|
7051
|
-
readonly userActions: {
|
|
7052
|
-
readonly create: true;
|
|
7053
|
-
readonly edit: true;
|
|
7054
|
-
readonly delete: true;
|
|
7055
|
-
};
|
|
7610
|
+
readonly managedBy: "system-data";
|
|
7056
7611
|
readonly description: "Self-service out-of-office rule: route this user's approver slots to a delegate within a time window (#1322 M1).";
|
|
7057
7612
|
readonly titleFormat: "{delegator_id} → {delegate_id}";
|
|
7058
7613
|
readonly highlightFields: ["delegator_id", "delegate_id", "valid_from", "valid_until"];
|
|
@@ -7110,8 +7665,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7110
7665
|
notNull?: boolean | undefined;
|
|
7111
7666
|
} | undefined;
|
|
7112
7667
|
readonly maxSize?: number | undefined;
|
|
7113
|
-
readonly
|
|
7114
|
-
readonly
|
|
7668
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7669
|
+
readonly _lockReason?: string | undefined;
|
|
7670
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
7671
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
7672
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7673
|
+
readonly _packageId?: string | undefined;
|
|
7674
|
+
readonly _packageVersion?: string | undefined;
|
|
7675
|
+
readonly lookupFilters?: {
|
|
7676
|
+
field: string;
|
|
7677
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7678
|
+
value: any;
|
|
7679
|
+
}[] | undefined;
|
|
7680
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7681
|
+
readonly expression?: {
|
|
7682
|
+
dialect: "cel" | "cron" | "template";
|
|
7683
|
+
source?: string | undefined;
|
|
7684
|
+
ast?: unknown;
|
|
7685
|
+
meta?: {
|
|
7686
|
+
rationale?: string | undefined;
|
|
7687
|
+
generatedBy?: string | undefined;
|
|
7688
|
+
} | undefined;
|
|
7689
|
+
} | undefined;
|
|
7690
|
+
readonly autonumberFormat?: string | undefined;
|
|
7691
|
+
readonly summaryOperations?: {
|
|
7692
|
+
object: string;
|
|
7693
|
+
field: string;
|
|
7694
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7695
|
+
relationshipField?: string | undefined;
|
|
7696
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7697
|
+
} | undefined;
|
|
7115
7698
|
readonly visibleWhen?: {
|
|
7116
7699
|
dialect: "cel" | "cron" | "template";
|
|
7117
7700
|
source?: string | undefined;
|
|
@@ -7121,16 +7704,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7121
7704
|
generatedBy?: string | undefined;
|
|
7122
7705
|
} | undefined;
|
|
7123
7706
|
} | undefined;
|
|
7707
|
+
readonly scale?: number | undefined;
|
|
7124
7708
|
readonly searchable?: boolean | undefined;
|
|
7125
7709
|
readonly unique?: boolean | "global" | undefined;
|
|
7710
|
+
readonly defaultValue?: unknown;
|
|
7126
7711
|
readonly maxLength?: number | undefined;
|
|
7127
7712
|
readonly minLength?: number | undefined;
|
|
7128
|
-
readonly scale?: number | undefined;
|
|
7129
7713
|
readonly min?: number | undefined;
|
|
7130
7714
|
readonly max?: number | undefined;
|
|
7131
7715
|
readonly accept?: string[] | undefined;
|
|
7132
7716
|
readonly reference?: string | undefined;
|
|
7133
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7134
7717
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7135
7718
|
readonly inlineTitle?: string | undefined;
|
|
7136
7719
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7147,32 +7730,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7147
7730
|
type?: string | undefined;
|
|
7148
7731
|
})[] | undefined;
|
|
7149
7732
|
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
7733
|
readonly dependsOn?: (string | {
|
|
7156
7734
|
field: string;
|
|
7157
7735
|
param?: string | undefined;
|
|
7158
7736
|
})[] | undefined;
|
|
7159
7737
|
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
7738
|
readonly language?: string | undefined;
|
|
7177
7739
|
readonly step?: number | undefined;
|
|
7178
7740
|
readonly currencyConfig?: {
|
|
@@ -7208,7 +7770,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7208
7770
|
readonly system?: boolean | undefined;
|
|
7209
7771
|
readonly sortable?: boolean | undefined;
|
|
7210
7772
|
readonly inlineHelpText?: string | undefined;
|
|
7211
|
-
readonly
|
|
7773
|
+
readonly externalId?: boolean | undefined;
|
|
7212
7774
|
readonly type: "text";
|
|
7213
7775
|
};
|
|
7214
7776
|
readonly delegator_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -7259,8 +7821,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7259
7821
|
notNull?: boolean | undefined;
|
|
7260
7822
|
} | undefined;
|
|
7261
7823
|
readonly maxSize?: number | undefined;
|
|
7262
|
-
readonly
|
|
7263
|
-
readonly
|
|
7824
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7825
|
+
readonly _lockReason?: string | undefined;
|
|
7826
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
7827
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
7828
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7829
|
+
readonly _packageId?: string | undefined;
|
|
7830
|
+
readonly _packageVersion?: string | undefined;
|
|
7831
|
+
readonly lookupFilters?: {
|
|
7832
|
+
field: string;
|
|
7833
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7834
|
+
value: any;
|
|
7835
|
+
}[] | undefined;
|
|
7836
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7837
|
+
readonly expression?: {
|
|
7838
|
+
dialect: "cel" | "cron" | "template";
|
|
7839
|
+
source?: string | undefined;
|
|
7840
|
+
ast?: unknown;
|
|
7841
|
+
meta?: {
|
|
7842
|
+
rationale?: string | undefined;
|
|
7843
|
+
generatedBy?: string | undefined;
|
|
7844
|
+
} | undefined;
|
|
7845
|
+
} | undefined;
|
|
7846
|
+
readonly autonumberFormat?: string | undefined;
|
|
7847
|
+
readonly summaryOperations?: {
|
|
7848
|
+
object: string;
|
|
7849
|
+
field: string;
|
|
7850
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7851
|
+
relationshipField?: string | undefined;
|
|
7852
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7853
|
+
} | undefined;
|
|
7264
7854
|
readonly visibleWhen?: {
|
|
7265
7855
|
dialect: "cel" | "cron" | "template";
|
|
7266
7856
|
source?: string | undefined;
|
|
@@ -7270,16 +7860,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7270
7860
|
generatedBy?: string | undefined;
|
|
7271
7861
|
} | undefined;
|
|
7272
7862
|
} | undefined;
|
|
7863
|
+
readonly scale?: number | undefined;
|
|
7273
7864
|
readonly searchable?: boolean | undefined;
|
|
7274
7865
|
readonly unique?: boolean | "global" | undefined;
|
|
7866
|
+
readonly defaultValue?: unknown;
|
|
7275
7867
|
readonly maxLength?: number | undefined;
|
|
7276
7868
|
readonly minLength?: number | undefined;
|
|
7277
|
-
readonly scale?: number | undefined;
|
|
7278
7869
|
readonly min?: number | undefined;
|
|
7279
7870
|
readonly max?: number | undefined;
|
|
7280
7871
|
readonly accept?: string[] | undefined;
|
|
7281
7872
|
readonly reference?: string | undefined;
|
|
7282
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7283
7873
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7284
7874
|
readonly inlineTitle?: string | undefined;
|
|
7285
7875
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7296,32 +7886,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7296
7886
|
type?: string | undefined;
|
|
7297
7887
|
})[] | undefined;
|
|
7298
7888
|
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
7889
|
readonly dependsOn?: (string | {
|
|
7305
7890
|
field: string;
|
|
7306
7891
|
param?: string | undefined;
|
|
7307
7892
|
})[] | undefined;
|
|
7308
7893
|
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
7894
|
readonly language?: string | undefined;
|
|
7326
7895
|
readonly step?: number | undefined;
|
|
7327
7896
|
readonly currencyConfig?: {
|
|
@@ -7357,7 +7926,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7357
7926
|
readonly system?: boolean | undefined;
|
|
7358
7927
|
readonly sortable?: boolean | undefined;
|
|
7359
7928
|
readonly inlineHelpText?: string | undefined;
|
|
7360
|
-
readonly
|
|
7929
|
+
readonly externalId?: boolean | undefined;
|
|
7361
7930
|
readonly type: "datetime";
|
|
7362
7931
|
};
|
|
7363
7932
|
readonly valid_until: {
|
|
@@ -7390,8 +7959,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7390
7959
|
notNull?: boolean | undefined;
|
|
7391
7960
|
} | undefined;
|
|
7392
7961
|
readonly maxSize?: number | undefined;
|
|
7393
|
-
readonly
|
|
7394
|
-
readonly
|
|
7962
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
7963
|
+
readonly _lockReason?: string | undefined;
|
|
7964
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
7965
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
7966
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
7967
|
+
readonly _packageId?: string | undefined;
|
|
7968
|
+
readonly _packageVersion?: string | undefined;
|
|
7969
|
+
readonly lookupFilters?: {
|
|
7970
|
+
field: string;
|
|
7971
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
7972
|
+
value: any;
|
|
7973
|
+
}[] | undefined;
|
|
7974
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7975
|
+
readonly expression?: {
|
|
7976
|
+
dialect: "cel" | "cron" | "template";
|
|
7977
|
+
source?: string | undefined;
|
|
7978
|
+
ast?: unknown;
|
|
7979
|
+
meta?: {
|
|
7980
|
+
rationale?: string | undefined;
|
|
7981
|
+
generatedBy?: string | undefined;
|
|
7982
|
+
} | undefined;
|
|
7983
|
+
} | undefined;
|
|
7984
|
+
readonly autonumberFormat?: string | undefined;
|
|
7985
|
+
readonly summaryOperations?: {
|
|
7986
|
+
object: string;
|
|
7987
|
+
field: string;
|
|
7988
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
7989
|
+
relationshipField?: string | undefined;
|
|
7990
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
7991
|
+
} | undefined;
|
|
7395
7992
|
readonly visibleWhen?: {
|
|
7396
7993
|
dialect: "cel" | "cron" | "template";
|
|
7397
7994
|
source?: string | undefined;
|
|
@@ -7401,16 +7998,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7401
7998
|
generatedBy?: string | undefined;
|
|
7402
7999
|
} | undefined;
|
|
7403
8000
|
} | undefined;
|
|
8001
|
+
readonly scale?: number | undefined;
|
|
7404
8002
|
readonly searchable?: boolean | undefined;
|
|
7405
8003
|
readonly unique?: boolean | "global" | undefined;
|
|
8004
|
+
readonly defaultValue?: unknown;
|
|
7406
8005
|
readonly maxLength?: number | undefined;
|
|
7407
8006
|
readonly minLength?: number | undefined;
|
|
7408
|
-
readonly scale?: number | undefined;
|
|
7409
8007
|
readonly min?: number | undefined;
|
|
7410
8008
|
readonly max?: number | undefined;
|
|
7411
8009
|
readonly accept?: string[] | undefined;
|
|
7412
8010
|
readonly reference?: string | undefined;
|
|
7413
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7414
8011
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7415
8012
|
readonly inlineTitle?: string | undefined;
|
|
7416
8013
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7427,32 +8024,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7427
8024
|
type?: string | undefined;
|
|
7428
8025
|
})[] | undefined;
|
|
7429
8026
|
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
8027
|
readonly dependsOn?: (string | {
|
|
7436
8028
|
field: string;
|
|
7437
8029
|
param?: string | undefined;
|
|
7438
8030
|
})[] | undefined;
|
|
7439
8031
|
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
8032
|
readonly language?: string | undefined;
|
|
7457
8033
|
readonly step?: number | undefined;
|
|
7458
8034
|
readonly currencyConfig?: {
|
|
@@ -7488,7 +8064,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7488
8064
|
readonly system?: boolean | undefined;
|
|
7489
8065
|
readonly sortable?: boolean | undefined;
|
|
7490
8066
|
readonly inlineHelpText?: string | undefined;
|
|
7491
|
-
readonly
|
|
8067
|
+
readonly externalId?: boolean | undefined;
|
|
7492
8068
|
readonly type: "datetime";
|
|
7493
8069
|
};
|
|
7494
8070
|
readonly reason: {
|
|
@@ -7521,8 +8097,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7521
8097
|
notNull?: boolean | undefined;
|
|
7522
8098
|
} | undefined;
|
|
7523
8099
|
readonly maxSize?: number | undefined;
|
|
7524
|
-
readonly
|
|
7525
|
-
readonly
|
|
8100
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
8101
|
+
readonly _lockReason?: string | undefined;
|
|
8102
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
8103
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
8104
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
8105
|
+
readonly _packageId?: string | undefined;
|
|
8106
|
+
readonly _packageVersion?: string | undefined;
|
|
8107
|
+
readonly lookupFilters?: {
|
|
8108
|
+
field: string;
|
|
8109
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
8110
|
+
value: any;
|
|
8111
|
+
}[] | undefined;
|
|
8112
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8113
|
+
readonly expression?: {
|
|
8114
|
+
dialect: "cel" | "cron" | "template";
|
|
8115
|
+
source?: string | undefined;
|
|
8116
|
+
ast?: unknown;
|
|
8117
|
+
meta?: {
|
|
8118
|
+
rationale?: string | undefined;
|
|
8119
|
+
generatedBy?: string | undefined;
|
|
8120
|
+
} | undefined;
|
|
8121
|
+
} | undefined;
|
|
8122
|
+
readonly autonumberFormat?: string | undefined;
|
|
8123
|
+
readonly summaryOperations?: {
|
|
8124
|
+
object: string;
|
|
8125
|
+
field: string;
|
|
8126
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
8127
|
+
relationshipField?: string | undefined;
|
|
8128
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
8129
|
+
} | undefined;
|
|
7526
8130
|
readonly visibleWhen?: {
|
|
7527
8131
|
dialect: "cel" | "cron" | "template";
|
|
7528
8132
|
source?: string | undefined;
|
|
@@ -7532,16 +8136,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7532
8136
|
generatedBy?: string | undefined;
|
|
7533
8137
|
} | undefined;
|
|
7534
8138
|
} | undefined;
|
|
8139
|
+
readonly scale?: number | undefined;
|
|
7535
8140
|
readonly searchable?: boolean | undefined;
|
|
7536
8141
|
readonly unique?: boolean | "global" | undefined;
|
|
8142
|
+
readonly defaultValue?: unknown;
|
|
7537
8143
|
readonly maxLength?: number | undefined;
|
|
7538
8144
|
readonly minLength?: number | undefined;
|
|
7539
|
-
readonly scale?: number | undefined;
|
|
7540
8145
|
readonly min?: number | undefined;
|
|
7541
8146
|
readonly max?: number | undefined;
|
|
7542
8147
|
readonly accept?: string[] | undefined;
|
|
7543
8148
|
readonly reference?: string | undefined;
|
|
7544
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7545
8149
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7546
8150
|
readonly inlineTitle?: string | undefined;
|
|
7547
8151
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7558,32 +8162,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7558
8162
|
type?: string | undefined;
|
|
7559
8163
|
})[] | undefined;
|
|
7560
8164
|
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
8165
|
readonly dependsOn?: (string | {
|
|
7567
8166
|
field: string;
|
|
7568
8167
|
param?: string | undefined;
|
|
7569
8168
|
})[] | undefined;
|
|
7570
8169
|
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
8170
|
readonly language?: string | undefined;
|
|
7588
8171
|
readonly step?: number | undefined;
|
|
7589
8172
|
readonly currencyConfig?: {
|
|
@@ -7619,7 +8202,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7619
8202
|
readonly system?: boolean | undefined;
|
|
7620
8203
|
readonly sortable?: boolean | undefined;
|
|
7621
8204
|
readonly inlineHelpText?: string | undefined;
|
|
7622
|
-
readonly
|
|
8205
|
+
readonly externalId?: boolean | undefined;
|
|
7623
8206
|
readonly type: "text";
|
|
7624
8207
|
};
|
|
7625
8208
|
readonly organization_id: _objectstack_spec_data.FieldInput & {
|
|
@@ -7661,8 +8244,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7661
8244
|
notNull?: boolean | undefined;
|
|
7662
8245
|
} | undefined;
|
|
7663
8246
|
readonly maxSize?: number | undefined;
|
|
7664
|
-
readonly
|
|
7665
|
-
readonly
|
|
8247
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
8248
|
+
readonly _lockReason?: string | undefined;
|
|
8249
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
8250
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
8251
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
8252
|
+
readonly _packageId?: string | undefined;
|
|
8253
|
+
readonly _packageVersion?: string | undefined;
|
|
8254
|
+
readonly lookupFilters?: {
|
|
8255
|
+
field: string;
|
|
8256
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
8257
|
+
value: any;
|
|
8258
|
+
}[] | undefined;
|
|
8259
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8260
|
+
readonly expression?: {
|
|
8261
|
+
dialect: "cel" | "cron" | "template";
|
|
8262
|
+
source?: string | undefined;
|
|
8263
|
+
ast?: unknown;
|
|
8264
|
+
meta?: {
|
|
8265
|
+
rationale?: string | undefined;
|
|
8266
|
+
generatedBy?: string | undefined;
|
|
8267
|
+
} | undefined;
|
|
8268
|
+
} | undefined;
|
|
8269
|
+
readonly autonumberFormat?: string | undefined;
|
|
8270
|
+
readonly summaryOperations?: {
|
|
8271
|
+
object: string;
|
|
8272
|
+
field: string;
|
|
8273
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
8274
|
+
relationshipField?: string | undefined;
|
|
8275
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
8276
|
+
} | undefined;
|
|
7666
8277
|
readonly visibleWhen?: {
|
|
7667
8278
|
dialect: "cel" | "cron" | "template";
|
|
7668
8279
|
source?: string | undefined;
|
|
@@ -7672,16 +8283,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7672
8283
|
generatedBy?: string | undefined;
|
|
7673
8284
|
} | undefined;
|
|
7674
8285
|
} | undefined;
|
|
8286
|
+
readonly scale?: number | undefined;
|
|
7675
8287
|
readonly searchable?: boolean | undefined;
|
|
7676
8288
|
readonly unique?: boolean | "global" | undefined;
|
|
8289
|
+
readonly defaultValue?: unknown;
|
|
7677
8290
|
readonly maxLength?: number | undefined;
|
|
7678
8291
|
readonly minLength?: number | undefined;
|
|
7679
|
-
readonly scale?: number | undefined;
|
|
7680
8292
|
readonly min?: number | undefined;
|
|
7681
8293
|
readonly max?: number | undefined;
|
|
7682
8294
|
readonly accept?: string[] | undefined;
|
|
7683
8295
|
readonly reference?: string | undefined;
|
|
7684
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7685
8296
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7686
8297
|
readonly inlineTitle?: string | undefined;
|
|
7687
8298
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7698,32 +8309,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7698
8309
|
type?: string | undefined;
|
|
7699
8310
|
})[] | undefined;
|
|
7700
8311
|
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
8312
|
readonly dependsOn?: (string | {
|
|
7707
8313
|
field: string;
|
|
7708
8314
|
param?: string | undefined;
|
|
7709
8315
|
})[] | undefined;
|
|
7710
8316
|
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
8317
|
readonly language?: string | undefined;
|
|
7728
8318
|
readonly step?: number | undefined;
|
|
7729
8319
|
readonly currencyConfig?: {
|
|
@@ -7759,7 +8349,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7759
8349
|
readonly system?: boolean | undefined;
|
|
7760
8350
|
readonly sortable?: boolean | undefined;
|
|
7761
8351
|
readonly inlineHelpText?: string | undefined;
|
|
7762
|
-
readonly
|
|
8352
|
+
readonly externalId?: boolean | undefined;
|
|
7763
8353
|
readonly type: "datetime";
|
|
7764
8354
|
};
|
|
7765
8355
|
readonly updated_at: {
|
|
@@ -7792,8 +8382,36 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7792
8382
|
notNull?: boolean | undefined;
|
|
7793
8383
|
} | undefined;
|
|
7794
8384
|
readonly maxSize?: number | undefined;
|
|
7795
|
-
readonly
|
|
7796
|
-
readonly
|
|
8385
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
8386
|
+
readonly _lockReason?: string | undefined;
|
|
8387
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
8388
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
8389
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
8390
|
+
readonly _packageId?: string | undefined;
|
|
8391
|
+
readonly _packageVersion?: string | undefined;
|
|
8392
|
+
readonly lookupFilters?: {
|
|
8393
|
+
field: string;
|
|
8394
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
8395
|
+
value: any;
|
|
8396
|
+
}[] | undefined;
|
|
8397
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8398
|
+
readonly expression?: {
|
|
8399
|
+
dialect: "cel" | "cron" | "template";
|
|
8400
|
+
source?: string | undefined;
|
|
8401
|
+
ast?: unknown;
|
|
8402
|
+
meta?: {
|
|
8403
|
+
rationale?: string | undefined;
|
|
8404
|
+
generatedBy?: string | undefined;
|
|
8405
|
+
} | undefined;
|
|
8406
|
+
} | undefined;
|
|
8407
|
+
readonly autonumberFormat?: string | undefined;
|
|
8408
|
+
readonly summaryOperations?: {
|
|
8409
|
+
object: string;
|
|
8410
|
+
field: string;
|
|
8411
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
8412
|
+
relationshipField?: string | undefined;
|
|
8413
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
8414
|
+
} | undefined;
|
|
7797
8415
|
readonly visibleWhen?: {
|
|
7798
8416
|
dialect: "cel" | "cron" | "template";
|
|
7799
8417
|
source?: string | undefined;
|
|
@@ -7803,16 +8421,16 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7803
8421
|
generatedBy?: string | undefined;
|
|
7804
8422
|
} | undefined;
|
|
7805
8423
|
} | undefined;
|
|
8424
|
+
readonly scale?: number | undefined;
|
|
7806
8425
|
readonly searchable?: boolean | undefined;
|
|
7807
8426
|
readonly unique?: boolean | "global" | undefined;
|
|
8427
|
+
readonly defaultValue?: unknown;
|
|
7808
8428
|
readonly maxLength?: number | undefined;
|
|
7809
8429
|
readonly minLength?: number | undefined;
|
|
7810
|
-
readonly scale?: number | undefined;
|
|
7811
8430
|
readonly min?: number | undefined;
|
|
7812
8431
|
readonly max?: number | undefined;
|
|
7813
8432
|
readonly accept?: string[] | undefined;
|
|
7814
8433
|
readonly reference?: string | undefined;
|
|
7815
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7816
8434
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7817
8435
|
readonly inlineTitle?: string | undefined;
|
|
7818
8436
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -7829,32 +8447,11 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7829
8447
|
type?: string | undefined;
|
|
7830
8448
|
})[] | undefined;
|
|
7831
8449
|
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
8450
|
readonly dependsOn?: (string | {
|
|
7838
8451
|
field: string;
|
|
7839
8452
|
param?: string | undefined;
|
|
7840
8453
|
})[] | undefined;
|
|
7841
8454
|
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
8455
|
readonly language?: string | undefined;
|
|
7859
8456
|
readonly step?: number | undefined;
|
|
7860
8457
|
readonly currencyConfig?: {
|
|
@@ -7890,7 +8487,7 @@ declare const SysApprovalDelegation: Omit<{
|
|
|
7890
8487
|
readonly system?: boolean | undefined;
|
|
7891
8488
|
readonly sortable?: boolean | undefined;
|
|
7892
8489
|
readonly inlineHelpText?: string | undefined;
|
|
7893
|
-
readonly
|
|
8490
|
+
readonly externalId?: boolean | undefined;
|
|
7894
8491
|
readonly type: "datetime";
|
|
7895
8492
|
};
|
|
7896
8493
|
};
|
|
@@ -7974,6 +8571,21 @@ interface ApprovalResumeSurface {
|
|
|
7974
8571
|
getRun?(runId: string): Promise<{
|
|
7975
8572
|
status?: string;
|
|
7976
8573
|
} | null>;
|
|
8574
|
+
/**
|
|
8575
|
+
* Whether a suspension still exists for `runId` — the pre-flight that keeps
|
|
8576
|
+
* a decision from being recorded against a run that can never advance
|
|
8577
|
+
* (#4420). Read-only; it never consumes the suspension.
|
|
8578
|
+
*
|
|
8579
|
+
* Distinct from {@link getRun}, which reports on the execution LOG: a run
|
|
8580
|
+
* suspended by a PREVIOUS process resolves to `null` there even when its
|
|
8581
|
+
* state is durable, so it cannot tell "waiting for a human" from "dead".
|
|
8582
|
+
* This asks the suspension store itself.
|
|
8583
|
+
*
|
|
8584
|
+
* Rejects when the durable store cannot be read — existence is then
|
|
8585
|
+
* unknown, and callers must not read an outage as a dead run. Optional: an
|
|
8586
|
+
* engine that does not implement it simply gets no pre-flight.
|
|
8587
|
+
*/
|
|
8588
|
+
hasSuspendedRun?(runId: string): Promise<boolean>;
|
|
7977
8589
|
}
|
|
7978
8590
|
/**
|
|
7979
8591
|
* Optional messaging surface (ADR-0012 `messaging` service). When attached,
|
|
@@ -7994,6 +8606,30 @@ interface ApprovalMessagingSurface {
|
|
|
7994
8606
|
actorId?: string;
|
|
7995
8607
|
}): Promise<unknown>;
|
|
7996
8608
|
}
|
|
8609
|
+
/**
|
|
8610
|
+
* One terminal request whose owning flow run is unrecoverable (#4469) — the
|
|
8611
|
+
* decision was recorded and the flow never moved. Reporting shape only: the
|
|
8612
|
+
* sweep never rewrites these rows (see
|
|
8613
|
+
* {@link ApprovalService.inspectStrandedRequests}).
|
|
8614
|
+
*/
|
|
8615
|
+
interface StrandedApprovalRequest {
|
|
8616
|
+
requestId: string;
|
|
8617
|
+
/** Terminal status the request reached — the decision that WAS recorded. */
|
|
8618
|
+
status: string;
|
|
8619
|
+
/** The `flow_run_id` that resolves to neither a suspension nor a run history row. */
|
|
8620
|
+
runId: string;
|
|
8621
|
+
flowName?: string;
|
|
8622
|
+
/** Approval node the run should have continued from. */
|
|
8623
|
+
nodeId?: string;
|
|
8624
|
+
objectName: string;
|
|
8625
|
+
recordId: string;
|
|
8626
|
+
organizationId?: string | null;
|
|
8627
|
+
completedAt?: string;
|
|
8628
|
+
/** `config.approvalStatusField`, when the node mirrors status onto the record. */
|
|
8629
|
+
mirrorField?: string;
|
|
8630
|
+
/** What that mirror field currently reads — usually the stale value an operator sees. */
|
|
8631
|
+
mirroredStatus?: string;
|
|
8632
|
+
}
|
|
7997
8633
|
/** Outcome of redeeming (or peeking) an actionable-link token. */
|
|
7998
8634
|
type ActionTokenOutcome = {
|
|
7999
8635
|
ok: true;
|
|
@@ -8391,12 +9027,63 @@ declare class ApprovalService implements IApprovalService {
|
|
|
8391
9027
|
* Callers still guard on `typeof this.automation?.resume === 'function'`
|
|
8392
9028
|
* (approvals runs fine with no automation attached) and keep their own
|
|
8393
9029
|
* try/catch, because what a failed resume means differs per path.
|
|
9030
|
+
*
|
|
9031
|
+
* Throws when the engine REPORTS failure, not only when it throws one. The
|
|
9032
|
+
* engine answers a lost run with `{ success: false, code: 'RUN_NOT_FOUND' }`
|
|
9033
|
+
* — a plain return value that every caller here used to discard, which is
|
|
9034
|
+
* how an approval could be recorded, reported as resumed, and leave its flow
|
|
9035
|
+
* stranded forever (#4420). The thrown error carries {@link resumeCodeOf}'s
|
|
9036
|
+
* `resumeCode` so callers can tell a benign duplicate from a dead run.
|
|
8394
9037
|
*/
|
|
8395
9038
|
private serviceResume;
|
|
9039
|
+
/** The engine failure code behind a {@link serviceResume} rejection, if any. */
|
|
9040
|
+
private static resumeCodeOf;
|
|
9041
|
+
/**
|
|
9042
|
+
* Refuse an operation whose whole point is to advance a flow run when that
|
|
9043
|
+
* run no longer exists — BEFORE anything is written down (#4420).
|
|
9044
|
+
*
|
|
9045
|
+
* The half-state this prevents is the one the issue reported: a request
|
|
9046
|
+
* flipped to `approved`, a success toast, and a flow that never moves. Once
|
|
9047
|
+
* the decision row is written there is nothing left to fail cleanly.
|
|
9048
|
+
*
|
|
9049
|
+
* Deliberately permissive at the edges:
|
|
9050
|
+
* - no automation attached, or an engine without `hasSuspendedRun` → no
|
|
9051
|
+
* pre-flight at all (standalone approvals compositions are unaffected);
|
|
9052
|
+
* - the store cannot be READ → fail OPEN. A transient outage must not block
|
|
9053
|
+
* every decision in the tenant; the post-resume check still catches a real
|
|
9054
|
+
* failure and reports it loudly.
|
|
9055
|
+
*/
|
|
9056
|
+
private assertRunResumable;
|
|
9057
|
+
/**
|
|
9058
|
+
* Resume the run behind an outcome that has ALREADY been written down, and
|
|
9059
|
+
* fail loudly when it cannot be (#4420).
|
|
9060
|
+
*
|
|
9061
|
+
* For the operations whose product is the resume — a finalised decision, a
|
|
9062
|
+
* send-back, a resubmit. Their rows are durable by the time this runs, so a
|
|
9063
|
+
* failure here cannot be undone; the one thing left worth doing is refusing
|
|
9064
|
+
* to call it success. {@link assertRunResumable} is what keeps this rare:
|
|
9065
|
+
* everything it catches never reaches a write.
|
|
9066
|
+
*
|
|
9067
|
+
* `RESUME_IN_PROGRESS` is the exception — a concurrent resume is already
|
|
9068
|
+
* advancing the run, so the outcome stands and only `resumed` is false.
|
|
9069
|
+
*
|
|
9070
|
+
* @param what - how the recorded outcome reads in the error, e.g.
|
|
9071
|
+
* `"the approve decision"`.
|
|
9072
|
+
*/
|
|
9073
|
+
private resumeRecordedOutcome;
|
|
8396
9074
|
/**
|
|
8397
9075
|
* Public contract entrypoint (ADR-0019). Records a decision on a node-driven
|
|
8398
9076
|
* request via {@link ApprovalService.decideNode} and, when it finalizes,
|
|
8399
9077
|
* resumes the owning flow run down the matching `approve` / `reject` edge.
|
|
9078
|
+
*
|
|
9079
|
+
* A finalising decision whose run cannot be resumed FAILS (#4420). The
|
|
9080
|
+
* decision is already durable by then, so the failure cannot be rolled back
|
|
9081
|
+
* — but it must not be reported as success either: this used to answer HTTP
|
|
9082
|
+
* 200 with `resumed: true` while the flow stayed parked forever, which left
|
|
9083
|
+
* the approver with no signal and the record mirroring a stage it never
|
|
9084
|
+
* reached. `decideNode`'s pre-flight means the common case (the run died
|
|
9085
|
+
* before the decision) never gets this far; what survives here is a genuine
|
|
9086
|
+
* race, and it names the stranded run.
|
|
8400
9087
|
*/
|
|
8401
9088
|
decide(requestId: string, input: ApprovalDecisionInput, context: SharingExecutionContext): Promise<ApprovalDecisionResult>;
|
|
8402
9089
|
/**
|
|
@@ -8551,6 +9238,54 @@ declare class ApprovalService implements IApprovalService {
|
|
|
8551
9238
|
* the real cause and {@link DEAD_RUN_ACTOR_ID} the real actor, so a dead-run
|
|
8552
9239
|
* release is never mistaken for a submitter's withdrawal.
|
|
8553
9240
|
*/
|
|
9241
|
+
/**
|
|
9242
|
+
* Read-only inspection for the OTHER dead-run shape: a request that is
|
|
9243
|
+
* already TERMINAL while its `flow_run_id` points at nothing (#4469).
|
|
9244
|
+
*
|
|
9245
|
+
* #4460 stopped new ones being produced; nothing found the ones already
|
|
9246
|
+
* stuck. The failure mode (#4420) is a request row flipped to `approved` /
|
|
9247
|
+
* `rejected` / `returned` whose owning run no longer exists — the decision
|
|
9248
|
+
* landed, the flow never moved. Any deployment on 17.0.0-rc.1 that hit the
|
|
9249
|
+
* wiring hole and crossed a restart mid-approval can be carrying these rows.
|
|
9250
|
+
*
|
|
9251
|
+
* {@link releaseDeadRunRequests} cannot see them, for a reason worth naming:
|
|
9252
|
+
* it scans `status: 'pending'`, and the very step that zombified the request
|
|
9253
|
+
* is the one that took it OUT of `pending`. The act of breaking it removed it
|
|
9254
|
+
* from the only sweeper's field of view — which is a large part of why this
|
|
9255
|
+
* class of failure stayed silent.
|
|
9256
|
+
*
|
|
9257
|
+
* It also could not have answered the question even if it looked: its
|
|
9258
|
+
* liveness oracle is `getRun`, which reads the execution LOG, and after a
|
|
9259
|
+
* restart that returns `null` for a perfectly ALIVE suspended run. It treats
|
|
9260
|
+
* `null` as alive (conservative, correct) — but that means it has no way to
|
|
9261
|
+
* say "this run is really gone".
|
|
9262
|
+
*
|
|
9263
|
+
* So this uses BOTH oracles, and a row must fail both to be reported:
|
|
9264
|
+
*
|
|
9265
|
+
* - `hasSuspendedRun(runId) === false` — the suspension store itself says no
|
|
9266
|
+
* live pause exists. It THROWS when the store cannot be read, and that
|
|
9267
|
+
* case is SKIPPED, never counted as dead: an unreadable store means
|
|
9268
|
+
* "unknown", and a storage outage must not be published as a lost run.
|
|
9269
|
+
* - `getRun(runId) == null` — no terminal history row either (the `run_`
|
|
9270
|
+
* prefixed rows in `sys_automation_run`). A run that merely finished is
|
|
9271
|
+
* not stranded; a request whose run neither waits nor ever completed is.
|
|
9272
|
+
*
|
|
9273
|
+
* **Reports; never rewrites.** No status is changed and no run is cancelled.
|
|
9274
|
+
* The decision genuinely happened — a human approved or rejected — and
|
|
9275
|
+
* silently rolling it back would make the audit trail disagree with the
|
|
9276
|
+
* facts. What an operator needs first is visibility: which requests are stuck
|
|
9277
|
+
* at which step, and what the mirrored status field on the business record
|
|
9278
|
+
* still says. Whether to re-run the downstream actions or re-open the
|
|
9279
|
+
* approval is a judgement call this cannot make.
|
|
9280
|
+
*/
|
|
9281
|
+
inspectStrandedRequests(options?: {
|
|
9282
|
+
limit?: number;
|
|
9283
|
+
}): Promise<{
|
|
9284
|
+
scanned: number;
|
|
9285
|
+
stranded: StrandedApprovalRequest[];
|
|
9286
|
+
/** Rows skipped because the suspension store could not be read — NOT healthy, just unknown. */
|
|
9287
|
+
undetermined: number;
|
|
9288
|
+
}>;
|
|
8554
9289
|
releaseDeadRunRequests(): Promise<{
|
|
8555
9290
|
scanned: number;
|
|
8556
9291
|
released: number;
|
|
@@ -8815,4 +9550,4 @@ interface MinimalLogger {
|
|
|
8815
9550
|
*/
|
|
8816
9551
|
declare function registerApprovalNode(automation: ApprovalAutomationSurface, service: ApprovalService, logger?: MinimalLogger): void;
|
|
8817
9552
|
|
|
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 };
|
|
9553
|
+
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 };
|