scordi-extension 1.14.7 → 1.14.9

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.
@@ -30,10 +30,10 @@ export declare const EventClickBlockSchema: z.ZodObject<{
30
30
  mode: z.ZodEnum<["exact", "contains", "startsWith", "endsWith", "regex"]>;
31
31
  }, "strip", z.ZodTypeAny, {
32
32
  text: string | string[];
33
- mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
33
+ mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
34
34
  }, {
35
35
  text: string | string[];
36
- mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
36
+ mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
37
37
  }>>;
38
38
  }, "strip", z.ZodTypeAny, {
39
39
  name: "event-click";
@@ -46,7 +46,7 @@ export declare const EventClickBlockSchema: z.ZodObject<{
46
46
  };
47
47
  textFilter?: {
48
48
  text: string | string[];
49
- mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
49
+ mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
50
50
  } | undefined;
51
51
  }, {
52
52
  name: "event-click";
@@ -59,7 +59,7 @@ export declare const EventClickBlockSchema: z.ZodObject<{
59
59
  };
60
60
  textFilter?: {
61
61
  text: string | string[];
62
- mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
62
+ mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
63
63
  } | undefined;
64
64
  }>;
65
65
  export declare function validateEventClickBlock(data: unknown): EventClickBlock;
@@ -29,18 +29,18 @@ export declare const FetchApiBlockSchema: z.ZodObject<{
29
29
  name: "fetch-api";
30
30
  url: string;
31
31
  body?: Record<string, any> | undefined;
32
+ timeout?: number | undefined;
32
33
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
33
34
  headers?: Record<string, string> | undefined;
34
- timeout?: number | undefined;
35
35
  parseJson?: boolean | undefined;
36
36
  returnHeaders?: boolean | undefined;
37
37
  }, {
38
38
  name: "fetch-api";
39
39
  url: string;
40
40
  body?: Record<string, any> | undefined;
41
+ timeout?: number | undefined;
41
42
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
42
43
  headers?: Record<string, string> | undefined;
43
- timeout?: number | undefined;
44
44
  parseJson?: boolean | undefined;
45
45
  returnHeaders?: boolean | undefined;
46
46
  }>;
@@ -55,13 +55,13 @@ export declare const GetElementDataBlockSchema: z.ZodObject<{
55
55
  waitSelectorTimeout?: number | undefined;
56
56
  multiple?: boolean | undefined;
57
57
  };
58
- regex?: string | undefined;
59
- attributes?: string[] | undefined;
60
- includeText?: boolean | undefined;
61
58
  includeTags?: boolean | undefined;
62
59
  useTextContent?: boolean | undefined;
60
+ regex?: string | undefined;
63
61
  prefixText?: string | undefined;
64
62
  suffixText?: string | undefined;
63
+ attributes?: string[] | undefined;
64
+ includeText?: boolean | undefined;
65
65
  includeSelector?: boolean | undefined;
66
66
  includeXPath?: boolean | undefined;
67
67
  }, {
@@ -73,13 +73,13 @@ export declare const GetElementDataBlockSchema: z.ZodObject<{
73
73
  waitSelectorTimeout?: number | undefined;
74
74
  multiple?: boolean | undefined;
75
75
  };
76
- regex?: string | undefined;
77
- attributes?: string[] | undefined;
78
- includeText?: boolean | undefined;
79
76
  includeTags?: boolean | undefined;
80
77
  useTextContent?: boolean | undefined;
78
+ regex?: string | undefined;
81
79
  prefixText?: string | undefined;
82
80
  suffixText?: string | undefined;
81
+ attributes?: string[] | undefined;
82
+ includeText?: boolean | undefined;
83
83
  includeSelector?: boolean | undefined;
84
84
  includeXPath?: boolean | undefined;
85
85
  }>;
@@ -50,9 +50,9 @@ export declare const GetTextBlockSchema: z.ZodObject<{
50
50
  waitSelectorTimeout?: number | undefined;
51
51
  multiple?: boolean | undefined;
52
52
  };
53
- regex?: string | undefined;
54
53
  includeTags?: boolean | undefined;
55
54
  useTextContent?: boolean | undefined;
55
+ regex?: string | undefined;
56
56
  prefixText?: string | undefined;
57
57
  suffixText?: string | undefined;
58
58
  filterEmpty?: boolean | undefined;
@@ -69,9 +69,9 @@ export declare const GetTextBlockSchema: z.ZodObject<{
69
69
  waitSelectorTimeout?: number | undefined;
70
70
  multiple?: boolean | undefined;
71
71
  };
72
- regex?: string | undefined;
73
72
  includeTags?: boolean | undefined;
74
73
  useTextContent?: boolean | undefined;
74
+ regex?: string | undefined;
75
75
  prefixText?: string | undefined;
76
76
  suffixText?: string | undefined;
