telescope-ai 0.1.2 → 0.1.3

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 -20
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -116,7 +116,6 @@ const client = new TelescopeClient({
116
116
 
117
117
  - `TelescopeClient.VERSION` - Static property containing the SDK version
118
118
  - `client.insights` - Namespaced access to Insights API
119
- - `client.atlas` - Namespaced access to Atlas API
120
119
 
121
120
  #### Methods
122
121
 
@@ -147,24 +146,6 @@ const session = client.insights.instrument.streamFromResponse(response);
147
146
  const data = await client.insights.portfolio.generateFromResponse(response);
148
147
  ```
149
148
 
150
- ### Atlas API
151
-
152
- Access via `client.atlas`:
153
-
154
- ```typescript
155
- // Streaming
156
- const session = client.atlas.streamAdvice({
157
- advisor_environment_id: "...",
158
- client_details: "...",
159
- // ... other required fields
160
- });
161
-
162
- // Non-streaming
163
- const advice = await client.atlas.getAdvice("advice-id");
164
- const recent = await client.atlas.getLatestAdvice(30);
165
- await client.atlas.archiveAdvice(["id1", "id2"], true);
166
- ```
167
-
168
149
  > **Note:** Ripple and Guardrails clients are coming in a future release once their backends support the V2 SSE format.
169
150
 
170
151
  ### StreamSession
@@ -257,7 +238,6 @@ import type {
257
238
  StreamStatus,
258
239
  StreamPhase,
259
240
  InstrumentInsightsResponse,
260
- AtlasAdviceResponse,
261
241
  } from "telescope-ai";
262
242
  ```
263
243
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "telescope-ai",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "description": "Official JavaScript/TypeScript client for the Telescope API",