Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 340 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 340 Bytes

Banco de Chile payments notifications

import {startWatching} from 'meteor/orionsoft:banco-chile-notifications'

startWatching({
  rut: process.env.BANCO_CHILE_RUT,
  userRut: process.env.BANCO_CHILE_USER_RUT,
  password: process.env.BANCO_CHILE_PASSWORD,
  callback: payment => {
    console.log('new payment', payment)
  }
})