@objectstack/plugin-webhooks 9.11.0 → 10.0.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @objectstack/plugin-webhooks@9.11.0 build /home/runner/work/framework/framework/packages/plugins/plugin-webhooks
2
+ > @objectstack/plugin-webhooks@10.0.0 build /home/runner/work/framework/framework/packages/plugins/plugin-webhooks
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts, src/schema.ts
@@ -18,7 +18,7 @@
18
18
  ESM dist/schema.js.map 71.00 B
19
19
  ESM dist/chunk-HWFTXTTI.js.map 9.15 KB
20
20
  ESM dist/translations-AV47AVPV.js.map 30.54 KB
21
- ESM ⚡️ Build success in 1108ms
21
+ ESM ⚡️ Build success in 798ms
22
22
  CJS dist/index.cjs 16.40 KB
23
23
  CJS dist/schema.cjs 220.00 B
24
24
  CJS dist/chunk-KPKLAXNA.cjs 4.86 KB
@@ -27,10 +27,10 @@
27
27
  CJS dist/schema.cjs.map 278.00 B
28
28
  CJS dist/chunk-KPKLAXNA.cjs.map 10.96 KB
29
29
  CJS dist/translations-OAKKANSP.cjs.map 34.65 KB
30
- CJS ⚡️ Build success in 1124ms
30
+ CJS ⚡️ Build success in 815ms
31
31
  DTS Build start
32
- DTS ⚡️ Build success in 23887ms
32
+ DTS ⚡️ Build success in 22864ms
33
33
  DTS dist/index.d.ts 6.97 KB
34
- DTS dist/schema.d.ts 117.09 KB
34
+ DTS dist/schema.d.ts 128.06 KB
35
35
  DTS dist/index.d.cts 6.97 KB
36
- DTS dist/schema.d.cts 117.09 KB
36
+ DTS dist/schema.d.cts 128.06 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @objectstack/plugin-webhooks
2
2
 
3
+ ## 10.0.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d7ff626]
8
+ - Updated dependencies [2a1b16b]
9
+ - Updated dependencies [e16f2a8]
10
+ - Updated dependencies [e411a82]
11
+ - Updated dependencies [a581385]
12
+ - Updated dependencies [d5f6d29]
13
+ - Updated dependencies [220ce5b]
14
+ - Updated dependencies [3efe334]
15
+ - Updated dependencies [feead7e]
16
+ - Updated dependencies [6ca20b3]
17
+ - Updated dependencies [5f875fe]
18
+ - Updated dependencies [b469950]
19
+ - @objectstack/spec@10.0.0
20
+ - @objectstack/core@10.0.0
21
+ - @objectstack/service-messaging@10.0.0
22
+
3
23
  ## 9.11.0
4
24
 
5
25
  ### Patch Changes
