fluid-framework 2.0.0-internal.1.1.2 → 2.0.0-internal.1.2.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.
- package/dist/index.d.ts +8 -8
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -8
- package/dist/index.js.map +1 -1
- package/lib/index.d.ts +8 -8
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +8 -8
- package/lib/index.js.map +1 -1
- package/package.json +11 -11
- package/src/index.ts +8 -8
- package/dist/containerDefinitions.d.ts +0 -6
- package/dist/containerDefinitions.d.ts.map +0 -1
- package/dist/containerDefinitions.js +0 -10
- package/dist/containerDefinitions.js.map +0 -1
- package/dist/containerLoader.d.ts +0 -6
- package/dist/containerLoader.d.ts.map +0 -1
- package/dist/containerLoader.js +0 -10
- package/dist/containerLoader.js.map +0 -1
- package/dist/fluidStatic.d.ts +0 -6
- package/dist/fluidStatic.d.ts.map +0 -1
- package/dist/fluidStatic.js +0 -18
- package/dist/fluidStatic.js.map +0 -1
- package/dist/map.d.ts +0 -6
- package/dist/map.d.ts.map +0 -1
- package/dist/map.js +0 -18
- package/dist/map.js.map +0 -1
- package/dist/sequence.d.ts +0 -6
- package/dist/sequence.d.ts.map +0 -1
- package/dist/sequence.js +0 -18
- package/dist/sequence.js.map +0 -1
- package/lib/containerDefinitions.d.ts +0 -6
- package/lib/containerDefinitions.d.ts.map +0 -1
- package/lib/containerDefinitions.js +0 -6
- package/lib/containerDefinitions.js.map +0 -1
- package/lib/containerLoader.d.ts +0 -6
- package/lib/containerLoader.d.ts.map +0 -1
- package/lib/containerLoader.js +0 -6
- package/lib/containerLoader.js.map +0 -1
- package/lib/fluidStatic.d.ts +0 -6
- package/lib/fluidStatic.d.ts.map +0 -1
- package/lib/fluidStatic.js +0 -6
- package/lib/fluidStatic.js.map +0 -1
- package/lib/map.d.ts +0 -6
- package/lib/map.d.ts.map +0 -1
- package/lib/map.js +0 -6
- package/lib/map.js.map +0 -1
- package/lib/sequence.d.ts +0 -6
- package/lib/sequence.d.ts.map +0 -1
- package/lib/sequence.js +0 -6
- package/lib/sequence.js.map +0 -1
- package/src/containerDefinitions.ts +0 -6
- package/src/containerLoader.ts +0 -6
- package/src/fluidStatic.ts +0 -6
- package/src/map.ts +0 -6
- package/src/sequence.ts +0 -6
package/dist/index.d.ts
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
|
-
* The **fluid-framework** package bundles a collection of Fluid Framework client
|
|
7
|
-
* a corresponding service client
|
|
8
|
-
* `\@fluidframework/tinylicious-client`).
|
|
6
|
+
* The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use
|
|
7
|
+
* when paired with a corresponding service client library (for example,
|
|
8
|
+
* `\@fluidframework/azure-client` or `\@fluidframework/tinylicious-client`).
|
|
9
9
|
*
|
|
10
10
|
* @packageDocumentation
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export * from "
|
|
15
|
-
export * from "
|
|
16
|
-
export * from "
|
|
12
|
+
export { AttachState } from "@fluidframework/container-definitions";
|
|
13
|
+
export { ConnectionState } from "@fluidframework/container-loader";
|
|
14
|
+
export * from "@fluidframework/fluid-static";
|
|
15
|
+
export * from "@fluidframework/map";
|
|
16
|
+
export * from "@fluidframework/sequence";
|
|
17
17
|
//# sourceMappingURL=index.d.ts.map
|
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,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -14,16 +14,19 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.ConnectionState = exports.AttachState = void 0;
|
|
17
18
|
/**
|
|
18
|
-
* The **fluid-framework** package bundles a collection of Fluid Framework client
|
|
19
|
-
* a corresponding service client
|
|
20
|
-
* `\@fluidframework/tinylicious-client`).
|
|
19
|
+
* The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use
|
|
20
|
+
* when paired with a corresponding service client library (for example,
|
|
21
|
+
* `\@fluidframework/azure-client` or `\@fluidframework/tinylicious-client`).
|
|
21
22
|
*
|
|
22
23
|
* @packageDocumentation
|
|
23
24
|
*/
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
__exportStar(require("
|
|
25
|
+
var container_definitions_1 = require("@fluidframework/container-definitions");
|
|
26
|
+
Object.defineProperty(exports, "AttachState", { enumerable: true, get: function () { return container_definitions_1.AttachState; } });
|
|
27
|
+
var container_loader_1 = require("@fluidframework/container-loader");
|
|
28
|
+
Object.defineProperty(exports, "ConnectionState", { enumerable: true, get: function () { return container_loader_1.ConnectionState; } });
|
|
29
|
+
__exportStar(require("@fluidframework/fluid-static"), exports);
|
|
30
|
+
__exportStar(require("@fluidframework/map"), exports);
|
|
31
|
+
__exportStar(require("@fluidframework/sequence"), exports);
|
|
29
32
|
//# 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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;;AAEH;;;;;;GAMG;AAEH,+EAAoE;AAA3D,oHAAA,WAAW,OAAA;AACpB,qEAAmE;AAA1D,mHAAA,eAAe,OAAA;AACxB,+DAA6C;AAC7C,sDAAoC;AACpC,2DAAyC","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 libraries for easy use\n * when paired with a corresponding service client library (for example,\n * `\\@fluidframework/azure-client` or `\\@fluidframework/tinylicious-client`).\n *\n * @packageDocumentation\n */\n\nexport { AttachState } from \"@fluidframework/container-definitions\";\nexport { ConnectionState } from \"@fluidframework/container-loader\";\nexport * from \"@fluidframework/fluid-static\";\nexport * from \"@fluidframework/map\";\nexport * from \"@fluidframework/sequence\";\n"]}
|
package/lib/index.d.ts
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
|
-
* The **fluid-framework** package bundles a collection of Fluid Framework client
|
|
7
|
-
* a corresponding service client
|
|
8
|
-
* `\@fluidframework/tinylicious-client`).
|
|
6
|
+
* The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use
|
|
7
|
+
* when paired with a corresponding service client library (for example,
|
|
8
|
+
* `\@fluidframework/azure-client` or `\@fluidframework/tinylicious-client`).
|
|
9
9
|
*
|
|
10
10
|
* @packageDocumentation
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export * from "
|
|
15
|
-
export * from "
|
|
16
|
-
export * from "
|
|
12
|
+
export { AttachState } from "@fluidframework/container-definitions";
|
|
13
|
+
export { ConnectionState } from "@fluidframework/container-loader";
|
|
14
|
+
export * from "@fluidframework/fluid-static";
|
|
15
|
+
export * from "@fluidframework/map";
|
|
16
|
+
export * from "@fluidframework/sequence";
|
|
17
17
|
//# 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;AAEH;;;;;;GAMG;AAEH,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,CAAC"}
|
package/lib/index.js
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
5
|
/**
|
|
6
|
-
* The **fluid-framework** package bundles a collection of Fluid Framework client
|
|
7
|
-
* a corresponding service client
|
|
8
|
-
* `\@fluidframework/tinylicious-client`).
|
|
6
|
+
* The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use
|
|
7
|
+
* when paired with a corresponding service client library (for example,
|
|
8
|
+
* `\@fluidframework/azure-client` or `\@fluidframework/tinylicious-client`).
|
|
9
9
|
*
|
|
10
10
|
* @packageDocumentation
|
|
11
11
|
*/
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export * from "
|
|
15
|
-
export * from "
|
|
16
|
-
export * from "
|
|
12
|
+
export { AttachState } from "@fluidframework/container-definitions";
|
|
13
|
+
export { ConnectionState } from "@fluidframework/container-loader";
|
|
14
|
+
export * from "@fluidframework/fluid-static";
|
|
15
|
+
export * from "@fluidframework/map";
|
|
16
|
+
export * from "@fluidframework/sequence";
|
|
17
17
|
//# sourceMappingURL=index.js.map
|
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,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH;;;;;;GAMG;AAEH,OAAO,EAAE,WAAW,EAAE,MAAM,uCAAuC,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC;AACnE,cAAc,8BAA8B,CAAC;AAC7C,cAAc,qBAAqB,CAAC;AACpC,cAAc,0BAA0B,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 libraries for easy use\n * when paired with a corresponding service client library (for example,\n * `\\@fluidframework/azure-client` or `\\@fluidframework/tinylicious-client`).\n *\n * @packageDocumentation\n */\n\nexport { AttachState } from \"@fluidframework/container-definitions\";\nexport { ConnectionState } from \"@fluidframework/container-loader\";\nexport * from \"@fluidframework/fluid-static\";\nexport * from \"@fluidframework/map\";\nexport * from \"@fluidframework/sequence\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluid-framework",
|
|
3
|
-
"version": "2.0.0-internal.1.
|
|
3
|
+
"version": "2.0.0-internal.1.2.0",
|
|
4
4
|
"description": "The main entry point into Fluid Framework public packages",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"module": "lib/index.js",
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"scripts": {
|
|
18
|
-
"build": "concurrently npm:build:compile npm:lint",
|
|
18
|
+
"build": "concurrently npm:build:compile npm:lint && npm run build:docs",
|
|
19
19
|
"build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test",
|
|
20
20
|
"build:compile": "concurrently npm:build:commonjs npm:build:esnext",
|
|
21
21
|
"build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"build:full:compile": "npm run build:compile",
|
|
25
25
|
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
26
26
|
"ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/",
|
|
27
|
-
"clean": "rimraf dist *.tsbuildinfo *.build.log",
|
|
27
|
+
"clean": "rimraf _api-extractor-temp dist lib *.tsbuildinfo *.build.log",
|
|
28
28
|
"eslint": "eslint --format stylish src",
|
|
29
29
|
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
30
30
|
"lint": "npm run eslint",
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
"typetests:gen": "fluid-type-validator -g -d ."
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@fluidframework/container-definitions": "^2.0.0-internal.1.
|
|
39
|
-
"@fluidframework/container-loader": "^2.0.0-internal.1.
|
|
40
|
-
"@fluidframework/fluid-static": "^2.0.0-internal.1.
|
|
41
|
-
"@fluidframework/map": "^2.0.0-internal.1.
|
|
42
|
-
"@fluidframework/sequence": "^2.0.0-internal.1.
|
|
38
|
+
"@fluidframework/container-definitions": "^2.0.0-internal.1.2.0",
|
|
39
|
+
"@fluidframework/container-loader": "^2.0.0-internal.1.2.0",
|
|
40
|
+
"@fluidframework/fluid-static": "^2.0.0-internal.1.2.0",
|
|
41
|
+
"@fluidframework/map": "^2.0.0-internal.1.2.0",
|
|
42
|
+
"@fluidframework/sequence": "^2.0.0-internal.1.2.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@fluidframework/build-common": "^0.
|
|
46
|
-
"@fluidframework/build-tools": "^0.
|
|
47
|
-
"@fluidframework/eslint-config-fluid": "^0.
|
|
45
|
+
"@fluidframework/build-common": "^1.0.0",
|
|
46
|
+
"@fluidframework/build-tools": "^0.4.4000",
|
|
47
|
+
"@fluidframework/eslint-config-fluid": "^1.0.0",
|
|
48
48
|
"@microsoft/api-extractor": "^7.22.2",
|
|
49
49
|
"@rushstack/eslint-config": "^2.5.1",
|
|
50
50
|
"@types/node": "^14.18.0",
|
package/src/index.ts
CHANGED
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
|
-
* The **fluid-framework** package bundles a collection of Fluid Framework client
|
|
8
|
-
* a corresponding service client
|
|
9
|
-
* `\@fluidframework/tinylicious-client`).
|
|
7
|
+
* The **fluid-framework** package bundles a collection of Fluid Framework client libraries for easy use
|
|
8
|
+
* when paired with a corresponding service client library (for example,
|
|
9
|
+
* `\@fluidframework/azure-client` or `\@fluidframework/tinylicious-client`).
|
|
10
10
|
*
|
|
11
11
|
* @packageDocumentation
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export * from "
|
|
17
|
-
export * from "
|
|
18
|
-
export * from "
|
|
14
|
+
export { AttachState } from "@fluidframework/container-definitions";
|
|
15
|
+
export { ConnectionState } from "@fluidframework/container-loader";
|
|
16
|
+
export * from "@fluidframework/fluid-static";
|
|
17
|
+
export * from "@fluidframework/map";
|
|
18
|
+
export * from "@fluidframework/sequence";
|
|
@@ -1 +0,0 @@
|
|
|
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,10 +0,0 @@
|
|
|
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.AttachState = void 0;
|
|
8
|
-
var container_definitions_1 = require("@fluidframework/container-definitions");
|
|
9
|
-
Object.defineProperty(exports, "AttachState", { enumerable: true, get: function () { return container_definitions_1.AttachState; } });
|
|
10
|
-
//# sourceMappingURL=containerDefinitions.js.map
|
|
@@ -1 +0,0 @@
|
|
|
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 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerLoader.d.ts","sourceRoot":"","sources":["../src/containerLoader.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC"}
|
package/dist/containerLoader.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
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.ConnectionState = void 0;
|
|
8
|
-
var container_loader_1 = require("@fluidframework/container-loader");
|
|
9
|
-
Object.defineProperty(exports, "ConnectionState", { enumerable: true, get: function () { return container_loader_1.ConnectionState; } });
|
|
10
|
-
//# sourceMappingURL=containerLoader.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerLoader.js","sourceRoot":"","sources":["../src/containerLoader.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,qEAAmE;AAA1D,mHAAA,eAAe,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { ConnectionState } from \"@fluidframework/container-loader\";\n"]}
|
package/dist/fluidStatic.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"fluidStatic.d.ts","sourceRoot":"","sources":["../src/fluidStatic.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,8BAA8B,CAAC"}
|
package/dist/fluidStatic.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*!
|
|
3
|
-
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
4
|
-
* Licensed under the MIT License.
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("@fluidframework/fluid-static"), exports);
|
|
18
|
-
//# sourceMappingURL=fluidStatic.js.map
|
package/dist/fluidStatic.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"fluidStatic.js","sourceRoot":"","sources":["../src/fluidStatic.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;AAEH,+DAA6C","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"@fluidframework/fluid-static\";\n"]}
|
package/dist/map.d.ts
DELETED
package/dist/map.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"map.d.ts","sourceRoot":"","sources":["../src/map.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,qBAAqB,CAAC"}
|
package/dist/map.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*!
|
|
3
|
-
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
4
|
-
* Licensed under the MIT License.
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("@fluidframework/map"), exports);
|
|
18
|
-
//# sourceMappingURL=map.js.map
|
package/dist/map.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"map.js","sourceRoot":"","sources":["../src/map.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;AAEH,sDAAoC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"@fluidframework/map\";\n"]}
|
package/dist/sequence.d.ts
DELETED
package/dist/sequence.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sequence.d.ts","sourceRoot":"","sources":["../src/sequence.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,0BAA0B,CAAC"}
|
package/dist/sequence.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*!
|
|
3
|
-
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
4
|
-
* Licensed under the MIT License.
|
|
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
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("@fluidframework/sequence"), exports);
|
|
18
|
-
//# sourceMappingURL=sequence.js.map
|
package/dist/sequence.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sequence.js","sourceRoot":"","sources":["../src/sequence.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;AAEH,2DAAyC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"@fluidframework/sequence\";\n"]}
|
|
@@ -1 +0,0 @@
|
|
|
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 +0,0 @@
|
|
|
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"]}
|
package/lib/containerLoader.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerLoader.d.ts","sourceRoot":"","sources":["../src/containerLoader.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC"}
|
package/lib/containerLoader.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerLoader.js","sourceRoot":"","sources":["../src/containerLoader.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,kCAAkC,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { ConnectionState } from \"@fluidframework/container-loader\";\n"]}
|
package/lib/fluidStatic.d.ts
DELETED
package/lib/fluidStatic.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"fluidStatic.d.ts","sourceRoot":"","sources":["../src/fluidStatic.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,8BAA8B,CAAC"}
|
package/lib/fluidStatic.js
DELETED
package/lib/fluidStatic.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"fluidStatic.js","sourceRoot":"","sources":["../src/fluidStatic.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,8BAA8B,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"@fluidframework/fluid-static\";\n"]}
|
package/lib/map.d.ts
DELETED
package/lib/map.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"map.d.ts","sourceRoot":"","sources":["../src/map.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,qBAAqB,CAAC"}
|
package/lib/map.js
DELETED
package/lib/map.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"map.js","sourceRoot":"","sources":["../src/map.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,qBAAqB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"@fluidframework/map\";\n"]}
|
package/lib/sequence.d.ts
DELETED
package/lib/sequence.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sequence.d.ts","sourceRoot":"","sources":["../src/sequence.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,0BAA0B,CAAC"}
|
package/lib/sequence.js
DELETED
package/lib/sequence.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sequence.js","sourceRoot":"","sources":["../src/sequence.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,0BAA0B,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"@fluidframework/sequence\";\n"]}
|
package/src/containerLoader.ts
DELETED
package/src/fluidStatic.ts
DELETED
package/src/map.ts
DELETED