├── .gitignore ├── .npmignore ├── .travis.yml ├── LEIAME.md ├── LICENSE ├── README.md ├── lib ├── bank-account.ts ├── boleto.ts ├── buyer.ts ├── card.ts ├── endpoint-error.ts ├── endpoint.ts ├── index.ts ├── marketplace.ts ├── resource.ts ├── seller.ts ├── token.ts ├── transaction.ts ├── verification-status.ts └── zoop.ts ├── package.json ├── tests ├── index.ts └── tsconfig.json ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .vscode 4 | dist 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/.travis.yml -------------------------------------------------------------------------------- /LEIAME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/LEIAME.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/README.md -------------------------------------------------------------------------------- /lib/bank-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/bank-account.ts -------------------------------------------------------------------------------- /lib/boleto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/boleto.ts -------------------------------------------------------------------------------- /lib/buyer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/buyer.ts -------------------------------------------------------------------------------- /lib/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/card.ts -------------------------------------------------------------------------------- /lib/endpoint-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/endpoint-error.ts -------------------------------------------------------------------------------- /lib/endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/endpoint.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/marketplace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/marketplace.ts -------------------------------------------------------------------------------- /lib/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/resource.ts -------------------------------------------------------------------------------- /lib/seller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/seller.ts -------------------------------------------------------------------------------- /lib/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/token.ts -------------------------------------------------------------------------------- /lib/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/transaction.ts -------------------------------------------------------------------------------- /lib/verification-status.ts: -------------------------------------------------------------------------------- 1 | export type VerificationStatus = 'unchecked' | 'pass'; 2 | -------------------------------------------------------------------------------- /lib/zoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/lib/zoop.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/package.json -------------------------------------------------------------------------------- /tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/tests/index.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreh/zoop/HEAD/tslint.json --------------------------------------------------------------------------------