@objectstack/plugin-webhooks 9.1.0 → 9.3.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.1.0 build /home/runner/work/framework/framework/packages/plugins/plugin-webhooks
2
+ > @objectstack/plugin-webhooks@9.3.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
@@ -11,14 +11,14 @@
11
11
  ESM Build start
12
12
  CJS Build start
13
13
  ESM dist/index.js 12.73 KB
14
+ ESM dist/schema.js 111.00 B
14
15
  ESM dist/chunk-HWFTXTTI.js 4.71 KB
15
16
  ESM dist/translations-AV47AVPV.js 19.41 KB
16
- ESM dist/schema.js 111.00 B
17
17
  ESM dist/index.js.map 32.44 KB
18
+ ESM dist/schema.js.map 71.00 B
18
19
  ESM dist/chunk-HWFTXTTI.js.map 9.15 KB
19
20
  ESM dist/translations-AV47AVPV.js.map 30.54 KB
20
- ESM dist/schema.js.map 71.00 B
21
- ESM ⚡️ Build success in 1239ms
21
+ ESM ⚡️ Build success in 752ms
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 1270ms
30
+ CJS ⚡️ Build success in 890ms
31
31
  DTS Build start
32
- DTS ⚡️ Build success in 20700ms
32
+ DTS ⚡️ Build success in 8762ms
33
33
  DTS dist/index.d.ts 6.97 KB
34
- DTS dist/schema.d.ts 148.78 KB
34
+ DTS dist/schema.d.ts 150.13 KB
35
35
  DTS dist/index.d.cts 6.97 KB
36
- DTS dist/schema.d.cts 148.78 KB
36
+ DTS dist/schema.d.cts 150.13 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @objectstack/plugin-webhooks
2
2
 
3
+ ## 9.3.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [1ada658]
8
+ - Updated dependencies [3219191]
9
+ - Updated dependencies [290f631]
10
+ - Updated dependencies [50b7b47]
11
+ - Updated dependencies [f15d6f6]
12
+ - Updated dependencies [f8684ea]
13
+ - Updated dependencies [b4765be]
14
+ - @objectstack/spec@9.3.0
15
+ - @objectstack/core@9.3.0
16
+ - @objectstack/service-messaging@9.3.0
17
+
18
+ ## 9.2.0
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [2f57b75]
23
+ - Updated dependencies [2f57b75]
24
+ - @objectstack/spec@9.2.0
25
+ - @objectstack/core@9.2.0
26
+ - @objectstack/service-messaging@9.2.0
27
+
3
28
  ## 9.1.0
4
29
 
5
30
  ### Patch Changes
package/dist/schema.d.cts CHANGED
@@ -458,6 +458,37 @@ declare const SysWebhook: Omit<{
458
458
  }[] | undefined;
459
459
  searchableFields?: string[] | undefined;
460
460
  filterableFields?: string[] | undefined;
461
+ userFilters?: {
462
+ element: "toggle" | "tabs" | "dropdown";
463
+ fields?: {
464
+ field: string;
465
+ label?: string | undefined;
466
+ type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
467
+ options?: {
468
+ value: string | number | boolean;
469
+ label: string;
470
+ color?: string | undefined;
471
+ }[] | undefined;
472
+ showCount?: boolean | undefined;
473
+ defaultValues?: (string | number | boolean)[] | undefined;
474
+ }[] | undefined;
475
+ tabs?: {
476
+ name: string;
477
+ pinned: boolean;
478
+ isDefault: boolean;
479
+ visible: boolean;
480
+ label?: string | undefined;
481
+ icon?: string | undefined;
482
+ view?: string | undefined;
483
+ filter?: {
484
+ field: string;
485
+ operator: string;
486
+ value?: string | number | boolean | (string | number)[] | null | undefined;
487
+ }[] | undefined;
488
+ order?: number | undefined;
489
+ }[] | undefined;
490
+ showAllRecords?: boolean | undefined;
491
+ } | undefined;
461
492
  resizable?: boolean | undefined;
