@pipedream/shift4 0.1.0 → 0.1.1

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 Shift4 API provides robust payment processing capabilities, enabling secure transactions for various business needs. On Pipedream, you can leverage this API to create automated workflows that respond to events, handle payments, and sync transaction data with other services. By integrating Shift4 with Pipedream, you unlock a realm of possibilities for automating payment operations, analyzing sales data, and improving customer experiences with real-time actions.
4
+
5
+ # Example Use Cases
6
+
7
+ - **Automate Payment Confirmation Emails**: Once a payment is processed via Shift4, trigger a workflow in Pipedream to send a tailored confirmation email to the customer. This could integrate with email services like SendGrid or Mailgun to ensure prompt communication.
8
+
9
+ - **Sync Payments with Accounting Software**: After a transaction is completed, use Pipedream to automatically record the payment details in accounting software such as QuickBooks or Xero, facilitating real-time financial reporting and simplifying bookkeeping processes.
10
+
11
+ - **Monitor and Alert for Failed Transactions**: Set up a Pipedream workflow that listens for failed payment events from Shift4. When a failure is detected, the workflow can instantly notify your support team via apps like Slack or PagerDuty, allowing for rapid response to resolve customer issues.
@@ -7,7 +7,12 @@ export default {
7
7
  key: "shift4-create-charge",
8
8
  name: "Create Charge",
9
9
  description: "Creates a new charge object. [See the documentation](https://dev.shift4.com/docs/api#charges-create-a-new-charge)",
10
- version: "0.0.1",
10
+ version: "0.0.2",
11
+ annotations: {
12
+ destructiveHint: false,
13
+ openWorldHint: true,
14
+ readOnlyHint: false,
15
+ },
11
16
  type: "action",
12
17
  props: {
13
18
  shift4,
@@ -5,7 +5,12 @@ export default {
5
5
  key: "shift4-create-customer",
6
6
  name: "Create Customer",
7
7
  description: "Creates a new customer object. [See the documentation](https://dev.shift4.com/docs/api#customers-create-a-customer)",
8
- version: "0.0.1",
8
+ version: "0.0.2",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: false,
13
+ },
9
14
  type: "action",
10
15
  props: {
11
16
  shift4,
@@ -5,8 +5,14 @@ export default {
5
5
  key: "shift4-create-plan",
6
6
  name: "Create Plan",
7
7
  description: "Creates a new plan object. [See the documentation](https://dev.shift4.com/docs/api#plan-create)",
8
- version: "0.0.1",
8
+ version: "0.0.3",
9
+ annotations: {
10
+ destructiveHint: false,
11
+ openWorldHint: true,
12
+ readOnlyHint: false,
13
+ },
9
14
  type: "action",
15
+ ai: "optimized",
10
16
  props: {
11
17
  shift4,
12
18
  amount: {
@@ -4,7 +4,12 @@ export default {
4
4
  key: "shift4-create-token",
5
5
  name: "Create Token",
6
6
  description: "Creates a new token object. [See the documentation](https://dev.shift4.com/docs/api#token-create)",
7
- version: "0.0.1",
7
+ version: "0.0.2",
8
+ annotations: {
9
+ destructiveHint: false,
10
+ openWorldHint: true,
11
+ readOnlyHint: false,
12
+ },
8
13
  type: "action",
9
14
  props: {
10
15
  shift4,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/shift4",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Pipedream Shift4 Components",
5
5
  "main": "shift4.app.mjs",
6
6
  "keywords": [
@@ -13,6 +13,6 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@pipedream/platform": "^1.5.1"
16
+ "@pipedream/platform": "^1.6.8"
17
17
  }
18
18
  }