asv-hlps 1.3.79 → 1.3.81

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.
@@ -1,9 +1,7 @@
1
- declare class NaCoAc {
1
+ export declare class NaCoAc {
2
2
  id: number;
3
3
  name: string;
4
4
  code: string;
5
5
  isActive: boolean;
6
6
  disabled?: boolean;
7
7
  }
8
- declare const _default: NaCoAc;
9
- export default _default;
@@ -9,10 +9,12 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.NaCoAc = void 0;
12
13
  const class_validator_1 = require("class-validator");
13
14
  const typeorm_1 = require("typeorm");
14
15
  class NaCoAc {
15
16
  }
17
+ exports.NaCoAc = NaCoAc;
16
18
  __decorate([
17
19
  (0, typeorm_1.PrimaryGeneratedColumn)(),
18
20
  __metadata("design:type", Number)
@@ -35,4 +37,4 @@ __decorate([
35
37
  (0, typeorm_1.Column)({ default: false }),
36
38
  __metadata("design:type", Boolean)
37
39
  ], NaCoAc.prototype, "disabled", void 0);
38
- exports.default = new NaCoAc();
40
+ // export default new NaCoAc() as NaCoAc;
@@ -1,2 +1,2 @@
1
- import NaCoAc from "./NaCoAc";
1
+ import { NaCoAc } from "./NaCoAc";
2
2
  export { NaCoAc };
@@ -1,8 +1,5 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
3
  exports.NaCoAc = void 0;
7
- const NaCoAc_1 = __importDefault(require("./NaCoAc"));
8
- exports.NaCoAc = NaCoAc_1.default;
4
+ const NaCoAc_1 = require("./NaCoAc");
5
+ Object.defineProperty(exports, "NaCoAc", { enumerable: true, get: function () { return NaCoAc_1.NaCoAc; } });
@@ -1,9 +1,7 @@
1
- declare class NaCoAc {
1
+ export declare class NaCoAc {
2
2
  id: number;
3
3
  name: string;
4
4
  code: string;
5
5
  isActive: boolean;
6
6
  disabled?: boolean;
7
7
  }
8
- declare const _default: NaCoAc;
9
- export default _default;
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
9
9
  };
10
10
  import { IsNotEmpty } from "class-validator";
11
11
  import { Column, PrimaryGeneratedColumn } from "typeorm";
12
- class NaCoAc {
12
+ export class NaCoAc {
13
13
  }
14
14
  __decorate([
15
15
  PrimaryGeneratedColumn(),
@@ -33,4 +33,4 @@ __decorate([
33
33
  Column({ default: false }),
34
34
  __metadata("design:type", Boolean)
35
35
  ], NaCoAc.prototype, "disabled", void 0);
36
- export default new NaCoAc();
36
+ // export default new NaCoAc() as NaCoAc;
@@ -1,2 +1,2 @@
1
- import NaCoAc from "./NaCoAc";
1
+ import { NaCoAc } from "./NaCoAc";
2
2
  export { NaCoAc };
@@ -1,2 +1,2 @@
1
- import NaCoAc from "./NaCoAc";
1
+ import { NaCoAc } from "./NaCoAc";
2
2
  export { NaCoAc };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asv-hlps",
3
- "version": "1.3.79",
3
+ "version": "1.3.81",
4
4
  "description": "helpers",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -18,13 +18,13 @@
18
18
  "devDependencies": {
19
19
  "@types/bcryptjs": "^2.4.6",
20
20
  "@types/express": "^4.17.21",
21
- "@types/lodash": "^4.17.0",
21
+ "@types/lodash": "^4.17.5",
22
22
  "@types/pdfmake": "^0.2.9",
23
23
  "@types/randomatic": "^3.1.5",
24
- "@types/react": "^18.3.1"
24
+ "@types/react": "^18.3.3"
25
25
  },
26
26
  "dependencies": {
27
- "axios": "^1.6.8",
27
+ "axios": "^1.7.2",
28
28
  "bcryptjs": "^2.4.3",
29
29
  "class-validator": "^0.14.1",
30
30
  "classnames": "^2.5.1",
@@ -35,7 +35,7 @@
35
35
  "pdfmake": "^0.2.10",
36
36
  "randomatic": "^3.1.1",
37
37
  "typeorm": "^0.3.20",
38
- "typescript": "^5.4.5",
38
+ "typescript": "^5.5.2",
39
39
  "yup": "^1.4.0"
40
40
  }
41
41
  }