@marketrix.ai/widget 3.8.449 → 3.8.453

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marketrix.ai/widget",
3
- "version": "3.8.449",
3
+ "version": "3.8.453",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/widget.mjs",
@@ -21,7 +21,7 @@
21
21
  "tag": "bash scripts/release.sh",
22
22
  "start": "vite",
23
23
  "build": "vite build",
24
- "ci": "npm run type-check && npm run lint:check && npm run build && npm run format:check && npm run test:run && npm run visual:check && npm run a11y:check && npm run bundle:check",
24
+ "ci": "npm run type-check && npm run lint:check && npm run build && npm run format:check && npm run test:run && npm run bundle:check",
25
25
  "lint": "eslint . --ext .ts,.tsx --max-warnings 200 --fix",
26
26
  "lint:check": "eslint . --ext .ts,.tsx --max-warnings 0",
27
27
  "check": "tsc --noEmit",
@@ -32,8 +32,6 @@
32
32
  "test:coverage": "vitest run --coverage",
33
33
  "format": "prettier --write .",
34
34
  "format:check": "prettier --check .",
35
- "visual:check": "node scripts/visual-check.mjs",
36
- "a11y:check": "node scripts/a11y-check.mjs",
37
35
  "bundle:check": "node scripts/bundle-check.mjs",
38
36
  "code:fix": "eslint . --ext .ts,.tsx --fix && prettier --write .",
39
37
  "code:check": "tsc --noEmit && eslint . --ext .ts,.tsx && prettier --check ."
@@ -1,11 +0,0 @@
1
- interface BrowserToolMetadata {
2
- id: string;
3
- name: string;
4
- description: string;
5
- displayAction: string;
6
- icon?: string;
7
- category: 'navigation' | 'interaction' | 'extraction' | 'utility';
8
- actionType: string;
9
- }
10
- export declare const BROWSER_TOOLS: BrowserToolMetadata[];
11
- export {};
@@ -1,6 +0,0 @@
1
- export declare function createLogger(prefix: string): {
2
- debug: (message: string, ...args: unknown[]) => void;
3
- info: (message: string, ...args: unknown[]) => void;
4
- warn: (message: string, ...args: unknown[]) => void;
5
- error: (message: string, ...args: unknown[]) => void;
6
- };