@fluidframework/file-driver 2.0.0-internal.2.0.4 → 2.0.0-internal.2.1.1

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.
@@ -1 +1 @@
1
- {"version":3,"file":"fileDocumentService.d.ts","sourceRoot":"","sources":["../src/fileDocumentService.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,GAAG,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,MAAM,sCAAsC,CAAC;AAC/D,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAEpE;;;GAGG;AACH,qBAAa,mBAAoB,YAAW,GAAG,CAAC,gBAAgB;IAExD,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,eAAe;gBAFf,OAAO,EAAE,GAAG,CAAC,uBAAuB,EACpC,YAAY,EAAE,uBAAuB,EACrC,eAAe,EAAE,GAAG,CAAC,wBAAwB;IAG3D,OAAO;IAGd,IAAW,WAAW,IAAI,GAAG,CAAC,YAAY,CAEzC;IAEY,gBAAgB,IAAI,OAAO,CAAC,GAAG,CAAC,uBAAuB,CAAC;IAIxD,qBAAqB,IAAI,OAAO,CAAC,GAAG,CAAC,4BAA4B,CAAC;IAI/E;;;;;;OAMG;IACU,oBAAoB,CAC7B,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,wBAAwB,CAAC;CAG9D"}
1
+ {"version":3,"file":"fileDocumentService.d.ts","sourceRoot":"","sources":["../src/fileDocumentService.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,GAAG,MAAM,oCAAoC,CAAC;AAC1D,OAAO,EAAE,OAAO,EAAE,MAAM,sCAAsC,CAAC;AAC/D,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAEpE;;;GAGG;AAEH,qBAAa,mBAAoB,YAAW,GAAG,CAAC,gBAAgB;IAExD,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,YAAY;IAC7B,OAAO,CAAC,QAAQ,CAAC,eAAe;gBAFf,OAAO,EAAE,GAAG,CAAC,uBAAuB,EACpC,YAAY,EAAE,uBAAuB,EACrC,eAAe,EAAE,GAAG,CAAC,wBAAwB;IAG3D,OAAO;IAGd,IAAW,WAAW,IAAI,GAAG,CAAC,YAAY,CAEzC;IAEY,gBAAgB,IAAI,OAAO,CAAC,GAAG,CAAC,uBAAuB,CAAC;IAIxD,qBAAqB,IAAI,OAAO,CAAC,GAAG,CAAC,4BAA4B,CAAC;IAI/E;;;;;;OAMG;IACU,oBAAoB,CAC7B,MAAM,EAAE,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,wBAAwB,CAAC;CAG9D"}
@@ -9,6 +9,7 @@ exports.FileDocumentService = void 0;
9
9
  * The DocumentService manages the different endpoints for connecting to
10
10
  * underlying storage for file document service.
11
11
  */
12
+ // eslint-disable-next-line import/namespace
12
13
  class FileDocumentService {
13
14
  constructor(storage, deltaStorage, deltaConnection) {
14
15
  this.storage = storage;
@@ -1 +1 @@
1
- {"version":3,"file":"fileDocumentService.js","sourceRoot":"","sources":["../src/fileDocumentService.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAMH;;;GAGG;AACH,MAAa,mBAAmB;IAC5B,YACqB,OAAoC,EACpC,YAAqC,EACrC,eAA6C;QAF7C,YAAO,GAAP,OAAO,CAA6B;QACpC,iBAAY,GAAZ,YAAY,CAAyB;QACrC,oBAAe,GAAf,eAAe,CAA8B;IAClE,CAAC;IAEM,OAAO,KAAI,CAAC;IAEnB,8EAA8E;IAC9E,IAAW,WAAW;QAClB,MAAM,IAAI,KAAK,CAAC,iBAAiB,CAAC,CAAC;IACvC,CAAC;IAEM,KAAK,CAAC,gBAAgB;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC;IACxB,CAAC;IAEM,KAAK,CAAC,qBAAqB;QAC9B,OAAO,IAAI,CAAC,YAAY,CAAC;IAC7B,CAAC;IAED;;;;;;OAMG;IACI,KAAK,CAAC,oBAAoB,CAC7B,MAAe;QACf,OAAO,IAAI,CAAC,eAAe,CAAC;IAChC,CAAC;CACJ;AAjCD,kDAiCC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport * as api from \"@fluidframework/driver-definitions\";\nimport { IClient } from \"@fluidframework/protocol-definitions\";\nimport { FileDeltaStorageService } from \"./fileDeltaStorageService\";\n\n/**\n * The DocumentService manages the different endpoints for connecting to\n * underlying storage for file document service.\n */\nexport class FileDocumentService implements api.IDocumentService {\n constructor(\n private readonly storage: api.IDocumentStorageService,\n private readonly deltaStorage: FileDeltaStorageService,\n private readonly deltaConnection: api.IDocumentDeltaConnection) {\n }\n\n public dispose() {}\n\n // TODO: Issue-2109 Implement detach container api or put appropriate comment.\n public get resolvedUrl(): api.IResolvedUrl {\n throw new Error(\"Not implemented\");\n }\n\n public async connectToStorage(): Promise<api.IDocumentStorageService> {\n return this.storage;\n }\n\n public async connectToDeltaStorage(): Promise<api.IDocumentDeltaStorageService> {\n return this.deltaStorage;\n }\n\n /**\n * Connects to a delta storage endpoint of provided documentService to get ops and then replaying\n * them so as to mimic a delta stream endpoint.\n *\n * @param client - Client that connects to socket.\n * @returns returns the delta stream service.\n */\n public async connectToDeltaStream(\n client: IClient): Promise<api.IDocumentDeltaConnection> {\n return this.deltaConnection;\n }\n}\n"]}
1
+ {"version":3,"file":"fileDocumentService.js","sourceRoot":"","sources":["../src/fileDocumentService.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAMH;;;GAGG;AACH,4CAA4C;AAC5C,MAAa,mBAAmB;IAC5B,YACqB,OAAoC,EACpC,YAAqC,EACrC,eAA6C;QAF7C,YAAO,GAAP,OAAO,CAA6B;QACpC,iBAAY,GAAZ,YAAY,CAAyB;QACrC,oBAAe,GAAf,eAAe,CAA8B;IAClE,CAAC;IAEM,OAAO,KAAI,CAAC;IAEnB,8EAA8E;IAC9E,IAAW,WAAW;QAClB,MAAM,IAAI,KAAK,CAAC,iBAAiB,CAAC,CAAC;IACvC,CAAC;IAEM,KAAK,CAAC,gBAAgB;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC;IACxB,CAAC;IAEM,KAAK,CAAC,qBAAqB;QAC9B,OAAO,IAAI,CAAC,YAAY,CAAC;IAC7B,CAAC;IAED;;;;;;OAMG;IACI,KAAK,CAAC,oBAAoB,CAC7B,MAAe;QACf,OAAO,IAAI,CAAC,eAAe,CAAC;IAChC,CAAC;CACJ;AAjCD,kDAiCC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nimport * as api from \"@fluidframework/driver-definitions\";\nimport { IClient } from \"@fluidframework/protocol-definitions\";\nimport { FileDeltaStorageService } from \"./fileDeltaStorageService\";\n\n/**\n * The DocumentService manages the different endpoints for connecting to\n * underlying storage for file document service.\n */\n// eslint-disable-next-line import/namespace\nexport class FileDocumentService implements api.IDocumentService {\n constructor(\n private readonly storage: api.IDocumentStorageService,\n private readonly deltaStorage: FileDeltaStorageService,\n private readonly deltaConnection: api.IDocumentDeltaConnection) {\n }\n\n public dispose() {}\n\n // TODO: Issue-2109 Implement detach container api or put appropriate comment.\n public get resolvedUrl(): api.IResolvedUrl {\n throw new Error(\"Not implemented\");\n }\n\n public async connectToStorage(): Promise<api.IDocumentStorageService> {\n return this.storage;\n }\n\n public async connectToDeltaStorage(): Promise<api.IDocumentDeltaStorageService> {\n return this.deltaStorage;\n }\n\n /**\n * Connects to a delta storage endpoint of provided documentService to get ops and then replaying\n * them so as to mimic a delta stream endpoint.\n *\n * @param client - Client that connects to socket.\n * @returns returns the delta stream service.\n */\n public async connectToDeltaStream(\n client: IClient): Promise<api.IDocumentDeltaConnection> {\n return this.deltaConnection;\n }\n}\n"]}
package/dist/index.d.ts CHANGED
@@ -2,9 +2,9 @@
2
2
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
3
  * Licensed under the MIT License.
4
4
  */
5
- export * from "./fileDeltaStorageService";
6
- export * from "./fileDocumentService";
7
- export * from "./fileDocumentServiceFactory";
8
- export * from "./fileDocumentDeltaConnection";
9
- export * from "./fileDocumentStorageService";
5
+ export { FileDeltaStorageService } from "./fileDeltaStorageService";
6
+ export { FileDocumentService } from "./fileDocumentService";
7
+ export { FileDocumentServiceFactory } from "./fileDocumentServiceFactory";
8
+ export { Replayer, ReplayFileDeltaConnection } from "./fileDocumentDeltaConnection";
9
+ export { FileSnapshotWriterClassFactory, FileStorageDocumentName, FluidFetchReader, FluidFetchReaderFileSnapshotWriter, ISnapshotWriterStorage, ReaderConstructor, } from "./fileDocumentStorageService";
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,2BAA2B,CAAC;AAC1C,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,+BAA+B,CAAC;AAC9C,cAAc,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,QAAQ,EAAE,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AACpF,OAAO,EACN,8BAA8B,EAC9B,uBAAuB,EACvB,gBAAgB,EAChB,kCAAkC,EAClC,sBAAsB,EACtB,iBAAiB,GACjB,MAAM,8BAA8B,CAAC"}
package/dist/index.js CHANGED
@@ -3,20 +3,20 @@
3
3
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
4
4
  * Licensed under the MIT License.
5
5
  */
6
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
- if (k2 === undefined) k2 = k;
8
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
6
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./fileDeltaStorageService"), exports);
18
- __exportStar(require("./fileDocumentService"), exports);
19
- __exportStar(require("./fileDocumentServiceFactory"), exports);
20
- __exportStar(require("./fileDocumentDeltaConnection"), exports);
21
- __exportStar(require("./fileDocumentStorageService"), exports);
7
+ exports.FluidFetchReaderFileSnapshotWriter = exports.FluidFetchReader = exports.FileStorageDocumentName = exports.FileSnapshotWriterClassFactory = exports.ReplayFileDeltaConnection = exports.Replayer = exports.FileDocumentServiceFactory = exports.FileDocumentService = exports.FileDeltaStorageService = void 0;
8
+ var fileDeltaStorageService_1 = require("./fileDeltaStorageService");
9
+ Object.defineProperty(exports, "FileDeltaStorageService", { enumerable: true, get: function () { return fileDeltaStorageService_1.FileDeltaStorageService; } });
10
+ var fileDocumentService_1 = require("./fileDocumentService");
11
+ Object.defineProperty(exports, "FileDocumentService", { enumerable: true, get: function () { return fileDocumentService_1.FileDocumentService; } });
12
+ var fileDocumentServiceFactory_1 = require("./fileDocumentServiceFactory");
13
+ Object.defineProperty(exports, "FileDocumentServiceFactory", { enumerable: true, get: function () { return fileDocumentServiceFactory_1.FileDocumentServiceFactory; } });
14
+ var fileDocumentDeltaConnection_1 = require("./fileDocumentDeltaConnection");
15
+ Object.defineProperty(exports, "Replayer", { enumerable: true, get: function () { return fileDocumentDeltaConnection_1.Replayer; } });
16
+ Object.defineProperty(exports, "ReplayFileDeltaConnection", { enumerable: true, get: function () { return fileDocumentDeltaConnection_1.ReplayFileDeltaConnection; } });
17
+ var fileDocumentStorageService_1 = require("./fileDocumentStorageService");
18
+ Object.defineProperty(exports, "FileSnapshotWriterClassFactory", { enumerable: true, get: function () { return fileDocumentStorageService_1.FileSnapshotWriterClassFactory; } });
19
+ Object.defineProperty(exports, "FileStorageDocumentName", { enumerable: true, get: function () { return fileDocumentStorageService_1.FileStorageDocumentName; } });
20
+ Object.defineProperty(exports, "FluidFetchReader", { enumerable: true, get: function () { return fileDocumentStorageService_1.FluidFetchReader; } });
21
+ Object.defineProperty(exports, "FluidFetchReaderFileSnapshotWriter", { enumerable: true, get: function () { return fileDocumentStorageService_1.FluidFetchReaderFileSnapshotWriter; } });
22
22
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;AAEH,4DAA0C;AAC1C,wDAAsC;AACtC,+DAA6C;AAC7C,gEAA8C;AAC9C,+DAA6C","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"./fileDeltaStorageService\";\nexport * from \"./fileDocumentService\";\nexport * from \"./fileDocumentServiceFactory\";\nexport * from \"./fileDocumentDeltaConnection\";\nexport * from \"./fileDocumentStorageService\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,qEAAoE;AAA3D,kIAAA,uBAAuB,OAAA;AAChC,6DAA4D;AAAnD,0HAAA,mBAAmB,OAAA;AAC5B,2EAA0E;AAAjE,wIAAA,0BAA0B,OAAA;AACnC,6EAAoF;AAA3E,uHAAA,QAAQ,OAAA;AAAE,wIAAA,yBAAyB,OAAA;AAC5C,2EAOsC;AANrC,4IAAA,8BAA8B,OAAA;AAC9B,qIAAA,uBAAuB,OAAA;AACvB,8HAAA,gBAAgB,OAAA;AAChB,gJAAA,kCAAkC,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { FileDeltaStorageService } from \"./fileDeltaStorageService\";\nexport { FileDocumentService } from \"./fileDocumentService\";\nexport { FileDocumentServiceFactory } from \"./fileDocumentServiceFactory\";\nexport { Replayer, ReplayFileDeltaConnection } from \"./fileDocumentDeltaConnection\";\nexport {\n\tFileSnapshotWriterClassFactory,\n\tFileStorageDocumentName,\n\tFluidFetchReader,\n\tFluidFetchReaderFileSnapshotWriter,\n\tISnapshotWriterStorage,\n\tReaderConstructor,\n} from \"./fileDocumentStorageService\";\n"]}
@@ -5,5 +5,5 @@
5
5
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
6
6
  */
7
7
  export declare const pkgName = "@fluidframework/file-driver";
8
- export declare const pkgVersion = "2.0.0-internal.2.0.4";
8
+ export declare const pkgVersion = "2.0.0-internal.2.1.1";
9
9
  //# sourceMappingURL=packageVersion.d.ts.map
@@ -8,5 +8,5 @@
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
9
  exports.pkgVersion = exports.pkgName = void 0;
10
10
  exports.pkgName = "@fluidframework/file-driver";
11
- exports.pkgVersion = "2.0.0-internal.2.0.4";
11
+ exports.pkgVersion = "2.0.0-internal.2.1.1";
12
12
  //# sourceMappingURL=packageVersion.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,6BAA6B,CAAC;AACxC,QAAA,UAAU,GAAG,sBAAsB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/file-driver\";\nexport const pkgVersion = \"2.0.0-internal.2.0.4\";\n"]}
1
+ {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,6BAA6B,CAAC;AACxC,QAAA,UAAU,GAAG,sBAAsB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/file-driver\";\nexport const pkgVersion = \"2.0.0-internal.2.1.1\";\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/file-driver",
3
- "version": "2.0.0-internal.2.0.4",
3
+ "version": "2.0.0-internal.2.1.1",
4
4
  "description": "A driver that reads/write from/to local file storage.",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -28,22 +28,21 @@
28
28
  "lint": "npm run eslint",
29
29
  "lint:fix": "npm run eslint:fix",
30
30
  "tsc": "tsc",
31
- "tsfmt": "tsfmt --verify",
32
- "tsfmt:fix": "tsfmt --replace",
33
31
  "typetests:gen": "fluid-type-validator -g -d ."
34
32
  },
35
33
  "dependencies": {
36
34
  "@fluidframework/common-definitions": "^0.20.1",
37
35
  "@fluidframework/common-utils": "^1.0.0",
38
- "@fluidframework/driver-definitions": ">=2.0.0-internal.2.0.4 <2.0.0-internal.3.0.0",
39
- "@fluidframework/driver-utils": ">=2.0.0-internal.2.0.4 <2.0.0-internal.3.0.0",
36
+ "@fluidframework/driver-definitions": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
37
+ "@fluidframework/driver-utils": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0",
40
38
  "@fluidframework/protocol-definitions": "^1.1.0",
41
- "@fluidframework/replay-driver": ">=2.0.0-internal.2.0.4 <2.0.0-internal.3.0.0"
39
+ "@fluidframework/replay-driver": ">=2.0.0-internal.2.1.1 <2.0.0-internal.3.0.0"
42
40
  },
43
41
  "devDependencies": {
44
- "@fluidframework/build-common": "^1.0.0",
45
- "@fluidframework/build-tools": "^0.4.6000",
46
- "@fluidframework/eslint-config-fluid": "^1.0.0",
42
+ "@fluid-tools/build-cli": "^0.5.0",
43
+ "@fluidframework/build-common": "^1.1.0",
44
+ "@fluidframework/build-tools": "^0.5.0",
45
+ "@fluidframework/eslint-config-fluid": "^1.1.0",
47
46
  "@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.0.0-internal.2.0.0",
48
47
  "@microsoft/api-extractor": "^7.22.2",
49
48
  "@rushstack/eslint-config": "^2.5.1",
@@ -52,11 +51,10 @@
52
51
  "copyfiles": "^2.4.1",
53
52
  "eslint": "~8.6.0",
54
53
  "rimraf": "^2.6.2",
55
- "typescript": "~4.5.5",
56
- "typescript-formatter": "7.1.0"
54
+ "typescript": "~4.5.5"
57
55
  },
58
56
  "typeValidation": {
59
- "version": "2.0.0-internal.2.0.1",
57
+ "version": "2.0.0-internal.2.1.0",
60
58
  "broken": {}
61
59
  }
62
60
  }
@@ -11,6 +11,7 @@ import { FileDeltaStorageService } from "./fileDeltaStorageService";
11
11
  * The DocumentService manages the different endpoints for connecting to
12
12
  * underlying storage for file document service.
13
13
  */
14
+ // eslint-disable-next-line import/namespace
14
15
  export class FileDocumentService implements api.IDocumentService {
15
16
  constructor(
16
17
  private readonly storage: api.IDocumentStorageService,
package/src/index.ts CHANGED
@@ -3,8 +3,15 @@
3
3
  * Licensed under the MIT License.
4
4
  */
5
5
 
6
- export * from "./fileDeltaStorageService";
7
- export * from "./fileDocumentService";
8
- export * from "./fileDocumentServiceFactory";
9
- export * from "./fileDocumentDeltaConnection";
10
- export * from "./fileDocumentStorageService";
6
+ export { FileDeltaStorageService } from "./fileDeltaStorageService";
7
+ export { FileDocumentService } from "./fileDocumentService";
8
+ export { FileDocumentServiceFactory } from "./fileDocumentServiceFactory";
9
+ export { Replayer, ReplayFileDeltaConnection } from "./fileDocumentDeltaConnection";
10
+ export {
11
+ FileSnapshotWriterClassFactory,
12
+ FileStorageDocumentName,
13
+ FluidFetchReader,
14
+ FluidFetchReaderFileSnapshotWriter,
15
+ ISnapshotWriterStorage,
16
+ ReaderConstructor,
17
+ } from "./fileDocumentStorageService";
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  export const pkgName = "@fluidframework/file-driver";
9
- export const pkgVersion = "2.0.0-internal.2.0.4";
9
+ export const pkgVersion = "2.0.0-internal.2.1.1";