@rool-dev/svelte 0.3.1-dev.5387348 → 0.3.1-dev.6472332
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 +14 -4
- package/dist/channel.svelte.d.ts +3 -0
- package/dist/channel.svelte.d.ts.map +1 -1
- package/dist/channel.svelte.js +13 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/rool.svelte.d.ts +6 -1
- package/dist/rool.svelte.d.ts.map +1 -1
- package/dist/rool.svelte.js +7 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -54,6 +54,7 @@ The Svelte wrapper adds reactive state on top of the SDK:
|
|
|
54
54
|
| `rool.userStorage` | User storage (cross-device preferences) |
|
|
55
55
|
| `channel.interactions` | Channel interactions (auto-updates) |
|
|
56
56
|
| `channel.objectIds` | All object IDs in the space (auto-updates on create/delete) |
|
|
57
|
+
| `channel.collections` | Collection names from the schema (auto-updates) |
|
|
57
58
|
| `watch.objects` | Objects matching a filter (auto-updates) |
|
|
58
59
|
| `watch.loading` | Whether watch is loading |
|
|
59
60
|
|
|
@@ -222,7 +223,7 @@ Create auto-updating watches of objects filtered by field values:
|
|
|
222
223
|
async function open(spaceId) {
|
|
223
224
|
channel = await rool.openChannel(spaceId, 'main');
|
|
224
225
|
// Create a reactive watch of all objects where type === 'article'
|
|
225
|
-
articles = channel.watch({
|
|
226
|
+
articles = channel.watch({ collection: 'article' });
|
|
226
227
|
}
|
|
227
228
|
</script>
|
|
228
229
|
|
|
@@ -244,7 +245,8 @@ Watches automatically re-fetch when objects matching the filter are created, upd
|
|
|
244
245
|
```typescript
|
|
245
246
|
// Watch options (same as findObjects, but no AI prompt)
|
|
246
247
|
const articles = channel.watch({
|
|
247
|
-
|
|
248
|
+
collection: 'article',
|
|
249
|
+
where: { status: 'published' },
|
|
248
250
|
order: 'desc', // by modifiedAt (default)
|
|
249
251
|
limit: 20,
|
|
250
252
|
});
|
|
@@ -316,10 +318,10 @@ channel.channelId
|
|
|
316
318
|
|
|
317
319
|
// Object operations
|
|
318
320
|
await channel.getObject(id)
|
|
319
|
-
await channel.createObject({ data: {
|
|
321
|
+
await channel.createObject({ data: { text: 'Hello' } })
|
|
320
322
|
await channel.updateObject(id, { data: { text: 'Updated' } })
|
|
321
323
|
await channel.deleteObjects([id])
|
|
322
|
-
await channel.findObjects({
|
|
324
|
+
await channel.findObjects({ collection: 'note' })
|
|
323
325
|
|
|
324
326
|
// AI
|
|
325
327
|
await channel.prompt('Summarize everything')
|
|
@@ -365,6 +367,8 @@ import type { Rool, ReactiveChannel, ReactiveObject, ReactiveWatch, WatchOptions
|
|
|
365
367
|
|
|
366
368
|
// Re-exported from @rool-dev/sdk
|
|
367
369
|
import type {
|
|
370
|
+
RoolClient,
|
|
371
|
+
RoolClientConfig,
|
|
368
372
|
RoolChannel,
|
|
369
373
|
RoolSpace,
|
|
370
374
|
RoolSpaceInfo,
|
|
@@ -373,6 +377,7 @@ import type {
|
|
|
373
377
|
RoolUserRole,
|
|
374
378
|
ConnectionState,
|
|
375
379
|
ChannelInfo,
|
|
380
|
+
CurrentUser,
|
|
376
381
|
Interaction,
|
|
377
382
|
FindObjectsOptions,
|
|
378
383
|
PromptOptions,
|
|
@@ -382,6 +387,11 @@ import type {
|
|
|
382
387
|
FieldDef,
|
|
383
388
|
CollectionDef,
|
|
384
389
|
SpaceSchema,
|
|
390
|
+
SpaceMember,
|
|
391
|
+
UserResult,
|
|
392
|
+
PublishedAppInfo,
|
|
393
|
+
AppManifest,
|
|
394
|
+
FindAppsOptions,
|
|
385
395
|
} from '@rool-dev/svelte';
|
|
386
396
|
```
|
|
387
397
|
|
package/dist/channel.svelte.d.ts
CHANGED
|
@@ -6,6 +6,8 @@ import type { RoolChannel, RoolClient, Interaction, RoolObject, ChannelInfo } fr
|
|
|
6
6
|
export interface WatchOptions {
|
|
7
7
|
/** Field requirements for exact matching */
|
|
8
8
|
where?: Record<string, unknown>;
|
|
9
|
+
/** Filter by collection name. Only returns objects whose shape matches the named collection. */
|
|
10
|
+
collection?: string;
|
|
9
11
|
/** Maximum number of objects */
|
|
10
12
|
limit?: number;
|
|
11
13
|
/** Sort order by modifiedAt: 'asc' or 'desc' (default: 'desc') */
|
|
@@ -55,6 +57,7 @@ declare class ReactiveChannelImpl {
|
|
|
55
57
|
#private;
|
|
56
58
|
interactions: Interaction[];
|
|
57
59
|
objectIds: string[];
|
|
60
|
+
collections: string[];
|
|
58
61
|
constructor(channel: RoolChannel);
|
|
59
62
|
get id(): string;
|
|
60
63
|
get name(): string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"channel.svelte.d.ts","sourceRoot":"","sources":["../src/channel.svelte.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAsB,WAAW,EAAE,MAAM,eAAe,CAAC;AAEvH;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B,4CAA4C;IAC5C,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,gCAAgC;IAChC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,kEAAkE;IAClE,KAAK,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;CACxB;AAGD;;GAEG;AACH,cAAM,iBAAiB;;IAOrB,OAAO,eAA4B;IACnC,OAAO,UAAgB;gBAEX,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,YAAY;
|
|
1
|
+
{"version":3,"file":"channel.svelte.d.ts","sourceRoot":"","sources":["../src/channel.svelte.ts"],"names":[],"mappings":"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"}
|
package/dist/channel.svelte.js
CHANGED
|
@@ -77,6 +77,9 @@ class ReactiveWatchImpl {
|
|
|
77
77
|
* Check if an object matches the `where` filter.
|
|
78
78
|
*/
|
|
79
79
|
#matches(object) {
|
|
80
|
+
// Collection membership is shape-based and resolved server-side — can't match locally
|
|
81
|
+
if (this.#options.collection)
|
|
82
|
+
return true;
|
|
80
83
|
const where = this.#options.where;
|
|
81
84
|
if (!where)
|
|
82
85
|
return true;
|
|
@@ -94,6 +97,7 @@ class ReactiveWatchImpl {
|
|
|
94
97
|
try {
|
|
95
98
|
const findOptions = {
|
|
96
99
|
where: this.#options.where,
|
|
100
|
+
collection: this.#options.collection,
|
|
97
101
|
limit: this.#options.limit,
|
|
98
102
|
order: this.#options.order,
|
|
99
103
|
ephemeral: true, // Don't pollute interaction history
|
|
@@ -194,10 +198,12 @@ class ReactiveChannelImpl {
|
|
|
194
198
|
// Reactive state
|
|
195
199
|
interactions = $state([]);
|
|
196
200
|
objectIds = $state([]);
|
|
201
|
+
collections = $state([]);
|
|
197
202
|
constructor(channel) {
|
|
198
203
|
this.#channel = channel;
|
|
199
204
|
this.interactions = channel.getInteractions();
|
|
200
205
|
this.objectIds = channel.getObjectIds();
|
|
206
|
+
this.collections = Object.keys(channel.getSchema());
|
|
201
207
|
// Subscribe to channel updates
|
|
202
208
|
const onChannelUpdated = () => {
|
|
203
209
|
this.interactions = channel.getInteractions();
|
|
@@ -212,9 +218,16 @@ class ReactiveChannelImpl {
|
|
|
212
218
|
this.#unsubscribers.push(() => channel.off('objectCreated', refreshObjectIds));
|
|
213
219
|
channel.on('objectDeleted', refreshObjectIds);
|
|
214
220
|
this.#unsubscribers.push(() => channel.off('objectDeleted', refreshObjectIds));
|
|
221
|
+
// Subscribe to schema updates for collections
|
|
222
|
+
const onSchemaUpdated = () => {
|
|
223
|
+
this.collections = Object.keys(channel.getSchema());
|
|
224
|
+
};
|
|
225
|
+
channel.on('schemaUpdated', onSchemaUpdated);
|
|
226
|
+
this.#unsubscribers.push(() => channel.off('schemaUpdated', onSchemaUpdated));
|
|
215
227
|
const onReset = () => {
|
|
216
228
|
this.interactions = channel.getInteractions();
|
|
217
229
|
this.objectIds = channel.getObjectIds();
|
|
230
|
+
this.collections = Object.keys(channel.getSchema());
|
|
218
231
|
};
|
|
219
232
|
channel.on('reset', onReset);
|
|
220
233
|
this.#unsubscribers.push(() => channel.off('reset', onReset));
|
package/dist/index.d.ts
CHANGED
|
@@ -2,5 +2,5 @@ export { createRool, generateId } from './rool.svelte.js';
|
|
|
2
2
|
export { wrapChannel } from './channel.svelte.js';
|
|
3
3
|
export type { Rool } from './rool.svelte.js';
|
|
4
4
|
export type { ReactiveChannel, ReactiveObject, ReactiveWatch, ReactiveChannelList, WatchOptions } from './channel.svelte.js';
|
|
5
|
-
export type { RoolClientConfig, RoolChannel, RoolSpace, RoolSpaceInfo, RoolObject, RoolObjectStat, RoolUserRole, ConnectionState, ChannelInfo, CurrentUser, Interaction, FindObjectsOptions, PromptOptions, CreateObjectOptions, UpdateObjectOptions, FieldType, FieldDef, CollectionDef, SpaceSchema, SpaceMember, UserResult, RoolClient, } from '@rool-dev/sdk';
|
|
5
|
+
export type { RoolClientConfig, RoolChannel, RoolSpace, RoolSpaceInfo, RoolObject, RoolObjectStat, RoolUserRole, ConnectionState, ChannelInfo, CurrentUser, Interaction, FindObjectsOptions, PromptOptions, CreateObjectOptions, UpdateObjectOptions, FieldType, FieldDef, CollectionDef, SpaceSchema, SpaceMember, UserResult, RoolClient, PublishedAppInfo, AppManifest, FindAppsOptions, } from '@rool-dev/sdk';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAG1D,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAGlD,YAAY,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAC7C,YAAY,EAAE,eAAe,EAAE,cAAc,EAAE,aAAa,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAG7H,YAAY,EACV,gBAAgB,EAChB,WAAW,EACX,SAAS,EACT,aAAa,EACb,UAAU,EACV,cAAc,EACd,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,WAAW,EACX,kBAAkB,EAClB,aAAa,EACb,mBAAmB,EACnB,mBAAmB,EACnB,SAAS,EACT,QAAQ,EACR,aAAa,EACb,WAAW,EACX,WAAW,EACX,UAAU,EACV,UAAU,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAG1D,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAGlD,YAAY,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AAC7C,YAAY,EAAE,eAAe,EAAE,cAAc,EAAE,aAAa,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAG7H,YAAY,EACV,gBAAgB,EAChB,WAAW,EACX,SAAS,EACT,aAAa,EACb,UAAU,EACV,cAAc,EACd,YAAY,EACZ,eAAe,EACf,WAAW,EACX,WAAW,EACX,WAAW,EACX,kBAAkB,EAClB,aAAa,EACb,mBAAmB,EACnB,mBAAmB,EACnB,SAAS,EACT,QAAQ,EACR,aAAa,EACb,WAAW,EACX,WAAW,EACX,UAAU,EACV,UAAU,EACV,gBAAgB,EAChB,WAAW,EACX,eAAe,GAChB,MAAM,eAAe,CAAC"}
|
package/dist/rool.svelte.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RoolClient, type RoolSpace, type RoolSpaceInfo, type ConnectionState, type RoolClientConfig, type CurrentUser } from '@rool-dev/sdk';
|
|
1
|
+
import { RoolClient, type RoolSpace, type RoolSpaceInfo, type ConnectionState, type RoolClientConfig, type CurrentUser, type FindAppsOptions, type PublishedAppInfo } from '@rool-dev/sdk';
|
|
2
2
|
import { type ReactiveChannel, type ReactiveChannelList } from './channel.svelte.js';
|
|
3
3
|
/**
|
|
4
4
|
* Rool client with reactive state for Svelte 5.
|
|
@@ -90,6 +90,11 @@ declare class RoolImpl {
|
|
|
90
90
|
* Delete a channel from a space.
|
|
91
91
|
*/
|
|
92
92
|
deleteChannel(spaceId: string, channelId: string): Promise<void>;
|
|
93
|
+
/**
|
|
94
|
+
* Search for public apps. With a query, performs semantic search.
|
|
95
|
+
* Without a query, returns all public apps sorted by most recently updated.
|
|
96
|
+
*/
|
|
97
|
+
findApps(options?: FindAppsOptions): Promise<PublishedAppInfo[]>;
|
|
93
98
|
/**
|
|
94
99
|
* Create a reactive channel list for a space.
|
|
95
100
|
* Auto-updates when channels are created, renamed, or deleted.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rool.svelte.d.ts","sourceRoot":"","sources":["../src/rool.svelte.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,KAAK,SAAS,EAAE,KAAK,aAAa,EAAE,KAAK,eAAe,EAAE,KAAK,gBAAgB,EAAE,KAAK,WAAW,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"rool.svelte.d.ts","sourceRoot":"","sources":["../src/rool.svelte.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,KAAK,SAAS,EAAE,KAAK,aAAa,EAAE,KAAK,eAAe,EAAE,KAAK,gBAAgB,EAAE,KAAK,WAAW,EAAE,KAAK,eAAe,EAAE,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAC3L,OAAO,EAAkC,KAAK,eAAe,EAAE,KAAK,mBAAmB,EAAE,MAAM,qBAAqB,CAAC;AAErH;;;;;;;;GAQG;AACH,cAAM,QAAQ;;IAMZ,aAAa,iBAAgC;IAC7C,MAAM,8BAAkD;IACxD,aAAa,UAAiB;IAC9B,WAAW,eAA8B;IACzC,eAAe,kBAA2C;IAC1D,WAAW,0BAAuC;IAClD,WAAW,qBAAoC;gBAEnC,MAAM,CAAC,EAAE,gBAAgB;IAKrC;;;OAGG;IACH,IAAI,MAAM,IAAI,UAAU,CAEvB;IAwDD;;;OAGG;IACG,IAAI,IAAI,OAAO,CAAC,OAAO,CAAC;IAW9B;;OAEG;IACH,KAAK,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAI5B;;OAEG;IACH,MAAM,IAAI,IAAI;IAQd;;;OAGG;IACG,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IAO/E;;;OAGG;IACH,SAAS,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC;IAI9C;;;OAGG;IACH,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,CAAC;IAI7C;;OAEG;IACH,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC;IAI9B;;OAEG;IACH,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAI3C;;;OAGG;IACH,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI;IAKjD;;OAEG;IACH,UAAU,CAAC,KAAK,EAAE,MAAM;IAIxB;;;OAGG;IACH,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,GAAG,OAAO,CAAC,SAAS,CAAC;IAI9D;;OAEG;IACH,IAAI,QAAQ,qCAEX;IAED;;OAEG;IACH,cAAc;IAId;;OAEG;IACH,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAI9E;;OAEG;IACH,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAIhE;;;OAGG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,gBAAgB,EAAE,CAAC;IAIhE;;;;OAIG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,mBAAmB;IAI9C;;OAEG;IACH,OAAO,IAAI,IAAI;CAahB;AAED;;GAEG;AACH,wBAAgB,UAAU,CAAC,MAAM,CAAC,EAAE,gBAAgB,GAAG,IAAI,CAE1D;AAED;;GAEG;AACH,wBAAgB,UAAU,IAAI,MAAM,CAEnC;AAED,MAAM,MAAM,IAAI,GAAG,QAAQ,CAAC"}
|
package/dist/rool.svelte.js
CHANGED
|
@@ -194,6 +194,13 @@ class RoolImpl {
|
|
|
194
194
|
deleteChannel(spaceId, channelId) {
|
|
195
195
|
return this.#client.deleteChannel(spaceId, channelId);
|
|
196
196
|
}
|
|
197
|
+
/**
|
|
198
|
+
* Search for public apps. With a query, performs semantic search.
|
|
199
|
+
* Without a query, returns all public apps sorted by most recently updated.
|
|
200
|
+
*/
|
|
201
|
+
findApps(options) {
|
|
202
|
+
return this.#client.findApps(options);
|
|
203
|
+
}
|
|
197
204
|
/**
|
|
198
205
|
* Create a reactive channel list for a space.
|
|
199
206
|
* Auto-updates when channels are created, renamed, or deleted.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rool-dev/svelte",
|
|
3
|
-
"version": "0.3.1-dev.
|
|
3
|
+
"version": "0.3.1-dev.6472332",
|
|
4
4
|
"description": "Svelte 5 runes for Rool Spaces",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"svelte": "./dist/index.js",
|
|
@@ -41,15 +41,15 @@
|
|
|
41
41
|
},
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@rool-dev/sdk": "0.3.1-dev.
|
|
44
|
+
"@rool-dev/sdk": "0.3.1-dev.6472332"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"svelte": "^5.0.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@sveltejs/package": "^2.
|
|
51
|
-
"svelte": "^5.
|
|
52
|
-
"svelte-check": "^4.
|
|
50
|
+
"@sveltejs/package": "^2.5.7",
|
|
51
|
+
"svelte": "^5.54.0",
|
|
52
|
+
"svelte-check": "^4.4.5",
|
|
53
53
|
"typescript": "^5.9.3"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|