Skip to content

Commit 08d838d

Browse files
authored
test(client): remove @alpha tag from internal test code (#21446)
Never exported in a case that needs tagging.
1 parent 905e663 commit 08d838d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/runtime/id-compressor/src/test/testCommon.ts

-3
Original file line numberDiff line numberDiff 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
*/
2120
export 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
*/
3230
export 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
*/
4542
export type LocalCompressedId = number & {
4643
readonly LocalCompressedId: "6fccb42f-e2a4-4243-bd29-f13d12b9c6d1";

0 commit comments

Comments
 (0)