@fiado/type-kit 2.0.31 → 2.0.32

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.
@@ -103,7 +103,6 @@ __decorate([
103
103
  __decorate([
104
104
  (0, class_validator_1.IsOptional)(),
105
105
  (0, class_validator_1.IsString)(),
106
- (0, class_validator_1.Length)(1, 15),
107
106
  __metadata("design:type", String)
108
107
  ], AddressBase.prototype, "internalNumber", void 0);
109
108
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "2.0.31",
3
+ "version": "2.0.32",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -85,7 +85,6 @@ export class AddressBase {
85
85
 
86
86
  @IsOptional()
87
87
  @IsString()
88
- @Length(1, 15)
89
88
  internalNumber?: string;
90
89
 
91
90
  @IsEnum(CountryId)