@rool-dev/svelte 0.3.0-dev.be25932 → 0.3.0-dev.c36df33
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/dist/channel.svelte.js +1 -1
- package/dist/rool.svelte.d.ts +2 -2
- package/dist/rool.svelte.js +2 -2
- package/package.json +2 -2
package/dist/channel.svelte.js
CHANGED
|
@@ -83,7 +83,7 @@ class ReactiveWatchImpl {
|
|
|
83
83
|
where: this.#options.where,
|
|
84
84
|
limit: this.#options.limit,
|
|
85
85
|
order: this.#options.order,
|
|
86
|
-
ephemeral: true, // Don't pollute
|
|
86
|
+
ephemeral: true, // Don't pollute interaction history
|
|
87
87
|
};
|
|
88
88
|
const { objects } = await this.#channel.findObjects(findOptions);
|
|
89
89
|
this.objects = objects;
|
package/dist/rool.svelte.d.ts
CHANGED
|
@@ -78,11 +78,11 @@ declare class RoolImpl {
|
|
|
78
78
|
*/
|
|
79
79
|
getCurrentUser(): Promise<CurrentUser>;
|
|
80
80
|
/**
|
|
81
|
-
* Rename a channel
|
|
81
|
+
* Rename a channel in a space.
|
|
82
82
|
*/
|
|
83
83
|
renameChannel(spaceId: string, channelId: string, name: string): Promise<void>;
|
|
84
84
|
/**
|
|
85
|
-
* Delete a channel
|
|
85
|
+
* Delete a channel from a space.
|
|
86
86
|
*/
|
|
87
87
|
deleteChannel(spaceId: string, channelId: string): Promise<void>;
|
|
88
88
|
/**
|
package/dist/rool.svelte.js
CHANGED
|
@@ -176,13 +176,13 @@ class RoolImpl {
|
|
|
176
176
|
return this.#client.getCurrentUser();
|
|
177
177
|
}
|
|
178
178
|
/**
|
|
179
|
-
* Rename a channel
|
|
179
|
+
* Rename a channel in a space.
|
|
180
180
|
*/
|
|
181
181
|
renameChannel(spaceId, channelId, name) {
|
|
182
182
|
return this.#client.renameChannel(spaceId, channelId, name);
|
|
183
183
|
}
|
|
184
184
|
/**
|
|
185
|
-
* Delete a channel
|
|
185
|
+
* Delete a channel from a space.
|
|
186
186
|
*/
|
|
187
187
|
deleteChannel(spaceId, channelId) {
|
|
188
188
|
return this.#client.deleteChannel(spaceId, channelId);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rool-dev/svelte",
|
|
3
|
-
"version": "0.3.0-dev.
|
|
3
|
+
"version": "0.3.0-dev.c36df33",
|
|
4
4
|
"description": "Svelte 5 runes for Rool Spaces",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"svelte": "./dist/index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@rool-dev/sdk": "0.3.0-dev.
|
|
44
|
+
"@rool-dev/sdk": "0.3.0-dev.c36df33"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"svelte": "^5.0.0"
|