@fluid-experimental/property-common 2.0.0-internal.2.0.2 → 2.0.0-internal.2.1.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.
@@ -2,8 +2,8 @@
2
2
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
3
  * Licensed under the MIT License.
4
4
  */
5
- export * from "./collection";
6
- export * from "./sortedCollection";
7
- export * from "./integer64";
8
- export * from "./dataArray";
5
+ export { Collection } from "./collection";
6
+ export { BaseDataArray, BoolDataArray, Float32DataArray, Float64DataArray, Int16DataArray, Int32DataArray, Int8DataArray, StringDataArray, Uint16DataArray, Uint32DataArray, Uint8DataArray, UniversalDataArray, } from "./dataArray";
7
+ export { Int64, Integer64, Uint64 } from "./integer64";
8
+ export { SortedCollection } from "./sortedCollection";
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/datastructures/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/datastructures/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EACN,aAAa,EACb,aAAa,EACb,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,aAAa,EACb,eAAe,EACf,eAAe,EACf,eAAe,EACf,cAAc,EACd,kBAAkB,GAClB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC"}
@@ -3,19 +3,27 @@
3
3
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
4
4
  * Licensed under the MIT License.
5
5
  */
6
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
- if (k2 === undefined) k2 = k;
8
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
6
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./collection"), exports);
18
- __exportStar(require("./sortedCollection"), exports);
19
- __exportStar(require("./integer64"), exports);
20
- __exportStar(require("./dataArray"), exports);
7
+ exports.SortedCollection = exports.Uint64 = exports.Integer64 = exports.Int64 = exports.UniversalDataArray = exports.Uint8DataArray = exports.Uint32DataArray = exports.Uint16DataArray = exports.StringDataArray = exports.Int8DataArray = exports.Int32DataArray = exports.Int16DataArray = exports.Float64DataArray = exports.Float32DataArray = exports.BoolDataArray = exports.BaseDataArray = exports.Collection = void 0;
8
+ var collection_1 = require("./collection");
9
+ Object.defineProperty(exports, "Collection", { enumerable: true, get: function () { return collection_1.Collection; } });
10
+ var dataArray_1 = require("./dataArray");
11
+ Object.defineProperty(exports, "BaseDataArray", { enumerable: true, get: function () { return dataArray_1.BaseDataArray; } });
12
+ Object.defineProperty(exports, "BoolDataArray", { enumerable: true, get: function () { return dataArray_1.BoolDataArray; } });
13
+ Object.defineProperty(exports, "Float32DataArray", { enumerable: true, get: function () { return dataArray_1.Float32DataArray; } });
14
+ Object.defineProperty(exports, "Float64DataArray", { enumerable: true, get: function () { return dataArray_1.Float64DataArray; } });
15
+ Object.defineProperty(exports, "Int16DataArray", { enumerable: true, get: function () { return dataArray_1.Int16DataArray; } });
16
+ Object.defineProperty(exports, "Int32DataArray", { enumerable: true, get: function () { return dataArray_1.Int32DataArray; } });
17
+ Object.defineProperty(exports, "Int8DataArray", { enumerable: true, get: function () { return dataArray_1.Int8DataArray; } });
18
+ Object.defineProperty(exports, "StringDataArray", { enumerable: true, get: function () { return dataArray_1.StringDataArray; } });
19
+ Object.defineProperty(exports, "Uint16DataArray", { enumerable: true, get: function () { return dataArray_1.Uint16DataArray; } });
20
+ Object.defineProperty(exports, "Uint32DataArray", { enumerable: true, get: function () { return dataArray_1.Uint32DataArray; } });
21
+ Object.defineProperty(exports, "Uint8DataArray", { enumerable: true, get: function () { return dataArray_1.Uint8DataArray; } });
22
+ Object.defineProperty(exports, "UniversalDataArray", { enumerable: true, get: function () { return dataArray_1.UniversalDataArray; } });
23
+ var integer64_1 = require("./integer64");
24
+ Object.defineProperty(exports, "Int64", { enumerable: true, get: function () { return integer64_1.Int64; } });
25
+ Object.defineProperty(exports, "Integer64", { enumerable: true, get: function () { return integer64_1.Integer64; } });
26
+ Object.defineProperty(exports, "Uint64", { enumerable: true, get: function () { return integer64_1.Uint64; } });
27
+ var sortedCollection_1 = require("./sortedCollection");
28
+ Object.defineProperty(exports, "SortedCollection", { enumerable: true, get: function () { return sortedCollection_1.SortedCollection; } });
21
29
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/datastructures/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;AAEH,+CAA6B;AAC7B,qDAAmC;AACnC,8CAA4B;AAC5B,8CAA4B","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"./collection\";\nexport * from \"./sortedCollection\";\nexport * from \"./integer64\";\nexport * from \"./dataArray\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/datastructures/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,2CAA0C;AAAjC,wGAAA,UAAU,OAAA;AACnB,yCAaqB;AAZpB,0GAAA,aAAa,OAAA;AACb,0GAAA,aAAa,OAAA;AACb,6GAAA,gBAAgB,OAAA;AAChB,6GAAA,gBAAgB,OAAA;AAChB,2GAAA,cAAc,OAAA;AACd,2GAAA,cAAc,OAAA;AACd,0GAAA,aAAa,OAAA;AACb,4GAAA,eAAe,OAAA;AACf,4GAAA,eAAe,OAAA;AACf,4GAAA,eAAe,OAAA;AACf,2GAAA,cAAc,OAAA;AACd,+GAAA,kBAAkB,OAAA;AAEnB,yCAAuD;AAA9C,kGAAA,KAAK,OAAA;AAAE,sGAAA,SAAS,OAAA;AAAE,mGAAA,MAAM,OAAA;AACjC,uDAAsD;AAA7C,oHAAA,gBAAgB,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { Collection } from \"./collection\";\nexport {\n\tBaseDataArray,\n\tBoolDataArray,\n\tFloat32DataArray,\n\tFloat64DataArray,\n\tInt16DataArray,\n\tInt32DataArray,\n\tInt8DataArray,\n\tStringDataArray,\n\tUint16DataArray,\n\tUint32DataArray,\n\tUint8DataArray,\n\tUniversalDataArray,\n} from \"./dataArray\";\nexport { Int64, Integer64, Uint64 } from \"./integer64\";\nexport { SortedCollection } from \"./sortedCollection\";\n"]}
@@ -3,7 +3,7 @@
3
3
  * Licensed under the MIT License.
