@veltdev/types 6.0.2 → 6.0.4
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.
|
@@ -8,6 +8,7 @@ import { ActivityElement } from "../models/element/activity-element.model";
|
|
|
8
8
|
import { AreaElement } from "../models/element/area-element.model";
|
|
9
9
|
import { ArrowElement } from "../models/element/arrow-element.model";
|
|
10
10
|
import { CommentElement } from "../models/element/comment-element.model";
|
|
11
|
+
import { SuggestionElement } from "../models/element/suggestion-element.model";
|
|
11
12
|
import { ContactElement } from "../models/element/contact-element.model";
|
|
12
13
|
import { CursorElement } from "../models/element/cursor-element.model";
|
|
13
14
|
import { LiveStateSyncElement } from "../models/element/live-state-sync-element.model";
|
|
@@ -186,6 +187,12 @@ export declare class Snippyly {
|
|
|
186
187
|
* This is for Pros who don't want to use Snippyly Comment web component and want to design their own UI.
|
|
187
188
|
*/
|
|
188
189
|
getCommentElement: () => CommentElement;
|
|
190
|
+
/**
|
|
191
|
+
* Get the Suggestion Element Object to access the raw suggestion data.
|
|
192
|
+
*
|
|
193
|
+
* This is for Pros who don't want to use Snippyly Suggestion web component and want to design their own UI.
|
|
194
|
+
*/
|
|
195
|
+
getSuggestionElement: () => SuggestionElement;
|
|
189
196
|
/**
|
|
190
197
|
* Get the Tag Pin Annotation Object to access the raw tag data.
|
|
191
198
|
*
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -10,6 +10,14 @@ export declare class Constants {
|
|
|
10
10
|
static DEFAULT_QUERY_HASH: string;
|
|
11
11
|
static LISTENER_BATCH_SIZE: number;
|
|
12
12
|
static LISTENER_CONTEXT_BATCH_SIZE: number;
|
|
13
|
+
/**
|
|
14
|
+
* Firestore rejects queries whose disjunctive normal form exceeds 30 disjunctions.
|
|
15
|
+
* `in` × `array-contains-any` counts as the PRODUCT of their value counts, so any
|
|
16
|
+
* listener combining an unbatched documentId `in` with accessFields batches must size
|
|
17
|
+
* the batches as floor(30 / documentIds.length) or the query fails outright
|
|
18
|
+
* (catchError → of([]) → every row on the page silently vanishes).
|
|
19
|
+
*/
|
|
20
|
+
static FIRESTORE_MAX_DISJUNCTIONS: number;
|
|
13
21
|
static DEFAULT_VELT_CONTEXT: string;
|
|
14
22
|
static VISIBILITY_SELF_PREFIX: string;
|
|
15
23
|
static VISIBILITY_ORG_PREFIX: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/types",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
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": [
|