From 4562e43c5bc9f02b850e20223ff773cc66161115 Mon Sep 17 00:00:00 2001 From: Luis Atala Date: Sat, 16 Mar 2024 22:04:37 -0300 Subject: [PATCH] Fix bool custom schema definition (again) and update version to 0.0.6 --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- tap_zendesk_sell/client.py | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f37afc6..e791f97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +v0.0.6 (2024-03-16) + +- Fix bool custom schema definition (again) + v0.0.5 (2022-06-15) - Fix bool custom schema definition diff --git a/pyproject.toml b/pyproject.toml index 3f5e82c..8d5d5a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tap-zendesk-sell" -version = "0.0.5" +version = "0.0.6" description = "`tap-zendesk-sell` is a Singer tap for Zendesk Sell, built with the Meltano SDK for Singer Taps." authors = ["Luis Atala"] keywords = [ diff --git a/tap_zendesk_sell/client.py b/tap_zendesk_sell/client.py index c9620e6..1c01f5d 100644 --- a/tap_zendesk_sell/client.py +++ b/tap_zendesk_sell/client.py @@ -33,6 +33,7 @@ class ZendeskSellStream(Stream): "properties": address_properties, }, "bool": {"type": ["boolean", "null"]}, + "boolean": {"type": ["boolean", "null"]}, "date": {"type": ["string", "null"]}, "datetime": {"type": ["string", "null"], "format": "date-time"}, "email": {"type": ["string", "null"]},