From 9223de6b5463adca4c034d41f7230dcf412a3d34 Mon Sep 17 00:00:00 2001 From: Lukas Gust <31327300+lukas-gust@users.noreply.github.com> Date: Wed, 19 Apr 2023 08:02:09 -0600 Subject: [PATCH] Update CUSTOM_TYPES to include lookup field + Added lookup custom field type with type integer. --- tap_zendesk/streams.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tap_zendesk/streams.py b/tap_zendesk/streams.py index 1877d3c5..981bcaed 100644 --- a/tap_zendesk/streams.py +++ b/tap_zendesk/streams.py @@ -30,6 +30,7 @@ 'integer': 'integer', 'decimal': 'number', 'checkbox': 'boolean', + 'lookup': 'integer', } DEFAULT_SEARCH_WINDOW_SIZE = (60 * 60 * 24) * 30 # defined in seconds, default to a month (30 days)