@fiado/type-kit 3.1.3 → 3.1.4

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.
@@ -41,4 +41,5 @@ export declare class TransactionCreateRequest {
41
41
  createdAt: Number;
42
42
  metaDataCode?: string;
43
43
  metaData?: string;
44
+ domFolio?: string;
44
45
  }
@@ -190,3 +190,8 @@ __decorate([
190
190
  (0, class_validator_1.IsOptional)(),
191
191
  __metadata("design:type", String)
192
192
  ], TransactionCreateRequest.prototype, "metaData", void 0);
193
+ __decorate([
194
+ (0, class_validator_1.IsString)(),
195
+ (0, class_validator_1.IsOptional)(),
196
+ __metadata("design:type", String)
197
+ ], TransactionCreateRequest.prototype, "domFolio", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.1.3",
3
+ "version": "3.1.4",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -147,4 +147,8 @@ export class TransactionCreateRequest {
147
147
  @IsString()
148
148
  @IsOptional()
149
149
  metaData?: string;
150
+
151
+ @IsString()
152
+ @IsOptional()
153
+ domFolio?: string;
150
154
  }