@ceki/sdk 1.9.1 → 1.9.2

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.
Files changed (2) hide show
  1. package/README.md +0 -12
  2. package/package.json +14 -5
package/README.md CHANGED
@@ -36,10 +36,6 @@ await client.close();
36
36
  | Variable | Description |
37
37
  |---|---|
38
38
  | `CEKI_API_KEY` | Your API key (required) |
39
- | `CEKI_API_URL` | Override REST API base URL |
40
- | `CEKI_RELAY_URL` | Override relay WebSocket URL |
41
- | `CEKI_CHAT_URL` | Override chat API base URL |
42
- | `CEKI_BASIC_AUTH_USER` / `CEKI_BASIC_AUTH_PASS` | nginx htpasswd credentials |
43
39
 
44
40
  ## API
45
41
 
@@ -51,10 +47,6 @@ Establish a WebSocket connection to the relay. Returns a `Client` instance.
51
47
 
52
48
  | Field | Default | Description |
53
49
  |---|---|---|
54
- | `apiUrl` | `https://api.ceki.me` | REST API base URL |
55
- | `relayUrl` | `wss://browser.ceki.me/ws/agent` | Relay WebSocket URL |
56
- | `chatUrl` | `https://chat.ceki.me/api/chat` | Chat API URL |
57
- | `basicAuth` | `undefined` | `[user, password]` for nginx htpasswd |
58
50
  | `reconnect` | `true` | Auto-reconnect on disconnect |
59
51
 
60
52
  ### `client.search(filters?, limit?) -> BrowserOption[]`
@@ -170,10 +162,6 @@ npm install -g @ceki/sdk
170
162
  | Variable | Required | Purpose |
171
163
  |---|---|---|
172
164
  | `CEKI_API_KEY` | yes | Agent token (`ag_...`) |
173
- | `CEKI_API_URL` | no | Override API base URL (default: `https://api.ceki.me`) |
174
- | `CEKI_RELAY_URL` | no | Override relay WS URL (default: `wss://browser.ceki.me/ws/agent`) |
175
- | `CEKI_CHAT_URL` | no | Override chat-service URL |
176
- | `CEKI_BASIC_AUTH_USER` / `_PASS` | no | HTTP Basic Auth for protected dev/stage endpoints |
177
165
 
178
166
  ### Quick start
179
167
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ceki/sdk",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "TypeScript SDK for browser.ceki.me — rent real browsers of real people",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -15,13 +15,22 @@
15
15
  }
16
16
  },
17
17
  "bin": {
18
- "ceki": "./dist/cli.js"
18
+ "ceki": "dist/cli.js"
19
19
  },
20
- "files": ["dist"],
21
- "keywords": ["browser", "automation", "websocket", "rpc", "ai-agent", "ceki"],
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "keywords": [
24
+ "browser",
25
+ "automation",
26
+ "websocket",
27
+ "rpc",
28
+ "ai-agent",
29
+ "ceki"
30
+ ],
22
31
  "repository": {
23
32
  "type": "git",
24
- "url": "https://github.com/Ceki-me/js-sdk"
33
+ "url": "git+https://github.com/Ceki-me/js-sdk.git"
25
34
  },
26
35
  "homepage": "https://browser.ceki.me",
27
36
  "author": "Ceki.me <hello@ceki.me>",