api-partner-client
v0.0.2
Published
```` const username = "{yourUsername}"; const password = "{yourPassword}"; const client = new PartnerApiClient( username, password, "https://api-partner-dev.billetreduc.com", ApiVersion.V1);
Downloads
3
Readme
How to use this package
const username = "{yourUsername}";
const password = "{yourPassword}";
const client = new PartnerApiClient( username,
password,
"https://api-partner-dev.billetreduc.com",
ApiVersion.V1);
let events = await client.getEvents({
onlyTopSales : true,
eventIds : []
});
console.log("events : ", events);
For the developper of the package :
pnpm install
npm run build
create an account on npm
npm login
npm publish