Skip to content

Commit

Permalink
fix(tap-suiteql): Fix BillingAccount Stream name (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcos314 authored Jul 19, 2023
1 parent 1f11952 commit fdee01b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ We extract the following entities with its respective method
* MonthlyRecurringRevenue -> static
* Charge -> dynamically
* CustomRecordGpyChangeOrderClassific -> dynamically
* BilligAccount -> dynamically
* BillingAccount -> dynamically

### SDK Dev Guide

Expand Down
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 fdee01b

Please sign in to comment.