scordi-extension 1.14.2 → 1.14.3
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/blocks/EventClickBlock.d.ts +4 -4
- package/dist/blocks/GetElementDataBlock.d.ts +6 -6
- package/dist/blocks/GetTextBlock.d.ts +2 -2
- package/dist/blocks/index.d.ts +12 -12
- package/dist/sdk/index.js +1223 -6438
- package/dist/sdk/types.d.ts +2 -2
- package/dist/sdk/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -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" | "
|
|
33
|
+
mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
|
|
34
34
|
}, {
|
|
35
35
|
text: string | string[];
|
|
36
|
-
mode: "exact" | "
|
|
36
|
+
mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
|
|
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" | "
|
|
49
|
+
mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
|
|
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" | "
|
|
62
|
+
mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
|
|
63
63
|
} | undefined;
|
|
64
64
|
}>;
|
|
65
65
|
export declare function validateEventClickBlock(data: unknown): EventClickBlock;
|
|
@@ -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;
|
|
58
61
|
includeTags?: boolean | undefined;
|
|
59
62
|
useTextContent?: boolean | undefined;
|
|
60
|
-
regex?: string | undefined;
|
|
61
63
|
prefixText?: string | undefined;
|
|
62
64
|
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;
|
|
76
79
|
includeTags?: boolean | undefined;
|
|
77
80
|
useTextContent?: boolean | undefined;
|
|
78
|
-
regex?: string | undefined;
|
|
79
81
|
prefixText?: string | undefined;
|
|
80
82
|
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;
|
|
53
54
|
includeTags?: boolean | undefined;
|
|
54
55
|
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;
|
|
72
73
|
includeTags?: boolean | undefined;
|
|
73
74
|
useTextContent?: boolean | undefined;
|
|
74
|
-
regex?: string | undefined;
|
|
75
75
|
prefixText?: string | undefined;
|
|
76
76
|
suffixText?: string | undefined;
|
|
77
77
|
filterEmpty?: boolean | undefined;
|
package/dist/blocks/index.d.ts
CHANGED
|
@@ -85,9 +85,9 @@ export declare const AllBlockSchemas: {
|
|
|
85
85
|
waitSelectorTimeout?: number | undefined;
|
|
86
86
|
multiple?: boolean | undefined;
|
|
87
87
|
};
|
|
88
|
+
regex?: string | undefined;
|
|
88
89
|
includeTags?: boolean | undefined;
|
|
89
90
|
useTextContent?: boolean | undefined;
|
|
90
|
-
regex?: string | undefined;
|
|
91
91
|
prefixText?: string | undefined;
|
|
92
92
|
suffixText?: string | undefined;
|
|
93
93
|
filterEmpty?: boolean | undefined;
|
|
@@ -104,9 +104,9 @@ export declare const AllBlockSchemas: {
|
|
|
104
104
|
waitSelectorTimeout?: number | undefined;
|
|
105
105
|
multiple?: boolean | undefined;
|
|
106
106
|
};
|
|
107
|
+
regex?: string | undefined;
|
|
107
108
|
includeTags?: boolean | undefined;
|
|
108
109
|
useTextContent?: boolean | undefined;
|
|
109
|
-
regex?: string | undefined;
|
|
110
110
|
prefixText?: string | undefined;
|
|
111
111
|
suffixText?: string | undefined;
|
|
112
112
|
filterEmpty?: boolean | undefined;
|
|
@@ -338,10 +338,10 @@ export declare const AllBlockSchemas: {
|
|
|
338
338
|
mode: import("zod").ZodEnum<["exact", "contains", "startsWith", "endsWith", "regex"]>;
|
|
339
339
|
}, "strip", import("zod").ZodTypeAny, {
|
|
340
340
|
text: string | string[];
|
|
341
|
-
mode: "exact" | "
|
|
341
|
+
mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
|
|
342
342
|
}, {
|
|
343
343
|
text: string | string[];
|
|
344
|
-
mode: "exact" | "
|
|
344
|
+
mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
|
|
345
345
|
}>>;
|
|
346
346
|
}, "strip", import("zod").ZodTypeAny, {
|
|
347
347
|
name: "event-click";
|
|
@@ -354,7 +354,7 @@ export declare const AllBlockSchemas: {
|
|
|
354
354
|
};
|
|
355
355
|
textFilter?: {
|
|
356
356
|
text: string | string[];
|
|
357
|
-
mode: "exact" | "
|
|
357
|
+
mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
|
|
358
358
|
} | undefined;
|
|
359
359
|
}, {
|
|
360
360
|
name: "event-click";
|
|
@@ -367,7 +367,7 @@ export declare const AllBlockSchemas: {
|
|
|
367
367
|
};
|
|
368
368
|
textFilter?: {
|
|
369
369
|
text: string | string[];
|
|
370
|
-
mode: "exact" | "
|
|
370
|
+
mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
|
|
371
371
|
} | undefined;
|
|
372
372
|
}>;
|
|
373
373
|
readonly keypress: import("zod").ZodObject<{
|
|
@@ -472,13 +472,13 @@ export declare const AllBlockSchemas: {
|
|
|
472
472
|
waitSelectorTimeout?: number | undefined;
|
|
473
473
|
multiple?: boolean | undefined;
|
|
474
474
|
};
|
|
475
|
+
regex?: string | undefined;
|
|
476
|
+
attributes?: string[] | undefined;
|
|
477
|
+
includeText?: boolean | undefined;
|
|
475
478
|
includeTags?: boolean | undefined;
|
|
476
479
|
useTextContent?: boolean | undefined;
|
|
477
|
-
regex?: string | undefined;
|
|
478
480
|
prefixText?: string | undefined;
|
|
479
481
|
suffixText?: string | undefined;
|
|
480
|
-
attributes?: string[] | undefined;
|
|
481
|
-
includeText?: boolean | undefined;
|
|
482
482
|
includeSelector?: boolean | undefined;
|
|
483
483
|
includeXPath?: boolean | undefined;
|
|
484
484
|
}, {
|
|
@@ -490,13 +490,13 @@ export declare const AllBlockSchemas: {
|
|
|
490
490
|
waitSelectorTimeout?: number | undefined;
|
|
491
491
|
multiple?: boolean | undefined;
|
|
492
492
|
};
|
|
493
|
+
regex?: string | undefined;
|
|
494
|
+
attributes?: string[] | undefined;
|
|
495
|
+
includeText?: boolean | undefined;
|
|
493
496
|
includeTags?: boolean | undefined;
|
|
494
497
|
useTextContent?: boolean | undefined;
|
|
495
|
-
regex?: string | undefined;
|
|
496
498
|
prefixText?: string | undefined;
|
|
497
499
|
suffixText?: string | undefined;
|
|
498
|
-
attributes?: string[] | undefined;
|
|
499
|
-
includeText?: boolean | undefined;
|
|
500
500
|
includeSelector?: boolean | undefined;
|
|
501
501
|
includeXPath?: boolean | undefined;
|
|
502
502
|
}>;
|