@fluidframework/map 2.63.0-359734 → 2.63.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.
@@ -5,5 +5,5 @@
5
5
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
6
6
  */
7
7
  export declare const pkgName = "@fluidframework/map";
8
- export declare const pkgVersion = "2.63.0-359734";
8
+ export declare const pkgVersion = "2.63.0";
9
9
  //# sourceMappingURL=packageVersion.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,OAAO,wBAAwB,CAAC;AAC7C,eAAO,MAAM,UAAU,kBAAkB,CAAC"}
1
+ {"version":3,"file":"packageVersion.d.ts","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,OAAO,wBAAwB,CAAC;AAC7C,eAAO,MAAM,UAAU,WAAW,CAAC"}
@@ -8,5 +8,5 @@
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
9
  exports.pkgVersion = exports.pkgName = void 0;
10
10
  exports.pkgName = "@fluidframework/map";
11
- exports.pkgVersion = "2.63.0-359734";
11
+ exports.pkgVersion = "2.63.0";
12
12
  //# sourceMappingURL=packageVersion.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,qBAAqB,CAAC;AAChC,QAAA,UAAU,GAAG,eAAe,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/map\";\nexport const pkgVersion = \"2.63.0-359734\";\n"]}
1
+ {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,qBAAqB,CAAC;AAChC,QAAA,UAAU,GAAG,QAAQ,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/map\";\nexport const pkgVersion = \"2.63.0\";\n"]}
package/lib/directory.js CHANGED
@@ -815,7 +815,7 @@ class SubDirectory extends TypedEventEmitter {
815
815
  if (detachedBind) {
816
816
  // Create a local value and serialize it.
817
817
  // AB#47081: This will be removed once we can validate that it is no longer needed.
818
- bindHandles(value, this.serializer, this.directory.handle);
818
+ bindHandles(value, this.directory.handle);
819
819
  }
820
820
  // If we are not attached, don't submit the op.
821
821
  if (!this.directory.isAttached()) {
@@ -1707,7 +1707,7 @@ class SubDirectory extends TypedEventEmitter {
1707
1707
  // nothing to rollback since the pending data was removed with the subdirectory deletion.
1708
1708
  return;
1709
1709
  }
1710
- assert(pendingEntry.type === "createSubDirectory", "Unexpected pending data for createSubDirectory op");
1710
+ assert(pendingEntry.type === "createSubDirectory", 0xc71 /* Unexpected pending data for createSubDirectory op */);
1711
1711
  // We still need to emit the disposed event for any locally created (and now
1712
1712
  // rolled back) subdirectory trees so listeners can observer the lifecycle
1713
1713
  // changes properly. We don't want to fully delete in case there is another
@@ -1727,7 +1727,7 @@ class SubDirectory extends TypedEventEmitter {
1727
1727
  // nothing to rollback since the pending data was removed with the subdirectory deletion.
1728
1728
  return;
1729
1729
  }
1730
- assert(pendingEntry.type === "deleteSubDirectory", "Unexpected pending data for deleteSubDirectory op");
1730
+ assert(pendingEntry.type === "deleteSubDirectory", 0xc72 /* Unexpected pending data for deleteSubDirectory op */);
1731
1731
  this.pendingSubDirectoryData.splice(pendingEntryIndex, 1);
1732
1732
  // Restore the subdirectory
1733
1733
  const subDirectoryToRestore = localOpMetadata.subDirectory;