ingestr 0.8.1__py3-none-any.whl → 0.8.2__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.

Potentially problematic release.


This version of ingestr might be problematic. Click here for more details.

@@ -1666,6 +1666,11 @@ query discountNodes($after: String, $query: String, $first: Int) {
1666
1666
  "primary_key": True,
1667
1667
  "description": "A globally unique ID for the product.",
1668
1668
  },
1669
+ "availablePublicationsCount": {
1670
+ "data_type": "complex",
1671
+ "nullable": False,
1672
+ "description": "The number of publications that a resource is published to",
1673
+ },
1669
1674
  "category": {
1670
1675
  "data_type": "complex",
1671
1676
  "nullable": True,
@@ -1736,6 +1741,11 @@ query discountNodes($after: String, $query: String, $first: Int) {
1736
1741
  "nullable": True,
1737
1742
  "description": "The date and time when the product was published.",
1738
1743
  },
1744
+ "requiresSellingPlan": {
1745
+ "data_type": "bool",
1746
+ "nullable": True,
1747
+ "description": "Whether the product can only be purchased with a selling plan.",
1748
+ },
1739
1749
  "status": {
1740
1750
  "data_type": "text",
1741
1751
  "nullable": False,
@@ -1761,11 +1771,6 @@ query discountNodes($after: String, $query: String, $first: Int) {
1761
1771
  "nullable": False,
1762
1772
  "description": "The quantity of inventory that's in stock.",
1763
1773
  },
1764
- "totalVariants": {
1765
- "data_type": "bigint",
1766
- "nullable": False,
1767
- "description": "The number of variants associated with the product.",
1768
- },
1769
1774
  "tracksInventory": {
1770
1775
  "data_type": "bool",
1771
1776
  "nullable": False,
@@ -1776,6 +1781,16 @@ query discountNodes($after: String, $query: String, $first: Int) {
1776
1781
  "nullable": False,
1777
1782
  "description": "The date and time when the product was last modified.",
1778
1783
  },
1784
+ "variantsFirst250": {
1785
+ "data_type": "complex",
1786
+ "nullable": False,
1787
+ "description": "A list of variants associated with the product, first 250.",
1788
+ },
1789
+ "variantsCount": {
1790
+ "data_type": "complex",
1791
+ "nullable": False,
1792
+ "description": "The number of variants associated with the product.",
1793
+ },
1779
1794
  "vendor": {
1780
1795
  "data_type": "text",
1781
1796
  "nullable": False,
@@ -1880,7 +1895,7 @@ query products($after: String, $query: String, $first: Int) {
1880
1895
  count
1881
1896
  precision
1882
1897
  }
1883
- variants(first: 250) {
1898
+ variantsFirst250(first: 250) {
1884
1899
  nodes {
1885
1900
  id
1886
1901
  sku
ingestr/src/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.8.1"
1
+ __version__ = "0.8.2"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ingestr
3
- Version: 0.8.1
3
+ Version: 0.8.2
4
4
  Summary: ingestr is a command-line application that ingests data from various sources and stores them in any database.
5
5
  Project-URL: Homepage, https://github.com/bruin-data/ingestr
6
6
  Project-URL: Issues, https://github.com/bruin-data/ingestr/issues
@@ -4,7 +4,7 @@ ingestr/src/destinations.py,sha256=2SfPMjtTelPmzQmc3zNs8xGcKIPuGn_hoZFIBUuhjXI,6
4
4
  ingestr/src/factory.py,sha256=-_KwBpbNAegv_oXIB57klyjUb3K6e0lw_xdi5bwmarI,4645
5
5
  ingestr/src/sources.py,sha256=0IGguMm85E3Rahu6zVLawoe2d4lqRY31uHuxlqCsiQc,25324
6
6
  ingestr/src/table_definition.py,sha256=REbAbqdlmUMUuRh8nEQRreWjPVOQ5ZcfqGkScKdCrmk,390
7
- ingestr/src/version.py,sha256=Ocl79hbbH8_jdr5dGC90VR1cAvZc05Rc0tkZttUnMjo,22
7
+ ingestr/src/version.py,sha256=B7GiO0rd49YwtLYjvPg4lmCZEDlMTonslQKdSImaMJk,22
8
8
  ingestr/src/adjust/_init_.py,sha256=_jJE3Ywvv-YyJ7ywICdht_X2Gnd1cKm6F1wAfnpXuWM,890
9
9
  ingestr/src/adjust/helpers.py,sha256=kkYC3MqMHLNucuQ50klZWrvd3o8VfUysNtZTQSsKZ_c,2588
10
10
  ingestr/src/airtable/__init__.py,sha256=GHWYrjI2qhs_JihdNJysB0Ni3bzqT_MLXn_S9_Q5zRA,2775
@@ -39,7 +39,7 @@ ingestr/src/notion/settings.py,sha256=MwQVZViJtnvOegfjXYc_pJ50oUYgSRPgwqu7TvpeMO
39
39
  ingestr/src/notion/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
40
  ingestr/src/notion/helpers/client.py,sha256=QXuudkf5Zzff98HRsCqA1g1EZWIrnfn1falPrnKg_y4,5500
41
41
  ingestr/src/notion/helpers/database.py,sha256=gigPibTeVefP3lA-8w4aOwX67pj7RlciPk5koDs1ry8,2737
42
- ingestr/src/shopify/__init__.py,sha256=uqYoodwLHLuZHwvQx_lwOI23TzxnzHbGuZUUNzTA2Os,62031
42
+ ingestr/src/shopify/__init__.py,sha256=wFVqyvgh3tXfOmgMBbsU4U08EhdiVWuJGbCMcZWkioc,62704
43
43
  ingestr/src/shopify/exceptions.py,sha256=BhV3lIVWeBt8Eh4CWGW_REFJpGCzvW6-62yZrBWa3nQ,50
44
44
  ingestr/src/shopify/helpers.py,sha256=2MlqyCc7VJxpYlGAxw-bYpSuCZNfat0E5zDe1jQYVP4,6279
45
45
  ingestr/src/shopify/settings.py,sha256=StY0EPr7wFJ7KzRRDN4TKxV0_gkIS1wPj2eR4AYSsDk,141
@@ -64,8 +64,8 @@ ingestr/testdata/delete_insert_part2.csv,sha256=B_KUzpzbNdDY_n7wWop1mT2cz36TmayS
64
64
  ingestr/testdata/merge_expected.csv,sha256=DReHqWGnQMsf2PBv_Q2pfjsgvikYFnf1zYcQZ7ZqYN0,276
65
65
  ingestr/testdata/merge_part1.csv,sha256=Pw8Z9IDKcNU0qQHx1z6BUf4rF_-SxKGFOvymCt4OY9I,185
66
66
  ingestr/testdata/merge_part2.csv,sha256=T_GiWxA81SN63_tMOIuemcvboEFeAmbKc7xRXvL9esw,287
67
- ingestr-0.8.1.dist-info/METADATA,sha256=r3eBIXMFdnmLPzlK7mh0BZWRJoHvXyZjls7UxkPb93Q,6755
68
- ingestr-0.8.1.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
69
- ingestr-0.8.1.dist-info/entry_points.txt,sha256=oPJy0KBnPWYjDtP1k8qwAihcTLHSZokSQvRAw_wtfJM,46
70
- ingestr-0.8.1.dist-info/licenses/LICENSE.md,sha256=cW8wIhn8HFE-KLStDF9jHQ1O_ARWP3kTpk_-eOccL24,1075
71
- ingestr-0.8.1.dist-info/RECORD,,
67
+ ingestr-0.8.2.dist-info/METADATA,sha256=q9yjG1V9XDZFQDRcAQodSreucMEcoRtnHbPE9EzXtFo,6755
68
+ ingestr-0.8.2.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
69
+ ingestr-0.8.2.dist-info/entry_points.txt,sha256=oPJy0KBnPWYjDtP1k8qwAihcTLHSZokSQvRAw_wtfJM,46
70
+ ingestr-0.8.2.dist-info/licenses/LICENSE.md,sha256=cW8wIhn8HFE-KLStDF9jHQ1O_ARWP3kTpk_-eOccL24,1075
71
+ ingestr-0.8.2.dist-info/RECORD,,