@fluid-experimental/dds-interceptions 2.1.0 → 2.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/CHANGELOG.md +4 -0
- package/README.md +2 -2
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This package provides factory methods to create a wrapper around some of the basic Distributed Data Structures (DDS) that support an interception callback. Apps can provide a callback when creating these wrappers and this callback will be called when the DDS is modified. This allows apps to support features such as basic user attribution on a SharedString.
|
|
4
4
|
|
|
5
|
-
<!-- AUTO-GENERATED-CONTENT:START (
|
|
5
|
+
<!-- AUTO-GENERATED-CONTENT:START (LIBRARY_README_HEADER) -->
|
|
6
6
|
|
|
7
7
|
<!-- prettier-ignore-start -->
|
|
8
8
|
<!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
|
|
@@ -96,7 +96,7 @@ The original set operation and any operations in the callback function are batch
|
|
|
96
96
|
|
|
97
97
|
Example: To support a feature like simple user attribution, in the callback, the app can set the user information in a sub directory of the original object against the same key.
|
|
98
98
|
|
|
99
|
-
<!-- AUTO-GENERATED-CONTENT:START (
|
|
99
|
+
<!-- AUTO-GENERATED-CONTENT:START (README_FOOTER) -->
|
|
100
100
|
|
|
101
101
|
<!-- prettier-ignore-start -->
|
|
102
102
|
<!-- NOTE: This section is automatically generated using @fluid-tools/markdown-magic. Do not update these generated contents directly. -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-experimental/dds-interceptions",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Distributed Data Structures that support an interception callback",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -47,21 +47,21 @@
|
|
|
47
47
|
"temp-directory": "nyc/.nyc_output"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@fluidframework/core-utils": "~2.
|
|
51
|
-
"@fluidframework/map": "~2.
|
|
52
|
-
"@fluidframework/merge-tree": "~2.
|
|
53
|
-
"@fluidframework/runtime-definitions": "~2.
|
|
54
|
-
"@fluidframework/sequence": "~2.
|
|
50
|
+
"@fluidframework/core-utils": "~2.2.0",
|
|
51
|
+
"@fluidframework/map": "~2.2.0",
|
|
52
|
+
"@fluidframework/merge-tree": "~2.2.0",
|
|
53
|
+
"@fluidframework/runtime-definitions": "~2.2.0",
|
|
54
|
+
"@fluidframework/sequence": "~2.2.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
58
58
|
"@biomejs/biome": "~1.8.3",
|
|
59
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
60
|
-
"@fluid-tools/build-cli": "^0.
|
|
59
|
+
"@fluid-internal/mocha-test-setup": "~2.2.0",
|
|
60
|
+
"@fluid-tools/build-cli": "^0.43.0",
|
|
61
61
|
"@fluidframework/build-common": "^2.0.3",
|
|
62
|
-
"@fluidframework/build-tools": "^0.
|
|
62
|
+
"@fluidframework/build-tools": "^0.43.0",
|
|
63
63
|
"@fluidframework/eslint-config-fluid": "^5.3.0",
|
|
64
|
-
"@fluidframework/test-runtime-utils": "~2.
|
|
64
|
+
"@fluidframework/test-runtime-utils": "~2.2.0",
|
|
65
65
|
"@microsoft/api-extractor": "^7.45.1",
|
|
66
66
|
"@types/diff": "^3.5.1",
|
|
67
67
|
"@types/mocha": "^9.1.1",
|
|
@@ -114,8 +114,8 @@
|
|
|
114
114
|
"test": "npm run test:mocha",
|
|
115
115
|
"test:coverage": "c8 npm test",
|
|
116
116
|
"test:mocha": "npm run test:mocha:esm && echo skipping cjs to avoid overhead - npm run test:mocha:cjs",
|
|
117
|
-
"test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\" --exit
|
|
118
|
-
"test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\" --exit
|
|
117
|
+
"test:mocha:cjs": "mocha --recursive \"dist/test/**/*.spec.*js\" --exit",
|
|
118
|
+
"test:mocha:esm": "mocha --recursive \"lib/test/**/*.spec.*js\" --exit",
|
|
119
119
|
"test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
|
|
120
120
|
"tsc": "fluid-tsc commonjs --project ./tsconfig.cjs.json && copyfiles -f ../../../common/build/build-common/src/cjs/package.json ./dist",
|
|
121
121
|
"typetests:gen": "flub generate typetests --dir . -v",
|