From 8a4e0c78ce52a8ec1d1bff495311a7c1ee7425f6 Mon Sep 17 00:00:00 2001 From: Adil Ahmed Date: Tue, 23 Apr 2024 22:53:46 +0500 Subject: [PATCH 1/3] New properties for Invoices stream HGI-5756. --- tap_chargebee/schemas/invoices.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tap_chargebee/schemas/invoices.json b/tap_chargebee/schemas/invoices.json index ac5629a..8c55bb1 100644 --- a/tap_chargebee/schemas/invoices.json +++ b/tap_chargebee/schemas/invoices.json @@ -281,6 +281,18 @@ }, "tax_juris_code": { "type": ["null", "string"] + }, + "tax_amount_in_local_currency": { + "type": [ + "null", + "number" + ] + }, + "local_currency_code": { + "type": [ + "null", + "string" + ] } } } @@ -579,6 +591,12 @@ }, "business_entity_id": { "type": ["null", "string"] + }, + "tax_amount_in_local_currency": { + "type": ["null", "number"] + }, + "local_currency_code": { + "type": ["null", "string"] } } } From f73419bdb9f5de1723383d9d9182225c58318157 Mon Sep 17 00:00:00 2001 From: Adil Ahmed Date: Tue, 23 Apr 2024 23:12:34 +0500 Subject: [PATCH 2/3] Invoices removed tax_amount_in_local_currency from root level. --- tap_chargebee/schemas/invoices.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/tap_chargebee/schemas/invoices.json b/tap_chargebee/schemas/invoices.json index 8c55bb1..a414f13 100644 --- a/tap_chargebee/schemas/invoices.json +++ b/tap_chargebee/schemas/invoices.json @@ -592,9 +592,6 @@ "business_entity_id": { "type": ["null", "string"] }, - "tax_amount_in_local_currency": { - "type": ["null", "number"] - }, "local_currency_code": { "type": ["null", "string"] } From 27fb6567d4b6d060c008754ec97da80412a30e45 Mon Sep 17 00:00:00 2001 From: Adil Ahmed Date: Wed, 24 Apr 2024 18:18:13 +0500 Subject: [PATCH 3/3] Invoices added Local_Currency_Exchange_Rate --- tap_chargebee/schemas/invoices.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tap_chargebee/schemas/invoices.json b/tap_chargebee/schemas/invoices.json index a414f13..178e988 100644 --- a/tap_chargebee/schemas/invoices.json +++ b/tap_chargebee/schemas/invoices.json @@ -594,6 +594,9 @@ }, "local_currency_code": { "type": ["null", "string"] + }, + "local_currency_exchange_rate": { + "type": ["null", "number"] } } }