4
4
  */
5
5
  export { FlaggedError } from "./flaggedError";
6
- export { OperationError } from "./operationError";
7
6
  export { HTTPError } from "./httpError";
8
7
  export { HTTPErrorNoStack } from "./httpErrorNoStack";
8
+ export { OperationError } from "./operationError";
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/error_objects/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/error_objects/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
@@ -4,13 +4,13 @@
4
4
  * Licensed under the MIT License.
5
5
  */
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
- exports.HTTPErrorNoStack = exports.HTTPError = exports.OperationError = exports.FlaggedError = void 0;
7
+ exports.OperationError = exports.HTTPErrorNoStack = exports.HTTPError = exports.FlaggedError = void 0;
8
8
  var flaggedError_1 = require("./flaggedError");
9
9
  Object.defineProperty(exports, "FlaggedError", { enumerable: true, get: function () { return flaggedError_1.FlaggedError; } });
10
- var operationError_1 = require("./operationError");
11
- Object.defineProperty(exports, "OperationError", { enumerable: true, get: function () { return operationError_1.OperationError; } });
12
10
  var httpError_1 = require("./httpError");
13
11
  Object.defineProperty(exports, "HTTPError", { enumerable: true, get: function () { return httpError_1.HTTPError; } });
14
12
  var httpErrorNoStack_1 = require("./httpErrorNoStack");
15
13
  Object.defineProperty(exports, "HTTPErrorNoStack", { enumerable: true, get: function () { return httpErrorNoStack_1.HTTPErrorNoStack; } });
14
+ var operationError_1 = require("./operationError");
15
+ Object.defineProperty(exports, "OperationError", { enumerable: true, get: function () { return operationError_1.OperationError; } });
16
16
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/error_objects/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,+CAA8C;AAArC,4GAAA,YAAY,OAAA;AACrB,mDAAkD;AAAzC,gHAAA,cAAc,OAAA;AACvB,yCAAwC;AAA/B,sGAAA,SAAS,OAAA;AAClB,uDAAsD;AAA7C,oHAAA,gBAAgB,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { FlaggedError } from \"./flaggedError\";\nexport { OperationError } from \"./operationError\";\nexport { HTTPError } from \"./httpError\";\nexport { HTTPErrorNoStack } from \"./httpErrorNoStack\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/error_objects/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH,+CAA8C;AAArC,4GAAA,YAAY,OAAA;AACrB,yCAAwC;AAA/B,sGAAA,SAAS,OAAA;AAClB,uDAAsD;AAA7C,oHAAA,gBAAgB,OAAA;AACzB,mDAAkD;AAAzC,gHAAA,cAAc,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { FlaggedError } from \"./flaggedError\";\nexport { HTTPError } from \"./httpError\";\nexport { HTTPErrorNoStack } from \"./httpErrorNoStack\";\nexport { OperationError } from \"./operationError\";\n"]}
package/dist/index.d.ts CHANGED
@@ -2,15 +2,15 @@
2
2
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
3
  * Licensed under the MIT License.
4
4
  */
5
- export * from "./constants";
6
- export * from "./consoleUtils";
7
- export * from "./chronometer";
8
- export * from "./joinPaths";
9
- export * from "./guidUtils";
10
- export * from "./error_objects";
11
- export * from "./deferredPromise";
12
- export * from "./deterministicRandomGenerator";
13
- export * from "./hashCalculator";
14
- export * from "./datastructures";
15
5
  export { EventEmitter } from "events";
