@rool-dev/sdk 0.9.0-dev.f75b2d1 → 0.10.0-dev.97d979e
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.
- package/README.md +313 -149
- package/dist/channel.d.ts +86 -158
- package/dist/channel.d.ts.map +1 -1
- package/dist/channel.js +276 -333
- package/dist/channel.js.map +1 -1
- package/dist/client.d.ts +24 -4
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +35 -3
- package/dist/client.js.map +1 -1
- package/dist/graphql.d.ts +35 -19
- package/dist/graphql.d.ts.map +1 -1
- package/dist/graphql.js +112 -128
- package/dist/graphql.js.map +1 -1
- package/dist/index.d.ts +7 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/locations.d.ts +34 -0
- package/dist/locations.d.ts.map +1 -0
- package/dist/locations.js +90 -0
- package/dist/locations.js.map +1 -0
- package/dist/machine.d.ts +16 -0
- package/dist/machine.d.ts.map +1 -0
- package/dist/machine.js +51 -0
- package/dist/machine.js.map +1 -0
- package/dist/space.d.ts +13 -2
- package/dist/space.d.ts.map +1 -1
- package/dist/space.js +16 -6
- package/dist/space.js.map +1 -1
- package/dist/subscription.d.ts.map +1 -1
- package/dist/subscription.js +9 -12
- package/dist/subscription.js.map +1 -1
- package/dist/types.d.ts +70 -37
- package/dist/types.d.ts.map +1 -1
- package/dist/webdav.d.ts +15 -11
- package/dist/webdav.d.ts.map +1 -1
- package/dist/webdav.js +30 -35
- package/dist/webdav.js.map +1 -1
- package/package.json +1 -1
package/dist/channel.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { GraphQLClient } from './graphql.js';
|
|
|
3
3
|
import type { RestClient } from './rest.js';
|
|
4
4
|
import type { RoolWebDAV } from './webdav.js';
|
|
5
5
|
import type { Logger } from './logger.js';
|
|
6
|
-
import type { RoolObject, RoolObjectStat, ChannelEvents, RoolUserRole, PromptOptions, FindObjectsOptions, CreateObjectOptions, UpdateObjectOptions, ChannelEvent, Interaction, Channel, ConversationInfo, LinkAccess, SpaceSchema, CollectionDef, FieldDef, ExtensionManifest } from './types.js';
|
|
6
|
+
import type { RoolObject, RoolObjectStat, ChannelEvents, RoolUserRole, PromptOptions, FindObjectsOptions, CreateObjectOptions, UpdateObjectOptions, MoveObjectOptions, ChannelEvent, Interaction, Channel, ConversationInfo, LinkAccess, SpaceSchema, CollectionDef, FieldDef, ExtensionManifest } from './types.js';
|
|
7
7
|
export declare function generateEntityId(): string;
|
|
8
8
|
export interface ChannelConfig {
|
|
9
9
|
id: string;
|
|
@@ -12,9 +12,9 @@ export interface ChannelConfig {
|
|
|
12
12
|
linkAccess: LinkAccess;
|
|
13
13
|
/** Current user's ID (for identifying own interactions) */
|
|
14
14
|
userId: string;
|
|
15
|
-
/** Object
|
|
16
|
-
|
|
17
|
-
/** Object stats keyed by
|
|
15
|
+
/** Object locations in the space (sorted by modifiedAt desc) */
|
|
16
|
+
objectLocations: string[];
|
|
17
|
+
/** Object stats keyed by location */
|
|
18
18
|
objectStats: Record<string, RoolObjectStat>;
|
|
19
19
|
/** Collection schema */
|
|
20
20
|
schema: SpaceSchema;
|
|
@@ -37,16 +37,10 @@ export interface ChannelConfig {
|
|
|
37
37
|
* at open time and cannot be changed. To use a different channel,
|
|
38
38
|
* open a second one.
|
|
39
39
|
*
|
|
40
|
-
* Objects are
|
|
41
|
-
*
|
|
40
|
+
* Objects are addressed by location (`/space/<collection>/<basename>.json`).
|
|
41
|
+
* Only schema, metadata, the live object location list, and the channel's own
|
|
42
|
+
* history are cached locally. Object bodies are fetched on demand. Changes
|
|
42
43
|
* arrive via SSE semantic events and are emitted as SDK events.
|
|
43
|
-
*
|
|
44
|
-
* Features:
|
|
45
|
-
* - High-level object operations
|
|
46
|
-
* - Built-in undo/redo with checkpoints
|
|
47
|
-
* - Metadata management
|
|
48
|
-
* - Event emission for state changes
|
|
49
|
-
* - Real-time updates via space-specific subscription
|
|
50
44
|
*/
|
|
51
45
|
export declare class RoolChannel extends EventEmitter<ChannelEvents> {
|
|
52
46
|
private _id;
|
|
@@ -65,7 +59,7 @@ export declare class RoolChannel extends EventEmitter<ChannelEvents> {
|
|
|
65
59
|
private _meta;
|
|
66
60
|
private _schema;
|
|
67
61
|
private _channel;
|
|
68
|
-
private
|
|
62
|
+
private _objectLocations;
|
|
69
63
|
private _objectStats;
|
|
70
64
|
private _activeLeaves;
|
|
71
65
|
private _pendingMutations;
|
|
@@ -86,7 +80,7 @@ export declare class RoolChannel extends EventEmitter<ChannelEvents> {
|
|
|
86
80
|
_applyResyncData(data: {
|
|
87
81
|
meta: Record<string, unknown>;
|
|
88
82
|
schema: SpaceSchema;
|
|
89
|
-
|
|
83
|
+
objectLocations: string[];
|
|
90
84
|
objectStats: Record<string, RoolObjectStat>;
|
|
91
85
|
channel: Channel | undefined;
|
|
92
86
|
}): void;
|
|
@@ -163,10 +157,6 @@ export declare class RoolChannel extends EventEmitter<ChannelEvents> {
|
|
|
163
157
|
deleteConversation(conversationId: string): Promise<void>;
|
|
164
158
|
/**
|
|
165
159
|
* Get a handle for a specific conversation within this channel.
|
|
166
|
-
* The handle scopes AI and mutation operations to that conversation's
|
|
167
|
-
* interaction history, while sharing the channel's single SSE connection.
|
|
168
|
-
*
|
|
169
|
-
* Conversations are auto-created on first interaction — no explicit create needed.
|
|
170
160
|
*/
|
|
171
161
|
conversation(conversationId: string): ConversationHandle;
|
|
172
162
|
/**
|
|
@@ -176,57 +166,32 @@ export declare class RoolChannel extends EventEmitter<ChannelEvents> {
|
|
|
176
166
|
close(): void;
|
|
177
167
|
/**
|
|
178
168
|
* Create a checkpoint of the current space state.
|
|
179
|
-
* Checkpoints are space-wide and shared across channels and users.
|
|
180
|
-
* @returns The checkpoint ID
|
|
181
169
|
*/
|
|
182
170
|
checkpoint(label?: string): Promise<string>;
|
|
183
|
-
/**
|
|
184
|
-
* Check if undo is available for this space.
|
|
185
|
-
*/
|
|
171
|
+
/** Check if undo is available for this space. */
|
|
186
172
|
canUndo(): Promise<boolean>;
|
|
187
|
-
/**
|
|
188
|
-
* Check if redo is available for this space.
|
|
189
|
-
*/
|
|
173
|
+
/** Check if redo is available for this space. */
|
|
190
174
|
canRedo(): Promise<boolean>;
|
|
191
|
-
/**
|
|
192
|
-
* Restore the space to the most recent checkpoint.
|
|
193
|
-
* @returns true if undo was performed
|
|
194
|
-
*/
|
|
175
|
+
/** Restore the space to the most recent checkpoint. */
|
|
195
176
|
undo(): Promise<boolean>;
|
|
196
|
-
/**
|
|
197
|
-
* Reapply the most recently undone checkpoint.
|
|
198
|
-
* Affects the entire space.
|
|
199
|
-
* @returns true if redo was performed
|
|
200
|
-
*/
|
|
177
|
+
/** Reapply the most recently undone checkpoint. */
|
|
201
178
|
redo(): Promise<boolean>;
|
|
202
|
-
/**
|
|
203
|
-
* Clear the space's checkpoint history.
|
|
204
|
-
*/
|
|
179
|
+
/** Clear the space's checkpoint history. */
|
|
205
180
|
clearHistory(): Promise<void>;
|
|
206
181
|
/**
|
|
207
|
-
* Get an object
|
|
208
|
-
*
|
|
182
|
+
* Get an object by location. Fetches from the server on each call.
|
|
183
|
+
*
|
|
184
|
+
* Accepts either the canonical form (`/space/<collection>/<basename>.json`)
|
|
185
|
+
* or the short form (`<collection>/<basename>`).
|
|
209
186
|
*/
|
|
210
|
-
getObject(
|
|
187
|
+
getObject(location: string): Promise<RoolObject | undefined>;
|
|
211
188
|
/**
|
|
212
189
|
* Get an object's stat (audit information).
|
|
213
|
-
* Returns
|
|
190
|
+
* Returns the cached stat or undefined if not known.
|
|
214
191
|
*/
|
|
215
|
-
stat(
|
|
192
|
+
stat(location: string): RoolObjectStat | undefined;
|
|
216
193
|
/**
|
|
217
194
|
* Find objects using structured filters and/or natural language.
|
|
218
|
-
*
|
|
219
|
-
* `where` provides exact-match filtering — values must match literally (no placeholders or operators).
|
|
220
|
-
* `prompt` enables AI-powered semantic queries. When both are provided, `where` and `objectIds`
|
|
221
|
-
* constrain the data set before the AI sees it.
|
|
222
|
-
*
|
|
223
|
-
* @param options.where - Exact-match field filter (e.g. `{ type: 'article' }`). Constrains which objects the AI can see when combined with `prompt`.
|
|
224
|
-
* @param options.prompt - Natural language query. Triggers AI evaluation (uses credits).
|
|
225
|
-
* @param options.limit - Maximum number of results to return (applies to structured filtering only; the AI controls its own result size).
|
|
226
|
-
* @param options.objectIds - Scope search to specific object IDs. Constrains the candidate set in both structured and AI queries.
|
|
227
|
-
* @param options.order - Sort order by modifiedAt: `'asc'` or `'desc'` (default: `'desc'`). Only applies to structured filtering (no `prompt`).
|
|
228
|
-
* @param options.ephemeral - If true, the query won't be recorded in interaction history.
|
|
229
|
-
* @returns The matching objects and a descriptive message.
|
|
230
195
|
*/
|
|
231
196
|
findObjects(options: FindObjectsOptions): Promise<{
|
|
232
197
|
objects: RoolObject[];
|
|
@@ -238,127 +203,115 @@ export declare class RoolChannel extends EventEmitter<ChannelEvents> {
|
|
|
238
203
|
message: string;
|
|
239
204
|
}>;
|
|
240
205
|
/**
|
|
241
|
-
* Get all object
|
|
206
|
+
* Get all object locations (sync, from local cache).
|
|
242
207
|
* The list is loaded on open and kept current via SSE events.
|
|
243
|
-
* @param options.limit - Maximum number of IDs to return
|
|
244
|
-
* @param options.order - Sort order by modifiedAt ('asc' or 'desc', default: 'desc')
|
|
245
208
|
*/
|
|
246
|
-
|
|
209
|
+
getObjectLocations(options?: {
|
|
247
210
|
limit?: number;
|
|
248
211
|
order?: 'asc' | 'desc';
|
|
249
212
|
}): string[];
|
|
250
213
|
/**
|
|
251
|
-
* Create a new object
|
|
252
|
-
*
|
|
214
|
+
* Create a new object in the given collection.
|
|
215
|
+
*
|
|
216
|
+
* @param collection - The collection (must exist in the schema)
|
|
217
|
+
* @param body - Object body fields. Use `{{placeholder}}` for AI-generated content.
|
|
218
|
+
* Fields prefixed with `_` are hidden from AI.
|
|
219
|
+
* @param options.basename - Specific basename to use. If omitted, the SDK generates a random one.
|
|
253
220
|
* @param options.ephemeral - If true, the operation won't be recorded in interaction history.
|
|
254
|
-
* @returns The created object
|
|
221
|
+
* @returns The created object and a status message.
|
|
255
222
|
*/
|
|
256
|
-
createObject(
|
|
223
|
+
createObject(collection: string, body: Record<string, unknown>, options?: CreateObjectOptions): Promise<{
|
|
257
224
|
object: RoolObject;
|
|
258
225
|
message: string;
|
|
259
226
|
}>;
|
|
260
227
|
/** @internal */
|
|
261
|
-
_createObjectImpl(options: CreateObjectOptions, conversationId: string): Promise<{
|
|
228
|
+
_createObjectImpl(collection: string, body: Record<string, unknown>, options: CreateObjectOptions | undefined, conversationId: string): Promise<{
|
|
262
229
|
object: RoolObject;
|
|
263
230
|
message: string;
|
|
264
231
|
}>;
|
|
265
232
|
/**
|
|
266
233
|
* Update an existing object.
|
|
267
|
-
*
|
|
268
|
-
* @param
|
|
269
|
-
* @param options.
|
|
234
|
+
*
|
|
235
|
+
* @param location - The object's location (canonical or short form)
|
|
236
|
+
* @param options.data - Fields to add or update. Pass `null` to delete a field. Use `{{placeholder}}` for AI-generated content.
|
|
237
|
+
* @param options.prompt - AI prompt to drive the update.
|
|
270
238
|
* @param options.ephemeral - If true, the operation won't be recorded in interaction history.
|
|
271
|
-
* @returns The updated object (with AI-filled content) and message
|
|
272
239
|
*/
|
|
273
|
-
updateObject(
|
|
240
|
+
updateObject(location: string, options: UpdateObjectOptions): Promise<{
|
|
274
241
|
object: RoolObject;
|
|
275
242
|
message: string;
|
|
276
243
|
}>;
|
|
277
244
|
/** @internal */
|
|
278
|
-
_updateObjectImpl(
|
|
245
|
+
_updateObjectImpl(location: string, options: UpdateObjectOptions, conversationId: string): Promise<{
|
|
279
246
|
object: RoolObject;
|
|
280
247
|
message: string;
|
|
281
248
|
}>;
|
|
282
249
|
/**
|
|
283
|
-
*
|
|
284
|
-
*
|
|
250
|
+
* Move (rename or relocate) an object to a new location.
|
|
251
|
+
* Use this to rename, change collection, or atomically rewrite the body.
|
|
252
|
+
*
|
|
253
|
+
* @param from - Current location
|
|
254
|
+
* @param to - New location
|
|
255
|
+
* @param options.body - Replace the body atomically as part of the move.
|
|
256
|
+
* @param options.ephemeral - If true, the operation won't be recorded in interaction history.
|
|
285
257
|
*/
|
|
286
|
-
|
|
258
|
+
moveObject(from: string, to: string, options?: MoveObjectOptions): Promise<{
|
|
259
|
+
object: RoolObject;
|
|
260
|
+
message: string;
|
|
261
|
+
}>;
|
|
287
262
|
/** @internal */
|
|
288
|
-
|
|
263
|
+
_moveObjectImpl(from: string, to: string, options: MoveObjectOptions | undefined, conversationId: string): Promise<{
|
|
264
|
+
object: RoolObject;
|
|
265
|
+
message: string;
|
|
266
|
+
}>;
|
|
289
267
|
/**
|
|
290
|
-
*
|
|
291
|
-
*
|
|
268
|
+
* Delete objects by location.
|
|
269
|
+
* Other objects that reference deleted objects will retain stale ref values.
|
|
292
270
|
*/
|
|
271
|
+
deleteObjects(locations: string[]): Promise<void>;
|
|
272
|
+
/** @internal */
|
|
273
|
+
_deleteObjectsImpl(locations: string[], conversationId: string): Promise<void>;
|
|
274
|
+
/** Get the current schema for this space. */
|
|
293
275
|
getSchema(): SpaceSchema;
|
|
294
|
-
/**
|
|
295
|
-
* Create a new collection schema.
|
|
296
|
-
* @param name - Collection name (must start with a letter, alphanumeric/hyphens/underscores only)
|
|
297
|
-
* @param fields - Field definitions for the collection
|
|
298
|
-
* @returns The created CollectionDef
|
|
299
|
-
*/
|
|
276
|
+
/** Create a new collection schema. */
|
|
300
277
|
createCollection(name: string, fields: FieldDef[]): Promise<CollectionDef>;
|
|
301
278
|
/** @internal */
|
|
302
279
|
_createCollectionImpl(name: string, fields: FieldDef[], conversationId: string): Promise<CollectionDef>;
|
|
303
|
-
/**
|
|
304
|
-
* Alter an existing collection schema, replacing its field definitions.
|
|
305
|
-
* @param name - Name of the collection to alter
|
|
306
|
-
* @param fields - New field definitions (replaces all existing fields)
|
|
307
|
-
* @returns The updated CollectionDef
|
|
308
|
-
*/
|
|
280
|
+
/** Alter an existing collection schema, replacing its field definitions. */
|
|
309
281
|
alterCollection(name: string, fields: FieldDef[]): Promise<CollectionDef>;
|
|
310
282
|
/** @internal */
|
|
311
283
|
_alterCollectionImpl(name: string, fields: FieldDef[], conversationId: string): Promise<CollectionDef>;
|
|
312
|
-
/**
|
|
313
|
-
* Drop a collection schema.
|
|
314
|
-
* @param name - Name of the collection to drop
|
|
315
|
-
*/
|
|
284
|
+
/** Drop a collection schema. */
|
|
316
285
|
dropCollection(name: string): Promise<void>;
|
|
317
286
|
/** @internal */
|
|
318
287
|
_dropCollectionImpl(name: string, conversationId: string): Promise<void>;
|
|
319
288
|
/**
|
|
320
289
|
* Get the system instruction for the current conversation.
|
|
321
|
-
* Returns undefined if no system instruction is set.
|
|
322
290
|
*/
|
|
323
291
|
getSystemInstruction(): string | undefined;
|
|
324
292
|
/** @internal */
|
|
325
293
|
_getSystemInstructionImpl(conversationId: string): string | undefined;
|
|
326
|
-
/**
|
|
327
|
-
* Set the system instruction for the current conversation.
|
|
328
|
-
* Pass null to clear the instruction.
|
|
329
|
-
*/
|
|
294
|
+
/** Set the system instruction for the current conversation. */
|
|
330
295
|
setSystemInstruction(instruction: string | null): Promise<void>;
|
|
331
296
|
/** @internal */
|
|
332
297
|
_setSystemInstructionImpl(instruction: string | null, conversationId: string): Promise<void>;
|
|
333
|
-
/**
|
|
334
|
-
* Rename the current conversation.
|
|
335
|
-
*/
|
|
298
|
+
/** Rename the current conversation. */
|
|
336
299
|
renameConversation(name: string): Promise<void>;
|
|
337
300
|
/** @internal */
|
|
338
301
|
_renameConversationImpl(name: string, conversationId: string): Promise<void>;
|
|
339
|
-
/**
|
|
340
|
-
* Ensure a conversation exists in the local channel cache.
|
|
341
|
-
* @internal
|
|
342
|
-
*/
|
|
302
|
+
/** @internal */
|
|
343
303
|
_ensureConversationImpl(conversationId: string): void;
|
|
344
|
-
/**
|
|
345
|
-
* Set a space-level metadata value.
|
|
346
|
-
* Metadata is stored in meta and hidden from AI operations.
|
|
347
|
-
*/
|
|
304
|
+
/** Set a space-level metadata value. */
|
|
348
305
|
setMetadata(key: string, value: unknown): void;
|
|
349
306
|
/** @internal */
|
|
350
307
|
_setMetadataImpl(key: string, value: unknown, conversationId: string): void;
|
|
351
|
-
/**
|
|
352
|
-
* Get a space-level metadata value.
|
|
353
|
-
*/
|
|
308
|
+
/** Get a space-level metadata value. */
|
|
354
309
|
getMetadata(key: string): unknown;
|
|
355
|
-
/**
|
|
356
|
-
* Get all space-level metadata.
|
|
357
|
-
*/
|
|
310
|
+
/** Get all space-level metadata. */
|
|
358
311
|
getAllMetadata(): Record<string, unknown>;
|
|
359
312
|
/**
|
|
360
313
|
* Send a prompt to the AI agent for space manipulation.
|
|
361
|
-
* @returns The message from the AI and the list of objects that were created or modified
|
|
314
|
+
* @returns The message from the AI and the list of objects that were created or modified.
|
|
362
315
|
*/
|
|
363
316
|
prompt(prompt: string, options?: PromptOptions): Promise<{
|
|
364
317
|
message: string;
|
|
@@ -369,17 +322,10 @@ export declare class RoolChannel extends EventEmitter<ChannelEvents> {
|
|
|
369
322
|
message: string;
|
|
370
323
|
objects: RoolObject[];
|
|
371
324
|
}>;
|
|
372
|
-
/**
|
|
373
|
-
* Rename this channel.
|
|
374
|
-
*/
|
|
325
|
+
/** Rename this channel. */
|
|
375
326
|
rename(newName: string): Promise<void>;
|
|
376
327
|
/**
|
|
377
328
|
* Fetch an external URL via the server proxy, bypassing CORS restrictions.
|
|
378
|
-
* Requires editor role or above. Blocked for private/internal IP ranges (SSRF protection).
|
|
379
|
-
*
|
|
380
|
-
* @param url - The URL to fetch
|
|
381
|
-
* @param init - Optional method, headers, and body
|
|
382
|
-
* @returns The proxied Response
|
|
383
329
|
*/
|
|
384
330
|
fetch(url: string, init?: {
|
|
385
331
|
method?: string;
|
|
@@ -390,52 +336,29 @@ export declare class RoolChannel extends EventEmitter<ChannelEvents> {
|
|
|
390
336
|
private ensureCollection;
|
|
391
337
|
/**
|
|
392
338
|
* Register a collector that resolves when the object arrives via SSE.
|
|
393
|
-
* If the object is already in the buffer (arrived before collector), resolves immediately.
|
|
394
339
|
* @internal
|
|
395
340
|
*/
|
|
396
341
|
private _collectObject;
|
|
397
|
-
/**
|
|
398
|
-
* Cancel a pending object collector (e.g., on mutation error).
|
|
399
|
-
* @internal
|
|
400
|
-
*/
|
|
342
|
+
/** @internal */
|
|
401
343
|
private _cancelCollector;
|
|
402
|
-
/**
|
|
403
|
-
* Deliver an object to a pending collector, or buffer it for later collection.
|
|
404
|
-
* @internal
|
|
405
|
-
*/
|
|
344
|
+
/** @internal */
|
|
406
345
|
private _deliverObject;
|
|
407
346
|
/**
|
|
408
347
|
* Handle a channel event from the subscription.
|
|
409
348
|
* @internal
|
|
410
349
|
*/
|
|
411
350
|
private handleChannelEvent;
|
|
412
|
-
/**
|
|
413
|
-
* Handle an object_created SSE event.
|
|
414
|
-
* Deduplicates against optimistic local creates.
|
|
415
|
-
* @internal
|
|
416
|
-
*/
|
|
351
|
+
/** @internal */
|
|
417
352
|
private _handleObjectCreated;
|
|
418
|
-
/**
|
|
419
|
-
* Handle an object_updated SSE event.
|
|
420
|
-
* Deduplicates against optimistic local updates.
|
|
421
|
-
* @internal
|
|
422
|
-
*/
|
|
353
|
+
/** @internal */
|
|
423
354
|
private _handleObjectUpdated;
|
|
424
|
-
/**
|
|
425
|
-
* Handle an object_deleted SSE event.
|
|
426
|
-
* Deduplicates against optimistic local deletes.
|
|
427
|
-
* @internal
|
|
428
|
-
*/
|
|
355
|
+
/** @internal */
|
|
429
356
|
private _handleObjectDeleted;
|
|
357
|
+
/** @internal */
|
|
358
|
+
private _handleObjectMoved;
|
|
430
359
|
}
|
|
431
360
|
/**
|
|
432
361
|
* A lightweight handle for a specific conversation within a channel.
|
|
433
|
-
*
|
|
434
|
-
* Scopes AI and mutation operations to a particular conversation's interaction
|
|
435
|
-
* history, while sharing the channel's single SSE connection and object state.
|
|
436
|
-
*
|
|
437
|
-
* Obtain via `channel.conversation('thread-id')`.
|
|
438
|
-
* Conversations are auto-created on first interaction.
|
|
439
362
|
*/
|
|
440
363
|
export declare class ConversationHandle {
|
|
441
364
|
/** @internal */
|
|
@@ -465,17 +388,22 @@ export declare class ConversationHandle {
|
|
|
465
388
|
message: string;
|
|
466
389
|
}>;
|
|
467
390
|
/** Create a new object. */
|
|
468
|
-
createObject(
|
|
391
|
+
createObject(collection: string, body: Record<string, unknown>, options?: CreateObjectOptions): Promise<{
|
|
469
392
|
object: RoolObject;
|
|
470
393
|
message: string;
|
|
471
394
|
}>;
|
|
472
395
|
/** Update an existing object. */
|
|
473
|
-
updateObject(
|
|
396
|
+
updateObject(location: string, options: UpdateObjectOptions): Promise<{
|
|
397
|
+
object: RoolObject;
|
|
398
|
+
message: string;
|
|
399
|
+
}>;
|
|
400
|
+
/** Move (rename/relocate) an object. */
|
|
401
|
+
moveObject(from: string, to: string, options?: MoveObjectOptions): Promise<{
|
|
474
402
|
object: RoolObject;
|
|
475
403
|
message: string;
|
|
476
404
|
}>;
|
|
477
|
-
/** Delete objects by
|
|
478
|
-
deleteObjects(
|
|
405
|
+
/** Delete objects by location. */
|
|
406
|
+
deleteObjects(locations: string[]): Promise<void>;
|
|
479
407
|
/** Send a prompt to the AI agent, scoped to this conversation's history. */
|
|
480
408
|
prompt(text: string, options?: PromptOptions): Promise<{
|
|
481
409
|
message: string;
|
package/dist/channel.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"channel.d.ts","sourceRoot":"","sources":["../src/channel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAClD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAC5C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,KAAK,EACV,UAAU,EACV,cAAc,EACd,aAAa,EACb,YAAY,EACZ,aAAa,EACb,kBAAkB,EAClB,mBAAmB,EACnB,mBAAmB,
|
|
1
|
+
{"version":3,"file":"channel.d.ts","sourceRoot":"","sources":["../src/channel.ts"],"names":[],"mappings":"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"}
|