From e6b56e8ec6b03dd2e914921bf5928cffbdcec934 Mon Sep 17 00:00:00 2001 From: Vinicius Mesel <4984147+vmesel@users.noreply.github.com> Date: Fri, 19 Jan 2024 18:11:16 -0300 Subject: [PATCH] Fixes typing issues --- tap_restaurant365/streams.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tap_restaurant365/streams.py b/tap_restaurant365/streams.py index 770e439..2b7c34b 100644 --- a/tap_restaurant365/streams.py +++ b/tap_restaurant365/streams.py @@ -248,8 +248,8 @@ class EmployeesStream(Restaurant365Stream): th.Property("address1", th.StringType), th.Property("address2", th.StringType), th.Property("allowTextMessaging", th.BooleanType), - th.Property("birthdayDay", th.StringType), - th.Property("birthdayMonth", th.StringType), + th.Property("birthdayDay", th.NumberType), + th.Property("birthdayMonth", th.NumberType), th.Property("city", th.StringType), th.Property("firstName", th.StringType), th.Property("hireDate", th.DateTimeType),