asv-hlps 1.4.12 → 1.4.13

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 _default: {
2
+ id: string;
3
+ name: string;
4
+ }[];
5
+ export default _default;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ // export default CBillPeriod = [
4
+ exports.default = [
5
+ { id: "day", name: "Jour" },
6
+ { id: "week", name: "Semaine" },
7
+ { id: "two_weeks", name: "Quinzaine" },
8
+ { id: "month", name: "Mois" },
9
+ ];
@@ -0,0 +1,7 @@
1
+ declare enum EDatePeriod {
2
+ DAY = "day",
3
+ WEEK = "week",
4
+ TWO_WEEKS = "two_weeks",
5
+ MONTH = "month"
6
+ }
7
+ export default EDatePeriod;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var EDatePeriod;
4
+ (function (EDatePeriod) {
5
+ EDatePeriod["DAY"] = "day";
6
+ EDatePeriod["WEEK"] = "week";
7
+ EDatePeriod["TWO_WEEKS"] = "two_weeks";
8
+ EDatePeriod["MONTH"] = "month";
9
+ })(EDatePeriod || (EDatePeriod = {}));
10
+ exports.default = EDatePeriod;
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ id: string;
3
+ name: string;
4
+ }[];
5
+ export default _default;
@@ -0,0 +1,7 @@
1
+ // export default CBillPeriod = [
2
+ export default [
3
+ { id: "day", name: "Jour" },
4
+ { id: "week", name: "Semaine" },
5
+ { id: "two_weeks", name: "Quinzaine" },
6
+ { id: "month", name: "Mois" },
7
+ ];
@@ -0,0 +1,7 @@
1
+ declare enum EDatePeriod {
2
+ DAY = "day",
3
+ WEEK = "week",
4
+ TWO_WEEKS = "two_weeks",
5
+ MONTH = "month"
6
+ }
7
+ export default EDatePeriod;
@@ -0,0 +1,8 @@
1
+ var EDatePeriod;
2
+ (function (EDatePeriod) {
3
+ EDatePeriod["DAY"] = "day";
4
+ EDatePeriod["WEEK"] = "week";
5
+ EDatePeriod["TWO_WEEKS"] = "two_weeks";
6
+ EDatePeriod["MONTH"] = "month";
7
+ })(EDatePeriod || (EDatePeriod = {}));
8
+ export default EDatePeriod;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps",
3
- "version": "1.4.12",
3
+ "version": "1.4.13",
4
4
  "description": "helpers",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -19,14 +19,14 @@
19
19
  "@types/bcryptjs": "^2.4.6",
20
20
  "@types/express": "^5.0.0",
21
21
  "@types/jwt-decode": "^3.1.0",
22
- "@types/lodash": "^4.17.15",
22
+ "@types/lodash": "^4.17.16",
23
23
  "@types/pdfmake": "^0.2.11",
24
24
  "@types/randomatic": "^3.1.5",
25
- "@types/react": "^19.0.8"
25
+ "@types/react": "^19.0.10"
26
26
  },
27
27
  "dependencies": {
28
- "axios": "^1.7.9",
29
- "bcryptjs": "^2.4.3",
28
+ "axios": "^1.8.2",
29
+ "bcryptjs": "^3.0.2",
30
30
  "class-validator": "^0.14.1",
31
31
  "classnames": "^2.5.1",
32
32
  "dayjs": "^1.11.13",
@@ -35,8 +35,8 @@
35
35
  "lodash": "^4.17.21",
36
36
  "pdfmake": "^0.2.18",
37
37
  "randomatic": "^3.1.1",
38
- "typeorm": "^0.3.20",
39
- "typescript": "^5.7.3",
38
+ "typeorm": "^0.3.21",
39
+ "typescript": "^5.8.2",
40
40
  "yup": "^1.6.1"
41
41
  }
42
42
  }