zormz 1.2.6 → 1.2.7

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.d.mts CHANGED
@@ -384,7 +384,7 @@ declare class IntColumn {
384
384
  Required(): this;
385
385
  Pk(): this;
386
386
  Unique(): this;
387
- Unsingned(numeroPositivosInicio?: number): void;
387
+ Unsingned(numeroPositivosInicio?: number): this;
388
388
  AutoIncrement(): this;
389
389
  Default(value: number): this;
390
390
  withType({ defaultData, id, requerido, unique, autoIncrement }: IntType): this;
package/dist/index.d.ts CHANGED
@@ -384,7 +384,7 @@ declare class IntColumn {
384
384
  Required(): this;
385
385
  Pk(): this;
386
386
  Unique(): this;
387
- Unsingned(numeroPositivosInicio?: number): void;
387
+ Unsingned(numeroPositivosInicio?: number): this;
388
388
  AutoIncrement(): this;
389
389
  Default(value: number): this;
390
390
  withType({ defaultData, id, requerido, unique, autoIncrement }: IntType): this;
package/dist/index.js CHANGED
@@ -743,6 +743,7 @@ var IntColumn = class {
743
743
  }
744
744
  this.unsingned.uso = true;
745
745
  this.unsingned.valor = numeroPositivosInicio;
746
+ return this;
746
747
  }
747
748
  AutoIncrement() {
748
749
  this.autoIncrement = true;
package/dist/index.mjs CHANGED
@@ -682,6 +682,7 @@ var IntColumn = class {
682
682
  }
683
683
  this.unsingned.uso = true;
684
684
  this.unsingned.valor = numeroPositivosInicio;
685
+ return this;
685
686
  }
686
687
  AutoIncrement() {
687
688
  this.autoIncrement = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zormz",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC",