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