ggez-banking-sdk 0.3.30 → 0.3.31
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.
|
@@ -139,28 +139,10 @@ const fillCreateBlockchainTransferTransactionData = (data) => {
|
|
|
139
139
|
},
|
|
140
140
|
},
|
|
141
141
|
validate: data.validate,
|
|
142
|
+
authentication: data.authentication,
|
|
142
143
|
};
|
|
143
144
|
return transactionData;
|
|
144
145
|
};
|
|
145
|
-
// {
|
|
146
|
-
// "info": {
|
|
147
|
-
// "currency": "GBPV",
|
|
148
|
-
// "type": "208",
|
|
149
|
-
// "amount": "10",
|
|
150
|
-
// "note": "Test Transfer"
|
|
151
|
-
// },
|
|
152
|
-
// "account": {
|
|
153
|
-
// "info": {
|
|
154
|
-
// "id": 21859
|
|
155
|
-
// }
|
|
156
|
-
// },
|
|
157
|
-
// "transfer": {
|
|
158
|
-
// "account_info": {
|
|
159
|
-
// "chain_address": "vvtx1vrw6qxw4lnlwrwqws7aanxlg06ayaj7u7fq6cj"
|
|
160
|
-
// }
|
|
161
|
-
// },
|
|
162
|
-
// "validate": 0
|
|
163
|
-
// }
|
|
164
146
|
const fillCreateGatewayCryptoTransactionData = (data) => {
|
|
165
147
|
return createDefaultTransactionData({
|
|
166
148
|
info: {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Authentication } from "../../banking";
|
|
1
2
|
interface IInquiryTransactionData {
|
|
2
3
|
status?: number;
|
|
3
4
|
page_size?: number;
|
|
@@ -30,6 +31,7 @@ interface ICreateBlockchainTransferTransactionData {
|
|
|
30
31
|
accountId: number;
|
|
31
32
|
validate: string;
|
|
32
33
|
receiverChainAddress: string;
|
|
34
|
+
authentication: Authentication[];
|
|
33
35
|
}
|
|
34
36
|
interface ICreateSystemTransactionData {
|
|
35
37
|
type: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.31",
|
|
4
4
|
"description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|