Code Monkey home page Code Monkey logo

tatumio / tatum-js Goto Github PK

View Code? Open in Web Editor NEW
353.0 22.0 109.0 67.87 MB

๐Ÿš€ Tatum SDK: A ๐Ÿ’ช powerful, ๐ŸŒŸ feature-rich TypeScript/JavaScript ๐Ÿ“š library that streamlines the ๐Ÿ› ๏ธ development of ๐ŸŒ blockchain applications.

Home Page: https://docs.tatum.io

License: MIT License

TypeScript 99.90% JavaScript 0.10%
blockchain api cryptocurrency dev-tool ethereum polygon sdk tron exchange-rate fee-estimation

tatum-js's People

Contributors

alexloiko avatar dependabot[bot] avatar evgeniabogranskaya avatar filipkastovsky avatar hathoriel avatar hehe100596 avatar isra67 avatar jakcinmarina avatar jdckl avatar jeydev310 avatar karolrec avatar martinttm avatar ncodes avatar npwork avatar oliverjantar avatar opefago avatar pedrodbaptista avatar petrjurasek1 avatar philipmantrov avatar rachitgod avatar rostislavjadavan avatar ruckim avatar samtatum avatar samuelsramko avatar sceri avatar smrecz avatar snyk-bot avatar vlnevyhosteny avatar von-drc avatar yocontra avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tatum-js's Issues

BCH toLegacy conversion error

When sending a BCH testnet transaction, we get the below error:

Error: qzw986csm6297rq223m30yl0md6zv3epuvdt34juk5 has no matching Script

We isolated the issue to the following lines in src/transaction/bcash.js

for (const item of to) {
transactionBuilder.addOutput(getAddress(item.address), Number(new bignumber_js_1.default(item.value).multipliedBy(100000000).toFixed(0, bignumber_js_1.default.ROUND_FLOOR)));
}

and linked to this:

const getAddress = (address) => {
try {
return wallet_1.toLegacyAddress(address);
}
catch (e) {
return address;
}
};

this outputs the following error:
'bchtest:qzw986csm6297rq223m30yl0md6zv3epuvdt34juk5'
Uncaught Error: Non-base58 character

Thx

Segmentation fault node js

Hey!
I've been getting the error Segmentation fault once I run tatum.js file using node js

