@better-auth/telemetry 1.5.0-beta.13 → 1.5.0-beta.16

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,16 +1,16 @@
1
1
 
2
- > @better-auth/telemetry@1.5.0-beta.13 build /home/runner/work/better-auth/better-auth/packages/telemetry
2
+ > @better-auth/telemetry@1.5.0-beta.16 build /home/runner/work/better-auth/better-auth/packages/telemetry
3
3
  > tsdown
4
4
 
5
- ℹ tsdown v0.20.1 powered by rolldown v1.0.0-rc.1
5
+ ℹ tsdown v0.20.3 powered by rolldown v1.0.0-rc.3
6
6
  ℹ config file: /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 18.11 kB │ gzip: 4.82 kB
11
11
  ℹ dist/index.mjs.map 34.59 kB │ gzip: 8.84 kB
12
- ℹ dist/index.d.mts  7.40 kB │ gzip: 1.88 kB
13
- ℹ 3 files, total: 60.10 kB
12
+ ℹ dist/index.d.mts  7.70 kB │ gzip: 1.96 kB
13
+ ℹ 3 files, total: 60.40 kB
14
14
  [PLUGIN_TIMINGS] Warning: Your build spent significant time in plugin `rolldown-plugin-dts:generate`. See https://rolldown.rs/options/checks#plugintimings for more details.
15
15
 
16
- ✔ Build complete in 10248ms
16
+ ✔ Build complete in 10625ms
package/dist/index.d.mts CHANGED
@@ -1,6 +1,7 @@
1
1
  import * as _better_auth_core0 from "@better-auth/core";
2
2
  import { BetterAuthOptions } from "@better-auth/core";
3
3
  import * as _better_auth_core_db0 from "@better-auth/core/db";
4
+ import * as _better_auth_core_social_providers0 from "@better-auth/core/social-providers";
4
5
 
5
6
  //#region src/types.d.ts
6
7
  interface TelemetryEvent {
@@ -113,7 +114,7 @@ declare function getTelemetryAuthConfig(options: BetterAuthOptions, context?: Te
113
114
  updateAccountOnSignIn: boolean | undefined;
114
115
  accountLinking: {
115
116
  enabled: boolean | undefined;
116
- 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;
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" | "railway" | "vercel" | "email-password", string>[] | ((request?: Request | undefined) => _better_auth_core0.Awaitable<Array<_better_auth_core0.LiteralUnion<_better_auth_core_social_providers0.SocialProviderList[number] | "email-password", string>>>) | undefined;
117
118
  updateUserInfoOnLink: boolean | undefined;
118
119
  allowUnlinkingAll: boolean | undefined;
119
120
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@better-auth/telemetry",
3
- "version": "1.5.0-beta.13",
3
+ "version": "1.5.0-beta.16",
4
4
  "description": "Telemetry package for Better Auth",
5
5
  "type": "module",
6
6
  "repository": {
@@ -26,16 +26,16 @@
26
26
  }
27
27
  },
28
28
  "devDependencies": {
29
- "tsdown": "^0.20.1",
30
- "type-fest": "^5.4.2",
31
- "@better-auth/core": "1.5.0-beta.13"
29
+ "tsdown": "^0.20.3",
30
+ "type-fest": "^5.4.4",
31
+ "@better-auth/core": "1.5.0-beta.16"
32
32
  },
33
33
  "dependencies": {
34
34
  "@better-auth/utils": "0.3.1",
35
35
  "@better-fetch/fetch": "1.1.21"
36
36
  },
37
37
  "peerDependencies": {
38
- "@better-auth/core": "1.5.0-beta.13"
38
+ "@better-auth/core": "1.5.0-beta.16"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "tsdown",
@@ -46,7 +46,6 @@ vi.mock("./detectors/detect-project-info", () => ({
46
46
 
47
47
  beforeEach(() => {
48
48
  vi.resetModules();
49
- vi.clearAllMocks();
50
49
  process.env.BETTER_AUTH_TELEMETRY = "";
51
50
  process.env.BETTER_AUTH_TELEMETRY_DEBUG = "";
52
51
  });