windmill-client 1.669.0 → 1.670.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.
@@ -29,7 +29,7 @@ const OpenAPI = {
29
29
  PASSWORD: void 0,
30
30
  TOKEN: getEnv("WM_TOKEN"),
31
31
  USERNAME: void 0,
32
- VERSION: "1.669.0",
32
+ VERSION: "1.670.0",
33
33
  WITH_CREDENTIALS: true,
34
34
  interceptors: {
35
35
  request: new Interceptors(),
package/dist/index.js CHANGED
@@ -126,7 +126,7 @@ const OpenAPI = {
126
126
  PASSWORD: void 0,
127
127
  TOKEN: getEnv$1("WM_TOKEN"),
128
128
  USERNAME: void 0,
129
- VERSION: "1.669.0",
129
+ VERSION: "1.670.0",
130
130
  WITH_CREDENTIALS: true,
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -2733,6 +2733,10 @@ export type WebsocketTrigger = TriggerExtraProperty & {
2733
2733
  key: string;
2734
2734
  value: unknown;
2735
2735
  }>;
2736
+ /**
2737
+ * Logic to apply when evaluating filters. 'and' requires all filters to match, 'or' requires any filter to match.
2738
+ */
2739
+ filter_logic?: 'and' | 'or';
2736
2740
  /**
2737
2741
  * Messages to send immediately after connecting (can be raw strings or computed by runnables)
2738
2742
  */
@@ -2787,6 +2791,10 @@ export type NewWebsocketTrigger = {
2787
2791
  key: string;
2788
2792
  value: unknown;
2789
2793
  }>;
2794
+ /**
2795
+ * Logic to apply when evaluating filters. 'and' requires all filters to match, 'or' requires any filter to match.
2796
+ */
2797
+ filter_logic?: 'and' | 'or';
2790
2798
  /**
2791
2799
  * Messages to send immediately after connecting (can be raw strings or computed by runnables)
2792
2800
  */
@@ -2848,6 +2856,10 @@ export type EditWebsocketTrigger = {
2848
2856
  key: string;
2849
2857
  value: unknown;
2850
2858
  }>;
2859
+ /**
2860
+ * Logic to apply when evaluating filters. 'and' requires all filters to match, 'or' requires any filter to match.
2861
+ */
2862
+ filter_logic?: 'and' | 'or';
2851
2863
  /**
2852
2864
  * Messages to send immediately after connecting (can be raw strings or computed by runnables)
2853
2865
  */
@@ -3562,6 +3574,10 @@ export type KafkaTrigger = TriggerExtraProperty & {
3562
3574
  key: string;
3563
3575
  value: unknown;
3564
3576
  }>;
3577
+ /**
3578
+ * Logic to apply when evaluating filters. 'and' requires all filters to match, 'or' requires any filter to match.
3579
+ */
3580
+ filter_logic?: 'and' | 'or';
3565
3581
  /**
3566
3582
  * Initial offset behavior when consumer group has no committed offset. 'latest' starts from new messages only, 'earliest' starts from the beginning.
3567
3583
  */
@@ -3624,6 +3640,10 @@ export type NewKafkaTrigger = {
3624
3640
  key: string;
3625
3641
  value: unknown;
3626
3642
  }>;
3643
+ /**
3644
+ * Logic to apply when evaluating filters. 'and' requires all filters to match, 'or' requires any filter to match.
3645
+ */
3646
+ filter_logic?: 'and' | 'or';
3627
3647
  /**
3628
3648
  * Initial offset behavior when consumer group has no committed offset.
3629
3649
  */
@@ -3671,6 +3691,10 @@ export type EditKafkaTrigger = {
3671
3691
  key: string;
3672
3692
  value: unknown;
3673
3693
  }>;
3694
+ /**
3695
+ * Logic to apply when evaluating filters. 'and' requires all filters to match, 'or' requires any filter to match.
3696
+ */
3697
+ filter_logic?: 'and' | 'or';
3674
3698
  /**
3675
3699
  * Initial offset behavior when consumer group has no committed offset.
3676
3700
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.669.0",
4
+ "version": "1.670.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "sideEffects": false,