asv-hlps 1.4.13 → 1.4.14

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.
@@ -0,0 +1,5 @@
1
+ declare const EDatePeriodicity: {
2
+ id: string;
3
+ name: string;
4
+ }[];
5
+ export default EDatePeriodicity;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ // export default CBillPeriod = [
4
+ const EDatePeriodicity = [
5
+ { id: "day", name: "Jour" },
6
+ { id: "week", name: "Semaine" },
7
+ { id: "two_weeks", name: "Quinzaine" },
8
+ { id: "month", name: "Mois" },
9
+ ];
10
+ exports.default = EDatePeriodicity;
@@ -0,0 +1,7 @@
1
+ declare enum EDatePeriodicity {
2
+ DAY = "day",
3
+ WEEK = "week",
4
+ TWO_WEEKS = "two_weeks",
5
+ MONTH = "month"
6
+ }
7
+ export default EDatePeriodicity;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var EDatePeriodicity;
4
+ (function (EDatePeriodicity) {
5
+ EDatePeriodicity["DAY"] = "day";
6
+ EDatePeriodicity["WEEK"] = "week";
7
+ EDatePeriodicity["TWO_WEEKS"] = "two_weeks";
8
+ EDatePeriodicity["MONTH"] = "month";
9
+ })(EDatePeriodicity || (EDatePeriodicity = {}));
10
+ exports.default = EDatePeriodicity;
@@ -0,0 +1,5 @@
1
+ declare const EDatePeriodicity: {
2
+ id: string;
3
+ name: string;
4
+ }[];
5
+ export default EDatePeriodicity;
@@ -0,0 +1,8 @@
1
+ // export default CBillPeriod = [
2
+ const EDatePeriodicity = [
3
+ { id: "day", name: "Jour" },
4
+ { id: "week", name: "Semaine" },
5
+ { id: "two_weeks", name: "Quinzaine" },
6
+ { id: "month", name: "Mois" },
7
+ ];
8
+ export default EDatePeriodicity;
@@ -0,0 +1,7 @@
1
+ declare enum EDatePeriodicity {
2
+ DAY = "day",
3
+ WEEK = "week",
4
+ TWO_WEEKS = "two_weeks",
5
+ MONTH = "month"
6
+ }
7
+ export default EDatePeriodicity;
@@ -0,0 +1,8 @@
1
+ var EDatePeriodicity;
2
+ (function (EDatePeriodicity) {
3
+ EDatePeriodicity["DAY"] = "day";
4
+ EDatePeriodicity["WEEK"] = "week";
5
+ EDatePeriodicity["TWO_WEEKS"] = "two_weeks";
6
+ EDatePeriodicity["MONTH"] = "month";
7
+ })(EDatePeriodicity || (EDatePeriodicity = {}));
8
+ export default EDatePeriodicity;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps",
3
- "version": "1.4.13",
3
+ "version": "1.4.14",
4
4
  "description": "helpers",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",