
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@intevel/paypal-invoices
Advanced tools
Inoffical wrapper with useful functions for managing and creating paypal invoices This project is in no way affiliated with, authorized, maintained, sponsored or endorsed by PayPal or any of its affiliates or subsidiaries. This is an independent and unoff
Inoffical wrapper with useful functions for managing and creating paypal invoices This project is in no way affiliated with, authorized, maintained, sponsored or endorsed by PayPal or any of its affiliates or subsidiaries. This is an independent and unofficial software. Use at your own risk.
npm i @intevel/paypal-invoices
const InvoiceHandler = require("paypal-invoices");
var invoice = await InvoiceHandler.createInvoice({
clientID: "-",
secretID: "-",
receiver: "mail@receiver.de",
tax_id: "TAXID",
details: {
currency_code: "EUR",
},
tax_name: "Sales Tax",
tax_percent: "7.25",
tax_calculated_after_discount: false,
tax_inclusive: true,
invoicer: {
businessName: "My Company",
invoicerEmailAdress: "payment@mycompany.de",
website: "mycompany.de",
logoUrl: "myCompanylogo.de",
additionalNotes: "",
},
items: [
{
name: "Item#1",
quantity: "4",
price: "5.25",
unit_amount: {
currency_code: "EUR",
value: "5.25",
},
},
{
name: "Item#2",
quantity: "1",
price: "2.25",
unit_amount: {
currency_code: "EUR",
value: "2.25",
},
},
],
});
console.log(invoice);
const InvoiceHandler = require("paypal-invoices");
await InvoiceHandler.deleteInvoice("invoiceID", "clientID", "secret");
const InvoiceHandler = require("paypal-invoices");
var apitoken = await InvoiceHandler.getPayPalToken("clientID", "secret");
const InvoiceHandler = require("paypal-invoices");
var invoiceInfo = await InvoiceHandler.getInvoiceInfo("invoiceID", "clientID", "secret");
console.log(invoiceInfo);
const InvoiceHandler = require("paypal-invoices");
await InvoiceHandler.generateQRCode("invoiceID", "clientID", "secret");
If you have any feedback, please reach out to me at mail@conner-bachmann.de
FAQs
Inoffical wrapper with useful functions for managing and creating paypal invoices This project is in no way affiliated with, authorized, maintained, sponsored or endorsed by PayPal or any of its affiliates or subsidiaries. This is an independent and unoff
We found that @intevel/paypal-invoices demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.