@theholocron/sentry-client 1.15.0 → 1.16.0

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/dist/index.d.mts CHANGED
@@ -1,4 +1,5 @@
1
1
  import "@theholocron/http-client";
2
+ import { ErrorSink, Logger } from "@theholocron/observability/core";
2
3
  //#region src/utils.d.ts
3
4
  interface SentryClientOptions {
4
5
  token: string;
@@ -6,6 +7,10 @@ interface SentryClientOptions {
6
7
  baseUrl?: string;
7
8
  /** Override fetch for testing. Defaults to globalThis.fetch. */
8
9
  fetch?: typeof fetch;
10
+ /** Structured logger for request/response diagnostics. Defaults to a no-op. */
11
+ logger?: Logger;
12
+ /** Reports transport failures and unexpected 5xx. Defaults to a no-op. */
13
+ errors?: ErrorSink;
9
14
  }
10
15
  //#endregion
11
16
  //#region src/auth/auth.d.ts
package/dist/index.mjs CHANGED
@@ -38,7 +38,9 @@ function createSentryRestClient(opts) {
38
38
  baseUrl: opts.baseUrl ?? "https://sentry.io/api/0",
39
39
  token: opts.token,
40
40
  vendor: "Sentry",
41
- fetch: opts.fetch
41
+ fetch: opts.fetch,
42
+ logger: opts.logger,
43
+ errors: opts.errors
42
44
  });
43
45
  }
44
46
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/sentry-client",
3
- "version": "1.15.0",
3
+ "version": "1.16.0",
4
4
  "description": "A TypeScript client for the Sentry management API",
5
5
  "keywords": [
6
6
  "sentry",
@@ -28,26 +28,25 @@
28
28
  "default": "./dist/index.mjs"
29
29
  }
30
30
  },
31
- "main": "./dist/index.mjs",
32
31
  "files": [
33
- "dist",
34
- "README.md"
32
+ "dist"
35
33
  ],
36
34
  "dependencies": {
37
- "@theholocron/http-client": "^1.15.0"
35
+ "@theholocron/observability": "^0.3.0",
36
+ "@theholocron/http-client": "^1.16.0"
38
37
  },
39
38
  "devDependencies": {
40
- "@theholocron/eslint-config": "^7.23.1",
41
- "@theholocron/tsconfig": "^7.20.0",
42
- "@theholocron/tsdown-config": "^7.20.0",
43
- "@theholocron/vitest-config": "^7.20.0",
44
- "@types/node": "^26.2.0",
39
+ "@theholocron/eslint-config": "^8.2.0",
40
+ "@theholocron/tsconfig": "^8.2.0",
41
+ "@theholocron/tsdown-config": "^8.2.0",
42
+ "@theholocron/vitest-config": "^8.2.0",
43
+ "@types/node": "^26.4.1",
45
44
  "@vitest/coverage-v8": "^4.1.10",
46
45
  "@vitest/eslint-plugin": "^1.6.25",
47
46
  "eslint": "^10.8.1",
48
47
  "eslint-plugin-n": "^18.3.0",
49
48
  "eslint-plugin-simple-import-sort": "^14.0.0",
50
- "globals": "^17.9.0",
49
+ "globals": "^17.12.0",
51
50
  "tsdown": "^0.22.14",
52
51
  "typescript": "^5.9.3",
53
52
  "vitest": "^4.1.10"
@@ -67,6 +66,5 @@
67
66
  "test:coverage": "vitest run --coverage",
68
67
  "test:watch": "vitest",
69
68
  "typecheck": "tsc --noEmit"
70
- },
71
- "types": "./dist/index.d.mts"
69
+ }
72
70
  }