@fluidframework/runtime-definitions 2.0.0-dev.7.4.0.217884 → 2.0.0-dev.7.4.0.221926

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.
Files changed (50) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/api-extractor.json +0 -3
  3. package/api-report/runtime-definitions.api.md +29 -62
  4. package/dist/attribution.d.ts +4 -4
  5. package/dist/attribution.js.map +1 -1
  6. package/dist/dataStoreContext.d.ts +1 -1
  7. package/dist/dataStoreContext.d.ts.map +1 -1
  8. package/dist/dataStoreContext.js.map +1 -1
  9. package/dist/index.d.ts +49 -1
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +11 -2
  12. package/dist/index.js.map +1 -1
  13. package/dist/runtime-definitions-alpha.d.ts +73 -203
  14. package/dist/runtime-definitions-beta.d.ts +31 -0
  15. package/dist/runtime-definitions-public.d.ts +31 -0
  16. package/dist/runtime-definitions-untrimmed.d.ts +29 -211
  17. package/lib/runtime-definitions-alpha.d.ts +73 -203
  18. package/lib/runtime-definitions-beta.d.ts +31 -0
  19. package/lib/runtime-definitions-public.d.ts +31 -0
  20. package/lib/runtime-definitions-untrimmed.d.ts +29 -211
  21. package/package.json +7 -4
  22. package/src/attribution.ts +4 -4
  23. package/src/dataStoreContext.ts +1 -1
  24. package/src/index.ts +46 -6
  25. package/dist/id-compressor/idCompressor.d.ts +0 -139
  26. package/dist/id-compressor/idCompressor.d.ts.map +0 -1
  27. package/dist/id-compressor/idCompressor.js +0 -7
  28. package/dist/id-compressor/idCompressor.js.map +0 -1
  29. package/dist/id-compressor/identifiers.d.ts +0 -40
  30. package/dist/id-compressor/identifiers.d.ts.map +0 -1
  31. package/dist/id-compressor/identifiers.js +0 -7
  32. package/dist/id-compressor/identifiers.js.map +0 -1
  33. package/dist/id-compressor/index.d.ts +0 -8
  34. package/dist/id-compressor/index.d.ts.map +0 -1
  35. package/dist/id-compressor/index.js +0 -10
  36. package/dist/id-compressor/index.js.map +0 -1
  37. package/dist/id-compressor/persisted-types/0.0.1.d.ts +0 -46
  38. package/dist/id-compressor/persisted-types/0.0.1.d.ts.map +0 -1
  39. package/dist/id-compressor/persisted-types/0.0.1.js +0 -14
  40. package/dist/id-compressor/persisted-types/0.0.1.js.map +0 -1
  41. package/dist/id-compressor/persisted-types/index.d.ts +0 -6
  42. package/dist/id-compressor/persisted-types/index.d.ts.map +0 -1
  43. package/dist/id-compressor/persisted-types/index.js +0 -10
  44. package/dist/id-compressor/persisted-types/index.js.map +0 -1
  45. package/src/id-compressor/idCompressor.ts +0 -155
  46. package/src/id-compressor/identifiers.ts +0 -39
  47. package/src/id-compressor/index.ts +0 -16
  48. package/src/id-compressor/persisted-types/0.0.1.ts +0 -51
  49. package/src/id-compressor/persisted-types/README.md +0 -3
  50. package/src/id-compressor/persisted-types/index.ts +0 -12
@@ -2,6 +2,8 @@ import { AttachState } from '@fluidframework/container-definitions';
2
2
  import { FluidObject } from '@fluidframework/core-interfaces';
3
3
  import { IAudience } from '@fluidframework/container-definitions';
4
4
  import { IClientDetails } from '@fluidframework/protocol-definitions';
5
+ import { IdCompressor } from '@fluidframework/id-compressor';
6
+ import { IdCreationRange } from '@fluidframework/id-compressor';
5
7
  import { IDeltaManager } from '@fluidframework/container-definitions';
6
8
  import { IDisposable } from '@fluidframework/core-interfaces';
7
9
  import { IDocumentMessage } from '@fluidframework/protocol-definitions';
