airbyte-source-shopify 3.0.7__py3-none-any.whl → 3.0.8__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,7 +1,8 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.1
2
2
  Name: airbyte-source-shopify
3
- Version: 3.0.7
3
+ Version: 3.0.8
4
4
  Summary: Source CDK implementation for Shopify.
5
+ Home-page: https://airbyte.com
5
6
  License: ELv2
6
7
  Author: Airbyte
7
8
  Author-email: contact@airbyte.io
@@ -15,7 +16,6 @@ Requires-Dist: graphql-query (>=1,<2)
15
16
  Requires-Dist: pendulum (>=2.1.2,<3.0.0)
16
17
  Requires-Dist: sgqlc (==16.3)
17
18
  Project-URL: Documentation, https://docs.airbyte.com/integrations/sources/shopify
18
- Project-URL: Homepage, https://airbyte.com
19
19
  Project-URL: Repository, https://github.com/airbytehq/airbyte
20
20
  Description-Content-Type: text/markdown
21
21
 
@@ -61,10 +61,10 @@ source_shopify/shopify_graphql/bulk/tools.py,sha256=nUQ2ZmPTKJNJdfLToR6KJtLKcJFC
61
61
  source_shopify/source.py,sha256=txb3wIm-3xXd8-5QLSeu2TeHBSnppwy5PEIOEl40mVw,8517
62
62
  source_shopify/spec.json,sha256=ITYWiQ-NrI5VISk5qmUQhp9ChUE2FV18d8xzVzPwvAg,6144
63
63
  source_shopify/streams/base_streams.py,sha256=FFIpHd5_-Z61W_jUucdr8D2MzUete1Y2E50bQDCLakE,41555
64
- source_shopify/streams/streams.py,sha256=D70Ik1vU75NKlmJMnS7W2-5gApA2ANq9eRnKligMTNw,14555
64
+ source_shopify/streams/streams.py,sha256=YV1JAuD8SmGDmrt6QOgGgC8hA43ijb6ltgv11OJPBxA,14696
65
65
  source_shopify/transform.py,sha256=mn0htL812_90zc_YszGQa0hHcIZQpYYdmk8IqpZm5TI,4685
66
66
  source_shopify/utils.py,sha256=DSqEchu-MQJ7zust7CNfqOkGIv9OSR-5UUsuD-bsDa8,16224
67
- airbyte_source_shopify-3.0.7.dist-info/METADATA,sha256=NlZADBPEQsd2cYtlp5YH_kwZ8GzsycS37PFQP9Zp2XY,5309
68
- airbyte_source_shopify-3.0.7.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
69
- airbyte_source_shopify-3.0.7.dist-info/entry_points.txt,sha256=SyTwKSsPk9MCdPf01saWpnp8hcmZOgBssVcSIvMbBeQ,57
70
- airbyte_source_shopify-3.0.7.dist-info/RECORD,,
67
+ airbyte_source_shopify-3.0.8.dist-info/METADATA,sha256=vcT2Y4YZvQviGVrZ5dNkGN5jEW9vI2r1N74D6qtcJ5E,5297
68
+ airbyte_source_shopify-3.0.8.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
69
+ airbyte_source_shopify-3.0.8.dist-info/entry_points.txt,sha256=SyTwKSsPk9MCdPf01saWpnp8hcmZOgBssVcSIvMbBeQ,57
70
+ airbyte_source_shopify-3.0.8.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.3
2
+ Generator: poetry-core 1.9.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -4,6 +4,7 @@
4
4
 
5
5
 
6
6
  import logging
7
+ import sys
7
8
  from typing import Any, Iterable, Mapping, MutableMapping, Optional
8
9
 
9
10
  import requests
@@ -138,6 +139,12 @@ class MetafieldProducts(IncrementalShopifyGraphQlBulkStream):
138
139
  parent_stream_class = Products
139
140
  bulk_query: MetafieldProduct = MetafieldProduct
140
141
 
142
+ state_checkpoint_interval = sys.maxsize
143
+
144
+ @property
145
+ def filter_by_state_checkpoint(self) -> bool:
146
+ return True
147
+
141
148
 
142
149
  class ProductImages(IncrementalShopifyGraphQlBulkStream):
143
150
  parent_stream_class = Products