@fluidframework/runtime-definitions 2.0.0-dev.7.4.0.217212 → 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.
- package/CHANGELOG.md +12 -0
- package/api-extractor.json +0 -3
- package/api-report/runtime-definitions.api.md +66 -99
- package/dist/attribution.d.ts +4 -4
- package/dist/attribution.js.map +1 -1
- package/dist/dataStoreContext.d.ts +13 -13
- package/dist/dataStoreContext.d.ts.map +1 -1
- package/dist/dataStoreContext.js +2 -2
- package/dist/dataStoreContext.js.map +1 -1
- package/dist/dataStoreFactory.d.ts +3 -3
- package/dist/dataStoreFactory.js +1 -1
- package/dist/dataStoreFactory.js.map +1 -1
- package/dist/dataStoreRegistry.d.ts +6 -6
- package/dist/dataStoreRegistry.js +1 -1
- package/dist/dataStoreRegistry.js.map +1 -1
- package/dist/garbageCollection.d.ts +2 -2
- package/dist/garbageCollection.js.map +1 -1
- package/dist/index.d.ts +49 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -2
- package/dist/index.js.map +1 -1
- package/dist/protocol.d.ts +1 -1
- package/dist/protocol.js.map +1 -1
- package/dist/runtime-definitions-alpha.d.ts +939 -93
- package/dist/runtime-definitions-beta.d.ts +31 -0
- package/dist/runtime-definitions-public.d.ts +31 -0
- package/dist/runtime-definitions-untrimmed.d.ts +66 -248
- package/dist/summary.d.ts +13 -13
- package/dist/summary.js +1 -1
- package/dist/summary.js.map +1 -1
- package/lib/runtime-definitions-alpha.d.ts +939 -93
- package/lib/runtime-definitions-beta.d.ts +31 -0
- package/lib/runtime-definitions-public.d.ts +31 -0
- package/lib/runtime-definitions-untrimmed.d.ts +66 -248
- package/package.json +7 -4
- package/src/attribution.ts +4 -4
- package/src/dataStoreContext.ts +13 -13
- package/src/dataStoreFactory.ts +3 -3
- package/src/dataStoreRegistry.ts +6 -6
- package/src/garbageCollection.ts +2 -2
- package/src/index.ts +46 -6
- package/src/protocol.ts +1 -1
- package/src/summary.ts +13 -13
- package/dist/id-compressor/idCompressor.d.ts +0 -139
- package/dist/id-compressor/idCompressor.d.ts.map +0 -1
- package/dist/id-compressor/idCompressor.js +0 -7
- package/dist/id-compressor/idCompressor.js.map +0 -1
- package/dist/id-compressor/identifiers.d.ts +0 -40
- package/dist/id-compressor/identifiers.d.ts.map +0 -1
- package/dist/id-compressor/identifiers.js +0 -7
- package/dist/id-compressor/identifiers.js.map +0 -1
- package/dist/id-compressor/index.d.ts +0 -8
- package/dist/id-compressor/index.d.ts.map +0 -1
- package/dist/id-compressor/index.js +0 -10
- package/dist/id-compressor/index.js.map +0 -1
- package/dist/id-compressor/persisted-types/0.0.1.d.ts +0 -46
- package/dist/id-compressor/persisted-types/0.0.1.d.ts.map +0 -1
- package/dist/id-compressor/persisted-types/0.0.1.js +0 -14
- package/dist/id-compressor/persisted-types/0.0.1.js.map +0 -1
- package/dist/id-compressor/persisted-types/index.d.ts +0 -6
- package/dist/id-compressor/persisted-types/index.d.ts.map +0 -1
- package/dist/id-compressor/persisted-types/index.js +0 -10
- package/dist/id-compressor/persisted-types/index.js.map +0 -1
- package/src/id-compressor/idCompressor.ts +0 -155
- package/src/id-compressor/identifiers.ts +0 -39
- package/src/id-compressor/index.ts +0 -16
- package/src/id-compressor/persisted-types/0.0.1.ts +0 -51
- package/src/id-compressor/persisted-types/README.md +0 -3
- package/src/id-compressor/persisted-types/index.ts +0 -12
|
@@ -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 */
|