@veltdev/sdk 4.6.11 → 4.6.12

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.
@@ -399,6 +399,16 @@ export declare class Snippyly {
399
399
  */
400
400
  disableSafeEval: () => void;
401
401
 
402
+ /**
403
+ * Enable Firestore persistent cache for offline support.
404
+ */
405
+ enableFirestorePersistentCache: (config?: { ha?: boolean }) => void;
406
+
407
+ /**
408
+ * Disable Firestore persistent cache.
409
+ */
410
+ disableFirestorePersistentCache: (config?: { ha?: boolean }) => void;
411
+
402
412
  /**
403
413
  * To reset the button toggle map.
404
414
  */
@@ -16,6 +16,8 @@ export interface SetDocumentsRequestOptions {
16
16
  locationId?: string;
17
17
  rootDocumentId?: string;
18
18
  context?: SetDocumentsContext;
19
+ debounceTime?: number;
20
+ optimisticPermissions?: boolean;
19
21
  }
20
22
  export interface UpdateDocumentsRequest<T = unknown> {
21
23
  organizationId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk",
3
- "version": "4.6.11",
3
+ "version": "4.6.12",
4
4
  "description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
5
5
  "homepage": "https://velt.dev",
6
6
  "keywords": [
@@ -36,7 +36,7 @@
36
36
  "scripts": {
37
37
  "test": "echo \"Error: no test specified\" && exit 1",
38
38
  "version:update": "node ../update-npm-package.mjs",
39
- "publish:sdk": "npm publish --access public --tag v4-6-11"
39
+ "publish:sdk": "npm publish --access public --tag v4-6-12"
40
40
  },
41
41
  "author": "",
42
42
  "license": "ISC",