@@ -11,7 +13,10 @@ import { IEventProvider } from '@fluidframework/core-interfaces';
11
13
  import { IFluidHandle } from '@fluidframework/core-interfaces';
12
14
  import { IFluidHandleContext } from '@fluidframework/core-interfaces';
13
15
  import { IFluidRouter } from '@fluidframework/core-interfaces';
16
+ import { IIdCompressor } from '@fluidframework/id-compressor';
17
+ import { IIdCompressorCore } from '@fluidframework/id-compressor';
14
18
  import { ILoaderOptions } from '@fluidframework/container-definitions';
19
+ import { initialClusterCapacity } from '@fluidframework/id-compressor';
15
20
  import { IProvideFluidHandleContext } from '@fluidframework/core-interfaces';
16
21
  import { IQuorumClients } from '@fluidframework/protocol-definitions';
17
22
  import { IRequest } from '@fluidframework/core-interfaces';
@@ -23,6 +28,13 @@ import { ISummaryTree } from '@fluidframework/protocol-definitions';
23
28
  import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
24
29
  import { ITree } from '@fluidframework/protocol-definitions';
25
30
  import type { IUser } from '@fluidframework/protocol-definitions';
31
+ import { OpSpaceCompressedId } from '@fluidframework/id-compressor';
32
+ import { SerializedIdCompressor } from '@fluidframework/id-compressor';
33
+ import { SerializedIdCompressorWithNoSession } from '@fluidframework/id-compressor';
34
+ import { SerializedIdCompressorWithOngoingSession } from '@fluidframework/id-compressor';
35
+ import { SessionId } from '@fluidframework/id-compressor';
36
+ import { SessionSpaceCompressedId } from '@fluidframework/id-compressor';
37
+ import { StableId } from '@fluidframework/id-compressor';
26
38
  import { SummaryTree } from '@fluidframework/protocol-definitions';
27
39
  import { TelemetryEventPropertyType } from '@fluidframework/core-interfaces';
28
40
 
@@ -40,7 +52,11 @@ export declare type AliasResult = "Success" | "Conflict" | "AlreadyAliased";
40
52
 
41
53
  /* Excluded from this release type: AttributionInfo */
42
54
 
43
- /* Excluded from this release type: AttributionKey */
55
+ /**
56
+ * Can be indexed into the ContainerRuntime in order to retrieve {@link AttributionInfo}.
57
+ * @alpha
58
+ */
59
+ export declare type AttributionKey = OpAttributionKey | DetachedAttributionKey | LocalAttributionKey;
44
60
 
45
61
  /* Excluded from this release type: blobCountPropertyName */
46
62
 
@@ -77,7 +93,27 @@ export declare enum CreateSummarizerNodeSource {
77
93
  Local = 2
78
94
  }
79
95
 
80
- /* Excluded from this release type: DetachedAttributionKey */
96
+ /**
97
+ * AttributionKey associated with content that was inserted while the container was in a detached state.
98
+ *
99
+ * @remarks Retrieving an {@link AttributionInfo} from content associated with detached attribution keys
100
+ * is currently unsupported, as applications can effectively modify content anonymously while detached.
101
+ * The runtime has no mechanism for reliably obtaining the user. It would be reasonable to start supporting
102
+ * this functionality if the host provided additional context to their attributor or attach calls.
103
+ * @alpha
104
+ */
105
+ export declare interface DetachedAttributionKey {
106
+ type: "detached";
107
+ /**
108
+ * Arbitrary discriminator associated with content inserted while detached.
109
+ *
110
+ * @remarks For now, the runtime assumes all content created while detached is associated
111
+ * with the same user/timestamp.
112
+ * We could weaken this assumption in the future with further API support and
113
+ * allow arbitrary strings or numbers as part of this key.
114
+ */
115
+ id: 0;
116
+ }
81
117
 
