scordi-extension 1.14.1 → 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.
Files changed (32) hide show
  1. package/dist/blocks/EventClickBlock.d.ts +4 -4
  2. package/dist/blocks/GetElementDataBlock.d.ts +6 -6
  3. package/dist/blocks/GetTextBlock.d.ts +2 -2
  4. package/dist/blocks/index.d.ts +12 -12
  5. package/dist/manifest.json +4 -7
  6. package/dist/sdk/index.js +1268 -6425
  7. package/dist/sdk/types.d.ts +8 -8
  8. package/dist/sdk/types.d.ts.map +1 -1
  9. package/dist/service-worker-loader.js +3 -1
  10. package/dist/src/blocks/AiParseDataBlock.ts.js +1 -1
  11. package/dist/src/blocks/ClearValueFormBlock.ts.js +1 -1
  12. package/dist/src/blocks/DataExtractBlock.ts.js +2 -2
  13. package/dist/src/blocks/ElementExistsBlock.ts.js +1 -1
  14. package/dist/src/blocks/EventClickBlock.ts.js +1 -1
  15. package/dist/src/blocks/FetchApiBlock.ts.js +1 -1
  16. package/dist/src/blocks/GetAttributeValueBlock.ts.js +1 -1
  17. package/dist/src/blocks/GetElementDataBlock.ts.js +1 -1
  18. package/dist/src/blocks/GetTextBlock.ts.js +1 -1
  19. package/dist/src/blocks/GetValueFormBlock.ts.js +1 -1
  20. package/dist/src/blocks/KeypressBlock.ts.js +1 -1
  21. package/dist/src/blocks/SaveAssetsBlock.ts.js +1 -1
  22. package/dist/src/blocks/ScrollBlock.ts.js +1 -1
  23. package/dist/src/blocks/SetValueFormBlock.ts.js +1 -1
  24. package/dist/src/blocks/WaitBlock.ts.js +1 -1
  25. package/dist/src/blocks/types.ts.js +1 -1
  26. package/dist/src/popup/index.html +7 -6
  27. package/dist/vendor/.vite-deps-chunk-PR4QN5HX.js__v--57e88532.js +42 -0
  28. package/dist/vendor/.vite-deps-chunk-VBBIEGWT.js__v--57e88532.js +4156 -0
  29. package/dist/vendor/.vite-deps-jsonata.js__v--5da6ca24.js +5761 -0
  30. package/dist/vendor/.vite-deps-zod.js__v--13965f26.js +219 -0
  31. package/dist/vendor/vite-client.js +1 -1
  32. 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" | "regex" | "contains" | "startsWith" | "endsWith";
33
+ mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
34
34
  }, {
35
35
  text: string | string[];
36
- mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
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" | "regex" | "contains" | "startsWith" | "endsWith";
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" | "regex" | "contains" | "startsWith" | "endsWith";
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;
@@ -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" | "regex" | "contains" | "startsWith" | "endsWith";
341
+ mode: "exact" | "contains" | "startsWith" | "endsWith" | "regex";
342
342
  }, {
343
343
  text: string | string[];
344
- mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
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" | "regex" | "contains" | "startsWith" | "endsWith";
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" | "regex" | "contains" | "startsWith" | "endsWith";
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
  }>;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "scordi-extension",
4
- "version": "1.14.0",
4
+ "version": "1.14.1",
5
5
  "icons": {
6
6
  "48": "public/logo.png"
7
7
  },
@@ -26,7 +26,7 @@
26
26
  "content_scripts": [
27
27
  {
28
28
  "js": [
29
- "assets/main.tsx-loader-FYb0LhDu.js"
29
+ "src/content/main.tsx-loader.js"
30
30
  ],
31
31
  "matches": [
32
32
  "<all_urls>"
@@ -46,11 +46,8 @@
46
46
  "<all_urls>"
47
47
  ],
48
48
  "resources": [
49
- "assets/internal-messages-Drf0Gb9U.js",
50
- "assets/index-B9PKMhAi.js",
51
- "assets/index-r5QRyJ4m.js",
52
- "assets/schemas-C8r0jYHO.js",
53
- "assets/main.tsx-BEyI95mZ.js"
49
+ "**/*",
50
+ "*"
54
51
  ],
55
52
  "use_dynamic_url": false
56
53
  }