6
+ export { Chronometer } from "./chronometer";
7
+ export { ConsoleUtils } from "./consoleUtils";
8
+ export { constants } from "./constants";
9
+ export { BaseDataArray, BoolDataArray, Collection, Float32DataArray, Float64DataArray, Int16DataArray, Int32DataArray, Int64, Int8DataArray, Integer64, SortedCollection, StringDataArray, Uint16DataArray, Uint32DataArray, Uint64, Uint8DataArray, UniversalDataArray, } from "./datastructures";
10
+ export { DeferredPromise } from "./deferredPromise";
11
+ export { DeterministicRandomGenerator } from "./deterministicRandomGenerator";
12
+ export { FlaggedError, HTTPError, HTTPErrorNoStack, OperationError } from "./error_objects";
13
+ export { GuidUtils } from "./guidUtils";
14
+ export { calculateHash } from "./hashCalculator";
15
+ export { joinPaths } from "./joinPaths";
16
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EACN,aAAa,EACb,aAAa,EACb,UAAU,EACV,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,KAAK,EACL,aAAa,EACb,SAAS,EACT,gBAAgB,EAChB,eAAe,EACf,eAAe,EACf,eAAe,EACf,MAAM,EACN,cAAc,EACd,kBAAkB,GAClB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAC9E,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC"}
package/dist/index.js CHANGED
@@ -1,30 +1,49 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.joinPaths = exports.calculateHash = exports.GuidUtils = exports.OperationError = exports.HTTPErrorNoStack = exports.HTTPError = exports.FlaggedError = exports.DeterministicRandomGenerator = exports.DeferredPromise = exports.UniversalDataArray = exports.Uint8DataArray = exports.Uint64 = exports.Uint32DataArray = exports.Uint16DataArray = exports.StringDataArray = exports.SortedCollection = exports.Integer64 = exports.Int8DataArray = exports.Int64 = exports.Int32DataArray = exports.Int16DataArray = exports.Float64DataArray = exports.Float32DataArray = exports.Collection = exports.BoolDataArray = exports.BaseDataArray = exports.constants = exports.ConsoleUtils = exports.Chronometer = exports.EventEmitter = void 0;
2
4
  /*!
3
5
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
4
6
  * Licensed under the MIT License.
5
7
  */
6
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
- if (k2 === undefined) k2 = k;
8
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.EventEmitter = void 0;
18
- __exportStar(require("./constants"), exports);
19
- __exportStar(require("./consoleUtils"), exports);
20
- __exportStar(require("./chronometer"), exports);
21
- __exportStar(require("./joinPaths"), exports);
22
- __exportStar(require("./guidUtils"), exports);
23
- __exportStar(require("./error_objects"), exports);
24
- __exportStar(require("./deferredPromise"), exports);
25
- __exportStar(require("./deterministicRandomGenerator"), exports);
26
- __exportStar(require("./hashCalculator"), exports);
27
- __exportStar(require("./datastructures"), exports);
28
8
  var events_1 = require("events");
29
9
  Object.defineProperty(exports, "EventEmitter", { enumerable: true, get: function () { return events_1.EventEmitter; } });