82
118
  /**
83
119
  * A single registry entry that may be used to create data stores
@@ -246,19 +282,9 @@ export declare interface IDataStore {
246
282
  readonly IFluidRouter: IFluidRouter;
247
283
  }
248
284
 
249
- /**
250
- * Data describing a range of session-local IDs (from a remote or local session).
251
- *
252
- * A range is composed of local IDs that were generated.
253
- * @alpha
254
- */
255
- export declare interface IdCreationRange {
256
- readonly sessionId: SessionId;
257
- readonly ids?: {
258
- readonly firstGenCount: number;
259
- readonly count: number;
260
- };
261
- }
285
+ export { IdCompressor }
286
+
287
+ export { IdCreationRange }
262
288
 
263
289
  /* Excluded from this release type: IEnvelope */
264
290
 
@@ -581,139 +607,9 @@ export declare interface IGarbageCollectionDetailsBase {
581
607
  gcData?: IGarbageCollectionData;
582
608
  }
583
609
 
584
- /**
585
- * A distributed UUID generator and compressor.
586
- *
587
- * Generates arbitrary non-colliding v4 UUIDs, called stable IDs, for multiple "sessions" (which can be distributed across the network),
588
- * providing each session with the ability to map these UUIDs to `numbers`.
589
- *
590
- * A session is a unique identifier that denotes a single compressor. New IDs are created through a single compressor API
591
- * which should then sent in ranges to the server for total ordering (and are subsequently relayed to other clients). When a new ID is
592
- * created it is said to be created by the compressor's "local" session.
593
- *
594
- * For each stable ID created, two numeric IDs are provided by the compressor:
595
- *
596
- * 1. A session-local ID, which is stable for the lifetime of the session (which could be longer than that of the compressor object, as it may
597
- * be serialized for offline usage). Available as soon as the stable ID is allocated. These IDs are session-unique and are thus only
598
- * safely usable within the scope of the compressor that created it.
599
- *
600
- * 2. A final ID, which is stable across serialization and deserialization of an IdCompressor. Available as soon as the range containing
601
- * the corresponding session-local ID is totally ordered (via consensus) with respect to other sessions' allocations.
602
- * Final IDs are known to and publicly usable by any compressor that has received them.
603
- *
604
- * Compressors will allocate UUIDs in non-random ways to reduce entropy allowing for optimized storage of the data needed
605
- * to map the UUIDs to the numbers.
606
- *
607
- * The following invariants are upheld by IdCompressor:
608
- *
609
- * 1. Session-local IDs will always decompress to the same UUIDs for the lifetime of the session.
610
- *
611
- * 2. Final IDs will always decompress to the same UUIDs.
612
- *
613
- * 3. After a server-processed range of session-local IDs (from any session) is received by a compressor, any of those session-local IDs may be
614
- * translated by the compressor into the corresponding final ID. For any given session-local ID, this translation will always yield the
615
- * same final ID.
616
- *
617
- * 4. A UUID will always compress into the same session-local ID for the lifetime of the session.
618
- *
619
- * Session-local IDs are sent across the wire in efficiently-represented ranges. These ranges are created by querying the compressor, and *must*
620
- * be ordered (i.e. sent to the server) in the order they are created in order to preserve the above invariants.
621
- *
622
- * Session-local IDs can be used immediately after creation, but will eventually (after being sequenced) have a corresponding final ID. This
623
- * could make reasoning about equality of those two forms difficult. For example, if a cache is keyed off of a
624
- * session-local ID but is later queried using the final ID (which is semantically equal, as it decompresses to the same UUID/string) it will
625
- * produce a cache miss. In order to make using collections of both remotely created and locally created IDs easy, regardless of whether the
626
- * session-local IDs have been finalized, the compressor defines two "spaces" of IDs:
627
- *
628
- * 1. Session space: in this space, all IDs are normalized to their "most local form". This means that all IDs created by the local session
629
- * will be in local form, regardless of if they have been finalized. Remotely created IDs, which could only have been received after
630
- * finalizing and will never have a local form for the compressor, will of course be final IDs. This space should be used with consumer APIs
631
- * and data structures, as the lifetime of the IDs is guaranteed to be the same as the compressor object. Care must be taken to not use
632
- * these IDs across compressor objects, as the local IDs are specific to the compressor that created them.
633
- *
634
- * 2. Op space: in this space, all IDs are normalized to their "most final form". This means that all IDs except session-local IDs that
635
- * have not yet been finalized will be in final ID form. This space is useful for serialization in ops (e.g. references), as other clients
636
- * that receive them need not do any work to normalize them to *their* session-space in the common case. Note that IDs in op space may move
637
- * out of Op space over time, namely, when a session-local ID in this space becomes finalized, and thereafter has a "more final form".
638
- * Consequentially, it may be useful to restrict parameters of a persisted type to this space (to optimize perf), but it is potentially
639
- * incorrect to use this type for a runtime variable. This is an asymmetry that does not affect session space, as local IDs are always as
640
- * "local as possible".
641
- *
642
- * These two spaces naturally define a rule: consumers of compressed IDs should use session-space IDs, but serialized forms such as ops
643
- * should use op-space IDs.
644
- * @alpha
645
- */
646
- export declare interface IIdCompressor {
647
- localSessionId: SessionId;
648
- /**
649
- * Generates a new compressed ID or returns an existing one.
650
- * This should ONLY be called to generate IDs for local operations.
651
- * @returns A new local ID in session space.
652
- */
653
- generateCompressedId(): SessionSpaceCompressedId;
654
- /**
655
- * Normalizes a session space ID into op space.
656
- * @param id - the local ID to normalize.
657
- * @returns the ID in op space.
658
- */
659
- normalizeToOpSpace(id: SessionSpaceCompressedId): OpSpaceCompressedId;
660
- /**
661
- * Normalizes an ID into session space.
662
- * @param id - the ID to normalize. If it is a local ID, it is assumed to have been created by the session corresponding
663
- * to `sessionId`.
664
- * @param originSessionId - the session from which `id` originated
665
- * @returns the session-space ID corresponding to `id`, which might not have been a final ID if the client that created it had not yet
666
- * finalized it. This can occur when a client references an ID during the window of time in which it is waiting to receive the ordered
667
- * range that contained it from the server.
668
- */
669
- normalizeToSessionSpace(id: OpSpaceCompressedId, originSessionId: SessionId): SessionSpaceCompressedId;
670
- /**
671
- * Decompresses a previously compressed ID into a UUID.
672
- * @param id - the compressed ID to be decompressed.
673
- * @returns the UUID associated with the compressed ID. Fails if the ID was not generated by this compressor.
674
- */
675
- decompress(id: SessionSpaceCompressedId): StableId;
676
- /**
677
- * Recompresses a UUID.
678
- * @param uncompressed - the UUID to recompress.
679
- * @returns the `CompressedId` associated with `uncompressed`. Fails if it has not been previously compressed by this compressor.
680
- */
681
- recompress(uncompressed: StableId): SessionSpaceCompressedId;
682
- /**
683
- * Attempts to recompresses a UUID.
684
- * @param uncompressed - the UUID to recompress,
685
- * @returns the `CompressedId` associated with `uncompressed` or undefined if it has not been previously compressed by this compressor.
686
- */
687
- tryRecompress(uncompressed: StableId): SessionSpaceCompressedId | undefined;
688
- }
610
+ export { IIdCompressor }
689
611
 
