@fiado/type-kit 2.0.93 → 2.0.95
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.
- package/bin/account/dtos/CreateAccountEventRequest.d.ts +0 -1
- package/bin/account/dtos/CreateAccountEventRequest.js +0 -4
- package/bin/account/dtos/CreateAccountEventResponse.d.ts +1 -0
- package/bin/account/dtos/CreateAccountEventResponse.js +4 -0
- package/bin/directory/dtos/CreateDirectoryUserEventRequest.d.ts +0 -4
- package/bin/directory/dtos/CreateDirectoryUserEventRequest.js +0 -16
- package/bin/directory/dtos/CreateDirectoryUserEventResponse.d.ts +1 -0
- package/bin/directory/dtos/CreateDirectoryUserEventResponse.js +4 -0
- package/package.json +1 -1
- package/src/account/dtos/CreateAccountEventRequest.ts +1 -4
- package/src/account/dtos/CreateAccountEventResponse.ts +3 -0
- package/src/directory/dtos/CreateDirectoryUserEventRequest.ts +2 -14
- package/src/directory/dtos/CreateDirectoryUserEventResponse.ts +3 -0
|
@@ -50,7 +50,3 @@ __decorate([
|
|
|
50
50
|
(0, class_validator_1.IsString)(),
|
|
51
51
|
__metadata("design:type", String)
|
|
52
52
|
], CreateAccountEventRequest.prototype, "eventDate", void 0);
|
|
53
|
-
__decorate([
|
|
54
|
-
(0, class_validator_1.IsString)(),
|
|
55
|
-
__metadata("design:type", String)
|
|
56
|
-
], CreateAccountEventRequest.prototype, "createdAt", void 0);
|
|
@@ -28,6 +28,10 @@ __decorate([
|
|
|
28
28
|
(0, class_validator_1.IsString)(),
|
|
29
29
|
__metadata("design:type", String)
|
|
30
30
|
], CreateAccountEventResponse.prototype, "idempotencyKey", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_validator_1.IsString)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], CreateAccountEventResponse.prototype, "periodDate", void 0);
|
|
31
35
|
__decorate([
|
|
32
36
|
(0, class_validator_1.IsString)(),
|
|
33
37
|
__metadata("design:type", String)
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
export declare class CreateDirectoryUserEventRequest {
|
|
2
2
|
idempotencyKey: string;
|
|
3
|
-
accountId: string;
|
|
4
|
-
accountNumber: string;
|
|
5
|
-
accountType: string;
|
|
6
3
|
directoryId: string;
|
|
7
4
|
peopleId: string;
|
|
8
5
|
eventCode: string;
|
|
9
6
|
eventDescription: string;
|
|
10
7
|
eventDate: string;
|
|
11
|
-
createdAt: string;
|
|
12
8
|
}
|
|
@@ -18,18 +18,6 @@ __decorate([
|
|
|
18
18
|
(0, class_validator_1.IsString)(),
|
|
19
19
|
__metadata("design:type", String)
|
|
20
20
|
], CreateDirectoryUserEventRequest.prototype, "idempotencyKey", void 0);
|
|
21
|
-
__decorate([
|
|
22
|
-
(0, class_validator_1.IsString)(),
|
|
23
|
-
__metadata("design:type", String)
|
|
24
|
-
], CreateDirectoryUserEventRequest.prototype, "accountId", void 0);
|
|
25
|
-
__decorate([
|
|
26
|
-
(0, class_validator_1.IsString)(),
|
|
27
|
-
__metadata("design:type", String)
|
|
28
|
-
], CreateDirectoryUserEventRequest.prototype, "accountNumber", void 0);
|
|
29
|
-
__decorate([
|
|
30
|
-
(0, class_validator_1.IsString)(),
|
|
31
|
-
__metadata("design:type", String)
|
|
32
|
-
], CreateDirectoryUserEventRequest.prototype, "accountType", void 0);
|
|
33
21
|
__decorate([
|
|
34
22
|
(0, class_validator_1.IsString)(),
|
|
35
23
|
__metadata("design:type", String)
|
|
@@ -50,7 +38,3 @@ __decorate([
|
|
|
50
38
|
(0, class_validator_1.IsString)(),
|
|
51
39
|
__metadata("design:type", String)
|
|
52
40
|
], CreateDirectoryUserEventRequest.prototype, "eventDate", void 0);
|
|
53
|
-
__decorate([
|
|
54
|
-
(0, class_validator_1.IsString)(),
|
|
55
|
-
__metadata("design:type", String)
|
|
56
|
-
], CreateDirectoryUserEventRequest.prototype, "createdAt", void 0);
|
|
@@ -28,6 +28,10 @@ __decorate([
|
|
|
28
28
|
(0, class_validator_1.IsString)(),
|
|
29
29
|
__metadata("design:type", String)
|
|
30
30
|
], CreateDirectoryUserEventResponse.prototype, "idempotencyKey", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_validator_1.IsString)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], CreateDirectoryUserEventResponse.prototype, "periodDate", void 0);
|
|
31
35
|
__decorate([
|
|
32
36
|
(0, class_validator_1.IsString)(),
|
|
33
37
|
__metadata("design:type", String)
|
package/package.json
CHANGED
|
@@ -3,16 +3,7 @@ import { IsString } from "class-validator";
|
|
|
3
3
|
export class CreateDirectoryUserEventRequest {
|
|
4
4
|
|
|
5
5
|
@IsString()
|
|
6
|
-
idempotencyKey: string;
|
|
7
|
-
|
|
8
|
-
@IsString()
|
|
9
|
-
accountId: string;
|
|
10
|
-
|
|
11
|
-
@IsString()
|
|
12
|
-
accountNumber: string;
|
|
13
|
-
|
|
14
|
-
@IsString()
|
|
15
|
-
accountType: string;
|
|
6
|
+
idempotencyKey: string;
|
|
16
7
|
|
|
17
8
|
@IsString()
|
|
18
9
|
directoryId: string;
|
|
@@ -27,8 +18,5 @@ export class CreateDirectoryUserEventRequest {
|
|
|
27
18
|
eventDescription: string;
|
|
28
19
|
|
|
29
20
|
@IsString()
|
|
30
|
-
eventDate: string;
|
|
31
|
-
|
|
32
|
-
@IsString()
|
|
33
|
-
createdAt: string;
|
|
21
|
+
eventDate: string;
|
|
34
22
|
}
|