@objectstack/plugin-webhooks 17.3.0 → 17.4.0
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 +191 -0
- package/dist/{chunk-DRHJ2M45.cjs → chunk-CWE6CIEZ.cjs} +1 -1
- package/dist/chunk-CWE6CIEZ.cjs.map +1 -0
- package/dist/{chunk-XERWWQKN.js → chunk-MEX2VC7T.js} +1 -1
- package/dist/chunk-MEX2VC7T.js.map +1 -0
- package/dist/index.cjs +188 -81
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +90 -2
- package/dist/index.d.ts +90 -2
- package/dist/index.js +130 -23
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +120 -97
- package/dist/schema.d.ts +120 -97
- package/dist/schema.js +1 -1
- package/dist/schema.js.map +1 -1
- package/dist/{translations-CPXQB2NM.js → translations-MNRJO53N.js} +1 -1
- package/dist/translations-MNRJO53N.js.map +1 -0
- package/dist/{translations-YO6CI7LZ.cjs → translations-VX3ONQXN.cjs} +1 -1
- package/dist/translations-VX3ONQXN.cjs.map +1 -0
- package/package.json +7 -7
- package/dist/chunk-DRHJ2M45.cjs.map +0 -1
- package/dist/chunk-XERWWQKN.js.map +0 -1
- package/dist/translations-CPXQB2NM.js.map +0 -1
- package/dist/translations-YO6CI7LZ.cjs.map +0 -1
package/dist/schema.d.cts
CHANGED
|
@@ -422,7 +422,7 @@ declare const SysWebhook: Omit<{
|
|
|
422
422
|
nameField?: string | undefined;
|
|
423
423
|
displayNameField?: string | undefined;
|
|
424
424
|
titleFormat?: string | {
|
|
425
|
-
dialect: "
|
|
425
|
+
dialect: "template";
|
|
426
426
|
source?: string | undefined;
|
|
427
427
|
ast?: unknown;
|
|
428
428
|
meta?: {
|
|
@@ -484,7 +484,6 @@ declare const SysWebhook: Omit<{
|
|
|
484
484
|
}) | undefined;
|
|
485
485
|
name?: string | undefined;
|
|
486
486
|
tree?: {
|
|
487
|
-
[x: string]: unknown;
|
|
488
487
|
parentField?: string | undefined;
|
|
489
488
|
labelField?: string | undefined;
|
|
490
489
|
fields?: string[] | undefined;
|
|
@@ -495,6 +494,68 @@ declare const SysWebhook: Omit<{
|
|
|
495
494
|
defaultValue?: never;
|
|
496
495
|
}) | undefined;
|
|
497
496
|
inlineEdit?: boolean | undefined;
|
|
497
|
+
emptyState?: {
|
|
498
|
+
title?: string | (Record<string, string> & {
|
|
499
|
+
key?: never;
|
|
500
|
+
defaultValue?: never;
|
|
501
|
+
}) | undefined;
|
|
502
|
+
message?: string | (Record<string, string> & {
|
|
503
|
+
key?: never;
|
|
504
|
+
defaultValue?: never;
|
|
505
|
+
}) | undefined;
|
|
506
|
+
icon?: string | undefined;
|
|
507
|
+
} | undefined;
|
|
508
|
+
bulkActions?: string[] | undefined;
|
|
509
|
+
bulkActionDefs?: {
|
|
510
|
+
name: string;
|
|
511
|
+
operation: "delete" | "update" | "custom";
|
|
512
|
+
label?: string | undefined;
|
|
513
|
+
icon?: string | undefined;
|
|
514
|
+
variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
|
|
515
|
+
execution?: "aggregate" | "perRecord" | undefined;
|
|
516
|
+
patch?: Record<string, unknown> | undefined;
|
|
517
|
+
params?: {
|
|
518
|
+
[x: string]: unknown;
|
|
519
|
+
name: string;
|
|
520
|
+
type: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "url" | "datetime" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
521
|
+
label?: string | undefined;
|
|
522
|
+
help?: string | undefined;
|
|
523
|
+
required?: boolean | undefined;
|
|
524
|
+
default?: unknown;
|
|
525
|
+
options?: {
|
|
526
|
+
[x: string]: unknown;
|
|
527
|
+
label: string;
|
|
528
|
+
value: string | number | boolean;
|
|
529
|
+
}[] | undefined;
|
|
530
|
+
object?: string | undefined;
|
|
531
|
+
labelField?: string | undefined;
|
|
532
|
+
multiple?: boolean | undefined;
|
|
533
|
+
placeholder?: string | undefined;
|
|
534
|
+
}[] | undefined;
|
|
535
|
+
confirmText?: string | undefined;
|
|
536
|
+
confirmLabel?: string | undefined;
|
|
537
|
+
visible?: string | {
|
|
538
|
+
dialect: "cel" | "cron" | "template";
|
|
539
|
+
source?: string | undefined;
|
|
540
|
+
ast?: unknown;
|
|
541
|
+
meta?: {
|
|
542
|
+
rationale?: string | undefined;
|
|
543
|
+
generatedBy?: string | undefined;
|
|
544
|
+
} | undefined;
|
|
545
|
+
} | undefined;
|
|
546
|
+
requiredPermissions?: string[] | undefined;
|
|
547
|
+
maxRecords?: number | undefined;
|
|
548
|
+
batchSize?: number | undefined;
|
|
549
|
+
}[] | undefined;
|
|
550
|
+
rowActions?: string[] | undefined;
|
|
551
|
+
navigation?: {
|
|
552
|
+
mode?: "none" | "page" | "modal" | "split" | "drawer" | "popover" | "new_window" | undefined;
|
|
553
|
+
view?: string | undefined;
|
|
554
|
+
preventNavigation?: boolean | undefined;
|
|
555
|
+
openNewTab?: boolean | undefined;
|
|
556
|
+
size?: "full" | "md" | "auto" | "sm" | "lg" | "xl" | undefined;
|
|
557
|
+
width?: string | number | undefined;
|
|
558
|
+
} | undefined;
|
|
498
559
|
data?: {
|
|
499
560
|
provider: "object";
|
|
500
561
|
object: string;
|
|
@@ -523,14 +584,6 @@ declare const SysWebhook: Omit<{
|
|
|
523
584
|
schema?: Record<string, unknown> | undefined;
|
|
524
585
|
} | undefined;
|
|
525
586
|
pageName?: string | undefined;
|
|
526
|
-
navigation?: {
|
|
527
|
-
mode?: "none" | "page" | "modal" | "split" | "drawer" | "popover" | "new_window" | undefined;
|
|
528
|
-
view?: string | undefined;
|
|
529
|
-
preventNavigation?: boolean | undefined;
|
|
530
|
-
openNewTab?: boolean | undefined;
|
|
531
|
-
size?: "full" | "md" | "auto" | "sm" | "lg" | "xl" | undefined;
|
|
532
|
-
width?: string | number | undefined;
|
|
533
|
-
} | undefined;
|
|
534
587
|
sharing?: {
|
|
535
588
|
type?: "personal" | "collaborative" | undefined;
|
|
536
589
|
lockedBy?: string | undefined;
|
|
@@ -561,60 +614,6 @@ declare const SysWebhook: Omit<{
|
|
|
561
614
|
isDefault?: boolean | undefined;
|
|
562
615
|
visible?: boolean | undefined;
|
|
563
616
|
}[] | undefined;
|
|
564
|
-
emptyState?: {
|
|
565
|
-
title?: string | (Record<string, string> & {
|
|
566
|
-
key?: never;
|
|
567
|
-
defaultValue?: never;
|
|
568
|
-
}) | undefined;
|
|
569
|
-
message?: string | (Record<string, string> & {
|
|
570
|
-
key?: never;
|
|
571
|
-
defaultValue?: never;
|
|
572
|
-
}) | undefined;
|
|
573
|
-
icon?: string | undefined;
|
|
574
|
-
} | undefined;
|
|
575
|
-
bulkActions?: string[] | undefined;
|
|
576
|
-
bulkActionDefs?: {
|
|
577
|
-
name: string;
|
|
578
|
-
operation: "delete" | "update" | "custom";
|
|
579
|
-
label?: string | undefined;
|
|
580
|
-
icon?: string | undefined;
|
|
581
|
-
variant?: "primary" | "secondary" | "outline" | "danger" | "ghost" | undefined;
|
|
582
|
-
execution?: "aggregate" | "perRecord" | undefined;
|
|
583
|
-
patch?: Record<string, unknown> | undefined;
|
|
584
|
-
params?: {
|
|
585
|
-
[x: string]: unknown;
|
|
586
|
-
name: string;
|
|
587
|
-
type: "number" | "boolean" | "secret" | "email" | "currency" | "code" | "date" | "record" | "file" | "user" | "url" | "datetime" | "time" | "formula" | "text" | "textarea" | "phone" | "password" | "markdown" | "html" | "richtext" | "percent" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "lookup" | "master_detail" | "tree" | "image" | "avatar" | "video" | "audio" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "signature" | "qrcode" | "progress" | "tags" | "vector";
|
|
588
|
-
label?: string | undefined;
|
|
589
|
-
help?: string | undefined;
|
|
590
|
-
required?: boolean | undefined;
|
|
591
|
-
default?: unknown;
|
|
592
|
-
options?: {
|
|
593
|
-
[x: string]: unknown;
|
|
594
|
-
label: string;
|
|
595
|
-
value: string | number | boolean;
|
|
596
|
-
}[] | undefined;
|
|
597
|
-
object?: string | undefined;
|
|
598
|
-
labelField?: string | undefined;
|
|
599
|
-
multiple?: boolean | undefined;
|
|
600
|
-
placeholder?: string | undefined;
|
|
601
|
-
}[] | undefined;
|
|
602
|
-
confirmText?: string | undefined;
|
|
603
|
-
confirmLabel?: string | undefined;
|
|
604
|
-
visible?: string | {
|
|
605
|
-
dialect: "cel" | "cron" | "template";
|
|
606
|
-
source?: string | undefined;
|
|
607
|
-
ast?: unknown;
|
|
608
|
-
meta?: {
|
|
609
|
-
rationale?: string | undefined;
|
|
610
|
-
generatedBy?: string | undefined;
|
|
611
|
-
} | undefined;
|
|
612
|
-
} | undefined;
|
|
613
|
-
requiredPermissions?: string[] | undefined;
|
|
614
|
-
maxRecords?: number | undefined;
|
|
615
|
-
batchSize?: number | undefined;
|
|
616
|
-
}[] | undefined;
|
|
617
|
-
rowActions?: string[] | undefined;
|
|
618
617
|
responsive?: undefined;
|
|
619
618
|
performance?: undefined;
|
|
620
619
|
striped?: undefined;
|
|
@@ -672,7 +671,6 @@ declare const SysWebhook: Omit<{
|
|
|
672
671
|
scale?: "year" | "month" | "day" | "week" | "quarter" | "hour" | undefined;
|
|
673
672
|
} | undefined;
|
|
674
673
|
gantt?: {
|
|
675
|
-
[x: string]: unknown;
|
|
676
674
|
startDateField: string;
|
|
677
675
|
endDateField: string;
|
|
678
676
|
titleField: string;
|
|
@@ -702,6 +700,31 @@ declare const SysWebhook: Omit<{
|
|
|
702
700
|
}[] | undefined;
|
|
703
701
|
autoZoomToFilter?: boolean | undefined;
|
|
704
702
|
viewMode?: "year" | "month" | "day" | "week" | "quarter" | undefined;
|
|
703
|
+
borderColorField?: string | undefined;
|
|
704
|
+
lockField?: string | undefined;
|
|
705
|
+
objectField?: string | undefined;
|
|
706
|
+
summaryExtent?: "children" | "self" | undefined;
|
|
707
|
+
defaultCollapsedDepth?: number | undefined;
|
|
708
|
+
dependencyTypes?: boolean | undefined;
|
|
709
|
+
timeZone?: string | undefined;
|
|
710
|
+
exportFileName?: string | undefined;
|
|
711
|
+
interactions?: {
|
|
712
|
+
move?: boolean | undefined;
|
|
713
|
+
resize?: boolean | undefined;
|
|
714
|
+
progress?: boolean | undefined;
|
|
715
|
+
link?: boolean | undefined;
|
|
716
|
+
} | undefined;
|
|
717
|
+
timeSegments?: {
|
|
718
|
+
bands: {
|
|
719
|
+
label: string;
|
|
720
|
+
start: string;
|
|
721
|
+
end: string;
|
|
722
|
+
key?: string | undefined;
|
|
723
|
+
color?: string | undefined;
|
|
724
|
+
}[];
|
|
725
|
+
dayStart?: string | undefined;
|
|
726
|
+
showMidnight?: boolean | undefined;
|
|
727
|
+
} | undefined;
|
|
705
728
|
} | undefined;
|
|
706
729
|
chart?: {
|
|
707
730
|
dataset: string;
|
|
@@ -1138,6 +1161,7 @@ declare const SysWebhook: Omit<{
|
|
|
1138
1161
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1139
1162
|
readonly _packageId?: string | undefined;
|
|
1140
1163
|
readonly _packageVersion?: string | undefined;
|
|
1164
|
+
readonly precision?: number | undefined;
|
|
1141
1165
|
readonly name?: string | undefined;
|
|
1142
1166
|
readonly lookupFilters?: {
|
|
1143
1167
|
field: string;
|
|
@@ -1164,7 +1188,6 @@ declare const SysWebhook: Omit<{
|
|
|
1164
1188
|
} | undefined;
|
|
1165
1189
|
readonly reference?: string | undefined;
|
|
1166
1190
|
readonly label?: string | undefined;
|
|
1167
|
-
readonly precision?: number | undefined;
|
|
1168
1191
|
readonly scale?: number | undefined;
|
|
1169
1192
|
readonly step?: number | undefined;
|
|
1170
1193
|
readonly displayField?: string | undefined;
|
|
@@ -1267,7 +1290,7 @@ declare const SysWebhook: Omit<{
|
|
|
1267
1290
|
readonly widget?: string | undefined;
|
|
1268
1291
|
readonly internal?: boolean | undefined;
|
|
1269
1292
|
readonly requiredPermissions?: string[] | undefined;
|
|
1270
|
-
readonly maskingRule?: "
|
|
1293
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
1271
1294
|
keepHead: number;
|
|
1272
1295
|
keepTail: number;
|
|
1273
1296
|
} | undefined;
|
|
@@ -1328,6 +1351,7 @@ declare const SysWebhook: Omit<{
|
|
|
1328
1351
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1329
1352
|
readonly _packageId?: string | undefined;
|
|
1330
1353
|
readonly _packageVersion?: string | undefined;
|
|
1354
|
+
readonly precision?: number | undefined;
|
|
1331
1355
|
readonly name?: string | undefined;
|
|
1332
1356
|
readonly lookupFilters?: {
|
|
1333
1357
|
field: string;
|
|
@@ -1354,7 +1378,6 @@ declare const SysWebhook: Omit<{
|
|
|
1354
1378
|
} | undefined;
|
|
1355
1379
|
readonly reference?: string | undefined;
|
|
1356
1380
|
readonly label?: string | undefined;
|
|
1357
|
-
readonly precision?: number | undefined;
|
|
1358
1381
|
readonly scale?: number | undefined;
|
|
1359
1382
|
readonly step?: number | undefined;
|
|
1360
1383
|
readonly displayField?: string | undefined;
|
|
@@ -1457,7 +1480,7 @@ declare const SysWebhook: Omit<{
|
|
|
1457
1480
|
readonly widget?: string | undefined;
|
|
1458
1481
|
readonly internal?: boolean | undefined;
|
|
1459
1482
|
readonly requiredPermissions?: string[] | undefined;
|
|
1460
|
-
readonly maskingRule?: "
|
|
1483
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
1461
1484
|
keepHead: number;
|
|
1462
1485
|
keepTail: number;
|
|
1463
1486
|
} | undefined;
|
|
@@ -1518,6 +1541,7 @@ declare const SysWebhook: Omit<{
|
|
|
1518
1541
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1519
1542
|
readonly _packageId?: string | undefined;
|
|
1520
1543
|
readonly _packageVersion?: string | undefined;
|
|
1544
|
+
readonly precision?: number | undefined;
|
|
1521
1545
|
readonly name?: string | undefined;
|
|
1522
1546
|
readonly lookupFilters?: {
|
|
1523
1547
|
field: string;
|
|
@@ -1544,7 +1568,6 @@ declare const SysWebhook: Omit<{
|
|
|
1544
1568
|
} | undefined;
|
|
1545
1569
|
readonly reference?: string | undefined;
|
|
1546
1570
|
readonly label?: string | undefined;
|
|
1547
|
-
readonly precision?: number | undefined;
|
|
1548
1571
|
readonly scale?: number | undefined;
|
|
1549
1572
|
readonly step?: number | undefined;
|
|
1550
1573
|
readonly displayField?: string | undefined;
|
|
@@ -1647,7 +1670,7 @@ declare const SysWebhook: Omit<{
|
|
|
1647
1670
|
readonly widget?: string | undefined;
|
|
1648
1671
|
readonly internal?: boolean | undefined;
|
|
1649
1672
|
readonly requiredPermissions?: string[] | undefined;
|
|
1650
|
-
readonly maskingRule?: "
|
|
1673
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
1651
1674
|
keepHead: number;
|
|
1652
1675
|
keepTail: number;
|
|
1653
1676
|
} | undefined;
|
|
@@ -1708,6 +1731,7 @@ declare const SysWebhook: Omit<{
|
|
|
1708
1731
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1709
1732
|
readonly _packageId?: string | undefined;
|
|
1710
1733
|
readonly _packageVersion?: string | undefined;
|
|
1734
|
+
readonly precision?: number | undefined;
|
|
1711
1735
|
readonly name?: string | undefined;
|
|
1712
1736
|
readonly lookupFilters?: {
|
|
1713
1737
|
field: string;
|
|
@@ -1734,7 +1758,6 @@ declare const SysWebhook: Omit<{
|
|
|
1734
1758
|
} | undefined;
|
|
1735
1759
|
readonly reference?: string | undefined;
|
|
1736
1760
|
readonly label?: string | undefined;
|
|
1737
|
-
readonly precision?: number | undefined;
|
|
1738
1761
|
readonly scale?: number | undefined;
|
|
1739
1762
|
readonly step?: number | undefined;
|
|
1740
1763
|
readonly displayField?: string | undefined;
|
|
@@ -1837,7 +1860,7 @@ declare const SysWebhook: Omit<{
|
|
|
1837
1860
|
readonly widget?: string | undefined;
|
|
1838
1861
|
readonly internal?: boolean | undefined;
|
|
1839
1862
|
readonly requiredPermissions?: string[] | undefined;
|
|
1840
|
-
readonly maskingRule?: "
|
|
1863
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
1841
1864
|
keepHead: number;
|
|
1842
1865
|
keepTail: number;
|
|
1843
1866
|
} | undefined;
|
|
@@ -1898,6 +1921,7 @@ declare const SysWebhook: Omit<{
|
|
|
1898
1921
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
1899
1922
|
readonly _packageId?: string | undefined;
|
|
1900
1923
|
readonly _packageVersion?: string | undefined;
|
|
1924
|
+
readonly precision?: number | undefined;
|
|
1901
1925
|
readonly name?: string | undefined;
|
|
1902
1926
|
readonly lookupFilters?: {
|
|
1903
1927
|
field: string;
|
|
@@ -1924,7 +1948,6 @@ declare const SysWebhook: Omit<{
|
|
|
1924
1948
|
} | undefined;
|
|
1925
1949
|
readonly reference?: string | undefined;
|
|
1926
1950
|
readonly label?: string | undefined;
|
|
1927
|
-
readonly precision?: number | undefined;
|
|
1928
1951
|
readonly scale?: number | undefined;
|
|
1929
1952
|
readonly step?: number | undefined;
|
|
1930
1953
|
readonly displayField?: string | undefined;
|
|
@@ -2027,7 +2050,7 @@ declare const SysWebhook: Omit<{
|
|
|
2027
2050
|
readonly widget?: string | undefined;
|
|
2028
2051
|
readonly internal?: boolean | undefined;
|
|
2029
2052
|
readonly requiredPermissions?: string[] | undefined;
|
|
2030
|
-
readonly maskingRule?: "
|
|
2053
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
2031
2054
|
keepHead: number;
|
|
2032
2055
|
keepTail: number;
|
|
2033
2056
|
} | undefined;
|
|
@@ -2088,6 +2111,7 @@ declare const SysWebhook: Omit<{
|
|
|
2088
2111
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2089
2112
|
readonly _packageId?: string | undefined;
|
|
2090
2113
|
readonly _packageVersion?: string | undefined;
|
|
2114
|
+
readonly precision?: number | undefined;
|
|
2091
2115
|
readonly name?: string | undefined;
|
|
2092
2116
|
readonly lookupFilters?: {
|
|
2093
2117
|
field: string;
|
|
@@ -2114,7 +2138,6 @@ declare const SysWebhook: Omit<{
|
|
|
2114
2138
|
} | undefined;
|
|
2115
2139
|
readonly reference?: string | undefined;
|
|
2116
2140
|
readonly label?: string | undefined;
|
|
2117
|
-
readonly precision?: number | undefined;
|
|
2118
2141
|
readonly scale?: number | undefined;
|
|
2119
2142
|
readonly step?: number | undefined;
|
|
2120
2143
|
readonly displayField?: string | undefined;
|
|
@@ -2217,7 +2240,7 @@ declare const SysWebhook: Omit<{
|
|
|
2217
2240
|
readonly widget?: string | undefined;
|
|
2218
2241
|
readonly internal?: boolean | undefined;
|
|
2219
2242
|
readonly requiredPermissions?: string[] | undefined;
|
|
2220
|
-
readonly maskingRule?: "
|
|
2243
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
2221
2244
|
keepHead: number;
|
|
2222
2245
|
keepTail: number;
|
|
2223
2246
|
} | undefined;
|
|
@@ -2278,6 +2301,7 @@ declare const SysWebhook: Omit<{
|
|
|
2278
2301
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2279
2302
|
readonly _packageId?: string | undefined;
|
|
2280
2303
|
readonly _packageVersion?: string | undefined;
|
|
2304
|
+
readonly precision?: number | undefined;
|
|
2281
2305
|
readonly name?: string | undefined;
|
|
2282
2306
|
readonly lookupFilters?: {
|
|
2283
2307
|
field: string;
|
|
@@ -2304,7 +2328,6 @@ declare const SysWebhook: Omit<{
|
|
|
2304
2328
|
} | undefined;
|
|
2305
2329
|
readonly reference?: string | undefined;
|
|
2306
2330
|
readonly label?: string | undefined;
|
|
2307
|
-
readonly precision?: number | undefined;
|
|
2308
2331
|
readonly scale?: number | undefined;
|
|
2309
2332
|
readonly step?: number | undefined;
|
|
2310
2333
|
readonly displayField?: string | undefined;
|
|
@@ -2407,7 +2430,7 @@ declare const SysWebhook: Omit<{
|
|
|
2407
2430
|
readonly widget?: string | undefined;
|
|
2408
2431
|
readonly internal?: boolean | undefined;
|
|
2409
2432
|
readonly requiredPermissions?: string[] | undefined;
|
|
2410
|
-
readonly maskingRule?: "
|
|
2433
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
2411
2434
|
keepHead: number;
|
|
2412
2435
|
keepTail: number;
|
|
2413
2436
|
} | undefined;
|
|
@@ -2468,6 +2491,7 @@ declare const SysWebhook: Omit<{
|
|
|
2468
2491
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2469
2492
|
readonly _packageId?: string | undefined;
|
|
2470
2493
|
readonly _packageVersion?: string | undefined;
|
|
2494
|
+
readonly precision?: number | undefined;
|
|
2471
2495
|
readonly name?: string | undefined;
|
|
2472
2496
|
readonly lookupFilters?: {
|
|
2473
2497
|
field: string;
|
|
@@ -2494,7 +2518,6 @@ declare const SysWebhook: Omit<{
|
|
|
2494
2518
|
} | undefined;
|
|
2495
2519
|
readonly reference?: string | undefined;
|
|
2496
2520
|
readonly label?: string | undefined;
|
|
2497
|
-
readonly precision?: number | undefined;
|
|
2498
2521
|
readonly scale?: number | undefined;
|
|
2499
2522
|
readonly step?: number | undefined;
|
|
2500
2523
|
readonly displayField?: string | undefined;
|
|
@@ -2597,7 +2620,7 @@ declare const SysWebhook: Omit<{
|
|
|
2597
2620
|
readonly widget?: string | undefined;
|
|
2598
2621
|
readonly internal?: boolean | undefined;
|
|
2599
2622
|
readonly requiredPermissions?: string[] | undefined;
|
|
2600
|
-
readonly maskingRule?: "
|
|
2623
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
2601
2624
|
keepHead: number;
|
|
2602
2625
|
keepTail: number;
|
|
2603
2626
|
} | undefined;
|
|
@@ -2658,6 +2681,7 @@ declare const SysWebhook: Omit<{
|
|
|
2658
2681
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2659
2682
|
readonly _packageId?: string | undefined;
|
|
2660
2683
|
readonly _packageVersion?: string | undefined;
|
|
2684
|
+
readonly precision?: number | undefined;
|
|
2661
2685
|
readonly name?: string | undefined;
|
|
2662
2686
|
readonly lookupFilters?: {
|
|
2663
2687
|
field: string;
|
|
@@ -2684,7 +2708,6 @@ declare const SysWebhook: Omit<{
|
|
|
2684
2708
|
} | undefined;
|
|
2685
2709
|
readonly reference?: string | undefined;
|
|
2686
2710
|
readonly label?: string | undefined;
|
|
2687
|
-
readonly precision?: number | undefined;
|
|
2688
2711
|
readonly scale?: number | undefined;
|
|
2689
2712
|
readonly step?: number | undefined;
|
|
2690
2713
|
readonly displayField?: string | undefined;
|
|
@@ -2787,7 +2810,7 @@ declare const SysWebhook: Omit<{
|
|
|
2787
2810
|
readonly widget?: string | undefined;
|
|
2788
2811
|
readonly internal?: boolean | undefined;
|
|
2789
2812
|
readonly requiredPermissions?: string[] | undefined;
|
|
2790
|
-
readonly maskingRule?: "
|
|
2813
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
2791
2814
|
keepHead: number;
|
|
2792
2815
|
keepTail: number;
|
|
2793
2816
|
} | undefined;
|
|
@@ -2848,6 +2871,7 @@ declare const SysWebhook: Omit<{
|
|
|
2848
2871
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
2849
2872
|
readonly _packageId?: string | undefined;
|
|
2850
2873
|
readonly _packageVersion?: string | undefined;
|
|
2874
|
+
readonly precision?: number | undefined;
|
|
2851
2875
|
readonly name?: string | undefined;
|
|
2852
2876
|
readonly lookupFilters?: {
|
|
2853
2877
|
field: string;
|
|
@@ -2874,7 +2898,6 @@ declare const SysWebhook: Omit<{
|
|
|
2874
2898
|
} | undefined;
|
|
2875
2899
|
readonly reference?: string | undefined;
|
|
2876
2900
|
readonly label?: string | undefined;
|
|
2877
|
-
readonly precision?: number | undefined;
|
|
2878
2901
|
readonly scale?: number | undefined;
|
|
2879
2902
|
readonly step?: number | undefined;
|
|
2880
2903
|
readonly displayField?: string | undefined;
|
|
@@ -2977,7 +3000,7 @@ declare const SysWebhook: Omit<{
|
|
|
2977
3000
|
readonly widget?: string | undefined;
|
|
2978
3001
|
readonly internal?: boolean | undefined;
|
|
2979
3002
|
readonly requiredPermissions?: string[] | undefined;
|
|
2980
|
-
readonly maskingRule?: "
|
|
3003
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
2981
3004
|
keepHead: number;
|
|
2982
3005
|
keepTail: number;
|
|
2983
3006
|
} | undefined;
|
|
@@ -3068,6 +3091,7 @@ declare const SysWebhook: Omit<{
|
|
|
3068
3091
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3069
3092
|
readonly _packageId?: string | undefined;
|
|
3070
3093
|
readonly _packageVersion?: string | undefined;
|
|
3094
|
+
readonly precision?: number | undefined;
|
|
3071
3095
|
readonly name?: string | undefined;
|
|
3072
3096
|
readonly lookupFilters?: {
|
|
3073
3097
|
field: string;
|
|
@@ -3094,7 +3118,6 @@ declare const SysWebhook: Omit<{
|
|
|
3094
3118
|
} | undefined;
|
|
3095
3119
|
readonly reference?: string | undefined;
|
|
3096
3120
|
readonly label?: string | undefined;
|
|
3097
|
-
readonly precision?: number | undefined;
|
|
3098
3121
|
readonly scale?: number | undefined;
|
|
3099
3122
|
readonly step?: number | undefined;
|
|
3100
3123
|
readonly displayField?: string | undefined;
|
|
@@ -3197,7 +3220,7 @@ declare const SysWebhook: Omit<{
|
|
|
3197
3220
|
readonly widget?: string | undefined;
|
|
3198
3221
|
readonly internal?: boolean | undefined;
|
|
3199
3222
|
readonly requiredPermissions?: string[] | undefined;
|
|
3200
|
-
readonly maskingRule?: "
|
|
3223
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
3201
3224
|
keepHead: number;
|
|
3202
3225
|
keepTail: number;
|
|
3203
3226
|
} | undefined;
|
|
@@ -3281,6 +3304,7 @@ declare const SysWebhook: Omit<{
|
|
|
3281
3304
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3282
3305
|
readonly _packageId?: string | undefined;
|
|
3283
3306
|
readonly _packageVersion?: string | undefined;
|
|
3307
|
+
readonly precision?: number | undefined;
|
|
3284
3308
|
readonly name?: string | undefined;
|
|
3285
3309
|
readonly lookupFilters?: {
|
|
3286
3310
|
field: string;
|
|
@@ -3307,7 +3331,6 @@ declare const SysWebhook: Omit<{
|
|
|
3307
3331
|
} | undefined;
|
|
3308
3332
|
readonly reference?: string | undefined;
|
|
3309
3333
|
readonly label?: string | undefined;
|
|
3310
|
-
readonly precision?: number | undefined;
|
|
3311
3334
|
readonly scale?: number | undefined;
|
|
3312
3335
|
readonly step?: number | undefined;
|
|
3313
3336
|
readonly displayField?: string | undefined;
|
|
@@ -3410,7 +3433,7 @@ declare const SysWebhook: Omit<{
|
|
|
3410
3433
|
readonly widget?: string | undefined;
|
|
3411
3434
|
readonly internal?: boolean | undefined;
|
|
3412
3435
|
readonly requiredPermissions?: string[] | undefined;
|
|
3413
|
-
readonly maskingRule?: "
|
|
3436
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
3414
3437
|
keepHead: number;
|
|
3415
3438
|
keepTail: number;
|
|
3416
3439
|
} | undefined;
|
|
@@ -3471,6 +3494,7 @@ declare const SysWebhook: Omit<{
|
|
|
3471
3494
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3472
3495
|
readonly _packageId?: string | undefined;
|
|
3473
3496
|
readonly _packageVersion?: string | undefined;
|
|
3497
|
+
readonly precision?: number | undefined;
|
|
3474
3498
|
readonly name?: string | undefined;
|
|
3475
3499
|
readonly lookupFilters?: {
|
|
3476
3500
|
field: string;
|
|
@@ -3497,7 +3521,6 @@ declare const SysWebhook: Omit<{
|
|
|
3497
3521
|
} | undefined;
|
|
3498
3522
|
readonly reference?: string | undefined;
|
|
3499
3523
|
readonly label?: string | undefined;
|
|
3500
|
-
readonly precision?: number | undefined;
|
|
3501
3524
|
readonly scale?: number | undefined;
|
|
3502
3525
|
readonly step?: number | undefined;
|
|
3503
3526
|
readonly displayField?: string | undefined;
|
|
@@ -3600,7 +3623,7 @@ declare const SysWebhook: Omit<{
|
|
|
3600
3623
|
readonly widget?: string | undefined;
|
|
3601
3624
|
readonly internal?: boolean | undefined;
|
|
3602
3625
|
readonly requiredPermissions?: string[] | undefined;
|
|
3603
|
-
readonly maskingRule?: "
|
|
3626
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
3604
3627
|
keepHead: number;
|
|
3605
3628
|
keepTail: number;
|
|
3606
3629
|
} | undefined;
|
|
@@ -3661,6 +3684,7 @@ declare const SysWebhook: Omit<{
|
|
|
3661
3684
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3662
3685
|
readonly _packageId?: string | undefined;
|
|
3663
3686
|
readonly _packageVersion?: string | undefined;
|
|
3687
|
+
readonly precision?: number | undefined;
|
|
3664
3688
|
readonly name?: string | undefined;
|
|
3665
3689
|
readonly lookupFilters?: {
|
|
3666
3690
|
field: string;
|
|
@@ -3687,7 +3711,6 @@ declare const SysWebhook: Omit<{
|
|
|
3687
3711
|
} | undefined;
|
|
3688
3712
|
readonly reference?: string | undefined;
|
|
3689
3713
|
readonly label?: string | undefined;
|
|
3690
|
-
readonly precision?: number | undefined;
|
|
3691
3714
|
readonly scale?: number | undefined;
|
|
3692
3715
|
readonly step?: number | undefined;
|
|
3693
3716
|
readonly displayField?: string | undefined;
|
|
@@ -3790,7 +3813,7 @@ declare const SysWebhook: Omit<{
|
|
|
3790
3813
|
readonly widget?: string | undefined;
|
|
3791
3814
|
readonly internal?: boolean | undefined;
|
|
3792
3815
|
readonly requiredPermissions?: string[] | undefined;
|
|
3793
|
-
readonly maskingRule?: "
|
|
3816
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
3794
3817
|
keepHead: number;
|
|
3795
3818
|
keepTail: number;
|
|
3796
3819
|
} | undefined;
|
|
@@ -3851,6 +3874,7 @@ declare const SysWebhook: Omit<{
|
|
|
3851
3874
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
3852
3875
|
readonly _packageId?: string | undefined;
|
|
3853
3876
|
readonly _packageVersion?: string | undefined;
|
|
3877
|
+
readonly precision?: number | undefined;
|
|
3854
3878
|
readonly name?: string | undefined;
|
|
3855
3879
|
readonly lookupFilters?: {
|
|
3856
3880
|
field: string;
|
|
@@ -3877,7 +3901,6 @@ declare const SysWebhook: Omit<{
|
|
|
3877
3901
|
} | undefined;
|
|
3878
3902
|
readonly reference?: string | undefined;
|
|
3879
3903
|
readonly label?: string | undefined;
|
|
3880
|
-
readonly precision?: number | undefined;
|
|
3881
3904
|
readonly scale?: number | undefined;
|
|
3882
3905
|
readonly step?: number | undefined;
|
|
3883
3906
|
readonly displayField?: string | undefined;
|
|
@@ -3980,7 +4003,7 @@ declare const SysWebhook: Omit<{
|
|
|
3980
4003
|
readonly widget?: string | undefined;
|
|
3981
4004
|
readonly internal?: boolean | undefined;
|
|
3982
4005
|
readonly requiredPermissions?: string[] | undefined;
|
|
3983
|
-
readonly maskingRule?: "
|
|
4006
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
3984
4007
|
keepHead: number;
|
|
3985
4008
|
keepTail: number;
|
|
3986
4009
|
} | undefined;
|
|
@@ -4041,6 +4064,7 @@ declare const SysWebhook: Omit<{
|
|
|
4041
4064
|
readonly _provenance?: "package" | "env-forced" | "org" | undefined;
|
|
4042
4065
|
readonly _packageId?: string | undefined;
|
|
4043
4066
|
readonly _packageVersion?: string | undefined;
|
|
4067
|
+
readonly precision?: number | undefined;
|
|
4044
4068
|
readonly name?: string | undefined;
|
|
4045
4069
|
readonly lookupFilters?: {
|
|
4046
4070
|
field: string;
|
|
@@ -4067,7 +4091,6 @@ declare const SysWebhook: Omit<{
|
|
|
4067
4091
|
} | undefined;
|
|
4068
4092
|
readonly reference?: string | undefined;
|
|
4069
4093
|
readonly label?: string | undefined;
|
|
4070
|
-
readonly precision?: number | undefined;
|
|
4071
4094
|
readonly scale?: number | undefined;
|
|
4072
4095
|
readonly step?: number | undefined;
|
|
4073
4096
|
readonly displayField?: string | undefined;
|
|
@@ -4170,7 +4193,7 @@ declare const SysWebhook: Omit<{
|
|
|
4170
4193
|
readonly widget?: string | undefined;
|
|
4171
4194
|
readonly internal?: boolean | undefined;
|
|
4172
4195
|
readonly requiredPermissions?: string[] | undefined;
|
|
4173
|
-
readonly maskingRule?: "
|
|
4196
|
+
readonly maskingRule?: "email" | "name" | "phone" | "id_card" | "bank_account" | {
|
|
4174
4197
|
keepHead: number;
|
|
4175
4198
|
keepTail: number;
|
|
4176
4199
|
} | undefined;
|