@fiado/type-kit 1.6.53 → 1.6.54

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.
@@ -34,4 +34,5 @@ export declare class TransactionCreateRequest {
34
34
  status: TransactionStatusEnum;
35
35
  pagoConfiadoAccountBalance?: Number;
36
36
  targetPagoConfiadoAccountBalance?: Number;
37
+ createdAt: Number;
37
38
  }
@@ -159,3 +159,7 @@ __decorate([
159
159
  (0, class_validator_1.IsOptional)(),
160
160
  __metadata("design:type", Number)
161
161
  ], TransactionCreateRequest.prototype, "targetPagoConfiadoAccountBalance", void 0);
162
+ __decorate([
163
+ (0, class_validator_1.IsNumber)(),
164
+ __metadata("design:type", Number)
165
+ ], TransactionCreateRequest.prototype, "createdAt", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.6.53",
3
+ "version": "1.6.54",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -123,6 +123,9 @@ export class TransactionCreateRequest {
123
123
  @IsNumber()
124
124
  @IsOptional()
125
125
  targetPagoConfiadoAccountBalance?: Number;
126
+
127
+ @IsNumber()
128
+ createdAt: Number;
126
129
  }
127
130
 
128
131