@fiado/type-kit 1.1.41 → 1.1.43
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/BankAccountP2pTransferRequest.d.ts +7 -0
- package/bin/account/dtos/BankAccountP2pTransferRequest.js +6 -0
- package/bin/account/enums/BankAccountP2pTransferType.d.ts +6 -0
- package/bin/account/enums/BankAccountP2pTransferType.js +10 -0
- package/bin/account/index.d.ts +2 -0
- package/bin/account/index.js +2 -0
- package/bin/identity/dtos/PeopleUpdateRequest.d.ts +1 -0
- package/package.json +1 -1
- package/src/account/dtos/BankAccountP2pTransferRequest.ts +8 -0
- package/src/account/enums/BankAccountP2pTransferType.ts +6 -0
- package/src/account/index.ts +2 -0
- package/src/identity/dtos/PeopleUpdateRequest.ts +1 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BankAccountP2pTransferType = void 0;
|
|
4
|
+
var BankAccountP2pTransferType;
|
|
5
|
+
(function (BankAccountP2pTransferType) {
|
|
6
|
+
BankAccountP2pTransferType["USER_TO_USER"] = "user_to_user";
|
|
7
|
+
BankAccountP2pTransferType["USER_TO_BUSINESS"] = "user_to_business";
|
|
8
|
+
BankAccountP2pTransferType["BUSINESS_TO_USER"] = "business_to_user";
|
|
9
|
+
BankAccountP2pTransferType["BUSINESS_TO_BUSINESS"] = "business_to_business";
|
|
10
|
+
})(BankAccountP2pTransferType || (exports.BankAccountP2pTransferType = BankAccountP2pTransferType = {}));
|
package/bin/account/index.d.ts
CHANGED
|
@@ -23,9 +23,11 @@ export * from './dtos/PocketBalanceItem';
|
|
|
23
23
|
export * from './dtos/GetAccountResponse';
|
|
24
24
|
export * from './dtos/AccountUpdateBalanceRequest';
|
|
25
25
|
export * from './dtos/UpdateBalanceOperation';
|
|
26
|
+
export * from './dtos/BankAccountP2pTransferRequest';
|
|
26
27
|
export * from './entities/AccountEntityBase';
|
|
27
28
|
export * from './enums/AccountEntityStatusEnum';
|
|
28
29
|
export * from './enums/BankAccountTypeEnum';
|
|
29
30
|
export * from './enums/BankAccountUserStatusEnum';
|
|
30
31
|
export * from './enums/UserEntityStatusEnum';
|
|
31
32
|
export * from './enums/AccountLevelEnum';
|
|
33
|
+
export * from './enums/BankAccountP2pTransferType';
|
package/bin/account/index.js
CHANGED
|
@@ -40,6 +40,7 @@ __exportStar(require("./dtos/PocketBalanceItem"), exports);
|
|
|
40
40
|
__exportStar(require("./dtos/GetAccountResponse"), exports);
|
|
41
41
|
__exportStar(require("./dtos/AccountUpdateBalanceRequest"), exports);
|
|
42
42
|
__exportStar(require("./dtos/UpdateBalanceOperation"), exports);
|
|
43
|
+
__exportStar(require("./dtos/BankAccountP2pTransferRequest"), exports);
|
|
43
44
|
//Entities
|
|
44
45
|
__exportStar(require("./entities/AccountEntityBase"), exports);
|
|
45
46
|
//Enums
|
|
@@ -48,3 +49,4 @@ __exportStar(require("./enums/BankAccountTypeEnum"), exports);
|
|
|
48
49
|
__exportStar(require("./enums/BankAccountUserStatusEnum"), exports);
|
|
49
50
|
__exportStar(require("./enums/UserEntityStatusEnum"), exports);
|
|
50
51
|
__exportStar(require("./enums/AccountLevelEnum"), exports);
|
|
52
|
+
__exportStar(require("./enums/BankAccountP2pTransferType"), exports);
|
package/package.json
CHANGED
package/src/account/index.ts
CHANGED
|
@@ -25,6 +25,7 @@ export * from './dtos/PocketBalanceItem';
|
|
|
25
25
|
export * from './dtos/GetAccountResponse';
|
|
26
26
|
export * from './dtos/AccountUpdateBalanceRequest';
|
|
27
27
|
export * from './dtos/UpdateBalanceOperation';
|
|
28
|
+
export * from './dtos/BankAccountP2pTransferRequest';
|
|
28
29
|
|
|
29
30
|
//Entities
|
|
30
31
|
export * from './entities/AccountEntityBase';
|
|
@@ -35,3 +36,4 @@ export * from './enums/BankAccountTypeEnum';
|
|
|
35
36
|
export * from './enums/BankAccountUserStatusEnum';
|
|
36
37
|
export * from './enums/UserEntityStatusEnum';
|
|
37
38
|
export * from './enums/AccountLevelEnum';
|
|
39
|
+
export * from './enums/BankAccountP2pTransferType';
|