@fluidframework/map 0.59.2001 → 0.59.3000-66610
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/.eslintrc.js +0 -1
- package/dist/directory.d.ts.map +1 -1
- package/dist/directory.js +17 -16
- package/dist/directory.js.map +1 -1
- package/dist/localValues.js +2 -2
- package/dist/localValues.js.map +1 -1
- package/dist/map.d.ts +1 -0
- package/dist/map.d.ts.map +1 -1
- package/dist/map.js +6 -4
- package/dist/map.js.map +1 -1
- package/dist/mapKernel.js +5 -5
- package/dist/mapKernel.js.map +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.d.ts.map +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/directory.d.ts.map +1 -1
- package/lib/directory.js +7 -6
- package/lib/directory.js.map +1 -1
- package/lib/map.d.ts +1 -0
- package/lib/map.d.ts.map +1 -1
- package/lib/map.js +4 -2
- package/lib/map.js.map +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.d.ts.map +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +15 -14
- package/src/directory.ts +3 -3
- package/src/map.ts +1 -0
- package/src/packageVersion.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/map",
|
|
3
|
-
"version": "0.59.
|
|
3
|
+
"version": "0.59.3000-66610",
|
|
4
4
|
"description": "Distributed map",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -62,23 +62,24 @@
|
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"@fluidframework/common-definitions": "^0.20.1",
|
|
64
64
|
"@fluidframework/common-utils": "^0.32.1",
|
|
65
|
-
"@fluidframework/container-utils": "
|
|
65
|
+
"@fluidframework/container-utils": "0.59.3000-66610",
|
|
66
66
|
"@fluidframework/core-interfaces": "^0.43.1000",
|
|
67
|
-
"@fluidframework/datastore-definitions": "
|
|
68
|
-
"@fluidframework/driver-utils": "
|
|
67
|
+
"@fluidframework/datastore-definitions": "0.59.3000-66610",
|
|
68
|
+
"@fluidframework/driver-utils": "0.59.3000-66610",
|
|
69
69
|
"@fluidframework/protocol-definitions": "^0.1028.1000",
|
|
70
|
-
"@fluidframework/runtime-definitions": "
|
|
71
|
-
"@fluidframework/runtime-utils": "
|
|
72
|
-
"@fluidframework/shared-object-base": "
|
|
70
|
+
"@fluidframework/runtime-definitions": "0.59.3000-66610",
|
|
71
|
+
"@fluidframework/runtime-utils": "0.59.3000-66610",
|
|
72
|
+
"@fluidframework/shared-object-base": "0.59.3000-66610",
|
|
73
73
|
"path-browserify": "^1.0.1"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@fluid-internal/test-dds-utils": "
|
|
76
|
+
"@fluid-internal/test-dds-utils": "0.59.3000-66610",
|
|
77
77
|
"@fluidframework/build-common": "^0.23.0",
|
|
78
|
-
"@fluidframework/
|
|
79
|
-
"@fluidframework/
|
|
80
|
-
"@fluidframework/
|
|
81
|
-
"@fluidframework/test-
|
|
78
|
+
"@fluidframework/build-tools": "^0.2.66048",
|
|
79
|
+
"@fluidframework/eslint-config-fluid": "^0.28.2000-0",
|
|
80
|
+
"@fluidframework/map-previous": "npm:@fluidframework/map@0.59.2000",
|
|
81
|
+
"@fluidframework/mocha-test-setup": "0.59.3000-66610",
|
|
82
|
+
"@fluidframework/test-runtime-utils": "0.59.3000-66610",
|
|
82
83
|
"@microsoft/api-extractor": "^7.22.2",
|
|
83
84
|
"@rushstack/eslint-config": "^2.5.1",
|
|
84
85
|
"@types/mocha": "^8.2.2",
|
|
@@ -101,11 +102,11 @@
|
|
|
101
102
|
"mocha": "^8.4.0",
|
|
102
103
|
"nyc": "^15.0.0",
|
|
103
104
|
"rimraf": "^2.6.2",
|
|
104
|
-
"typescript": "~4.
|
|
105
|
+
"typescript": "~4.5.5",
|
|
105
106
|
"typescript-formatter": "7.1.0"
|
|
106
107
|
},
|
|
107
108
|
"typeValidation": {
|
|
108
|
-
"version": "0.59.
|
|
109
|
+
"version": "0.59.3000",
|
|
109
110
|
"broken": {}
|
|
110
111
|
}
|
|
111
112
|
}
|
package/src/directory.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
import { assert,TypedEventEmitter } from "@fluidframework/common-utils";
|
|
6
|
+
import { assert, TypedEventEmitter } from "@fluidframework/common-utils";
|
|
7
7
|
import { UsageError } from "@fluidframework/container-utils";
|
|
8
8
|
import { readAndParse } from "@fluidframework/driver-utils";
|
|
9
9
|
import {
|
|
@@ -195,8 +195,8 @@ export type IDirectoryOperation = IDirectoryStorageOperation | IDirectorySubDire
|
|
|
195
195
|
* Directly used in JSON.stringify, direct result from JSON.parse.
|
|
196
196
|
*/
|
|
197
197
|
export interface IDirectoryDataObject {
|
|
198
|
-
storage?: { [key: string]: ISerializableValue };
|
|
199
|
-
subdirectories?: { [subdirName: string]: IDirectoryDataObject };
|
|
198
|
+
storage?: { [key: string]: ISerializableValue; };
|
|
199
|
+
subdirectories?: { [subdirName: string]: IDirectoryDataObject; };
|
|
200
200
|
}
|
|
201
201
|
|
|
202
202
|
export interface IDirectoryNewStorageFormat {
|
package/src/map.ts
CHANGED
|
@@ -349,6 +349,7 @@ export class SharedMap extends SharedObject<ISharedMapEvents> implements IShared
|
|
|
349
349
|
}
|
|
350
350
|
|
|
351
351
|
/**
|
|
352
|
+
* {@inheritDoc @fluidframework/shared-object-base#SharedObjectCore.applyStashedOp}
|
|
352
353
|
* @internal
|
|
353
354
|
*/
|
|
354
355
|
protected applyStashedOp(content: any): unknown {
|
package/src/packageVersion.ts
CHANGED