@fluidframework/ordered-collection 2.0.0-dev-rc.4.0.0.261659 → 2.0.0-dev-rc.5.0.0.265721
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 +13 -0
- package/api-report/ordered-collection.api.md +18 -12
- package/dist/consensusOrderedCollection.d.ts +3 -4
- package/dist/consensusOrderedCollection.d.ts.map +1 -1
- package/dist/consensusOrderedCollection.js +1 -1
- package/dist/consensusOrderedCollection.js.map +1 -1
- package/dist/consensusOrderedCollectionFactory.d.ts +12 -1
- package/dist/consensusOrderedCollectionFactory.d.ts.map +1 -1
- package/dist/consensusOrderedCollectionFactory.js +9 -3
- package/dist/consensusOrderedCollectionFactory.js.map +1 -1
- package/dist/consensusQueue.d.ts +2 -16
- package/dist/consensusQueue.d.ts.map +1 -1
- package/dist/consensusQueue.js +3 -22
- package/dist/consensusQueue.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/interfaces.d.ts +2 -2
- package/dist/interfaces.d.ts.map +1 -1
- package/dist/interfaces.js.map +1 -1
- package/dist/legacy.d.ts +1 -0
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/consensusOrderedCollection.d.ts +3 -4
- package/lib/consensusOrderedCollection.d.ts.map +1 -1
- package/lib/consensusOrderedCollection.js +1 -1
- package/lib/consensusOrderedCollection.js.map +1 -1
- package/lib/consensusOrderedCollectionFactory.d.ts +12 -1
- package/lib/consensusOrderedCollectionFactory.d.ts.map +1 -1
- package/lib/consensusOrderedCollectionFactory.js +9 -3
- package/lib/consensusOrderedCollectionFactory.js.map +1 -1
- package/lib/consensusQueue.d.ts +2 -16
- package/lib/consensusQueue.d.ts.map +1 -1
- package/lib/consensusQueue.js +1 -20
- package/lib/consensusQueue.js.map +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/lib/interfaces.d.ts +2 -2
- package/lib/interfaces.d.ts.map +1 -1
- package/lib/interfaces.js.map +1 -1
- package/lib/legacy.d.ts +1 -0
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +17 -17
- package/src/consensusOrderedCollection.ts +5 -6
- package/src/consensusOrderedCollectionFactory.ts +18 -5
- package/src/consensusQueue.ts +2 -24
- package/src/index.ts +2 -2
- package/src/interfaces.ts +3 -3
- package/src/packageVersion.ts +1 -1
package/src/index.ts
CHANGED
|
@@ -12,7 +12,7 @@ export {
|
|
|
12
12
|
IOrderedCollection,
|
|
13
13
|
ISnapshotable,
|
|
14
14
|
} from "./interfaces.js";
|
|
15
|
-
export { ConsensusQueueFactory } from "./consensusOrderedCollectionFactory.js";
|
|
15
|
+
export { ConsensusQueueFactory, ConsensusQueue } from "./consensusOrderedCollectionFactory.js";
|
|
16
16
|
export { ConsensusOrderedCollection } from "./consensusOrderedCollection.js";
|
|
17
|
-
export {
|
|
17
|
+
export { ConsensusQueueClass } from "./consensusQueue.js";
|
|
18
18
|
export { acquireAndComplete, waitAcquireAndComplete } from "./testUtils.js";
|
package/src/interfaces.ts
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
import {
|
|
7
7
|
IChannelAttributes,
|
|
8
8
|
IChannelFactory,
|
|
9
|
-
IChannelServices,
|
|
10
9
|
IFluidDataStoreRuntime,
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
IChannelServices,
|
|
11
|
+
} from "@fluidframework/datastore-definitions/internal";
|
|
12
|
+
import { ISharedObject, ISharedObjectEvents } from "@fluidframework/shared-object-base/internal";
|
|
13
13
|
|
|
14
14
|
/**
|
|
15
15
|
* @alpha
|
package/src/packageVersion.ts
CHANGED