Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎉 New source: Chargebee (prepare connector for publishing) #5067

Merged
merged 14 commits into from
Jul 30, 2021
Prev Previous commit
Next Next commit
Remove name field from streams
  • Loading branch information
Zirochkaa committed Jul 30, 2021
commit 85abfb8adf3bbc28f1ae06dd956bc78034b7de77
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ class Subscription(ChargebeeStream):
API docs: https://apidocs.chargebee.com/docs/api/subscriptions?prod_cat_ver=2#list_subscriptions
"""

name = "subscription"
api = SubscriptionModel


Expand All @@ -160,7 +159,6 @@ class Customer(ChargebeeStream):
API docs: https://apidocs.chargebee.com/docs/api/customers?prod_cat_ver=2#list_customers
"""

name = "customer"
api = CustomerModel


Expand All @@ -169,7 +167,6 @@ class Invoice(ChargebeeStream):
API docs: https://apidocs.chargebee.com/docs/api/invoices?prod_cat_ver=2#list_invoices
"""

name = "invoice"
api = InvoiceModel


Expand All @@ -178,7 +175,6 @@ class Order(ChargebeeStream):
API docs: https://apidocs.chargebee.com/docs/api/orders?prod_cat_ver=2#list_orders
"""

name = "order"
api = OrderModel


Expand All @@ -187,7 +183,6 @@ class Plan(ChargebeeStream):
API docs: https://apidocs.chargebee.com/docs/api/plans?prod_cat_ver=1&lang=curl#list_plans
"""

name = "plan"
api = PlanModel


Expand All @@ -196,5 +191,4 @@ class Addon(ChargebeeStream):
API docs: https://apidocs.chargebee.com/docs/api/addons?prod_cat_ver=1&lang=curl#list_addons
"""

name = "addon"
api = AddonModel