fluid-framework 1.3.0-97515 → 1.4.0-106438
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/dist/containerDefinitions.d.ts +1 -1
- package/dist/containerDefinitions.d.ts.map +1 -1
- package/dist/containerDefinitions.js +2 -1
- package/dist/containerDefinitions.js.map +1 -1
- package/dist/driverDefinitions.d.ts +6 -0
- package/dist/driverDefinitions.d.ts.map +1 -0
- package/dist/driverDefinitions.js +10 -0
- package/dist/driverDefinitions.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/containerDefinitions.d.ts +1 -1
- package/lib/containerDefinitions.d.ts.map +1 -1
- package/lib/containerDefinitions.js +1 -1
- package/lib/containerDefinitions.js.map +1 -1
- package/lib/driverDefinitions.d.ts +6 -0
- package/lib/driverDefinitions.d.ts.map +1 -0
- package/lib/driverDefinitions.js +6 -0
- package/lib/driverDefinitions.js.map +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/package.json +7 -6
- package/src/containerDefinitions.ts +5 -1
- package/src/driverDefinitions.ts +6 -0
- package/src/index.ts +1 -0
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
export { AttachState } from "@fluidframework/container-definitions";
|
|
5
|
+
export { AttachState, ContainerErrorType, ICriticalContainerError, } from "@fluidframework/container-definitions";
|
|
6
6
|
//# sourceMappingURL=containerDefinitions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"containerDefinitions.d.ts","sourceRoot":"","sources":["../src/containerDefinitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"containerDefinitions.d.ts","sourceRoot":"","sources":["../src/containerDefinitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACH,WAAW,EACX,kBAAkB,EAClB,uBAAuB,GAC1B,MAAM,uCAAuC,CAAC"}
|
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
* Licensed under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.AttachState = void 0;
|
|
7
|
+
exports.ContainerErrorType = exports.AttachState = void 0;
|
|
8
8
|
var container_definitions_1 = require("@fluidframework/container-definitions");
|
|
9
9
|
Object.defineProperty(exports, "AttachState", { enumerable: true, get: function () { return container_definitions_1.AttachState; } });
|
|
10
|
+
Object.defineProperty(exports, "ContainerErrorType", { enumerable: true, get: function () { return container_definitions_1.ContainerErrorType; } });
|
|
10
11
|
//# sourceMappingURL=containerDefinitions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"containerDefinitions.js","sourceRoot":"","sources":["../src/containerDefinitions.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,+
|
|
1
|
+
{"version":3,"file":"containerDefinitions.js","sourceRoot":"","sources":["../src/containerDefinitions.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,+EAI+C;AAH3C,oHAAA,WAAW,OAAA;AACX,2HAAA,kBAAkB,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport {\n AttachState,\n ContainerErrorType,\n ICriticalContainerError,\n} from \"@fluidframework/container-definitions\";\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"driverDefinitions.d.ts","sourceRoot":"","sources":["../src/driverDefinitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*!
|
|
3
|
+
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
4
|
+
* Licensed under the MIT License.
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.DriverErrorType = void 0;
|
|
8
|
+
var driver_definitions_1 = require("@fluidframework/driver-definitions");
|
|
9
|
+
Object.defineProperty(exports, "DriverErrorType", { enumerable: true, get: function () { return driver_definitions_1.DriverErrorType; } });
|
|
10
|
+
//# sourceMappingURL=driverDefinitions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"driverDefinitions.js","sourceRoot":"","sources":["../src/driverDefinitions.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,yEAAqE;AAA5D,qHAAA,eAAe,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { DriverErrorType } from \"@fluidframework/driver-definitions\";\n"]}
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -23,6 +23,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
23
23
|
*/
|
|
24
24
|
__exportStar(require("./containerDefinitions"), exports);
|
|
25
25
|
__exportStar(require("./containerLoader"), exports);
|
|
26
|
+
__exportStar(require("./driverDefinitions"), exports);
|
|
26
27
|
__exportStar(require("./fluidStatic"), exports);
|
|
27
28
|
__exportStar(require("./map"), exports);
|
|
28
29
|
__exportStar(require("./sequence"), exports);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;AAEH;;;;;;GAMG;AAEH,yDAAuC;AACvC,oDAAkC;AAClC,gDAA8B;AAC9B,wCAAsB;AACtB,6CAA2B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * The **fluid-framework** package bundles a collection of Fluid Framework client packages for easy use when paired with\n * a corresponding service client package (for example, `\\@fluidframework/azure-client` or\n * `\\@fluidframework/tinylicious-client`).\n *\n * @packageDocumentation\n */\n\nexport * from \"./containerDefinitions\";\nexport * from \"./containerLoader\";\nexport * from \"./fluidStatic\";\nexport * from \"./map\";\nexport * from \"./sequence\";\n"]}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;AAEH;;;;;;GAMG;AAEH,yDAAuC;AACvC,oDAAkC;AAClC,sDAAoC;AACpC,gDAA8B;AAC9B,wCAAsB;AACtB,6CAA2B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * The **fluid-framework** package bundles a collection of Fluid Framework client packages for easy use when paired with\n * a corresponding service client package (for example, `\\@fluidframework/azure-client` or\n * `\\@fluidframework/tinylicious-client`).\n *\n * @packageDocumentation\n */\n\nexport * from \"./containerDefinitions\";\nexport * from \"./containerLoader\";\nexport * from \"./driverDefinitions\";\nexport * from \"./fluidStatic\";\nexport * from \"./map\";\nexport * from \"./sequence\";\n"]}
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
export { AttachState } from "@fluidframework/container-definitions";
|
|
5
|
+
export { AttachState, ContainerErrorType, ICriticalContainerError, } from "@fluidframework/container-definitions";
|
|
6
6
|
//# sourceMappingURL=containerDefinitions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"containerDefinitions.d.ts","sourceRoot":"","sources":["../src/containerDefinitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"containerDefinitions.d.ts","sourceRoot":"","sources":["../src/containerDefinitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACH,WAAW,EACX,kBAAkB,EAClB,uBAAuB,GAC1B,MAAM,uCAAuC,CAAC"}
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
export { AttachState } from "@fluidframework/container-definitions";
|
|
5
|
+
export { AttachState, ContainerErrorType, } from "@fluidframework/container-definitions";
|
|
6
6
|
//# sourceMappingURL=containerDefinitions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"containerDefinitions.js","sourceRoot":"","sources":["../src/containerDefinitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"containerDefinitions.js","sourceRoot":"","sources":["../src/containerDefinitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EACH,WAAW,EACX,kBAAkB,GAErB,MAAM,uCAAuC,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport {\n AttachState,\n ContainerErrorType,\n ICriticalContainerError,\n} from \"@fluidframework/container-definitions\";\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"driverDefinitions.d.ts","sourceRoot":"","sources":["../src/driverDefinitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"driverDefinitions.js","sourceRoot":"","sources":["../src/driverDefinitions.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,oCAAoC,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { DriverErrorType } from \"@fluidframework/driver-definitions\";\n"]}
|
package/lib/index.d.ts
CHANGED
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;AAEH;;;;;;GAMG;AAEH,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC"}
|
package/lib/index.js
CHANGED
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * The **fluid-framework** package bundles a collection of Fluid Framework client packages for easy use when paired with\n * a corresponding service client package (for example, `\\@fluidframework/azure-client` or\n * `\\@fluidframework/tinylicious-client`).\n *\n * @packageDocumentation\n */\n\nexport * from \"./containerDefinitions\";\nexport * from \"./containerLoader\";\nexport * from \"./fluidStatic\";\nexport * from \"./map\";\nexport * from \"./sequence\";\n"]}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,cAAc,wBAAwB,CAAC;AACvC,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,eAAe,CAAC;AAC9B,cAAc,OAAO,CAAC;AACtB,cAAc,YAAY,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\n/**\n * The **fluid-framework** package bundles a collection of Fluid Framework client packages for easy use when paired with\n * a corresponding service client package (for example, `\\@fluidframework/azure-client` or\n * `\\@fluidframework/tinylicious-client`).\n *\n * @packageDocumentation\n */\n\nexport * from \"./containerDefinitions\";\nexport * from \"./containerLoader\";\nexport * from \"./driverDefinitions\";\nexport * from \"./fluidStatic\";\nexport * from \"./map\";\nexport * from \"./sequence\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluid-framework",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0-106438",
|
|
4
4
|
"description": "The main entry point into Fluid Framework public packages",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -35,11 +35,12 @@
|
|
|
35
35
|
"typetests:gen": "fluid-type-validator -g -d ."
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@fluidframework/container-definitions": "1.
|
|
39
|
-
"@fluidframework/container-loader": "1.
|
|
40
|
-
"@fluidframework/
|
|
41
|
-
"@fluidframework/
|
|
42
|
-
"@fluidframework/
|
|
38
|
+
"@fluidframework/container-definitions": "1.4.0-106438",
|
|
39
|
+
"@fluidframework/container-loader": "1.4.0-106438",
|
|
40
|
+
"@fluidframework/driver-definitions": "1.4.0-106438",
|
|
41
|
+
"@fluidframework/fluid-static": "1.4.0-106438",
|
|
42
|
+
"@fluidframework/map": "1.4.0-106438",
|
|
43
|
+
"@fluidframework/sequence": "1.4.0-106438"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
46
|
"@fluidframework/build-common": "^0.24.0",
|