@smplrspace/smplr-loader 2.48.1-beta.1 → 2.48.1-beta.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.
|
@@ -2239,9 +2239,10 @@ export declare class QueryClient {
|
|
|
2239
2239
|
private checkOptions;
|
|
2240
2240
|
checkApiConnection(): Promise<string>;
|
|
2241
2241
|
getApiVersion(): Promise<string>;
|
|
2242
|
-
createSpace({ name, notes }: {
|
|
2242
|
+
createSpace({ name, notes, tags }: {
|
|
2243
2243
|
name: string;
|
|
2244
2244
|
notes?: string;
|
|
2245
|
+
tags?: string[];
|
|
2245
2246
|
}): Promise<{
|
|
2246
2247
|
sid: string;
|
|
2247
2248
|
}>;
|
|
@@ -2252,7 +2253,9 @@ export declare class QueryClient {
|
|
|
2252
2253
|
status: string;
|
|
2253
2254
|
}>;
|
|
2254
2255
|
deleteSpace(spaceId: string): Promise<void>;
|
|
2255
|
-
listSpaces(
|
|
2256
|
+
listSpaces(options?: {
|
|
2257
|
+
tagged?: string[];
|
|
2258
|
+
}): Promise<{
|
|
2256
2259
|
sid: string;
|
|
2257
2260
|
status: string;
|
|
2258
2261
|
name: string;
|
|
@@ -3879,7 +3882,7 @@ declare interface Vector3Coord extends Vector2Coord {
|
|
|
3879
3882
|
z: number;
|
|
3880
3883
|
}
|
|
3881
3884
|
|
|
3882
|
-
export declare const version = "2.48.1-beta.
|
|
3885
|
+
export declare const version = "2.48.1-beta.2";
|
|
3883
3886
|
|
|
3884
3887
|
declare interface ViewerRendererHandle {
|
|
3885
3888
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|