462
493
  striped?: boolean | undefined;
463
494
  bordered?: boolean | undefined;
@@ -570,7 +601,7 @@ declare const SysWebhook: Omit<{
570
601
  } | undefined;
571
602
  appearance?: {
572
603
  showDescription: boolean;
573
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
604
+ allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
574
605
  } | undefined;
575
606
  tabs?: {
576
607
  name: string;
@@ -764,6 +795,8 @@ declare const SysWebhook: Omit<{
764
795
  method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
765
796
  bodyExtra?: Record<string, unknown> | undefined;
766
797
  mode?: "custom" | "delete" | "edit" | "create" | undefined;
798
+ opensInNewTab?: boolean | undefined;
799
+ newTabUrl?: string | undefined;
767
800
  timeout?: number | undefined;
768
801
  aria?: {
769
802
  ariaLabel?: string | undefined;
package/dist/schema.d.ts CHANGED
@@ -458,6 +458,37 @@ declare const SysWebhook: Omit<{
458
458
  }[] | undefined;
459
459
  searchableFields?: string[] | undefined;
460
460
  filterableFields?: string[] | undefined;
461
+ userFilters?: {
462
+ element: "toggle" | "tabs" | "dropdown";
463
+ fields?: {
464
+ field: string;
465
+ label?: string | undefined;
466
+ type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
467
+ options?: {
468
+ value: string | number | boolean;
469
+ label: string;
470
+ color?: string | undefined;
471
+ }[] | undefined;
472
+ showCount?: boolean | undefined;
473
+ defaultValues?: (string | number | boolean)[] | undefined;
474
+ }[] | undefined;
475
+ tabs?: {
476
+ name: string;
477
+ pinned: boolean;
478
+ isDefault: boolean;
479
+ visible: boolean;
480
+ label?: string | undefined;
481
+ icon?: string | undefined;
482
+ view?: string | undefined;
483
+ filter?: {
484
+ field: string;
485
+ operator: string;
486
+ value?: string | number | boolean | (string | number)[] | null | undefined;
487
+ }[] | undefined;
488
+ order?: number | undefined;
489
+ }[] | undefined;
490
+ showAllRecords?: boolean | undefined;
491
+ } | undefined;
461
492
  resizable?: boolean | undefined;
462
493
  striped?: boolean | undefined;
463
494
  bordered?: boolean | undefined;
@@ -570,7 +601,7 @@ declare const SysWebhook: Omit<{
570
601
  } | undefined;
571
602
  appearance?: {
572
603
  showDescription: boolean;
573
- allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline")[] | undefined;
604
+ allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
574
605
  } | undefined;
575
606
  tabs?: {
576
607
  name: string;
@@ -764,6 +795,8 @@ declare const SysWebhook: Omit<{
764
795
  method?: "POST" | "PATCH" | "PUT" | "DELETE" | undefined;
765
796
  bodyExtra?: Record<string, unknown> | undefined;
766
797
  mode?: "custom" | "delete" | "edit" | "create" | undefined;
798
+ opensInNewTab?: boolean | undefined;
799
+ newTabUrl?: string | undefined;
767
800
  timeout?: number | undefined;
768
801
  aria?: {
769
802
  ariaLabel?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/plugin-webhooks",
3
- "version": "9.1.0",
3
+ "version": "9.3.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,9 +19,9 @@
19
19
  }
20
20
  },
21
21
  "dependencies": {
22
- "@objectstack/core": "9.1.0",
23
- "@objectstack/service-messaging": "9.1.0",
24
- "@objectstack/spec": "9.1.0"
22
+ "@objectstack/core": "9.3.0",
23
+ "@objectstack/service-messaging": "9.3.0",
24
+ "@objectstack/spec": "9.3.0"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/node": "^25.9.2",