@fiado/type-kit 1.8.82 → 1.8.84
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/BankAccountPocketTransferRequest.d.ts +1 -0
- package/bin/account/dtos/BankAccountPocketTransferResponse.d.ts +9 -0
- package/bin/account/dtos/BankAccountPocketTransferResponse.js +6 -0
- package/bin/account/dtos/ExecuteP2pOperationResponse.d.ts +7 -0
- package/bin/account/dtos/ExecuteP2pOperationResponse.js +6 -0
- package/bin/account/dtos/ExecutePocketOperationResponse.d.ts +7 -0
- package/bin/account/dtos/ExecutePocketOperationResponse.js +6 -0
- package/bin/account/index.d.ts +4 -0
- package/bin/account/index.js +4 -0
- package/bin/identity/dtos/IdentificationDocument.d.ts +1 -0
- package/package.json +1 -1
- package/src/account/dtos/BankAccountPocketTransferRequest.ts +3 -2
- package/src/account/dtos/BankAccountPocketTransferResponse.ts +10 -0
- package/src/account/dtos/ExecuteP2pOperationResponse.ts +7 -0
- package/src/account/dtos/ExecutePocketOperationResponse.ts +8 -0
- package/src/account/index.ts +4 -0
- package/src/identity/dtos/IdentificationDocument.ts +1 -0
package/bin/account/index.d.ts
CHANGED
|
@@ -25,9 +25,13 @@ export * from './dtos/GetAccountResponseList';
|
|
|
25
25
|
export * from './dtos/AccountUpdateBalanceRequest';
|
|
26
26
|
export * from './dtos/UpdateBalanceOperation';
|
|
27
27
|
export * from './dtos/BankAccountP2pTransferRequest';
|
|
28
|
+
export * from './dtos/BankAccountP2pTransferResponse';
|
|
28
29
|
export * from './dtos/BankAccountPocketTransferRequest';
|
|
30
|
+
export * from './dtos/BankAccountPocketTransferResponse';
|
|
29
31
|
export * from './dtos/ExecutePocketOperationRequest';
|
|
32
|
+
export * from './dtos/ExecutePocketOperationResponse';
|
|
30
33
|
export * from './dtos/ExecuteP2pOperationRequest';
|
|
34
|
+
export * from './dtos/ExecuteP2pOperationResponse';
|
|
31
35
|
export * from './dtos/AccountUpdateRequest';
|
|
32
36
|
export * from './dtos/SPEITransferCreateRequest';
|
|
33
37
|
export * from './dtos/SPEITransferResponse';
|
package/bin/account/index.js
CHANGED
|
@@ -42,9 +42,13 @@ __exportStar(require("./dtos/GetAccountResponseList"), exports);
|
|
|
42
42
|
__exportStar(require("./dtos/AccountUpdateBalanceRequest"), exports);
|
|
43
43
|
__exportStar(require("./dtos/UpdateBalanceOperation"), exports);
|
|
44
44
|
__exportStar(require("./dtos/BankAccountP2pTransferRequest"), exports);
|
|
45
|
+
__exportStar(require("./dtos/BankAccountP2pTransferResponse"), exports);
|
|
45
46
|
__exportStar(require("./dtos/BankAccountPocketTransferRequest"), exports);
|
|
47
|
+
__exportStar(require("./dtos/BankAccountPocketTransferResponse"), exports);
|
|
46
48
|
__exportStar(require("./dtos/ExecutePocketOperationRequest"), exports);
|
|
49
|
+
__exportStar(require("./dtos/ExecutePocketOperationResponse"), exports);
|
|
47
50
|
__exportStar(require("./dtos/ExecuteP2pOperationRequest"), exports);
|
|
51
|
+
__exportStar(require("./dtos/ExecuteP2pOperationResponse"), exports);
|
|
48
52
|
__exportStar(require("./dtos/AccountUpdateRequest"), exports);
|
|
49
53
|
__exportStar(require("./dtos/SPEITransferCreateRequest"), exports);
|
|
50
54
|
__exportStar(require("./dtos/SPEITransferResponse"), exports);
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import {OperationEnum} from "../../transaction";
|
|
2
2
|
|
|
3
3
|
export class BankAccountPocketTransferRequest {
|
|
4
|
-
externalAccountId
|
|
5
|
-
amount
|
|
4
|
+
externalAccountId!: string;
|
|
5
|
+
amount!: number;
|
|
6
6
|
transactionNumber?: string;
|
|
7
|
+
preAuth?: boolean;
|
|
7
8
|
operation: OperationEnum;
|
|
8
9
|
}
|
package/src/account/index.ts
CHANGED
|
@@ -27,9 +27,13 @@ export * from './dtos/GetAccountResponseList';
|
|
|
27
27
|
export * from './dtos/AccountUpdateBalanceRequest';
|
|
28
28
|
export * from './dtos/UpdateBalanceOperation';
|
|
29
29
|
export * from './dtos/BankAccountP2pTransferRequest';
|
|
30
|
+
export * from './dtos/BankAccountP2pTransferResponse';
|
|
30
31
|
export * from './dtos/BankAccountPocketTransferRequest';
|
|
32
|
+
export * from './dtos/BankAccountPocketTransferResponse';
|
|
31
33
|
export * from './dtos/ExecutePocketOperationRequest';
|
|
34
|
+
export * from './dtos/ExecutePocketOperationResponse';
|
|
32
35
|
export * from './dtos/ExecuteP2pOperationRequest';
|
|
36
|
+
export * from './dtos/ExecuteP2pOperationResponse';
|
|
33
37
|
export * from './dtos/AccountUpdateRequest';
|
|
34
38
|
export * from './dtos/SPEITransferCreateRequest';
|
|
35
39
|
export * from './dtos/SPEITransferResponse';
|