🚀. Socket Launch Week Day 3:Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions.Learn more
Sign In

@tenxyte/core

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tenxyte/core - npm Package Compare versions

Comparing version
0.9.2
to
0.9.3
+21
LICENSE
MIT License
Copyright (c) 2026 Tenxyte
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+1
-1
{
"name": "@tenxyte/core",
"version": "0.9.2",
"version": "0.9.3",
"description": "Core JavaScript SDK for Tenxyte",

@@ -5,0 +5,0 @@ "main": "./dist/index.cjs",

@@ -387,3 +387,3 @@ # @tenxyte/core

## Migration Guide: v0.9 → v1.0
## Migration Guide: v0.8 → v0.9

@@ -394,6 +394,6 @@ ### Breaking Changes

```typescript
// Before (v0.9)
// Before (v0.8)
const tx = new TenxyteClient({ baseUrl: '...', headers: { ... } });
// After (v1.0) — same, but new options available
// After (v0.9) — same, but new options available
const tx = new TenxyteClient({

@@ -410,6 +410,6 @@ baseUrl: '...',

```typescript
// Before (v0.9)
// Before (v0.8)
await tx.auth.loginWithEmail({ email, password });
// After (v1.0)
// After (v0.9)
await tx.auth.loginWithEmail({ email, password, device_info: '' });

@@ -433,3 +433,3 @@ ```

### New Features in v1.0
### New Features in v0.9

@@ -436,0 +436,0 @@ - Auto-refresh interceptor (silent 401 → refresh → retry)