Henri Blancke
02/21/2023, 3:36 PMv0.40.32 we noticed that all keys in the airbyte record data passed to our destination now comes in as strings. For example for zendesk_support schedules, pre v0.40.32 we see schedules come from record.data as (notice that id, start and end time are all ints):
{'id': 1260800006989, 'name': 'M-F 9-5pm PT', 'time_zone': 'US', 'created_at': '2021-04-22T00:32:27Z', 'updated_at': '2022-12-31T01:06:17Z', 'intervals': [{'start_time': 1800, 'end_time': 2460}, {'start_time': 3240, 'end_time': 3900}, ...]}
now they come in as strings:
{'id': '1260800006989', 'name': 'M-F 9-5pm PT', 'time_zone': 'US', 'created_at': '2021-04-22T00:32:27Z', 'updated_at': '2022-12-31T01:06:17Z', 'intervals': [{'start_time': '1800', 'end_time': '2460'}, {'start_time': '3240', 'end_time': '3900'}, ...]}
It is causing issues in our destination. Is that the expected behavior now? Thanks for the help 🙏Henri Blancke
02/21/2023, 3:51 PM0.40.31 as well not in 0.40.30Maxime Carbonneau-Leclerc (Airbyte)
02/21/2023, 4:54 PMHenri Blancke
02/21/2023, 4:56 PMMaxime Carbonneau-Leclerc (Airbyte)
02/24/2023, 5:09 PM