File tree 1 file changed +0
-3
lines changed
packages/runtime/id-compressor/src/test
1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import {
16
16
/**
17
17
* An identifier (v4 UUID) that has been shortened by a distributed compression algorithm.
18
18
* Lacks a space (session/op), meaning its scope is the same as the space-specific ID from which it was derived.
19
- * @alpha
20
19
*/
21
20
export type CompressedId =
22
21
| SessionSpaceCompressedId
@@ -27,7 +26,6 @@ export type CompressedId =
27
26
/**
28
27
* A compressed ID that is stable and unique within the scope of network of compressors (i.e. a document).
29
28
* It can only be used/decompressed in the context of the originating document.
30
- * @alpha
31
29
*/
32
30
export type FinalCompressedId = number & {
33
31
readonly FinalCompressedId : "5d83d1e2-98b7-4e4e-a889-54c855cfa73d" ;
@@ -40,7 +38,6 @@ export type FinalCompressedId = number & {
40
38
* A compressed ID that is local to a session (can only be decompressed when paired with a SessionId).
41
39
* Internally, it should not be persisted outside a scope annotated with the originating SessionId in order to be unambiguous.
42
40
* If external persistence is needed (e.g. by a client), a StableId should be used instead.
43
- * @alpha
44
41
*/
45
42
export type LocalCompressedId = number & {
46
43
readonly LocalCompressedId : "6fccb42f-e2a4-4243-bd29-f13d12b9c6d1" ;
You can’t perform that action at this time.
0 commit comments