10
+ var chronometer_1 = require("./chronometer");
11
+ Object.defineProperty(exports, "Chronometer", { enumerable: true, get: function () { return chronometer_1.Chronometer; } });
12
+ var consoleUtils_1 = require("./consoleUtils");
13
+ Object.defineProperty(exports, "ConsoleUtils", { enumerable: true, get: function () { return consoleUtils_1.ConsoleUtils; } });
14
+ var constants_1 = require("./constants");
15
+ Object.defineProperty(exports, "constants", { enumerable: true, get: function () { return constants_1.constants; } });
16
+ var datastructures_1 = require("./datastructures");
17
+ Object.defineProperty(exports, "BaseDataArray", { enumerable: true, get: function () { return datastructures_1.BaseDataArray; } });
18
+ Object.defineProperty(exports, "BoolDataArray", { enumerable: true, get: function () { return datastructures_1.BoolDataArray; } });
19
+ Object.defineProperty(exports, "Collection", { enumerable: true, get: function () { return datastructures_1.Collection; } });
20
+ Object.defineProperty(exports, "Float32DataArray", { enumerable: true, get: function () { return datastructures_1.Float32DataArray; } });
21
+ Object.defineProperty(exports, "Float64DataArray", { enumerable: true, get: function () { return datastructures_1.Float64DataArray; } });
22
+ Object.defineProperty(exports, "Int16DataArray", { enumerable: true, get: function () { return datastructures_1.Int16DataArray; } });
23
+ Object.defineProperty(exports, "Int32DataArray", { enumerable: true, get: function () { return datastructures_1.Int32DataArray; } });
24
+ Object.defineProperty(exports, "Int64", { enumerable: true, get: function () { return datastructures_1.Int64; } });
25
+ Object.defineProperty(exports, "Int8DataArray", { enumerable: true, get: function () { return datastructures_1.Int8DataArray; } });
26
+ Object.defineProperty(exports, "Integer64", { enumerable: true, get: function () { return datastructures_1.Integer64; } });
27
+ Object.defineProperty(exports, "SortedCollection", { enumerable: true, get: function () { return datastructures_1.SortedCollection; } });
28
+ Object.defineProperty(exports, "StringDataArray", { enumerable: true, get: function () { return datastructures_1.StringDataArray; } });
29
+ Object.defineProperty(exports, "Uint16DataArray", { enumerable: true, get: function () { return datastructures_1.Uint16DataArray; } });
30
+ Object.defineProperty(exports, "Uint32DataArray", { enumerable: true, get: function () { return datastructures_1.Uint32DataArray; } });
31
+ Object.defineProperty(exports, "Uint64", { enumerable: true, get: function () { return datastructures_1.Uint64; } });
32
+ Object.defineProperty(exports, "Uint8DataArray", { enumerable: true, get: function () { return datastructures_1.Uint8DataArray; } });
33
+ Object.defineProperty(exports, "UniversalDataArray", { enumerable: true, get: function () { return datastructures_1.UniversalDataArray; } });
34
+ var deferredPromise_1 = require("./deferredPromise");
35
+ Object.defineProperty(exports, "DeferredPromise", { enumerable: true, get: function () { return deferredPromise_1.DeferredPromise; } });
36
+ var deterministicRandomGenerator_1 = require("./deterministicRandomGenerator");
37
+ Object.defineProperty(exports, "DeterministicRandomGenerator", { enumerable: true, get: function () { return deterministicRandomGenerator_1.DeterministicRandomGenerator; } });
38
+ var error_objects_1 = require("./error_objects");
39
+ Object.defineProperty(exports, "FlaggedError", { enumerable: true, get: function () { return error_objects_1.FlaggedError; } });
40
+ Object.defineProperty(exports, "HTTPError", { enumerable: true, get: function () { return error_objects_1.HTTPError; } });
41
+ Object.defineProperty(exports, "HTTPErrorNoStack", { enumerable: true, get: function () { return error_objects_1.HTTPErrorNoStack; } });
42
+ Object.defineProperty(exports, "OperationError", { enumerable: true, get: function () { return error_objects_1.OperationError; } });
43
+ var guidUtils_1 = require("./guidUtils");
44
+ Object.defineProperty(exports, "GuidUtils", { enumerable: true, get: function () { return guidUtils_1.GuidUtils; } });
45
+ var hashCalculator_1 = require("./hashCalculator");
46
+ Object.defineProperty(exports, "calculateHash", { enumerable: true, get: function () { return hashCalculator_1.calculateHash; } });
47
+ var joinPaths_1 = require("./joinPaths");
48
+ Object.defineProperty(exports, "joinPaths", { enumerable: true, get: function () { return joinPaths_1.joinPaths; } });
30
49
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;;AAEH,8CAA4B;AAC5B,iDAA+B;AAC/B,gDAA8B;AAC9B,8CAA4B;AAC5B,8CAA4B;AAC5B,kDAAgC;AAChC,oDAAkC;AAClC,iEAA+C;AAC/C,mDAAiC;AACjC,mDAAiC;AACjC,iCAAsC;AAA7B,sGAAA,YAAY,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"./constants\";\nexport * from \"./consoleUtils\";\nexport * from \"./chronometer\";\nexport * from \"./joinPaths\";\nexport * from \"./guidUtils\";\nexport * from \"./error_objects\";\nexport * from \"./deferredPromise\";\nexport * from \"./deterministicRandomGenerator\";\nexport * from \"./hashCalculator\";\nexport * from \"./datastructures\";\nexport { EventEmitter } from \"events\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA;;;GAGG;AACH,iCAAsC;AAA7B,sGAAA,YAAY,OAAA;AAErB,6CAA4C;AAAnC,0GAAA,WAAW,OAAA;AACpB,+CAA8C;AAArC,4GAAA,YAAY,OAAA;AACrB,yCAAwC;AAA/B,sGAAA,SAAS,OAAA;AAClB,mDAkB0B;AAjBzB,+GAAA,aAAa,OAAA;AACb,+GAAA,aAAa,OAAA;AACb,4GAAA,UAAU,OAAA;AACV,kHAAA,gBAAgB,OAAA;AAChB,kHAAA,gBAAgB,OAAA;AAChB,gHAAA,cAAc,OAAA;AACd,gHAAA,cAAc,OAAA;AACd,uGAAA,KAAK,OAAA;AACL,+GAAA,aAAa,OAAA;AACb,2GAAA,SAAS,OAAA;AACT,kHAAA,gBAAgB,OAAA;AAChB,iHAAA,eAAe,OAAA;AACf,iHAAA,eAAe,OAAA;AACf,iHAAA,eAAe,OAAA;AACf,wGAAA,MAAM,OAAA;AACN,gHAAA,cAAc,OAAA;AACd,oHAAA,kBAAkB,OAAA;AAEnB,qDAAoD;AAA3C,kHAAA,eAAe,OAAA;AACxB,+EAA8E;AAArE,4IAAA,4BAA4B,OAAA;AACrC,iDAA4F;AAAnF,6GAAA,YAAY,OAAA;AAAE,0GAAA,SAAS,OAAA;AAAE,iHAAA,gBAAgB,OAAA;AAAE,+GAAA,cAAc,OAAA;AAClE,yCAAwC;AAA/B,sGAAA,SAAS,OAAA;AAClB,mDAAiD;AAAxC,+GAAA,aAAa,OAAA;AACtB,yCAAwC;AAA/B,sGAAA,SAAS,OAAA","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\nexport { EventEmitter } from \"events\";\n\nexport { Chronometer } from \"./chronometer\";\nexport { ConsoleUtils } from \"./consoleUtils\";\nexport { constants } from \"./constants\";\nexport {\n\tBaseDataArray,\n\tBoolDataArray,\n\tCollection,\n\tFloat32DataArray,\n\tFloat64DataArray,\n\tInt16DataArray,\n\tInt32DataArray,\n\tInt64,\n\tInt8DataArray,\n\tInteger64,\n\tSortedCollection,\n\tStringDataArray,\n\tUint16DataArray,\n\tUint32DataArray,\n\tUint64,\n\tUint8DataArray,\n\tUniversalDataArray,\n} from \"./datastructures\";\nexport { DeferredPromise } from \"./deferredPromise\";\nexport { DeterministicRandomGenerator } from \"./deterministicRandomGenerator\";\nexport { FlaggedError, HTTPError, HTTPErrorNoStack, OperationError } from \"./error_objects\";\nexport { GuidUtils } from \"./guidUtils\";\nexport { calculateHash } from \"./hashCalculator\";\nexport { joinPaths } from \"./joinPaths\";\n"]}
@@ -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 = "@fluid-experimental/property-common";
8
- export declare const pkgVersion = "2.0.0-internal.2.0.2";
8
+ export declare const pkgVersion = "2.0.0-internal.2.1.0";
9
9
  //# sourceMappingURL=packageVersion.d.ts.map
@@ -8,5 +8,5 @@
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
9
  exports.pkgVersion = exports.pkgName = void 0;
10
10
  exports.pkgName = "@fluid-experimental/property-common";
11
- exports.pkgVersion = "2.0.0-internal.2.0.2";
11
+ exports.pkgVersion = "2.0.0-internal.2.1.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,qCAAqC,CAAC;AAChD,QAAA,UAAU,GAAG,sBAAsB,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 = \"@fluid-experimental/property-common\";\nexport const pkgVersion = \"2.0.0-internal.2.0.2\";\n"]}
1
+ {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,qCAAqC,CAAC;AAChD,QAAA,UAAU,GAAG,sBAAsB,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 = \"@fluid-experimental/property-common\";\nexport const pkgVersion = \"2.0.0-internal.2.1.0\";\n"]}
@@ -2,8 +2,8 @@
2
2
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
3
  * Licensed under the MIT License.
4
4
  */
5
- export * from "./collection";
6
- export * from "./sortedCollection";
7
- export * from "./integer64";
8
- export * from "./dataArray";
5
+ export { Collection } from "./collection";
6
+ export { BaseDataArray, BoolDataArray, Float32DataArray, Float64DataArray, Int16DataArray, Int32DataArray, Int8DataArray, StringDataArray, Uint16DataArray, Uint32DataArray, Uint8DataArray, UniversalDataArray, } from "./dataArray";
7
+ export { Int64, Integer64, Uint64 } from "./integer64";
8
+ export { SortedCollection } from "./sortedCollection";
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/datastructures/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/datastructures/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EACN,aAAa,EACb,aAAa,EACb,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,aAAa,EACb,eAAe,EACf,eAAe,EACf,eAAe,EACf,cAAc,EACd,kBAAkB,GAClB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC"}
@@ -2,8 +2,8 @@
2
2
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
3
  * Licensed under the MIT License.
4
4
  */
