@objectstack/plugin-webhooks 17.0.0-rc.0 → 17.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +379 -0
- package/dist/index.cjs +31 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +31 -12
- package/dist/index.js.map +1 -1
- package/dist/schema.d.cts +190 -175
- package/dist/schema.d.ts +190 -175
- package/package.json +11 -5
- package/.turbo/turbo-build.log +0 -36
- package/scripts/i18n-extract.config.ts +0 -34
- package/src/auto-enqueuer.test.ts +0 -431
- package/src/auto-enqueuer.ts +0 -383
- package/src/bootstrap-declared-webhooks.test.ts +0 -283
- package/src/bootstrap-declared-webhooks.ts +0 -205
- package/src/index.ts +0 -29
- package/src/schema.ts +0 -21
- package/src/sys-webhook.object.ts +0 -231
- package/src/translations/bundle-ownership.test.ts +0 -41
- package/src/translations/en.objects.generated.ts +0 -101
- package/src/translations/es-ES.objects.generated.ts +0 -101
- package/src/translations/index.ts +0 -23
- package/src/translations/ja-JP.objects.generated.ts +0 -101
- package/src/translations/zh-CN.objects.generated.ts +0 -101
- package/src/webhook-outbox-plugin.ts +0 -305
- package/src/webhook-provenance.ts +0 -86
- package/tsconfig.json +0 -10
- package/tsup.config.ts +0 -14
package/dist/schema.d.cts
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" | "lookup" | "master_detail" | "percent" | "
|
|
42
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "user" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "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;
|
|
@@ -53,6 +53,9 @@ declare const SysWebhook: Omit<{
|
|
|
53
53
|
label?: string | undefined;
|
|
54
54
|
description?: string | undefined;
|
|
55
55
|
format?: string | undefined;
|
|
56
|
+
storage?: {
|
|
57
|
+
notNull?: boolean | undefined;
|
|
58
|
+
} | undefined;
|
|
56
59
|
defaultValue?: unknown;
|
|
57
60
|
maxLength?: number | undefined;
|
|
58
61
|
minLength?: number | undefined;
|
|
@@ -104,7 +107,7 @@ declare const SysWebhook: Omit<{
|
|
|
104
107
|
lookupPageSize?: number | undefined;
|
|
105
108
|
lookupFilters?: {
|
|
106
109
|
field: string;
|
|
107
|
-
operator: "in" | "eq" | "ne" | "
|
|
110
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
108
111
|
value: any;
|
|
109
112
|
}[] | undefined;
|
|
110
113
|
dependsOn?: (string | {
|
|
@@ -312,7 +315,7 @@ declare const SysWebhook: Omit<{
|
|
|
312
315
|
} | undefined;
|
|
313
316
|
indexes?: {
|
|
314
317
|
fields: string[];
|
|
315
|
-
type: "hash" | "
|
|
318
|
+
type: "hash" | "fulltext" | "btree" | "gin" | "gist";
|
|
316
319
|
unique: boolean | "global";
|
|
317
320
|
name?: string | undefined;
|
|
318
321
|
partial?: string | undefined;
|
|
@@ -399,7 +402,7 @@ declare const SysWebhook: Omit<{
|
|
|
399
402
|
field: string;
|
|
400
403
|
label?: string | undefined;
|
|
401
404
|
width?: number | undefined;
|
|
402
|
-
align?: "left" | "
|
|
405
|
+
align?: "left" | "right" | "center" | undefined;
|
|
403
406
|
hidden?: boolean | undefined;
|
|
404
407
|
sortable?: boolean | undefined;
|
|
405
408
|
resizable?: boolean | undefined;
|
|
@@ -423,49 +426,52 @@ declare const SysWebhook: Omit<{
|
|
|
423
426
|
}[] | undefined;
|
|
424
427
|
filter?: {
|
|
425
428
|
field: string;
|
|
426
|
-
operator: "in" | "contains" | "after" | "
|
|
429
|
+
operator: "in" | "contains" | "after" | "equals" | "not_equals" | "greater_than" | "greater_than_or_equal" | "less_than" | "less_than_or_equal" | "before" | "not_in" | "not_contains" | "starts_with" | "ends_with" | "between" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty";
|
|
427
430
|
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
428
431
|
}[] | undefined;
|
|
429
432
|
description?: string | undefined;
|
|
430
433
|
label?: string | undefined;
|
|
431
434
|
name?: string | undefined;
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
md?: number | undefined;
|
|
439
|
-
lg?: number | undefined;
|
|
440
|
-
xl?: number | undefined;
|
|
441
|
-
'2xl'?: number | undefined;
|
|
442
|
-
} | undefined;
|
|
443
|
-
order?: {
|
|
444
|
-
xs?: number | undefined;
|
|
445
|
-
sm?: number | undefined;
|
|
446
|
-
md?: number | undefined;
|
|
447
|
-
lg?: number | undefined;
|
|
448
|
-
xl?: number | undefined;
|
|
449
|
-
'2xl'?: number | undefined;
|
|
450
|
-
} | undefined;
|
|
435
|
+
tree?: {
|
|
436
|
+
[x: string]: unknown;
|
|
437
|
+
parentField?: string | undefined;
|
|
438
|
+
labelField?: string | undefined;
|
|
439
|
+
fields?: string[] | undefined;
|
|
440
|
+
defaultExpandedDepth?: number | undefined;
|
|
451
441
|
} | undefined;
|
|
442
|
+
inlineEdit?: boolean | undefined;
|
|
452
443
|
navigation?: {
|
|
453
|
-
mode: "none" | "split" | "page" | "
|
|
444
|
+
mode: "none" | "split" | "page" | "modal" | "drawer" | "popover" | "new_window";
|
|
454
445
|
preventNavigation: boolean;
|
|
455
446
|
openNewTab: boolean;
|
|
456
|
-
size: "full" | "md" | "
|
|
447
|
+
size: "full" | "md" | "auto" | "sm" | "lg" | "xl";
|
|
457
448
|
view?: string | undefined;
|
|
458
449
|
width?: string | number | undefined;
|
|
459
450
|
} | undefined;
|
|
460
|
-
sharing?: {
|
|
461
|
-
type: "personal" | "collaborative";
|
|
462
|
-
lockedBy?: string | undefined;
|
|
463
|
-
} | undefined;
|
|
464
451
|
aria?: {
|
|
465
452
|
ariaLabel?: string | undefined;
|
|
466
453
|
ariaDescribedBy?: string | undefined;
|
|
467
454
|
role?: string | undefined;
|
|
468
455
|
} | undefined;
|
|
456
|
+
sharing?: {
|
|
457
|
+
type: "personal" | "collaborative";
|
|
458
|
+
lockedBy?: string | undefined;
|
|
459
|
+
} | undefined;
|
|
460
|
+
tabs?: {
|
|
461
|
+
name: string;
|
|
462
|
+
pinned: boolean;
|
|
463
|
+
isDefault: boolean;
|
|
464
|
+
visible: boolean;
|
|
465
|
+
label?: string | undefined;
|
|
466
|
+
icon?: string | undefined;
|
|
467
|
+
view?: string | undefined;
|
|
468
|
+
filter?: {
|
|
469
|
+
field: string;
|
|
470
|
+
operator: "in" | "contains" | "after" | "equals" | "not_equals" | "greater_than" | "greater_than_or_equal" | "less_than" | "less_than_or_equal" | "before" | "not_in" | "not_contains" | "starts_with" | "ends_with" | "between" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty";
|
|
471
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
472
|
+
}[] | undefined;
|
|
473
|
+
order?: number | undefined;
|
|
474
|
+
}[] | undefined;
|
|
469
475
|
data?: {
|
|
470
476
|
provider: "object";
|
|
471
477
|
object: string;
|
|
@@ -493,20 +499,17 @@ declare const SysWebhook: Omit<{
|
|
|
493
499
|
schemaId: string;
|
|
494
500
|
schema?: Record<string, unknown> | undefined;
|
|
495
501
|
} | undefined;
|
|
502
|
+
pagination?: {
|
|
503
|
+
pageSize: number;
|
|
504
|
+
pageSizeOptions?: number[] | undefined;
|
|
505
|
+
} | undefined;
|
|
496
506
|
emptyState?: {
|
|
497
507
|
title?: string | undefined;
|
|
498
508
|
message?: string | undefined;
|
|
499
509
|
icon?: string | undefined;
|
|
500
510
|
} | undefined;
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
parentField?: string | undefined;
|
|
504
|
-
labelField?: string | undefined;
|
|
505
|
-
fields?: string[] | undefined;
|
|
506
|
-
defaultExpandedDepth?: number | undefined;
|
|
507
|
-
} | undefined;
|
|
508
|
-
inlineEdit?: boolean | undefined;
|
|
509
|
-
virtualScroll?: boolean | undefined;
|
|
511
|
+
responsive?: undefined;
|
|
512
|
+
performance?: undefined;
|
|
510
513
|
resizable?: boolean | undefined;
|
|
511
514
|
kanban?: {
|
|
512
515
|
groupByField: string;
|
|
@@ -566,27 +569,12 @@ declare const SysWebhook: Omit<{
|
|
|
566
569
|
autoZoomToFilter?: boolean | undefined;
|
|
567
570
|
} | undefined;
|
|
568
571
|
chart?: {
|
|
569
|
-
chartType: "bar" | "line" | "
|
|
572
|
+
chartType: "bar" | "line" | "area" | "pie" | "scatter";
|
|
570
573
|
dataset: string;
|
|
571
574
|
values: string[];
|
|
572
575
|
dimensions?: string[] | undefined;
|
|
573
576
|
} | undefined;
|
|
574
577
|
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
575
|
-
tabs?: {
|
|
576
|
-
name: string;
|
|
577
|
-
pinned: boolean;
|
|
578
|
-
isDefault: boolean;
|
|
579
|
-
visible: boolean;
|
|
580
|
-
label?: string | undefined;
|
|
581
|
-
icon?: string | undefined;
|
|
582
|
-
view?: string | undefined;
|
|
583
|
-
filter?: {
|
|
584
|
-
field: string;
|
|
585
|
-
operator: "in" | "contains" | "after" | "starts_with" | "ends_with" | "not_in" | "not_contains" | "between" | "is_null" | "is_not_null" | "is_empty" | "is_not_empty" | "equals" | "not_equals" | "greater_than" | "less_than" | "greater_than_or_equal" | "less_than_or_equal" | "before";
|
|
586
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
587
|
-
}[] | undefined;
|
|
588
|
-
order?: number | undefined;
|
|
589
|
-
}[] | undefined;
|
|
590
578
|
searchableFields?: string[] | undefined;
|
|
591
579
|
filterableFields?: string[] | undefined;
|
|
592
580
|
striped?: boolean | undefined;
|
|
@@ -595,10 +583,6 @@ declare const SysWebhook: Omit<{
|
|
|
595
583
|
selection?: {
|
|
596
584
|
type: "none" | "multiple" | "single";
|
|
597
585
|
} | undefined;
|
|
598
|
-
pagination?: {
|
|
599
|
-
pageSize: number;
|
|
600
|
-
pageSizeOptions?: number[] | undefined;
|
|
601
|
-
} | undefined;
|
|
602
586
|
grouping?: {
|
|
603
587
|
fields: {
|
|
604
588
|
field: string;
|
|
@@ -615,6 +599,7 @@ declare const SysWebhook: Omit<{
|
|
|
615
599
|
rowActions?: string[] | undefined;
|
|
616
600
|
bulkActions?: string[] | undefined;
|
|
617
601
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
602
|
+
virtualScroll?: boolean | undefined;
|
|
618
603
|
conditionalFormatting?: {
|
|
619
604
|
condition: {
|
|
620
605
|
dialect: "cel" | "cron" | "template";
|
|
@@ -658,18 +643,6 @@ declare const SysWebhook: Omit<{
|
|
|
658
643
|
} | undefined;
|
|
659
644
|
showRecordCount?: boolean | undefined;
|
|
660
645
|
allowPrinting?: boolean | undefined;
|
|
661
|
-
performance?: {
|
|
662
|
-
lazyLoad?: boolean | undefined;
|
|
663
|
-
virtualScroll?: {
|
|
664
|
-
enabled: boolean;
|
|
665
|
-
itemHeight?: number | undefined;
|
|
666
|
-
overscan?: number | undefined;
|
|
667
|
-
} | undefined;
|
|
668
|
-
cacheStrategy?: "none" | "cache-first" | "network-first" | "stale-while-revalidate" | undefined;
|
|
669
|
-
prefetch?: boolean | undefined;
|
|
670
|
-
pageSize?: number | undefined;
|
|
671
|
-
debounceMs?: number | undefined;
|
|
672
|
-
} | undefined;
|
|
673
646
|
userFilters?: {
|
|
674
647
|
element: "toggle" | "dropdown";
|
|
675
648
|
fields?: {
|
|
@@ -735,7 +708,7 @@ declare const SysWebhook: Omit<{
|
|
|
735
708
|
field?: string | undefined;
|
|
736
709
|
objectOverride?: string | undefined;
|
|
737
710
|
label?: string | undefined;
|
|
738
|
-
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "
|
|
711
|
+
type?: "number" | "boolean" | "date" | "record" | "file" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "text" | "textarea" | "email" | "phone" | "password" | "secret" | "markdown" | "html" | "richtext" | "time" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "user" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "tags" | "vector" | undefined;
|
|
739
712
|
options?: {
|
|
740
713
|
label: string;
|
|
741
714
|
value: string;
|
|
@@ -759,7 +732,7 @@ declare const SysWebhook: Omit<{
|
|
|
759
732
|
} | undefined;
|
|
760
733
|
requiresFeature?: "twoFactor" | "passkeys" | "magicLink" | "organization" | "multiOrgEnabled" | "degradedTenancy" | "oidcProvider" | "sso" | "ssoEnforced" | "deviceAuthorization" | "admin" | "phoneNumber" | "phoneNumberOtp" | undefined;
|
|
761
734
|
}, "requiresFeature">[] | undefined;
|
|
762
|
-
variant?: "link" | "
|
|
735
|
+
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
763
736
|
order?: number | undefined;
|
|
764
737
|
confirmText?: string | undefined;
|
|
765
738
|
successMessage?: string | undefined;
|
|
@@ -769,11 +742,11 @@ declare const SysWebhook: Omit<{
|
|
|
769
742
|
title?: string | undefined;
|
|
770
743
|
description?: string | undefined;
|
|
771
744
|
acknowledge?: string | undefined;
|
|
772
|
-
format?: "
|
|
745
|
+
format?: "text" | "secret" | "json" | "qrcode" | "code-list" | undefined;
|
|
773
746
|
fields?: {
|
|
774
747
|
path: string;
|
|
775
748
|
label?: string | undefined;
|
|
776
|
-
format?: "
|
|
749
|
+
format?: "text" | "secret" | "json" | "qrcode" | "code-list" | undefined;
|
|
777
750
|
}[] | undefined;
|
|
778
751
|
} | undefined;
|
|
779
752
|
visible?: {
|
|
@@ -796,8 +769,8 @@ declare const SysWebhook: Omit<{
|
|
|
796
769
|
} | undefined;
|
|
797
770
|
} | undefined;
|
|
798
771
|
requiredPermissions?: string[] | undefined;
|
|
799
|
-
shortcut?:
|
|
800
|
-
bulkEnabled?:
|
|
772
|
+
shortcut?: undefined;
|
|
773
|
+
bulkEnabled?: undefined;
|
|
801
774
|
ai?: {
|
|
802
775
|
exposed: boolean;
|
|
803
776
|
description?: string | undefined;
|
|
@@ -966,15 +939,12 @@ declare const SysWebhook: Omit<{
|
|
|
966
939
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
967
940
|
readonly widget?: string | undefined;
|
|
968
941
|
readonly multiple?: boolean | undefined;
|
|
942
|
+
readonly storage?: {
|
|
943
|
+
notNull?: boolean | undefined;
|
|
944
|
+
} | undefined;
|
|
969
945
|
readonly maxSize?: number | undefined;
|
|
970
946
|
readonly externalId?: boolean | undefined;
|
|
971
947
|
readonly defaultValue?: unknown;
|
|
972
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
973
|
-
readonly group?: string | undefined;
|
|
974
|
-
readonly hidden?: boolean | undefined;
|
|
975
|
-
readonly system?: boolean | undefined;
|
|
976
|
-
readonly min?: number | undefined;
|
|
977
|
-
readonly max?: number | undefined;
|
|
978
948
|
readonly visibleWhen?: {
|
|
979
949
|
dialect: "cel" | "cron" | "template";
|
|
980
950
|
source?: string | undefined;
|
|
@@ -989,6 +959,8 @@ declare const SysWebhook: Omit<{
|
|
|
989
959
|
readonly maxLength?: number | undefined;
|
|
990
960
|
readonly minLength?: number | undefined;
|
|
991
961
|
readonly scale?: number | undefined;
|
|
962
|
+
readonly min?: number | undefined;
|
|
963
|
+
readonly max?: number | undefined;
|
|
992
964
|
readonly accept?: string[] | undefined;
|
|
993
965
|
readonly reference?: string | undefined;
|
|
994
966
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -1010,7 +982,7 @@ declare const SysWebhook: Omit<{
|
|
|
1010
982
|
readonly lookupPageSize?: number | undefined;
|
|
1011
983
|
readonly lookupFilters?: {
|
|
1012
984
|
field: string;
|
|
1013
|
-
operator: "in" | "eq" | "ne" | "
|
|
985
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1014
986
|
value: any;
|
|
1015
987
|
}[] | undefined;
|
|
1016
988
|
readonly dependsOn?: (string | {
|
|
@@ -1043,6 +1015,7 @@ declare const SysWebhook: Omit<{
|
|
|
1043
1015
|
} | undefined;
|
|
1044
1016
|
readonly dimensions?: number | undefined;
|
|
1045
1017
|
readonly trackHistory?: boolean | undefined;
|
|
1018
|
+
readonly group?: string | undefined;
|
|
1046
1019
|
readonly readonlyWhen?: {
|
|
1047
1020
|
dialect: "cel" | "cron" | "template";
|
|
1048
1021
|
source?: string | undefined;
|
|
@@ -1062,7 +1035,10 @@ declare const SysWebhook: Omit<{
|
|
|
1062
1035
|
} | undefined;
|
|
1063
1036
|
} | undefined;
|
|
1064
1037
|
readonly conditionalRequired?: undefined;
|
|
1038
|
+
readonly hidden?: boolean | undefined;
|
|
1039
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1065
1040
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1041
|
+
readonly system?: boolean | undefined;
|
|
1066
1042
|
readonly sortable?: boolean | undefined;
|
|
1067
1043
|
readonly inlineHelpText?: string | undefined;
|
|
1068
1044
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1094,15 +1070,12 @@ declare const SysWebhook: Omit<{
|
|
|
1094
1070
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1095
1071
|
readonly widget?: string | undefined;
|
|
1096
1072
|
readonly multiple?: boolean | undefined;
|
|
1073
|
+
readonly storage?: {
|
|
1074
|
+
notNull?: boolean | undefined;
|
|
1075
|
+
} | undefined;
|
|
1097
1076
|
readonly maxSize?: number | undefined;
|
|
1098
1077
|
readonly externalId?: boolean | undefined;
|
|
1099
1078
|
readonly defaultValue?: unknown;
|
|
1100
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1101
|
-
readonly group?: string | undefined;
|
|
1102
|
-
readonly hidden?: boolean | undefined;
|
|
1103
|
-
readonly system?: boolean | undefined;
|
|
1104
|
-
readonly min?: number | undefined;
|
|
1105
|
-
readonly max?: number | undefined;
|
|
1106
1079
|
readonly visibleWhen?: {
|
|
1107
1080
|
dialect: "cel" | "cron" | "template";
|
|
1108
1081
|
source?: string | undefined;
|
|
@@ -1117,6 +1090,8 @@ declare const SysWebhook: Omit<{
|
|
|
1117
1090
|
readonly maxLength?: number | undefined;
|
|
1118
1091
|
readonly minLength?: number | undefined;
|
|
1119
1092
|
readonly scale?: number | undefined;
|
|
1093
|
+
readonly min?: number | undefined;
|
|
1094
|
+
readonly max?: number | undefined;
|
|
1120
1095
|
readonly accept?: string[] | undefined;
|
|
1121
1096
|
readonly reference?: string | undefined;
|
|
1122
1097
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -1138,7 +1113,7 @@ declare const SysWebhook: Omit<{
|
|
|
1138
1113
|
readonly lookupPageSize?: number | undefined;
|
|
1139
1114
|
readonly lookupFilters?: {
|
|
1140
1115
|
field: string;
|
|
1141
|
-
operator: "in" | "eq" | "ne" | "
|
|
1116
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1142
1117
|
value: any;
|
|
1143
1118
|
}[] | undefined;
|
|
1144
1119
|
readonly dependsOn?: (string | {
|
|
@@ -1171,6 +1146,7 @@ declare const SysWebhook: Omit<{
|
|
|
1171
1146
|
} | undefined;
|
|
1172
1147
|
readonly dimensions?: number | undefined;
|
|
1173
1148
|
readonly trackHistory?: boolean | undefined;
|
|
1149
|
+
readonly group?: string | undefined;
|
|
1174
1150
|
readonly readonlyWhen?: {
|
|
1175
1151
|
dialect: "cel" | "cron" | "template";
|
|
1176
1152
|
source?: string | undefined;
|
|
@@ -1190,7 +1166,10 @@ declare const SysWebhook: Omit<{
|
|
|
1190
1166
|
} | undefined;
|
|
1191
1167
|
} | undefined;
|
|
1192
1168
|
readonly conditionalRequired?: undefined;
|
|
1169
|
+
readonly hidden?: boolean | undefined;
|
|
1170
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1193
1171
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1172
|
+
readonly system?: boolean | undefined;
|
|
1194
1173
|
readonly sortable?: boolean | undefined;
|
|
1195
1174
|
readonly inlineHelpText?: string | undefined;
|
|
1196
1175
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1222,15 +1201,12 @@ declare const SysWebhook: Omit<{
|
|
|
1222
1201
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1223
1202
|
readonly widget?: string | undefined;
|
|
1224
1203
|
readonly multiple?: boolean | undefined;
|
|
1204
|
+
readonly storage?: {
|
|
1205
|
+
notNull?: boolean | undefined;
|
|
1206
|
+
} | undefined;
|
|
1225
1207
|
readonly maxSize?: number | undefined;
|
|
1226
1208
|
readonly externalId?: boolean | undefined;
|
|
1227
1209
|
readonly defaultValue?: unknown;
|
|
1228
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1229
|
-
readonly group?: string | undefined;
|
|
1230
|
-
readonly hidden?: boolean | undefined;
|
|
1231
|
-
readonly system?: boolean | undefined;
|
|
1232
|
-
readonly min?: number | undefined;
|
|
1233
|
-
readonly max?: number | undefined;
|
|
1234
1210
|
readonly visibleWhen?: {
|
|
1235
1211
|
dialect: "cel" | "cron" | "template";
|
|
1236
1212
|
source?: string | undefined;
|
|
@@ -1245,6 +1221,8 @@ declare const SysWebhook: Omit<{
|
|
|
1245
1221
|
readonly maxLength?: number | undefined;
|
|
1246
1222
|
readonly minLength?: number | undefined;
|
|
1247
1223
|
readonly scale?: number | undefined;
|
|
1224
|
+
readonly min?: number | undefined;
|
|
1225
|
+
readonly max?: number | undefined;
|
|
1248
1226
|
readonly accept?: string[] | undefined;
|
|
1249
1227
|
readonly reference?: string | undefined;
|
|
1250
1228
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -1266,7 +1244,7 @@ declare const SysWebhook: Omit<{
|
|
|
1266
1244
|
readonly lookupPageSize?: number | undefined;
|
|
1267
1245
|
readonly lookupFilters?: {
|
|
1268
1246
|
field: string;
|
|
1269
|
-
operator: "in" | "eq" | "ne" | "
|
|
1247
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1270
1248
|
value: any;
|
|
1271
1249
|
}[] | undefined;
|
|
1272
1250
|
readonly dependsOn?: (string | {
|
|
@@ -1299,6 +1277,7 @@ declare const SysWebhook: Omit<{
|
|
|
1299
1277
|
} | undefined;
|
|
1300
1278
|
readonly dimensions?: number | undefined;
|
|
1301
1279
|
readonly trackHistory?: boolean | undefined;
|
|
1280
|
+
readonly group?: string | undefined;
|
|
1302
1281
|
readonly readonlyWhen?: {
|
|
1303
1282
|
dialect: "cel" | "cron" | "template";
|
|
1304
1283
|
source?: string | undefined;
|
|
@@ -1318,7 +1297,10 @@ declare const SysWebhook: Omit<{
|
|
|
1318
1297
|
} | undefined;
|
|
1319
1298
|
} | undefined;
|
|
1320
1299
|
readonly conditionalRequired?: undefined;
|
|
1300
|
+
readonly hidden?: boolean | undefined;
|
|
1301
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1321
1302
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1303
|
+
readonly system?: boolean | undefined;
|
|
1322
1304
|
readonly sortable?: boolean | undefined;
|
|
1323
1305
|
readonly inlineHelpText?: string | undefined;
|
|
1324
1306
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1350,15 +1332,12 @@ declare const SysWebhook: Omit<{
|
|
|
1350
1332
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1351
1333
|
readonly widget?: string | undefined;
|
|
1352
1334
|
readonly multiple?: boolean | undefined;
|
|
1335
|
+
readonly storage?: {
|
|
1336
|
+
notNull?: boolean | undefined;
|
|
1337
|
+
} | undefined;
|
|
1353
1338
|
readonly maxSize?: number | undefined;
|
|
1354
1339
|
readonly externalId?: boolean | undefined;
|
|
1355
1340
|
readonly defaultValue?: unknown;
|
|
1356
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1357
|
-
readonly group?: string | undefined;
|
|
1358
|
-
readonly hidden?: boolean | undefined;
|
|
1359
|
-
readonly system?: boolean | undefined;
|
|
1360
|
-
readonly min?: number | undefined;
|
|
1361
|
-
readonly max?: number | undefined;
|
|
1362
1341
|
readonly visibleWhen?: {
|
|
1363
1342
|
dialect: "cel" | "cron" | "template";
|
|
1364
1343
|
source?: string | undefined;
|
|
@@ -1373,6 +1352,8 @@ declare const SysWebhook: Omit<{
|
|
|
1373
1352
|
readonly maxLength?: number | undefined;
|
|
1374
1353
|
readonly minLength?: number | undefined;
|
|
1375
1354
|
readonly scale?: number | undefined;
|
|
1355
|
+
readonly min?: number | undefined;
|
|
1356
|
+
readonly max?: number | undefined;
|
|
1376
1357
|
readonly accept?: string[] | undefined;
|
|
1377
1358
|
readonly reference?: string | undefined;
|
|
1378
1359
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -1394,7 +1375,7 @@ declare const SysWebhook: Omit<{
|
|
|
1394
1375
|
readonly lookupPageSize?: number | undefined;
|
|
1395
1376
|
readonly lookupFilters?: {
|
|
1396
1377
|
field: string;
|
|
1397
|
-
operator: "in" | "eq" | "ne" | "
|
|
1378
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1398
1379
|
value: any;
|
|
1399
1380
|
}[] | undefined;
|
|
1400
1381
|
readonly dependsOn?: (string | {
|
|
@@ -1427,6 +1408,7 @@ declare const SysWebhook: Omit<{
|
|
|
1427
1408
|
} | undefined;
|
|
1428
1409
|
readonly dimensions?: number | undefined;
|
|
1429
1410
|
readonly trackHistory?: boolean | undefined;
|
|
1411
|
+
readonly group?: string | undefined;
|
|
1430
1412
|
readonly readonlyWhen?: {
|
|
1431
1413
|
dialect: "cel" | "cron" | "template";
|
|
1432
1414
|
source?: string | undefined;
|
|
@@ -1446,7 +1428,10 @@ declare const SysWebhook: Omit<{
|
|
|
1446
1428
|
} | undefined;
|
|
1447
1429
|
} | undefined;
|
|
1448
1430
|
readonly conditionalRequired?: undefined;
|
|
1431
|
+
readonly hidden?: boolean | undefined;
|
|
1432
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1449
1433
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1434
|
+
readonly system?: boolean | undefined;
|
|
1450
1435
|
readonly sortable?: boolean | undefined;
|
|
1451
1436
|
readonly inlineHelpText?: string | undefined;
|
|
1452
1437
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1478,15 +1463,12 @@ declare const SysWebhook: Omit<{
|
|
|
1478
1463
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1479
1464
|
readonly widget?: string | undefined;
|
|
1480
1465
|
readonly multiple?: boolean | undefined;
|
|
1466
|
+
readonly storage?: {
|
|
1467
|
+
notNull?: boolean | undefined;
|
|
1468
|
+
} | undefined;
|
|
1481
1469
|
readonly maxSize?: number | undefined;
|
|
1482
1470
|
readonly externalId?: boolean | undefined;
|
|
1483
1471
|
readonly defaultValue?: unknown;
|
|
1484
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1485
|
-
readonly group?: string | undefined;
|
|
1486
|
-
readonly hidden?: boolean | undefined;
|
|
1487
|
-
readonly system?: boolean | undefined;
|
|
1488
|
-
readonly min?: number | undefined;
|
|
1489
|
-
readonly max?: number | undefined;
|
|
1490
1472
|
readonly visibleWhen?: {
|
|
1491
1473
|
dialect: "cel" | "cron" | "template";
|
|
1492
1474
|
source?: string | undefined;
|
|
@@ -1501,6 +1483,8 @@ declare const SysWebhook: Omit<{
|
|
|
1501
1483
|
readonly maxLength?: number | undefined;
|
|
1502
1484
|
readonly minLength?: number | undefined;
|
|
1503
1485
|
readonly scale?: number | undefined;
|
|
1486
|
+
readonly min?: number | undefined;
|
|
1487
|
+
readonly max?: number | undefined;
|
|
1504
1488
|
readonly accept?: string[] | undefined;
|
|
1505
1489
|
readonly reference?: string | undefined;
|
|
1506
1490
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -1522,7 +1506,7 @@ declare const SysWebhook: Omit<{
|
|
|
1522
1506
|
readonly lookupPageSize?: number | undefined;
|
|
1523
1507
|
readonly lookupFilters?: {
|
|
1524
1508
|
field: string;
|
|
1525
|
-
operator: "in" | "eq" | "ne" | "
|
|
1509
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1526
1510
|
value: any;
|
|
1527
1511
|
}[] | undefined;
|
|
1528
1512
|
readonly dependsOn?: (string | {
|
|
@@ -1555,6 +1539,7 @@ declare const SysWebhook: Omit<{
|
|
|
1555
1539
|
} | undefined;
|
|
1556
1540
|
readonly dimensions?: number | undefined;
|
|
1557
1541
|
readonly trackHistory?: boolean | undefined;
|
|
1542
|
+
readonly group?: string | undefined;
|
|
1558
1543
|
readonly readonlyWhen?: {
|
|
1559
1544
|
dialect: "cel" | "cron" | "template";
|
|
1560
1545
|
source?: string | undefined;
|
|
@@ -1574,7 +1559,10 @@ declare const SysWebhook: Omit<{
|
|
|
1574
1559
|
} | undefined;
|
|
1575
1560
|
} | undefined;
|
|
1576
1561
|
readonly conditionalRequired?: undefined;
|
|
1562
|
+
readonly hidden?: boolean | undefined;
|
|
1563
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1577
1564
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1565
|
+
readonly system?: boolean | undefined;
|
|
1578
1566
|
readonly sortable?: boolean | undefined;
|
|
1579
1567
|
readonly inlineHelpText?: string | undefined;
|
|
1580
1568
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1606,15 +1594,12 @@ declare const SysWebhook: Omit<{
|
|
|
1606
1594
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1607
1595
|
readonly widget?: string | undefined;
|
|
1608
1596
|
readonly multiple?: boolean | undefined;
|
|
1597
|
+
readonly storage?: {
|
|
1598
|
+
notNull?: boolean | undefined;
|
|
1599
|
+
} | undefined;
|
|
1609
1600
|
readonly maxSize?: number | undefined;
|
|
1610
1601
|
readonly externalId?: boolean | undefined;
|
|
1611
1602
|
readonly defaultValue?: unknown;
|
|
1612
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1613
|
-
readonly group?: string | undefined;
|
|
1614
|
-
readonly hidden?: boolean | undefined;
|
|
1615
|
-
readonly system?: boolean | undefined;
|
|
1616
|
-
readonly min?: number | undefined;
|
|
1617
|
-
readonly max?: number | undefined;
|
|
1618
1603
|
readonly visibleWhen?: {
|
|
1619
1604
|
dialect: "cel" | "cron" | "template";
|
|
1620
1605
|
source?: string | undefined;
|
|
@@ -1629,6 +1614,8 @@ declare const SysWebhook: Omit<{
|
|
|
1629
1614
|
readonly maxLength?: number | undefined;
|
|
1630
1615
|
readonly minLength?: number | undefined;
|
|
1631
1616
|
readonly scale?: number | undefined;
|
|
1617
|
+
readonly min?: number | undefined;
|
|
1618
|
+
readonly max?: number | undefined;
|
|
1632
1619
|
readonly accept?: string[] | undefined;
|
|
1633
1620
|
readonly reference?: string | undefined;
|
|
1634
1621
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -1650,7 +1637,7 @@ declare const SysWebhook: Omit<{
|
|
|
1650
1637
|
readonly lookupPageSize?: number | undefined;
|
|
1651
1638
|
readonly lookupFilters?: {
|
|
1652
1639
|
field: string;
|
|
1653
|
-
operator: "in" | "eq" | "ne" | "
|
|
1640
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1654
1641
|
value: any;
|
|
1655
1642
|
}[] | undefined;
|
|
1656
1643
|
readonly dependsOn?: (string | {
|
|
@@ -1683,6 +1670,7 @@ declare const SysWebhook: Omit<{
|
|
|
1683
1670
|
} | undefined;
|
|
1684
1671
|
readonly dimensions?: number | undefined;
|
|
1685
1672
|
readonly trackHistory?: boolean | undefined;
|
|
1673
|
+
readonly group?: string | undefined;
|
|
1686
1674
|
readonly readonlyWhen?: {
|
|
1687
1675
|
dialect: "cel" | "cron" | "template";
|
|
1688
1676
|
source?: string | undefined;
|
|
@@ -1702,7 +1690,10 @@ declare const SysWebhook: Omit<{
|
|
|
1702
1690
|
} | undefined;
|
|
1703
1691
|
} | undefined;
|
|
1704
1692
|
readonly conditionalRequired?: undefined;
|
|
1693
|
+
readonly hidden?: boolean | undefined;
|
|
1694
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1705
1695
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1696
|
+
readonly system?: boolean | undefined;
|
|
1706
1697
|
readonly sortable?: boolean | undefined;
|
|
1707
1698
|
readonly inlineHelpText?: string | undefined;
|
|
1708
1699
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1734,15 +1725,12 @@ declare const SysWebhook: Omit<{
|
|
|
1734
1725
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1735
1726
|
readonly widget?: string | undefined;
|
|
1736
1727
|
readonly multiple?: boolean | undefined;
|
|
1728
|
+
readonly storage?: {
|
|
1729
|
+
notNull?: boolean | undefined;
|
|
1730
|
+
} | undefined;
|
|
1737
1731
|
readonly maxSize?: number | undefined;
|
|
1738
1732
|
readonly externalId?: boolean | undefined;
|
|
1739
1733
|
readonly defaultValue?: unknown;
|
|
1740
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1741
|
-
readonly group?: string | undefined;
|
|
1742
|
-
readonly hidden?: boolean | undefined;
|
|
1743
|
-
readonly system?: boolean | undefined;
|
|
1744
|
-
readonly min?: number | undefined;
|
|
1745
|
-
readonly max?: number | undefined;
|
|
1746
1734
|
readonly visibleWhen?: {
|
|
1747
1735
|
dialect: "cel" | "cron" | "template";
|
|
1748
1736
|
source?: string | undefined;
|
|
@@ -1757,6 +1745,8 @@ declare const SysWebhook: Omit<{
|
|
|
1757
1745
|
readonly maxLength?: number | undefined;
|
|
1758
1746
|
readonly minLength?: number | undefined;
|
|
1759
1747
|
readonly scale?: number | undefined;
|
|
1748
|
+
readonly min?: number | undefined;
|
|
1749
|
+
readonly max?: number | undefined;
|
|
1760
1750
|
readonly accept?: string[] | undefined;
|
|
1761
1751
|
readonly reference?: string | undefined;
|
|
1762
1752
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -1778,7 +1768,7 @@ declare const SysWebhook: Omit<{
|
|
|
1778
1768
|
readonly lookupPageSize?: number | undefined;
|
|
1779
1769
|
readonly lookupFilters?: {
|
|
1780
1770
|
field: string;
|
|
1781
|
-
operator: "in" | "eq" | "ne" | "
|
|
1771
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1782
1772
|
value: any;
|
|
1783
1773
|
}[] | undefined;
|
|
1784
1774
|
readonly dependsOn?: (string | {
|
|
@@ -1811,6 +1801,7 @@ declare const SysWebhook: Omit<{
|
|
|
1811
1801
|
} | undefined;
|
|
1812
1802
|
readonly dimensions?: number | undefined;
|
|
1813
1803
|
readonly trackHistory?: boolean | undefined;
|
|
1804
|
+
readonly group?: string | undefined;
|
|
1814
1805
|
readonly readonlyWhen?: {
|
|
1815
1806
|
dialect: "cel" | "cron" | "template";
|
|
1816
1807
|
source?: string | undefined;
|
|
@@ -1830,7 +1821,10 @@ declare const SysWebhook: Omit<{
|
|
|
1830
1821
|
} | undefined;
|
|
1831
1822
|
} | undefined;
|
|
1832
1823
|
readonly conditionalRequired?: undefined;
|
|
1824
|
+
readonly hidden?: boolean | undefined;
|
|
1825
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1833
1826
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1827
|
+
readonly system?: boolean | undefined;
|
|
1834
1828
|
readonly sortable?: boolean | undefined;
|
|
1835
1829
|
readonly inlineHelpText?: string | undefined;
|
|
1836
1830
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1862,15 +1856,12 @@ declare const SysWebhook: Omit<{
|
|
|
1862
1856
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1863
1857
|
readonly widget?: string | undefined;
|
|
1864
1858
|
readonly multiple?: boolean | undefined;
|
|
1859
|
+
readonly storage?: {
|
|
1860
|
+
notNull?: boolean | undefined;
|
|
1861
|
+
} | undefined;
|
|
1865
1862
|
readonly maxSize?: number | undefined;
|
|
1866
1863
|
readonly externalId?: boolean | undefined;
|
|
1867
1864
|
readonly defaultValue?: unknown;
|
|
1868
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1869
|
-
readonly group?: string | undefined;
|
|
1870
|
-
readonly hidden?: boolean | undefined;
|
|
1871
|
-
readonly system?: boolean | undefined;
|
|
1872
|
-
readonly min?: number | undefined;
|
|
1873
|
-
readonly max?: number | undefined;
|
|
1874
1865
|
readonly visibleWhen?: {
|
|
1875
1866
|
dialect: "cel" | "cron" | "template";
|
|
1876
1867
|
source?: string | undefined;
|
|
@@ -1885,6 +1876,8 @@ declare const SysWebhook: Omit<{
|
|
|
1885
1876
|
readonly maxLength?: number | undefined;
|
|
1886
1877
|
readonly minLength?: number | undefined;
|
|
1887
1878
|
readonly scale?: number | undefined;
|
|
1879
|
+
readonly min?: number | undefined;
|
|
1880
|
+
readonly max?: number | undefined;
|
|
1888
1881
|
readonly accept?: string[] | undefined;
|
|
1889
1882
|
readonly reference?: string | undefined;
|
|
1890
1883
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -1906,7 +1899,7 @@ declare const SysWebhook: Omit<{
|
|
|
1906
1899
|
readonly lookupPageSize?: number | undefined;
|
|
1907
1900
|
readonly lookupFilters?: {
|
|
1908
1901
|
field: string;
|
|
1909
|
-
operator: "in" | "eq" | "ne" | "
|
|
1902
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
1910
1903
|
value: any;
|
|
1911
1904
|
}[] | undefined;
|
|
1912
1905
|
readonly dependsOn?: (string | {
|
|
@@ -1939,6 +1932,7 @@ declare const SysWebhook: Omit<{
|
|
|
1939
1932
|
} | undefined;
|
|
1940
1933
|
readonly dimensions?: number | undefined;
|
|
1941
1934
|
readonly trackHistory?: boolean | undefined;
|
|
1935
|
+
readonly group?: string | undefined;
|
|
1942
1936
|
readonly readonlyWhen?: {
|
|
1943
1937
|
dialect: "cel" | "cron" | "template";
|
|
1944
1938
|
source?: string | undefined;
|
|
@@ -1958,7 +1952,10 @@ declare const SysWebhook: Omit<{
|
|
|
1958
1952
|
} | undefined;
|
|
1959
1953
|
} | undefined;
|
|
1960
1954
|
readonly conditionalRequired?: undefined;
|
|
1955
|
+
readonly hidden?: boolean | undefined;
|
|
1956
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
1961
1957
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
1958
|
+
readonly system?: boolean | undefined;
|
|
1962
1959
|
readonly sortable?: boolean | undefined;
|
|
1963
1960
|
readonly inlineHelpText?: string | undefined;
|
|
1964
1961
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -1990,15 +1987,12 @@ declare const SysWebhook: Omit<{
|
|
|
1990
1987
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
1991
1988
|
readonly widget?: string | undefined;
|
|
1992
1989
|
readonly multiple?: boolean | undefined;
|
|
1990
|
+
readonly storage?: {
|
|
1991
|
+
notNull?: boolean | undefined;
|
|
1992
|
+
} | undefined;
|
|
1993
1993
|
readonly maxSize?: number | undefined;
|
|
1994
1994
|
readonly externalId?: boolean | undefined;
|
|
1995
1995
|
readonly defaultValue?: unknown;
|
|
1996
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
1997
|
-
readonly group?: string | undefined;
|
|
1998
|
-
readonly hidden?: boolean | undefined;
|
|
1999
|
-
readonly system?: boolean | undefined;
|
|
2000
|
-
readonly min?: number | undefined;
|
|
2001
|
-
readonly max?: number | undefined;
|
|
2002
1996
|
readonly visibleWhen?: {
|
|
2003
1997
|
dialect: "cel" | "cron" | "template";
|
|
2004
1998
|
source?: string | undefined;
|
|
@@ -2013,6 +2007,8 @@ declare const SysWebhook: Omit<{
|
|
|
2013
2007
|
readonly maxLength?: number | undefined;
|
|
2014
2008
|
readonly minLength?: number | undefined;
|
|
2015
2009
|
readonly scale?: number | undefined;
|
|
2010
|
+
readonly min?: number | undefined;
|
|
2011
|
+
readonly max?: number | undefined;
|
|
2016
2012
|
readonly accept?: string[] | undefined;
|
|
2017
2013
|
readonly reference?: string | undefined;
|
|
2018
2014
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -2034,7 +2030,7 @@ declare const SysWebhook: Omit<{
|
|
|
2034
2030
|
readonly lookupPageSize?: number | undefined;
|
|
2035
2031
|
readonly lookupFilters?: {
|
|
2036
2032
|
field: string;
|
|
2037
|
-
operator: "in" | "eq" | "ne" | "
|
|
2033
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2038
2034
|
value: any;
|
|
2039
2035
|
}[] | undefined;
|
|
2040
2036
|
readonly dependsOn?: (string | {
|
|
@@ -2067,6 +2063,7 @@ declare const SysWebhook: Omit<{
|
|
|
2067
2063
|
} | undefined;
|
|
2068
2064
|
readonly dimensions?: number | undefined;
|
|
2069
2065
|
readonly trackHistory?: boolean | undefined;
|
|
2066
|
+
readonly group?: string | undefined;
|
|
2070
2067
|
readonly readonlyWhen?: {
|
|
2071
2068
|
dialect: "cel" | "cron" | "template";
|
|
2072
2069
|
source?: string | undefined;
|
|
@@ -2086,7 +2083,10 @@ declare const SysWebhook: Omit<{
|
|
|
2086
2083
|
} | undefined;
|
|
2087
2084
|
} | undefined;
|
|
2088
2085
|
readonly conditionalRequired?: undefined;
|
|
2086
|
+
readonly hidden?: boolean | undefined;
|
|
2087
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2089
2088
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2089
|
+
readonly system?: boolean | undefined;
|
|
2090
2090
|
readonly sortable?: boolean | undefined;
|
|
2091
2091
|
readonly inlineHelpText?: string | undefined;
|
|
2092
2092
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -2118,15 +2118,12 @@ declare const SysWebhook: Omit<{
|
|
|
2118
2118
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2119
2119
|
readonly widget?: string | undefined;
|
|
2120
2120
|
readonly multiple?: boolean | undefined;
|
|
2121
|
+
readonly storage?: {
|
|
2122
|
+
notNull?: boolean | undefined;
|
|
2123
|
+
} | undefined;
|
|
2121
2124
|
readonly maxSize?: number | undefined;
|
|
2122
2125
|
readonly externalId?: boolean | undefined;
|
|
2123
2126
|
readonly defaultValue?: unknown;
|
|
2124
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
2125
|
-
readonly group?: string | undefined;
|
|
2126
|
-
readonly hidden?: boolean | undefined;
|
|
2127
|
-
readonly system?: boolean | undefined;
|
|
2128
|
-
readonly min?: number | undefined;
|
|
2129
|
-
readonly max?: number | undefined;
|
|
2130
2127
|
readonly visibleWhen?: {
|
|
2131
2128
|
dialect: "cel" | "cron" | "template";
|
|
2132
2129
|
source?: string | undefined;
|
|
@@ -2141,6 +2138,8 @@ declare const SysWebhook: Omit<{
|
|
|
2141
2138
|
readonly maxLength?: number | undefined;
|
|
2142
2139
|
readonly minLength?: number | undefined;
|
|
2143
2140
|
readonly scale?: number | undefined;
|
|
2141
|
+
readonly min?: number | undefined;
|
|
2142
|
+
readonly max?: number | undefined;
|
|
2144
2143
|
readonly accept?: string[] | undefined;
|
|
2145
2144
|
readonly reference?: string | undefined;
|
|
2146
2145
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -2162,7 +2161,7 @@ declare const SysWebhook: Omit<{
|
|
|
2162
2161
|
readonly lookupPageSize?: number | undefined;
|
|
2163
2162
|
readonly lookupFilters?: {
|
|
2164
2163
|
field: string;
|
|
2165
|
-
operator: "in" | "eq" | "ne" | "
|
|
2164
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2166
2165
|
value: any;
|
|
2167
2166
|
}[] | undefined;
|
|
2168
2167
|
readonly dependsOn?: (string | {
|
|
@@ -2195,6 +2194,7 @@ declare const SysWebhook: Omit<{
|
|
|
2195
2194
|
} | undefined;
|
|
2196
2195
|
readonly dimensions?: number | undefined;
|
|
2197
2196
|
readonly trackHistory?: boolean | undefined;
|
|
2197
|
+
readonly group?: string | undefined;
|
|
2198
2198
|
readonly readonlyWhen?: {
|
|
2199
2199
|
dialect: "cel" | "cron" | "template";
|
|
2200
2200
|
source?: string | undefined;
|
|
@@ -2214,7 +2214,10 @@ declare const SysWebhook: Omit<{
|
|
|
2214
2214
|
} | undefined;
|
|
2215
2215
|
} | undefined;
|
|
2216
2216
|
readonly conditionalRequired?: undefined;
|
|
2217
|
+
readonly hidden?: boolean | undefined;
|
|
2218
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2217
2219
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2220
|
+
readonly system?: boolean | undefined;
|
|
2218
2221
|
readonly sortable?: boolean | undefined;
|
|
2219
2222
|
readonly inlineHelpText?: string | undefined;
|
|
2220
2223
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -2246,15 +2249,12 @@ declare const SysWebhook: Omit<{
|
|
|
2246
2249
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2247
2250
|
readonly widget?: string | undefined;
|
|
2248
2251
|
readonly multiple?: boolean | undefined;
|
|
2252
|
+
readonly storage?: {
|
|
2253
|
+
notNull?: boolean | undefined;
|
|
2254
|
+
} | undefined;
|
|
2249
2255
|
readonly maxSize?: number | undefined;
|
|
2250
2256
|
readonly externalId?: boolean | undefined;
|
|
2251
2257
|
readonly defaultValue?: unknown;
|
|
2252
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
2253
|
-
readonly group?: string | undefined;
|
|
2254
|
-
readonly hidden?: boolean | undefined;
|
|
2255
|
-
readonly system?: boolean | undefined;
|
|
2256
|
-
readonly min?: number | undefined;
|
|
2257
|
-
readonly max?: number | undefined;
|
|
2258
2258
|
readonly visibleWhen?: {
|
|
2259
2259
|
dialect: "cel" | "cron" | "template";
|
|
2260
2260
|
source?: string | undefined;
|
|
@@ -2269,6 +2269,8 @@ declare const SysWebhook: Omit<{
|
|
|
2269
2269
|
readonly maxLength?: number | undefined;
|
|
2270
2270
|
readonly minLength?: number | undefined;
|
|
2271
2271
|
readonly scale?: number | undefined;
|
|
2272
|
+
readonly min?: number | undefined;
|
|
2273
|
+
readonly max?: number | undefined;
|
|
2272
2274
|
readonly accept?: string[] | undefined;
|
|
2273
2275
|
readonly reference?: string | undefined;
|
|
2274
2276
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -2290,7 +2292,7 @@ declare const SysWebhook: Omit<{
|
|
|
2290
2292
|
readonly lookupPageSize?: number | undefined;
|
|
2291
2293
|
readonly lookupFilters?: {
|
|
2292
2294
|
field: string;
|
|
2293
|
-
operator: "in" | "eq" | "ne" | "
|
|
2295
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2294
2296
|
value: any;
|
|
2295
2297
|
}[] | undefined;
|
|
2296
2298
|
readonly dependsOn?: (string | {
|
|
@@ -2323,6 +2325,7 @@ declare const SysWebhook: Omit<{
|
|
|
2323
2325
|
} | undefined;
|
|
2324
2326
|
readonly dimensions?: number | undefined;
|
|
2325
2327
|
readonly trackHistory?: boolean | undefined;
|
|
2328
|
+
readonly group?: string | undefined;
|
|
2326
2329
|
readonly readonlyWhen?: {
|
|
2327
2330
|
dialect: "cel" | "cron" | "template";
|
|
2328
2331
|
source?: string | undefined;
|
|
@@ -2342,7 +2345,10 @@ declare const SysWebhook: Omit<{
|
|
|
2342
2345
|
} | undefined;
|
|
2343
2346
|
} | undefined;
|
|
2344
2347
|
readonly conditionalRequired?: undefined;
|
|
2348
|
+
readonly hidden?: boolean | undefined;
|
|
2349
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2345
2350
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2351
|
+
readonly system?: boolean | undefined;
|
|
2346
2352
|
readonly sortable?: boolean | undefined;
|
|
2347
2353
|
readonly inlineHelpText?: string | undefined;
|
|
2348
2354
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -2374,15 +2380,12 @@ declare const SysWebhook: Omit<{
|
|
|
2374
2380
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2375
2381
|
readonly widget?: string | undefined;
|
|
2376
2382
|
readonly multiple?: boolean | undefined;
|
|
2383
|
+
readonly storage?: {
|
|
2384
|
+
notNull?: boolean | undefined;
|
|
2385
|
+
} | undefined;
|
|
2377
2386
|
readonly maxSize?: number | undefined;
|
|
2378
2387
|
readonly externalId?: boolean | undefined;
|
|
2379
2388
|
readonly defaultValue?: unknown;
|
|
2380
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
2381
|
-
readonly group?: string | undefined;
|
|
2382
|
-
readonly hidden?: boolean | undefined;
|
|
2383
|
-
readonly system?: boolean | undefined;
|
|
2384
|
-
readonly min?: number | undefined;
|
|
2385
|
-
readonly max?: number | undefined;
|
|
2386
2389
|
readonly visibleWhen?: {
|
|
2387
2390
|
dialect: "cel" | "cron" | "template";
|
|
2388
2391
|
source?: string | undefined;
|
|
@@ -2397,6 +2400,8 @@ declare const SysWebhook: Omit<{
|
|
|
2397
2400
|
readonly maxLength?: number | undefined;
|
|
2398
2401
|
readonly minLength?: number | undefined;
|
|
2399
2402
|
readonly scale?: number | undefined;
|
|
2403
|
+
readonly min?: number | undefined;
|
|
2404
|
+
readonly max?: number | undefined;
|
|
2400
2405
|
readonly accept?: string[] | undefined;
|
|
2401
2406
|
readonly reference?: string | undefined;
|
|
2402
2407
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -2418,7 +2423,7 @@ declare const SysWebhook: Omit<{
|
|
|
2418
2423
|
readonly lookupPageSize?: number | undefined;
|
|
2419
2424
|
readonly lookupFilters?: {
|
|
2420
2425
|
field: string;
|
|
2421
|
-
operator: "in" | "eq" | "ne" | "
|
|
2426
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2422
2427
|
value: any;
|
|
2423
2428
|
}[] | undefined;
|
|
2424
2429
|
readonly dependsOn?: (string | {
|
|
@@ -2451,6 +2456,7 @@ declare const SysWebhook: Omit<{
|
|
|
2451
2456
|
} | undefined;
|
|
2452
2457
|
readonly dimensions?: number | undefined;
|
|
2453
2458
|
readonly trackHistory?: boolean | undefined;
|
|
2459
|
+
readonly group?: string | undefined;
|
|
2454
2460
|
readonly readonlyWhen?: {
|
|
2455
2461
|
dialect: "cel" | "cron" | "template";
|
|
2456
2462
|
source?: string | undefined;
|
|
@@ -2470,7 +2476,10 @@ declare const SysWebhook: Omit<{
|
|
|
2470
2476
|
} | undefined;
|
|
2471
2477
|
} | undefined;
|
|
2472
2478
|
readonly conditionalRequired?: undefined;
|
|
2479
|
+
readonly hidden?: boolean | undefined;
|
|
2480
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2473
2481
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2482
|
+
readonly system?: boolean | undefined;
|
|
2474
2483
|
readonly sortable?: boolean | undefined;
|
|
2475
2484
|
readonly inlineHelpText?: string | undefined;
|
|
2476
2485
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -2502,15 +2511,12 @@ declare const SysWebhook: Omit<{
|
|
|
2502
2511
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2503
2512
|
readonly widget?: string | undefined;
|
|
2504
2513
|
readonly multiple?: boolean | undefined;
|
|
2514
|
+
readonly storage?: {
|
|
2515
|
+
notNull?: boolean | undefined;
|
|
2516
|
+
} | undefined;
|
|
2505
2517
|
readonly maxSize?: number | undefined;
|
|
2506
2518
|
readonly externalId?: boolean | undefined;
|
|
2507
2519
|
readonly defaultValue?: unknown;
|
|
2508
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
2509
|
-
readonly group?: string | undefined;
|
|
2510
|
-
readonly hidden?: boolean | undefined;
|
|
2511
|
-
readonly system?: boolean | undefined;
|
|
2512
|
-
readonly min?: number | undefined;
|
|
2513
|
-
readonly max?: number | undefined;
|
|
2514
2520
|
readonly visibleWhen?: {
|
|
2515
2521
|
dialect: "cel" | "cron" | "template";
|
|
2516
2522
|
source?: string | undefined;
|
|
@@ -2525,6 +2531,8 @@ declare const SysWebhook: Omit<{
|
|
|
2525
2531
|
readonly maxLength?: number | undefined;
|
|
2526
2532
|
readonly minLength?: number | undefined;
|
|
2527
2533
|
readonly scale?: number | undefined;
|
|
2534
|
+
readonly min?: number | undefined;
|
|
2535
|
+
readonly max?: number | undefined;
|
|
2528
2536
|
readonly accept?: string[] | undefined;
|
|
2529
2537
|
readonly reference?: string | undefined;
|
|
2530
2538
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -2546,7 +2554,7 @@ declare const SysWebhook: Omit<{
|
|
|
2546
2554
|
readonly lookupPageSize?: number | undefined;
|
|
2547
2555
|
readonly lookupFilters?: {
|
|
2548
2556
|
field: string;
|
|
2549
|
-
operator: "in" | "eq" | "ne" | "
|
|
2557
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2550
2558
|
value: any;
|
|
2551
2559
|
}[] | undefined;
|
|
2552
2560
|
readonly dependsOn?: (string | {
|
|
@@ -2579,6 +2587,7 @@ declare const SysWebhook: Omit<{
|
|
|
2579
2587
|
} | undefined;
|
|
2580
2588
|
readonly dimensions?: number | undefined;
|
|
2581
2589
|
readonly trackHistory?: boolean | undefined;
|
|
2590
|
+
readonly group?: string | undefined;
|
|
2582
2591
|
readonly readonlyWhen?: {
|
|
2583
2592
|
dialect: "cel" | "cron" | "template";
|
|
2584
2593
|
source?: string | undefined;
|
|
@@ -2598,7 +2607,10 @@ declare const SysWebhook: Omit<{
|
|
|
2598
2607
|
} | undefined;
|
|
2599
2608
|
} | undefined;
|
|
2600
2609
|
readonly conditionalRequired?: undefined;
|
|
2610
|
+
readonly hidden?: boolean | undefined;
|
|
2611
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2601
2612
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2613
|
+
readonly system?: boolean | undefined;
|
|
2602
2614
|
readonly sortable?: boolean | undefined;
|
|
2603
2615
|
readonly inlineHelpText?: string | undefined;
|
|
2604
2616
|
readonly autonumberFormat?: string | undefined;
|
|
@@ -2630,15 +2642,12 @@ declare const SysWebhook: Omit<{
|
|
|
2630
2642
|
readonly returnType?: "number" | "boolean" | "date" | "text" | undefined;
|
|
2631
2643
|
readonly widget?: string | undefined;
|
|
2632
2644
|
readonly multiple?: boolean | undefined;
|
|
2645
|
+
readonly storage?: {
|
|
2646
|
+
notNull?: boolean | undefined;
|
|
2647
|
+
} | undefined;
|
|
2633
2648
|
readonly maxSize?: number | undefined;
|
|
2634
2649
|
readonly externalId?: boolean | undefined;
|
|
2635
2650
|
readonly defaultValue?: unknown;
|
|
2636
|
-
readonly requiredPermissions?: string[] | undefined;
|
|
2637
|
-
readonly group?: string | undefined;
|
|
2638
|
-
readonly hidden?: boolean | undefined;
|
|
2639
|
-
readonly system?: boolean | undefined;
|
|
2640
|
-
readonly min?: number | undefined;
|
|
2641
|
-
readonly max?: number | undefined;
|
|
2642
2651
|
readonly visibleWhen?: {
|
|
2643
2652
|
dialect: "cel" | "cron" | "template";
|
|
2644
2653
|
source?: string | undefined;
|
|
@@ -2653,6 +2662,8 @@ declare const SysWebhook: Omit<{
|
|
|
2653
2662
|
readonly maxLength?: number | undefined;
|
|
2654
2663
|
readonly minLength?: number | undefined;
|
|
2655
2664
|
readonly scale?: number | undefined;
|
|
2665
|
+
readonly min?: number | undefined;
|
|
2666
|
+
readonly max?: number | undefined;
|
|
2656
2667
|
readonly accept?: string[] | undefined;
|
|
2657
2668
|
readonly reference?: string | undefined;
|
|
2658
2669
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
@@ -2674,7 +2685,7 @@ declare const SysWebhook: Omit<{
|
|
|
2674
2685
|
readonly lookupPageSize?: number | undefined;
|
|
2675
2686
|
readonly lookupFilters?: {
|
|
2676
2687
|
field: string;
|
|
2677
|
-
operator: "in" | "eq" | "ne" | "
|
|
2688
|
+
operator: "in" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "contains" | "notIn";
|
|
2678
2689
|
value: any;
|
|
2679
2690
|
}[] | undefined;
|
|
2680
2691
|
readonly dependsOn?: (string | {
|
|
@@ -2707,6 +2718,7 @@ declare const SysWebhook: Omit<{
|
|
|
2707
2718
|
} | undefined;
|
|
2708
2719
|
readonly dimensions?: number | undefined;
|
|
2709
2720
|
readonly trackHistory?: boolean | undefined;
|
|
2721
|
+
readonly group?: string | undefined;
|
|
2710
2722
|
readonly readonlyWhen?: {
|
|
2711
2723
|
dialect: "cel" | "cron" | "template";
|
|
2712
2724
|
source?: string | undefined;
|
|
@@ -2726,7 +2738,10 @@ declare const SysWebhook: Omit<{
|
|
|
2726
2738
|
} | undefined;
|
|
2727
2739
|
} | undefined;
|
|
2728
2740
|
readonly conditionalRequired?: undefined;
|
|
2741
|
+
readonly hidden?: boolean | undefined;
|
|
2742
|
+
readonly requiredPermissions?: string[] | undefined;
|
|
2729
2743
|
readonly ackPlaintextMasking?: boolean | undefined;
|
|
2744
|
+
readonly system?: boolean | undefined;
|
|
2730
2745
|
readonly sortable?: boolean | undefined;
|
|
2731
2746
|
readonly inlineHelpText?: string | undefined;
|
|
2732
2747
|
readonly autonumberFormat?: string | undefined;
|