@fiado/type-kit 1.3.0 → 1.3.2

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.
@@ -5,4 +5,7 @@ export declare class TransactionAlarmQueueMessage {
5
5
  amount: number;
6
6
  indexName: string;
7
7
  phoneNumber: string;
8
+ transactionDate: string;
9
+ transactionType: string;
10
+ id: string;
8
11
  }
@@ -44,3 +44,18 @@ __decorate([
44
44
  (0, class_validator_1.IsNotEmpty)(),
45
45
  __metadata("design:type", String)
46
46
  ], TransactionAlarmQueueMessage.prototype, "phoneNumber", void 0);
47
+ __decorate([
48
+ (0, class_validator_1.IsString)(),
49
+ (0, class_validator_1.IsNotEmpty)(),
50
+ __metadata("design:type", String)
51
+ ], TransactionAlarmQueueMessage.prototype, "transactionDate", void 0);
52
+ __decorate([
53
+ (0, class_validator_1.IsString)(),
54
+ (0, class_validator_1.IsNotEmpty)(),
55
+ __metadata("design:type", String)
56
+ ], TransactionAlarmQueueMessage.prototype, "transactionType", void 0);
57
+ __decorate([
58
+ (0, class_validator_1.IsString)(),
59
+ (0, class_validator_1.IsNotEmpty)(),
60
+ __metadata("design:type", String)
61
+ ], TransactionAlarmQueueMessage.prototype, "id", void 0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -28,5 +28,17 @@ export class TransactionAlarmQueueMessage {
28
28
  @IsNotEmpty()
29
29
  phoneNumber: string
30
30
 
31
+ @IsString()
32
+ @IsNotEmpty()
33
+ transactionDate: string
34
+
35
+ @IsString()
36
+ @IsNotEmpty()
37
+ transactionType: string
38
+
39
+ @IsString()
40
+ @IsNotEmpty()
41
+ id: string
42
+
31
43
  }
32
44