@veltdev/sdk 4.0.0-beta.25 → 4.0.0-beta.27
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.
|
@@ -289,4 +289,14 @@ export declare class Snippyly {
|
|
|
289
289
|
* To get the ui state.
|
|
290
290
|
*/
|
|
291
291
|
getUiState: <T extends object>() => Observable<T>;
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* To enable logs.
|
|
295
|
+
*/
|
|
296
|
+
enableLogs: () => void;
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* To disable logs.
|
|
300
|
+
*/
|
|
301
|
+
disableLogs: () => void;
|
|
292
302
|
}
|
|
@@ -2,9 +2,7 @@ import { DocumentMetadata } from "./document-metadata.model";
|
|
|
2
2
|
import { FolderMetadata } from "./folder-metadata.model";
|
|
3
3
|
export interface FetchDocumentsResponse {
|
|
4
4
|
data: Record<string, DocumentMetadata> | null;
|
|
5
|
-
nextPageToken: string;
|
|
6
5
|
}
|
|
7
6
|
export interface FetchFoldersResponse {
|
|
8
7
|
data: Record<string, FolderMetadata> | null;
|
|
9
|
-
nextPageToken: string;
|
|
10
8
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export declare class Constants {
|
|
|
14
14
|
static FIREBASE_PARTIAL_PATH_DOCS: string;
|
|
15
15
|
static FIREBASE_PARTIAL_PATH_PRESENCE: string;
|
|
16
16
|
static FIREBASE_PARTIAL_PATH_ORGANIZATION_USERS: string;
|
|
17
|
+
static FIREBASE_PARTIAL_PATH_FOLDER_USERS: string;
|
|
17
18
|
static FIREBASE_PARTIAL_PATH_DOCUMENT_USERS: string;
|
|
18
19
|
static FIREBASE_PARTIAL_PATH_CURSOR: string;
|
|
19
20
|
static FIREBASE_PARTIAL_PATH_ARROW: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.27",
|
|
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": [
|