@loro-dev/flock-wasm 0.1.2 → 0.1.3
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/base64/flock_wasm.js +19 -14
- package/base64/index.d.ts +11 -6
- package/base64/index.js +11 -6
- package/base64/wasm.js +1 -1
- package/bundler/flock_wasm.d.ts +16 -11
- package/bundler/flock_wasm_bg.js +19 -14
- package/bundler/flock_wasm_bg.wasm +0 -0
- package/bundler/index.d.ts +11 -6
- package/bundler/index.js +11 -6
- package/nodejs/flock_wasm.d.ts +16 -11
- package/nodejs/flock_wasm.js +19 -14
- package/nodejs/flock_wasm_bg.wasm +0 -0
- package/nodejs/index.d.ts +11 -6
- package/nodejs/index.js +11 -6
- package/package.json +2 -1
- package/web/flock_wasm.d.ts +16 -11
- package/web/flock_wasm.js +19 -14
- package/web/flock_wasm_bg.wasm +0 -0
- package/web/index.d.ts +11 -6
- package/web/index.js +11 -6
package/bundler/flock_wasm.d.ts
CHANGED
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Initializes the WASM module.
|
|
5
|
-
*
|
|
6
|
-
* This function is automatically called when the WASM module is loaded.
|
|
7
|
-
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
8
|
-
*/
|
|
9
|
-
export function start(): void;
|
|
10
3
|
/**
|
|
11
4
|
* Drains the pending callback queue, invoking all enqueued callbacks.
|
|
12
5
|
*
|
|
@@ -17,6 +10,13 @@ export function start(): void;
|
|
|
17
10
|
* the error is propagated to JavaScript after the current batch completes.
|
|
18
11
|
*/
|
|
19
12
|
export function callPendingEvents(): void;
|
|
13
|
+
/**
|
|
14
|
+
* Initializes the WASM module.
|
|
15
|
+
*
|
|
16
|
+
* This function is automatically called when the WASM module is loaded.
|
|
17
|
+
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
18
|
+
*/
|
|
19
|
+
export function start(): void;
|
|
20
20
|
/**
|
|
21
21
|
* The main WASM-exposed flock instance.
|
|
22
22
|
*
|
|
@@ -120,8 +120,11 @@ export class RawFlock {
|
|
|
120
120
|
/**
|
|
121
121
|
* Returns the inclusive version vector for this flock.
|
|
122
122
|
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
123
|
+
* This vector tracks max seen clocks per peer for the current process
|
|
124
|
+
* lifetime (open/import/local writes), including peers that may no longer
|
|
125
|
+
* own visible entries.
|
|
126
|
+
*
|
|
127
|
+
* Use this vector for completeness checks, not incremental export baselines.
|
|
125
128
|
*
|
|
126
129
|
* # Errors
|
|
127
130
|
*
|
|
@@ -231,8 +234,10 @@ export class RawFlock {
|
|
|
231
234
|
/**
|
|
232
235
|
* Returns the exclusive version vector for this flock.
|
|
233
236
|
*
|
|
234
|
-
*
|
|
235
|
-
*
|
|
237
|
+
* This vector only includes peers that currently own at least one visible
|
|
238
|
+
* entry (excluding tombstones and shadowed entries).
|
|
239
|
+
*
|
|
240
|
+
* Use this vector as the baseline for incremental export/replication.
|
|
236
241
|
*
|
|
237
242
|
* # Errors
|
|
238
243
|
*
|
package/bundler/flock_wasm_bg.js
CHANGED
|
@@ -205,16 +205,6 @@ function debugString(val) {
|
|
|
205
205
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
206
206
|
return className;
|
|
207
207
|
}
|
|
208
|
-
/**
|
|
209
|
-
* Initializes the WASM module.
|
|
210
|
-
*
|
|
211
|
-
* This function is automatically called when the WASM module is loaded.
|
|
212
|
-
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
213
|
-
*/
|
|
214
|
-
export function start() {
|
|
215
|
-
wasm.start();
|
|
216
|
-
}
|
|
217
|
-
|
|
218
208
|
/**
|
|
219
209
|
* Drains the pending callback queue, invoking all enqueued callbacks.
|
|
220
210
|
*
|
|
@@ -228,6 +218,16 @@ export function callPendingEvents() {
|
|
|
228
218
|
wasm.callPendingEvents();
|
|
229
219
|
}
|
|
230
220
|
|
|
221
|
+
/**
|
|
222
|
+
* Initializes the WASM module.
|
|
223
|
+
*
|
|
224
|
+
* This function is automatically called when the WASM module is loaded.
|
|
225
|
+
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
226
|
+
*/
|
|
227
|
+
export function start() {
|
|
228
|
+
wasm.start();
|
|
229
|
+
}
|
|
230
|
+
|
|
231
231
|
function takeFromExternrefTable0(idx) {
|
|
232
232
|
const value = wasm.__wbindgen_export_4.get(idx);
|
|
233
233
|
wasm.__externref_table_dealloc(idx);
|
|
@@ -438,8 +438,11 @@ export class RawFlock {
|
|
|
438
438
|
/**
|
|
439
439
|
* Returns the inclusive version vector for this flock.
|
|
440
440
|
*
|
|
441
|
-
*
|
|
442
|
-
*
|
|
441
|
+
* This vector tracks max seen clocks per peer for the current process
|
|
442
|
+
* lifetime (open/import/local writes), including peers that may no longer
|
|
443
|
+
* own visible entries.
|
|
444
|
+
*
|
|
445
|
+
* Use this vector for completeness checks, not incremental export baselines.
|
|
443
446
|
*
|
|
444
447
|
* # Errors
|
|
445
448
|
*
|
|
@@ -625,8 +628,10 @@ export class RawFlock {
|
|
|
625
628
|
/**
|
|
626
629
|
* Returns the exclusive version vector for this flock.
|
|
627
630
|
*
|
|
628
|
-
*
|
|
629
|
-
*
|
|
631
|
+
* This vector only includes peers that currently own at least one visible
|
|
632
|
+
* entry (excluding tombstones and shadowed entries).
|
|
633
|
+
*
|
|
634
|
+
* Use this vector as the baseline for incremental export/replication.
|
|
630
635
|
*
|
|
631
636
|
* # Errors
|
|
632
637
|
*
|
|
Binary file
|
package/bundler/index.d.ts
CHANGED
|
@@ -156,18 +156,23 @@ export declare class Flock {
|
|
|
156
156
|
getEntry(key: KeyPart[]): EntryInfo | undefined;
|
|
157
157
|
merge(other: Flock): void;
|
|
158
158
|
/**
|
|
159
|
-
* Returns the exclusive version vector
|
|
160
|
-
*
|
|
161
|
-
*
|
|
159
|
+
* Returns the exclusive/visible version vector.
|
|
160
|
+
*
|
|
161
|
+
* Only peers that currently own at least one visible entry are included.
|
|
162
|
+
* This vector is consistent with current visible state and is the correct
|
|
163
|
+
* baseline for incremental export/replication.
|
|
162
164
|
*
|
|
163
165
|
* Use this version when sending to other peers for incremental sync.
|
|
164
166
|
*/
|
|
165
167
|
version(): VersionVector;
|
|
166
168
|
/**
|
|
167
|
-
* Returns the inclusive version vector
|
|
168
|
-
*
|
|
169
|
+
* Returns the inclusive/max-seen version vector.
|
|
170
|
+
*
|
|
171
|
+
* Tracks max seen clocks per peer for this process lifetime
|
|
172
|
+
* (open/import/local writes), including peers that may no longer own visible
|
|
173
|
+
* entries.
|
|
169
174
|
*
|
|
170
|
-
* Use this version
|
|
175
|
+
* Use this version for completeness checks, not incremental export baselines.
|
|
171
176
|
*/
|
|
172
177
|
inclusiveVersion(): VersionVector;
|
|
173
178
|
private exportJsonInternal;
|
package/bundler/index.js
CHANGED
|
@@ -650,9 +650,11 @@ export class Flock {
|
|
|
650
650
|
void this.inner.merge(other.inner);
|
|
651
651
|
}
|
|
652
652
|
/**
|
|
653
|
-
* Returns the exclusive version vector
|
|
654
|
-
*
|
|
655
|
-
*
|
|
653
|
+
* Returns the exclusive/visible version vector.
|
|
654
|
+
*
|
|
655
|
+
* Only peers that currently own at least one visible entry are included.
|
|
656
|
+
* This vector is consistent with current visible state and is the correct
|
|
657
|
+
* baseline for incremental export/replication.
|
|
656
658
|
*
|
|
657
659
|
* Use this version when sending to other peers for incremental sync.
|
|
658
660
|
*/
|
|
@@ -660,10 +662,13 @@ export class Flock {
|
|
|
660
662
|
return decodeVersionVectorFromRaw(this.inner.version());
|
|
661
663
|
}
|
|
662
664
|
/**
|
|
663
|
-
* Returns the inclusive version vector
|
|
664
|
-
*
|
|
665
|
+
* Returns the inclusive/max-seen version vector.
|
|
666
|
+
*
|
|
667
|
+
* Tracks max seen clocks per peer for this process lifetime
|
|
668
|
+
* (open/import/local writes), including peers that may no longer own visible
|
|
669
|
+
* entries.
|
|
665
670
|
*
|
|
666
|
-
* Use this version
|
|
671
|
+
* Use this version for completeness checks, not incremental export baselines.
|
|
667
672
|
*/
|
|
668
673
|
inclusiveVersion() {
|
|
669
674
|
return decodeVersionVectorFromRaw(this.inner.inclusiveVersion());
|
package/nodejs/flock_wasm.d.ts
CHANGED
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Initializes the WASM module.
|
|
5
|
-
*
|
|
6
|
-
* This function is automatically called when the WASM module is loaded.
|
|
7
|
-
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
8
|
-
*/
|
|
9
|
-
export function start(): void;
|
|
10
3
|
/**
|
|
11
4
|
* Drains the pending callback queue, invoking all enqueued callbacks.
|
|
12
5
|
*
|
|
@@ -17,6 +10,13 @@ export function start(): void;
|
|
|
17
10
|
* the error is propagated to JavaScript after the current batch completes.
|
|
18
11
|
*/
|
|
19
12
|
export function callPendingEvents(): void;
|
|
13
|
+
/**
|
|
14
|
+
* Initializes the WASM module.
|
|
15
|
+
*
|
|
16
|
+
* This function is automatically called when the WASM module is loaded.
|
|
17
|
+
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
18
|
+
*/
|
|
19
|
+
export function start(): void;
|
|
20
20
|
/**
|
|
21
21
|
* The main WASM-exposed flock instance.
|
|
22
22
|
*
|
|
@@ -120,8 +120,11 @@ export class RawFlock {
|
|
|
120
120
|
/**
|
|
121
121
|
* Returns the inclusive version vector for this flock.
|
|
122
122
|
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
123
|
+
* This vector tracks max seen clocks per peer for the current process
|
|
124
|
+
* lifetime (open/import/local writes), including peers that may no longer
|
|
125
|
+
* own visible entries.
|
|
126
|
+
*
|
|
127
|
+
* Use this vector for completeness checks, not incremental export baselines.
|
|
125
128
|
*
|
|
126
129
|
* # Errors
|
|
127
130
|
*
|
|
@@ -231,8 +234,10 @@ export class RawFlock {
|
|
|
231
234
|
/**
|
|
232
235
|
* Returns the exclusive version vector for this flock.
|
|
233
236
|
*
|
|
234
|
-
*
|
|
235
|
-
*
|
|
237
|
+
* This vector only includes peers that currently own at least one visible
|
|
238
|
+
* entry (excluding tombstones and shadowed entries).
|
|
239
|
+
*
|
|
240
|
+
* Use this vector as the baseline for incremental export/replication.
|
|
236
241
|
*
|
|
237
242
|
* # Errors
|
|
238
243
|
*
|
package/nodejs/flock_wasm.js
CHANGED
|
@@ -201,16 +201,6 @@ function debugString(val) {
|
|
|
201
201
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
202
202
|
return className;
|
|
203
203
|
}
|
|
204
|
-
/**
|
|
205
|
-
* Initializes the WASM module.
|
|
206
|
-
*
|
|
207
|
-
* This function is automatically called when the WASM module is loaded.
|
|
208
|
-
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
209
|
-
*/
|
|
210
|
-
module.exports.start = function() {
|
|
211
|
-
wasm.start();
|
|
212
|
-
};
|
|
213
|
-
|
|
214
204
|
/**
|
|
215
205
|
* Drains the pending callback queue, invoking all enqueued callbacks.
|
|
216
206
|
*
|
|
@@ -224,6 +214,16 @@ module.exports.callPendingEvents = function() {
|
|
|
224
214
|
wasm.callPendingEvents();
|
|
225
215
|
};
|
|
226
216
|
|
|
217
|
+
/**
|
|
218
|
+
* Initializes the WASM module.
|
|
219
|
+
*
|
|
220
|
+
* This function is automatically called when the WASM module is loaded.
|
|
221
|
+
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
222
|
+
*/
|
|
223
|
+
module.exports.start = function() {
|
|
224
|
+
wasm.start();
|
|
225
|
+
};
|
|
226
|
+
|
|
227
227
|
function takeFromExternrefTable0(idx) {
|
|
228
228
|
const value = wasm.__wbindgen_export_4.get(idx);
|
|
229
229
|
wasm.__externref_table_dealloc(idx);
|
|
@@ -434,8 +434,11 @@ class RawFlock {
|
|
|
434
434
|
/**
|
|
435
435
|
* Returns the inclusive version vector for this flock.
|
|
436
436
|
*
|
|
437
|
-
*
|
|
438
|
-
*
|
|
437
|
+
* This vector tracks max seen clocks per peer for the current process
|
|
438
|
+
* lifetime (open/import/local writes), including peers that may no longer
|
|
439
|
+
* own visible entries.
|
|
440
|
+
*
|
|
441
|
+
* Use this vector for completeness checks, not incremental export baselines.
|
|
439
442
|
*
|
|
440
443
|
* # Errors
|
|
441
444
|
*
|
|
@@ -621,8 +624,10 @@ class RawFlock {
|
|
|
621
624
|
/**
|
|
622
625
|
* Returns the exclusive version vector for this flock.
|
|
623
626
|
*
|
|
624
|
-
*
|
|
625
|
-
*
|
|
627
|
+
* This vector only includes peers that currently own at least one visible
|
|
628
|
+
* entry (excluding tombstones and shadowed entries).
|
|
629
|
+
*
|
|
630
|
+
* Use this vector as the baseline for incremental export/replication.
|
|
626
631
|
*
|
|
627
632
|
* # Errors
|
|
628
633
|
*
|
|
Binary file
|
package/nodejs/index.d.ts
CHANGED
|
@@ -156,18 +156,23 @@ export declare class Flock {
|
|
|
156
156
|
getEntry(key: KeyPart[]): EntryInfo | undefined;
|
|
157
157
|
merge(other: Flock): void;
|
|
158
158
|
/**
|
|
159
|
-
* Returns the exclusive version vector
|
|
160
|
-
*
|
|
161
|
-
*
|
|
159
|
+
* Returns the exclusive/visible version vector.
|
|
160
|
+
*
|
|
161
|
+
* Only peers that currently own at least one visible entry are included.
|
|
162
|
+
* This vector is consistent with current visible state and is the correct
|
|
163
|
+
* baseline for incremental export/replication.
|
|
162
164
|
*
|
|
163
165
|
* Use this version when sending to other peers for incremental sync.
|
|
164
166
|
*/
|
|
165
167
|
version(): VersionVector;
|
|
166
168
|
/**
|
|
167
|
-
* Returns the inclusive version vector
|
|
168
|
-
*
|
|
169
|
+
* Returns the inclusive/max-seen version vector.
|
|
170
|
+
*
|
|
171
|
+
* Tracks max seen clocks per peer for this process lifetime
|
|
172
|
+
* (open/import/local writes), including peers that may no longer own visible
|
|
173
|
+
* entries.
|
|
169
174
|
*
|
|
170
|
-
* Use this version
|
|
175
|
+
* Use this version for completeness checks, not incremental export baselines.
|
|
171
176
|
*/
|
|
172
177
|
inclusiveVersion(): VersionVector;
|
|
173
178
|
private exportJsonInternal;
|
package/nodejs/index.js
CHANGED
|
@@ -655,9 +655,11 @@ class Flock {
|
|
|
655
655
|
void this.inner.merge(other.inner);
|
|
656
656
|
}
|
|
657
657
|
/**
|
|
658
|
-
* Returns the exclusive version vector
|
|
659
|
-
*
|
|
660
|
-
*
|
|
658
|
+
* Returns the exclusive/visible version vector.
|
|
659
|
+
*
|
|
660
|
+
* Only peers that currently own at least one visible entry are included.
|
|
661
|
+
* This vector is consistent with current visible state and is the correct
|
|
662
|
+
* baseline for incremental export/replication.
|
|
661
663
|
*
|
|
662
664
|
* Use this version when sending to other peers for incremental sync.
|
|
663
665
|
*/
|
|
@@ -665,10 +667,13 @@ class Flock {
|
|
|
665
667
|
return decodeVersionVectorFromRaw(this.inner.version());
|
|
666
668
|
}
|
|
667
669
|
/**
|
|
668
|
-
* Returns the inclusive version vector
|
|
669
|
-
*
|
|
670
|
+
* Returns the inclusive/max-seen version vector.
|
|
671
|
+
*
|
|
672
|
+
* Tracks max seen clocks per peer for this process lifetime
|
|
673
|
+
* (open/import/local writes), including peers that may no longer own visible
|
|
674
|
+
* entries.
|
|
670
675
|
*
|
|
671
|
-
* Use this version
|
|
676
|
+
* Use this version for completeness checks, not incremental export baselines.
|
|
672
677
|
*/
|
|
673
678
|
inclusiveVersion() {
|
|
674
679
|
return decodeVersionVectorFromRaw(this.inner.inclusiveVersion());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loro-dev/flock-wasm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "WASM bindings for flock-rs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^22.0.0",
|
|
32
32
|
"typescript": "^5.9.0",
|
|
33
|
+
"vite-plugin-wasm": "^3.5.0",
|
|
33
34
|
"vitest": "^3.2.4"
|
|
34
35
|
},
|
|
35
36
|
"license": "AGPL-3.0-only",
|
package/web/flock_wasm.d.ts
CHANGED
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Initializes the WASM module.
|
|
5
|
-
*
|
|
6
|
-
* This function is automatically called when the WASM module is loaded.
|
|
7
|
-
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
8
|
-
*/
|
|
9
|
-
export function start(): void;
|
|
10
3
|
/**
|
|
11
4
|
* Drains the pending callback queue, invoking all enqueued callbacks.
|
|
12
5
|
*
|
|
@@ -17,6 +10,13 @@ export function start(): void;
|
|
|
17
10
|
* the error is propagated to JavaScript after the current batch completes.
|
|
18
11
|
*/
|
|
19
12
|
export function callPendingEvents(): void;
|
|
13
|
+
/**
|
|
14
|
+
* Initializes the WASM module.
|
|
15
|
+
*
|
|
16
|
+
* This function is automatically called when the WASM module is loaded.
|
|
17
|
+
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
18
|
+
*/
|
|
19
|
+
export function start(): void;
|
|
20
20
|
/**
|
|
21
21
|
* The main WASM-exposed flock instance.
|
|
22
22
|
*
|
|
@@ -120,8 +120,11 @@ export class RawFlock {
|
|
|
120
120
|
/**
|
|
121
121
|
* Returns the inclusive version vector for this flock.
|
|
122
122
|
*
|
|
123
|
-
*
|
|
124
|
-
*
|
|
123
|
+
* This vector tracks max seen clocks per peer for the current process
|
|
124
|
+
* lifetime (open/import/local writes), including peers that may no longer
|
|
125
|
+
* own visible entries.
|
|
126
|
+
*
|
|
127
|
+
* Use this vector for completeness checks, not incremental export baselines.
|
|
125
128
|
*
|
|
126
129
|
* # Errors
|
|
127
130
|
*
|
|
@@ -231,8 +234,10 @@ export class RawFlock {
|
|
|
231
234
|
/**
|
|
232
235
|
* Returns the exclusive version vector for this flock.
|
|
233
236
|
*
|
|
234
|
-
*
|
|
235
|
-
*
|
|
237
|
+
* This vector only includes peers that currently own at least one visible
|
|
238
|
+
* entry (excluding tombstones and shadowed entries).
|
|
239
|
+
*
|
|
240
|
+
* Use this vector as the baseline for incremental export/replication.
|
|
236
241
|
*
|
|
237
242
|
* # Errors
|
|
238
243
|
*
|
package/web/flock_wasm.js
CHANGED
|
@@ -197,16 +197,6 @@ function debugString(val) {
|
|
|
197
197
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
|
198
198
|
return className;
|
|
199
199
|
}
|
|
200
|
-
/**
|
|
201
|
-
* Initializes the WASM module.
|
|
202
|
-
*
|
|
203
|
-
* This function is automatically called when the WASM module is loaded.
|
|
204
|
-
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
205
|
-
*/
|
|
206
|
-
export function start() {
|
|
207
|
-
wasm.start();
|
|
208
|
-
}
|
|
209
|
-
|
|
210
200
|
/**
|
|
211
201
|
* Drains the pending callback queue, invoking all enqueued callbacks.
|
|
212
202
|
*
|
|
@@ -220,6 +210,16 @@ export function callPendingEvents() {
|
|
|
220
210
|
wasm.callPendingEvents();
|
|
221
211
|
}
|
|
222
212
|
|
|
213
|
+
/**
|
|
214
|
+
* Initializes the WASM module.
|
|
215
|
+
*
|
|
216
|
+
* This function is automatically called when the WASM module is loaded.
|
|
217
|
+
* It sets up the panic hook to route Rust panics to the JavaScript console.
|
|
218
|
+
*/
|
|
219
|
+
export function start() {
|
|
220
|
+
wasm.start();
|
|
221
|
+
}
|
|
222
|
+
|
|
223
223
|
function takeFromExternrefTable0(idx) {
|
|
224
224
|
const value = wasm.__wbindgen_export_4.get(idx);
|
|
225
225
|
wasm.__externref_table_dealloc(idx);
|
|
@@ -430,8 +430,11 @@ export class RawFlock {
|
|
|
430
430
|
/**
|
|
431
431
|
* Returns the inclusive version vector for this flock.
|
|
432
432
|
*
|
|
433
|
-
*
|
|
434
|
-
*
|
|
433
|
+
* This vector tracks max seen clocks per peer for the current process
|
|
434
|
+
* lifetime (open/import/local writes), including peers that may no longer
|
|
435
|
+
* own visible entries.
|
|
436
|
+
*
|
|
437
|
+
* Use this vector for completeness checks, not incremental export baselines.
|
|
435
438
|
*
|
|
436
439
|
* # Errors
|
|
437
440
|
*
|
|
@@ -617,8 +620,10 @@ export class RawFlock {
|
|
|
617
620
|
/**
|
|
618
621
|
* Returns the exclusive version vector for this flock.
|
|
619
622
|
*
|
|
620
|
-
*
|
|
621
|
-
*
|
|
623
|
+
* This vector only includes peers that currently own at least one visible
|
|
624
|
+
* entry (excluding tombstones and shadowed entries).
|
|
625
|
+
*
|
|
626
|
+
* Use this vector as the baseline for incremental export/replication.
|
|
622
627
|
*
|
|
623
628
|
* # Errors
|
|
624
629
|
*
|
package/web/flock_wasm_bg.wasm
CHANGED
|
Binary file
|
package/web/index.d.ts
CHANGED
|
@@ -156,18 +156,23 @@ export declare class Flock {
|
|
|
156
156
|
getEntry(key: KeyPart[]): EntryInfo | undefined;
|
|
157
157
|
merge(other: Flock): void;
|
|
158
158
|
/**
|
|
159
|
-
* Returns the exclusive version vector
|
|
160
|
-
*
|
|
161
|
-
*
|
|
159
|
+
* Returns the exclusive/visible version vector.
|
|
160
|
+
*
|
|
161
|
+
* Only peers that currently own at least one visible entry are included.
|
|
162
|
+
* This vector is consistent with current visible state and is the correct
|
|
163
|
+
* baseline for incremental export/replication.
|
|
162
164
|
*
|
|
163
165
|
* Use this version when sending to other peers for incremental sync.
|
|
164
166
|
*/
|
|
165
167
|
version(): VersionVector;
|
|
166
168
|
/**
|
|
167
|
-
* Returns the inclusive version vector
|
|
168
|
-
*
|
|
169
|
+
* Returns the inclusive/max-seen version vector.
|
|
170
|
+
*
|
|
171
|
+
* Tracks max seen clocks per peer for this process lifetime
|
|
172
|
+
* (open/import/local writes), including peers that may no longer own visible
|
|
173
|
+
* entries.
|
|
169
174
|
*
|
|
170
|
-
* Use this version
|
|
175
|
+
* Use this version for completeness checks, not incremental export baselines.
|
|
171
176
|
*/
|
|
172
177
|
inclusiveVersion(): VersionVector;
|
|
173
178
|
private exportJsonInternal;
|
package/web/index.js
CHANGED
|
@@ -650,9 +650,11 @@ export class Flock {
|
|
|
650
650
|
void this.inner.merge(other.inner);
|
|
651
651
|
}
|
|
652
652
|
/**
|
|
653
|
-
* Returns the exclusive version vector
|
|
654
|
-
*
|
|
655
|
-
*
|
|
653
|
+
* Returns the exclusive/visible version vector.
|
|
654
|
+
*
|
|
655
|
+
* Only peers that currently own at least one visible entry are included.
|
|
656
|
+
* This vector is consistent with current visible state and is the correct
|
|
657
|
+
* baseline for incremental export/replication.
|
|
656
658
|
*
|
|
657
659
|
* Use this version when sending to other peers for incremental sync.
|
|
658
660
|
*/
|
|
@@ -660,10 +662,13 @@ export class Flock {
|
|
|
660
662
|
return decodeVersionVectorFromRaw(this.inner.version());
|
|
661
663
|
}
|
|
662
664
|
/**
|
|
663
|
-
* Returns the inclusive version vector
|
|
664
|
-
*
|
|
665
|
+
* Returns the inclusive/max-seen version vector.
|
|
666
|
+
*
|
|
667
|
+
* Tracks max seen clocks per peer for this process lifetime
|
|
668
|
+
* (open/import/local writes), including peers that may no longer own visible
|
|
669
|
+
* entries.
|
|
665
670
|
*
|
|
666
|
-
* Use this version
|
|
671
|
+
* Use this version for completeness checks, not incremental export baselines.
|
|
667
672
|
*/
|
|
668
673
|
inclusiveVersion() {
|
|
669
674
|
return decodeVersionVectorFromRaw(this.inner.inclusiveVersion());
|