nicot 1.1.25 → 1.1.26
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/dist/index.cjs +6 -3
- package/dist/index.cjs.map +2 -2
- package/dist/index.mjs +6 -3
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -654,17 +654,20 @@ var TimeBase = class extends PageSettingsDto {
|
|
|
654
654
|
__decorateClass([
|
|
655
655
|
CreateDateColumn({ select: false }),
|
|
656
656
|
NotColumn(),
|
|
657
|
-
NotInResult({ entityVersioningDate: true })
|
|
657
|
+
NotInResult({ entityVersioningDate: true }),
|
|
658
|
+
Reflect.metadata("design:type", Date)
|
|
658
659
|
], TimeBase.prototype, "createTime", 2);
|
|
659
660
|
__decorateClass([
|
|
660
661
|
UpdateDateColumn({ select: false }),
|
|
661
662
|
NotColumn(),
|
|
662
|
-
NotInResult({ entityVersioningDate: true })
|
|
663
|
+
NotInResult({ entityVersioningDate: true }),
|
|
664
|
+
Reflect.metadata("design:type", Date)
|
|
663
665
|
], TimeBase.prototype, "updateTime", 2);
|
|
664
666
|
__decorateClass([
|
|
665
667
|
DeleteDateColumn({ select: false }),
|
|
666
668
|
NotColumn(),
|
|
667
|
-
NotInResult({ entityVersioningDate: true })
|
|
669
|
+
NotInResult({ entityVersioningDate: true }),
|
|
670
|
+
Reflect.metadata("design:type", Date)
|
|
668
671
|
], TimeBase.prototype, "deleteTime", 2);
|
|
669
672
|
|
|
670
673
|
// src/bases/id-base.ts
|