Skip to content

Commit

Permalink
šŸ› Source Shopify: Have message and description be nullable for customā€¦
Browse files Browse the repository at this point in the history
ā€¦_collections deletā€¦ (#45116)
  • Loading branch information
maxi297 authored Sep 4, 2024
1 parent af58faa commit 1f2fd6e
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 78 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 9da77001-af33-4bcd-be46-6252bf9342b9
dockerImageTag: 2.4.23
dockerImageTag: 2.4.24
dockerRepository: airbyte/source-shopify
documentationUrl: https://docs.airbyte.com/integrations/sources/shopify
erdUrl: https://dbdocs.io/airbyteio/source-shopify?view=relationships
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
version = "2.4.23"
version = "2.4.24"
name = "source-shopify"
description = "Source CDK implementation for Shopify."
authors = [ "Airbyte <contact@airbyte.io>",]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ def produce_deleted_records_from_events(self, delete_events: Iterable[Mapping[st
yield {
"id": event["subject_id"],
self.cursor_field: event["created_at"],
"deleted_message": event["message"],
"deleted_description": event["description"],
"deleted_message": event.get("message", None),
"deleted_description": event.get("description", None),
"shop_url": event["shop_url"],
}

Expand Down
Loading

0 comments on commit 1f2fd6e

Please sign in to comment.