// tatum.js
const tatum = require("@tatumio/tatum");
>npm list
[email protected] /home/benjamin/Documents/node/bitcore-tests
โ”œโ”€โ”€ @tatumio/[email protected]
โ”œโ”€โ”€ @tatumio/[email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ””โ”€โ”€ [email protected]

> npm --version
8.3.0

> node --version
v16.13.2

> node tatum.js
Segmentation fault

> sudo node tatum.js
Segmentation fault

403 API Error when sending transaction

When attempting to do a transfer of native tokens from a custodial wallet to a blockchain address:

    const sentTransaction = await ethSdk.custodial.send.transferFromCustodialWallet(
      {
        chain: "ETH",
        custodialAddress: userAddress,
        contractType: 3,
        recipient: destination,
        amount: amount.toString(),
        signatureId: config.tatumSignatureId
      },
      config.env !== "production"
    );

Then receive the following error:

  {
    "name": "ApiError",
    "url": "https://api-eu1.tatum.io/v3/ethereum/broadcast",
    "status": 403,
    "statusText": "Forbidden",
    "body": {
      "statusCode": 403,
      "errorCode": "eth.broadcast.failed",
      "message": "Unable to broadcast transaction due to invalid argument 0: json: cannot unmarshal hex string without 0x prefix into Go value of type hexutil.Bytes."
    }
  }

Test data:

userAddress = '0x4d6968b4c98452d6e9d0c3029c72285a9e0ecc1e'
destination = '0x76c4CAbA24840EC9b7644Cbe3FF9b329D49ADEf6'
amount = 1

Any ideas?

Error Installation @tatumio/eth

Hi,

I try install @tatumio/eth and I get this error

npm install @tatumio/eth
npm ERR! code ETARGET
npm ERR! notarget No matching version found for @tatumio/[email protected].
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! notarget
npm ERR! notarget It was specified as a dependency of '@tatumio/eth'
npm ERR! notarget

Any idea?

Not compatible with next js

Seems there are compatibility issues with next.js framework.

crashes on all modules such as 'fs' 'path' 'os' 'crypto' 'stream' and more.

Not sure what the fix is, but seems like it has to do with both browser and node.js compatibility as the same time?

Transaction Failed When Transfering NFT Token

I had created NFT MarketPlace With Tatum and minted token which were also seen in open sea testnet . when i tried to transfer the token with api call of tatum which uses safetransfer() it fails but when i transfered using opensea then it got transferd.

failing transaction id : 0xc5e11b38da10e50f4976de55a2b28ffb19a064cce03944518669009de06d1d5e

I tried through both rest api and tatum method ("transferNFT")

Still same result

DeleteTransactionKms always returns 404

AFAIY
there is mismatch in code const deleteTransactionKMS = async (id, revert = true) => tatum_1.httpDelete(/v3/kms/${id}/${revert});
and API doc https://api-eu1.tatum.io/v3/kms/{id}?revert=trueโ€™

query param vs. path param, API doc is correct, but SDK implementation is wrong

Please help newbie

Hi and thanks for the code here. I have tried to install this code and it just wont install and I wonder if someone could point me in the right direction .
I have to say that the Tatum instructions accross the board are hard to understand and do not explain things well.
Large spaces of instructions are missed out or poorley explained and I just cannot work out what the problems are.
When trying to install the tatum-js i get these errors

npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/exhaust.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/exhaust.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/exhaustMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/exhaustMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/exhaustMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/exhaustMap.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/expand.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/expand.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/expand.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/expand.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/dom/fetch.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/filter.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/filter.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/filter.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/filter.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/finalize.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/finalize.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/finally.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/finally.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/find.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/find.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/find.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/find.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/findIndex.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/findIndex.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/findIndex.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/findIndex.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/first.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/first.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/first.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/first.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/forkJoin.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/forkJoin.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/forkJoin.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/ForkJoinObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/from.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/from.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/from.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/fromArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/fromArray.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/fromEvent.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/fromEvent.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/fromEvent.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/FromEventObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/fromEventPattern.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/fromEventPattern.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/fromEventPattern.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/FromEventPatternObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/fromIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/fromIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/FromObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/fromPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/fromPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/fromPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/generate.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/generate.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/generate.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/GenerateObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/groupBy.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/groupBy.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/groupBy.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/groupBy.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/hostReportError.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/hostReportError.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/testing/HotObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/identity.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/identity.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/if.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/if.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/IfObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/ignoreElements.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/ignoreElements.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/ignoreElements.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/ignoreElements.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/iif.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/Immediate.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/Immediate.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/ajax'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/fetch'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/index.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal-compatibility'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/index.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/index.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/testing'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/webSocket'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/innerSubscribe.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/InnerSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/InnerSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/interfaces.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/interval.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/interval.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/interval.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/IntervalObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isArray.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isArrayLike.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isArrayLike.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isDate.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isDate.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/isEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/isEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/isEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/isEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isFunction.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isFunction.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isInteropObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isNumeric.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isNumeric.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isObject.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isObject.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isScheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isScheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/symbol'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/symbol'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/IteratorObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/last.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/last.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/last.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/last.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/let.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/let.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/map.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/map.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/map.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/map.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/mapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/mapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/mapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/mapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/materialize.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/materialize.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/materialize.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/materialize.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/max.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/max.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/max.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/max.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/mergeAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/mergeAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/mergeAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/mergeAll.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/mergeMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/mergeMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/mergeMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/mergeMap.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/mergeMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/mergeMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/mergeMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/mergeMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/mergeScan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/mergeScan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/mergeScan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/mergeScan.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/min.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/min.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/min.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/min.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/multicast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/multicast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/multicast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/multicast.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/never.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/never.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/never.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/NeverObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/noop.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/noop.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/not.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/not.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Notification.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Notification.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/ObjectUnsubscribedError.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/ObjectUnsubscribedError.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Observable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/symbol'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Observable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/symbol'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/observeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/observeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/observeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/observeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Observer.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Observer.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/of.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/of.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/of.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Operator.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Operator.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/OuterSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/OuterSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/pairs.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/pairs.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/pairs.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/PairsObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/pairwise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/pairwise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/pairwise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/pairwise.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/partition.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/partition.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/partition.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/partition.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/partition.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/pipe.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/pipe.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/pluck.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/pluck.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/pluck.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/pluck.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/PromiseObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/publish.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/publish.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/publish.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/publish.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/publishBehavior.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/publishBehavior.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/publishBehavior.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/publishBehavior.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/publishLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/publishLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/publishLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/publishLast.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/publishReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/publishReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/publishReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/publishReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduler/queue.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/scheduler/queue.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduler/QueueAction.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduler/QueueScheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/race.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/range.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/range.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/range.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/RangeObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/reduce.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/reduce.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/reduce.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/reduce.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/refCount.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/refCount.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/repeat.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/repeat.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/repeat.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/repeat.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/repeatWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/repeatWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/repeatWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/repeatWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/ReplaySubject.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/ReplaySubject.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/retry.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/retry.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/retry.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/retry.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/retryWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/retryWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/retryWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/retryWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/root.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/root.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Rx.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Rx.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/symbol'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/symbol'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/sample.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/sample.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/sample.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/sample.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/sampleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/sampleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/sampleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/sampleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/ScalarObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/scan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/scan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/scan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/scan.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduled'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduled'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduled'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduled'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduled'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Scheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Scheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/sequenceEqual.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/sequenceEqual.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/sequenceEqual.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/sequenceEqual.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/share.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/share.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/share.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/share.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/shareReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/shareReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/shareReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/shareReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/single.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/single.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/single.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/single.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/skip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/skip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/skip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/skip.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/skipLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/skipLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/skipLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/skipLast.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/skipUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/skipUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/skipUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/skipUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/skipWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/skipWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/skipWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/skipWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/startWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/startWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/startWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/startWith.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Subject.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Subject.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/SubjectSubscription.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/SubjectSubscription.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/subscribeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/subscribeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/subscribeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/subscribeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/SubscribeOnObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/SubscribeOnObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Subscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Subscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeTo.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeToArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeToArray.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeToIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeToIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeToObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeToObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeToPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeToPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeToResult.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeToResult.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Subscription.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Subscription.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/testing/SubscriptionLog.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/testing/SubscriptionLoggable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/switch.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/switch.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/switchAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/switchAll.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/switchMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/switchMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/switchMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/switchMap.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/switchMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/switchMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/switchMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/switchMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/take.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/take.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/take.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/take.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/takeLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/takeLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/takeLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/takeLast.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/takeUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/takeUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/takeUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/takeUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/takeWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/takeWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/takeWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/takeWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/tap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/tap.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/testing/TestMessage.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/testing/TestScheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/throttle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/throttle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/throttle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/throttle.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/throttleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/throttleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/throttleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/throttleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/throw.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/throw.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/throwError.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/throwIfEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/throwIfEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/timeInterval.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/timeInterval.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/timeInterval.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/timeInterval.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/timeout.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/timeout.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/timeout.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/timeout.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/TimeoutError.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/TimeoutError.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/timeoutWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/timeoutWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/timeoutWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/timeoutWith.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/timer.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/timer.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/timer.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/TimerObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/timestamp.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/timestamp.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/timestamp.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/timestamp.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/toArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/toArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/toArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/toArray.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/toPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/toPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/toSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/toSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/tryCatch.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/tryCatch.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/types.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/UnsubscriptionError.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/UnsubscriptionError.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/using.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/using.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/using.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/UsingObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduler/VirtualTimeScheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/dom/webSocket.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/dom/webSocket.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/dom/webSocket.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/dom/WebSocketSubject.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/dom/WebSocketSubject.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/window.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/window.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/window.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/window.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/windowCount.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/windowCount.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/windowCount.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/windowCount.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/windowTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/windowTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/windowTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/windowTime.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/windowToggle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/windowToggle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/windowToggle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/windowToggle.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/windowWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/windowWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/windowWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/windowWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/withLatestFrom.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/withLatestFrom.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/withLatestFrom.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/withLatestFrom.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/zipAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/zipAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/zipAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/zipAll.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/_esm2015'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/_esm5'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/LICENSE.txt'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'

I am cloning this git repository and providing the commands that you have given but it just wont work. I have tried ubuntu 16 / 18 and 20 and different versions of npm but just keep running in to these same errors.

If somebody could help I would really appreciate it.

Requirements for npm install on linux

It seems that for linux (I'm having Ubuntu 20.04.3 LTS) you need to have some libraries installed before you try npm install.

In my case I was missing libudev-dev. Without it you get very cryptic errors including:

npm ERR! ../libusb/libusb/os/linux_udev.c:40:10: fatal error: libudev.h: No such file or directory
npm ERR!    40 | #include <libudev.h>
npm ERR!       |          ^~~~~~~~~~~

Having it mentioned in the documentation would help. ;)

Running into node-gyp error related to libusb when running npm i @tatumio/tatum

Describe the issue

Hi, unable to install the package on Mac OS running Monterey, error I'm getting:

npm ERR! code 1
npm ERR! path /Users/davidnandwa/Desktop/HoneyCoin/Node.js (Back-End Apps)/HC-Crypto-Server/node_modules/usb
npm ERR! command failed
npm ERR! command sh -c node-gyp-build
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/core.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/descriptor.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/hotplug.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/io.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/strerror.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/sync.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/os/poll_posix.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/os/threads_posix.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/os/darwin_usb.o
npm ERR! LIBTOOL-STATIC Release/usb.a
npm ERR! CXX(target) Release/obj.target/usb_bindings/src/node_usb.o
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp info using [email protected]
npm ERR! gyp info using [email protected] | darwin | arm64
npm ERR! gyp info find Python using Python version 3.8.9 found at "/Applications/Xcode.app/Contents/Developer/usr/bin/python3"
npm ERR! gyp info spawn /Applications/Xcode.app/Contents/Developer/usr/bin/python3
npm ERR! gyp info spawn args [
npm ERR! gyp info spawn args '/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py',
npm ERR! gyp info spawn args 'binding.gyp',
npm ERR! gyp info spawn args '-f',
npm ERR! gyp info spawn args 'make',
npm ERR! gyp info spawn args '-I',
npm ERR! gyp info spawn args '/Users/davidnandwa/Desktop/HoneyCoin/Node.js (Back-End Apps)/HC-Crypto-Server/node_modules/usb/build/config.gypi',
npm ERR! gyp info spawn args '-I',
npm ERR! gyp info spawn args '/usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi',
npm ERR! gyp info spawn args '-I',
npm ERR! gyp info spawn args '/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/include/node/common.gypi',
npm ERR! gyp info spawn args '-Dlibrary=shared_library',
npm ERR! gyp info spawn args '-Dvisibility=default',
npm ERR! gyp info spawn args '-Dnode_root_dir=/Users/davidnandwa/Library/Caches/node-gyp/16.15.0',
npm ERR! gyp info spawn args '-Dnode_gyp_dir=/usr/local/lib/node_modules/npm/node_modules/node-gyp',
npm ERR! gyp info spawn args '-Dnode_lib_file=/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/<(target_arch)/node.lib',
npm ERR! gyp info spawn args '-Dmodule_root_dir=/Users/davidnandwa/Desktop/HoneyCoin/Node.js (Back-End Apps)/HC-Crypto-Server/node_modules/usb',
npm ERR! gyp info spawn args '-Dnode_engine=v8',
npm ERR! gyp info spawn args '--depth=.',
npm ERR! gyp info spawn args '--no-parallel',
npm ERR! gyp info spawn args '--generator-output',
npm ERR! gyp info spawn args 'build',
npm ERR! gyp info spawn args '-Goutput_dir=.'
npm ERR! gyp info spawn args ]
npm ERR! gyp info spawn make
npm ERR! gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
npm ERR! ../libusb/libusb/io.c:2300:30: warning: comparison of integers of different signs: 'int' and 'nfds_t' (aka 'unsigned int') [-Wsign-compare]
npm ERR! for (i = internal_nfds ; i < nfds ; ++i) {
npm ERR! ~ ^ ~~~~
npm ERR! 1 warning generated.
npm ERR! /bin/sh: -c: line 0: syntax error near unexpected token (' npm ERR! /bin/sh: -c: line 0: c++ -o Release/obj.target/usb_bindings/src/node_usb.o ../src/node_usb.cc '-DNODE_GYP_MODULE_NAME=usb_bindings' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_GLIBCXX_USE_CXX11_ABI=1' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DNAPI_VERSION=8' '-DBUILDING_NODE_EXTENSION' -I../src -I/Users/davidnandwa/Desktop/HoneyCoin/Node.js (Back-End Apps)/HC-Crypto-Server/node_modules/usb/node_modules/node-addon-api -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/include/node -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/src -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/deps/openssl/config -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/deps/openssl/openssl/include -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/deps/uv/include -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/deps/zlib -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/deps/v8/include -I../libusb/libusb -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk -O3 -gdwarf-2 -mmacosx-version-min=10.11 -arch arm64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=gnu++14 -stdlib=libc++ -fno-rtti -fno-strict-aliasing -std=c++1y -stdlib=libc++ -MMD -MF ./Release/.deps/Release/obj.target/usb_bindings/src/node_usb.o.d.raw -c'
npm ERR! make: *** [Release/obj.target/usb_bindings/src/node_usb.o] Error 2
npm ERR! gyp ERR! build error
npm ERR! gyp ERR! stack Error: make failed with exit code: 2
npm ERR! gyp ERR! stack at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
npm ERR! gyp ERR! stack at ChildProcess.emit (node:events:527:28)
npm ERR! gyp ERR! stack at Process.ChildProcess._handle.onexit (node:internal/child_process:291:12)
npm ERR! gyp ERR! System Darwin 21.5.0
npm ERR! gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
npm ERR! gyp ERR! cwd /Users/davidnandwa/Desktop/HoneyCoin/Node.js (Back-End Apps)/HC-Crypto-Server/node_modules/usb
npm ERR! gyp ERR! node -v v16.15.0
npm ERR! gyp ERR! node-gyp -v v9.0.0
npm ERR! gyp ERR! not ok

npm ERR! A complete log of this run can be found in:
npm ERR! /Users/davidnandwa/.npm/_logs/2023-01-31T08_43_15_482Z-debug-0.log

This is an empty new project so package.json is empty.

What operating system(s) are you seeing the problem on?

macOS

What environment do you see the problem on (Web/Node)?

NodeJS

What version of tatum sdk are you using?

1.37.30

bitcoin -> offchain (sendBitcoinOffchainTransaction) errors

Blows up here: https://github.com/tatumio/tatum-js/blob/master/src/offchain/bitcoin.ts#L95

Error: Invalid Argument: First argument is required, please include address data. Documentation: http://bitcore.io/guide/address.html
Error
    at new NodeError (/Users/contra/Projects/createsafe-wallet/api/node_modules/bitcore-lib/lib/errors/index.js:20:41)
    at Object.checkArgument (/Users/contra/Projects/createsafe-wallet/api/node_modules/bitcore-lib/lib/util/preconditions.js:14:13)
    at new Address (/Users/contra/Projects/createsafe-wallet/api/node_modules/bitcore-lib/lib/address.js:69:5)
    at Address (/Users/contra/Projects/createsafe-wallet/api/node_modules/bitcore-lib/lib/address.js:57:12)
    at Function.Script.fromAddress (/Users/contra/Projects/createsafe-wallet/api/node_modules/bitcore-lib/lib/script/script.js:1010:13)
    at /Users/contra/Projects/createsafe-wallet/api/node_modules/@tatumio/tatum/src/offchain/bitcoin.ts:95:36
    at Array.forEach (<anonymous>)
    at Object.prepareBitcoinSignedOffchainTransaction (/Users/contra/Projects/createsafe-wallet/api/node_modules/@tatumio/tatum/src/offchain/bitcoin.ts:90:14)
    at Object.sendBitcoinOffchainTransaction (/Users/contra/Projects/createsafe-wallet/api/node_modules/@tatumio/tatum/src/offchain/bitcoin.ts:30:24)
    at processTicksAndRejections (node:internal/process/task_queues:96:5)

I think this is an API issue, the API WithdrawalResponseData[] response has a null address:

Screen Shot 2021-06-20 at 4 25 15 PM

And in this function there doesn't seem to be any behavior defined for this case, which leads me to think the API is at fault. Transferring with the same code/account/ledger works fine with other currencies besides BTC.

Add address query parameter in `listActiveSubscriptions` function

Hi! ๐Ÿ‘‹

Firstly, thanks for your work on this project! ๐Ÿ™‚

Today I used patch-package to patch @tatumio/[email protected] for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/@tatumio/tatum/dist/src/ledger/subscription.d.ts b/node_modules/@tatumio/tatum/dist/src/ledger/subscription.d.ts
index e5733e8..9459547 100644
--- a/node_modules/@tatumio/tatum/dist/src/ledger/subscription.d.ts
+++ b/node_modules/@tatumio/tatum/dist/src/ledger/subscription.d.ts
@@ -9,7 +9,7 @@ export declare const createNewSubscription: (data: CreateSubscription) => Promis
 /**
  * For more details, see <a href="https://apidoc.tatum.io/#operation/getSubscriptions" target="_blank">Tatum API documentation</a>
  */
-export declare const listActiveSubscriptions: (pageSize?: number, offset?: number) => Promise<Subscription[]>;
+export declare const listActiveSubscriptions: (pageSize?: number, offset?: number, address?: string) => Promise<Subscription[]>;
 /**
  * For more details, see <a href="https://apidoc.tatum.io/#operation/deleteSubscription" target="_blank">Tatum API documentation</a>
  */
diff --git a/node_modules/@tatumio/tatum/dist/src/ledger/subscription.js b/node_modules/@tatumio/tatum/dist/src/ledger/subscription.js
index 1e1c187..7a4c308 100644
--- a/node_modules/@tatumio/tatum/dist/src/ledger/subscription.js
+++ b/node_modules/@tatumio/tatum/dist/src/ledger/subscription.js
@@ -14,7 +14,7 @@ exports.createNewSubscription = createNewSubscription;
 /**
  * For more details, see <a href="https://apidoc.tatum.io/#operation/getSubscriptions" target="_blank">Tatum API documentation</a>
  */
-const listActiveSubscriptions = async (pageSize = 50, offset = 0) => tatum_1.get(`/v3/subscription?pageSize=${pageSize}&offset=${offset}`);
+const listActiveSubscriptions = async (pageSize = 50, offset = 0, address = undefined) => tatum_1.get(`/v3/subscription?pageSize=${pageSize}&offset=${offset}&address=${address}`);
 exports.listActiveSubscriptions = listActiveSubscriptions;
 /**
  * For more details, see <a href="https://apidoc.tatum.io/#operation/deleteSubscription" target="_blank">Tatum API documentation</a>

This issue body was partially generated by patch-package.

Proposition: clearly separate local vs api methods

(assumption: I put myself in the shoes of a user who is just getting started to work with tatum)

Let's imagine that I read API documentation page https://tatum.io/apidoc.php#operation/BtcGenerateAddress
which says that there is a Get enpoint /v3/bitcoin/address/{xpub}/{index} that I can use to get address from my xpub by index

later in tatum-js library I find function generateAddressFromXPub

const address = await generateAddressFromXPub(Currency.QTUM, true, 'tpubDEPswwDHtxcS3q3K81iRgcxRKinjdEBM6dKer3HjeVPRgL44fFpJpttdDxQLLAxLoZLu69c6bMeyGqCPihUdCZedYu9vqah2gbP1wkLUvzB', 1)

Given the code example above can you tell whether the API request will be made? (the answer is no)
What about this one? (the answer is yes)

const fee = await estimateQtumFee(12345)

The only way to tell is to look inside implementation (which probably breaks the incapsulation idea)

Proposition is:
Clearly separate boundaries of local and remote calls by combining remote functions into objects with a descriptive name.

const option1 = tatumApi.estimateQtumFee(12345)
const option2 = qtumApi.estimateFee(12345)
const option3 = tatumApi.qtum.estimateFee(12345)

Some feedback

  1. Undici should be a dependency and not a devDependency Unless it's added to the peerDependencies section.
    "undici": "^5.21.0"
  2. reflect-metadata does not play well in some environments, for example with Pulumi's IaC lambda serializer.
  3. (Subjective) The use of typedi in a dependency might cause issues: Vendor Lock-in and conflicting dependencies. (Issue probably caused by di #808)
  4. The library assumes one instance per network, which is not always the case, and so managing many instances for each network might consume more resources.
  5. Instance Initialization is async
  6. Why are address and contract notifications "segregated" in the SDK but not in the API? Are these more like Logs notifications?

You may close this issue, as it's purely feedback. (except the first item)

how to use ethereum-goerli

Describe the issue

I see ethereum-sepolia only
how to use ethereum-goerli?

What operating system(s) are you seeing the problem on?

Windows

What environment do you see the problem on (Web/Node)?

NodeJS

What version of tatum sdk are you using?

2.0.1-alpha.426

Gas price in polygon is not enough

Hi,
gas price in polygon transactions doesn't have enough gas price. This function

return Web3.utils.toWei(`${Math.max(30, Math.min(Math.ceil(data.fast / 10), 100))}`, 'gwei');
returns gas price 69000000000 in wei, in gwei it is 69. But the actual gas price is around 400 Gwei https://polygonscan.com/chart/gasprice. So all our NFT mint Polygon calls are failing with error:

Unexpected error occurred. Reason: Unable to broadcast transaction due to replacement transaction underpriced.

Api https://gasstation-mainnet.matic.network/ responses good with:

{"safeLow":500,"standard":555.5,"fast":700,"fastest":700,"blockTime":2,"blockNumber":23373754}

The function polygonGetGasPriceInWei uses a fast value and changes it to 69, without any logic the value is divided by 10 and bounded between 100 and 30 values. Why you are doing such a computation, please? Why is not just fast value returned?

When only return fast value, it is working.

@samuelsramko what do you think about it, please?

Wallet Creation using Password

Describe the issue

How can we create a wallet on the basis of mnemonic as well as Password??

What operating system(s) are you seeing the problem on?

macOS

What environment do you see the problem on (Web/Node)?

Web

What version of tatum sdk are you using?

@tatumio/btc - 2.1.6

Tatum js for React Native

For those who need to use Tatum js with React Native here it is how I finally make it to work:

npm i rn-nodeify -g
npm i react-native-randombytes --save
npm i @tatumio/tatum --save
rn-nodeify --install http,https,path,crypto,fs,stream,os --hack
cd ios && pod install

A shim.js file will be generated in the root directory of the app. You need to import the shim.js file in the index.js file at top of the file:
import "./shim";

Here is my shim.js (should be the same)
Uncomment the last line require('crypto')

if (typeof __dirname === 'undefined') global.__dirname = '/'
if (typeof __filename === 'undefined') global.__filename = ''
if (typeof process === 'undefined') {
  global.process = require('process')
} else {
  const bProcess = require('process')
  for (var p in bProcess) {
    if (!(p in process)) {
      process[p] = bProcess[p]
    }
  }
}

process.browser = false
if (typeof Buffer === 'undefined') global.Buffer = require('buffer').Buffer

// global.location = global.location || { port: 80 }
const isDev = typeof __DEV__ === 'boolean' && __DEV__
process.env['NODE_ENV'] = isDev ? 'development' : 'production'
if (typeof localStorage !== 'undefined') {
  localStorage.debug = isDev ? '*' : ''
}

// If using the crypto shim, uncomment the following line to ensure
// crypto is loaded first, so it can populate global.crypto
require('crypto')

Since the env is needed you can fix that by adding as well in index.js or where you wish but before importing Tatum the following:
process.env.TATUM_API_KEY = "XXXXXX-XXXXX......";

๐Ÿ’ฅ Hope I didn't forget anything, let me know if you have any issues (and I will recheck my project setup)

Mints using SolanaNftMetadata are not visible from Phantom wallet, incorrect metadata format?

I'm following the Tatum Solana documentation for NodeJS, but it seems the metadata that goes into the mint isn't compatible with Phantom wallet.

More details found in links detailing the issue below:
https://help.phantom.app/hc/en-us/articles/4406463116307-Why-doesn-t-my-NFT-show-up-

https://docs.phantom.app/best-practices/tokens/non-fungible-tokens#on-chain-metadata

Example code, and structure used:

const nft = await solanaSDK.transaction.mintNft({
  chain: 'SOL',
  from: meta.from,
  fromPrivateKey: meta.fromPrivateKey,
  to: meta.to,
  metadata: {
    name: meta.nft_name,
    symbol: meta.nft_symbol,
    sellerFeeBasisPoints: 5,
    uri: meta.image_url,
    creators: [{
      address: meta.from,
      verified: true,
      share: 100
    }]
  }
})

Outcome:

Screen Shot 2022-05-05 at 4 13 07 PM

vulnerabilities

Upon installing I have the following warning for vulnerabilities. Here are the print of npm audit

npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE   package: '[email protected]',
npm WARN EBADENGINE   required: { node: '^12.20.0 || ^14.13.1 || >=16.0.0' },
npm WARN EBADENGINE   current: { node: 'v14.0.0', npm: '7.6.3' }
npm WARN EBADENGINE }

up to date, audited 1027 packages in 3s

94 packages are looking for funding
  run `npm fund` for details

# npm audit report

ansi-regex  >2.1.1 <5.0.1
Severity: moderate
 Inefficient Regular Expression Complexity in chalk/ansi-regex - https://github.com/advisories/GHSA-93q8-gq69-wqmw
No fix available
node_modules/table/node_modules/ansi-regex
  strip-ansi  4.0.0 - 5.2.0
  Depends on vulnerable versions of ansi-regex
  node_modules/table/node_modules/strip-ansi
    string-width  2.1.0 - 4.1.0
    Depends on vulnerable versions of strip-ansi
    node_modules/table/node_modules/string-width
      table  4.0.2 - 5.4.6
      Depends on vulnerable versions of string-width
      node_modules/table
        flow-typed  >=2.3.0
        Depends on vulnerable versions of table
        node_modules/flow-typed
          @elrondnetwork/hw-app-elrond  >=0.1.1
          Depends on vulnerable versions of flow-typed
          node_modules/@elrondnetwork/hw-app-elrond
            @elrondnetwork/erdjs  *
            Depends on vulnerable versions of @elrondnetwork/hw-app-elrond
            Depends on vulnerable versions of axios
            node_modules/@elrondnetwork/erdjs
              @tatumio/tatum  *
              Depends on vulnerable versions of @elrondnetwork/erdjs
              Depends on vulnerable versions of class-validator
              Depends on vulnerable versions of web3
              node_modules/@tatumio/tatum

axios  <=0.21.1
Severity: high
Incorrect Comparison in axios - https://github.com/advisories/GHSA-cph5-m8f7-6c5x
Server-Side Request Forgery in Axios - https://github.com/advisories/GHSA-4w2v-q235-vp99
No fix available
node_modules/@binance-chain/javascript-sdk/node_modules/axios
node_modules/@cityofzion/neon-api/node_modules/axios
node_modules/@cityofzion/neon-core/node_modules/axios
node_modules/@elrondnetwork/erdjs/node_modules/axios
node_modules/stellar-sdk/node_modules/axios
  @binance-chain/javascript-sdk  *
  Depends on vulnerable versions of axios
  node_modules/@binance-chain/javascript-sdk
  @cityofzion/neon-api  *
  Depends on vulnerable versions of @cityofzion/neon-core
  Depends on vulnerable versions of axios
  Depends on vulnerable versions of ws
  node_modules/@cityofzion/neon-api
    @cityofzion/neon-js  >=4.0.0-next.0
    Depends on vulnerable versions of @cityofzion/neon-api
    Depends on vulnerable versions of @cityofzion/neon-core
    node_modules/@cityofzion/neon-js
  @cityofzion/neon-core  <=5.0.0-next.7
  Depends on vulnerable versions of axios
  node_modules/@cityofzion/neon-core
    @cityofzion/neon-nep5  <=4.9.0
    Depends on vulnerable versions of @cityofzion/neon-core
    node_modules/@cityofzion/neon-nep5
  @elrondnetwork/erdjs  *
  Depends on vulnerable versions of @elrondnetwork/hw-app-elrond
  Depends on vulnerable versions of axios
  node_modules/@elrondnetwork/erdjs
    @tatumio/tatum  *
    Depends on vulnerable versions of @elrondnetwork/erdjs
    Depends on vulnerable versions of class-validator
    Depends on vulnerable versions of web3
    node_modules/@tatumio/tatum
  stellar-sdk  *
  Depends on vulnerable versions of axios
  node_modules/stellar-sdk

class-transformer  <0.3.1
Severity: moderate
Prototype pollution in class-transformer - https://github.com/advisories/GHSA-6gp3-h3jj-prx4
fix available via `npm audit fix`
node_modules/class-transformer

class-validator  *
Severity: critical
SQL Injection and Cross-site Scripting in class-validator - https://github.com/advisories/GHSA-fj58-h2fr-3pp2
No fix available
node_modules/class-validator
  @tatumio/tatum  *
  Depends on vulnerable versions of @elrondnetwork/erdjs
  Depends on vulnerable versions of class-validator
  Depends on vulnerable versions of web3
  node_modules/@tatumio/tatum

elliptic  <6.5.4
Severity: moderate
Use of a Broken or Risky Cryptographic Algorithm - https://github.com/advisories/GHSA-r9p9-mrjm-926w
fix available via `npm audit fix`
node_modules/@vechain/ethers/node_modules/elliptic
node_modules/thor-devkit/node_modules/elliptic
  @vechain/ethers  *
  Depends on vulnerable versions of elliptic
  node_modules/@vechain/ethers
    thor-devkit  >=0.9.2
    Depends on vulnerable versions of @vechain/ethers
    Depends on vulnerable versions of elliptic
    node_modules/thor-devkit
      thorify  >=1.4.1
      Depends on vulnerable versions of thor-devkit
      node_modules/thorify

web3  <=1.5.2
Insecure Credential Storage in web3 - https://github.com/advisories/GHSA-27v7-qhfv-rqq8
No fix available
node_modules/web3
  @tatumio/tatum  *
  Depends on vulnerable versions of @elrondnetwork/erdjs
  Depends on vulnerable versions of class-validator
  Depends on vulnerable versions of web3
  node_modules/@tatumio/tatum

ws  7.0.0 - 7.4.5
Severity: moderate
ReDoS in Sec-Websocket-Protocol header - https://github.com/advisories/GHSA-6fc8-4gx4-v693
fix available via `npm audit fix`
node_modules/ws
  @cityofzion/neon-api  *
  Depends on vulnerable versions of @cityofzion/neon-core
  Depends on vulnerable versions of axios
  Depends on vulnerable versions of ws
  node_modules/@cityofzion/neon-api
    @cityofzion/neon-js  >=4.0.0-next.0
    Depends on vulnerable versions of @cityofzion/neon-api
    Depends on vulnerable versions of @cityofzion/neon-core
    node_modules/@cityofzion/neon-js

23 vulnerabilities (1 low, 12 moderate, 8 high, 2 critical)

To address issues that do not require attention, run:
  npm audit fix

Some issues need review, and may require choosing
a different dependency.

Missing function for getting an NFT transaction

This function is missing, not sure if it was a recent addition or not - https://tatum.io/apidoc#operation/NftGetTransactErc721

The existing function to get transactions was working fine last week, then suddenly the API stopped returning a contractAddress when looking up a recently deployed NFT transaction. Looking at the docs it appears its not got a new endpoint which will return the contract address? Not sure what the deal is with it but either way it is missing from the JS library.

Multiple Instance of Bitcore lib found - Nestjs/Serverless Offline

Error: More than one instance of bitcore-lib found. Please make sure to require bitcore-lib and check that submodules do not also include their own bitcore-lib dependency.

Thats the error i am getting when running this in Serverless/Lambda mode. Currently using Nestjs for serverless functions and I only get this while running it locally using serverless.

    at Object.bitcore.versionGuard (/Users/mac/Bitpowr/walletsolution/node_modules/bitcore-lib/index.js:12:11)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/node_modules/bitcore-lib/index.js:15:9)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/node_modules/@tatumio/tatum/src/offchain/bitcoin.ts:3:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/node_modules/@tatumio/tatum/src/offchain/index.ts:2:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/node_modules/@tatumio/tatum/src/index.ts:7:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/src/enums/assets.ts:1:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/src/modules/assets/service.ts:3:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/src/modules/wallets/controller.ts:11:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/src/modules/wallets/module.ts:2:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/src/modules/wallets/lambda.ts:5:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at /Users/mac/Bitpowr/walletsolution/node_modules/serverless-offline/dist/lambda/handler-runner/in-process-runner/InProcessRunner.js:157:133
    at processTicksAndRejections (internal/process/task_queues.js:93:5)
    at InProcessRunner.run (/Users/mac/Bitpowr/walletsolution/node_modules/serverless-offline/dist/lambda/handler-runner/in-process-runner/InProcessRunner.js:157:9)```


Custom Derivation Path for Bip44 HD Accounts

Currently Tatum does not have a way to specify custom derivation path. For people who want to have multi-hierarchical deterministic wallets. You can find more information here: https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki.

Tatum current derivation paths conforms to bip44 but you can only have one root account (0) for every seed phrase generated. See below:

m/44'/0'/0'/0

44 - Bip 44 constants
0 - coin type for BTC Mainnet, BTC testnet is 1, ETH is 60, BCH is 145
0 - account index. can increment to create more hd root accounts
0 - change, 0 should be constant for receiving address, 1 for an internal address like an address for receiving transaction change for UTXO blockchain wallets.

Adding the /0-n will generate all the addresses for 0 account index which would result to derivation of m/44'/0'/0'/0/{0-n} . Tatum is already doing this using the derivePath function when generating addresses and private keys

We need to specify a way to use a custom derivation path, or basically add support for HD accounts for Tatum.

Here's a function we could use to generate derivation path making sure there's no chance for input error:

const changeMap = {
    external: 0,
    internal: 1,
    nested: 2
}

const generateDerivationPath = (coinType: number, account: number, change: "external" | "internal" | "nested", testnet: boolean = true): string => {
    const changeIndex = changeMap[change]
    const accountIndex = testnet ? 0 : account
    const bip44m = `m/44'/${coinType}'/${accountIndex}'/${changeIndex}`
    return bip44m
}

If this is something Tatum would like to add to the library, I can find enough time this week to have the HD account supports

Which SDK to use?

Hi,
I'm trying to create a virtual account using the Tatum SDK, but I'm confused about which version to use. Here are my questions:

  • Which version of the Tatum SDK is recommended for creating virtual accounts?
  • The documentation shows examples using V1 SDK, but I'm not sure if this is still the best practice. Should I use V1, V2, or V3 (current master branch)?
  • Why V3 doesn't seem to have any methods other than the notification API?
  • If V2 is the best choice, can you provide guidance on how to create a virtual account using this version?
    Thanks for your help!

Also, If Github is not suitable for asking such questions, please guide me to the right place. Thanks.

error while importing package

Getting the following error while trying to import this package

While trying to resolve module http while using @tatumio/tatum
ceptionsManager.js:158 Invariant Violation: "Coinbox" has not been registered. This can happen if:

  • Metro (the local dev server) is run from the wrong folder. Check if Metro is running, stop it and restart it in the current project.
  • A module failed to load due to an error and AppRegistry.registerComponent wasn't called.

[Error] signatureId must be shorter than or equal to 24 characters

transaction = await deployNFT(useTestNet,
            {
                name,
                chain: "MATIC",
                symbol,
                provenance: true,
                publicMint: false,
                signatureId: 'a4873cd9-...........-7074056db3c4'
            });

Response with error:

signatureId must be shorter than or equal to 24 characters

Using the endpoint API with same payload works ok.
signatureId validation should change to 36 characters same as the API.

[BUG] signature ID is not supplied when broadcasting some transactions to the blockchain

The signatureId is not supplied in a number of calls to oneBroadcast in the Harmony.ONE blockchain transaction methods. The specific one that gave me problems was sendOneDeploy721SignedTransaction, and you can see that it only supplies the first argument to oneBroadcast. Most of the other methods that use oneBroadcast in that file have the same problem, but a few of them such as sendOneGenerateCustodialWalletSignedTransaction and sendOneDeployMarketplaceListingSignedTransaction do not.

Broken imports

Running a basic example

const { generateWallet, Currency } = require('@tatumio/tatum');
const btcWallet = generateWallet(Currency.BTC, true);
console.log(btcWallet);

throws:

node:internal/modules/cjs/loader:936
  throw err;
  ^

Error: Cannot find module 'src/blockchain'
Require stack:
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/transaction/algo.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/transaction/index.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/helpers/index.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/fungible/index.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/wallet/custodial.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/wallet/index.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/index.js
- /home/jarin/dev/probinex/exp/tatum/test.js
    at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
    at Function.Module._load (node:internal/modules/cjs/loader:778:27)
    at Module.require (node:internal/modules/cjs/loader:1005:19)
    at require (node:internal/modules/cjs/helpers:94:18)
    at Object.<anonymous> (/home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/transaction/algo.js:6:22)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Module.require (node:internal/modules/cjs/loader:1005:19)
    at require (node:internal/modules/cjs/helpers:94:18)
    at Object.<anonymous> (/home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/transaction/index.js:34:14)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12) {

Originally posted by @jaroslav-muller in #157 (comment)

SubscriptionType not exported

Hello,

I am using tatum-js and I am trying to implement subscription creation.
I followed the way it is done here: https://github.com/tatumio/tatum-js/tree/master/src/ledger#create-a-subscription---detect-incoming-blockchain-transactions

I'm having problems since when I import "@tatumio/tatum" I cannot access "SubscriptionType".
From what I can see here: https://github.com/tatumio/tatum-js/blob/master/src/model/response/index.ts
it seems that SubscriptionType is not exported in the "index.ts" file.

Could you take a look at it.

Thanks in advance!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.