@fluidframework/aqueduct 2.0.0-internal.3.0.5 → 2.0.0-internal.3.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.
- package/README.md +29 -29
- package/dist/container-runtime-factories/baseContainerRuntimeFactory.d.ts.map +1 -1
- package/dist/container-runtime-factories/baseContainerRuntimeFactory.js +3 -1
- package/dist/container-runtime-factories/baseContainerRuntimeFactory.js.map +1 -1
- package/dist/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.d.ts.map +1 -1
- package/dist/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.js +1 -4
- package/dist/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.js.map +1 -1
- package/dist/container-services/containerServices.d.ts.map +1 -1
- package/dist/container-services/containerServices.js +3 -1
- package/dist/container-services/containerServices.js.map +1 -1
- package/dist/data-object-factories/dataObjectFactory.d.ts.map +1 -1
- package/dist/data-object-factories/dataObjectFactory.js.map +1 -1
- package/dist/data-object-factories/pureDataObjectFactory.d.ts.map +1 -1
- package/dist/data-object-factories/pureDataObjectFactory.js +4 -2
- package/dist/data-object-factories/pureDataObjectFactory.js.map +1 -1
- package/dist/data-objects/dataObject.d.ts.map +1 -1
- package/dist/data-objects/dataObject.js +1 -1
- package/dist/data-objects/dataObject.js.map +1 -1
- package/dist/data-objects/pureDataObject.d.ts.map +1 -1
- package/dist/data-objects/pureDataObject.js +15 -5
- package/dist/data-objects/pureDataObject.js.map +1 -1
- package/dist/data-objects/types.d.ts.map +1 -1
- package/dist/data-objects/types.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/request-handlers/requestHandlers.d.ts +1 -1
- package/dist/request-handlers/requestHandlers.d.ts.map +1 -1
- package/dist/request-handlers/requestHandlers.js +4 -2
- package/dist/request-handlers/requestHandlers.js.map +1 -1
- package/dist/test/containerServices.spec.js +15 -4
- package/dist/test/containerServices.spec.js.map +1 -1
- package/dist/test/defaultRoute.spec.js +3 -1
- package/dist/test/defaultRoute.spec.js.map +1 -1
- package/dist/test/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/attachUtils.js +3 -1
- package/dist/utils/attachUtils.js.map +1 -1
- package/dist/utils/containerInteractions.d.ts.map +1 -1
- package/dist/utils/containerInteractions.js.map +1 -1
- package/lib/container-runtime-factories/baseContainerRuntimeFactory.js +5 -3
- package/lib/container-runtime-factories/baseContainerRuntimeFactory.js.map +1 -1
- package/lib/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.js +1 -4
- package/lib/container-runtime-factories/containerRuntimeFactoryWithDefaultDataStore.js.map +1 -1
- package/lib/container-services/containerServices.js +3 -1
- package/lib/container-services/containerServices.js.map +1 -1
- package/lib/data-object-factories/dataObjectFactory.js +1 -1
- package/lib/data-object-factories/dataObjectFactory.js.map +1 -1
- package/lib/data-object-factories/pureDataObjectFactory.js +4 -2
- package/lib/data-object-factories/pureDataObjectFactory.js.map +1 -1
- package/lib/data-objects/dataObject.js +1 -1
- package/lib/data-objects/dataObject.js.map +1 -1
- package/lib/data-objects/pureDataObject.js +15 -5
- package/lib/data-objects/pureDataObject.js.map +1 -1
- package/lib/data-objects/types.js.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/request-handlers/requestHandlers.js +4 -2
- package/lib/request-handlers/requestHandlers.js.map +1 -1
- package/lib/utils/attachUtils.js +3 -1
- package/lib/utils/attachUtils.js.map +1 -1
- package/lib/utils/containerInteractions.js.map +1 -1
- package/package.json +112 -111
package/package.json
CHANGED
|
@@ -1,113 +1,114 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
2
|
+
"name": "@fluidframework/aqueduct",
|
|
3
|
+
"version": "2.0.0-internal.3.1.1",
|
|
4
|
+
"description": "A set of implementations for Fluid Framework interfaces.",
|
|
5
|
+
"homepage": "https://fluidframework.com",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/microsoft/FluidFramework.git",
|
|
9
|
+
"directory": "packages/framework/aqueduct"
|
|
10
|
+
},
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"author": "Microsoft and contributors",
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"main": "dist/index.js",
|
|
15
|
+
"module": "lib/index.js",
|
|
16
|
+
"types": "dist/index.d.ts",
|
|
17
|
+
"files": [
|
|
18
|
+
"dist/**/*",
|
|
19
|
+
"lib/**/*"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "concurrently npm:build:compile npm:lint && npm run build:docs",
|
|
23
|
+
"build:commonjs": "npm run tsc && npm run typetests:gen && npm run build:test",
|
|
24
|
+
"build:compile": "concurrently npm:build:commonjs npm:build:esnext",
|
|
25
|
+
"build:docs": "api-extractor run --local --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/doc-models/* ../../../_api-extractor-temp/",
|
|
26
|
+
"build:esnext": "tsc --project ./tsconfig.esnext.json",
|
|
27
|
+
"build:full": "npm run build",
|
|
28
|
+
"build:full:compile": "npm run build:compile",
|
|
29
|
+
"build:test": "tsc --project ./src/test/tsconfig.json",
|
|
30
|
+
"ci:build:docs": "api-extractor run --typescript-compiler-folder ../../../node_modules/typescript && copyfiles -u 1 ./_api-extractor-temp/* ../../../_api-extractor-temp/",
|
|
31
|
+
"clean": "rimraf dist lib *.tsbuildinfo *.build.log",
|
|
32
|
+
"eslint": "eslint --format stylish src",
|
|
33
|
+
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout",
|
|
34
|
+
"format": "npm run prettier:fix",
|
|
35
|
+
"lint": "npm run prettier && npm run eslint",
|
|
36
|
+
"lint:fix": "npm run prettier:fix && npm run eslint:fix",
|
|
37
|
+
"prettier": "prettier --check . --ignore-path ../../../.prettierignore",
|
|
38
|
+
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
39
|
+
"test": "npm run test:mocha",
|
|
40
|
+
"test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
|
|
41
|
+
"test:mocha": "mocha --ignore 'dist/test/types/*' --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
|
|
42
|
+
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
43
|
+
"tsc": "tsc",
|
|
44
|
+
"typetests:gen": "flub generate typetests --generate --dir .",
|
|
45
|
+
"typetests:prepare": "flub generate typetests --prepare --dir . --pin"
|
|
46
|
+
},
|
|
47
|
+
"nyc": {
|
|
48
|
+
"all": true,
|
|
49
|
+
"cache-dir": "nyc/.cache",
|
|
50
|
+
"exclude": [
|
|
51
|
+
"src/test/**/*.ts",
|
|
52
|
+
"dist/test/**/*.js"
|
|
53
|
+
],
|
|
54
|
+
"exclude-after-remap": false,
|
|
55
|
+
"include": [
|
|
56
|
+
"src/**/*.ts",
|
|
57
|
+
"dist/**/*.js"
|
|
58
|
+
],
|
|
59
|
+
"report-dir": "nyc/report",
|
|
60
|
+
"reporter": [
|
|
61
|
+
"cobertura",
|
|
62
|
+
"html",
|
|
63
|
+
"text"
|
|
64
|
+
],
|
|
65
|
+
"temp-directory": "nyc/.nyc_output"
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"@fluidframework/common-definitions": "^0.20.1",
|
|
69
|
+
"@fluidframework/common-utils": "^1.0.0",
|
|
70
|
+
"@fluidframework/container-definitions": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
71
|
+
"@fluidframework/container-loader": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
72
|
+
"@fluidframework/container-runtime": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
73
|
+
"@fluidframework/container-runtime-definitions": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
74
|
+
"@fluidframework/core-interfaces": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
75
|
+
"@fluidframework/datastore": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
76
|
+
"@fluidframework/datastore-definitions": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
77
|
+
"@fluidframework/map": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
78
|
+
"@fluidframework/request-handler": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
79
|
+
"@fluidframework/runtime-definitions": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
80
|
+
"@fluidframework/runtime-utils": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
81
|
+
"@fluidframework/synthesize": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
82
|
+
"@fluidframework/view-interfaces": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
83
|
+
"uuid": "^8.3.1"
|
|
84
|
+
},
|
|
85
|
+
"devDependencies": {
|
|
86
|
+
"@fluid-tools/build-cli": "^0.9.0",
|
|
87
|
+
"@fluidframework/aqueduct-previous": "npm:@fluidframework/aqueduct@2.0.0-internal.3.0.1",
|
|
88
|
+
"@fluidframework/build-common": "^1.1.0",
|
|
89
|
+
"@fluidframework/build-tools": "^0.9.0",
|
|
90
|
+
"@fluidframework/eslint-config-fluid": "^2.0.0",
|
|
91
|
+
"@fluidframework/mocha-test-setup": ">=2.0.0-internal.3.1.1 <2.0.0-internal.4.0.0",
|
|
92
|
+
"@microsoft/api-extractor": "^7.22.2",
|
|
93
|
+
"@rushstack/eslint-config": "^2.5.1",
|
|
94
|
+
"@types/mocha": "^9.1.1",
|
|
95
|
+
"@types/node": "^14.18.36",
|
|
96
|
+
"concurrently": "^6.2.0",
|
|
97
|
+
"copyfiles": "^2.4.1",
|
|
98
|
+
"cross-env": "^7.0.2",
|
|
99
|
+
"eslint": "~8.6.0",
|
|
100
|
+
"mocha": "^10.0.0",
|
|
101
|
+
"nyc": "^15.0.0",
|
|
102
|
+
"prettier": "~2.6.2",
|
|
103
|
+
"rimraf": "^2.6.2",
|
|
104
|
+
"typescript": "~4.5.5"
|
|
105
|
+
},
|
|
106
|
+
"module:es5": "es5/index.js",
|
|
107
|
+
"typeValidation": {
|
|
108
|
+
"version": "2.0.0-internal.3.1.1",
|
|
109
|
+
"previousVersionStyle": "~previousMinor",
|
|
110
|
+
"baselineRange": ">=2.0.0-internal.3.0.0 <2.0.0-internal.3.1.0",
|
|
111
|
+
"baselineVersion": "2.0.0-internal.3.0.1",
|
|
112
|
+
"broken": {}
|
|
113
|
+
}
|
|
113
114
|
}
|