77
77
  filterEmpty?: boolean | undefined;
@@ -88,9 +88,9 @@ export declare const AllBlockSchemas: {
88
88
  waitSelectorTimeout?: number | undefined;
89
89
  multiple?: boolean | undefined;
90
90
  };
91
- regex?: string | undefined;
92
91
  includeTags?: boolean | undefined;
93
92
  useTextContent?: boolean | undefined;
93
+ regex?: string | undefined;
94
94
  prefixText?: string | undefined;
95
95
  suffixText?: string | undefined;
96
96
  filterEmpty?: boolean | undefined;
@@ -107,9 +107,9 @@ export declare const AllBlockSchemas: {
107
107
  waitSelectorTimeout?: number | undefined;
108
108
  multiple?: boolean | undefined;
109
109
  };
110
- regex?: string | undefined;
111
110
  includeTags?: boolean | undefined;
112
111
  useTextContent?: boolean | undefined;
112
+ regex?: string | undefined;
113
113
  prefixText?: string | undefined;
114
114
  suffixText?: string | undefined;
115
115
  filterEmpty?: boolean | undefined;
@@ -341,10 +341,10 @@ export declare const AllBlockSchemas: {
341
341
  mode: import("zod").ZodEnum<["exact", "contains", "startsWith", "endsWith", "regex"]>;
342
342
  }, "strip", import("zod").ZodTypeAny, {
343
343
  text: string | string[];
344
- mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
344
+ mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
345
345
  }, {
346
346
  text: string | string[];
347
- mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
347
+ mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
348
348
  }>>;
349
349
  }, "strip", import("zod").ZodTypeAny, {
350
350
  name: "event-click";
@@ -357,7 +357,7 @@ export declare const AllBlockSchemas: {
357
357
  };
358
358
  textFilter?: {
359
359
  text: string | string[];
360
- mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
360
+ mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
361
361
  } | undefined;
362
362
  }, {
363
363
  name: "event-click";
@@ -370,7 +370,7 @@ export declare const AllBlockSchemas: {
370
370
  };
371
371
  textFilter?: {
372
372
  text: string | string[];
373
- mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
373
+ mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
374
374
  } | undefined;
375
375
  }>;
376
376
  readonly keypress: import("zod").ZodObject<{
@@ -607,13 +607,13 @@ export declare const AllBlockSchemas: {
607
607
  waitSelectorTimeout?: number | undefined;
608
608
  multiple?: boolean | undefined;
609
609
  };
610
- regex?: string | undefined;
611
- attributes?: string[] | undefined;
612
- includeText?: boolean | undefined;
613
610
  includeTags?: boolean | undefined;
614
611
  useTextContent?: boolean | undefined;
612
+ regex?: string | undefined;
615
613
  prefixText?: string | undefined;
616
614
  suffixText?: string | undefined;
615
+ attributes?: string[] | undefined;
616
+ includeText?: boolean | undefined;
617
617
  includeSelector?: boolean | undefined;
618
618
  includeXPath?: boolean | undefined;
619
619
  }, {
@@ -625,13 +625,13 @@ export declare const AllBlockSchemas: {
625
625
  waitSelectorTimeout?: number | undefined;
626
626
  multiple?: boolean | undefined;
627
627
  };
628
- regex?: string | undefined;
629
- attributes?: string[] | undefined;
630
- includeText?: boolean | undefined;
631
628
  includeTags?: boolean | undefined;
632
629
  useTextContent?: boolean | undefined;
630
+ regex?: string | undefined;
633
631
  prefixText?: string | undefined;
634
632
  suffixText?: string | undefined;
633
+ attributes?: string[] | undefined;
634
+ includeText?: boolean | undefined;
635
635
  includeSelector?: boolean | undefined;
636
636
  includeXPath?: boolean | undefined;
637
637
  }>;
@@ -752,18 +752,18 @@ export declare const AllBlockSchemas: {
752
752
  name: "fetch-api";
753
753
  url: string;
754
754
  body?: Record<string, any> | undefined;
755
+ timeout?: number | undefined;
755
756
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
756
757
  headers?: Record<string, string> | undefined;
757
- timeout?: number | undefined;
758
758
  parseJson?: boolean | undefined;
759
759
  returnHeaders?: boolean | undefined;
760
760
  }, {
761
761
  name: "fetch-api";
762
762
  url: string;
763
763
  body?: Record<string, any> | undefined;
764
+ timeout?: number | undefined;
764
765
  method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
765
766
  headers?: Record<string, string> | undefined;
766
- timeout?: number | undefined;
767
767
  parseJson?: boolean | undefined;
768
768
  returnHeaders?: boolean | undefined;
769
769
  }>;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "scordi-extension",
4
- "version": "1.14.7",
4
+ "version": "1.14.9",
5
5
  "icons": {
6
6
  "48": "public/logo.png"
7
7
  },