Skip to content

Commit d85ed07

Browse files
Update default API base URL and bump version to 1.3.1
Changed the default SVECTOR API base URL from https://spec-chat.tech to https://api.svector.co.in in documentation and code samples. Bumped package versions to 1.3.1 in package.json, jsr/package.json, jsr/deno.json, and jsr/mod.ts. Removed test-multi-package.ts script.
1 parent b400861 commit d85ed07

9 files changed

Lines changed: 7 additions & 50 deletions

File tree

.github/workflows/publish.yml

Whitespace-only changes.

API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This document provides comprehensive API documentation for the SVECTOR SDK.
2020
```typescript
2121
interface SVECTOROptions {
2222
apiKey?: string; // Your SVECTOR API key
23-
baseURL?: string; // API base URL (default: https://spec-chat.tech)
23+
baseURL?: string; // API base URL (default: https://api.svector.co.in)
2424
maxRetries?: number; // Maximum retry attempts (default: 2)
2525
timeout?: number; // Request timeout in milliseconds (default: 600000)
2626
fetch?: typeof fetch; // Custom fetch implementation

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ try {
539539
```typescript
540540
const client = new SVECTOR({
541541
apiKey: process.env.SVECTOR_API_KEY,
542-
baseURL: 'https://spec-chat.tech',
542+
baseURL: 'https://api.svector.co.in',
543543
maxRetries: 3,
544544
timeout: 30000,
545545
dangerouslyAllowBrowser: false,

jsr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ try {
288288
```typescript
289289
const client = new SVECTOR({
290290
apiKey: "your-api-key",
291-
baseURL: "https://spec-chat.tech",
291+
baseURL: "https://api.svector.co.in",
292292
timeout: 30000,
293293
maxRetries: 3,
294294
dangerouslyAllowBrowser: true,

jsr/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@svector/svector",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Official TypeScript/JavaScript SDK for SVECTOR AI Models - Works with Deno, Node.js, Bun, and browsers",
55
"license": "MIT",
66
"exports": "./mod.ts",

jsr/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file SVECTOR TypeScript/JavaScript SDK
33
* @description Official TypeScript/JavaScript SDK for SVECTOR AI Models
4-
* @version 1.3.0
4+
* @version 1.3.1
55
* @author SVECTOR Team <support@svector.co.in>
66
* @license MIT
77
*/

jsr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@svector/svector",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Official TypeScript/JavaScript SDK for SVECTOR AI Models - Works with Deno, Node.js, Bun, and browsers",
55
"main": "./mod.ts",
66
"types": "./mod.ts",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svector-sdk",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "Official JavaScript and TypeScript SDK for accessing SVECTOR APIs.",
55
"main": "dist/src/index.js",
66
"module": "dist/src/index.js",

test-multi-package.ts

Lines changed: 0 additions & 43 deletions
This file was deleted.

0 commit comments

Comments
 (0)