@fluidframework/replay-driver 2.0.0-dev-rc.5.0.0.265721 → 2.0.0-dev-rc.5.0.0.267932
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/api-report/replay-driver.api.md +24 -20
- package/dist/emptyDeltaStorageService.d.ts +1 -1
- package/dist/emptyDeltaStorageService.d.ts.map +1 -1
- package/dist/emptyDeltaStorageService.js.map +1 -1
- package/dist/replayController.d.ts +8 -8
- package/dist/replayController.d.ts.map +1 -1
- package/dist/replayController.js.map +1 -1
- package/dist/replayDocumentDeltaConnection.d.ts +2 -2
- package/dist/replayDocumentDeltaConnection.d.ts.map +1 -1
- package/dist/replayDocumentDeltaConnection.js +2 -2
- package/dist/replayDocumentDeltaConnection.js.map +1 -1
- package/dist/replayDocumentService.d.ts +9 -9
- package/dist/replayDocumentService.d.ts.map +1 -1
- package/dist/replayDocumentService.js.map +1 -1
- package/dist/replayDocumentServiceFactory.d.ts +1 -1
- package/dist/replayDocumentServiceFactory.d.ts.map +1 -1
- package/dist/replayDocumentServiceFactory.js.map +1 -1
- package/dist/storageImplementations.d.ts +2 -2
- package/dist/storageImplementations.d.ts.map +1 -1
- package/dist/storageImplementations.js.map +1 -1
- package/lib/emptyDeltaStorageService.d.ts +1 -1
- package/lib/emptyDeltaStorageService.d.ts.map +1 -1
- package/lib/emptyDeltaStorageService.js.map +1 -1
- package/lib/replayController.d.ts +8 -8
- package/lib/replayController.d.ts.map +1 -1
- package/lib/replayController.js.map +1 -1
- package/lib/replayDocumentDeltaConnection.d.ts +2 -2
- package/lib/replayDocumentDeltaConnection.d.ts.map +1 -1
- package/lib/replayDocumentDeltaConnection.js +1 -1
- package/lib/replayDocumentDeltaConnection.js.map +1 -1
- package/lib/replayDocumentService.d.ts +9 -9
- package/lib/replayDocumentService.d.ts.map +1 -1
- package/lib/replayDocumentService.js.map +1 -1
- package/lib/replayDocumentServiceFactory.d.ts +1 -1
- package/lib/replayDocumentServiceFactory.d.ts.map +1 -1
- package/lib/replayDocumentServiceFactory.js.map +1 -1
- package/lib/storageImplementations.d.ts +2 -2
- package/lib/storageImplementations.d.ts.map +1 -1
- package/lib/storageImplementations.js.map +1 -1
- package/lib/tsdoc-metadata.json +1 -1
- package/package.json +9 -10
- package/src/emptyDeltaStorageService.ts +1 -1
- package/src/replayController.ts +15 -8
- package/src/replayDocumentDeltaConnection.ts +6 -6
- package/src/replayDocumentService.ts +19 -12
- package/src/replayDocumentServiceFactory.ts +1 -1
- package/src/storageImplementations.ts +3 -6
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { ITelemetryBaseLogger } from "@fluidframework/core-interfaces";
|
|
7
|
+
import { ISummaryTree } from "@fluidframework/driver-definitions";
|
|
7
8
|
import {
|
|
8
9
|
IDocumentService,
|
|
9
10
|
IDocumentServiceFactory,
|
|
10
11
|
IResolvedUrl,
|
|
11
12
|
} from "@fluidframework/driver-definitions/internal";
|
|
12
|
-
import { ISummaryTree } from "@fluidframework/protocol-definitions";
|
|
13
13
|
import { createChildLogger } from "@fluidframework/telemetry-utils/internal";
|
|
14
14
|
|
|
15
15
|
import { ReplayController } from "./replayController.js";
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
import { TypedEventEmitter } from "@fluid-internal/client-utils";
|
|
7
7
|
import { assert } from "@fluidframework/core-utils/internal";
|
|
8
|
+
import { IClient, ISummaryTree } from "@fluidframework/driver-definitions";
|
|
8
9
|
import {
|
|
9
10
|
IDocumentDeltaConnection,
|
|
10
11
|
IDocumentDeltaStorageService,
|
|
@@ -13,15 +14,11 @@ import {
|
|
|
13
14
|
IDocumentServiceFactory,
|
|
14
15
|
IDocumentStorageService,
|
|
15
16
|
IResolvedUrl,
|
|
16
|
-
} from "@fluidframework/driver-definitions/internal";
|
|
17
|
-
import { buildSnapshotTree } from "@fluidframework/driver-utils/internal";
|
|
18
|
-
import {
|
|
19
|
-
IClient,
|
|
20
17
|
ISnapshotTree,
|
|
21
|
-
ISummaryTree,
|
|
22
18
|
ITree,
|
|
23
19
|
IVersion,
|
|
24
|
-
} from "@fluidframework/
|
|
20
|
+
} from "@fluidframework/driver-definitions/internal";
|
|
21
|
+
import { buildSnapshotTree } from "@fluidframework/driver-utils/internal";
|
|
25
22
|
import { ITelemetryLoggerExt } from "@fluidframework/telemetry-utils/internal";
|
|
26
23
|
|
|
27
24
|
import { EmptyDeltaStorageService } from "./emptyDeltaStorageService.js";
|