@objectstack/plugin-webhooks 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 +253 -0
- package/dist/{chunk-6EPMRZ7I.js → chunk-3QGZLM3T.js} +8 -3
- package/dist/chunk-3QGZLM3T.js.map +1 -0
- package/dist/{chunk-QUTQSOQC.cjs → chunk-JQUVS5KK.cjs} +8 -3
- package/dist/chunk-JQUVS5KK.cjs.map +1 -0
- package/dist/index.cjs +158 -58
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +27 -1
- package/dist/index.d.ts +27 -1
- package/dist/index.js +113 -13
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +575 -417
- package/dist/schema.d.ts +575 -417
- package/dist/schema.js +1 -1
- package/dist/{translations-Y3CXWOTM.js → translations-2VGD4XRF.js} +17 -9
- package/dist/translations-2VGD4XRF.js.map +1 -0
- package/dist/{translations-CBQRUIS5.cjs → translations-BWS57U2V.cjs} +17 -9
- package/dist/translations-BWS57U2V.cjs.map +1 -0
- package/package.json +5 -5
- package/dist/chunk-6EPMRZ7I.js.map +0 -1
- package/dist/chunk-QUTQSOQC.cjs.map +0 -1
- package/dist/translations-CBQRUIS5.cjs.map +0 -1
- package/dist/translations-Y3CXWOTM.js.map +0 -1
package/dist/schema.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ declare const SysWebhook: Omit<{
|
|
|
39
39
|
isSystem: boolean;
|
|
40
40
|
datasource: string;
|
|
41
41
|
fields: Record<string, {
|
|
42
|
-
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "user" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
42
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "user" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "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";
|
|
43
43
|
required: boolean;
|
|
44
44
|
searchable: boolean;
|
|
45
45
|
multiple: boolean;
|
|
@@ -49,6 +49,13 @@ declare const SysWebhook: Omit<{
|
|
|
49
49
|
readonly: boolean;
|
|
50
50
|
sortable: boolean;
|
|
51
51
|
externalId: boolean;
|
|
52
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
53
|
+
_lockReason?: string | undefined;
|
|
54
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
55
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
56
|
+
_packageId?: string | undefined;
|
|
57
|
+
_packageVersion?: string | undefined;
|
|
58
|
+
_lockDocsUrl?: string | undefined;
|
|
52
59
|
name?: string | undefined;
|
|
53
60
|
label?: string | undefined;
|
|
54
61
|
description?: string | undefined;
|
|
@@ -220,7 +227,7 @@ declare const SysWebhook: Omit<{
|
|
|
220
227
|
pluralLabel?: string | undefined;
|
|
221
228
|
description?: string | undefined;
|
|
222
229
|
icon?: string | undefined;
|
|
223
|
-
managedBy?: "
|
|
230
|
+
managedBy?: "platform" | "config" | "system-data" | "engine-owned" | "append-only" | "better-auth" | undefined;
|
|
224
231
|
ownership?: "none" | "org" | "user" | undefined;
|
|
225
232
|
userActions?: {
|
|
226
233
|
create?: boolean | undefined;
|
|
@@ -315,7 +322,7 @@ declare const SysWebhook: Omit<{
|
|
|
315
322
|
} | undefined;
|
|
316
323
|
indexes?: {
|
|
317
324
|
fields: string[];
|
|
318
|
-
type: "hash" | "
|
|
325
|
+
type: "hash" | "btree" | "gin" | "gist" | "fulltext";
|
|
319
326
|
unique: boolean | "global";
|
|
320
327
|
name?: string | undefined;
|
|
321
328
|
partial?: string | undefined;
|
|
@@ -440,6 +447,33 @@ declare const SysWebhook: Omit<{
|
|
|
440
447
|
defaultExpandedDepth?: number | undefined;
|
|
441
448
|
} | undefined;
|
|
442
449
|
inlineEdit?: boolean | undefined;
|
|
450
|
+
data?: {
|
|
451
|
+
provider: "object";
|
|
452
|
+
object: string;
|
|
453
|
+
} | {
|
|
454
|
+
provider: "api";
|
|
455
|
+
read?: {
|
|
456
|
+
url: string;
|
|
457
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
458
|
+
headers?: Record<string, string> | undefined;
|
|
459
|
+
params?: Record<string, unknown> | undefined;
|
|
460
|
+
body?: unknown;
|
|
461
|
+
} | undefined;
|
|
462
|
+
write?: {
|
|
463
|
+
url: string;
|
|
464
|
+
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
465
|
+
headers?: Record<string, string> | undefined;
|
|
466
|
+
params?: Record<string, unknown> | undefined;
|
|
467
|
+
body?: unknown;
|
|
468
|
+
} | undefined;
|
|
469
|
+
} | {
|
|
470
|
+
provider: "value";
|
|
471
|
+
items: unknown[];
|
|
472
|
+
} | {
|
|
473
|
+
provider: "schema";
|
|
474
|
+
schemaId: string;
|
|
475
|
+
schema?: Record<string, unknown> | undefined;
|
|
476
|
+
} | undefined;
|
|
443
477
|
navigation?: {
|
|
444
478
|
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
445
479
|
preventNavigation: boolean;
|
|
@@ -472,44 +506,27 @@ declare const SysWebhook: Omit<{
|
|
|
472
506
|
}[] | undefined;
|
|
473
507
|
order?: number | undefined;
|
|
474
508
|
}[] | undefined;
|
|
475
|
-
data?: {
|
|
476
|
-
provider: "object";
|
|
477
|
-
object: string;
|
|
478
|
-
} | {
|
|
479
|
-
provider: "api";
|
|
480
|
-
read?: {
|
|
481
|
-
url: string;
|
|
482
|
-
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
483
|
-
headers?: Record<string, string> | undefined;
|
|
484
|
-
params?: Record<string, unknown> | undefined;
|
|
485
|
-
body?: unknown;
|
|
486
|
-
} | undefined;
|
|
487
|
-
write?: {
|
|
488
|
-
url: string;
|
|
489
|
-
method: "POST" | "PATCH" | "PUT" | "DELETE" | "GET";
|
|
490
|
-
headers?: Record<string, string> | undefined;
|
|
491
|
-
params?: Record<string, unknown> | undefined;
|
|
492
|
-
body?: unknown;
|
|
493
|
-
} | undefined;
|
|
494
|
-
} | {
|
|
495
|
-
provider: "value";
|
|
496
|
-
items: unknown[];
|
|
497
|
-
} | {
|
|
498
|
-
provider: "schema";
|
|
499
|
-
schemaId: string;
|
|
500
|
-
schema?: Record<string, unknown> | undefined;
|
|
501
|
-
} | undefined;
|
|
502
|
-
pagination?: {
|
|
503
|
-
pageSize: number;
|
|
504
|
-
pageSizeOptions?: number[] | undefined;
|
|
505
|
-
} | undefined;
|
|
506
509
|
emptyState?: {
|
|
507
510
|
title?: string | undefined;
|
|
508
511
|
message?: string | undefined;
|
|
509
512
|
icon?: string | undefined;
|
|
510
513
|
} | undefined;
|
|
514
|
+
userActions?: {
|
|
515
|
+
sort: boolean;
|
|
516
|
+
search: boolean;
|
|
517
|
+
filter: boolean;
|
|
518
|
+
refresh: boolean;
|
|
519
|
+
rowHeight: boolean;
|
|
520
|
+
addRecordForm: boolean;
|
|
521
|
+
editInline: boolean;
|
|
522
|
+
buttons?: string[] | undefined;
|
|
523
|
+
} | undefined;
|
|
511
524
|
responsive?: undefined;
|
|
512
525
|
performance?: undefined;
|
|
526
|
+
appearance?: {
|
|
527
|
+
showDescription: boolean;
|
|
528
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
529
|
+
} | undefined;
|
|
513
530
|
resizable?: boolean | undefined;
|
|
514
531
|
kanban?: {
|
|
515
532
|
groupByField: string;
|
|
@@ -583,6 +600,10 @@ declare const SysWebhook: Omit<{
|
|
|
583
600
|
selection?: {
|
|
584
601
|
type: "none" | "multiple" | "single";
|
|
585
602
|
} | undefined;
|
|
603
|
+
pagination?: {
|
|
604
|
+
pageSize: number;
|
|
605
|
+
pageSizeOptions?: number[] | undefined;
|
|
606
|
+
} | undefined;
|
|
586
607
|
grouping?: {
|
|
587
608
|
fields: {
|
|
588
609
|
field: string;
|
|
@@ -598,7 +619,53 @@ declare const SysWebhook: Omit<{
|
|
|
598
619
|
fieldOrder?: string[] | undefined;
|
|
599
620
|
rowActions?: string[] | undefined;
|
|
600
621
|
bulkActions?: string[] | undefined;
|
|
601
|
-
bulkActionDefs?:
|
|
622
|
+
bulkActionDefs?: {
|
|
623
|
+
name: string;
|
|
624
|
+
operation: "delete" | "update" | "custom";
|
|
625
|
+
label?: string | undefined;
|
|
626
|
+
icon?: string | undefined;
|
|
627
|
+
variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
|
|
628
|
+
execution?: "aggregate" | "perRecord" | undefined;
|
|
629
|
+
patch?: Record<string, unknown> | undefined;
|
|
630
|
+
params?: {
|
|
631
|
+
[x: string]: unknown;
|
|
632
|
+
name: string;
|
|
633
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "user" | "code" | "datetime" | "signature" | "progress" | "url" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "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";
|
|
634
|
+
label?: string | undefined;
|
|
635
|
+
help?: string | undefined;
|
|
636
|
+
required?: boolean | undefined;
|
|
637
|
+
default?: unknown;
|
|
638
|
+
options?: {
|
|
639
|
+
label: string;
|
|
640
|
+
value: string | number | boolean;
|
|
641
|
+
}[] | undefined;
|
|
642
|
+
object?: string | undefined;
|
|
643
|
+
labelField?: string | undefined;
|
|
644
|
+
multiple?: boolean | undefined;
|
|
645
|
+
placeholder?: string | undefined;
|
|
646
|
+
}[] | undefined;
|
|
647
|
+
confirmText?: string | undefined;
|
|
648
|
+
confirmLabel?: string | undefined;
|
|
649
|
+
visible?: {
|
|
650
|
+
dialect: "cel" | "cron" | "template";
|
|
651
|
+
source?: string | undefined;
|
|
652
|
+
ast?: unknown;
|
|
653
|
+
meta?: {
|
|
654
|
+
rationale?: string | undefined;
|
|
655
|
+
generatedBy?: string | undefined;
|
|
656
|
+
} | undefined;
|
|
657
|
+
} | {
|
|
658
|
+
dialect: "cel" | "cron" | "template";
|
|
659
|
+
source?: string | undefined;
|
|
660
|
+
ast?: unknown;
|
|
661
|
+
meta?: {
|
|
662
|
+
rationale?: string | undefined;
|
|
663
|
+
generatedBy?: string | undefined;
|
|
664
|
+
} | undefined;
|
|
665
|
+
} | undefined;
|
|
666
|
+
maxRecords?: number | undefined;
|
|
667
|
+
batchSize?: number | undefined;
|
|
668
|
+
}[] | undefined;
|
|
602
669
|
virtualScroll?: boolean | undefined;
|
|
603
670
|
conditionalFormatting?: {
|
|
604
671
|
condition: {
|
|
@@ -621,20 +688,6 @@ declare const SysWebhook: Omit<{
|
|
|
621
688
|
style: Record<string, string>;
|
|
622
689
|
}[] | undefined;
|
|
623
690
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
624
|
-
userActions?: {
|
|
625
|
-
sort: boolean;
|
|
626
|
-
search: boolean;
|
|
627
|
-
filter: boolean;
|
|
628
|
-
refresh: boolean;
|
|
629
|
-
rowHeight: boolean;
|
|
630
|
-
addRecordForm: boolean;
|
|
631
|
-
editInline: boolean;
|
|
632
|
-
buttons?: string[] | undefined;
|
|
633
|
-
} | undefined;
|
|
634
|
-
appearance?: {
|
|
635
|
-
showDescription: boolean;
|
|
636
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
637
|
-
} | undefined;
|
|
638
691
|
addRecord?: {
|
|
639
692
|
enabled: boolean;
|
|
640
693
|
position: "top" | "bottom" | "both";
|
|
@@ -668,7 +721,7 @@ declare const SysWebhook: Omit<{
|
|
|
668
721
|
feeds: boolean;
|
|
669
722
|
activities: boolean;
|
|
670
723
|
clone: boolean;
|
|
671
|
-
apiMethods?: ("
|
|
724
|
+
apiMethods?: ("delete" | "update" | "create" | "get" | "list" | "bulk")[] | undefined;
|
|
672
725
|
} | undefined;
|
|
673
726
|
sharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
674
727
|
externalSharingModel?: "private" | "public_read" | "public_read_write" | "controlled_by_parent" | undefined;
|
|
@@ -685,6 +738,13 @@ declare const SysWebhook: Omit<{
|
|
|
685
738
|
label: string;
|
|
686
739
|
type: "url" | "form" | "script" | "flow" | "api" | "modal";
|
|
687
740
|
refreshAfter: boolean;
|
|
741
|
+
_lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
742
|
+
_lockReason?: string | undefined;
|
|
743
|
+
_lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
744
|
+
_provenance?: "package" | "env-forced" | "org" | undefined;
|
|
745
|
+
_packageId?: string | undefined;
|
|
746
|
+
_packageVersion?: string | undefined;
|
|
747
|
+
_lockDocsUrl?: string | undefined;
|
|
688
748
|
objectName?: string | undefined;
|
|
689
749
|
icon?: string | undefined;
|
|
690
750
|
locations?: ("list_toolbar" | "list_item" | "record_header" | "record_more" | "record_related" | "record_section" | "global_nav")[] | undefined;
|
|
@@ -697,7 +757,7 @@ declare const SysWebhook: Omit<{
|
|
|
697
757
|
} | {
|
|
698
758
|
language: "js";
|
|
699
759
|
source: string;
|
|
700
|
-
capabilities: ("
|
|
760
|
+
capabilities: ("crypto.uuid" | "api.read" | "api.write" | "api.transaction" | "log")[];
|
|
701
761
|
timeoutMs?: number | undefined;
|
|
702
762
|
memoryMb?: number | undefined;
|
|
703
763
|
} | undefined;
|
|
@@ -708,7 +768,7 @@ declare const SysWebhook: Omit<{
|
|
|
708
768
|
field?: string | undefined;
|
|
709
769
|
objectOverride?: string | undefined;
|
|
710
770
|
label?: string | undefined;
|
|
711
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "
|
|
771
|
+
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;
|
|
712
772
|
options?: {
|
|
713
773
|
label: string;
|
|
714
774
|
value: string;
|
|
@@ -943,8 +1003,36 @@ declare const SysWebhook: Omit<{
|
|
|
943
1003
|
notNull?: boolean | undefined;
|
|
944
1004
|
} | undefined;
|
|
945
1005
|
readonly maxSize?: number | undefined;
|
|
946
|
-
readonly
|
|
947
|
-
readonly
|
|
1006
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1007
|
+
readonly _lockReason?: string | undefined;
|
|
1008
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1009
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1010
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1011
|
+
readonly _packageId?: string | undefined;
|
|
1012
|
+
readonly _packageVersion?: string | undefined;
|
|
1013
|
+
readonly lookupFilters?: {
|
|
1014
|
+
field: string;
|
|
1015
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1016
|
+
value: any;
|
|
1017
|
+
}[] | undefined;
|
|
1018
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1019
|
+
readonly expression?: {
|
|
1020
|
+
dialect: "cel" | "cron" | "template";
|
|
1021
|
+
source?: string | undefined;
|
|
1022
|
+
ast?: unknown;
|
|
1023
|
+
meta?: {
|
|
1024
|
+
rationale?: string | undefined;
|
|
1025
|
+
generatedBy?: string | undefined;
|
|
1026
|
+
} | undefined;
|
|
1027
|
+
} | undefined;
|
|
1028
|
+
readonly autonumberFormat?: string | undefined;
|
|
1029
|
+
readonly summaryOperations?: {
|
|
1030
|
+
object: string;
|
|
1031
|
+
field: string;
|
|
1032
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1033
|
+
relationshipField?: string | undefined;
|
|
1034
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1035
|
+
} | undefined;
|
|
948
1036
|
readonly visibleWhen?: {
|
|
949
1037
|
dialect: "cel" | "cron" | "template";
|
|
950
1038
|
source?: string | undefined;
|
|
@@ -954,16 +1042,16 @@ declare const SysWebhook: Omit<{
|
|
|
954
1042
|
generatedBy?: string | undefined;
|
|
955
1043
|
} | undefined;
|
|
956
1044
|
} | undefined;
|
|
1045
|
+
readonly scale?: number | undefined;
|
|
957
1046
|
readonly searchable?: boolean | undefined;
|
|
958
1047
|
readonly unique?: boolean | "global" | undefined;
|
|
1048
|
+
readonly defaultValue?: unknown;
|
|
959
1049
|
readonly maxLength?: number | undefined;
|
|
960
1050
|
readonly minLength?: number | undefined;
|
|
961
|
-
readonly scale?: number | undefined;
|
|
962
1051
|
readonly min?: number | undefined;
|
|
963
1052
|
readonly max?: number | undefined;
|
|
964
1053
|
readonly accept?: string[] | undefined;
|
|
965
1054
|
readonly reference?: string | undefined;
|
|
966
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
967
1055
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
968
1056
|
readonly inlineTitle?: string | undefined;
|
|
969
1057
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -980,32 +1068,11 @@ declare const SysWebhook: Omit<{
|
|
|
980
1068
|
type?: string | undefined;
|
|
981
1069
|
})[] | undefined;
|
|
982
1070
|
readonly lookupPageSize?: number | undefined;
|
|
983
|
-
readonly lookupFilters?: {
|
|
984
|
-
field: string;
|
|
985
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
986
|
-
value: any;
|
|
987
|
-
}[] | undefined;
|
|
988
1071
|
readonly dependsOn?: (string | {
|
|
989
1072
|
field: string;
|
|
990
1073
|
param?: string | undefined;
|
|
991
1074
|
})[] | undefined;
|
|
992
1075
|
readonly allowCreate?: boolean | undefined;
|
|
993
|
-
readonly expression?: {
|
|
994
|
-
dialect: "cel" | "cron" | "template";
|
|
995
|
-
source?: string | undefined;
|
|
996
|
-
ast?: unknown;
|
|
997
|
-
meta?: {
|
|
998
|
-
rationale?: string | undefined;
|
|
999
|
-
generatedBy?: string | undefined;
|
|
1000
|
-
} | undefined;
|
|
1001
|
-
} | undefined;
|
|
1002
|
-
readonly summaryOperations?: {
|
|
1003
|
-
object: string;
|
|
1004
|
-
field: string;
|
|
1005
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1006
|
-
relationshipField?: string | undefined;
|
|
1007
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1008
|
-
} | undefined;
|
|
1009
1076
|
readonly language?: string | undefined;
|
|
1010
1077
|
readonly step?: number | undefined;
|
|
1011
1078
|
readonly currencyConfig?: {
|
|
@@ -1041,7 +1108,7 @@ declare const SysWebhook: Omit<{
|
|
|
1041
1108
|
readonly system?: boolean | undefined;
|
|
1042
1109
|
readonly sortable?: boolean | undefined;
|
|
1043
1110
|
readonly inlineHelpText?: string | undefined;
|
|
1044
|
-
readonly
|
|
1111
|
+
readonly externalId?: boolean | undefined;
|
|
1045
1112
|
readonly type: "text";
|
|
1046
1113
|
};
|
|
1047
1114
|
readonly name: {
|
|
@@ -1074,8 +1141,36 @@ declare const SysWebhook: Omit<{
|
|
|
1074
1141
|
notNull?: boolean | undefined;
|
|
1075
1142
|
} | undefined;
|
|
1076
1143
|
readonly maxSize?: number | undefined;
|
|
1077
|
-
readonly
|
|
1078
|
-
readonly
|
|
1144
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1145
|
+
readonly _lockReason?: string | undefined;
|
|
1146
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1147
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1148
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1149
|
+
readonly _packageId?: string | undefined;
|
|
1150
|
+
readonly _packageVersion?: string | undefined;
|
|
1151
|
+
readonly lookupFilters?: {
|
|
1152
|
+
field: string;
|
|
1153
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1154
|
+
value: any;
|
|
1155
|
+
}[] | undefined;
|
|
1156
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1157
|
+
readonly expression?: {
|
|
1158
|
+
dialect: "cel" | "cron" | "template";
|
|
1159
|
+
source?: string | undefined;
|
|
1160
|
+
ast?: unknown;
|
|
1161
|
+
meta?: {
|
|
1162
|
+
rationale?: string | undefined;
|
|
1163
|
+
generatedBy?: string | undefined;
|
|
1164
|
+
} | undefined;
|
|
1165
|
+
} | undefined;
|
|
1166
|
+
readonly autonumberFormat?: string | undefined;
|
|
1167
|
+
readonly summaryOperations?: {
|
|
1168
|
+
object: string;
|
|
1169
|
+
field: string;
|
|
1170
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1171
|
+
relationshipField?: string | undefined;
|
|
1172
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1173
|
+
} | undefined;
|
|
1079
1174
|
readonly visibleWhen?: {
|
|
1080
1175
|
dialect: "cel" | "cron" | "template";
|
|
1081
1176
|
source?: string | undefined;
|
|
@@ -1085,16 +1180,16 @@ declare const SysWebhook: Omit<{
|
|
|
1085
1180
|
generatedBy?: string | undefined;
|
|
1086
1181
|
} | undefined;
|
|
1087
1182
|
} | undefined;
|
|
1183
|
+
readonly scale?: number | undefined;
|
|
1088
1184
|
readonly searchable?: boolean | undefined;
|
|
1089
1185
|
readonly unique?: boolean | "global" | undefined;
|
|
1186
|
+
readonly defaultValue?: unknown;
|
|
1090
1187
|
readonly maxLength?: number | undefined;
|
|
1091
1188
|
readonly minLength?: number | undefined;
|
|
1092
|
-
readonly scale?: number | undefined;
|
|
1093
1189
|
readonly min?: number | undefined;
|
|
1094
1190
|
readonly max?: number | undefined;
|
|
1095
1191
|
readonly accept?: string[] | undefined;
|
|
1096
1192
|
readonly reference?: string | undefined;
|
|
1097
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1098
1193
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1099
1194
|
readonly inlineTitle?: string | undefined;
|
|
1100
1195
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1111,32 +1206,11 @@ declare const SysWebhook: Omit<{
|
|
|
1111
1206
|
type?: string | undefined;
|
|
1112
1207
|
})[] | undefined;
|
|
1113
1208
|
readonly lookupPageSize?: number | undefined;
|
|
1114
|
-
readonly lookupFilters?: {
|
|
1115
|
-
field: string;
|
|
1116
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1117
|
-
value: any;
|
|
1118
|
-
}[] | undefined;
|
|
1119
1209
|
readonly dependsOn?: (string | {
|
|
1120
1210
|
field: string;
|
|
1121
1211
|
param?: string | undefined;
|
|
1122
1212
|
})[] | undefined;
|
|
1123
1213
|
readonly allowCreate?: boolean | undefined;
|
|
1124
|
-
readonly expression?: {
|
|
1125
|
-
dialect: "cel" | "cron" | "template";
|
|
1126
|
-
source?: string | undefined;
|
|
1127
|
-
ast?: unknown;
|
|
1128
|
-
meta?: {
|
|
1129
|
-
rationale?: string | undefined;
|
|
1130
|
-
generatedBy?: string | undefined;
|
|
1131
|
-
} | undefined;
|
|
1132
|
-
} | undefined;
|
|
1133
|
-
readonly summaryOperations?: {
|
|
1134
|
-
object: string;
|
|
1135
|
-
field: string;
|
|
1136
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1137
|
-
relationshipField?: string | undefined;
|
|
1138
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1139
|
-
} | undefined;
|
|
1140
1214
|
readonly language?: string | undefined;
|
|
1141
1215
|
readonly step?: number | undefined;
|
|
1142
1216
|
readonly currencyConfig?: {
|
|
@@ -1172,7 +1246,7 @@ declare const SysWebhook: Omit<{
|
|
|
1172
1246
|
readonly system?: boolean | undefined;
|
|
1173
1247
|
readonly sortable?: boolean | undefined;
|
|
1174
1248
|
readonly inlineHelpText?: string | undefined;
|
|
1175
|
-
readonly
|
|
1249
|
+
readonly externalId?: boolean | undefined;
|
|
1176
1250
|
readonly type: "text";
|
|
1177
1251
|
};
|
|
1178
1252
|
readonly label: {
|
|
@@ -1205,8 +1279,36 @@ declare const SysWebhook: Omit<{
|
|
|
1205
1279
|
notNull?: boolean | undefined;
|
|
1206
1280
|
} | undefined;
|
|
1207
1281
|
readonly maxSize?: number | undefined;
|
|
1208
|
-
readonly
|
|
1209
|
-
readonly
|
|
1282
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1283
|
+
readonly _lockReason?: string | undefined;
|
|
1284
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1285
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1286
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1287
|
+
readonly _packageId?: string | undefined;
|
|
1288
|
+
readonly _packageVersion?: string | undefined;
|
|
1289
|
+
readonly lookupFilters?: {
|
|
1290
|
+
field: string;
|
|
1291
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1292
|
+
value: any;
|
|
1293
|
+
}[] | undefined;
|
|
1294
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1295
|
+
readonly expression?: {
|
|
1296
|
+
dialect: "cel" | "cron" | "template";
|
|
1297
|
+
source?: string | undefined;
|
|
1298
|
+
ast?: unknown;
|
|
1299
|
+
meta?: {
|
|
1300
|
+
rationale?: string | undefined;
|
|
1301
|
+
generatedBy?: string | undefined;
|
|
1302
|
+
} | undefined;
|
|
1303
|
+
} | undefined;
|
|
1304
|
+
readonly autonumberFormat?: string | undefined;
|
|
1305
|
+
readonly summaryOperations?: {
|
|
1306
|
+
object: string;
|
|
1307
|
+
field: string;
|
|
1308
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1309
|
+
relationshipField?: string | undefined;
|
|
1310
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1311
|
+
} | undefined;
|
|
1210
1312
|
readonly visibleWhen?: {
|
|
1211
1313
|
dialect: "cel" | "cron" | "template";
|
|
1212
1314
|
source?: string | undefined;
|
|
@@ -1216,16 +1318,16 @@ declare const SysWebhook: Omit<{
|
|
|
1216
1318
|
generatedBy?: string | undefined;
|
|
1217
1319
|
} | undefined;
|
|
1218
1320
|
} | undefined;
|
|
1321
|
+
readonly scale?: number | undefined;
|
|
1219
1322
|
readonly searchable?: boolean | undefined;
|
|
1220
1323
|
readonly unique?: boolean | "global" | undefined;
|
|
1324
|
+
readonly defaultValue?: unknown;
|
|
1221
1325
|
readonly maxLength?: number | undefined;
|
|
1222
1326
|
readonly minLength?: number | undefined;
|
|
1223
|
-
readonly scale?: number | undefined;
|
|
1224
1327
|
readonly min?: number | undefined;
|
|
1225
1328
|
readonly max?: number | undefined;
|
|
1226
1329
|
readonly accept?: string[] | undefined;
|
|
1227
1330
|
readonly reference?: string | undefined;
|
|
1228
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1229
1331
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1230
1332
|
readonly inlineTitle?: string | undefined;
|
|
1231
1333
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1242,32 +1344,11 @@ declare const SysWebhook: Omit<{
|
|
|
1242
1344
|
type?: string | undefined;
|
|
1243
1345
|
})[] | undefined;
|
|
1244
1346
|
readonly lookupPageSize?: number | undefined;
|
|
1245
|
-
readonly lookupFilters?: {
|
|
1246
|
-
field: string;
|
|
1247
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1248
|
-
value: any;
|
|
1249
|
-
}[] | undefined;
|
|
1250
1347
|
readonly dependsOn?: (string | {
|
|
1251
1348
|
field: string;
|
|
1252
1349
|
param?: string | undefined;
|
|
1253
1350
|
})[] | undefined;
|
|
1254
1351
|
readonly allowCreate?: boolean | undefined;
|
|
1255
|
-
readonly expression?: {
|
|
1256
|
-
dialect: "cel" | "cron" | "template";
|
|
1257
|
-
source?: string | undefined;
|
|
1258
|
-
ast?: unknown;
|
|
1259
|
-
meta?: {
|
|
1260
|
-
rationale?: string | undefined;
|
|
1261
|
-
generatedBy?: string | undefined;
|
|
1262
|
-
} | undefined;
|
|
1263
|
-
} | undefined;
|
|
1264
|
-
readonly summaryOperations?: {
|
|
1265
|
-
object: string;
|
|
1266
|
-
field: string;
|
|
1267
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1268
|
-
relationshipField?: string | undefined;
|
|
1269
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1270
|
-
} | undefined;
|
|
1271
1352
|
readonly language?: string | undefined;
|
|
1272
1353
|
readonly step?: number | undefined;
|
|
1273
1354
|
readonly currencyConfig?: {
|
|
@@ -1303,7 +1384,7 @@ declare const SysWebhook: Omit<{
|
|
|
1303
1384
|
readonly system?: boolean | undefined;
|
|
1304
1385
|
readonly sortable?: boolean | undefined;
|
|
1305
1386
|
readonly inlineHelpText?: string | undefined;
|
|
1306
|
-
readonly
|
|
1387
|
+
readonly externalId?: boolean | undefined;
|
|
1307
1388
|
readonly type: "text";
|
|
1308
1389
|
};
|
|
1309
1390
|
readonly object_name: {
|
|
@@ -1336,8 +1417,36 @@ declare const SysWebhook: Omit<{
|
|
|
1336
1417
|
notNull?: boolean | undefined;
|
|
1337
1418
|
} | undefined;
|
|
1338
1419
|
readonly maxSize?: number | undefined;
|
|
1339
|
-
readonly
|
|
1340
|
-
readonly
|
|
1420
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1421
|
+
readonly _lockReason?: string | undefined;
|
|
1422
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1423
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1424
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1425
|
+
readonly _packageId?: string | undefined;
|
|
1426
|
+
readonly _packageVersion?: string | undefined;
|
|
1427
|
+
readonly lookupFilters?: {
|
|
1428
|
+
field: string;
|
|
1429
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1430
|
+
value: any;
|
|
1431
|
+
}[] | undefined;
|
|
1432
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1433
|
+
readonly expression?: {
|
|
1434
|
+
dialect: "cel" | "cron" | "template";
|
|
1435
|
+
source?: string | undefined;
|
|
1436
|
+
ast?: unknown;
|
|
1437
|
+
meta?: {
|
|
1438
|
+
rationale?: string | undefined;
|
|
1439
|
+
generatedBy?: string | undefined;
|
|
1440
|
+
} | undefined;
|
|
1441
|
+
} | undefined;
|
|
1442
|
+
readonly autonumberFormat?: string | undefined;
|
|
1443
|
+
readonly summaryOperations?: {
|
|
1444
|
+
object: string;
|
|
1445
|
+
field: string;
|
|
1446
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1447
|
+
relationshipField?: string | undefined;
|
|
1448
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1449
|
+
} | undefined;
|
|
1341
1450
|
readonly visibleWhen?: {
|
|
1342
1451
|
dialect: "cel" | "cron" | "template";
|
|
1343
1452
|
source?: string | undefined;
|
|
@@ -1347,16 +1456,16 @@ declare const SysWebhook: Omit<{
|
|
|
1347
1456
|
generatedBy?: string | undefined;
|
|
1348
1457
|
} | undefined;
|
|
1349
1458
|
} | undefined;
|
|
1459
|
+
readonly scale?: number | undefined;
|
|
1350
1460
|
readonly searchable?: boolean | undefined;
|
|
1351
1461
|
readonly unique?: boolean | "global" | undefined;
|
|
1462
|
+
readonly defaultValue?: unknown;
|
|
1352
1463
|
readonly maxLength?: number | undefined;
|
|
1353
1464
|
readonly minLength?: number | undefined;
|
|
1354
|
-
readonly scale?: number | undefined;
|
|
1355
1465
|
readonly min?: number | undefined;
|
|
1356
1466
|
readonly max?: number | undefined;
|
|
1357
1467
|
readonly accept?: string[] | undefined;
|
|
1358
1468
|
readonly reference?: string | undefined;
|
|
1359
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1360
1469
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1361
1470
|
readonly inlineTitle?: string | undefined;
|
|
1362
1471
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1373,32 +1482,11 @@ declare const SysWebhook: Omit<{
|
|
|
1373
1482
|
type?: string | undefined;
|
|
1374
1483
|
})[] | undefined;
|
|
1375
1484
|
readonly lookupPageSize?: number | undefined;
|
|
1376
|
-
readonly lookupFilters?: {
|
|
1377
|
-
field: string;
|
|
1378
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1379
|
-
value: any;
|
|
1380
|
-
}[] | undefined;
|
|
1381
1485
|
readonly dependsOn?: (string | {
|
|
1382
1486
|
field: string;
|
|
1383
1487
|
param?: string | undefined;
|
|
1384
1488
|
})[] | undefined;
|
|
1385
1489
|
readonly allowCreate?: boolean | undefined;
|
|
1386
|
-
readonly expression?: {
|
|
1387
|
-
dialect: "cel" | "cron" | "template";
|
|
1388
|
-
source?: string | undefined;
|
|
1389
|
-
ast?: unknown;
|
|
1390
|
-
meta?: {
|
|
1391
|
-
rationale?: string | undefined;
|
|
1392
|
-
generatedBy?: string | undefined;
|
|
1393
|
-
} | undefined;
|
|
1394
|
-
} | undefined;
|
|
1395
|
-
readonly summaryOperations?: {
|
|
1396
|
-
object: string;
|
|
1397
|
-
field: string;
|
|
1398
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1399
|
-
relationshipField?: string | undefined;
|
|
1400
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1401
|
-
} | undefined;
|
|
1402
1490
|
readonly language?: string | undefined;
|
|
1403
1491
|
readonly step?: number | undefined;
|
|
1404
1492
|
readonly currencyConfig?: {
|
|
@@ -1434,7 +1522,7 @@ declare const SysWebhook: Omit<{
|
|
|
1434
1522
|
readonly system?: boolean | undefined;
|
|
1435
1523
|
readonly sortable?: boolean | undefined;
|
|
1436
1524
|
readonly inlineHelpText?: string | undefined;
|
|
1437
|
-
readonly
|
|
1525
|
+
readonly externalId?: boolean | undefined;
|
|
1438
1526
|
readonly type: "text";
|
|
1439
1527
|
};
|
|
1440
1528
|
readonly triggers: {
|
|
@@ -1467,8 +1555,36 @@ declare const SysWebhook: Omit<{
|
|
|
1467
1555
|
notNull?: boolean | undefined;
|
|
1468
1556
|
} | undefined;
|
|
1469
1557
|
readonly maxSize?: number | undefined;
|
|
1470
|
-
readonly
|
|
1471
|
-
readonly
|
|
1558
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1559
|
+
readonly _lockReason?: string | undefined;
|
|
1560
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1561
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1562
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1563
|
+
readonly _packageId?: string | undefined;
|
|
1564
|
+
readonly _packageVersion?: string | undefined;
|
|
1565
|
+
readonly lookupFilters?: {
|
|
1566
|
+
field: string;
|
|
1567
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1568
|
+
value: any;
|
|
1569
|
+
}[] | undefined;
|
|
1570
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1571
|
+
readonly expression?: {
|
|
1572
|
+
dialect: "cel" | "cron" | "template";
|
|
1573
|
+
source?: string | undefined;
|
|
1574
|
+
ast?: unknown;
|
|
1575
|
+
meta?: {
|
|
1576
|
+
rationale?: string | undefined;
|
|
1577
|
+
generatedBy?: string | undefined;
|
|
1578
|
+
} | undefined;
|
|
1579
|
+
} | undefined;
|
|
1580
|
+
readonly autonumberFormat?: string | undefined;
|
|
1581
|
+
readonly summaryOperations?: {
|
|
1582
|
+
object: string;
|
|
1583
|
+
field: string;
|
|
1584
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1585
|
+
relationshipField?: string | undefined;
|
|
1586
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1587
|
+
} | undefined;
|
|
1472
1588
|
readonly visibleWhen?: {
|
|
1473
1589
|
dialect: "cel" | "cron" | "template";
|
|
1474
1590
|
source?: string | undefined;
|
|
@@ -1478,16 +1594,16 @@ declare const SysWebhook: Omit<{
|
|
|
1478
1594
|
generatedBy?: string | undefined;
|
|
1479
1595
|
} | undefined;
|
|
1480
1596
|
} | undefined;
|
|
1597
|
+
readonly scale?: number | undefined;
|
|
1481
1598
|
readonly searchable?: boolean | undefined;
|
|
1482
1599
|
readonly unique?: boolean | "global" | undefined;
|
|
1600
|
+
readonly defaultValue?: unknown;
|
|
1483
1601
|
readonly maxLength?: number | undefined;
|
|
1484
1602
|
readonly minLength?: number | undefined;
|
|
1485
|
-
readonly scale?: number | undefined;
|
|
1486
1603
|
readonly min?: number | undefined;
|
|
1487
1604
|
readonly max?: number | undefined;
|
|
1488
1605
|
readonly accept?: string[] | undefined;
|
|
1489
1606
|
readonly reference?: string | undefined;
|
|
1490
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1491
1607
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1492
1608
|
readonly inlineTitle?: string | undefined;
|
|
1493
1609
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1504,32 +1620,11 @@ declare const SysWebhook: Omit<{
|
|
|
1504
1620
|
type?: string | undefined;
|
|
1505
1621
|
})[] | undefined;
|
|
1506
1622
|
readonly lookupPageSize?: number | undefined;
|
|
1507
|
-
readonly lookupFilters?: {
|
|
1508
|
-
field: string;
|
|
1509
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1510
|
-
value: any;
|
|
1511
|
-
}[] | undefined;
|
|
1512
1623
|
readonly dependsOn?: (string | {
|
|
1513
1624
|
field: string;
|
|
1514
1625
|
param?: string | undefined;
|
|
1515
1626
|
})[] | undefined;
|
|
1516
1627
|
readonly allowCreate?: boolean | undefined;
|
|
1517
|
-
readonly expression?: {
|
|
1518
|
-
dialect: "cel" | "cron" | "template";
|
|
1519
|
-
source?: string | undefined;
|
|
1520
|
-
ast?: unknown;
|
|
1521
|
-
meta?: {
|
|
1522
|
-
rationale?: string | undefined;
|
|
1523
|
-
generatedBy?: string | undefined;
|
|
1524
|
-
} | undefined;
|
|
1525
|
-
} | undefined;
|
|
1526
|
-
readonly summaryOperations?: {
|
|
1527
|
-
object: string;
|
|
1528
|
-
field: string;
|
|
1529
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1530
|
-
relationshipField?: string | undefined;
|
|
1531
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1532
|
-
} | undefined;
|
|
1533
1628
|
readonly language?: string | undefined;
|
|
1534
1629
|
readonly step?: number | undefined;
|
|
1535
1630
|
readonly currencyConfig?: {
|
|
@@ -1565,7 +1660,7 @@ declare const SysWebhook: Omit<{
|
|
|
1565
1660
|
readonly system?: boolean | undefined;
|
|
1566
1661
|
readonly sortable?: boolean | undefined;
|
|
1567
1662
|
readonly inlineHelpText?: string | undefined;
|
|
1568
|
-
readonly
|
|
1663
|
+
readonly externalId?: boolean | undefined;
|
|
1569
1664
|
readonly type: "select";
|
|
1570
1665
|
};
|
|
1571
1666
|
readonly url: {
|
|
@@ -1598,8 +1693,36 @@ declare const SysWebhook: Omit<{
|
|
|
1598
1693
|
notNull?: boolean | undefined;
|
|
1599
1694
|
} | undefined;
|
|
1600
1695
|
readonly maxSize?: number | undefined;
|
|
1601
|
-
readonly
|
|
1602
|
-
readonly
|
|
1696
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1697
|
+
readonly _lockReason?: string | undefined;
|
|
1698
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1699
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1700
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1701
|
+
readonly _packageId?: string | undefined;
|
|
1702
|
+
readonly _packageVersion?: string | undefined;
|
|
1703
|
+
readonly lookupFilters?: {
|
|
1704
|
+
field: string;
|
|
1705
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1706
|
+
value: any;
|
|
1707
|
+
}[] | undefined;
|
|
1708
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1709
|
+
readonly expression?: {
|
|
1710
|
+
dialect: "cel" | "cron" | "template";
|
|
1711
|
+
source?: string | undefined;
|
|
1712
|
+
ast?: unknown;
|
|
1713
|
+
meta?: {
|
|
1714
|
+
rationale?: string | undefined;
|
|
1715
|
+
generatedBy?: string | undefined;
|
|
1716
|
+
} | undefined;
|
|
1717
|
+
} | undefined;
|
|
1718
|
+
readonly autonumberFormat?: string | undefined;
|
|
1719
|
+
readonly summaryOperations?: {
|
|
1720
|
+
object: string;
|
|
1721
|
+
field: string;
|
|
1722
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1723
|
+
relationshipField?: string | undefined;
|
|
1724
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1725
|
+
} | undefined;
|
|
1603
1726
|
readonly visibleWhen?: {
|
|
1604
1727
|
dialect: "cel" | "cron" | "template";
|
|
1605
1728
|
source?: string | undefined;
|
|
@@ -1609,16 +1732,16 @@ declare const SysWebhook: Omit<{
|
|
|
1609
1732
|
generatedBy?: string | undefined;
|
|
1610
1733
|
} | undefined;
|
|
1611
1734
|
} | undefined;
|
|
1735
|
+
readonly scale?: number | undefined;
|
|
1612
1736
|
readonly searchable?: boolean | undefined;
|
|
1613
1737
|
readonly unique?: boolean | "global" | undefined;
|
|
1738
|
+
readonly defaultValue?: unknown;
|
|
1614
1739
|
readonly maxLength?: number | undefined;
|
|
1615
1740
|
readonly minLength?: number | undefined;
|
|
1616
|
-
readonly scale?: number | undefined;
|
|
1617
1741
|
readonly min?: number | undefined;
|
|
1618
1742
|
readonly max?: number | undefined;
|
|
1619
1743
|
readonly accept?: string[] | undefined;
|
|
1620
1744
|
readonly reference?: string | undefined;
|
|
1621
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1622
1745
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1623
1746
|
readonly inlineTitle?: string | undefined;
|
|
1624
1747
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1635,32 +1758,11 @@ declare const SysWebhook: Omit<{
|
|
|
1635
1758
|
type?: string | undefined;
|
|
1636
1759
|
})[] | undefined;
|
|
1637
1760
|
readonly lookupPageSize?: number | undefined;
|
|
1638
|
-
readonly lookupFilters?: {
|
|
1639
|
-
field: string;
|
|
1640
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1641
|
-
value: any;
|
|
1642
|
-
}[] | undefined;
|
|
1643
1761
|
readonly dependsOn?: (string | {
|
|
1644
1762
|
field: string;
|
|
1645
1763
|
param?: string | undefined;
|
|
1646
1764
|
})[] | undefined;
|
|
1647
1765
|
readonly allowCreate?: boolean | undefined;
|
|
1648
|
-
readonly expression?: {
|
|
1649
|
-
dialect: "cel" | "cron" | "template";
|
|
1650
|
-
source?: string | undefined;
|
|
1651
|
-
ast?: unknown;
|
|
1652
|
-
meta?: {
|
|
1653
|
-
rationale?: string | undefined;
|
|
1654
|
-
generatedBy?: string | undefined;
|
|
1655
|
-
} | undefined;
|
|
1656
|
-
} | undefined;
|
|
1657
|
-
readonly summaryOperations?: {
|
|
1658
|
-
object: string;
|
|
1659
|
-
field: string;
|
|
1660
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1661
|
-
relationshipField?: string | undefined;
|
|
1662
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1663
|
-
} | undefined;
|
|
1664
1766
|
readonly language?: string | undefined;
|
|
1665
1767
|
readonly step?: number | undefined;
|
|
1666
1768
|
readonly currencyConfig?: {
|
|
@@ -1696,7 +1798,7 @@ declare const SysWebhook: Omit<{
|
|
|
1696
1798
|
readonly system?: boolean | undefined;
|
|
1697
1799
|
readonly sortable?: boolean | undefined;
|
|
1698
1800
|
readonly inlineHelpText?: string | undefined;
|
|
1699
|
-
readonly
|
|
1801
|
+
readonly externalId?: boolean | undefined;
|
|
1700
1802
|
readonly type: "text";
|
|
1701
1803
|
};
|
|
1702
1804
|
readonly method: {
|
|
@@ -1729,8 +1831,36 @@ declare const SysWebhook: Omit<{
|
|
|
1729
1831
|
notNull?: boolean | undefined;
|
|
1730
1832
|
} | undefined;
|
|
1731
1833
|
readonly maxSize?: number | undefined;
|
|
1732
|
-
readonly
|
|
1733
|
-
readonly
|
|
1834
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1835
|
+
readonly _lockReason?: string | undefined;
|
|
1836
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1837
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1838
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1839
|
+
readonly _packageId?: string | undefined;
|
|
1840
|
+
readonly _packageVersion?: string | undefined;
|
|
1841
|
+
readonly lookupFilters?: {
|
|
1842
|
+
field: string;
|
|
1843
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1844
|
+
value: any;
|
|
1845
|
+
}[] | undefined;
|
|
1846
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1847
|
+
readonly expression?: {
|
|
1848
|
+
dialect: "cel" | "cron" | "template";
|
|
1849
|
+
source?: string | undefined;
|
|
1850
|
+
ast?: unknown;
|
|
1851
|
+
meta?: {
|
|
1852
|
+
rationale?: string | undefined;
|
|
1853
|
+
generatedBy?: string | undefined;
|
|
1854
|
+
} | undefined;
|
|
1855
|
+
} | undefined;
|
|
1856
|
+
readonly autonumberFormat?: string | undefined;
|
|
1857
|
+
readonly summaryOperations?: {
|
|
1858
|
+
object: string;
|
|
1859
|
+
field: string;
|
|
1860
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1861
|
+
relationshipField?: string | undefined;
|
|
1862
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1863
|
+
} | undefined;
|
|
1734
1864
|
readonly visibleWhen?: {
|
|
1735
1865
|
dialect: "cel" | "cron" | "template";
|
|
1736
1866
|
source?: string | undefined;
|
|
@@ -1740,16 +1870,16 @@ declare const SysWebhook: Omit<{
|
|
|
1740
1870
|
generatedBy?: string | undefined;
|
|
1741
1871
|
} | undefined;
|
|
1742
1872
|
} | undefined;
|
|
1873
|
+
readonly scale?: number | undefined;
|
|
1743
1874
|
readonly searchable?: boolean | undefined;
|
|
1744
1875
|
readonly unique?: boolean | "global" | undefined;
|
|
1876
|
+
readonly defaultValue?: unknown;
|
|
1745
1877
|
readonly maxLength?: number | undefined;
|
|
1746
1878
|
readonly minLength?: number | undefined;
|
|
1747
|
-
readonly scale?: number | undefined;
|
|
1748
1879
|
readonly min?: number | undefined;
|
|
1749
1880
|
readonly max?: number | undefined;
|
|
1750
1881
|
readonly accept?: string[] | undefined;
|
|
1751
1882
|
readonly reference?: string | undefined;
|
|
1752
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1753
1883
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1754
1884
|
readonly inlineTitle?: string | undefined;
|
|
1755
1885
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1766,32 +1896,11 @@ declare const SysWebhook: Omit<{
|
|
|
1766
1896
|
type?: string | undefined;
|
|
1767
1897
|
})[] | undefined;
|
|
1768
1898
|
readonly lookupPageSize?: number | undefined;
|
|
1769
|
-
readonly lookupFilters?: {
|
|
1770
|
-
field: string;
|
|
1771
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1772
|
-
value: any;
|
|
1773
|
-
}[] | undefined;
|
|
1774
1899
|
readonly dependsOn?: (string | {
|
|
1775
1900
|
field: string;
|
|
1776
1901
|
param?: string | undefined;
|
|
1777
1902
|
})[] | undefined;
|
|
1778
1903
|
readonly allowCreate?: boolean | undefined;
|
|
1779
|
-
readonly expression?: {
|
|
1780
|
-
dialect: "cel" | "cron" | "template";
|
|
1781
|
-
source?: string | undefined;
|
|
1782
|
-
ast?: unknown;
|
|
1783
|
-
meta?: {
|
|
1784
|
-
rationale?: string | undefined;
|
|
1785
|
-
generatedBy?: string | undefined;
|
|
1786
|
-
} | undefined;
|
|
1787
|
-
} | undefined;
|
|
1788
|
-
readonly summaryOperations?: {
|
|
1789
|
-
object: string;
|
|
1790
|
-
field: string;
|
|
1791
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1792
|
-
relationshipField?: string | undefined;
|
|
1793
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1794
|
-
} | undefined;
|
|
1795
1904
|
readonly language?: string | undefined;
|
|
1796
1905
|
readonly step?: number | undefined;
|
|
1797
1906
|
readonly currencyConfig?: {
|
|
@@ -1827,7 +1936,7 @@ declare const SysWebhook: Omit<{
|
|
|
1827
1936
|
readonly system?: boolean | undefined;
|
|
1828
1937
|
readonly sortable?: boolean | undefined;
|
|
1829
1938
|
readonly inlineHelpText?: string | undefined;
|
|
1830
|
-
readonly
|
|
1939
|
+
readonly externalId?: boolean | undefined;
|
|
1831
1940
|
readonly type: "select";
|
|
1832
1941
|
};
|
|
1833
1942
|
readonly description: {
|
|
@@ -1860,8 +1969,36 @@ declare const SysWebhook: Omit<{
|
|
|
1860
1969
|
notNull?: boolean | undefined;
|
|
1861
1970
|
} | undefined;
|
|
1862
1971
|
readonly maxSize?: number | undefined;
|
|
1863
|
-
readonly
|
|
1864
|
-
readonly
|
|
1972
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
1973
|
+
readonly _lockReason?: string | undefined;
|
|
1974
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
1975
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
1976
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1977
|
+
readonly _packageId?: string | undefined;
|
|
1978
|
+
readonly _packageVersion?: string | undefined;
|
|
1979
|
+
readonly lookupFilters?: {
|
|
1980
|
+
field: string;
|
|
1981
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1982
|
+
value: any;
|
|
1983
|
+
}[] | undefined;
|
|
1984
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1985
|
+
readonly expression?: {
|
|
1986
|
+
dialect: "cel" | "cron" | "template";
|
|
1987
|
+
source?: string | undefined;
|
|
1988
|
+
ast?: unknown;
|
|
1989
|
+
meta?: {
|
|
1990
|
+
rationale?: string | undefined;
|
|
1991
|
+
generatedBy?: string | undefined;
|
|
1992
|
+
} | undefined;
|
|
1993
|
+
} | undefined;
|
|
1994
|
+
readonly autonumberFormat?: string | undefined;
|
|
1995
|
+
readonly summaryOperations?: {
|
|
1996
|
+
object: string;
|
|
1997
|
+
field: string;
|
|
1998
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1999
|
+
relationshipField?: string | undefined;
|
|
2000
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2001
|
+
} | undefined;
|
|
1865
2002
|
readonly visibleWhen?: {
|
|
1866
2003
|
dialect: "cel" | "cron" | "template";
|
|
1867
2004
|
source?: string | undefined;
|
|
@@ -1871,16 +2008,16 @@ declare const SysWebhook: Omit<{
|
|
|
1871
2008
|
generatedBy?: string | undefined;
|
|
1872
2009
|
} | undefined;
|
|
1873
2010
|
} | undefined;
|
|
2011
|
+
readonly scale?: number | undefined;
|
|
1874
2012
|
readonly searchable?: boolean | undefined;
|
|
1875
2013
|
readonly unique?: boolean | "global" | undefined;
|
|
2014
|
+
readonly defaultValue?: unknown;
|
|
1876
2015
|
readonly maxLength?: number | undefined;
|
|
1877
2016
|
readonly minLength?: number | undefined;
|
|
1878
|
-
readonly scale?: number | undefined;
|
|
1879
2017
|
readonly min?: number | undefined;
|
|
1880
2018
|
readonly max?: number | undefined;
|
|
1881
2019
|
readonly accept?: string[] | undefined;
|
|
1882
2020
|
readonly reference?: string | undefined;
|
|
1883
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1884
2021
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1885
2022
|
readonly inlineTitle?: string | undefined;
|
|
1886
2023
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -1897,32 +2034,11 @@ declare const SysWebhook: Omit<{
|
|
|
1897
2034
|
type?: string | undefined;
|
|
1898
2035
|
})[] | undefined;
|
|
1899
2036
|
readonly lookupPageSize?: number | undefined;
|
|
1900
|
-
readonly
|
|
1901
|
-
field: string;
|
|
1902
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1903
|
-
value: any;
|
|
1904
|
-
}[] | undefined;
|
|
1905
|
-
readonly dependsOn?: (string | {
|
|
2037
|
+
readonly dependsOn?: (string | {
|
|
1906
2038
|
field: string;
|
|
1907
2039
|
param?: string | undefined;
|
|
1908
2040
|
})[] | undefined;
|
|
1909
2041
|
readonly allowCreate?: boolean | undefined;
|
|
1910
|
-
readonly expression?: {
|
|
1911
|
-
dialect: "cel" | "cron" | "template";
|
|
1912
|
-
source?: string | undefined;
|
|
1913
|
-
ast?: unknown;
|
|
1914
|
-
meta?: {
|
|
1915
|
-
rationale?: string | undefined;
|
|
1916
|
-
generatedBy?: string | undefined;
|
|
1917
|
-
} | undefined;
|
|
1918
|
-
} | undefined;
|
|
1919
|
-
readonly summaryOperations?: {
|
|
1920
|
-
object: string;
|
|
1921
|
-
field: string;
|
|
1922
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
1923
|
-
relationshipField?: string | undefined;
|
|
1924
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
1925
|
-
} | undefined;
|
|
1926
2042
|
readonly language?: string | undefined;
|
|
1927
2043
|
readonly step?: number | undefined;
|
|
1928
2044
|
readonly currencyConfig?: {
|
|
@@ -1958,7 +2074,7 @@ declare const SysWebhook: Omit<{
|
|
|
1958
2074
|
readonly system?: boolean | undefined;
|
|
1959
2075
|
readonly sortable?: boolean | undefined;
|
|
1960
2076
|
readonly inlineHelpText?: string | undefined;
|
|
1961
|
-
readonly
|
|
2077
|
+
readonly externalId?: boolean | undefined;
|
|
1962
2078
|
readonly type: "textarea";
|
|
1963
2079
|
};
|
|
1964
2080
|
readonly active: {
|
|
@@ -1991,8 +2107,36 @@ declare const SysWebhook: Omit<{
|
|
|
1991
2107
|
notNull?: boolean | undefined;
|
|
1992
2108
|
} | undefined;
|
|
1993
2109
|
readonly maxSize?: number | undefined;
|
|
1994
|
-
readonly
|
|
1995
|
-
readonly
|
|
2110
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2111
|
+
readonly _lockReason?: string | undefined;
|
|
2112
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2113
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2114
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2115
|
+
readonly _packageId?: string | undefined;
|
|
2116
|
+
readonly _packageVersion?: string | undefined;
|
|
2117
|
+
readonly lookupFilters?: {
|
|
2118
|
+
field: string;
|
|
2119
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2120
|
+
value: any;
|
|
2121
|
+
}[] | undefined;
|
|
2122
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2123
|
+
readonly expression?: {
|
|
2124
|
+
dialect: "cel" | "cron" | "template";
|
|
2125
|
+
source?: string | undefined;
|
|
2126
|
+
ast?: unknown;
|
|
2127
|
+
meta?: {
|
|
2128
|
+
rationale?: string | undefined;
|
|
2129
|
+
generatedBy?: string | undefined;
|
|
2130
|
+
} | undefined;
|
|
2131
|
+
} | undefined;
|
|
2132
|
+
readonly autonumberFormat?: string | undefined;
|
|
2133
|
+
readonly summaryOperations?: {
|
|
2134
|
+
object: string;
|
|
2135
|
+
field: string;
|
|
2136
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2137
|
+
relationshipField?: string | undefined;
|
|
2138
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2139
|
+
} | undefined;
|
|
1996
2140
|
readonly visibleWhen?: {
|
|
1997
2141
|
dialect: "cel" | "cron" | "template";
|
|
1998
2142
|
source?: string | undefined;
|
|
@@ -2002,16 +2146,16 @@ declare const SysWebhook: Omit<{
|
|
|
2002
2146
|
generatedBy?: string | undefined;
|
|
2003
2147
|
} | undefined;
|
|
2004
2148
|
} | undefined;
|
|
2149
|
+
readonly scale?: number | undefined;
|
|
2005
2150
|
readonly searchable?: boolean | undefined;
|
|
2006
2151
|
readonly unique?: boolean | "global" | undefined;
|
|
2152
|
+
readonly defaultValue?: unknown;
|
|
2007
2153
|
readonly maxLength?: number | undefined;
|
|
2008
2154
|
readonly minLength?: number | undefined;
|
|
2009
|
-
readonly scale?: number | undefined;
|
|
2010
2155
|
readonly min?: number | undefined;
|
|
2011
2156
|
readonly max?: number | undefined;
|
|
2012
2157
|
readonly accept?: string[] | undefined;
|
|
2013
2158
|
readonly reference?: string | undefined;
|
|
2014
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2015
2159
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2016
2160
|
readonly inlineTitle?: string | undefined;
|
|
2017
2161
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2028,32 +2172,11 @@ declare const SysWebhook: Omit<{
|
|
|
2028
2172
|
type?: string | undefined;
|
|
2029
2173
|
})[] | undefined;
|
|
2030
2174
|
readonly lookupPageSize?: number | undefined;
|
|
2031
|
-
readonly lookupFilters?: {
|
|
2032
|
-
field: string;
|
|
2033
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2034
|
-
value: any;
|
|
2035
|
-
}[] | undefined;
|
|
2036
2175
|
readonly dependsOn?: (string | {
|
|
2037
2176
|
field: string;
|
|
2038
2177
|
param?: string | undefined;
|
|
2039
2178
|
})[] | undefined;
|
|
2040
2179
|
readonly allowCreate?: boolean | undefined;
|
|
2041
|
-
readonly expression?: {
|
|
2042
|
-
dialect: "cel" | "cron" | "template";
|
|
2043
|
-
source?: string | undefined;
|
|
2044
|
-
ast?: unknown;
|
|
2045
|
-
meta?: {
|
|
2046
|
-
rationale?: string | undefined;
|
|
2047
|
-
generatedBy?: string | undefined;
|
|
2048
|
-
} | undefined;
|
|
2049
|
-
} | undefined;
|
|
2050
|
-
readonly summaryOperations?: {
|
|
2051
|
-
object: string;
|
|
2052
|
-
field: string;
|
|
2053
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2054
|
-
relationshipField?: string | undefined;
|
|
2055
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2056
|
-
} | undefined;
|
|
2057
2180
|
readonly language?: string | undefined;
|
|
2058
2181
|
readonly step?: number | undefined;
|
|
2059
2182
|
readonly currencyConfig?: {
|
|
@@ -2089,7 +2212,7 @@ declare const SysWebhook: Omit<{
|
|
|
2089
2212
|
readonly system?: boolean | undefined;
|
|
2090
2213
|
readonly sortable?: boolean | undefined;
|
|
2091
2214
|
readonly inlineHelpText?: string | undefined;
|
|
2092
|
-
readonly
|
|
2215
|
+
readonly externalId?: boolean | undefined;
|
|
2093
2216
|
readonly type: "boolean";
|
|
2094
2217
|
};
|
|
2095
2218
|
readonly definition_json: {
|
|
@@ -2122,8 +2245,36 @@ declare const SysWebhook: Omit<{
|
|
|
2122
2245
|
notNull?: boolean | undefined;
|
|
2123
2246
|
} | undefined;
|
|
2124
2247
|
readonly maxSize?: number | undefined;
|
|
2125
|
-
readonly
|
|
2126
|
-
readonly
|
|
2248
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2249
|
+
readonly _lockReason?: string | undefined;
|
|
2250
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2251
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2252
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2253
|
+
readonly _packageId?: string | undefined;
|
|
2254
|
+
readonly _packageVersion?: string | undefined;
|
|
2255
|
+
readonly lookupFilters?: {
|
|
2256
|
+
field: string;
|
|
2257
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2258
|
+
value: any;
|
|
2259
|
+
}[] | undefined;
|
|
2260
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2261
|
+
readonly expression?: {
|
|
2262
|
+
dialect: "cel" | "cron" | "template";
|
|
2263
|
+
source?: string | undefined;
|
|
2264
|
+
ast?: unknown;
|
|
2265
|
+
meta?: {
|
|
2266
|
+
rationale?: string | undefined;
|
|
2267
|
+
generatedBy?: string | undefined;
|
|
2268
|
+
} | undefined;
|
|
2269
|
+
} | undefined;
|
|
2270
|
+
readonly autonumberFormat?: string | undefined;
|
|
2271
|
+
readonly summaryOperations?: {
|
|
2272
|
+
object: string;
|
|
2273
|
+
field: string;
|
|
2274
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2275
|
+
relationshipField?: string | undefined;
|
|
2276
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2277
|
+
} | undefined;
|
|
2127
2278
|
readonly visibleWhen?: {
|
|
2128
2279
|
dialect: "cel" | "cron" | "template";
|
|
2129
2280
|
source?: string | undefined;
|
|
@@ -2133,16 +2284,16 @@ declare const SysWebhook: Omit<{
|
|
|
2133
2284
|
generatedBy?: string | undefined;
|
|
2134
2285
|
} | undefined;
|
|
2135
2286
|
} | undefined;
|
|
2287
|
+
readonly scale?: number | undefined;
|
|
2136
2288
|
readonly searchable?: boolean | undefined;
|
|
2137
2289
|
readonly unique?: boolean | "global" | undefined;
|
|
2290
|
+
readonly defaultValue?: unknown;
|
|
2138
2291
|
readonly maxLength?: number | undefined;
|
|
2139
2292
|
readonly minLength?: number | undefined;
|
|
2140
|
-
readonly scale?: number | undefined;
|
|
2141
2293
|
readonly min?: number | undefined;
|
|
2142
2294
|
readonly max?: number | undefined;
|
|
2143
2295
|
readonly accept?: string[] | undefined;
|
|
2144
2296
|
readonly reference?: string | undefined;
|
|
2145
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2146
2297
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2147
2298
|
readonly inlineTitle?: string | undefined;
|
|
2148
2299
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2159,32 +2310,11 @@ declare const SysWebhook: Omit<{
|
|
|
2159
2310
|
type?: string | undefined;
|
|
2160
2311
|
})[] | undefined;
|
|
2161
2312
|
readonly lookupPageSize?: number | undefined;
|
|
2162
|
-
readonly lookupFilters?: {
|
|
2163
|
-
field: string;
|
|
2164
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2165
|
-
value: any;
|
|
2166
|
-
}[] | undefined;
|
|
2167
2313
|
readonly dependsOn?: (string | {
|
|
2168
2314
|
field: string;
|
|
2169
2315
|
param?: string | undefined;
|
|
2170
2316
|
})[] | undefined;
|
|
2171
2317
|
readonly allowCreate?: boolean | undefined;
|
|
2172
|
-
readonly expression?: {
|
|
2173
|
-
dialect: "cel" | "cron" | "template";
|
|
2174
|
-
source?: string | undefined;
|
|
2175
|
-
ast?: unknown;
|
|
2176
|
-
meta?: {
|
|
2177
|
-
rationale?: string | undefined;
|
|
2178
|
-
generatedBy?: string | undefined;
|
|
2179
|
-
} | undefined;
|
|
2180
|
-
} | undefined;
|
|
2181
|
-
readonly summaryOperations?: {
|
|
2182
|
-
object: string;
|
|
2183
|
-
field: string;
|
|
2184
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2185
|
-
relationshipField?: string | undefined;
|
|
2186
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2187
|
-
} | undefined;
|
|
2188
2318
|
readonly language?: string | undefined;
|
|
2189
2319
|
readonly step?: number | undefined;
|
|
2190
2320
|
readonly currencyConfig?: {
|
|
@@ -2220,7 +2350,7 @@ declare const SysWebhook: Omit<{
|
|
|
2220
2350
|
readonly system?: boolean | undefined;
|
|
2221
2351
|
readonly sortable?: boolean | undefined;
|
|
2222
2352
|
readonly inlineHelpText?: string | undefined;
|
|
2223
|
-
readonly
|
|
2353
|
+
readonly externalId?: boolean | undefined;
|
|
2224
2354
|
readonly type: "textarea";
|
|
2225
2355
|
};
|
|
2226
2356
|
readonly managed_by: {
|
|
@@ -2253,8 +2383,36 @@ declare const SysWebhook: Omit<{
|
|
|
2253
2383
|
notNull?: boolean | undefined;
|
|
2254
2384
|
} | undefined;
|
|
2255
2385
|
readonly maxSize?: number | undefined;
|
|
2256
|
-
readonly
|
|
2257
|
-
readonly
|
|
2386
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2387
|
+
readonly _lockReason?: string | undefined;
|
|
2388
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2389
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2390
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2391
|
+
readonly _packageId?: string | undefined;
|
|
2392
|
+
readonly _packageVersion?: string | undefined;
|
|
2393
|
+
readonly lookupFilters?: {
|
|
2394
|
+
field: string;
|
|
2395
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2396
|
+
value: any;
|
|
2397
|
+
}[] | undefined;
|
|
2398
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2399
|
+
readonly expression?: {
|
|
2400
|
+
dialect: "cel" | "cron" | "template";
|
|
2401
|
+
source?: string | undefined;
|
|
2402
|
+
ast?: unknown;
|
|
2403
|
+
meta?: {
|
|
2404
|
+
rationale?: string | undefined;
|
|
2405
|
+
generatedBy?: string | undefined;
|
|
2406
|
+
} | undefined;
|
|
2407
|
+
} | undefined;
|
|
2408
|
+
readonly autonumberFormat?: string | undefined;
|
|
2409
|
+
readonly summaryOperations?: {
|
|
2410
|
+
object: string;
|
|
2411
|
+
field: string;
|
|
2412
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2413
|
+
relationshipField?: string | undefined;
|
|
2414
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2415
|
+
} | undefined;
|
|
2258
2416
|
readonly visibleWhen?: {
|
|
2259
2417
|
dialect: "cel" | "cron" | "template";
|
|
2260
2418
|
source?: string | undefined;
|
|
@@ -2264,16 +2422,16 @@ declare const SysWebhook: Omit<{
|
|
|
2264
2422
|
generatedBy?: string | undefined;
|
|
2265
2423
|
} | undefined;
|
|
2266
2424
|
} | undefined;
|
|
2425
|
+
readonly scale?: number | undefined;
|
|
2267
2426
|
readonly searchable?: boolean | undefined;
|
|
2268
2427
|
readonly unique?: boolean | "global" | undefined;
|
|
2428
|
+
readonly defaultValue?: unknown;
|
|
2269
2429
|
readonly maxLength?: number | undefined;
|
|
2270
2430
|
readonly minLength?: number | undefined;
|
|
2271
|
-
readonly scale?: number | undefined;
|
|
2272
2431
|
readonly min?: number | undefined;
|
|
2273
2432
|
readonly max?: number | undefined;
|
|
2274
2433
|
readonly accept?: string[] | undefined;
|
|
2275
2434
|
readonly reference?: string | undefined;
|
|
2276
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2277
2435
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2278
2436
|
readonly inlineTitle?: string | undefined;
|
|
2279
2437
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2290,32 +2448,11 @@ declare const SysWebhook: Omit<{
|
|
|
2290
2448
|
type?: string | undefined;
|
|
2291
2449
|
})[] | undefined;
|
|
2292
2450
|
readonly lookupPageSize?: number | undefined;
|
|
2293
|
-
readonly lookupFilters?: {
|
|
2294
|
-
field: string;
|
|
2295
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2296
|
-
value: any;
|
|
2297
|
-
}[] | undefined;
|
|
2298
2451
|
readonly dependsOn?: (string | {
|
|
2299
2452
|
field: string;
|
|
2300
2453
|
param?: string | undefined;
|
|
2301
2454
|
})[] | undefined;
|
|
2302
2455
|
readonly allowCreate?: boolean | undefined;
|
|
2303
|
-
readonly expression?: {
|
|
2304
|
-
dialect: "cel" | "cron" | "template";
|
|
2305
|
-
source?: string | undefined;
|
|
2306
|
-
ast?: unknown;
|
|
2307
|
-
meta?: {
|
|
2308
|
-
rationale?: string | undefined;
|
|
2309
|
-
generatedBy?: string | undefined;
|
|
2310
|
-
} | undefined;
|
|
2311
|
-
} | undefined;
|
|
2312
|
-
readonly summaryOperations?: {
|
|
2313
|
-
object: string;
|
|
2314
|
-
field: string;
|
|
2315
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2316
|
-
relationshipField?: string | undefined;
|
|
2317
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2318
|
-
} | undefined;
|
|
2319
2456
|
readonly language?: string | undefined;
|
|
2320
2457
|
readonly step?: number | undefined;
|
|
2321
2458
|
readonly currencyConfig?: {
|
|
@@ -2351,7 +2488,7 @@ declare const SysWebhook: Omit<{
|
|
|
2351
2488
|
readonly system?: boolean | undefined;
|
|
2352
2489
|
readonly sortable?: boolean | undefined;
|
|
2353
2490
|
readonly inlineHelpText?: string | undefined;
|
|
2354
|
-
readonly
|
|
2491
|
+
readonly externalId?: boolean | undefined;
|
|
2355
2492
|
readonly type: "select";
|
|
2356
2493
|
};
|
|
2357
2494
|
readonly customized: {
|
|
@@ -2384,8 +2521,36 @@ declare const SysWebhook: Omit<{
|
|
|
2384
2521
|
notNull?: boolean | undefined;
|
|
2385
2522
|
} | undefined;
|
|
2386
2523
|
readonly maxSize?: number | undefined;
|
|
2387
|
-
readonly
|
|
2388
|
-
readonly
|
|
2524
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2525
|
+
readonly _lockReason?: string | undefined;
|
|
2526
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2527
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2528
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2529
|
+
readonly _packageId?: string | undefined;
|
|
2530
|
+
readonly _packageVersion?: string | undefined;
|
|
2531
|
+
readonly lookupFilters?: {
|
|
2532
|
+
field: string;
|
|
2533
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2534
|
+
value: any;
|
|
2535
|
+
}[] | undefined;
|
|
2536
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2537
|
+
readonly expression?: {
|
|
2538
|
+
dialect: "cel" | "cron" | "template";
|
|
2539
|
+
source?: string | undefined;
|
|
2540
|
+
ast?: unknown;
|
|
2541
|
+
meta?: {
|
|
2542
|
+
rationale?: string | undefined;
|
|
2543
|
+
generatedBy?: string | undefined;
|
|
2544
|
+
} | undefined;
|
|
2545
|
+
} | undefined;
|
|
2546
|
+
readonly autonumberFormat?: string | undefined;
|
|
2547
|
+
readonly summaryOperations?: {
|
|
2548
|
+
object: string;
|
|
2549
|
+
field: string;
|
|
2550
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2551
|
+
relationshipField?: string | undefined;
|
|
2552
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2553
|
+
} | undefined;
|
|
2389
2554
|
readonly visibleWhen?: {
|
|
2390
2555
|
dialect: "cel" | "cron" | "template";
|
|
2391
2556
|
source?: string | undefined;
|
|
@@ -2395,16 +2560,16 @@ declare const SysWebhook: Omit<{
|
|
|
2395
2560
|
generatedBy?: string | undefined;
|
|
2396
2561
|
} | undefined;
|
|
2397
2562
|
} | undefined;
|
|
2563
|
+
readonly scale?: number | undefined;
|
|
2398
2564
|
readonly searchable?: boolean | undefined;
|
|
2399
2565
|
readonly unique?: boolean | "global" | undefined;
|
|
2566
|
+
readonly defaultValue?: unknown;
|
|
2400
2567
|
readonly maxLength?: number | undefined;
|
|
2401
2568
|
readonly minLength?: number | undefined;
|
|
2402
|
-
readonly scale?: number | undefined;
|
|
2403
2569
|
readonly min?: number | undefined;
|
|
2404
2570
|
readonly max?: number | undefined;
|
|
2405
2571
|
readonly accept?: string[] | undefined;
|
|
2406
2572
|
readonly reference?: string | undefined;
|
|
2407
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2408
2573
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2409
2574
|
readonly inlineTitle?: string | undefined;
|
|
2410
2575
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2421,32 +2586,11 @@ declare const SysWebhook: Omit<{
|
|
|
2421
2586
|
type?: string | undefined;
|
|
2422
2587
|
})[] | undefined;
|
|
2423
2588
|
readonly lookupPageSize?: number | undefined;
|
|
2424
|
-
readonly lookupFilters?: {
|
|
2425
|
-
field: string;
|
|
2426
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2427
|
-
value: any;
|
|
2428
|
-
}[] | undefined;
|
|
2429
2589
|
readonly dependsOn?: (string | {
|
|
2430
2590
|
field: string;
|
|
2431
2591
|
param?: string | undefined;
|
|
2432
2592
|
})[] | undefined;
|
|
2433
2593
|
readonly allowCreate?: boolean | undefined;
|
|
2434
|
-
readonly expression?: {
|
|
2435
|
-
dialect: "cel" | "cron" | "template";
|
|
2436
|
-
source?: string | undefined;
|
|
2437
|
-
ast?: unknown;
|
|
2438
|
-
meta?: {
|
|
2439
|
-
rationale?: string | undefined;
|
|
2440
|
-
generatedBy?: string | undefined;
|
|
2441
|
-
} | undefined;
|
|
2442
|
-
} | undefined;
|
|
2443
|
-
readonly summaryOperations?: {
|
|
2444
|
-
object: string;
|
|
2445
|
-
field: string;
|
|
2446
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2447
|
-
relationshipField?: string | undefined;
|
|
2448
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2449
|
-
} | undefined;
|
|
2450
2594
|
readonly language?: string | undefined;
|
|
2451
2595
|
readonly step?: number | undefined;
|
|
2452
2596
|
readonly currencyConfig?: {
|
|
@@ -2482,7 +2626,7 @@ declare const SysWebhook: Omit<{
|
|
|
2482
2626
|
readonly system?: boolean | undefined;
|
|
2483
2627
|
readonly sortable?: boolean | undefined;
|
|
2484
2628
|
readonly inlineHelpText?: string | undefined;
|
|
2485
|
-
readonly
|
|
2629
|
+
readonly externalId?: boolean | undefined;
|
|
2486
2630
|
readonly type: "boolean";
|
|
2487
2631
|
};
|
|
2488
2632
|
readonly created_at: {
|
|
@@ -2515,8 +2659,36 @@ declare const SysWebhook: Omit<{
|
|
|
2515
2659
|
notNull?: boolean | undefined;
|
|
2516
2660
|
} | undefined;
|
|
2517
2661
|
readonly maxSize?: number | undefined;
|
|
2518
|
-
readonly
|
|
2519
|
-
readonly
|
|
2662
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2663
|
+
readonly _lockReason?: string | undefined;
|
|
2664
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2665
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2666
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2667
|
+
readonly _packageId?: string | undefined;
|
|
2668
|
+
readonly _packageVersion?: string | undefined;
|
|
2669
|
+
readonly lookupFilters?: {
|
|
2670
|
+
field: string;
|
|
2671
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2672
|
+
value: any;
|
|
2673
|
+
}[] | undefined;
|
|
2674
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2675
|
+
readonly expression?: {
|
|
2676
|
+
dialect: "cel" | "cron" | "template";
|
|
2677
|
+
source?: string | undefined;
|
|
2678
|
+
ast?: unknown;
|
|
2679
|
+
meta?: {
|
|
2680
|
+
rationale?: string | undefined;
|
|
2681
|
+
generatedBy?: string | undefined;
|
|
2682
|
+
} | undefined;
|
|
2683
|
+
} | undefined;
|
|
2684
|
+
readonly autonumberFormat?: string | undefined;
|
|
2685
|
+
readonly summaryOperations?: {
|
|
2686
|
+
object: string;
|
|
2687
|
+
field: string;
|
|
2688
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2689
|
+
relationshipField?: string | undefined;
|
|
2690
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2691
|
+
} | undefined;
|
|
2520
2692
|
readonly visibleWhen?: {
|
|
2521
2693
|
dialect: "cel" | "cron" | "template";
|
|
2522
2694
|
source?: string | undefined;
|
|
@@ -2526,16 +2698,16 @@ declare const SysWebhook: Omit<{
|
|
|
2526
2698
|
generatedBy?: string | undefined;
|
|
2527
2699
|
} | undefined;
|
|
2528
2700
|
} | undefined;
|
|
2701
|
+
readonly scale?: number | undefined;
|
|
2529
2702
|
readonly searchable?: boolean | undefined;
|
|
2530
2703
|
readonly unique?: boolean | "global" | undefined;
|
|
2704
|
+
readonly defaultValue?: unknown;
|
|
2531
2705
|
readonly maxLength?: number | undefined;
|
|
2532
2706
|
readonly minLength?: number | undefined;
|
|
2533
|
-
readonly scale?: number | undefined;
|
|
2534
2707
|
readonly min?: number | undefined;
|
|
2535
2708
|
readonly max?: number | undefined;
|
|
2536
2709
|
readonly accept?: string[] | undefined;
|
|
2537
2710
|
readonly reference?: string | undefined;
|
|
2538
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2539
2711
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2540
2712
|
readonly inlineTitle?: string | undefined;
|
|
2541
2713
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2552,32 +2724,11 @@ declare const SysWebhook: Omit<{
|
|
|
2552
2724
|
type?: string | undefined;
|
|
2553
2725
|
})[] | undefined;
|
|
2554
2726
|
readonly lookupPageSize?: number | undefined;
|
|
2555
|
-
readonly lookupFilters?: {
|
|
2556
|
-
field: string;
|
|
2557
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2558
|
-
value: any;
|
|
2559
|
-
}[] | undefined;
|
|
2560
2727
|
readonly dependsOn?: (string | {
|
|
2561
2728
|
field: string;
|
|
2562
2729
|
param?: string | undefined;
|
|
2563
2730
|
})[] | undefined;
|
|
2564
2731
|
readonly allowCreate?: boolean | undefined;
|
|
2565
|
-
readonly expression?: {
|
|
2566
|
-
dialect: "cel" | "cron" | "template";
|
|
2567
|
-
source?: string | undefined;
|
|
2568
|
-
ast?: unknown;
|
|
2569
|
-
meta?: {
|
|
2570
|
-
rationale?: string | undefined;
|
|
2571
|
-
generatedBy?: string | undefined;
|
|
2572
|
-
} | undefined;
|
|
2573
|
-
} | undefined;
|
|
2574
|
-
readonly summaryOperations?: {
|
|
2575
|
-
object: string;
|
|
2576
|
-
field: string;
|
|
2577
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2578
|
-
relationshipField?: string | undefined;
|
|
2579
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2580
|
-
} | undefined;
|
|
2581
2732
|
readonly language?: string | undefined;
|
|
2582
2733
|
readonly step?: number | undefined;
|
|
2583
2734
|
readonly currencyConfig?: {
|
|
@@ -2613,7 +2764,7 @@ declare const SysWebhook: Omit<{
|
|
|
2613
2764
|
readonly system?: boolean | undefined;
|
|
2614
2765
|
readonly sortable?: boolean | undefined;
|
|
2615
2766
|
readonly inlineHelpText?: string | undefined;
|
|
2616
|
-
readonly
|
|
2767
|
+
readonly externalId?: boolean | undefined;
|
|
2617
2768
|
readonly type: "datetime";
|
|
2618
2769
|
};
|
|
2619
2770
|
readonly updated_at: {
|
|
@@ -2646,8 +2797,36 @@ declare const SysWebhook: Omit<{
|
|
|
2646
2797
|
notNull?: boolean | undefined;
|
|
2647
2798
|
} | undefined;
|
|
2648
2799
|
readonly maxSize?: number | undefined;
|
|
2649
|
-
readonly
|
|
2650
|
-
readonly
|
|
2800
|
+
readonly _lock?: "full" | "none" | "no-overlay" | "no-delete" | undefined;
|
|
2801
|
+
readonly _lockReason?: string | undefined;
|
|
2802
|
+
readonly _lockSource?: "artifact" | "package" | "env-forced" | undefined;
|
|
2803
|
+
readonly _lockDocsUrl?: string | undefined;
|
|
2804
|
+
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2805
|
+
readonly _packageId?: string | undefined;
|
|
2806
|
+
readonly _packageVersion?: string | undefined;
|
|
2807
|
+
readonly lookupFilters?: {
|
|
2808
|
+
field: string;
|
|
2809
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2810
|
+
value: any;
|
|
2811
|
+
}[] | undefined;
|
|
2812
|
+
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2813
|
+
readonly expression?: {
|
|
2814
|
+
dialect: "cel" | "cron" | "template";
|
|
2815
|
+
source?: string | undefined;
|
|
2816
|
+
ast?: unknown;
|
|
2817
|
+
meta?: {
|
|
2818
|
+
rationale?: string | undefined;
|
|
2819
|
+
generatedBy?: string | undefined;
|
|
2820
|
+
} | undefined;
|
|
2821
|
+
} | undefined;
|
|
2822
|
+
readonly autonumberFormat?: string | undefined;
|
|
2823
|
+
readonly summaryOperations?: {
|
|
2824
|
+
object: string;
|
|
2825
|
+
field: string;
|
|
2826
|
+
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2827
|
+
relationshipField?: string | undefined;
|
|
2828
|
+
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2829
|
+
} | undefined;
|
|
2651
2830
|
readonly visibleWhen?: {
|
|
2652
2831
|
dialect: "cel" | "cron" | "template";
|
|
2653
2832
|
source?: string | undefined;
|
|
@@ -2657,16 +2836,16 @@ declare const SysWebhook: Omit<{
|
|
|
2657
2836
|
generatedBy?: string | undefined;
|
|
2658
2837
|
} | undefined;
|
|
2659
2838
|
} | undefined;
|
|
2839
|
+
readonly scale?: number | undefined;
|
|
2660
2840
|
readonly searchable?: boolean | undefined;
|
|
2661
2841
|
readonly unique?: boolean | "global" | undefined;
|
|
2842
|
+
readonly defaultValue?: unknown;
|
|
2662
2843
|
readonly maxLength?: number | undefined;
|
|
2663
2844
|
readonly minLength?: number | undefined;
|
|
2664
|
-
readonly scale?: number | undefined;
|
|
2665
2845
|
readonly min?: number | undefined;
|
|
2666
2846
|
readonly max?: number | undefined;
|
|
2667
2847
|
readonly accept?: string[] | undefined;
|
|
2668
2848
|
readonly reference?: string | undefined;
|
|
2669
|
-
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2670
2849
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2671
2850
|
readonly inlineTitle?: string | undefined;
|
|
2672
2851
|
readonly inlineColumns?: any[] | undefined;
|
|
@@ -2683,32 +2862,11 @@ declare const SysWebhook: Omit<{
|
|
|
2683
2862
|
type?: string | undefined;
|
|
2684
2863
|
})[] | undefined;
|
|
2685
2864
|
readonly lookupPageSize?: number | undefined;
|
|
2686
|
-
readonly lookupFilters?: {
|
|
2687
|
-
field: string;
|
|
2688
|
-
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2689
|
-
value: any;
|
|
2690
|
-
}[] | undefined;
|
|
2691
2865
|
readonly dependsOn?: (string | {
|
|
2692
2866
|
field: string;
|
|
2693
2867
|
param?: string | undefined;
|
|
2694
2868
|
})[] | undefined;
|
|
2695
2869
|
readonly allowCreate?: boolean | undefined;
|
|
2696
|
-
readonly expression?: {
|
|
2697
|
-
dialect: "cel" | "cron" | "template";
|
|
2698
|
-
source?: string | undefined;
|
|
2699
|
-
ast?: unknown;
|
|
2700
|
-
meta?: {
|
|
2701
|
-
rationale?: string | undefined;
|
|
2702
|
-
generatedBy?: string | undefined;
|
|
2703
|
-
} | undefined;
|
|
2704
|
-
} | undefined;
|
|
2705
|
-
readonly summaryOperations?: {
|
|
2706
|
-
object: string;
|
|
2707
|
-
field: string;
|
|
2708
|
-
function: "min" | "max" | "count" | "sum" | "avg";
|
|
2709
|
-
relationshipField?: string | undefined;
|
|
2710
|
-
filter?: _objectstack_spec_data.FilterCondition | undefined;
|
|
2711
|
-
} | undefined;
|
|
2712
2870
|
readonly language?: string | undefined;
|
|
2713
2871
|
readonly step?: number | undefined;
|
|
2714
2872
|
readonly currencyConfig?: {
|
|
@@ -2744,7 +2902,7 @@ declare const SysWebhook: Omit<{
|
|
|
2744
2902
|
readonly system?: boolean | undefined;
|
|
2745
2903
|
readonly sortable?: boolean | undefined;
|
|
2746
2904
|
readonly inlineHelpText?: string | undefined;
|
|
2747
|
-
readonly
|
|
2905
|
+
readonly externalId?: boolean | undefined;
|
|
2748
2906
|
readonly type: "datetime";
|
|
2749
2907
|
};
|
|
2750
2908
|
};
|