airbyte-source-shopify 3.0.14.dev202512222034__py3-none-any.whl → 3.0.14.dev202512222245__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-shopify
3
- Version: 3.0.14.dev202512222034
3
+ Version: 3.0.14.dev202512222245
4
4
  Summary: Source CDK implementation for Shopify.
5
5
  Home-page: https://airbyte.com
6
6
  License: ELv2
@@ -62,10 +62,10 @@ source_shopify/shopify_graphql/bulk/tools.py,sha256=nUQ2ZmPTKJNJdfLToR6KJtLKcJFC
62
62
  source_shopify/source.py,sha256=oikoM-VPNk62zlmeAQR59PMxfuXq2s42N7zaqLM6_lo,8575
63
63
  source_shopify/spec.json,sha256=ITYWiQ-NrI5VISk5qmUQhp9ChUE2FV18d8xzVzPwvAg,6144
64
64
  source_shopify/streams/base_streams.py,sha256=k_4uLaLADLRTUcSmP8uA_830uuzRvnqUaCVGcb0Zpd8,42625
65
- source_shopify/streams/streams.py,sha256=o8qpZ9ottSAHNVod3UGCcGKMgcDKCIBXOzrDOnoniik,18095
65
+ source_shopify/streams/streams.py,sha256=ZP8hxPN-MdeGJx9Q0QNruwCd0GE6ZyPCOMcG931Z2C0,18095
66
66
  source_shopify/transform.py,sha256=mn0htL812_90zc_YszGQa0hHcIZQpYYdmk8IqpZm5TI,4685
67
67
  source_shopify/utils.py,sha256=DSqEchu-MQJ7zust7CNfqOkGIv9OSR-5UUsuD-bsDa8,16224
68
- airbyte_source_shopify-3.0.14.dev202512222034.dist-info/METADATA,sha256=JO2OnmK4vIrAjzcoaQ25DCQmkp4NM0hWcTS9zSnuwVM,5314
69
- airbyte_source_shopify-3.0.14.dev202512222034.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
70
- airbyte_source_shopify-3.0.14.dev202512222034.dist-info/entry_points.txt,sha256=SyTwKSsPk9MCdPf01saWpnp8hcmZOgBssVcSIvMbBeQ,57
71
- airbyte_source_shopify-3.0.14.dev202512222034.dist-info/RECORD,,
68
+ airbyte_source_shopify-3.0.14.dev202512222245.dist-info/METADATA,sha256=YBnDLoD-FjJxCLN22sJOKrtXA49mu7doWIJhiYcWr3g,5314
69
+ airbyte_source_shopify-3.0.14.dev202512222245.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
70
+ airbyte_source_shopify-3.0.14.dev202512222245.dist-info/entry_points.txt,sha256=SyTwKSsPk9MCdPf01saWpnp8hcmZOgBssVcSIvMbBeQ,57
71
+ airbyte_source_shopify-3.0.14.dev202512222245.dist-info/RECORD,,
@@ -216,7 +216,7 @@ class DeletedProducts(IncrementalShopifyStream):
216
216
  json_response = response.json()
217
217
  events = json_response.get("data", {}).get("events", {}).get("nodes", [])
218
218
  for event in events:
219
- if event.get("subjectType") == "Product" and event.get("subjectId"):
219
+ if event.get("subjectType") == "PRODUCT" and event.get("subjectId"):
220
220
  subject_id = event.get("subjectId", "")
221
221
  product_id = int(subject_id.split("/")[-1]) if "/" in subject_id else None
222
222
  if product_id: