@dereekb/util 9.22.4 → 9.22.6

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 CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [9.22.6](https://github.com/dereekb/dbx-components/compare/v9.22.5-dev...v9.22.6) (2023-03-02)
6
+
7
+
8
+
9
+ ## [9.22.5](https://github.com/dereekb/dbx-components/compare/v9.22.4-dev...v9.22.5) (2023-02-28)
10
+
11
+
12
+
5
13
  ## [9.22.4](https://github.com/dereekb/dbx-components/compare/v9.22.3-dev...v9.22.4) (2023-02-27)
6
14
 
7
15
 
@@ -2,6 +2,14 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [9.22.6](https://github.com/dereekb/dbx-components/compare/v9.22.5-dev...v9.22.6) (2023-03-02)
6
+
7
+
8
+
9
+ ## [9.22.5](https://github.com/dereekb/dbx-components/compare/v9.22.4-dev...v9.22.5) (2023-02-28)
10
+
11
+
12
+
5
13
  ## [9.22.4](https://github.com/dereekb/dbx-components/compare/v9.22.3-dev...v9.22.4) (2023-02-27)
6
14
 
7
15
 
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@dereekb/util/fetch",
3
- "version": "9.22.4",
3
+ "version": "9.22.6",
4
4
  "main": "./src/index.js",
5
5
  "types": "./src/index.d.ts",
6
6
  "dependencies": {},
7
7
  "peerDependencies": {
8
- "@dereekb/util": "9.22.4",
8
+ "@dereekb/util": "9.22.6",
9
9
  "lodash.isequal": "^4.5.0",
10
10
  "make-error": "^1.3.0",
11
11
  "class-validator": "^0.13.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/util",
3
- "version": "9.22.4",
3
+ "version": "9.22.6",
4
4
  "type": "commonjs",
5
5
  "exports": {
6
6
  ".": {
@@ -5,6 +5,7 @@ export * from './cron';
5
5
  export * from './decision';
6
6
  export * from './equal';
7
7
  export * from './indexed';
8
+ export * from './label';
8
9
  export * from './map';
9
10
  export * from './maybe.type';
10
11
  export * from './maybe';
@@ -8,6 +8,7 @@ tslib_1.__exportStar(require("./cron"), exports);
8
8
  tslib_1.__exportStar(require("./decision"), exports);
9
9
  tslib_1.__exportStar(require("./equal"), exports);
10
10
  tslib_1.__exportStar(require("./indexed"), exports);
11
+ tslib_1.__exportStar(require("./label"), exports);
11
12
  tslib_1.__exportStar(require("./map"), exports);
12
13
  tslib_1.__exportStar(require("./maybe.type"), exports);
13
14
  tslib_1.__exportStar(require("./maybe"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/util/src/lib/value/index.ts"],"names":[],"mappings":";;;AAAA,oDAA0B;AAC1B,kDAAwB;AACxB,kDAAwB;AACxB,iDAAuB;AACvB,qDAA2B;AAC3B,kDAAwB;AACxB,oDAA0B;AAC1B,gDAAsB;AACtB,uDAA6B;AAC7B,kDAAwB;AACxB,qDAA2B;AAC3B,kDAAwB;AACxB,kDAAwB;AACxB,iDAAuB;AACvB,gDAAsB;AACtB,gDAAsB;AACtB,mDAAyB;AACzB,iDAAuB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/util/src/lib/value/index.ts"],"names":[],"mappings":";;;AAAA,oDAA0B;AAC1B,kDAAwB;AACxB,kDAAwB;AACxB,iDAAuB;AACvB,qDAA2B;AAC3B,kDAAwB;AACxB,oDAA0B;AAC1B,kDAAwB;AACxB,gDAAsB;AACtB,uDAA6B;AAC7B,kDAAwB;AACxB,qDAA2B;AAC3B,kDAAwB;AACxB,kDAAwB;AACxB,iDAAuB;AACvB,gDAAsB;AACtB,gDAAsB;AACtB,mDAAyB;AACzB,iDAAuB"}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Refernce to a label string.
3
+ */
4
+ export interface LabelRef {
5
+ label: string;
6
+ }
7
+ /**
8
+ * Labeled value
9
+ */
10
+ export interface LabeledValue<T> extends LabelRef {
11
+ value: T;
12
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=label.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"label.js","sourceRoot":"","sources":["../../../../../../packages/util/src/lib/value/label.ts"],"names":[],"mappings":""}
package/test/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [9.22.6](https://github.com/dereekb/dbx-components/compare/v9.22.5-dev...v9.22.6) (2023-03-02)
6
+
7
+
8
+
9
+ ## [9.22.5](https://github.com/dereekb/dbx-components/compare/v9.22.4-dev...v9.22.5) (2023-02-28)
10
+
11
+
12
+
5
13
  ## [9.22.4](https://github.com/dereekb/dbx-components/compare/v9.22.3-dev...v9.22.4) (2023-02-27)
6
14
 
7
15
 
package/test/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@dereekb/util/test",
3
- "version": "9.22.4",
3
+ "version": "9.22.6",
4
4
  "type": "commonjs",
5
5
  "main": "./src/index.js",
6
6
  "types": "./src/index.d.ts",
7
7
  "dependencies": {},
8
8
  "peerDependencies": {
9
- "@dereekb/util": "9.22.4",
9
+ "@dereekb/util": "9.22.6",
10
10
  "lodash.isequal": "^4.5.0",
11
11
  "make-error": "^1.3.0",
12
12
  "class-validator": "^0.13.2",