@better-auth/telemetry 1.4.2 → 1.4.4-beta.1

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.
@@ -1,13 +1,13 @@
1
1
 
2
- > @better-auth/telemetry@1.4.2 build /home/runner/work/better-auth/better-auth/packages/telemetry
2
+ > @better-auth/telemetry@1.4.4-beta.1 build /home/runner/work/better-auth/better-auth/packages/telemetry
3
3
  > tsdown
4
4
 
5
- ℹ tsdown v0.16.5 powered by rolldown v1.0.0-beta.50
5
+ ℹ tsdown v0.16.6 powered by rolldown v1.0.0-beta.51
6
6
  ℹ Using tsdown config: /home/runner/work/better-auth/better-auth/packages/telemetry/tsdown.config.ts
7
7
  ℹ entry: src/index.ts
8
8
  ℹ tsconfig: tsconfig.json
9
9
  ℹ Build start
10
10
  ℹ dist/index.mjs 17.97 kB │ gzip: 4.78 kB
11
- ℹ dist/index.d.mts  7.18 kB │ gzip: 1.83 kB
12
- ℹ 2 files, total: 25.15 kB
13
- ✔ Build complete in 2509ms
11
+ ℹ dist/index.d.mts  7.07 kB │ gzip: 1.81 kB
12
+ ℹ 2 files, total: 25.04 kB
13
+ ✔ Build complete in 2977ms
package/dist/index.d.mts CHANGED
@@ -114,7 +114,7 @@ declare function getTelemetryAuthConfig(options: BetterAuthOptions, context?: Te
114
114
  updateAccountOnSignIn: boolean | undefined;
115
115
  accountLinking: {
116
116
  enabled: boolean | undefined;
117
- trustedProviders: _better_auth_core0.LiteralUnion<"github" | "apple" | "atlassian" | "cognito" | "discord" | "facebook" | "figma" | "microsoft" | "google" | "huggingface" | "slack" | "spotify" | "twitch" | "twitter" | "dropbox" | "kick" | "linear" | "linkedin" | "gitlab" | "tiktok" | "reddit" | "roblox" | "salesforce" | "vk" | "zoom" | "notion" | "kakao" | "naver" | "line" | "paybin" | "paypal" | "polar" | "email-password", string>[] | undefined;
117
+ trustedProviders: _better_auth_core0.LiteralUnion<"github" | "apple" | "atlassian" | "cognito" | "discord" | "facebook" | "figma" | "microsoft" | "google" | "huggingface" | "slack" | "spotify" | "twitch" | "twitter" | "dropbox" | "kick" | "linear" | "linkedin" | "gitlab" | "tiktok" | "reddit" | "roblox" | "salesforce" | "vk" | "zoom" | "notion" | "kakao" | "naver" | "line" | "paybin" | "paypal" | "polar" | "vercel" | "email-password", string>[] | undefined;
118
118
  updateUserInfoOnLink: boolean | undefined;
119
119
  allowUnlinkingAll: boolean | undefined;
120
120
  };
@@ -144,12 +144,12 @@ declare function getTelemetryAuthConfig(options: BetterAuthOptions, context?: Te
144
144
  };
145
145
  disableCSRFCheck: boolean | undefined;
146
146
  cookieAttributes: {
147
- expires: Date | undefined;
148
- secure: boolean | undefined;
149
- sameSite: "none" | "Strict" | "Lax" | "None" | "strict" | "lax" | undefined;
147
+ expires: any;
148
+ secure: any;
149
+ sameSite: any;
150
150
  domain: boolean;
151
- path: string | undefined;
152
- httpOnly: boolean | undefined;
151
+ path: any;
152
+ httpOnly: any;
153
153
  };
154
154
  };
155
155
  trustedOrigins: number | undefined;
@@ -168,7 +168,7 @@ declare function getTelemetryAuthConfig(options: BetterAuthOptions, context?: Te
168
168
  };
169
169
  logger: {
170
170
  disabled: boolean | undefined;
171
- level: "error" | "info" | "warn" | "debug" | undefined;
171
+ level: "info" | "warn" | "error" | "debug" | undefined;
172
172
  log: boolean;
173
173
  };
174
174
  databaseHooks: {
package/package.json CHANGED
@@ -1,8 +1,13 @@
1
1
  {
2
2
  "name": "@better-auth/telemetry",
3
- "version": "1.4.2",
3
+ "version": "1.4.4-beta.1",
4
4
  "description": "Telemetry package for Better Auth",
5
5
  "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/better-auth/better-auth",
9
+ "directory": "packages/telemetry"
10
+ },
6
11
  "main": "./dist/index.mjs",
7
12
  "module": "./dist/index.mjs",
8
13
  "exports": {
@@ -20,20 +25,21 @@
20
25
  }
21
26
  },
22
27
  "devDependencies": {
23
- "tsdown": "^0.16.0",
28
+ "tsdown": "^0.16.6",
24
29
  "type-fest": "^5.2.0",
25
- "@better-auth/core": "1.4.2"
30
+ "@better-auth/core": "1.4.4-beta.1"
26
31
  },
27
32
  "dependencies": {
28
33
  "@better-auth/utils": "0.3.0",
29
34
  "@better-fetch/fetch": "1.1.18"
30
35
  },
31
36
  "peerDependencies": {
32
- "@better-auth/core": "1.4.2"
37
+ "@better-auth/core": "1.4.4-beta.1"
33
38
  },
34
39
  "scripts": {
35
40
  "build": "tsdown",
36
41
  "dev": "tsdown --watch",
42
+ "lint:package": "publint run --strict",
37
43
  "typecheck": "tsc --project tsconfig.json"
38
44
  }
39
45
  }