From e0d729e74b56b3e9c49c1d0af565bd77c727fe57 Mon Sep 17 00:00:00 2001 From: Ella Wherritt Date: Wed, 4 Oct 2023 14:44:25 -0600 Subject: [PATCH 1/4] Update Disputes Schema to Include Payment Intent Dimension --- tap_stripe/schemas/disputes.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tap_stripe/schemas/disputes.json b/tap_stripe/schemas/disputes.json index 52081cb2..085b947c 100644 --- a/tap_stripe/schemas/disputes.json +++ b/tap_stripe/schemas/disputes.json @@ -205,6 +205,12 @@ "string" ], "format": "date-time" + }, + "payment_intent": { + "type": [ + "null", + "string" + ] } } } From 727fafec9cb1ad7a9cb8e1436b042e140ab103b6 Mon Sep 17 00:00:00 2001 From: Ella Wherritt Date: Wed, 4 Oct 2023 14:57:27 -0600 Subject: [PATCH 2/4] Add Default Price dimension to Products Schema --- tap_stripe/schemas/products.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tap_stripe/schemas/products.json b/tap_stripe/schemas/products.json index 038c09d3..582c56f9 100644 --- a/tap_stripe/schemas/products.json +++ b/tap_stripe/schemas/products.json @@ -176,6 +176,12 @@ "null", "string" ] + }, + "default_price": { + "type": [ + "null", + "string" + ] } } } From 4f346f4482055ee76944e7a02be48f0f6b90d6a7 Mon Sep 17 00:00:00 2001 From: Ella Wherritt Date: Wed, 4 Oct 2023 15:00:03 -0600 Subject: [PATCH 3/4] remove payment_intent from disputes for PR --- tap_stripe/schemas/disputes.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tap_stripe/schemas/disputes.json b/tap_stripe/schemas/disputes.json index 085b947c..52081cb2 100644 --- a/tap_stripe/schemas/disputes.json +++ b/tap_stripe/schemas/disputes.json @@ -205,12 +205,6 @@ "string" ], "format": "date-time" - }, - "payment_intent": { - "type": [ - "null", - "string" - ] } } } From 6e7f61567586b49b688077dcdef2310347205475 Mon Sep 17 00:00:00 2001 From: Ella Wherritt Date: Mon, 23 Oct 2023 09:53:51 -0600 Subject: [PATCH 4/4] add payment_intent in disputes and reconciliation_status to payouts --- tap_stripe/schemas/disputes.json | 6 ++++++ tap_stripe/schemas/payouts.json | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/tap_stripe/schemas/disputes.json b/tap_stripe/schemas/disputes.json index 52081cb2..085b947c 100644 --- a/tap_stripe/schemas/disputes.json +++ b/tap_stripe/schemas/disputes.json @@ -205,6 +205,12 @@ "string" ], "format": "date-time" + }, + "payment_intent": { + "type": [ + "null", + "string" + ] } } } diff --git a/tap_stripe/schemas/payouts.json b/tap_stripe/schemas/payouts.json index e5c2fa4b..f266d62f 100644 --- a/tap_stripe/schemas/payouts.json +++ b/tap_stripe/schemas/payouts.json @@ -7,6 +7,12 @@ ], "properties": {} }, + "reconciliation_status": { + "type": [ + "null", + "string" + ] + }, "failure_code": { "type": [ "null",