Skip to content

Commit

Permalink
fix(tap-suiteql): Fix BillingAccount Stream name
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcos314 committed Jul 19, 2023
1 parent 1f11952 commit 9155816
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tap_suiteql/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ class CustomRecordGpyChangeOrderClassificStream(suiteqlStream):
replication_key = "lastmodified"


class BilligAccountStream(suiteqlStream):
class BillingAccountStream(suiteqlStream):
name = "billingaccount"
path = "/query/v1/suiteql"
metadata_path = "/record/v1/metadata-catalog/billingaccount"
Expand Down
4 changes: 2 additions & 2 deletions tap_suiteql/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from tap_suiteql.query_builder import QueryBuilder # JSON schema typing helpers
from tap_suiteql.schema_builder import SchemaBuilder
from tap_suiteql.streams import (
BilligAccountStream,
BillingAccountStream,
ChangeOrderLineStream,
ChargeStream,
CustomerPaymentStream,
Expand Down Expand Up @@ -45,7 +45,7 @@
"SubscriptionChangeOrder": SubscriptionChangeOrderStream,
"Item": ItemStream,
"MonthlyRecurringRevenue": MonthlyRecurringRevenueStream,
"BilligAccount": BilligAccountStream,
"BillingAccount": BillingAccountStream,
}


Expand Down

0 comments on commit 9155816

Please sign in to comment.