690
- /**
691
- * @alpha
692
- */
693
- export declare interface IIdCompressorCore {
694
- /**
695
- * Returns a range of IDs created by this session in a format for sending to the server for finalizing.
696
- * The range will include all IDs generated via calls to `generateCompressedId` since the last time this method was called.
697
- * @returns the range of IDs, which may be empty. This range must be sent to the server for ordering before
698
- * it is finalized. Ranges must be sent to the server in the order that they are taken via calls to this method.
699
- */
700
- takeNextCreationRange(): IdCreationRange;
701
- /**
702
- * Finalizes the supplied range of IDs (which may be from either a remote or local session).
703
- * @param range - the range of session-local IDs to finalize.
704
- */
705
- finalizeCreationRange(range: IdCreationRange): void;
706
- /**
707
- * Returns a persistable form of the current state of this `IdCompressor` which can be rehydrated via `IdCompressor.deserialize()`.
708
- * This includes finalized state as well as un-finalized state and is therefore suitable for use in offline scenarios.
709
- */
710
- serialize(withSession: true): SerializedIdCompressorWithOngoingSession;
711
- /**
712
- * Returns a persistable form of the current state of this `IdCompressor` which can be rehydrated via `IdCompressor.deserialize()`.
713
- * This only includes finalized state and is therefore suitable for use in summaries.
714
- */
715
- serialize(withSession: false): SerializedIdCompressorWithNoSession;
716
- }
612
+ export { IIdCompressorCore }
717
613
 
