asv-hlps 1.3.80 → 1.3.82
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/lib/cjs/typeorm/models/NaCoAc.d.ts +1 -3
- package/lib/cjs/typeorm/models/NaCoAc.js +3 -1
- package/lib/cjs/typeorm/models/index.d.ts +1 -1
- package/lib/cjs/typeorm/models/index.js +2 -5
- package/lib/esm/typeorm/models/NaCoAc.d.ts +1 -3
- package/lib/esm/typeorm/models/NaCoAc.js +2 -2
- package/lib/esm/typeorm/models/index.d.ts +1 -1
- package/lib/esm/typeorm/models/index.js +1 -1
- package/package.json +1 -1
|
@@ -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
|
-
|
|
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 =
|
|
8
|
-
exports
|
|
4
|
+
const NaCoAc_1 = require("./NaCoAc");
|
|
5
|
+
Object.defineProperty(exports, "NaCoAc", { enumerable: true, get: function () { return NaCoAc_1.NaCoAc; } });
|
|
@@ -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 };
|