From 856915e2e90afe3bdf2bc79f18e74815a6c307ee Mon Sep 17 00:00:00 2001 From: Key Date: Wed, 5 Jun 2024 08:43:11 -0500 Subject: [PATCH] bump schema for balance_transactions --- tap_stripe/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_stripe/streams.py b/tap_stripe/streams.py index 6df0329..6ff4976 100644 --- a/tap_stripe/streams.py +++ b/tap_stripe/streams.py @@ -785,11 +785,11 @@ class BalanceTransactionsStream(stripeStream): th.Property("source", th.StringType), th.Property("status", th.StringType), th.Property("type", th.StringType), - th.Property("invoice", th.StringType), th.Property("livemode", th.BooleanType), th.Property("period", th.CustomType({"type": ["object", "string"]})), th.Property("subscription_item", th.StringType), th.Property("total_usage", th.IntegerType), + th.Property("exchange_rate", th.NumberType), ).to_dict() class ChargesStream(stripeStream):