analytica.click 0.0.489 → 0.0.491

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.
@@ -6,4 +6,4 @@ export declare const errorTrack: ({ data, overrideBaseUrl, ignoreBrowserErrors,
6
6
  /** will ignore any errors that contain these strings */
7
7
  ignoreBrowserErrors?: string[];
8
8
  devMode?: boolean;
9
- }) => Promise<{}>;
9
+ }) => Promise<{} | undefined>;
package/dist/index.d.ts CHANGED
@@ -126,8 +126,8 @@ declare module 'analytica.click/dist/common-ui/src/types/api' {
126
126
 
127
127
  }
128
128
  declare module 'analytica.click/dist/common-ui/src/types/index' {
129
- export * from 'analytica.click/dist/common-ui/src/types/api';
130
- export * from 'analytica.click/dist/common-ui/src/types/widgets';
129
+ export type * from 'analytica.click/dist/common-ui/src/types/api';
130
+ export type * from 'analytica.click/dist/common-ui/src/types/widgets';
131
131
 
132
132
  }
133
133
  declare module 'analytica.click/dist/common-ui/src/types/widgets' {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "analytica.click",
3
- "version": "0.0.489",
3
+ "version": "0.0.491",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -19,11 +19,11 @@
19
19
  "typescript": "^5"
20
20
  },
21
21
  "devDependencies": {
22
- "@types/node": "22.5.0",
23
- "esbuild": "0.23.1",
24
- "esbuild-node-externals": "1.14.0",
22
+ "@types/node": "22.10.10",
23
+ "esbuild": "0.24.2",
24
+ "esbuild-node-externals": "1.16.0",
25
25
  "esbuild-plugin-d.ts": "1.1.0",
26
- "glob": "11.0.0",
26
+ "glob": "11.0.1",
27
27
  "npm-dts": "1.3.13",
28
28
  "rimraf": "6.0.1",
29
29
  "common": "0.0.2",
@@ -33,9 +33,9 @@
33
33
  "dist"
34
34
  ],
35
35
  "scripts": {
36
- "format": "eslint --ext .ts,.tsx,.js,.json src --fix",
36
+ "format": "eslint src --fix",
37
37
  "lint:tsc": "tsc --noEmit",
38
- "lint:eslint": "eslint --ext .ts,.tsx,.js,.json src",
38
+ "lint:eslint": "eslint src",
39
39
  "lint": "pnpm run /^lint:/",
40
40
  "build-direct": "rimraf .build && rimraf dist && cross-env NODE_ENV=prod ts-node esbuild",
41
41
  "build:debug": "cross-env NODE_ENV=development pnpm build-direct",