718
614
  /**
719
615
  * Represents ISignalMessage with its type.
@@ -1009,7 +905,13 @@ export declare interface ITelemetryContext {
1009
905
  serialize(): string;
1010
906
  }
1011
907
 
1012
- /* Excluded from this release type: LocalAttributionKey */
908
+ /**
909
+ * AttributionKey associated with content that has been made locally but not yet acked by the server.
910
+ * @alpha
911
+ */
912
+ export declare interface LocalAttributionKey {
913
+ type: "local";
914
+ }
1013
915
 
1014
916
  /**
1015
917
  * An iterable identifier/registry entry pair list
@@ -1024,70 +926,38 @@ export declare type NamedFluidDataStoreRegistryEntries = Iterable<NamedFluidData
1024
926
  */
1025
927
  export declare type NamedFluidDataStoreRegistryEntry = [string, Promise<FluidDataStoreRegistryEntry>];
1026
928
 
1027
- /* Excluded from this release type: OpAttributionKey */
1028
-
1029
929
  /**
1030
- * A compressed ID that has been normalized into "op space".
1031
- * Serialized/persisted structures (e.g. ops) should use op-space IDs as a performance optimization, as they require less normalizing when
1032
- * received by a remote client due to the fact that op space for a given compressor is session space for all other compressors.
930
+ * AttributionKey representing a reference to some op in the op stream.
931
+ * Content associated with this key aligns with content modified by that op.
1033
932
  * @alpha
1034
933
  */
1035
- export declare type OpSpaceCompressedId = number & {
1036
- readonly OpNormalized: "9209432d-a959-4df7-b2ad-767ead4dbcae";
1037
- };
934
+ export declare interface OpAttributionKey {
935
+ /**
936
+ * The type of attribution this key corresponds to.
937
+ *
938
+ * Keys currently all represent op-based attribution, so have the form `{ type: "op", key: sequenceNumber }`.
939
+ * Thus, they can be used with an `OpStreamAttributor` to recover timestamp/user information.
940
+ */
941
+ type: "op";
942
+ /**
943
+ * The sequenceNumber of the op this attribution key is for.
944
+ */
945
+ seq: number;
946
+ }
1038
947
 
1039
- /**
1040
- * The serialized contents of an IdCompressor, suitable for persistence in a summary.
1041
- * @alpha
1042
- */
1043
- export declare type SerializedIdCompressor = string & {
1044
- readonly _serializedIdCompressor: "8c73c57c-1cf4-4278-8915-6444cb4f6af5";
1045
- };
948
+ export { OpSpaceCompressedId }
1046
949
 
1047
- /**
1048
- * The serialized contents of an IdCompressor, suitable for persistence in a summary.
1049
- * @alpha
1050
- */
1051
- export declare type SerializedIdCompressorWithNoSession = SerializedIdCompressor & {
1052
- readonly _noLocalState: "3aa2e1e8-cc28-4ea7-bc1a-a11dc3f26dfb";
1053
- };
950
+ export { SerializedIdCompressor }
1054
951
 
1055
- /**
1056
- * The serialized contents of an IdCompressor, suitable for persistence in a summary.
1057
- * @alpha
1058
- */
1059
- export declare type SerializedIdCompressorWithOngoingSession = SerializedIdCompressor & {
1060
- readonly _hasLocalState: "1281acae-6d14-47e7-bc92-71c8ee0819cb";
1061
- };
952
+ export { SerializedIdCompressorWithNoSession }
1062
953
 
1063
- /**
1064
- * A StableId which is suitable for use as a session identifier
1065
- * @alpha
1066
- */
1067
- export declare type SessionId = StableId & {
1068
- readonly SessionId: "4498f850-e14e-4be9-8db0-89ec00997e58";
1069
- };
954
+ export { SerializedIdCompressorWithOngoingSession }
1070
955
 
