You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/quickbooks/actions/create-invoice/create-invoice.mjs
+46-24Lines changed: 46 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ export default {
6
6
key: "quickbooks-create-invoice",
7
7
name: "Create Invoice",
8
8
description: "Creates an invoice. [See the documentation](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/invoice#create-an-invoice)",
9
-
version: "0.2.0",
9
+
version: "0.2.1",
10
10
type: "action",
11
11
props: {
12
12
quickbooks,
@@ -16,24 +16,36 @@ export default {
16
16
"customer",
17
17
],
18
18
},
19
-
currencyRefValue: {
20
-
propDefinition: [
21
-
quickbooks,
22
-
"currency",
23
-
],
19
+
billEmail: {
20
+
type: "string",
21
+
label: "Bill Email",
22
+
description: "Email address where the invoice should be sent",
23
+
optional: true,
24
24
},
25
25
dueDate: {
26
26
type: "string",
27
27
label: "Due Date",
28
28
description: "Date when the payment of the transaction is due (YYYY-MM-DD)",
29
29
optional: true,
30
30
},
31
-
includeInvoiceLink: {
31
+
allowOnlineCreditCardPayment: {
32
32
type: "boolean",
33
-
label: "Include Invoice Link",
34
-
description: "Return the sharable link for the invoice sent to external customers",
33
+
label: "Allow Online Credit Card Payment",
34
+
description: "Allow online credit card payment",
35
35
optional: true,
36
36
},
37
+
allowOnlineACHPayment: {
38
+
type: "boolean",
39
+
label: "Allow Online Bank Transfer Payment",
40
+
description: "Allow online bank transfer payment",
0 commit comments