@veltdev/types-dev 6.0.4-beta.1 → 6.0.5
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.
- package/app/utils/constants.d.ts +8 -0
- package/package.json +1 -1
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-dev",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.5",
|
|
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": [
|