windmill-client 1.669.1 → 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.
- package/dist/core/OpenAPI.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types.gen.d.ts +24 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -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
|
*/
|