1071
- /**
1072
- * A compressed ID that has been normalized into "session space" (see `IdCompressor` for more).
1073
- * Consumer-facing APIs and data structures should use session-space IDs as their lifetime and equality is stable and tied to
1074
- * the scope of the session (i.e. compressor) that produced them.
1075
- * @alpha
1076
- */
1077
- export declare type SessionSpaceCompressedId = number & {
1078
- readonly SessionUnique: "cea55054-6b82-4cbf-ad19-1fa645ea3b3e";
1079
- };
956
+ export { SessionId }
1080
957
 
1081
- /**
1082
- * A version 4, variant 1 uuid (https://datatracker.ietf.org/doc/html/rfc4122).
1083
- * A 128-bit Universally Unique IDentifier. Represented here
1084
- * with a string of the form xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx,
1085
- * where x is a lowercase hex digit.
1086
- * @alpha
1087
- */
1088
- export declare type StableId = string & {
1089
- readonly StableId: "53172b0d-a3d5-41ea-bd75-b43839c97f5a";
1090
- };
958
+ export { SessionSpaceCompressedId }
959
+
960
+ export { StableId }
1091
961
 
1092
962
  /**
1093
963
  * @alpha
@@ -1,13 +1,42 @@
1
+ import { AttachState } from '@fluidframework/container-definitions';
2
+ import { FluidObject } from '@fluidframework/core-interfaces';
3
+ import { IAudience } from '@fluidframework/container-definitions';
1
4
  import { IClientDetails } from '@fluidframework/protocol-definitions';
5
+ import { IdCompressor } from '@fluidframework/id-compressor';
6
+ import { IdCreationRange } from '@fluidframework/id-compressor';
7
+ import { IDeltaManager } from '@fluidframework/container-definitions';
8
+ import { IDisposable } from '@fluidframework/core-interfaces';
2
9
  import { IDocumentMessage } from '@fluidframework/protocol-definitions';
10
+ import { IDocumentStorageService } from '@fluidframework/driver-definitions';
11
+ import { IEvent } from '@fluidframework/core-interfaces';
12
+ import { IEventProvider } from '@fluidframework/core-interfaces';
13
+ import { IFluidHandle } from '@fluidframework/core-interfaces';
14
+ import { IFluidHandleContext } from '@fluidframework/core-interfaces';
15
+ import { IFluidRouter } from '@fluidframework/core-interfaces';
16
+ import { IIdCompressor } from '@fluidframework/id-compressor';
17
+ import { IIdCompressorCore } from '@fluidframework/id-compressor';
18
+ import { ILoaderOptions } from '@fluidframework/container-definitions';
19
+ import { initialClusterCapacity } from '@fluidframework/id-compressor';
20
+ import { IProvideFluidHandleContext } from '@fluidframework/core-interfaces';
3
21
  import { IQuorumClients } from '@fluidframework/protocol-definitions';
22
+ import { IRequest } from '@fluidframework/core-interfaces';
23
+ import { IResponse } from '@fluidframework/core-interfaces';
4
24
  import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
5
25
  import { ISignalMessage } from '@fluidframework/protocol-definitions';
6
26
  import { ISnapshotTree } from '@fluidframework/protocol-definitions';
7
27
  import { ISummaryTree } from '@fluidframework/protocol-definitions';
28
+ import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
8
29
  import { ITree } from '@fluidframework/protocol-definitions';
9
30
  import type { IUser } from '@fluidframework/protocol-definitions';
31
+ import { OpSpaceCompressedId } from '@fluidframework/id-compressor';
32
+ import { SerializedIdCompressor } from '@fluidframework/id-compressor';
33
+ import { SerializedIdCompressorWithNoSession } from '@fluidframework/id-compressor';
34
+ import { SerializedIdCompressorWithOngoingSession } from '@fluidframework/id-compressor';
35
+ import { SessionId } from '@fluidframework/id-compressor';
36
+ import { SessionSpaceCompressedId } from '@fluidframework/id-compressor';
37
+ import { StableId } from '@fluidframework/id-compressor';
10
38
  import { SummaryTree } from '@fluidframework/protocol-definitions';
39
+ import { TelemetryEventPropertyType } from '@fluidframework/core-interfaces';
11
40
 
12
41
  /* Excluded from this release type: AliasResult */
