@fiado/type-kit 1.1.46 → 1.1.48
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/.idea/sonarlint/issuestore/6/9/69d58b0b6323e7e777c435dbaefe94a64394e255 +0 -0
- package/.idea/sonarlint/issuestore/e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4 +0 -0
- package/.idea/sonarlint/issuestore/index.pb +5 -1
- package/.idea/sonarlint/securityhotspotstore/6/9/69d58b0b6323e7e777c435dbaefe94a64394e255 +0 -0
- package/.idea/sonarlint/securityhotspotstore/e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4 +0 -0
- package/.idea/sonarlint/securityhotspotstore/index.pb +5 -1
- package/bin/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.d.ts +6 -0
- package/bin/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.js +6 -0
- package/bin/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.d.ts +7 -0
- package/bin/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.js +6 -0
- package/bin/transactionProcessor/index.d.ts +2 -0
- package/bin/transactionProcessor/index.js +2 -0
- package/package.json +1 -1
- package/src/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.ts +6 -0
- package/src/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.ts +8 -0
- package/src/transactionProcessor/index.ts +2 -0
|
File without changes
|
|
File without changes
|
|
@@ -155,4 +155,8 @@ V
|
|
|
155
155
|
v
|
|
156
156
|
Fsrc/transactionProcessor/dtos/private/ExecutePocketOperationRequest.ts,b/2/b2186424e9f368610bda357e95a38d1b7b11ba53
|
|
157
157
|
a
|
|
158
|
-
1src/account/dtos/ExecutePocketOperationRequest.ts,c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985
|
|
158
|
+
1src/account/dtos/ExecutePocketOperationRequest.ts,c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985
|
|
159
|
+
z
|
|
160
|
+
Jsrc/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.ts,6/9/69d58b0b6323e7e777c435dbaefe94a64394e255
|
|
161
|
+
w
|
|
162
|
+
Gsrc/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.ts,e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4
|
|
File without changes
|
|
File without changes
|
|
@@ -155,4 +155,8 @@ V
|
|
|
155
155
|
v
|
|
156
156
|
Fsrc/transactionProcessor/dtos/private/ExecutePocketOperationRequest.ts,b/2/b2186424e9f368610bda357e95a38d1b7b11ba53
|
|
157
157
|
a
|
|
158
|
-
1src/account/dtos/ExecutePocketOperationRequest.ts,c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985
|
|
158
|
+
1src/account/dtos/ExecutePocketOperationRequest.ts,c/d/cdd687c2228066cdac5910ebcd0a5584e5c50985
|
|
159
|
+
z
|
|
160
|
+
Jsrc/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.ts,6/9/69d58b0b6323e7e777c435dbaefe94a64394e255
|
|
161
|
+
w
|
|
162
|
+
Gsrc/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.ts,e/7/e7248564a8f7fdc020eba78ea0c58c98603880a4
|
|
@@ -4,4 +4,6 @@ export * from './dtos/private/PrivateProcessorMerchantInfo';
|
|
|
4
4
|
export * from './dtos/private/PrivateProcessorCardInfo';
|
|
5
5
|
export * from './dtos/private/PrivateProcessorAmountInfo';
|
|
6
6
|
export * from './dtos/private/PrivateProcessorAmountInfoItem';
|
|
7
|
+
export * from './dtos/private/AuthorizeP2pTransactionRequest';
|
|
8
|
+
export * from './dtos/private/AuthorizePocketTransactionRequest';
|
|
7
9
|
export * from './enums/TransactionProcessorCodesEnum';
|
|
@@ -20,4 +20,6 @@ __exportStar(require("./dtos/private/PrivateProcessorMerchantInfo"), exports);
|
|
|
20
20
|
__exportStar(require("./dtos/private/PrivateProcessorCardInfo"), exports);
|
|
21
21
|
__exportStar(require("./dtos/private/PrivateProcessorAmountInfo"), exports);
|
|
22
22
|
__exportStar(require("./dtos/private/PrivateProcessorAmountInfoItem"), exports);
|
|
23
|
+
__exportStar(require("./dtos/private/AuthorizeP2pTransactionRequest"), exports);
|
|
24
|
+
__exportStar(require("./dtos/private/AuthorizePocketTransactionRequest"), exports);
|
|
23
25
|
__exportStar(require("./enums/TransactionProcessorCodesEnum"), exports);
|
package/package.json
CHANGED
|
@@ -4,6 +4,8 @@ export * from './dtos/private/PrivateProcessorMerchantInfo';
|
|
|
4
4
|
export * from './dtos/private/PrivateProcessorCardInfo';
|
|
5
5
|
export * from './dtos/private/PrivateProcessorAmountInfo';
|
|
6
6
|
export * from './dtos/private/PrivateProcessorAmountInfoItem';
|
|
7
|
+
export * from './dtos/private/AuthorizeP2pTransactionRequest';
|
|
8
|
+
export * from './dtos/private/AuthorizePocketTransactionRequest';
|
|
7
9
|
|
|
8
10
|
export * from './enums/TransactionProcessorCodesEnum';
|
|
9
11
|
|