@tatumio/algo 2.0.1-alpha.237 → 2.0.1-alpha.240

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/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@tatumio/algo",
3
- "version": "2.0.1-alpha.237",
3
+ "version": "2.0.1-alpha.240",
4
4
  "type": "commonjs",
5
5
  "license": "MIT",
6
6
  "main": "./src/index.js",
7
7
  "typings": "./src/index.d.ts",
8
8
  "dependencies": {
9
- "@tatumio/shared-testing-common": "2.0.1-alpha.237",
10
- "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.237",
11
- "@tatumio/api-client": "2.0.1-alpha.237",
12
- "axios": "^0.25.0",
9
+ "@tatumio/shared-testing-common": "2.0.1-alpha.240",
10
+ "@tatumio/api-client": "2.0.1-alpha.240",
11
+ "axios": "^0.26.0",
13
12
  "form-data": "^4.0.0",
14
- "@tatumio/shared-core": "2.0.1-alpha.237",
15
- "@tatumio/shared-abstract-sdk": "2.0.1-alpha.237",
13
+ "@tatumio/shared-core": "2.0.1-alpha.240",
14
+ "@tatumio/shared-abstract-sdk": "2.0.1-alpha.240",
16
15
  "bignumber.js": "^9.0.2",
16
+ "@tatumio/shared-blockchain-abstract": "2.0.1-alpha.240",
17
17
  "algosdk": "^1.13.1",
18
18
  "base32.js": "^0.1.0",
19
19
  "url-parse": "^1.5.9"
@@ -89,63 +89,6 @@ export declare const TatumAlgoSDK: (args: SDKArguments) => {
89
89
  get: typeof import("@tatumio/api-client").StorageIpfsService.getIpfsData;
90
90
  };
91
91
  subscriptions: typeof import("@tatumio/api-client").LedgerSubscriptionService;
92
- ledger: {
93
- customer: {
94
- get: typeof import("@tatumio/api-client").LedgerCustomerService.getCustomerByExternalOrInternalId;
95
- getAll: typeof import("@tatumio/api-client").LedgerCustomerService.findAllCustomers;
96
- update: typeof import("@tatumio/api-client").LedgerCustomerService.updateCustomer;
97
- activate: typeof import("@tatumio/api-client").LedgerCustomerService.activateCustomer;
98
- deactivate: typeof import("@tatumio/api-client").LedgerCustomerService.deactivateCustomer;
99
- enable: typeof import("@tatumio/api-client").LedgerCustomerService.enableCustomer;
100
- disable: typeof import("@tatumio/api-client").LedgerCustomerService.disableCustomer;
101
- };
102
- orderBook: {
103
- getHistorical: typeof import("@tatumio/api-client").LedgerOrderBookService.getHistoricalTradesBody;
104
- getActiveBuyTrades: typeof import("@tatumio/api-client").LedgerOrderBookService.getBuyTradesBody;
105
- getActiveSellTrades: typeof import("@tatumio/api-client").LedgerOrderBookService.getBuyTradesBody;
106
- newTrade: typeof import("@tatumio/api-client").LedgerOrderBookService.storeTrade;
107
- get: typeof import("@tatumio/api-client").LedgerOrderBookService.getTradeById;
108
- cancel: typeof import("@tatumio/api-client").LedgerOrderBookService.deleteTrade;
109
- cancelByAccount: typeof import("@tatumio/api-client").LedgerOrderBookService.deleteAccountTrades;
110
- };
111
- transaction: {
112
- send: typeof import("@tatumio/api-client").LedgerTransactionService.sendTransaction;
113
- sendMultiple: typeof import("@tatumio/api-client").LedgerTransactionService.sendTransactionBatch;
114
- getAll: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactions;
115
- getAllByAccount: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByAccountId;
116
- getAllByCustomer: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByCustomerId;
117
- getAllByReference: typeof import("@tatumio/api-client").LedgerTransactionService.getTransactionsByReference;
118
- countByAccount: (filter: import("@tatumio/api-client").TransactionFilter) => any;
119
- countByCustomer: (filter: import("@tatumio/api-client").TransactionFilterCustomer) => any;
120
- };
121
- virtualCurrency: {
122
- create: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.createCurrency;
123
- mint: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.mintCurrency;
124
- revoke: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.revokeCurrency;
125
- getByName: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.getCurrency;
126
- update: typeof import("@tatumio/api-client").LedgerVirtualCurrencyService.updateCurrency;
127
- };
128
- blockAmount: {
129
- block: typeof import("@tatumio/api-client").LedgerAccountService.blockAmount;
130
- unblock: typeof import("@tatumio/api-client").LedgerAccountService.deleteBlockAmount;
131
- unblockWithTransaction: typeof import("@tatumio/api-client").LedgerAccountService.unblockAmountWithTransaction;
132
- };
133
- account: {
134
- get: typeof import("@tatumio/api-client").LedgerAccountService.getAccountByAccountId;
135
- getAll: typeof import("@tatumio/api-client").LedgerAccountService.getAllAccounts;
136
- getByCustomerId: typeof import("@tatumio/api-client").LedgerAccountService.getAccountsByCustomerId;
137
- getBalance: typeof import("@tatumio/api-client").LedgerAccountService.getAccountBalance;
138
- create: typeof import("@tatumio/api-client").LedgerAccountService.createAccount;
139
- createMultiple: typeof import("@tatumio/api-client").LedgerAccountService.createAccountBatch;
140
- update: typeof import("@tatumio/api-client").LedgerAccountService.updateAccountByAccountId;
141
- getBlockedAmountsByAccountId: typeof import("@tatumio/api-client").LedgerAccountService.getBlockAmountById;
142
- activate: typeof import("@tatumio/api-client").LedgerAccountService.activateAccount;
143
- deactivate: typeof import("@tatumio/api-client").LedgerAccountService.deactivateAccount;
144
- freeze: typeof import("@tatumio/api-client").LedgerAccountService.freezeAccount;
145
- unfreeze: typeof import("@tatumio/api-client").LedgerAccountService.unfreezeAccount;
146
- generate: (account: import("@tatumio/api-client").CreateAccount, generateNewWalletFn: any, generateNewWallet?: boolean, testnet?: boolean, webhookUrl?: string) => Promise<any>;
147
- };
148
- };
149
92
  security: {
150
93
  checkMaliciousAddress: typeof import("@tatumio/api-client").SecurityAddressService.checkMalicousAddress;
151
94
  };