5
- export * from "./collection";
6
- export * from "./sortedCollection";
7
- export * from "./integer64";
8
- export * from "./dataArray";
5
+ export { Collection } from "./collection";
6
+ export { BaseDataArray, BoolDataArray, Float32DataArray, Float64DataArray, Int16DataArray, Int32DataArray, Int8DataArray, StringDataArray, Uint16DataArray, Uint32DataArray, Uint8DataArray, UniversalDataArray, } from "./dataArray";
7
+ export { Int64, Integer64, Uint64 } from "./integer64";
8
+ export { SortedCollection } from "./sortedCollection";
9
9
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/datastructures/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC;AACnC,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"./collection\";\nexport * from \"./sortedCollection\";\nexport * from \"./integer64\";\nexport * from \"./dataArray\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/datastructures/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EACN,aAAa,EACb,aAAa,EACb,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,aAAa,EACb,eAAe,EACf,eAAe,EACf,eAAe,EACf,cAAc,EACd,kBAAkB,GAClB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { Collection } from \"./collection\";\nexport {\n\tBaseDataArray,\n\tBoolDataArray,\n\tFloat32DataArray,\n\tFloat64DataArray,\n\tInt16DataArray,\n\tInt32DataArray,\n\tInt8DataArray,\n\tStringDataArray,\n\tUint16DataArray,\n\tUint32DataArray,\n\tUint8DataArray,\n\tUniversalDataArray,\n} from \"./dataArray\";\nexport { Int64, Integer64, Uint64 } from \"./integer64\";\nexport { SortedCollection } from \"./sortedCollection\";\n"]}
@@ -3,7 +3,7 @@
3
3
  * Licensed under the MIT License.
4
4
  */
5
5
  export { FlaggedError } from "./flaggedError";
6
- export { OperationError } from "./operationError";
7
6
  export { HTTPError } from "./httpError";
8
7
  export { HTTPErrorNoStack } from "./httpErrorNoStack";
8
+ export { OperationError } from "./operationError";
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/error_objects/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/error_objects/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC"}
@@ -3,7 +3,7 @@
3
3
  * Licensed under the MIT License.
4
4
  */
5
5
  export { FlaggedError } from "./flaggedError";
6
- export { OperationError } from "./operationError";
7
6
  export { HTTPError } from "./httpError";
8
7
  export { HTTPErrorNoStack } from "./httpErrorNoStack";
8
+ export { OperationError } from "./operationError";
9
9
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/error_objects/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { FlaggedError } from \"./flaggedError\";\nexport { OperationError } from \"./operationError\";\nexport { HTTPError } from \"./httpError\";\nexport { HTTPErrorNoStack } from \"./httpErrorNoStack\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/error_objects/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport { FlaggedError } from \"./flaggedError\";\nexport { HTTPError } from \"./httpError\";\nexport { HTTPErrorNoStack } from \"./httpErrorNoStack\";\nexport { OperationError } from \"./operationError\";\n"]}
package/lib/index.d.ts CHANGED
@@ -2,15 +2,15 @@
2
2
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
3
  * Licensed under the MIT License.
4
4
  */
5
- export * from "./constants";
6
- export * from "./consoleUtils";
7
- export * from "./chronometer";
8
- export * from "./joinPaths";
9
- export * from "./guidUtils";
10
- export * from "./error_objects";
11
- export * from "./deferredPromise";
12
- export * from "./deterministicRandomGenerator";
13
- export * from "./hashCalculator";
14
- export * from "./datastructures";
15
5
  export { EventEmitter } from "events";
6
+ export { Chronometer } from "./chronometer";
7
+ export { ConsoleUtils } from "./consoleUtils";
8
+ export { constants } from "./constants";
9
+ export { BaseDataArray, BoolDataArray, Collection, Float32DataArray, Float64DataArray, Int16DataArray, Int32DataArray, Int64, Int8DataArray, Integer64, SortedCollection, StringDataArray, Uint16DataArray, Uint32DataArray, Uint64, Uint8DataArray, UniversalDataArray, } from "./datastructures";
10
+ export { DeferredPromise } from "./deferredPromise";
11
+ export { DeterministicRandomGenerator } from "./deterministicRandomGenerator";
12
+ export { FlaggedError, HTTPError, HTTPErrorNoStack, OperationError } from "./error_objects";
13
+ export { GuidUtils } from "./guidUtils";
14
+ export { calculateHash } from "./hashCalculator";
15
+ export { joinPaths } from "./joinPaths";
16
16
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EACN,aAAa,EACb,aAAa,EACb,UAAU,EACV,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,KAAK,EACL,aAAa,EACb,SAAS,EACT,gBAAgB,EAChB,eAAe,EACf,eAAe,EACf,eAAe,EACf,MAAM,EACN,cAAc,EACd,kBAAkB,GAClB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAC9E,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC"}
package/lib/index.js CHANGED
@@ -2,15 +2,15 @@
2
2
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
3
  * Licensed under the MIT License.
4
4
  */
5
- export * from "./constants";
6
- export * from "./consoleUtils";
7
- export * from "./chronometer";
8
- export * from "./joinPaths";
9
- export * from "./guidUtils";
10
- export * from "./error_objects";
11
- export * from "./deferredPromise";
12
- export * from "./deterministicRandomGenerator";
13
- export * from "./hashCalculator";
14
- export * from "./datastructures";
15
5
  export { EventEmitter } from "events";
