@squidcloud/client 1.0.335 → 1.0.336

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.
@@ -1 +1,9 @@
1
- export {};
1
+ import { Squid } from '../squid';
2
+ import { SerializedQuery } from '../public-types';
3
+ import { SnapshotEmitter } from './snapshot-emitter';
4
+ /**
5
+ * Deserialize a serialized query into a snapshot emitter.
6
+ * @param squid - The Squid instance.
7
+ * @param serializedQuery - The serialized query.
8
+ */
9
+ export declare function deserializeQuery<ReturnType = any>(squid: Squid, serializedQuery: SerializedQuery): SnapshotEmitter<ReturnType>;
@@ -1 +1 @@
1
- export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.335";
1
+ export declare const SQUIDCLOUD_CLIENT_PACKAGE_VERSION = "1.0.336";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/client",
3
- "version": "1.0.335",
3
+ "version": "1.0.336",
4
4
  "description": "A typescript implementation of the Squid client",
5
5
  "main": "dist/cjs/index.js",
6
6
  "types": "dist/typescript-client/src/index.d.ts",