+5
-2
| let svix = require("svix"); | ||
| //#region package.json | ||
| var version = "6.5.2"; | ||
| var version = "6.6.0"; | ||
@@ -437,3 +437,6 @@ //#endregion | ||
| custom_return_path: domain.customReturnPath, | ||
| capabilities: domain.capabilities | ||
| capabilities: domain.capabilities, | ||
| open_tracking: domain.openTracking, | ||
| click_tracking: domain.clickTracking, | ||
| tls: domain.tls | ||
| }; | ||
@@ -440,0 +443,0 @@ } |
+7
-1
@@ -66,6 +66,9 @@ import * as React$1 from "react"; | ||
| capabilities?: Partial<DomainCapabilities>; | ||
| open_tracking?: boolean; | ||
| click_tracking?: boolean; | ||
| tls?: 'enforced' | 'opportunistic'; | ||
| } | ||
| //#endregion | ||
| //#region src/interfaces.d.ts | ||
| type RESEND_ERROR_CODE_KEY = 'missing_required_field' | 'invalid_idempotency_key' | 'invalid_idempotent_request' | 'concurrent_idempotent_requests' | 'invalid_access' | 'invalid_parameter' | 'invalid_region' | 'rate_limit_exceeded' | 'missing_api_key' | 'invalid_api_key' | 'suspended_api_key' | 'invalid_from_address' | 'validation_error' | 'not_found' | 'method_not_allowed' | 'application_error' | 'internal_server_error'; | ||
| type RESEND_ERROR_CODE_KEY = 'invalid_idempotency_key' | 'validation_error' | 'missing_api_key' | 'restricted_api_key' | 'invalid_api_key' | 'not_found' | 'method_not_allowed' | 'invalid_idempotent_request' | 'concurrent_idempotent_requests' | 'invalid_attachment' | 'invalid_from_address' | 'invalid_access' | 'invalid_parameter' | 'invalid_region' | 'missing_required_field' | 'monthly_quota_exceeded' | 'daily_quota_exceeded' | 'rate_limit_exceeded' | 'security_error' | 'application_error' | 'internal_server_error'; | ||
| type Response<T> = ({ | ||
@@ -672,2 +675,5 @@ data: T; | ||
| capabilities?: Partial<DomainCapabilities>; | ||
| openTracking?: boolean; | ||
| clickTracking?: boolean; | ||
| tls?: 'enforced' | 'opportunistic'; | ||
| } | ||
@@ -674,0 +680,0 @@ interface CreateDomainRequestOptions extends PostOptions {} |
+7
-1
@@ -66,6 +66,9 @@ import * as React$1 from "react"; | ||
| capabilities?: Partial<DomainCapabilities>; | ||
| open_tracking?: boolean; | ||
| click_tracking?: boolean; | ||
| tls?: 'enforced' | 'opportunistic'; | ||
| } | ||
| //#endregion | ||
| //#region src/interfaces.d.ts | ||
| type RESEND_ERROR_CODE_KEY = 'missing_required_field' | 'invalid_idempotency_key' | 'invalid_idempotent_request' | 'concurrent_idempotent_requests' | 'invalid_access' | 'invalid_parameter' | 'invalid_region' | 'rate_limit_exceeded' | 'missing_api_key' | 'invalid_api_key' | 'suspended_api_key' | 'invalid_from_address' | 'validation_error' | 'not_found' | 'method_not_allowed' | 'application_error' | 'internal_server_error'; | ||
| type RESEND_ERROR_CODE_KEY = 'invalid_idempotency_key' | 'validation_error' | 'missing_api_key' | 'restricted_api_key' | 'invalid_api_key' | 'not_found' | 'method_not_allowed' | 'invalid_idempotent_request' | 'concurrent_idempotent_requests' | 'invalid_attachment' | 'invalid_from_address' | 'invalid_access' | 'invalid_parameter' | 'invalid_region' | 'missing_required_field' | 'monthly_quota_exceeded' | 'daily_quota_exceeded' | 'rate_limit_exceeded' | 'security_error' | 'application_error' | 'internal_server_error'; | ||
| type Response<T> = ({ | ||
@@ -672,2 +675,5 @@ data: T; | ||
| capabilities?: Partial<DomainCapabilities>; | ||
| openTracking?: boolean; | ||
| clickTracking?: boolean; | ||
| tls?: 'enforced' | 'opportunistic'; | ||
| } | ||
@@ -674,0 +680,0 @@ interface CreateDomainRequestOptions extends PostOptions {} |
+5
-2
| import { Webhook } from "svix"; | ||
| //#region package.json | ||
| var version = "6.5.2"; | ||
| var version = "6.6.0"; | ||
@@ -437,3 +437,6 @@ //#endregion | ||
| custom_return_path: domain.customReturnPath, | ||
| capabilities: domain.capabilities | ||
| capabilities: domain.capabilities, | ||
| open_tracking: domain.openTracking, | ||
| click_tracking: domain.clickTracking, | ||
| tls: domain.tls | ||
| }; | ||
@@ -440,0 +443,0 @@ } |
+14
-12
| { | ||
| "name": "resend", | ||
| "version": "6.5.2", | ||
| "version": "6.6.0", | ||
| "description": "Node.js library for the Resend API", | ||
@@ -32,2 +32,13 @@ "main": "./dist/index.cjs", | ||
| }, | ||
| "scripts": { | ||
| "build": "tsdown src/index.ts --format esm,cjs --dts", | ||
| "lint": "biome check .", | ||
| "lint:fix": "biome check . --write", | ||
| "prepublishOnly": "pnpm run build", | ||
| "test": "vitest run", | ||
| "test:dev": "cross-env TEST_MODE=dev vitest run", | ||
| "test:record": "rimraf --glob \"**/__recordings__\" && cross-env TEST_MODE=record vitest run", | ||
| "test:watch": "vitest", | ||
| "typecheck": "tsc --noEmit" | ||
| }, | ||
| "repository": { | ||
@@ -70,12 +81,3 @@ "type": "git", | ||
| }, | ||
| "scripts": { | ||
| "build": "tsdown src/index.ts --format esm,cjs --dts", | ||
| "lint": "biome check .", | ||
| "lint:fix": "biome check . --write", | ||
| "test": "vitest run", | ||
| "test:dev": "cross-env TEST_MODE=dev vitest run", | ||
| "test:record": "rimraf --glob \"**/__recordings__\" && cross-env TEST_MODE=record vitest run", | ||
| "test:watch": "vitest", | ||
| "typecheck": "tsc --noEmit" | ||
| } | ||
| } | ||
| "packageManager": "pnpm@10.18.2" | ||
| } |
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 4 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 4 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
161663
0.52%1754
0.34%