@pipedream/billsby 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # Overview
2
+
3
+ The Billsby API allows for automated subscription management, providing endpoints to create and manage customer accounts, subscriptions, invoices, and payments. With Pipedream, you can connect Billsby to hundreds of other services, triggering workflows based on subscription events, syncing customer data, or automating billing processes. This can lead to more efficient operations, better customer experiences, and timely data-driven decisions.
4
+
5
+ # Example Use Cases
6
+
7
+ - **Automate Customer Onboarding**: When a new customer signs up via Billsby, trigger a Pipedream workflow to add the customer to a CRM like Salesforce, send a personalized welcome email through SendGrid, and create a Slack notification for the sales team.
8
+
9
+ - **Sync Subscription Status with a Database**: Keep a real-time sync between Billsby subscription statuses and a database like Google Sheets or Airtable. When a subscription changes in Billsby (like an upgrade or cancellation), the corresponding record in your database updates automatically.
10
+
11
+ - **Handle Failed Payments**: Set up a workflow that triggers when a payment fails in Billsby. The workflow could email the customer with updated payment instructions via a service like Mailgun, alert your support team in a tool like Zendesk, and even pause the customer's subscription until the payment issue is resolved.
@@ -0,0 +1,11 @@
1
+ export default {
2
+ type: "app",
3
+ app: "billsby",
4
+ propDefinitions: {},
5
+ methods: {
6
+ // this.$auth contains connected account data
7
+ authKeys() {
8
+ console.log(Object.keys(this.$auth));
9
+ },
10
+ },
11
+ };
package/package.json CHANGED
@@ -1,18 +1,14 @@
1
1
  {
2
2
  "name": "@pipedream/billsby",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Pipedream Billsby Components",
5
- "main": "dist/app/billsby.app.mjs",
5
+ "main": "billsby.app.mjs",
6
6
  "keywords": [
7
7
  "pipedream",
8
8
  "billsby"
9
9
  ],
10
- "files": [
11
- "dist"
12
- ],
13
10
  "homepage": "https://pipedream.com/apps/billsby",
14
11
  "author": "Pipedream <support@pipedream.com> (https://pipedream.com/)",
15
- "license": "MIT",
16
12
  "publishConfig": {
17
13
  "access": "public"
18
14
  }