@fiado/type-kit 1.3.1 → 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.
@@ -6,4 +6,6 @@ export declare class TransactionAlarmQueueMessage {
6
6
  indexName: string;
7
7
  phoneNumber: string;
8
8
  transactionDate: string;
9
+ transactionType: string;
10
+ id: string;
9
11
  }
@@ -49,3 +49,13 @@ __decorate([
49
49
  (0, class_validator_1.IsNotEmpty)(),
50
50
  __metadata("design:type", String)
51
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.1",
3
+ "version": "1.3.2",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -32,5 +32,13 @@ export class TransactionAlarmQueueMessage {
32
32
  @IsNotEmpty()
33
33
  transactionDate: string
34
34
 
35
+ @IsString()
36
+ @IsNotEmpty()
37
+ transactionType: string
38
+
39
+ @IsString()
40
+ @IsNotEmpty()
41
+ id: string
42
+
35
43
  }
36
44