@fluidframework/file-driver 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 +4 -0
- package/api-extractor.json +0 -3
- package/dist/file-driver-alpha.d.ts +3 -2
- package/dist/file-driver-beta.d.ts +14 -0
- package/dist/file-driver-public.d.ts +14 -0
- package/lib/file-driver-alpha.d.ts +3 -2
- package/lib/file-driver-beta.d.ts +14 -0
- package/lib/file-driver-public.d.ts +14 -0
- package/package.json +10 -8
package/CHANGELOG.md
CHANGED
package/api-extractor.json
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
|
|
3
3
|
"extends": "../../../common/build/build-common/api-extractor-base.json",
|
|
4
|
-
"dtsRollup": {
|
|
5
|
-
"enabled": true
|
|
6
|
-
},
|
|
7
4
|
"messages": {
|
|
8
5
|
"extractorMessageReporting": {
|
|
9
6
|
// TODO: Add missing documentation and remove this rule override
|
|
@@ -11,6 +11,7 @@ import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
|
11
11
|
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
12
|
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
13
13
|
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
14
|
+
import { IFileSnapshot } from '@fluidframework/replay-driver';
|
|
14
15
|
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
15
16
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
16
17
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
@@ -20,6 +21,8 @@ import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
|
20
21
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
21
22
|
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
22
23
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
24
|
+
import { ReadDocumentStorageServiceBase } from '@fluidframework/replay-driver';
|
|
25
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
23
26
|
|
|
24
27
|
/* Excluded from this release type: FileDeltaStorageService */
|
|
25
28
|
|
|
@@ -45,6 +48,4 @@ import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
|
45
48
|
|
|
46
49
|
/* Excluded from this release type: ReplayFileDeltaConnection */
|
|
47
50
|
|
|
48
|
-
/* Excluded from this release type: TypedEventEmitter */
|
|
49
|
-
|
|
50
51
|
export { }
|
|
@@ -2,13 +2,27 @@ import * as api from '@fluidframework/protocol-definitions';
|
|
|
2
2
|
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
|
3
3
|
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
|
4
4
|
import { IConnected } from '@fluidframework/protocol-definitions';
|
|
5
|
+
import { IDisposable } from '@fluidframework/core-interfaces';
|
|
6
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
7
|
+
import { IDocumentDeltaConnectionEvents } from '@fluidframework/driver-definitions';
|
|
8
|
+
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
|
|
5
9
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
10
|
+
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
11
|
+
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
|
+
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
6
13
|
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
14
|
+
import { IFileSnapshot } from '@fluidframework/replay-driver';
|
|
15
|
+
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
7
16
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
8
17
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
9
18
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
19
|
+
import { IStream } from '@fluidframework/driver-definitions';
|
|
20
|
+
import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
10
21
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
22
|
+
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
11
23
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
24
|
+
import { ReadDocumentStorageServiceBase } from '@fluidframework/replay-driver';
|
|
25
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
12
26
|
|
|
13
27
|
/* Excluded from this release type: FileDeltaStorageService */
|
|
14
28
|
|
|
@@ -2,13 +2,27 @@ import * as api from '@fluidframework/protocol-definitions';
|
|
|
2
2
|
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
|
3
3
|
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
|
4
4
|
import { IConnected } from '@fluidframework/protocol-definitions';
|
|
5
|
+
import { IDisposable } from '@fluidframework/core-interfaces';
|
|
6
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
7
|
+
import { IDocumentDeltaConnectionEvents } from '@fluidframework/driver-definitions';
|
|
8
|
+
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
|
|
5
9
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
10
|
+
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
11
|
+
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
|
+
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
6
13
|
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
14
|
+
import { IFileSnapshot } from '@fluidframework/replay-driver';
|
|
15
|
+
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
7
16
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
8
17
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
9
18
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
19
|
+
import { IStream } from '@fluidframework/driver-definitions';
|
|
20
|
+
import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
10
21
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
22
|
+
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
11
23
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
24
|
+
import { ReadDocumentStorageServiceBase } from '@fluidframework/replay-driver';
|
|
25
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
12
26
|
|
|
13
27
|
/* Excluded from this release type: FileDeltaStorageService */
|
|
14
28
|
|
|
@@ -11,6 +11,7 @@ import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
|
11
11
|
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
12
|
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
13
13
|
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
14
|
+
import { IFileSnapshot } from '@fluidframework/replay-driver';
|
|
14
15
|
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
15
16
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
16
17
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
@@ -20,6 +21,8 @@ import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
|
20
21
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
21
22
|
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
22
23
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
24
|
+
import { ReadDocumentStorageServiceBase } from '@fluidframework/replay-driver';
|
|
25
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
23
26
|
|
|
24
27
|
/* Excluded from this release type: FileDeltaStorageService */
|
|
25
28
|
|
|
@@ -45,6 +48,4 @@ import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
|
45
48
|
|
|
46
49
|
/* Excluded from this release type: ReplayFileDeltaConnection */
|
|
47
50
|
|
|
48
|
-
/* Excluded from this release type: TypedEventEmitter */
|
|
49
|
-
|
|
50
51
|
export { }
|
|
@@ -2,13 +2,27 @@ import * as api from '@fluidframework/protocol-definitions';
|
|
|
2
2
|
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
|
3
3
|
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
|
4
4
|
import { IConnected } from '@fluidframework/protocol-definitions';
|
|
5
|
+
import { IDisposable } from '@fluidframework/core-interfaces';
|
|
6
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
7
|
+
import { IDocumentDeltaConnectionEvents } from '@fluidframework/driver-definitions';
|
|
8
|
+
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
|
|
5
9
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
10
|
+
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
11
|
+
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
|
+
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
6
13
|
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
14
|
+
import { IFileSnapshot } from '@fluidframework/replay-driver';
|
|
15
|
+
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
7
16
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
8
17
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
9
18
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
19
|
+
import { IStream } from '@fluidframework/driver-definitions';
|
|
20
|
+
import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
10
21
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
22
|
+
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
11
23
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
24
|
+
import { ReadDocumentStorageServiceBase } from '@fluidframework/replay-driver';
|
|
25
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
12
26
|
|
|
13
27
|
/* Excluded from this release type: FileDeltaStorageService */
|
|
14
28
|
|
|
@@ -2,13 +2,27 @@ import * as api from '@fluidframework/protocol-definitions';
|
|
|
2
2
|
import { ConnectionMode } from '@fluidframework/protocol-definitions';
|
|
3
3
|
import { IClientConfiguration } from '@fluidframework/protocol-definitions';
|
|
4
4
|
import { IConnected } from '@fluidframework/protocol-definitions';
|
|
5
|
+
import { IDisposable } from '@fluidframework/core-interfaces';
|
|
6
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
7
|
+
import { IDocumentDeltaConnectionEvents } from '@fluidframework/driver-definitions';
|
|
8
|
+
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
|
|
5
9
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
10
|
+
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
11
|
+
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
|
+
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
6
13
|
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
14
|
+
import { IFileSnapshot } from '@fluidframework/replay-driver';
|
|
15
|
+
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
7
16
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
8
17
|
import { ISignalClient } from '@fluidframework/protocol-definitions';
|
|
9
18
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
19
|
+
import { IStream } from '@fluidframework/driver-definitions';
|
|
20
|
+
import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
10
21
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
22
|
+
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
11
23
|
import { ITokenClaims } from '@fluidframework/protocol-definitions';
|
|
24
|
+
import { ReadDocumentStorageServiceBase } from '@fluidframework/replay-driver';
|
|
25
|
+
import { TypedEventEmitter } from '@fluid-internal/client-utils';
|
|
12
26
|
|
|
13
27
|
/* Excluded from this release type: FileDeltaStorageService */
|
|
14
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/file-driver",
|
|
3
|
-
"version": "2.0.0-dev.7.4.0.
|
|
3
|
+
"version": "2.0.0-dev.7.4.0.221926",
|
|
4
4
|
"description": "A driver that reads/write from/to local file storage.",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -15,22 +15,23 @@
|
|
|
15
15
|
"main": "dist/index.js",
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@fluid-internal/client-utils": "2.0.0-dev.7.4.0.
|
|
19
|
-
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.
|
|
20
|
-
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.
|
|
21
|
-
"@fluidframework/driver-definitions": "2.0.0-dev.7.4.0.
|
|
22
|
-
"@fluidframework/driver-utils": "2.0.0-dev.7.4.0.
|
|
18
|
+
"@fluid-internal/client-utils": "2.0.0-dev.7.4.0.221926",
|
|
19
|
+
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.221926",
|
|
20
|
+
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.221926",
|
|
21
|
+
"@fluidframework/driver-definitions": "2.0.0-dev.7.4.0.221926",
|
|
22
|
+
"@fluidframework/driver-utils": "2.0.0-dev.7.4.0.221926",
|
|
23
23
|
"@fluidframework/protocol-definitions": "^3.0.0",
|
|
24
|
-
"@fluidframework/replay-driver": "2.0.0-dev.7.4.0.
|
|
24
|
+
"@fluidframework/replay-driver": "2.0.0-dev.7.4.0.221926"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
+
"@arethetypeswrong/cli": "^0.13.3",
|
|
27
28
|
"@fluid-tools/build-cli": "^0.28.0",
|
|
28
29
|
"@fluidframework/build-common": "^2.0.3",
|
|
29
30
|
"@fluidframework/build-tools": "^0.28.0",
|
|
30
31
|
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
31
32
|
"@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.0.0-internal.7.2.0",
|
|
32
33
|
"@microsoft/api-extractor": "^7.38.3",
|
|
33
|
-
"@types/node": "^
|
|
34
|
+
"@types/node": "^18.19.0",
|
|
34
35
|
"copyfiles": "^2.4.1",
|
|
35
36
|
"eslint": "~8.50.0",
|
|
36
37
|
"prettier": "~3.0.3",
|
|
@@ -63,6 +64,7 @@
|
|
|
63
64
|
"build": "fluid-build . --task build",
|
|
64
65
|
"build:compile": "fluid-build . --task compile",
|
|
65
66
|
"build:docs": "fluid-build . --task api",
|
|
67
|
+
"check:are-the-types-wrong": "attw --pack",
|
|
66
68
|
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
67
69
|
"ci:build:docs": "api-extractor run",
|
|
68
70
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp",
|