Skip to content

Commit ce53add

Browse files
committed
ES Lint fixes for source files
1 parent fa90d15 commit ce53add

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

components/quickbooks/quickbooks.app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const WEBHOOK_ENTITIES = [
3131
"Transfer",
3232
"Vendor",
3333
"VendorCredit",
34-
]
34+
];
3535

3636
const WEBHOOK_OPERATIONS = [
3737
"Create",

components/quickbooks/sources/common.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,8 @@ module.exports = {
170170
http: {
171171
type: "$.interface.http",
172172
customResponse: true,
173+
label: "HTTP",
174+
description: "",
173175
},
174176
},
175177
methods: {

components/quickbooks/sources/custom-webhook-events/custom-webhook-events.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ module.exports = {
77
name: "Custom Set of Webhook Entities (Created, Updated, Merged, Deleted, Voided or Emailed)",
88
description: "Emit events for more than one type of entity (e.g. \"Emailed Invoices and Purchase Orders\" or \"New and Modified Customers and Vendors\"). Visit the documentation page to learn how to configure webhooks for your QuickBooks company: https://developer.intuit.com/app/developer/qbo/docs/develop/webhooks",
99
version: "0.0.1",
10+
type: "source",
1011
props: {
1112
...common.props,
1213
webhook_verifier_token: {

components/quickbooks/sources/new-or-modified-customer/new-or-modified-customer.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ module.exports = {
1212
name: `New or Modified Customer (${supportedOperationsList})`,
1313
description: `Emit Customers that are ${supportedOperationsList.toLowerCase()}. Visit the documentation page to learn how to configure webhooks for your QuickBooks company: https://developer.intuit.com/app/developer/qbo/docs/develop/webhooks`,
1414
version: "0.0.1",
15+
type: "source",
1516
props: {
1617
...common.props,
1718
webhook_verifier_token: {

0 commit comments

Comments
 (0)