@livestore/common 0.3.0-dev.51 → 0.3.0-dev.53
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/dist/.tsbuildinfo +1 -1
- package/dist/devtools/devtools-messages-client-session.d.ts +21 -21
- package/dist/devtools/devtools-messages-common.d.ts +6 -6
- package/dist/devtools/devtools-messages-leader.d.ts +24 -24
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +4 -4
- package/src/version.ts +1 -1
- package/dist/schema/EventId.d.ts +0 -57
- package/dist/schema/EventId.d.ts.map +0 -1
- package/dist/schema/EventId.js +0 -76
- package/dist/schema/EventId.js.map +0 -1
- package/dist/schema/EventId.test.d.ts +0 -2
- package/dist/schema/EventId.test.d.ts.map +0 -1
- package/dist/schema/EventId.test.js +0 -11
- package/dist/schema/EventId.test.js.map +0 -1
- package/dist/schema/EventNumber.d.ts +0 -57
- package/dist/schema/EventNumber.d.ts.map +0 -1
- package/dist/schema/EventNumber.js +0 -82
- package/dist/schema/EventNumber.js.map +0 -1
- package/dist/schema/EventNumber.test.d.ts +0 -2
- package/dist/schema/EventNumber.test.d.ts.map +0 -1
- package/dist/schema/EventNumber.test.js +0 -11
- package/dist/schema/EventNumber.test.js.map +0 -1
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"EventId.test.js","sourceRoot":"","sources":["../../src/schema/EventId.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAA;AACzD,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAE/B,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAA;AAEtC,MAAM,CAAC,QAAQ,CAAC,aAAa,EAAE,GAAG,EAAE;IAClC,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE,GAAG,EAAE;QAC3B,MAAM,KAAK,GAAG,WAAW,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,CAAA;QACxD,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,CAAA;QACrF,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,CAAA;IACtF,CAAC,CAAC,CAAA;AACJ,CAAC,CAAC,CAAA"}
|
@@ -1,57 +0,0 @@
|
|
1
|
-
import { Brand, Schema } from '@livestore/utils/effect';
|
2
|
-
export type ClientEventSequenceNumber = Brand.Branded<number, 'ClientEventSequenceNumber'>;
|
3
|
-
export declare const localEventSequenceNumber: Brand.Brand.Constructor<ClientEventSequenceNumber>;
|
4
|
-
export declare const ClientEventSequenceNumber: Schema.BrandSchema<number & Brand.Brand<"ClientEventSequenceNumber">, number, never>;
|
5
|
-
export type GlobalEventSequenceNumber = Brand.Branded<number, 'GlobalEventSequenceNumber'>;
|
6
|
-
export declare const globalEventSequenceNumber: Brand.Brand.Constructor<GlobalEventSequenceNumber>;
|
7
|
-
export declare const GlobalEventSequenceNumber: Schema.BrandSchema<number & Brand.Brand<"GlobalEventSequenceNumber">, number, never>;
|
8
|
-
export declare const clientDefault: ClientEventSequenceNumber;
|
9
|
-
/**
|
10
|
-
* LiveStore event id value consisting of a globally unique event sequence number
|
11
|
-
* and a client sequence number.
|
12
|
-
*
|
13
|
-
* The client sequence number is only used for clientOnly events and starts from 0 for each global sequence number.
|
14
|
-
*/
|
15
|
-
export type EventSequenceNumber = {
|
16
|
-
global: GlobalEventSequenceNumber;
|
17
|
-
client: ClientEventSequenceNumber;
|
18
|
-
};
|
19
|
-
/**
|
20
|
-
* NOTE: Client mutation events with a non-0 client id, won't be synced to the sync backend.
|
21
|
-
*/
|
22
|
-
export declare const EventSequenceNumber: Schema.Struct<{
|
23
|
-
global: Schema.BrandSchema<number & Brand.Brand<"GlobalEventSequenceNumber">, number, never>;
|
24
|
-
/** Only increments for clientOnly events */
|
25
|
-
client: Schema.BrandSchema<number & Brand.Brand<"ClientEventSequenceNumber">, number, never>;
|
26
|
-
}>;
|
27
|
-
/**
|
28
|
-
* Compare two event ids i.e. checks if the first event id is less than the second.
|
29
|
-
*/
|
30
|
-
export declare const compare: (a: EventSequenceNumber, b: EventSequenceNumber) => number;
|
31
|
-
/**
|
32
|
-
* Convert an event id to a string representation.
|
33
|
-
*/
|
34
|
-
export declare const toString: (seqNum: EventSequenceNumber) => string;
|
35
|
-
/**
|
36
|
-
* Convert a string representation of an event id to an event id.
|
37
|
-
*/
|
38
|
-
export declare const fromString: (str: string) => EventSequenceNumber;
|
39
|
-
export declare const isEqual: (a: EventSequenceNumber, b: EventSequenceNumber) => boolean;
|
40
|
-
export type EventSequenceNumberPair = {
|
41
|
-
seqNum: EventSequenceNumber;
|
42
|
-
parentSeqNum: EventSequenceNumber;
|
43
|
-
};
|
44
|
-
export declare const ROOT: {
|
45
|
-
global: GlobalEventSequenceNumber;
|
46
|
-
client: ClientEventSequenceNumber;
|
47
|
-
};
|
48
|
-
export declare const isGreaterThan: (a: EventSequenceNumber, b: EventSequenceNumber) => boolean;
|
49
|
-
export declare const isGreaterThanOrEqual: (a: EventSequenceNumber, b: EventSequenceNumber) => boolean;
|
50
|
-
export declare const max: (a: EventSequenceNumber, b: EventSequenceNumber) => EventSequenceNumber;
|
51
|
-
export declare const diff: (a: EventSequenceNumber, b: EventSequenceNumber) => {
|
52
|
-
global: number;
|
53
|
-
client: number;
|
54
|
-
};
|
55
|
-
export declare const make: (seqNum: EventSequenceNumber | typeof EventSequenceNumber.Encoded) => EventSequenceNumber;
|
56
|
-
export declare const nextPair: (seqNum: EventSequenceNumber, isLocal: boolean) => EventSequenceNumberPair;
|
57
|
-
//# sourceMappingURL=EventNumber.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"EventNumber.d.ts","sourceRoot":"","sources":["../../src/schema/EventNumber.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAA;AAEvD,MAAM,MAAM,yBAAyB,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,2BAA2B,CAAC,CAAA;AAC1F,eAAO,MAAM,wBAAwB,oDAA6C,CAAA;AAClF,eAAO,MAAM,yBAAyB,sFAAyD,CAAA;AAE/F,MAAM,MAAM,yBAAyB,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,EAAE,2BAA2B,CAAC,CAAA;AAC1F,eAAO,MAAM,yBAAyB,oDAA6C,CAAA;AACnF,eAAO,MAAM,yBAAyB,sFAA0D,CAAA;AAEhG,eAAO,MAAM,aAAa,EAAe,yBAAyB,CAAA;AAElE;;;;;GAKG;AACH,MAAM,MAAM,mBAAmB,GAAG;IAAE,MAAM,EAAE,yBAAyB,CAAC;IAAC,MAAM,EAAE,yBAAyB,CAAA;CAAE,CAAA;AAO1G;;GAEG;AACH,eAAO,MAAM,mBAAmB;;IAE9B,4CAA4C;;EAQY,CAAA;AAE1D;;GAEG;AACH,eAAO,MAAM,OAAO,GAAI,GAAG,mBAAmB,EAAE,GAAG,mBAAmB,WAKrE,CAAA;AAED;;GAEG;AACH,eAAO,MAAM,QAAQ,GAAI,QAAQ,mBAAmB,WAC8B,CAAA;AAElF;;GAEG;AACH,eAAO,MAAM,UAAU,GAAI,KAAK,MAAM,KAAG,mBAMxC,CAAA;AAED,eAAO,MAAM,OAAO,GAAI,GAAG,mBAAmB,EAAE,GAAG,mBAAmB,YACtB,CAAA;AAEhD,MAAM,MAAM,uBAAuB,GAAG;IAAE,MAAM,EAAE,mBAAmB,CAAC;IAAC,YAAY,EAAE,mBAAmB,CAAA;CAAE,CAAA;AAExG,eAAO,MAAM,IAAI;YACK,yBAAyB;;CAEhB,CAAA;AAE/B,eAAO,MAAM,aAAa,GAAI,GAAG,mBAAmB,EAAE,GAAG,mBAAmB,YAE3E,CAAA;AAED,eAAO,MAAM,oBAAoB,GAAI,GAAG,mBAAmB,EAAE,GAAG,mBAAmB,YAElF,CAAA;AAED,eAAO,MAAM,GAAG,GAAI,GAAG,mBAAmB,EAAE,GAAG,mBAAmB,wBAEjE,CAAA;AAED,eAAO,MAAM,IAAI,GAAI,GAAG,mBAAmB,EAAE,GAAG,mBAAmB;;;CAKlE,CAAA;AAED,eAAO,MAAM,IAAI,GAAI,QAAQ,mBAAmB,GAAG,OAAO,mBAAmB,CAAC,OAAO,KAAG,mBAEvF,CAAA;AAED,eAAO,MAAM,QAAQ,GAAI,QAAQ,mBAAmB,EAAE,SAAS,OAAO,KAAG,uBAaxE,CAAA"}
|
@@ -1,82 +0,0 @@
|
|
1
|
-
import { Brand, Schema } from '@livestore/utils/effect';
|
2
|
-
export const localEventSequenceNumber = Brand.nominal();
|
3
|
-
export const ClientEventSequenceNumber = Schema.fromBrand(localEventSequenceNumber)(Schema.Int);
|
4
|
-
export const globalEventSequenceNumber = Brand.nominal();
|
5
|
-
export const GlobalEventSequenceNumber = Schema.fromBrand(globalEventSequenceNumber)(Schema.Int);
|
6
|
-
export const clientDefault = 0;
|
7
|
-
// export const EventSequenceNumber = Schema.Struct({})
|
8
|
-
// export const EventSequenceNumber = Schema.Struct({})
|
9
|
-
// export const ClientEventSequenceNumber = Schema.Struct({})
|
10
|
-
// export const GlobalEventSequenceNumber = Schema.Struct({})
|
11
|
-
/**
|
12
|
-
* NOTE: Client mutation events with a non-0 client id, won't be synced to the sync backend.
|
13
|
-
*/
|
14
|
-
export const EventSequenceNumber = Schema.Struct({
|
15
|
-
global: GlobalEventSequenceNumber,
|
16
|
-
/** Only increments for clientOnly events */
|
17
|
-
client: ClientEventSequenceNumber,
|
18
|
-
// TODO also provide a way to see "confirmation level" of event (e.g. confirmed by leader/sync backend)
|
19
|
-
// TODO: actually add this field
|
20
|
-
// Client only
|
21
|
-
// generation: Schema.Number.pipe(Schema.optional),
|
22
|
-
}).annotations({ title: 'LiveStore.EventSequenceNumber' });
|
23
|
-
/**
|
24
|
-
* Compare two event ids i.e. checks if the first event id is less than the second.
|
25
|
-
*/
|
26
|
-
export const compare = (a, b) => {
|
27
|
-
if (a.global !== b.global) {
|
28
|
-
return a.global - b.global;
|
29
|
-
}
|
30
|
-
return a.client - b.client;
|
31
|
-
};
|
32
|
-
/**
|
33
|
-
* Convert an event id to a string representation.
|
34
|
-
*/
|
35
|
-
export const toString = (seqNum) => seqNum.client === 0 ? `e${seqNum.global}` : `e${seqNum.global}+${seqNum.client}`;
|
36
|
-
/**
|
37
|
-
* Convert a string representation of an event id to an event id.
|
38
|
-
*/
|
39
|
-
export const fromString = (str) => {
|
40
|
-
const [global, client] = str.slice(1, -1).split(',').map(Number);
|
41
|
-
if (global === undefined || client === undefined) {
|
42
|
-
throw new Error('Invalid event id string');
|
43
|
-
}
|
44
|
-
return { global, client };
|
45
|
-
};
|
46
|
-
export const isEqual = (a, b) => a.global === b.global && a.client === b.client;
|
47
|
-
export const ROOT = {
|
48
|
-
global: 0,
|
49
|
-
client: clientDefault,
|
50
|
-
};
|
51
|
-
export const isGreaterThan = (a, b) => {
|
52
|
-
return a.global > b.global || (a.global === b.global && a.client > b.client);
|
53
|
-
};
|
54
|
-
export const isGreaterThanOrEqual = (a, b) => {
|
55
|
-
return a.global > b.global || (a.global === b.global && a.client >= b.client);
|
56
|
-
};
|
57
|
-
export const max = (a, b) => {
|
58
|
-
return a.global > b.global || (a.global === b.global && a.client > b.client) ? a : b;
|
59
|
-
};
|
60
|
-
export const diff = (a, b) => {
|
61
|
-
return {
|
62
|
-
global: a.global - b.global,
|
63
|
-
client: a.client - b.client,
|
64
|
-
};
|
65
|
-
};
|
66
|
-
export const make = (seqNum) => {
|
67
|
-
return Schema.is(EventSequenceNumber)(seqNum) ? seqNum : Schema.decodeSync(EventSequenceNumber)(seqNum);
|
68
|
-
};
|
69
|
-
export const nextPair = (seqNum, isLocal) => {
|
70
|
-
if (isLocal) {
|
71
|
-
return {
|
72
|
-
seqNum: { global: seqNum.global, client: (seqNum.client + 1) },
|
73
|
-
parentSeqNum: seqNum,
|
74
|
-
};
|
75
|
-
}
|
76
|
-
return {
|
77
|
-
seqNum: { global: (seqNum.global + 1), client: clientDefault },
|
78
|
-
// NOTE we always point to `client: 0` for non-clientOnly events
|
79
|
-
parentSeqNum: { global: seqNum.global, client: clientDefault },
|
80
|
-
};
|
81
|
-
};
|
82
|
-
//# sourceMappingURL=EventNumber.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"EventNumber.js","sourceRoot":"","sources":["../../src/schema/EventNumber.ts"],"names":[],"mappings":"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"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"EventNumber.test.d.ts","sourceRoot":"","sources":["../../src/schema/EventNumber.test.ts"],"names":[],"mappings":""}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { Vitest } from '@livestore/utils-dev/node-vitest';
|
2
|
-
import { expect } from 'vitest';
|
3
|
-
import { EventSequenceNumber } from './mod.js';
|
4
|
-
Vitest.describe('EventSequenceNumber', () => {
|
5
|
-
Vitest.test('nextPair', () => {
|
6
|
-
const e_0_0 = EventSequenceNumber.make({ global: 0, client: 0 });
|
7
|
-
expect(EventSequenceNumber.nextPair(e_0_0, false).seqNum).toStrictEqual({ global: 1, client: 0 });
|
8
|
-
expect(EventSequenceNumber.nextPair(e_0_0, true).seqNum).toStrictEqual({ global: 0, client: 1 });
|
9
|
-
});
|
10
|
-
});
|
11
|
-
//# sourceMappingURL=EventNumber.test.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"EventNumber.test.js","sourceRoot":"","sources":["../../src/schema/EventNumber.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAA;AACzD,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AAE/B,OAAO,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAA;AAE9C,MAAM,CAAC,QAAQ,CAAC,qBAAqB,EAAE,GAAG,EAAE;IAC1C,MAAM,CAAC,IAAI,CAAC,UAAU,EAAE,GAAG,EAAE;QAC3B,MAAM,KAAK,GAAG,mBAAmB,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,CAAA;QAChE,MAAM,CAAC,mBAAmB,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,CAAA;QACjG,MAAM,CAAC,mBAAmB,CAAC,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC,MAAM,CAAC,CAAC,aAAa,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,CAAA;IAClG,CAAC,CAAC,CAAA;AACJ,CAAC,CAAC,CAAA"}
|