6
+ export { Chronometer } from "./chronometer";
7
+ export { ConsoleUtils } from "./consoleUtils";
8
+ export { constants } from "./constants";
9
+ export { BaseDataArray, BoolDataArray, Collection, Float32DataArray, Float64DataArray, Int16DataArray, Int32DataArray, Int64, Int8DataArray, Integer64, SortedCollection, StringDataArray, Uint16DataArray, Uint32DataArray, Uint64, Uint8DataArray, UniversalDataArray, } from "./datastructures";
10
+ export { DeferredPromise } from "./deferredPromise";
11
+ export { DeterministicRandomGenerator } from "./deterministicRandomGenerator";
12
+ export { FlaggedError, HTTPError, HTTPErrorNoStack, OperationError } from "./error_objects";
13
+ export { GuidUtils } from "./guidUtils";
14
+ export { calculateHash } from "./hashCalculator";
15
+ export { joinPaths } from "./joinPaths";
16
16
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\n\nexport * from \"./constants\";\nexport * from \"./consoleUtils\";\nexport * from \"./chronometer\";\nexport * from \"./joinPaths\";\nexport * from \"./guidUtils\";\nexport * from \"./error_objects\";\nexport * from \"./deferredPromise\";\nexport * from \"./deterministicRandomGenerator\";\nexport * from \"./hashCalculator\";\nexport * from \"./datastructures\";\nexport { EventEmitter } from \"events\";\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EACN,aAAa,EACb,aAAa,EACb,UAAU,EACV,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,cAAc,EACd,KAAK,EACL,aAAa,EACb,SAAS,EACT,gBAAgB,EAChB,eAAe,EACf,eAAe,EACf,eAAe,EACf,MAAM,EACN,cAAc,EACd,kBAAkB,GAClB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAC9E,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAC5F,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n */\nexport { EventEmitter } from \"events\";\n\nexport { Chronometer } from \"./chronometer\";\nexport { ConsoleUtils } from \"./consoleUtils\";\nexport { constants } from \"./constants\";\nexport {\n\tBaseDataArray,\n\tBoolDataArray,\n\tCollection,\n\tFloat32DataArray,\n\tFloat64DataArray,\n\tInt16DataArray,\n\tInt32DataArray,\n\tInt64,\n\tInt8DataArray,\n\tInteger64,\n\tSortedCollection,\n\tStringDataArray,\n\tUint16DataArray,\n\tUint32DataArray,\n\tUint64,\n\tUint8DataArray,\n\tUniversalDataArray,\n} from \"./datastructures\";\nexport { DeferredPromise } from \"./deferredPromise\";\nexport { DeterministicRandomGenerator } from \"./deterministicRandomGenerator\";\nexport { FlaggedError, HTTPError, HTTPErrorNoStack, OperationError } from \"./error_objects\";\nexport { GuidUtils } from \"./guidUtils\";\nexport { calculateHash } from \"./hashCalculator\";\nexport { joinPaths } from \"./joinPaths\";\n"]}
@@ -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 = "@fluid-experimental/property-common";
8
- export declare const pkgVersion = "2.0.0-internal.2.0.2";
8
+ export declare const pkgVersion = "2.0.0-internal.2.1.0";
9
9
  //# sourceMappingURL=packageVersion.d.ts.map
@@ -5,5 +5,5 @@
5
5
  * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
6
6
  */
7
7
  export const pkgName = "@fluid-experimental/property-common";
8
- export const pkgVersion = "2.0.0-internal.2.0.2";
8
+ export const pkgVersion = "2.0.0-internal.2.1.0";
9
9
  //# sourceMappingURL=packageVersion.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,qCAAqC,CAAC;AAC7D,MAAM,CAAC,MAAM,UAAU,GAAG,sBAAsB,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 = \"@fluid-experimental/property-common\";\nexport const pkgVersion = \"2.0.0-internal.2.0.2\";\n"]}
