@fluidframework/map 0.59.2000 → 0.59.3000-67119

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluidframework/map",
3
- "version": "0.59.2000",
3
+ "version": "0.59.3000-67119",
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": "^0.59.2000",
65
+ "@fluidframework/container-utils": "0.59.3000-67119",
66
66
  "@fluidframework/core-interfaces": "^0.43.1000",
67
- "@fluidframework/datastore-definitions": "^0.59.2000",
68
- "@fluidframework/driver-utils": "^0.59.2000",
67
+ "@fluidframework/datastore-definitions": "0.59.3000-67119",
68
+ "@fluidframework/driver-utils": "0.59.3000-67119",
69
69
  "@fluidframework/protocol-definitions": "^0.1028.1000",
70
- "@fluidframework/runtime-definitions": "^0.59.2000",
71
- "@fluidframework/runtime-utils": "^0.59.2000",
72
- "@fluidframework/shared-object-base": "^0.59.2000",
70
+ "@fluidframework/runtime-definitions": "0.59.3000-67119",
71
+ "@fluidframework/runtime-utils": "0.59.3000-67119",
72
+ "@fluidframework/shared-object-base": "0.59.3000-67119",
73
73
  "path-browserify": "^1.0.1"
74
74
  },
75
75
  "devDependencies": {
76
- "@fluid-internal/test-dds-utils": "^0.59.2000",
76
+ "@fluid-internal/test-dds-utils": "0.59.3000-67119",
77
77
  "@fluidframework/build-common": "^0.23.0",
78
- "@fluidframework/eslint-config-fluid": "^0.28.1000",
79
- "@fluidframework/map-previous": "npm:@fluidframework/map@0.59.1000",
80
- "@fluidframework/mocha-test-setup": "^0.59.2000",
81
- "@fluidframework/test-runtime-utils": "^0.59.2000",
78
+ "@fluidframework/build-tools": "^0.2.66793",
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-67119",
82
+ "@fluidframework/test-runtime-utils": "0.59.3000-67119",
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.1.3",
105
+ "typescript": "~4.5.5",
105
106
  "typescript-formatter": "7.1.0"
106
107
  },
107
108
  "typeValidation": {
108
- "version": "0.59.2000",
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 {
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  export const pkgName = "@fluidframework/map";
9
- export const pkgVersion = "0.59.2000";
9
+ export const pkgVersion = "0.59.3000-67119";