@fluidframework/local-driver 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.
- package/CHANGELOG.md +4 -0
- package/api-extractor.json +0 -3
- package/dist/local-driver-alpha.d.ts +2 -2
- package/dist/local-driver-beta.d.ts +15 -0
- package/dist/local-driver-public.d.ts +15 -0
- package/lib/auth.d.ts.map +1 -1
- package/lib/index.d.ts +7 -7
- package/lib/index.d.ts.map +1 -1
- package/lib/local-driver-alpha.d.ts +2 -2
- package/lib/local-driver-beta.d.ts +15 -0
- package/lib/local-driver-public.d.ts +15 -0
- package/lib/localCreateDocument.d.ts.map +1 -1
- package/lib/localDeltaStorageService.d.ts.map +1 -1
- package/lib/localDocumentDeltaConnection.d.ts.map +1 -1
- package/lib/localDocumentService.d.ts +1 -1
- package/lib/localDocumentService.d.ts.map +1 -1
- package/lib/localDocumentServiceFactory.d.ts.map +1 -1
- package/lib/localDocumentStorageService.d.ts.map +1 -1
- package/lib/localResolver.d.ts.map +1 -1
- package/lib/localSessionStorageDb.d.ts.map +1 -1
- package/package.json +12 -22
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
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DocumentDeltaConnection } from '@fluidframework/driver-base';
|
|
1
2
|
import { GitManager } from '@fluidframework/server-services-client';
|
|
2
3
|
import { IClient } from '@fluidframework/protocol-definitions';
|
|
3
4
|
import { ICreateBlobResponse } from '@fluidframework/protocol-definitions';
|
|
@@ -22,6 +23,7 @@ import { ISummaryHandle } from '@fluidframework/protocol-definitions';
|
|
|
22
23
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
23
24
|
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
24
25
|
import { ITestDbFactory } from '@fluidframework/server-test-utils';
|
|
26
|
+
import { ITokenProvider } from '@fluidframework/routerlicious-driver';
|
|
25
27
|
import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
26
28
|
import { IVersion } from '@fluidframework/protocol-definitions';
|
|
27
29
|
import { IWebSocketServer } from '@fluidframework/server-services-core';
|
|
@@ -37,8 +39,6 @@ export declare function createLocalResolverCreateNewRequest(documentId: string):
|
|
|
37
39
|
|
|
38
40
|
/* Excluded from this release type: DocumentDeltaConnection */
|
|
39
41
|
|
|
40
|
-
/* Excluded from this release type: ITokenProvider */
|
|
41
|
-
|
|
42
42
|
/* Excluded from this release type: LocalDeltaStorageService */
|
|
43
43
|
|
|
44
44
|
/* Excluded from this release type: LocalDocumentDeltaConnection */
|
|
@@ -1,15 +1,30 @@
|
|
|
1
|
+
import { DocumentDeltaConnection } from '@fluidframework/driver-base';
|
|
1
2
|
import { GitManager } from '@fluidframework/server-services-client';
|
|
2
3
|
import { IClient } from '@fluidframework/protocol-definitions';
|
|
3
4
|
import { ICreateBlobResponse } from '@fluidframework/protocol-definitions';
|
|
4
5
|
import { IDatabaseManager } from '@fluidframework/server-services-core';
|
|
5
6
|
import { IDb } from '@fluidframework/server-services-core';
|
|
7
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
8
|
+
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
|
|
6
9
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
10
|
+
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
11
|
+
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
|
+
import { IDocumentServicePolicies } from '@fluidframework/driver-definitions';
|
|
13
|
+
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
14
|
+
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
7
15
|
import { ILocalDeltaConnectionServer } from '@fluidframework/server-local-server';
|
|
16
|
+
import { IRequest } from '@fluidframework/core-interfaces';
|
|
17
|
+
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
8
18
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
9
19
|
import { ISnapshotTreeEx } from '@fluidframework/protocol-definitions';
|
|
20
|
+
import { IStream } from '@fluidframework/driver-definitions';
|
|
21
|
+
import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
10
22
|
import { ISummaryHandle } from '@fluidframework/protocol-definitions';
|
|
11
23
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
24
|
+
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
12
25
|
import { ITestDbFactory } from '@fluidframework/server-test-utils';
|
|
26
|
+
import { ITokenProvider } from '@fluidframework/routerlicious-driver';
|
|
27
|
+
import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
13
28
|
import { IVersion } from '@fluidframework/protocol-definitions';
|
|
14
29
|
import { IWebSocketServer } from '@fluidframework/server-services-core';
|
|
15
30
|
import { NackErrorType } from '@fluidframework/protocol-definitions';
|
|
@@ -1,15 +1,30 @@
|
|
|
1
|
+
import { DocumentDeltaConnection } from '@fluidframework/driver-base';
|
|
1
2
|
import { GitManager } from '@fluidframework/server-services-client';
|
|
2
3
|
import { IClient } from '@fluidframework/protocol-definitions';
|
|
3
4
|
import { ICreateBlobResponse } from '@fluidframework/protocol-definitions';
|
|
4
5
|
import { IDatabaseManager } from '@fluidframework/server-services-core';
|
|
5
6
|
import { IDb } from '@fluidframework/server-services-core';
|
|
7
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
8
|
+
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
|
|
6
9
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
10
|
+
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
11
|
+
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
|
+
import { IDocumentServicePolicies } from '@fluidframework/driver-definitions';
|
|
13
|
+
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
14
|
+
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
7
15
|
import { ILocalDeltaConnectionServer } from '@fluidframework/server-local-server';
|
|
16
|
+
import { IRequest } from '@fluidframework/core-interfaces';
|
|
17
|
+
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
8
18
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
9
19
|
import { ISnapshotTreeEx } from '@fluidframework/protocol-definitions';
|
|
20
|
+
import { IStream } from '@fluidframework/driver-definitions';
|
|
21
|
+
import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
10
22
|
import { ISummaryHandle } from '@fluidframework/protocol-definitions';
|
|
11
23
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
24
|
+
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
12
25
|
import { ITestDbFactory } from '@fluidframework/server-test-utils';
|
|
26
|
+
import { ITokenProvider } from '@fluidframework/routerlicious-driver';
|
|
27
|
+
import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
13
28
|
import { IVersion } from '@fluidframework/protocol-definitions';
|
|
14
29
|
import { IWebSocketServer } from '@fluidframework/server-services-core';
|
|
15
30
|
import { NackErrorType } from '@fluidframework/protocol-definitions';
|
package/lib/auth.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../src/auth.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../src/auth.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EAAgB,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC;AAIrF;;;GAGG;AACH,wBAAgB,aAAa,CAC5B,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,MAAM,EAClB,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,SAAS,EAAE,EACnB,IAAI,CAAC,EAAE,KAAK,EACZ,QAAQ,GAAE,MAAgB,EAC1B,GAAG,GAAE,MAAc,GACjB,MAAM,CA0BR;AAED,wBAAgB,YAAY,IAAI,KAAK,CAWpC"}
|
package/lib/index.d.ts
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
export { LocalDeltaStorageService } from "./localDeltaStorageService";
|
|
6
|
-
export { LocalDocumentDeltaConnection } from "./localDocumentDeltaConnection";
|
|
7
|
-
export { createLocalDocumentService, LocalDocumentService } from "./localDocumentService";
|
|
8
|
-
export { LocalDocumentServiceFactory } from "./localDocumentServiceFactory";
|
|
9
|
-
export { LocalDocumentStorageService } from "./localDocumentStorageService";
|
|
10
|
-
export { createLocalResolverCreateNewRequest, LocalResolver } from "./localResolver";
|
|
11
|
-
export { LocalSessionStorageDbFactory } from "./localSessionStorageDb";
|
|
5
|
+
export { LocalDeltaStorageService } from "./localDeltaStorageService.mjs";
|
|
6
|
+
export { LocalDocumentDeltaConnection } from "./localDocumentDeltaConnection.mjs";
|
|
7
|
+
export { createLocalDocumentService, LocalDocumentService } from "./localDocumentService.mjs";
|
|
8
|
+
export { LocalDocumentServiceFactory } from "./localDocumentServiceFactory.mjs";
|
|
9
|
+
export { LocalDocumentStorageService } from "./localDocumentStorageService.mjs";
|
|
10
|
+
export { createLocalResolverCreateNewRequest, LocalResolver } from "./localResolver.mjs";
|
|
11
|
+
export { LocalSessionStorageDbFactory } from "./localSessionStorageDb.mjs";
|
|
12
12
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EAAE,wBAAwB,EAAE;OAC5B,EAAE,4BAA4B,EAAE;OAChC,EAAE,0BAA0B,EAAE,oBAAoB,EAAE;OACpD,EAAE,2BAA2B,EAAE;OAC/B,EAAE,2BAA2B,EAAE;OAC/B,EAAE,mCAAmC,EAAE,aAAa,EAAE;OACtD,EAAE,4BAA4B,EAAE"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { DocumentDeltaConnection } from '@fluidframework/driver-base';
|
|
1
2
|
import { GitManager } from '@fluidframework/server-services-client';
|
|
2
3
|
import { IClient } from '@fluidframework/protocol-definitions';
|
|
3
4
|
import { ICreateBlobResponse } from '@fluidframework/protocol-definitions';
|
|
@@ -22,6 +23,7 @@ import { ISummaryHandle } from '@fluidframework/protocol-definitions';
|
|
|
22
23
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
23
24
|
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
24
25
|
import { ITestDbFactory } from '@fluidframework/server-test-utils';
|
|
26
|
+
import { ITokenProvider } from '@fluidframework/routerlicious-driver';
|
|
25
27
|
import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
26
28
|
import { IVersion } from '@fluidframework/protocol-definitions';
|
|
27
29
|
import { IWebSocketServer } from '@fluidframework/server-services-core';
|
|
@@ -37,8 +39,6 @@ export declare function createLocalResolverCreateNewRequest(documentId: string):
|
|
|
37
39
|
|
|
38
40
|
/* Excluded from this release type: DocumentDeltaConnection */
|
|
39
41
|
|
|
40
|
-
/* Excluded from this release type: ITokenProvider */
|
|
41
|
-
|
|
42
42
|
/* Excluded from this release type: LocalDeltaStorageService */
|
|
43
43
|
|
|
44
44
|
/* Excluded from this release type: LocalDocumentDeltaConnection */
|
|
@@ -1,15 +1,30 @@
|
|
|
1
|
+
import { DocumentDeltaConnection } from '@fluidframework/driver-base';
|
|
1
2
|
import { GitManager } from '@fluidframework/server-services-client';
|
|
2
3
|
import { IClient } from '@fluidframework/protocol-definitions';
|
|
3
4
|
import { ICreateBlobResponse } from '@fluidframework/protocol-definitions';
|
|
4
5
|
import { IDatabaseManager } from '@fluidframework/server-services-core';
|
|
5
6
|
import { IDb } from '@fluidframework/server-services-core';
|
|
7
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
8
|
+
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
|
|
6
9
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
10
|
+
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
11
|
+
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
|
+
import { IDocumentServicePolicies } from '@fluidframework/driver-definitions';
|
|
13
|
+
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
14
|
+
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
7
15
|
import { ILocalDeltaConnectionServer } from '@fluidframework/server-local-server';
|
|
16
|
+
import { IRequest } from '@fluidframework/core-interfaces';
|
|
17
|
+
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
8
18
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
9
19
|
import { ISnapshotTreeEx } from '@fluidframework/protocol-definitions';
|
|
20
|
+
import { IStream } from '@fluidframework/driver-definitions';
|
|
21
|
+
import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
10
22
|
import { ISummaryHandle } from '@fluidframework/protocol-definitions';
|
|
11
23
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
24
|
+
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
12
25
|
import { ITestDbFactory } from '@fluidframework/server-test-utils';
|
|
26
|
+
import { ITokenProvider } from '@fluidframework/routerlicious-driver';
|
|
27
|
+
import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
13
28
|
import { IVersion } from '@fluidframework/protocol-definitions';
|
|
14
29
|
import { IWebSocketServer } from '@fluidframework/server-services-core';
|
|
15
30
|
import { NackErrorType } from '@fluidframework/protocol-definitions';
|
|
@@ -1,15 +1,30 @@
|
|
|
1
|
+
import { DocumentDeltaConnection } from '@fluidframework/driver-base';
|
|
1
2
|
import { GitManager } from '@fluidframework/server-services-client';
|
|
2
3
|
import { IClient } from '@fluidframework/protocol-definitions';
|
|
3
4
|
import { ICreateBlobResponse } from '@fluidframework/protocol-definitions';
|
|
4
5
|
import { IDatabaseManager } from '@fluidframework/server-services-core';
|
|
5
6
|
import { IDb } from '@fluidframework/server-services-core';
|
|
7
|
+
import { IDocumentDeltaConnection } from '@fluidframework/driver-definitions';
|
|
8
|
+
import { IDocumentDeltaStorageService } from '@fluidframework/driver-definitions';
|
|
6
9
|
import { IDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
10
|
+
import { IDocumentService } from '@fluidframework/driver-definitions';
|
|
11
|
+
import { IDocumentServiceFactory } from '@fluidframework/driver-definitions';
|
|
12
|
+
import { IDocumentServicePolicies } from '@fluidframework/driver-definitions';
|
|
13
|
+
import { IDocumentStorageService } from '@fluidframework/driver-definitions';
|
|
14
|
+
import { IDocumentStorageServicePolicies } from '@fluidframework/driver-definitions';
|
|
7
15
|
import { ILocalDeltaConnectionServer } from '@fluidframework/server-local-server';
|
|
16
|
+
import { IRequest } from '@fluidframework/core-interfaces';
|
|
17
|
+
import { IResolvedUrl } from '@fluidframework/driver-definitions';
|
|
8
18
|
import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions';
|
|
9
19
|
import { ISnapshotTreeEx } from '@fluidframework/protocol-definitions';
|
|
20
|
+
import { IStream } from '@fluidframework/driver-definitions';
|
|
21
|
+
import { ISummaryContext } from '@fluidframework/driver-definitions';
|
|
10
22
|
import { ISummaryHandle } from '@fluidframework/protocol-definitions';
|
|
11
23
|
import { ISummaryTree } from '@fluidframework/protocol-definitions';
|
|
24
|
+
import { ITelemetryBaseLogger } from '@fluidframework/core-interfaces';
|
|
12
25
|
import { ITestDbFactory } from '@fluidframework/server-test-utils';
|
|
26
|
+
import { ITokenProvider } from '@fluidframework/routerlicious-driver';
|
|
27
|
+
import { IUrlResolver } from '@fluidframework/driver-definitions';
|
|
13
28
|
import { IVersion } from '@fluidframework/protocol-definitions';
|
|
14
29
|
import { IWebSocketServer } from '@fluidframework/server-services-core';
|
|
15
30
|
import { NackErrorType } from '@fluidframework/protocol-definitions';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localCreateDocument.d.ts","sourceRoot":"","sources":["../src/localCreateDocument.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"localCreateDocument.d.ts","sourceRoot":"","sources":["../src/localCreateDocument.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EAAE,YAAY,EAAE,MAAM,oCAAoC;OAM1D,EAAE,YAAY,EAAE,MAAM,sCAAsC;AAInE,wBAAsB,cAAc,CACnC,0BAA0B,KAAA,EAC1B,WAAW,EAAE,YAAY,EACzB,OAAO,EAAE,YAAY,iBA6BrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDeltaStorageService.d.ts","sourceRoot":"","sources":["../src/localDeltaStorageService.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"localDeltaStorageService.d.ts","sourceRoot":"","sources":["../src/localDeltaStorageService.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EAAE,4BAA4B,EAAE,OAAO,EAAE,MAAM,oCAAoC;OACnF,EAAE,yBAAyB,EAAE,MAAM,sCAAsC;OACzE,EAAE,gBAAgB,EAAE,MAAM,sCAAsC;AAGvE;;;GAGG;AACH,qBAAa,wBAAyB,YAAW,4BAA4B;IAE3E,OAAO,CAAC,QAAQ,CAAC,QAAQ;IACzB,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,eAAe;gBAFf,QAAQ,EAAE,MAAM,EAChB,EAAE,EAAE,MAAM,EACV,eAAe,EAAE,gBAAgB;IAG5C,aAAa,CACnB,IAAI,EAAE,MAAM,EACZ,EAAE,EAAE,MAAM,GAAG,SAAS,EACtB,WAAW,CAAC,EAAE,WAAW,EACzB,UAAU,CAAC,EAAE,OAAO,GAClB,OAAO,CAAC,yBAAyB,EAAE,CAAC;YAIzB,OAAO;CAcrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDocumentDeltaConnection.d.ts","sourceRoot":"","sources":["../src/localDocumentDeltaConnection.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"localDocumentDeltaConnection.d.ts","sourceRoot":"","sources":["../src/localDocumentDeltaConnection.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EAAE,uBAAuB,EAAE,MAAM,6BAA6B;OAC9D,EACN,OAAO,EAEP,gBAAgB,EAChB,aAAa,EACb,MAAM,sCAAsC;OAGtC,EAAE,gBAAgB,EAAE,MAAM,sCAAsC;OAChE,KAAK,EAAE,MAAM,EAAE,MAAM,kBAAkB;OACvC,EAAE,oBAAoB,EAAE,MAAM,iCAAiC;AAItE;;;GAGG;AACH,qBAAa,4BAA6B,SAAQ,uBAAuB;IACxE;;;;;;;;;OASG;WACiB,MAAM,CACzB,QAAQ,EAAE,MAAM,EAChB,EAAE,EAAE,MAAM,EACV,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,OAAO,EACf,eAAe,EAAE,gBAAgB,EACjC,SAAS,SAAQ,EACjB,MAAM,CAAC,EAAE,oBAAoB,GAC3B,OAAO,CAAC,4BAA4B,CAAC;gBAqB5B,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,oBAAoB;IAI7E;;OAEG;IACI,MAAM,CAAC,QAAQ,EAAE,gBAAgB,EAAE,GAAG,IAAI;IAQjD;;OAEG;IACI,YAAY,CAAC,OAAO,EAAE,GAAG,GAAG,IAAI;IAIvC;;;OAGG;IACI,gBAAgB,CAAC,gBAAgB,EAAE,MAAM;IAIhD;;;;;OAKG;IACI,UAAU,CAChB,IAAI,oBAAc,EAClB,IAAI,2BAA+C,EACnD,OAAO,EAAE,GAAG;CAab"}
|
|
@@ -7,7 +7,7 @@ import { IClient } from "@fluidframework/protocol-definitions";
|
|
|
7
7
|
import { ITokenProvider } from "@fluidframework/routerlicious-driver";
|
|
8
8
|
import { ILocalDeltaConnectionServer } from "@fluidframework/server-local-server";
|
|
9
9
|
import { ITelemetryBaseLogger } from "@fluidframework/core-interfaces";
|
|
10
|
-
import { LocalDocumentDeltaConnection } from "./localDocumentDeltaConnection";
|
|
10
|
+
import { LocalDocumentDeltaConnection } from "./localDocumentDeltaConnection.mjs";
|
|
11
11
|
/**
|
|
12
12
|
* Basic implementation of a document service for local use.
|
|
13
13
|
* @internal
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDocumentService.d.ts","sourceRoot":"","sources":["../src/localDocumentService.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"localDocumentService.d.ts","sourceRoot":"","sources":["../src/localDocumentService.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAEI,EACN,wBAAwB,EACxB,4BAA4B,EAC5B,gBAAgB,EAChB,wBAAwB,EACxB,uBAAuB,EACvB,YAAY,EACZ,MAAM,oCAAoC;OACpC,EAAE,OAAO,EAAE,MAAM,sCAAsC;OACvD,EAAE,cAAc,EAAE,MAAM,sCAAsC;OAG9D,EAAE,2BAA2B,EAAE,MAAM,qCAAqC;OAC1E,EAAE,oBAAoB,EAAE,MAAM,iCAAiC;OAE/D,EAAE,4BAA4B,EAAE;AAGvC;;;GAGG;AACH,qBAAa,oBAAqB,YAAW,gBAAgB;aAQ3C,WAAW,EAAE,YAAY;IACzC,OAAO,CAAC,QAAQ,CAAC,0BAA0B;IAC3C,OAAO,CAAC,QAAQ,CAAC,aAAa;IAC9B,OAAO,CAAC,QAAQ,CAAC,QAAQ;IACzB,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,2BAA2B;aAC5B,QAAQ,EAAE,wBAAwB;IAClD,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAC;IACtC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAC;IAfzB;;;;;OAKG;gBAEc,WAAW,EAAE,YAAY,EACxB,0BAA0B,EAAE,2BAA2B,EACvD,aAAa,EAAE,cAAc,EAC7B,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,MAAM,EAClB,2BAA2B,EAAE,GAAG,CAAC,MAAM,EAAE,4BAA4B,CAAC,EACvE,QAAQ,GAAE,wBAA6B,EACtC,oBAAoB,CAAC,8BAAkB,EACvC,MAAM,CAAC,kCAAsB;IAGxC,OAAO;IAEd;;OAEG;IACU,gBAAgB,IAAI,OAAO,CAAC,uBAAuB,CAAC;IAcjE;;OAEG;IACU,qBAAqB,IAAI,OAAO,CAAC,4BAA4B,CAAC;IAW3E;;;OAGG;IACU,oBAAoB,CAAC,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,wBAAwB,CAAC;CAgCrF;AAED;;;;;;;GAOG;AACH,wBAAgB,0BAA0B,CACzC,WAAW,EAAE,YAAY,EACzB,0BAA0B,EAAE,2BAA2B,EACvD,aAAa,EAAE,cAAc,EAC7B,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,MAAM,EAClB,2BAA2B,EAAE,GAAG,CAAC,MAAM,EAAE,4BAA4B,CAAC,EACtE,QAAQ,CAAC,EAAE,wBAAwB,EACnC,oBAAoB,CAAC,EAAE,gBAAgB,EACvC,MAAM,CAAC,EAAE,oBAAoB,GAC3B,gBAAgB,CAYlB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDocumentServiceFactory.d.ts","sourceRoot":"","sources":["../src/localDocumentServiceFactory.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"localDocumentServiceFactory.d.ts","sourceRoot":"","sources":["../src/localDocumentServiceFactory.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAGI,EACN,gBAAgB,EAChB,uBAAuB,EACvB,wBAAwB,EACxB,YAAY,EACZ,MAAM,oCAAoC;OACpC,EAAE,oBAAoB,EAAE,MAAM,iCAAiC;OAE/D,EAAE,2BAA2B,EAAE,MAAM,qCAAqC;OAC1E,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,sCAAsC;AAKlF;;;GAGG;AACH,qBAAa,2BAA4B,YAAW,uBAAuB;IASzE,OAAO,CAAC,QAAQ,CAAC,0BAA0B;IAC3C,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAC;IAC1B,OAAO,CAAC,QAAQ,CAAC,oBAAoB,CAAC;IATvC,OAAO,CAAC,QAAQ,CAAC,2BAA2B,CACjC;IAEX;;OAEG;gBAEe,0BAA0B,EAAE,2BAA2B,EACvD,QAAQ,CAAC,sCAA0B,EACnC,oBAAoB,CAAC,8BAAkB;IAG5C,eAAe,CAC3B,gBAAgB,EAAE,YAAY,GAAG,SAAS,EAC1C,WAAW,EAAE,YAAY,EACzB,MAAM,CAAC,EAAE,oBAAoB,EAC7B,kBAAkB,CAAC,EAAE,OAAO,GAC1B,OAAO,CAAC,gBAAgB,CAAC;IAU5B;;;;OAIG;IACU,qBAAqB,CACjC,WAAW,EAAE,YAAY,EACzB,MAAM,CAAC,EAAE,oBAAoB,EAC7B,kBAAkB,CAAC,EAAE,OAAO,GAC1B,OAAO,CAAC,gBAAgB,CAAC;IA8B5B;;;;OAIG;IACI,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM;IAQlE;;;;;;OAMG;IACI,UAAU,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,EAAE,OAAO,CAAC,EAAE,GAAG;CAOtF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localDocumentStorageService.d.ts","sourceRoot":"","sources":["../src/localDocumentStorageService.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"localDocumentStorageService.d.ts","sourceRoot":"","sources":["../src/localDocumentStorageService.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAGI,EACN,uBAAuB,EACvB,+BAA+B,EAC/B,YAAY,EACZ,eAAe,EACf,MAAM,oCAAoC;OACpC,EACN,mBAAmB,EACnB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,QAAQ,EACR,MAAM,sCAAsC;OAEtC,EACN,UAAU,EAGV,MAAM,wCAAwC;OACxC,EAAE,2BAA2B,EAAE,MAAM,qCAAqC;AAIjF;;GAEG;AACH,qBAAa,2BAA4B,YAAW,uBAAuB;IAYzE,OAAO,CAAC,QAAQ,CAAC,EAAE;IACnB,OAAO,CAAC,QAAQ,CAAC,OAAO;aACR,QAAQ,EAAE,+BAA+B;IACzD,OAAO,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IAC5C,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAC;IAb9B,SAAS,CAAC,QAAQ,CAAC,aAAa,sBAA6B;IAC7D,OAAO,CAAC,QAAQ,CAAC,wBAAwB,CAAwB;IAGjE,IAAW,aAAa,IAAI,MAAM,CAEjC;gBAGiB,EAAE,EAAE,MAAM,EACV,OAAO,EAAE,UAAU,EACpB,QAAQ,EAAE,+BAA+B,EACxC,0BAA0B,CAAC,yCAA6B,EACxD,WAAW,CAAC,0BAAc;IAS/B,WAAW,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC;IAUzE,eAAe,CAAC,OAAO,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAC,eAAe,GAAG,IAAI,CAAC;IAgBpE,QAAQ,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC;IAOlD,wBAAwB,CACpC,OAAO,EAAE,YAAY,EACrB,OAAO,EAAE,eAAe,GACtB,OAAO,CAAC,MAAM,CAAC;IAkBL,UAAU,CAAC,IAAI,EAAE,eAAe,GAAG,OAAO,CAAC,mBAAmB,CAAC;IAO/D,eAAe,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAAC,YAAY,CAAC;YAI7D,uBAAuB;CAWrC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localResolver.d.ts","sourceRoot":"","sources":["../src/localResolver.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"localResolver.d.ts","sourceRoot":"","sources":["../src/localResolver.ts"],"names":[],"mappings":"AAAA;;;GAGG;OAII,EAAE,QAAQ,EAAE,MAAM,iCAAiC;OACnD,EAAE,YAAY,EAAE,YAAY,EAAgB,MAAM,oCAAoC;AAI7F;;GAEG;AACH,wBAAgB,mCAAmC,CAAC,UAAU,EAAE,MAAM,GAAG,QAAQ,CAQhF;AAED;;;;GAIG;AACH,qBAAa,aAAc,YAAW,YAAY;IACjD,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAc;IACvC,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAc;;IAIvC;;;;;OAKG;IACU,OAAO,CAAC,OAAO,EAAE,QAAQ,GAAG,OAAO,CAAC,YAAY,CAAC;IAoBjD,cAAc,CAAC,WAAW,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC;IAerF,sBAAsB,CAAC,UAAU,EAAE,MAAM,GAAG,QAAQ;CAG3D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"localSessionStorageDb.d.ts","sourceRoot":"","sources":["../src/localSessionStorageDb.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"localSessionStorageDb.d.ts","sourceRoot":"","sources":["../src/localSessionStorageDb.ts"],"names":[],"mappings":"OAKO,EAAe,GAAG,EAAE,MAAM,sCAAsC;OAChE,EAAE,cAAc,EAAE,MAAM,mCAAmC;AAgTlE;;;GAGG;AACH,qBAAa,4BAA6B,YAAW,cAAc;IAClE,SAAgB,YAAY,EAAE,GAAG,CAA+B;IACnD,OAAO,IAAI,OAAO,CAAC,GAAG,CAAC;CAGpC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/local-driver",
|
|
3
|
-
"version": "2.0.0-dev.7.4.0.
|
|
3
|
+
"version": "2.0.0-dev.7.4.0.221926",
|
|
4
4
|
"description": "Fluid local driver",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -10,18 +10,6 @@
|
|
|
10
10
|
},
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"author": "Microsoft and contributors",
|
|
13
|
-
"exports": {
|
|
14
|
-
".": {
|
|
15
|
-
"import": {
|
|
16
|
-
"types": "./lib/index.d.ts",
|
|
17
|
-
"default": "./lib/index.mjs"
|
|
18
|
-
},
|
|
19
|
-
"require": {
|
|
20
|
-
"types": "./dist/index.d.ts",
|
|
21
|
-
"default": "./dist/index.cjs"
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
13
|
"main": "dist/index.cjs",
|
|
26
14
|
"module": "lib/index.mjs",
|
|
27
15
|
"browser": {
|
|
@@ -49,32 +37,33 @@
|
|
|
49
37
|
"temp-directory": "nyc/.nyc_output"
|
|
50
38
|
},
|
|
51
39
|
"dependencies": {
|
|
52
|
-
"@fluid-internal/client-utils": "2.0.0-dev.7.4.0.
|
|
53
|
-
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.
|
|
54
|
-
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.
|
|
55
|
-
"@fluidframework/driver-base": "2.0.0-dev.7.4.0.
|
|
56
|
-
"@fluidframework/driver-definitions": "2.0.0-dev.7.4.0.
|
|
57
|
-
"@fluidframework/driver-utils": "2.0.0-dev.7.4.0.
|
|
40
|
+
"@fluid-internal/client-utils": "2.0.0-dev.7.4.0.221926",
|
|
41
|
+
"@fluidframework/core-interfaces": "2.0.0-dev.7.4.0.221926",
|
|
42
|
+
"@fluidframework/core-utils": "2.0.0-dev.7.4.0.221926",
|
|
43
|
+
"@fluidframework/driver-base": "2.0.0-dev.7.4.0.221926",
|
|
44
|
+
"@fluidframework/driver-definitions": "2.0.0-dev.7.4.0.221926",
|
|
45
|
+
"@fluidframework/driver-utils": "2.0.0-dev.7.4.0.221926",
|
|
58
46
|
"@fluidframework/protocol-base": "^2.0.1",
|
|
59
47
|
"@fluidframework/protocol-definitions": "^3.0.0",
|
|
60
|
-
"@fluidframework/routerlicious-driver": "2.0.0-dev.7.4.0.
|
|
48
|
+
"@fluidframework/routerlicious-driver": "2.0.0-dev.7.4.0.221926",
|
|
61
49
|
"@fluidframework/server-local-server": "^2.0.1",
|
|
62
50
|
"@fluidframework/server-services-client": "^2.0.1",
|
|
63
51
|
"@fluidframework/server-services-core": "^2.0.1",
|
|
64
52
|
"@fluidframework/server-test-utils": "^2.0.1",
|
|
65
|
-
"@fluidframework/telemetry-utils": "2.0.0-dev.7.4.0.
|
|
53
|
+
"@fluidframework/telemetry-utils": "2.0.0-dev.7.4.0.221926",
|
|
66
54
|
"events": "^3.1.0",
|
|
67
55
|
"jsrsasign": "^10.5.25",
|
|
68
56
|
"url": "^0.11.0",
|
|
69
57
|
"uuid": "^9.0.0"
|
|
70
58
|
},
|
|
71
59
|
"devDependencies": {
|
|
60
|
+
"@arethetypeswrong/cli": "^0.13.3",
|
|
72
61
|
"@fluid-tools/build-cli": "^0.28.0",
|
|
73
62
|
"@fluidframework/build-common": "^2.0.3",
|
|
74
63
|
"@fluidframework/build-tools": "^0.28.0",
|
|
75
64
|
"@fluidframework/eslint-config-fluid": "^3.1.0",
|
|
76
65
|
"@fluidframework/local-driver-previous": "npm:@fluidframework/local-driver@2.0.0-internal.7.2.0",
|
|
77
|
-
"@fluidframework/mocha-test-setup": "2.0.0-dev.7.4.0.
|
|
66
|
+
"@fluidframework/mocha-test-setup": "2.0.0-dev.7.4.0.221926",
|
|
78
67
|
"@microsoft/api-extractor": "^7.38.3",
|
|
79
68
|
"@types/jsrsasign": "^8.0.8",
|
|
80
69
|
"@types/mocha": "^9.1.1",
|
|
@@ -119,6 +108,7 @@
|
|
|
119
108
|
"build:docs": "fluid-build . --task api",
|
|
120
109
|
"build:esnext": "tsc-multi --config ../../../common/build/build-common/tsc-multi.esm.json",
|
|
121
110
|
"build:test": "tsc-multi --config ./tsc-multi.test.json",
|
|
111
|
+
"check:are-the-types-wrong": "attw --pack",
|
|
122
112
|
"check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
|
123
113
|
"ci:build:docs": "api-extractor run",
|
|
124
114
|
"clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc",
|