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.cjs
CHANGED
|
@@ -709,17 +709,20 @@ var TimeBase = class extends PageSettingsDto {
|
|
|
709
709
|
__decorateClass([
|
|
710
710
|
(0, import_typeorm2.CreateDateColumn)({ select: false }),
|
|
711
711
|
NotColumn(),
|
|
712
|
-
NotInResult({ entityVersioningDate: true })
|
|
712
|
+
NotInResult({ entityVersioningDate: true }),
|
|
713
|
+
Reflect.metadata("design:type", Date)
|
|
713
714
|
], TimeBase.prototype, "createTime", 2);
|
|
714
715
|
__decorateClass([
|
|
715
716
|
(0, import_typeorm2.UpdateDateColumn)({ select: false }),
|
|
716
717
|
NotColumn(),
|
|
717
|
-
NotInResult({ entityVersioningDate: true })
|
|
718
|
+
NotInResult({ entityVersioningDate: true }),
|
|
719
|
+
Reflect.metadata("design:type", Date)
|
|
718
720
|
], TimeBase.prototype, "updateTime", 2);
|
|
719
721
|
__decorateClass([
|
|
720
722
|
(0, import_typeorm2.DeleteDateColumn)({ select: false }),
|
|
721
723
|
NotColumn(),
|
|
722
|
-
NotInResult({ entityVersioningDate: true })
|
|
724
|
+
NotInResult({ entityVersioningDate: true }),
|
|
725
|
+
Reflect.metadata("design:type", Date)
|
|
723
726
|
], TimeBase.prototype, "deleteTime", 2);
|
|
724
727
|
|
|
725
728
|
// src/bases/id-base.ts
|