nicot 1.1.27 → 1.1.29

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 CHANGED
@@ -671,10 +671,10 @@ __decorateClass([
671
671
  (0, import_swagger4.ApiProperty)({
672
672
  description: "The nth page, starting with 1.",
673
673
  required: false,
674
- type: Number,
675
674
  minimum: 1
676
675
  }),
677
- NotInResult()
676
+ NotInResult(),
677
+ Reflect.metadata("design:type", Number)
678
678
  ], PageSettingsDto.prototype, "pageCount", 2);
679
679
  __decorateClass([
680
680
  NotWritable(),
@@ -683,10 +683,10 @@ __decorateClass([
683
683
  (0, import_swagger4.ApiProperty)({
684
684
  description: "Records per page.",
685
685
  required: false,
686
- type: Number,
687
686
  minimum: 1
688
687
  }),
689
- NotInResult()
688
+ NotInResult(),
689
+ Reflect.metadata("design:type", Number)
690
690
  ], PageSettingsDto.prototype, "recordsPerPage", 2);
691
691
 
692
692
  // src/bases/time-base.ts
@@ -769,7 +769,7 @@ function StringIdBase(idOptions) {
769
769
  }
770
770
  };
771
771
  const decs = [
772
- StringColumn(idOptions.length || (idOptions.uuid ? 36 : 255), {
772
+ StringColumn(idOptions.length || (idOptions.uuid ? void 0 : 255), {
773
773
  required: !idOptions.uuid,
774
774
  description: idOptions.description,
775
775
  columnExtras: { primary: true, nullable: false }