@fiado/type-kit 2.0.30 → 2.0.31
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.
|
@@ -93,7 +93,7 @@ __decorate([
|
|
|
93
93
|
__decorate([
|
|
94
94
|
(0, class_validator_1.IsOptional)(),
|
|
95
95
|
(0, class_validator_1.IsString)(),
|
|
96
|
-
(0, class_validator_1.Length)(1,
|
|
96
|
+
(0, class_validator_1.Length)(1, 500),
|
|
97
97
|
__metadata("design:type", String)
|
|
98
98
|
], AddressBase.prototype, "additionalInformation", void 0);
|
|
99
99
|
__decorate([
|
|
@@ -103,7 +103,7 @@ __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,
|
|
106
|
+
(0, class_validator_1.Length)(1, 15),
|
|
107
107
|
__metadata("design:type", String)
|
|
108
108
|
], AddressBase.prototype, "internalNumber", void 0);
|
|
109
109
|
__decorate([
|
|
@@ -123,7 +123,7 @@ __decorate([
|
|
|
123
123
|
__decorate([
|
|
124
124
|
(0, class_validator_1.IsOptional)(),
|
|
125
125
|
(0, class_validator_1.IsString)(),
|
|
126
|
-
(0, class_validator_1.Length)(
|
|
126
|
+
(0, class_validator_1.Length)(1, 100),
|
|
127
127
|
__metadata("design:type", String)
|
|
128
128
|
], AddressBase.prototype, "municipality", void 0);
|
|
129
129
|
__decorate([
|
|
@@ -134,18 +134,18 @@ __decorate([
|
|
|
134
134
|
__decorate([
|
|
135
135
|
(0, class_validator_1.IsOptional)(),
|
|
136
136
|
(0, class_validator_1.IsString)(),
|
|
137
|
-
(0, class_validator_1.Length)(
|
|
137
|
+
(0, class_validator_1.Length)(1, 200),
|
|
138
138
|
__metadata("design:type", String)
|
|
139
139
|
], AddressBase.prototype, "neighborhood", void 0);
|
|
140
140
|
__decorate([
|
|
141
141
|
(0, class_validator_1.IsOptional)(),
|
|
142
142
|
(0, class_validator_1.IsString)(),
|
|
143
|
-
(0, class_validator_1.Length)(
|
|
143
|
+
(0, class_validator_1.Length)(1, 200),
|
|
144
144
|
__metadata("design:type", String)
|
|
145
145
|
], AddressBase.prototype, "subRegion", void 0);
|
|
146
146
|
__decorate([
|
|
147
147
|
(0, class_validator_1.IsString)(),
|
|
148
|
-
(0, class_validator_1.Length)(
|
|
148
|
+
(0, class_validator_1.Length)(1, 200),
|
|
149
149
|
__metadata("design:type", String)
|
|
150
150
|
], AddressBase.prototype, "region", void 0);
|
|
151
151
|
__decorate([
|
package/package.json
CHANGED
|
@@ -77,7 +77,7 @@ export class AddressBase {
|
|
|
77
77
|
|
|
78
78
|
@IsOptional()
|
|
79
79
|
@IsString()
|
|
80
|
-
@Length(1,
|
|
80
|
+
@Length(1, 500)
|
|
81
81
|
additionalInformation?: string;
|
|
82
82
|
|
|
83
83
|
@IsBoolean()
|
|
@@ -85,7 +85,7 @@ export class AddressBase {
|
|
|
85
85
|
|
|
86
86
|
@IsOptional()
|
|
87
87
|
@IsString()
|
|
88
|
-
@Length(1,
|
|
88
|
+
@Length(1, 15)
|
|
89
89
|
internalNumber?: string;
|
|
90
90
|
|
|
91
91
|
@IsEnum(CountryId)
|
|
@@ -101,7 +101,7 @@ export class AddressBase {
|
|
|
101
101
|
|
|
102
102
|
@IsOptional()
|
|
103
103
|
@IsString()
|
|
104
|
-
@Length(
|
|
104
|
+
@Length(1, 100)
|
|
105
105
|
municipality?: string;
|
|
106
106
|
|
|
107
107
|
@IsOptional()
|
|
@@ -110,16 +110,16 @@ export class AddressBase {
|
|
|
110
110
|
|
|
111
111
|
@IsOptional()
|
|
112
112
|
@IsString()
|
|
113
|
-
@Length(
|
|
113
|
+
@Length(1, 200)
|
|
114
114
|
neighborhood?: string;
|
|
115
115
|
|
|
116
116
|
@IsOptional()
|
|
117
117
|
@IsString()
|
|
118
|
-
@Length(
|
|
118
|
+
@Length(1, 200)
|
|
119
119
|
subRegion?: string;
|
|
120
120
|
|
|
121
121
|
@IsString()
|
|
122
|
-
@Length(
|
|
122
|
+
@Length(1, 200)
|
|
123
123
|
region?: string;
|
|
124
124
|
|
|
125
125
|
@IsString()
|