fluid-framework 1.3.0-97515 → 1.3.0

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.
@@ -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,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC"}
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,+EAAoE;AAA3D,oHAAA,WAAW,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { AttachState } from \"@fluidframework/container-definitions\";\n"]}
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,6 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ export { DriverErrorType } from "@fluidframework/driver-definitions";
6
+ //# sourceMappingURL=driverDefinitions.d.ts.map
@@ -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
@@ -11,6 +11,7 @@
11
11
  */
12
12
  export * from "./containerDefinitions";
13
13
  export * from "./containerLoader";
14
+ export * from "./driverDefinitions";
14
15
  export * from "./fluidStatic";
15
16
  export * from "./map";
16
17
  export * from "./sequence";
@@ -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,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC"}
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,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { AttachState } from \"@fluidframework/container-definitions\";\n"]}
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,6 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ export { DriverErrorType } from "@fluidframework/driver-definitions";
6
+ //# sourceMappingURL=driverDefinitions.d.ts.map
@@ -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,6 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+ export { DriverErrorType } from "@fluidframework/driver-definitions";
6
+ //# sourceMappingURL=driverDefinitions.js.map
@@ -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
@@ -11,6 +11,7 @@
11
11
  */
12
12
  export * from "./containerDefinitions";
13
13
  export * from "./containerLoader";
14
+ export * from "./driverDefinitions";
14
15
  export * from "./fluidStatic";
15
16
  export * from "./map";
16
17
  export * from "./sequence";
@@ -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
@@ -11,6 +11,7 @@
11
11
  */
12
12
  export * from "./containerDefinitions";
13
13
  export * from "./containerLoader";
14
+ export * from "./driverDefinitions";
14
15
  export * from "./fluidStatic";
15
16
  export * from "./map";
16
17
  export * from "./sequence";
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.0-97515",
3
+ "version": "1.3.0",
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.3.0-97515",
39
- "@fluidframework/container-loader": "1.3.0-97515",
40
- "@fluidframework/fluid-static": "1.3.0-97515",
41
- "@fluidframework/map": "1.3.0-97515",
42
- "@fluidframework/sequence": "1.3.0-97515"
38
+ "@fluidframework/container-definitions": "^1.3.0",
39
+ "@fluidframework/container-loader": "^1.3.0",
40
+ "@fluidframework/driver-definitions": "^1.3.0",
41
+ "@fluidframework/fluid-static": "^1.3.0",
42
+ "@fluidframework/map": "^1.3.0",
43
+ "@fluidframework/sequence": "^1.3.0"
43
44
  },
44
45
  "devDependencies": {
45
46
  "@fluidframework/build-common": "^0.24.0",
@@ -3,4 +3,8 @@
3
3
  * Licensed under the MIT License.
4
4
  */
5
5
 
6
- export { AttachState } from "@fluidframework/container-definitions";
6
+ export {
7
+ AttachState,
8
+ ContainerErrorType,
9
+ ICriticalContainerError,
10
+ } from "@fluidframework/container-definitions";
@@ -0,0 +1,6 @@
1
+ /*!
2
+ * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
+ * Licensed under the MIT License.
4
+ */
5
+
6
+ export { DriverErrorType } from "@fluidframework/driver-definitions";
package/src/index.ts CHANGED
@@ -13,6 +13,7 @@
13
13
 
14
14
  export * from "./containerDefinitions";
15
15
  export * from "./containerLoader";
16
+ export * from "./driverDefinitions";
16
17
  export * from "./fluidStatic";
17
18
  export * from "./map";
18
19
  export * from "./sequence";