package/dist/schema.d.cts CHANGED
@@ -35,7 +35,7 @@ declare const SysWebhook: Omit<{
35
35
  abstract: boolean;
36
36
  datasource: string;
37
37
  fields: Record<string, {
38
- type: "number" | "boolean" | "email" | "date" | "record" | "file" | "secret" | "tags" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
38
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "tags" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "password" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
39
39
  required: boolean;
40
40
  searchable: boolean;
41
41
  multiple: boolean;
@@ -73,6 +73,25 @@ declare const SysWebhook: Omit<{
73
73
  relatedList?: boolean | undefined;
74
74
  relatedListTitle?: string | undefined;
75
75
  relatedListColumns?: any[] | undefined;
76
+ displayField?: string | undefined;
77
+ descriptionField?: string | undefined;
78
+ lookupColumns?: (string | {
79
+ field: string;
80
+ label?: string | undefined;
81
+ width?: string | undefined;
82
+ type?: string | undefined;
83
+ })[] | undefined;
84
+ lookupPageSize?: number | undefined;
85
+ lookupFilters?: {
86
+ field: string;
87
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
88
+ value: any;
89
+ }[] | undefined;
90
+ dependsOn?: (string | {
91
+ field: string;
92
+ param?: string | undefined;
93
+ })[] | undefined;
94
+ allowCreate?: boolean | undefined;
76
95
  expression?: {
77
96
  dialect: "cel" | "js" | "cron" | "template";
78
97
  source?: string | undefined;
@@ -348,7 +367,7 @@ declare const SysWebhook: Omit<{
348
367
  } | undefined;
349
368
  compactLayout?: string[] | undefined;
350
369
  listViews?: Record<string, {
351
- type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
370
+ type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
352
371
  columns: string[] | {
353
372
  field: string;
354
373
  label?: string | undefined;
@@ -465,6 +484,7 @@ declare const SysWebhook: Omit<{
465
484
  colorField?: string | undefined;
466
485
  } | undefined;
467
486
  gantt?: {
487
+ [x: string]: unknown;
468
488
  startDateField: string;
469
489
  endDateField: string;
470
490
  titleField: string;
@@ -515,6 +535,13 @@ declare const SysWebhook: Omit<{
515
535
  values: string[];
516
536
  dimensions?: string[] | undefined;
517
537
  } | undefined;
538
+ tree?: {
539
+ [x: string]: unknown;
540
+ parentField?: string | undefined;
541
+ labelField?: string | undefined;
542
+ fields?: string[] | undefined;
543
+ defaultExpandedDepth?: number | undefined;
544
+ } | undefined;
518
545
  description?: string | undefined;
519
546
  sharing?: {
520
547
  type: "personal" | "collaborative";
@@ -570,7 +597,7 @@ declare const SysWebhook: Omit<{
570
597
  } | undefined;
571
598
  appearance?: {
572
599
  showDescription: boolean;
573
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
600
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
574
601
  } | undefined;
575
602
  tabs?: {
576
603
  name: string;
@@ -639,6 +666,7 @@ declare const SysWebhook: Omit<{
639
666
  } | undefined;
640
667
  }> | undefined;
641
668
  defaultDetailForm?: string | undefined;
669
+ searchableFields?: string[] | undefined;
642
670
  search?: {
643
671
  fields: string[];
644
672
  displayFields?: string[] | undefined;
@@ -927,6 +955,25 @@ declare const SysWebhook: Omit<{
927
955
  readonly relatedList?: boolean | undefined;
928
956
  readonly relatedListTitle?: string | undefined;
929
957
  readonly relatedListColumns?: any[] | undefined;
958
+ readonly displayField?: string | undefined;
959
+ readonly descriptionField?: string | undefined;
960
+ readonly lookupColumns?: (string | {
961
+ field: string;
962
+ label?: string | undefined;
963
+ width?: string | undefined;
964
+ type?: string | undefined;
965
+ })[] | undefined;
966
+ readonly lookupPageSize?: number | undefined;
967
+ readonly lookupFilters?: {
968
+ field: string;
969
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
970
+ value: any;
971
+ }[] | undefined;
972
+ readonly dependsOn?: (string | {
973
+ field: string;
974
+ param?: string | undefined;
975
+ })[] | undefined;
976
+ readonly allowCreate?: boolean | undefined;
930
977
  readonly expression?: {
931
978
  dialect: "cel" | "js" | "cron" | "template";
932
979
  source?: string | undefined;
@@ -1082,6 +1129,25 @@ declare const SysWebhook: Omit<{
1082
1129
  readonly relatedList?: boolean | undefined;
1083
1130
  readonly relatedListTitle?: string | undefined;
1084
1131
  readonly relatedListColumns?: any[] | undefined;
1132
+ readonly displayField?: string | undefined;
1133
+ readonly descriptionField?: string | undefined;
1134
+ readonly lookupColumns?: (string | {
1135
+ field: string;
1136
+ label?: string | undefined;
1137
+ width?: string | undefined;
1138
+ type?: string | undefined;
1139
+ })[] | undefined;
1140
+ readonly lookupPageSize?: number | undefined;
1141
+ readonly lookupFilters?: {
1142
+ field: string;
1143
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1144
+ value: any;
1145
+ }[] | undefined;
1146
+ readonly dependsOn?: (string | {
1147
+ field: string;
1148
+ param?: string | undefined;
1149
+ })[] | undefined;
1150
+ readonly allowCreate?: boolean | undefined;
1085
1151
  readonly expression?: {
1086
1152
  dialect: "cel" | "js" | "cron" | "template";
1087
1153
  source?: string | undefined;
@@ -1237,6 +1303,25 @@ declare const SysWebhook: Omit<{
1237
1303
  readonly relatedList?: boolean | undefined;
1238
1304
  readonly relatedListTitle?: string | undefined;
1239
1305
  readonly relatedListColumns?: any[] | undefined;
1306
+ readonly displayField?: string | undefined;
1307
+ readonly descriptionField?: string | undefined;
1308
+ readonly lookupColumns?: (string | {
1309
+ field: string;
1310
+ label?: string | undefined;
1311
+ width?: string | undefined;
1312
+ type?: string | undefined;
1313
+ })[] | undefined;
1314
+ readonly lookupPageSize?: number | undefined;
1315
+ readonly lookupFilters?: {
1316
+ field: string;
1317
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1318
+ value: any;
1319
+ }[] | undefined;
1320
+ readonly dependsOn?: (string | {
1321
+ field: string;
1322
+ param?: string | undefined;
1323
+ })[] | undefined;
1324
+ readonly allowCreate?: boolean | undefined;
1240
1325
  readonly expression?: {
1241
1326
  dialect: "cel" | "js" | "cron" | "template";
1242
1327
  source?: string | undefined;
@@ -1392,6 +1477,25 @@ declare const SysWebhook: Omit<{
1392
1477
  readonly relatedList?: boolean | undefined;
1393
1478
  readonly relatedListTitle?: string | undefined;
1394
1479
  readonly relatedListColumns?: any[] | undefined;
1480
+ readonly displayField?: string | undefined;
1481
+ readonly descriptionField?: string | undefined;
1482
+ readonly lookupColumns?: (string | {
1483
+ field: string;
1484
+ label?: string | undefined;
1485
+ width?: string | undefined;
1486
+ type?: string | undefined;
1487
+ })[] | undefined;
1488
+ readonly lookupPageSize?: number | undefined;
1489
+ readonly lookupFilters?: {
1490
+ field: string;
1491
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1492
+ value: any;
1493
+ }[] | undefined;
1494
+ readonly dependsOn?: (string | {
1495
+ field: string;
1496
+ param?: string | undefined;
1497
+ })[] | undefined;
1498
+ readonly allowCreate?: boolean | undefined;
1395
1499
  readonly expression?: {
1396
1500
  dialect: "cel" | "js" | "cron" | "template";
1397
1501
  source?: string | undefined;
@@ -1547,6 +1651,25 @@ declare const SysWebhook: Omit<{
1547
1651
  readonly relatedList?: boolean | undefined;
1548
1652
  readonly relatedListTitle?: string | undefined;
1549
1653
  readonly relatedListColumns?: any[] | undefined;
1654
+ readonly displayField?: string | undefined;
1655
+ readonly descriptionField?: string | undefined;
1656
+ readonly lookupColumns?: (string | {
1657
+ field: string;
1658
+ label?: string | undefined;
1659
+ width?: string | undefined;
1660
+ type?: string | undefined;
1661
+ })[] | undefined;
1662
+ readonly lookupPageSize?: number | undefined;
1663
+ readonly lookupFilters?: {
1664
+ field: string;
1665
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1666
+ value: any;
1667
+ }[] | undefined;
1668
+ readonly dependsOn?: (string | {
1669
+ field: string;
1670
+ param?: string | undefined;
1671
+ })[] | undefined;
1672
+ readonly allowCreate?: boolean | undefined;
1550
1673
  readonly expression?: {
1551
1674
  dialect: "cel" | "js" | "cron" | "template";
1552
1675
  source?: string | undefined;
@@ -1702,6 +1825,25 @@ declare const SysWebhook: Omit<{
1702
1825
  readonly relatedList?: boolean | undefined;
1703
1826
  readonly relatedListTitle?: string | undefined;
1704
1827
  readonly relatedListColumns?: any[] | undefined;
1828
+ readonly displayField?: string | undefined;
1829
+ readonly descriptionField?: string | undefined;
1830
+ readonly lookupColumns?: (string | {
1831
+ field: string;
1832
+ label?: string | undefined;
1833
+ width?: string | undefined;
1834
+ type?: string | undefined;
1835
+ })[] | undefined;
1836
+ readonly lookupPageSize?: number | undefined;
1837
+ readonly lookupFilters?: {
1838
+ field: string;
1839
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1840
+ value: any;
1841
+ }[] | undefined;
1842
+ readonly dependsOn?: (string | {
1843
+ field: string;
1844
+ param?: string | undefined;
1845
+ })[] | undefined;
1846
+ readonly allowCreate?: boolean | undefined;
1705
1847
  readonly expression?: {
1706
1848
  dialect: "cel" | "js" | "cron" | "template";
1707
1849
  source?: string | undefined;
@@ -1857,6 +1999,25 @@ declare const SysWebhook: Omit<{
1857
1999
  readonly relatedList?: boolean | undefined;
1858
2000
  readonly relatedListTitle?: string | undefined;
1859
2001
  readonly relatedListColumns?: any[] | undefined;
2002
+ readonly displayField?: string | undefined;
2003
+ readonly descriptionField?: string | undefined;
2004
+ readonly lookupColumns?: (string | {
2005
+ field: string;
2006
+ label?: string | undefined;
2007
+ width?: string | undefined;
2008
+ type?: string | undefined;
2009
+ })[] | undefined;
2010
+ readonly lookupPageSize?: number | undefined;
2011
+ readonly lookupFilters?: {
2012
+ field: string;
2013
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2014
+ value: any;
2015
+ }[] | undefined;
2016
+ readonly dependsOn?: (string | {
2017
+ field: string;
2018
+ param?: string | undefined;
2019
+ })[] | undefined;
2020
+ readonly allowCreate?: boolean | undefined;
1860
2021
  readonly expression?: {
1861
2022
  dialect: "cel" | "js" | "cron" | "template";
1862
2023
  source?: string | undefined;
@@ -2012,6 +2173,25 @@ declare const SysWebhook: Omit<{
2012
2173
  readonly relatedList?: boolean | undefined;
2013
2174
  readonly relatedListTitle?: string | undefined;
2014
2175
  readonly relatedListColumns?: any[] | undefined;
2176
+ readonly displayField?: string | undefined;
2177
+ readonly descriptionField?: string | undefined;
2178
+ readonly lookupColumns?: (string | {
2179
+ field: string;
2180
+ label?: string | undefined;
2181
+ width?: string | undefined;
2182
+ type?: string | undefined;
2183
+ })[] | undefined;
2184
+ readonly lookupPageSize?: number | undefined;
2185
+ readonly lookupFilters?: {
2186
+ field: string;
2187
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2188
+ value: any;
2189
+ }[] | undefined;
2190
+ readonly dependsOn?: (string | {
2191
+ field: string;
2192
+ param?: string | undefined;
2193
+ })[] | undefined;
2194
+ readonly allowCreate?: boolean | undefined;
2015
2195
  readonly expression?: {
2016
2196
  dialect: "cel" | "js" | "cron" | "template";
2017
2197
  source?: string | undefined;
@@ -2167,6 +2347,25 @@ declare const SysWebhook: Omit<{
2167
2347
  readonly relatedList?: boolean | undefined;
2168
2348
  readonly relatedListTitle?: string | undefined;
2169
2349
  readonly relatedListColumns?: any[] | undefined;
2350
+ readonly displayField?: string | undefined;
2351
+ readonly descriptionField?: string | undefined;
2352
+ readonly lookupColumns?: (string | {
2353
+ field: string;
2354
+ label?: string | undefined;
2355
+ width?: string | undefined;
2356
+ type?: string | undefined;
2357
+ })[] | undefined;
2358
+ readonly lookupPageSize?: number | undefined;
2359
+ readonly lookupFilters?: {
2360
+ field: string;
2361
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2362
+ value: any;
2363
+ }[] | undefined;
2364
+ readonly dependsOn?: (string | {
2365
+ field: string;
2366
+ param?: string | undefined;
2367
+ })[] | undefined;
2368
+ readonly allowCreate?: boolean | undefined;
2170
2369
  readonly expression?: {
2171
2370
  dialect: "cel" | "js" | "cron" | "template";
2172
2371
  source?: string | undefined;
@@ -2322,6 +2521,25 @@ declare const SysWebhook: Omit<{
2322
2521
  readonly relatedList?: boolean | undefined;
2323
2522
  readonly relatedListTitle?: string | undefined;
2324
2523
  readonly relatedListColumns?: any[] | undefined;
2524
+ readonly displayField?: string | undefined;
2525
+ readonly descriptionField?: string | undefined;
2526
+ readonly lookupColumns?: (string | {
2527
+ field: string;
2528
+ label?: string | undefined;
2529
+ width?: string | undefined;
2530
+ type?: string | undefined;
2531
+ })[] | undefined;
2532
+ readonly lookupPageSize?: number | undefined;
2533
+ readonly lookupFilters?: {
2534
+ field: string;
2535
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2536
+ value: any;
2537
+ }[] | undefined;
2538
+ readonly dependsOn?: (string | {
2539
+ field: string;
2540
+ param?: string | undefined;
2541
+ })[] | undefined;
2542
+ readonly allowCreate?: boolean | undefined;
2325
2543
  readonly expression?: {
2326
2544
  dialect: "cel" | "js" | "cron" | "template";
2327
2545
  source?: string | undefined;
@@ -2477,6 +2695,25 @@ declare const SysWebhook: Omit<{
2477
2695
  readonly relatedList?: boolean | undefined;
2478
2696
  readonly relatedListTitle?: string | undefined;
2479
2697
  readonly relatedListColumns?: any[] | undefined;
2698
+ readonly displayField?: string | undefined;
2699
+ readonly descriptionField?: string | undefined;
2700
+ readonly lookupColumns?: (string | {
2701
+ field: string;
2702
+ label?: string | undefined;
2703
+ width?: string | undefined;
2704
+ type?: string | undefined;
2705
+ })[] | undefined;
2706
+ readonly lookupPageSize?: number | undefined;
2707
+ readonly lookupFilters?: {
2708
+ field: string;
2709
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2710
+ value: any;
2711
+ }[] | undefined;
2712
+ readonly dependsOn?: (string | {
2713
+ field: string;
2714
+ param?: string | undefined;
2715
+ })[] | undefined;
2716
+ readonly allowCreate?: boolean | undefined;
2480
2717
  readonly expression?: {
2481
2718
  dialect: "cel" | "js" | "cron" | "template";
2482
2719
  source?: string | undefined;
@@ -2632,6 +2869,25 @@ declare const SysWebhook: Omit<{
2632
2869
  readonly relatedList?: boolean | undefined;
2633
2870
  readonly relatedListTitle?: string | undefined;
2634
2871
  readonly relatedListColumns?: any[] | undefined;
2872
+ readonly displayField?: string | undefined;
2873
+ readonly descriptionField?: string | undefined;
2874
+ readonly lookupColumns?: (string | {
2875
+ field: string;
2876
+ label?: string | undefined;
2877
+ width?: string | undefined;
2878
+ type?: string | undefined;
2879
+ })[] | undefined;
2880
+ readonly lookupPageSize?: number | undefined;
2881
+ readonly lookupFilters?: {
2882
+ field: string;
2883
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2884
+ value: any;
2885
+ }[] | undefined;
2886
+ readonly dependsOn?: (string | {
2887
+ field: string;
2888
+ param?: string | undefined;
2889
+ })[] | undefined;
2890
+ readonly allowCreate?: boolean | undefined;
2635
2891
  readonly expression?: {
2636
2892
  dialect: "cel" | "js" | "cron" | "template";
2637
2893
  source?: string | undefined;
package/dist/schema.d.ts CHANGED
@@ -35,7 +35,7 @@ declare const SysWebhook: Omit<{
35
35
  abstract: boolean;
36
36
  datasource: string;
37
37
  fields: Record<string, {
38
- type: "number" | "boolean" | "email" | "date" | "record" | "file" | "secret" | "tags" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "currency" | "percent" | "password" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
38
+ type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "secret" | "tags" | "code" | "datetime" | "signature" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "password" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
39
39
  required: boolean;
40
40
  searchable: boolean;
41
41
  multiple: boolean;
@@ -73,6 +73,25 @@ declare const SysWebhook: Omit<{
73
73
  relatedList?: boolean | undefined;
74
74
  relatedListTitle?: string | undefined;
75
75
  relatedListColumns?: any[] | undefined;
76
+ displayField?: string | undefined;
77
+ descriptionField?: string | undefined;
78
+ lookupColumns?: (string | {
79
+ field: string;
80
+ label?: string | undefined;
81
+ width?: string | undefined;
82
+ type?: string | undefined;
83
+ })[] | undefined;
84
+ lookupPageSize?: number | undefined;
85
+ lookupFilters?: {
86
+ field: string;
87
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
88
+ value: any;
89
+ }[] | undefined;
90
+ dependsOn?: (string | {
91
+ field: string;
92
+ param?: string | undefined;
93
+ })[] | undefined;
94
+ allowCreate?: boolean | undefined;
76
95
  expression?: {
77
96
  dialect: "cel" | "js" | "cron" | "template";
78
97
  source?: string | undefined;
@@ -348,7 +367,7 @@ declare const SysWebhook: Omit<{
348
367
  } | undefined;
349
368
  compactLayout?: string[] | undefined;
350
369
  listViews?: Record<string, {
351
- type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
370
+ type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
352
371
  columns: string[] | {
353
372
  field: string;
354
373
  label?: string | undefined;
@@ -465,6 +484,7 @@ declare const SysWebhook: Omit<{
465
484
  colorField?: string | undefined;
466
485
  } | undefined;
467
486
  gantt?: {
487
+ [x: string]: unknown;
468
488
  startDateField: string;
469
489
  endDateField: string;
470
490
  titleField: string;
@@ -515,6 +535,13 @@ declare const SysWebhook: Omit<{
515
535
  values: string[];
516
536
  dimensions?: string[] | undefined;
517
537
  } | undefined;
538
+ tree?: {
539
+ [x: string]: unknown;
540
+ parentField?: string | undefined;
541
+ labelField?: string | undefined;
542
+ fields?: string[] | undefined;
543
+ defaultExpandedDepth?: number | undefined;
544
+ } | undefined;
518
545
  description?: string | undefined;
519
546
  sharing?: {
520
547
  type: "personal" | "collaborative";
@@ -570,7 +597,7 @@ declare const SysWebhook: Omit<{
570
597
  } | undefined;
571
598
  appearance?: {
572
599
  showDescription: boolean;
573
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
600
+ allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
574
601
  } | undefined;
575
602
  tabs?: {
576
603
  name: string;
@@ -639,6 +666,7 @@ declare const SysWebhook: Omit<{
639
666
  } | undefined;
640
667
  }> | undefined;
641
668
  defaultDetailForm?: string | undefined;
669
+ searchableFields?: string[] | undefined;
642
670
  search?: {
643
671
  fields: string[];
644
672
  displayFields?: string[] | undefined;
@@ -927,6 +955,25 @@ declare const SysWebhook: Omit<{
927
955
  readonly relatedList?: boolean | undefined;
928
956
  readonly relatedListTitle?: string | undefined;
929
957
  readonly relatedListColumns?: any[] | undefined;
958
+ readonly displayField?: string | undefined;
959
+ readonly descriptionField?: string | undefined;
960
+ readonly lookupColumns?: (string | {
961
+ field: string;
962
+ label?: string | undefined;
963
+ width?: string | undefined;
964
+ type?: string | undefined;
965
+ })[] | undefined;
966
+ readonly lookupPageSize?: number | undefined;
967
+ readonly lookupFilters?: {
968
+ field: string;
969
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
970
+ value: any;
971
+ }[] | undefined;
972
+ readonly dependsOn?: (string | {
973
+ field: string;
974
+ param?: string | undefined;
975
+ })[] | undefined;
976
+ readonly allowCreate?: boolean | undefined;
930
977
  readonly expression?: {
931
978
  dialect: "cel" | "js" | "cron" | "template";
932
979
  source?: string | undefined;
@@ -1082,6 +1129,25 @@ declare const SysWebhook: Omit<{
1082
1129
  readonly relatedList?: boolean | undefined;
1083
1130
  readonly relatedListTitle?: string | undefined;
1084
1131
  readonly relatedListColumns?: any[] | undefined;
1132
+ readonly displayField?: string | undefined;
1133
+ readonly descriptionField?: string | undefined;
1134
+ readonly lookupColumns?: (string | {
1135
+ field: string;
1136
+ label?: string | undefined;
1137
+ width?: string | undefined;
1138
+ type?: string | undefined;
1139
+ })[] | undefined;
1140
+ readonly lookupPageSize?: number | undefined;
1141
+ readonly lookupFilters?: {
1142
+ field: string;
1143
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1144
+ value: any;
1145
+ }[] | undefined;
1146
+ readonly dependsOn?: (string | {
1147
+ field: string;
1148
+ param?: string | undefined;
1149
+ })[] | undefined;
1150
+ readonly allowCreate?: boolean | undefined;
1085
1151
  readonly expression?: {
1086
1152
  dialect: "cel" | "js" | "cron" | "template";
1087
1153
  source?: string | undefined;
@@ -1237,6 +1303,25 @@ declare const SysWebhook: Omit<{
1237
1303
  readonly relatedList?: boolean | undefined;
1238
1304
  readonly relatedListTitle?: string | undefined;
1239
1305
  readonly relatedListColumns?: any[] | undefined;
1306
+ readonly displayField?: string | undefined;
1307
+ readonly descriptionField?: string | undefined;
1308
+ readonly lookupColumns?: (string | {
1309
+ field: string;
1310
+ label?: string | undefined;
1311
+ width?: string | undefined;
1312
+ type?: string | undefined;
1313
+ })[] | undefined;
1314
+ readonly lookupPageSize?: number | undefined;
1315
+ readonly lookupFilters?: {
1316
+ field: string;
1317
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1318
+ value: any;
1319
+ }[] | undefined;
1320
+ readonly dependsOn?: (string | {
1321
+ field: string;
1322
+ param?: string | undefined;
1323
+ })[] | undefined;
1324
+ readonly allowCreate?: boolean | undefined;
1240
1325
  readonly expression?: {
1241
1326
  dialect: "cel" | "js" | "cron" | "template";
1242
1327
  source?: string | undefined;
@@ -1392,6 +1477,25 @@ declare const SysWebhook: Omit<{
1392
1477
  readonly relatedList?: boolean | undefined;
1393
1478
  readonly relatedListTitle?: string | undefined;
1394
1479
  readonly relatedListColumns?: any[] | undefined;
1480
+ readonly displayField?: string | undefined;
1481
+ readonly descriptionField?: string | undefined;
1482
+ readonly lookupColumns?: (string | {
1483
+ field: string;
1484
+ label?: string | undefined;
1485
+ width?: string | undefined;
1486
+ type?: string | undefined;
1487
+ })[] | undefined;
1488
+ readonly lookupPageSize?: number | undefined;
1489
+ readonly lookupFilters?: {
1490
+ field: string;
1491
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1492
+ value: any;
1493
+ }[] | undefined;
1494
+ readonly dependsOn?: (string | {
1495
+ field: string;
1496
+ param?: string | undefined;
1497
+ })[] | undefined;
1498
+ readonly allowCreate?: boolean | undefined;
1395
1499
  readonly expression?: {
1396
1500
  dialect: "cel" | "js" | "cron" | "template";
1397
1501
  source?: string | undefined;
@@ -1547,6 +1651,25 @@ declare const SysWebhook: Omit<{
1547
1651
  readonly relatedList?: boolean | undefined;
1548
1652
  readonly relatedListTitle?: string | undefined;
1549
1653
  readonly relatedListColumns?: any[] | undefined;
1654
+ readonly displayField?: string | undefined;
1655
+ readonly descriptionField?: string | undefined;
1656
+ readonly lookupColumns?: (string | {
1657
+ field: string;
1658
+ label?: string | undefined;
1659
+ width?: string | undefined;
1660
+ type?: string | undefined;
1661
+ })[] | undefined;
1662
+ readonly lookupPageSize?: number | undefined;
1663
+ readonly lookupFilters?: {
1664
+ field: string;
1665
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1666
+ value: any;
1667
+ }[] | undefined;
1668
+ readonly dependsOn?: (string | {
1669
+ field: string;
1670
+ param?: string | undefined;
1671
+ })[] | undefined;
1672
+ readonly allowCreate?: boolean | undefined;
1550
1673
  readonly expression?: {
1551
1674
  dialect: "cel" | "js" | "cron" | "template";
1552
1675
  source?: string | undefined;
@@ -1702,6 +1825,25 @@ declare const SysWebhook: Omit<{
1702
1825
  readonly relatedList?: boolean | undefined;
1703
1826
  readonly relatedListTitle?: string | undefined;
1704
1827
  readonly relatedListColumns?: any[] | undefined;
1828
+ readonly displayField?: string | undefined;
1829
+ readonly descriptionField?: string | undefined;
1830
+ readonly lookupColumns?: (string | {
1831
+ field: string;
1832
+ label?: string | undefined;
1833
+ width?: string | undefined;
1834
+ type?: string | undefined;
1835
+ })[] | undefined;
1836
+ readonly lookupPageSize?: number | undefined;
1837
+ readonly lookupFilters?: {
1838
+ field: string;
1839
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
1840
+ value: any;
1841
+ }[] | undefined;
1842
+ readonly dependsOn?: (string | {
1843
+ field: string;
1844
+ param?: string | undefined;
1845
+ })[] | undefined;
1846
+ readonly allowCreate?: boolean | undefined;
1705
1847
  readonly expression?: {
1706
1848
  dialect: "cel" | "js" | "cron" | "template";
1707
1849
  source?: string | undefined;
@@ -1857,6 +1999,25 @@ declare const SysWebhook: Omit<{
1857
1999
  readonly relatedList?: boolean | undefined;
1858
2000
  readonly relatedListTitle?: string | undefined;
1859
2001
  readonly relatedListColumns?: any[] | undefined;
2002
+ readonly displayField?: string | undefined;
2003
+ readonly descriptionField?: string | undefined;
2004
+ readonly lookupColumns?: (string | {
2005
+ field: string;
2006
+ label?: string | undefined;
2007
+ width?: string | undefined;
2008
+ type?: string | undefined;
2009
+ })[] | undefined;
2010
+ readonly lookupPageSize?: number | undefined;
2011
+ readonly lookupFilters?: {
2012
+ field: string;
2013
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2014
+ value: any;
2015
+ }[] | undefined;
2016
+ readonly dependsOn?: (string | {
2017
+ field: string;
2018
+ param?: string | undefined;
2019
+ })[] | undefined;
2020
+ readonly allowCreate?: boolean | undefined;
1860
2021
  readonly expression?: {
1861
2022
  dialect: "cel" | "js" | "cron" | "template";
1862
2023
  source?: string | undefined;
@@ -2012,6 +2173,25 @@ declare const SysWebhook: Omit<{
2012
2173
  readonly relatedList?: boolean | undefined;
2013
2174
  readonly relatedListTitle?: string | undefined;
2014
2175
  readonly relatedListColumns?: any[] | undefined;
2176
+ readonly displayField?: string | undefined;
2177
+ readonly descriptionField?: string | undefined;
2178
+ readonly lookupColumns?: (string | {
2179
+ field: string;
2180
+ label?: string | undefined;
2181
+ width?: string | undefined;
2182
+ type?: string | undefined;
2183
+ })[] | undefined;
2184
+ readonly lookupPageSize?: number | undefined;
2185
+ readonly lookupFilters?: {
2186
+ field: string;
2187
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2188
+ value: any;
2189
+ }[] | undefined;
2190
+ readonly dependsOn?: (string | {
2191
+ field: string;
2192
+ param?: string | undefined;
2193
+ })[] | undefined;
2194
+ readonly allowCreate?: boolean | undefined;
2015
2195
  readonly expression?: {
2016
2196
  dialect: "cel" | "js" | "cron" | "template";
2017
2197
  source?: string | undefined;
@@ -2167,6 +2347,25 @@ declare const SysWebhook: Omit<{
2167
2347
  readonly relatedList?: boolean | undefined;
2168
2348
  readonly relatedListTitle?: string | undefined;
2169
2349
  readonly relatedListColumns?: any[] | undefined;
2350
+ readonly displayField?: string | undefined;
2351
+ readonly descriptionField?: string | undefined;
2352
+ readonly lookupColumns?: (string | {
2353
+ field: string;
2354
+ label?: string | undefined;
2355
+ width?: string | undefined;
2356
+ type?: string | undefined;
2357
+ })[] | undefined;
2358
+ readonly lookupPageSize?: number | undefined;
2359
+ readonly lookupFilters?: {
2360
+ field: string;
2361
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2362
+ value: any;
2363
+ }[] | undefined;
2364
+ readonly dependsOn?: (string | {
2365
+ field: string;
2366
+ param?: string | undefined;
2367
+ })[] | undefined;
2368
+ readonly allowCreate?: boolean | undefined;
2170
2369
  readonly expression?: {
2171
2370
  dialect: "cel" | "js" | "cron" | "template";
2172
2371
  source?: string | undefined;
@@ -2322,6 +2521,25 @@ declare const SysWebhook: Omit<{
2322
2521
  readonly relatedList?: boolean | undefined;
2323
2522
  readonly relatedListTitle?: string | undefined;
2324
2523
  readonly relatedListColumns?: any[] | undefined;
2524
+ readonly displayField?: string | undefined;
2525
+ readonly descriptionField?: string | undefined;
2526
+ readonly lookupColumns?: (string | {
2527
+ field: string;
2528
+ label?: string | undefined;
2529
+ width?: string | undefined;
2530
+ type?: string | undefined;
2531
+ })[] | undefined;
2532
+ readonly lookupPageSize?: number | undefined;
2533
+ readonly lookupFilters?: {
2534
+ field: string;
2535
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2536
+ value: any;
2537
+ }[] | undefined;
2538
+ readonly dependsOn?: (string | {
2539
+ field: string;
2540
+ param?: string | undefined;
2541
+ })[] | undefined;
2542
+ readonly allowCreate?: boolean | undefined;
2325
2543
  readonly expression?: {
2326
2544
  dialect: "cel" | "js" | "cron" | "template";
2327
2545
  source?: string | undefined;
@@ -2477,6 +2695,25 @@ declare const SysWebhook: Omit<{
2477
2695
  readonly relatedList?: boolean | undefined;
2478
2696
  readonly relatedListTitle?: string | undefined;
2479
2697
  readonly relatedListColumns?: any[] | undefined;
2698
+ readonly displayField?: string | undefined;
2699
+ readonly descriptionField?: string | undefined;
2700
+ readonly lookupColumns?: (string | {
2701
+ field: string;
2702
+ label?: string | undefined;
2703
+ width?: string | undefined;
2704
+ type?: string | undefined;
2705
+ })[] | undefined;
2706
+ readonly lookupPageSize?: number | undefined;
2707
+ readonly lookupFilters?: {
2708
+ field: string;
2709
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2710
+ value: any;
2711
+ }[] | undefined;
2712
+ readonly dependsOn?: (string | {
2713
+ field: string;
2714
+ param?: string | undefined;
2715
+ })[] | undefined;
2716
+ readonly allowCreate?: boolean | undefined;
2480
2717
  readonly expression?: {
2481
2718
  dialect: "cel" | "js" | "cron" | "template";
2482
2719
  source?: string | undefined;
@@ -2632,6 +2869,25 @@ declare const SysWebhook: Omit<{
2632
2869
  readonly relatedList?: boolean | undefined;
2633
2870
  readonly relatedListTitle?: string | undefined;
2634
2871
  readonly relatedListColumns?: any[] | undefined;
2872
+ readonly displayField?: string | undefined;
2873
+ readonly descriptionField?: string | undefined;
2874
+ readonly lookupColumns?: (string | {
2875
+ field: string;
2876
+ label?: string | undefined;
2877
+ width?: string | undefined;
2878
+ type?: string | undefined;
2879
+ })[] | undefined;
2880
+ readonly lookupPageSize?: number | undefined;
2881
+ readonly lookupFilters?: {
2882
+ field: string;
2883
+ operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
2884
+ value: any;
2885
+ }[] | undefined;
2886
+ readonly dependsOn?: (string | {
2887
+ field: string;
2888
+ param?: string | undefined;
2889
+ })[] | undefined;
2890
+ readonly allowCreate?: boolean | undefined;
2635
2891
  readonly expression?: {
2636
2892
  dialect: "cel" | "js" | "cron" | "template";
2637
2893
  source?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/plugin-webhooks",
3
- "version": "9.11.0",
3
+ "version": "10.0.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Persistent, cluster-aware webhook dispatcher. Durable outbox + per-partition cluster.lock for exactly-once-ish delivery across nodes. See content/docs/concepts/webhook-delivery.mdx.",
6
6
  "type": "module",
@@ -19,12 +19,12 @@
19
19
  }
20
20
  },
21
21
  "dependencies": {
22
- "@objectstack/core": "9.11.0",
23
- "@objectstack/service-messaging": "9.11.0",
24
- "@objectstack/spec": "9.11.0"
22
+ "@objectstack/core": "10.0.0",
23
+ "@objectstack/service-messaging": "10.0.0",
24
+ "@objectstack/spec": "10.0.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@types/node": "^25.9.3",
27
+ "@types/node": "^26.0.0",
28
28
  "typescript": "^6.0.3",
29
29
  "vitest": "^4.1.9"
30
30
  },