@fluidframework/runtime-definitions 2.0.0-internal.4.1.2 → 2.0.0-internal.4.2.0
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/dataStoreContext.d.ts +2 -0
- package/dist/dataStoreContext.d.ts.map +1 -1
- package/dist/dataStoreContext.js.map +1 -1
- package/dist/id-compressor/idCompressor.d.ts +154 -0
- package/dist/id-compressor/idCompressor.d.ts.map +1 -0
- package/dist/id-compressor/idCompressor.js +7 -0
- package/dist/id-compressor/idCompressor.js.map +1 -0
- package/dist/id-compressor/identifiers.d.ts +77 -0
- package/dist/id-compressor/identifiers.d.ts.map +1 -0
- package/dist/id-compressor/identifiers.js +7 -0
- package/dist/id-compressor/identifiers.js.map +1 -0
- package/dist/id-compressor/index.d.ts +8 -0
- package/dist/id-compressor/index.d.ts.map +1 -0
- package/dist/id-compressor/index.js +7 -0
- package/dist/id-compressor/index.js.map +1 -0
- package/dist/id-compressor/persisted-types/0.0.1.d.ts +162 -0
- package/dist/id-compressor/persisted-types/0.0.1.d.ts.map +1 -0
- package/dist/id-compressor/persisted-types/0.0.1.js +7 -0
- package/dist/id-compressor/persisted-types/0.0.1.js.map +1 -0
- package/dist/id-compressor/persisted-types/index.d.ts +6 -0
- package/dist/id-compressor/persisted-types/index.d.ts.map +1 -0
- package/dist/id-compressor/persisted-types/index.js +7 -0
- package/dist/id-compressor/persisted-types/index.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/dataStoreContext.ts +2 -0
- package/src/id-compressor/idCompressor.ts +179 -0
- package/src/id-compressor/identifiers.ts +83 -0
- package/src/id-compressor/index.ts +34 -0
- package/src/id-compressor/persisted-types/0.0.1.ts +191 -0
- package/src/id-compressor/persisted-types/README.md +3 -0
- package/src/id-compressor/persisted-types/index.ts +20 -0
- package/src/index.ts +26 -0
package/src/index.ts
CHANGED
|
@@ -69,3 +69,29 @@ export {
|
|
|
69
69
|
SummarizeInternalFn,
|
|
70
70
|
totalBlobSizePropertyName,
|
|
71
71
|
} from "./summary";
|
|
72
|
+
export {
|
|
73
|
+
IIdCompressorCore,
|
|
74
|
+
IIdCompressor,
|
|
75
|
+
SerializedIdCompressor,
|
|
76
|
+
SerializedIdCompressorWithOngoingSession,
|
|
77
|
+
SerializedIdCompressorWithNoSession,
|
|
78
|
+
SessionSpaceCompressedId,
|
|
79
|
+
OpSpaceCompressedId,
|
|
80
|
+
SessionId,
|
|
81
|
+
FinalCompressedId,
|
|
82
|
+
StableId,
|
|
83
|
+
UuidString,
|
|
84
|
+
CompressedId,
|
|
85
|
+
SessionUnique,
|
|
86
|
+
LocalCompressedId,
|
|
87
|
+
IdCreationRange,
|
|
88
|
+
VersionedSerializedIdCompressor,
|
|
89
|
+
SerializedCluster,
|
|
90
|
+
SerializedSessionData,
|
|
91
|
+
SerializedLocalState,
|
|
92
|
+
SerializedClusterOverrides,
|
|
93
|
+
SerializedLocalOverrides,
|
|
94
|
+
SerializedSessionIdNormalizer,
|
|
95
|
+
UnackedLocalId,
|
|
96
|
+
IdCreationRangeWithStashedState,
|
|
97
|
+
} from "./id-compressor";
|