13
42
 
@@ -55,6 +84,8 @@ import { SummaryTree } from '@fluidframework/protocol-definitions';
55
84
 
56
85
  /* Excluded from this release type: IDataStore */
57
86
 
87
+ /* Excluded from this release type: IdCompressor */
88
+
58
89
  /* Excluded from this release type: IdCreationRange */
59
90
 
60
91
  /* Excluded from this release type: IDeltaManager */
@@ -1,13 +1,42 @@
1
+ import { AttachState } from '@fluidframework/container-definitions';
2
+ import { FluidObject } from '@fluidframework/core-interfaces';
3
+ import { IAudience } from '@fluidframework/container-definitions';
1
4
  import { IClientDetails } from '@fluidframework/protocol-definitions';
5
+ import { IdCompressor } from '@fluidframework/id-compressor';
6
+ import { IdCreationRange } from '@fluidframework/id-compressor';
7
+ import { IDeltaManager } from '@fluidframework/container-definitions';
8
+ import { IDisposable } from '@fluidframework/core-interfaces';
2
9
  import { IDocumentMessage } from '@fluidframework/protocol-definitions';
10
+ import { IDocumentStorageService } from '@fluidframework/driver-definitions';
11
+ import { IEvent } from '@fluidframework/core-interfaces';
12
+ import { IEventProvider } from '@fluidframework/core-interfaces';
13
+ import { IFluidHandle } from '@fluidframework/core-interfaces';
14
+ import { IFluidHandleContext } from '@fluidframework/core-interfaces';
15
+ import { IFluidRouter } from '@fluidframework/core-interfaces';
16
+ import { IIdCompressor } from '@fluidframework/id-compressor';
17
+ import { IIdCompressorCore } from '@fluidframework/id-compressor';
18
+ import { ILoaderOptions } from '@fluidframework/container-definitions';
19
+ import { initialClusterCapacity } from '@fluidframework/id-compressor';
20
+ import { IProvideFluidHandleContext } from '@fluidframework/core-interfaces';
3
21
  import { IQuorumClients } from '@fluidframework/protocol-definitions';
22
+ import { IRequest } from '@fluidframework/core-interfaces';
23
+ import { IResponse } from '@fluidframework/core-interfaces';
4
24
  import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
5
25
  import { ISignalMessage } from '@fluidframework/protocol-definitions';
6
26
  import { ISnapshotTree } from '@fluidframework/protocol-definitions';
7
27
  import { ISummaryTree } from '@fluidframework/protocol-definitions';
28
+ import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
8
29
  import { ITree } from '@fluidframework/protocol-definitions';
9
30
  import type { IUser } from '@fluidframework/protocol-definitions';
31
+ import { OpSpaceCompressedId } from '@fluidframework/id-compressor';
32
+ import { SerializedIdCompressor } from '@fluidframework/id-compressor';
33
+ import { SerializedIdCompressorWithNoSession } from '@fluidframework/id-compressor';
34
+ import { SerializedIdCompressorWithOngoingSession } from '@fluidframework/id-compressor';
35
+ import { SessionId } from '@fluidframework/id-compressor';
36
+ import { SessionSpaceCompressedId } from '@fluidframework/id-compressor';
37
+ import { StableId } from '@fluidframework/id-compressor';
10
38
  import { SummaryTree } from '@fluidframework/protocol-definitions';
39
+ import { TelemetryEventPropertyType } from '@fluidframework/core-interfaces';
11
40
 
12
41
  /* Excluded from this release type: AliasResult */
13
42
 
@@ -55,6 +84,8 @@ import { SummaryTree } from '@fluidframework/protocol-definitions';
55
84
 
56
85
  /* Excluded from this release type: IDataStore */
57
86
 
87
+ /* Excluded from this release type: IdCompressor */
88
+
58
89
  /* Excluded from this release type: IdCreationRange */
59
90
 
60
91
  /* Excluded from this release type: IDeltaManager */