@dereekb/util 9.9.5 → 9.10.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ # [9.10.0](https://github.com/dereekb/dbx-components/compare/v9.9.5-dev...v9.10.0) (2022-10-05)
6
+
7
+
8
+ ### Features
9
+
10
+ * added DbxFirebaseDevelopmentSchedulerService ([713bac5](https://github.com/dereekb/dbx-components/commit/713bac57dd1864c52394a16d990f04fc81e0c543))
11
+ * added firebase scheduled tasks ([2114446](https://github.com/dereekb/dbx-components/commit/2114446acb1704e93cabd2933d5876f8d9adb56a))
12
+
13
+
14
+
5
15
  ## [9.9.5](https://github.com/dereekb/dbx-components/compare/v9.9.4-dev...v9.9.5) (2022-09-19)
6
16
 
7
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/util",
3
- "version": "9.9.5",
3
+ "version": "9.10.0",
4
4
  "type": "commonjs",
5
5
  "exports": {
6
6
  ".": {
@@ -0,0 +1,6 @@
1
+ import { Minutes } from '../date/date';
2
+ /**
3
+ * A cron schedule expression string
4
+ */
5
+ export declare type CronExpression = string;
6
+ export declare function cronExpressionRepeatingEveryNMinutes(minutes: Minutes): CronExpression;
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.cronExpressionRepeatingEveryNMinutes = void 0;
4
+ function cronExpressionRepeatingEveryNMinutes(minutes) {
5
+ return `*/${minutes} * * * *`; // every nth minute
6
+ }
7
+ exports.cronExpressionRepeatingEveryNMinutes = cronExpressionRepeatingEveryNMinutes;
8
+ //# sourceMappingURL=cron.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cron.js","sourceRoot":"","sources":["../../../../../../packages/util/src/lib/value/cron.ts"],"names":[],"mappings":";;;AAOA,SAAgB,oCAAoC,CAAC,OAAgB;IACnE,OAAO,KAAK,OAAO,UAAU,CAAC,CAAC,mBAAmB;AACpD,CAAC;AAFD,oFAEC"}
@@ -1,5 +1,6 @@
1
1
  export * from './bound';
2
2
  export * from './build';
3
+ export * from './cron';
3
4
  export * from './decision';
4
5
  export * from './equal';
5
6
  export * from './indexed';
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  tslib_1.__exportStar(require("./bound"), exports);
5
5
  tslib_1.__exportStar(require("./build"), exports);
6
+ tslib_1.__exportStar(require("./cron"), exports);
6
7
  tslib_1.__exportStar(require("./decision"), exports);
7
8
  tslib_1.__exportStar(require("./equal"), exports);
8
9
  tslib_1.__exportStar(require("./indexed"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/util/src/lib/value/index.ts"],"names":[],"mappings":";;;AAAA,kDAAwB;AACxB,kDAAwB;AACxB,qDAA2B;AAC3B,kDAAwB;AACxB,oDAA0B;AAC1B,gDAAsB;AACtB,uDAA6B;AAC7B,kDAAwB;AACxB,qDAA2B;AAC3B,kDAAwB;AACxB,gDAAsB;AACtB,gDAAsB;AACtB,kDAAwB;AACxB,mDAAyB;AACzB,iDAAuB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/util/src/lib/value/index.ts"],"names":[],"mappings":";;;AAAA,kDAAwB;AACxB,kDAAwB;AACxB,iDAAuB;AACvB,qDAA2B;AAC3B,kDAAwB;AACxB,oDAA0B;AAC1B,gDAAsB;AACtB,uDAA6B;AAC7B,kDAAwB;AACxB,qDAA2B;AAC3B,kDAAwB;AACxB,gDAAsB;AACtB,gDAAsB;AACtB,kDAAwB;AACxB,mDAAyB;AACzB,iDAAuB"}
@@ -1 +1,2 @@
1
1
  export declare type Pixels = number;
2
+ export declare type PixelsString = string;
package/test/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ # [9.10.0](https://github.com/dereekb/dbx-components/compare/v9.9.5-dev...v9.10.0) (2022-10-05)
6
+
7
+
8
+
5
9
  ## [9.9.5](https://github.com/dereekb/dbx-components/compare/v9.9.4-dev...v9.9.5) (2022-09-19)
6
10
 
7
11
 
package/test/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@dereekb/util/test",
3
- "version": "9.9.5",
3
+ "version": "9.10.0",
4
4
  "type": "commonjs",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts",
7
7
  "dependencies": {},
8
8
  "peerDependencies": {
9
- "@dereekb/util": "9.9.5",
9
+ "@dereekb/util": "9.10.0",
10
10
  "lodash.isequal": "^4.5.0",
11
11
  "make-error": "^1.3.0",
12
12
  "class-validator": "^0.13.2",