1
+ {"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,qCAAqC,CAAC;AAC7D,MAAM,CAAC,MAAM,UAAU,GAAG,sBAAsB,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 = \"@fluid-experimental/property-common\";\nexport const pkgVersion = \"2.0.0-internal.2.1.0\";\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-experimental/property-common",
3
- "version": "2.0.0-internal.2.0.2",
3
+ "version": "2.0.0-internal.2.1.0",
4
4
  "description": "common functions used in properties",
5
5
  "homepage": "https://fluidframework.com",
6
6
  "repository": {
@@ -32,9 +32,7 @@
32
32
  "test:coverage": "nyc npm test -- --reporter xunit --reporter-option output=nyc/junit-report.xml",
33
33
  "test:mocha": "mocha --recursive dist/test -r node_modules/@fluidframework/mocha-test-setup --unhandled-rejections=strict",
34
34
  "test:mocha:verbose": "cross-env FLUID_TEST_VERBOSE=1 npm run test:mocha",
35
- "tsc": "tsc",
36
- "tsfmt": "tsfmt --verify",
37
- "tsfmt:fix": "tsfmt --replace"
35
+ "tsc": "tsc"
38
36
  },
39
37
  "nyc": {
40
38
  "all": true,
@@ -68,9 +66,10 @@
68
66
  "traverse": "0.6.6"
69
67
  },
70
68
  "devDependencies": {
71
- "@fluidframework/build-common": "^1.0.0",
72
- "@fluidframework/eslint-config-fluid": "^1.0.0",
73
- "@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.0.2 <2.0.0-internal.3.0.0",
69
+ "@fluid-experimental/property-common-previous": "npm:@fluid-experimental/property-common@2.0.0-internal.2.0.0",
70
+ "@fluidframework/build-common": "^1.1.0",
71
+ "@fluidframework/eslint-config-fluid": "^1.1.0",
72
+ "@fluidframework/mocha-test-setup": ">=2.0.0-internal.2.1.0 <2.0.0-internal.3.0.0",
74
73
  "@microsoft/api-extractor": "^7.22.2",
75
74
  "@rushstack/eslint-config": "^2.5.1",
76
75
  "@types/debug": "^4.1.5",
@@ -86,7 +85,10 @@
86
85
  "nyc": "^15.0.0",
87
86
  "rimraf": "^2.6.2",
88
87
  "sinon": "^7.4.2",
89
- "typescript": "~4.5.5",
90
- "typescript-formatter": "7.1.0"
88
+ "typescript": "~4.5.5"
89
+ },
90
+ "typeValidation": {
91
+ "version": "2.0.0-internal.2.1.0",
92
+ "broken": {}
91
93
  }
92
94
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-internal/platform-dependent",
3
- "version": "2.0.0-internal.2.0.2",
3
+ "version": "2.0.0-internal.2.1.0",
4
4
  "private": true,
5
5
  "description": "Helper package that separates code for browser and server.",
6
6
  "homepage": "https://fluidframework.com",
@@ -3,7 +3,20 @@
3
3
  * Licensed under the MIT License.
4
4
  */
5
5
 
6
- export * from "./collection";
7
- export * from "./sortedCollection";
8
- export * from "./integer64";
9
- export * from "./dataArray";
6
+ export { Collection } from "./collection";
7
+ export {
8
+ BaseDataArray,
9
+ BoolDataArray,
10
+ Float32DataArray,
11
+ Float64DataArray,
12
+ Int16DataArray,
13
+ Int32DataArray,
14
+ Int8DataArray,
15
+ StringDataArray,
16
+ Uint16DataArray,
17
+ Uint32DataArray,
18
+ Uint8DataArray,
19
+ UniversalDataArray,
20
+ } from "./dataArray";
21
+ export { Int64, Integer64, Uint64 } from "./integer64";
22
+ export { SortedCollection } from "./sortedCollection";
@@ -4,6 +4,6 @@
4
4
  */
5
5
 
6
6
  export { FlaggedError } from "./flaggedError";
7
- export { OperationError } from "./operationError";
8
7
  export { HTTPError } from "./httpError";
9
8
  export { HTTPErrorNoStack } from "./httpErrorNoStack";
9
+ export { OperationError } from "./operationError";
package/src/index.ts CHANGED
@@ -2,15 +2,33 @@
2
2
  * Copyright (c) Microsoft Corporation and contributors. All rights reserved.
3
3
  * Licensed under the MIT License.
4
4
  */
5
-
6
- export * from "./constants";
7
- export * from "./consoleUtils";
8
- export * from "./chronometer";
9
- export * from "./joinPaths";
10
- export * from "./guidUtils";
11
- export * from "./error_objects";
12
- export * from "./deferredPromise";
13
- export * from "./deterministicRandomGenerator";
14
- export * from "./hashCalculator";
15
- export * from "./datastructures";
16
5
  export { EventEmitter } from "events";
6
+
7
+ export { Chronometer } from "./chronometer";
8
+ export { ConsoleUtils } from "./consoleUtils";
9
+ export { constants } from "./constants";
10
+ export {
11
+ BaseDataArray,
12
+ BoolDataArray,
13
+ Collection,
14
+ Float32DataArray,
15
+ Float64DataArray,
16
+ Int16DataArray,
17
+ Int32DataArray,
18
+ Int64,
19
+ Int8DataArray,
20
+ Integer64,
21
+ SortedCollection,
22
+ StringDataArray,
23
+ Uint16DataArray,
24
+ Uint32DataArray,
25
+ Uint64,
26
+ Uint8DataArray,
27
+ UniversalDataArray,
28
+ } from "./datastructures";
29
+ export { DeferredPromise } from "./deferredPromise";
30
+ export { DeterministicRandomGenerator } from "./deterministicRandomGenerator";
31
+ export { FlaggedError, HTTPError, HTTPErrorNoStack, OperationError } from "./error_objects";
32
+ export { GuidUtils } from "./guidUtils";
33
+ export { calculateHash } from "./hashCalculator";
34
+ export { joinPaths } from "./joinPaths";
@@ -6,4 +6,4 @@
6
6
  */
7
7
 
8
8
  export const pkgName = "@fluid-experimental/property-common";
9
- export const pkgVersion = "2.0.0-internal.2.0.2";
9
+ export const pkgVersion = "2.0.0-internal.2.1.0";