airbyte-agent-shopify 0.1.3__tar.gz

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.
Files changed (60) hide show
  1. airbyte_agent_shopify-0.1.3/.gitignore +29 -0
  2. airbyte_agent_shopify-0.1.3/CHANGELOG.md +21 -0
  3. airbyte_agent_shopify-0.1.3/PKG-INFO +139 -0
  4. airbyte_agent_shopify-0.1.3/README.md +106 -0
  5. airbyte_agent_shopify-0.1.3/REFERENCE.md +4347 -0
  6. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/__init__.py +349 -0
  7. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/__init__.py +1 -0
  8. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/__init__.py +82 -0
  9. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/auth_strategies.py +1173 -0
  10. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/auth_template.py +135 -0
  11. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  12. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  13. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/connector_model_loader.py +986 -0
  14. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/constants.py +78 -0
  15. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/exceptions.py +23 -0
  16. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/executor/__init__.py +31 -0
  17. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/executor/hosted_executor.py +196 -0
  18. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/executor/local_executor.py +1773 -0
  19. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/executor/models.py +190 -0
  20. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/extensions.py +693 -0
  21. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/http/__init__.py +37 -0
  22. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  23. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  24. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/http/config.py +98 -0
  25. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/http/exceptions.py +119 -0
  26. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/http/protocols.py +114 -0
  27. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/http/response.py +104 -0
  28. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/http_client.py +693 -0
  29. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/introspection.py +262 -0
  30. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/logging/__init__.py +11 -0
  31. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/logging/logger.py +273 -0
  32. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/logging/types.py +93 -0
  33. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/observability/__init__.py +11 -0
  34. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/observability/config.py +179 -0
  35. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/observability/models.py +19 -0
  36. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/observability/redactor.py +81 -0
  37. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/observability/session.py +103 -0
  38. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/performance/__init__.py +6 -0
  39. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  40. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/performance/metrics.py +93 -0
  41. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/schema/__init__.py +75 -0
  42. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/schema/base.py +169 -0
  43. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/schema/components.py +239 -0
  44. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/schema/connector.py +120 -0
  45. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/schema/extensions.py +230 -0
  46. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/schema/operations.py +146 -0
  47. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/schema/security.py +237 -0
  48. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/secrets.py +182 -0
  49. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  50. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/telemetry/config.py +32 -0
  51. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/telemetry/events.py +59 -0
  52. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/telemetry/tracker.py +155 -0
  53. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/types.py +254 -0
  54. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/utils.py +60 -0
  55. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/_vendored/connector_sdk/validation.py +828 -0
  56. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/connector.py +2985 -0
  57. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/connector_model.py +11641 -0
  58. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/models.py +1192 -0
  59. airbyte_agent_shopify-0.1.3/airbyte_agent_shopify/types.py +338 -0
  60. airbyte_agent_shopify-0.1.3/pyproject.toml +50 -0
@@ -0,0 +1,29 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .eggs/
9
+
10
+ # Testing
11
+ .pytest_cache/
12
+ .coverage
13
+ htmlcov/
14
+
15
+ # Virtual environments
16
+ .venv/
17
+ venv/
18
+
19
+ # IDE
20
+ .idea/
21
+ .vscode/
22
+ *.swp
23
+
24
+ # OS
25
+ .DS_Store
26
+ Thumbs.db
27
+
28
+ .env
29
+ configured_connectors.yaml
@@ -0,0 +1,21 @@
1
+ # Shopify changelog
2
+
3
+ ## [0.1.3] - 2026-01-22
4
+ - Updated connector definition (YAML version 0.1.1)
5
+ - Source commit: c713ec48
6
+ - SDK version: 0.1.0
7
+
8
+ ## [0.1.2] - 2026-01-21
9
+ - Updated connector definition (YAML version 0.1.1)
10
+ - Source commit: c7dab975
11
+ - SDK version: 0.1.0
12
+
13
+ ## [0.1.1] - 2026-01-19
14
+ - Updated connector definition (YAML version 0.1.1)
15
+ - Source commit: 529cebb7
16
+ - SDK version: 0.1.0
17
+
18
+ ## [0.1.0] - 2026-01-17
19
+ - Updated connector definition (YAML version 0.1.1)
20
+ - Source commit: 7c6c8361
21
+ - SDK version: 0.1.0
@@ -0,0 +1,139 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-shopify
3
+ Version: 0.1.3
4
+ Summary: Airbyte Shopify Connector for AI platforms
5
+ Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
6
+ Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
7
+ Project-URL: Repository, https://github.com/airbytehq/airbyte-agent-connectors
8
+ Project-URL: Issues, https://github.com/airbytehq/airbyte-agent-connectors/issues
9
+ Author-email: Airbyte <contact@airbyte.io>
10
+ License: Elastic-2.0
11
+ Keywords: agent,ai,airbyte,api,connector,data-integration,llm,mcp,shopify
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: Other/Proprietary License
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.13
22
+ Requires-Dist: httpx>=0.24.0
23
+ Requires-Dist: jinja2>=3.0.0
24
+ Requires-Dist: jsonpath-ng>=1.6.1
25
+ Requires-Dist: jsonref>=1.1.0
26
+ Requires-Dist: opentelemetry-api>=1.37.0
27
+ Requires-Dist: opentelemetry-sdk>=1.37.0
28
+ Requires-Dist: pydantic>=2.0.0
29
+ Requires-Dist: python-dotenv>=1.0.0
30
+ Requires-Dist: pyyaml>=6.0
31
+ Requires-Dist: segment-analytics-python>=2.2.0
32
+ Description-Content-Type: text/markdown
33
+
34
+ # Shopify agent connector
35
+
36
+ Shopify is an e-commerce platform that enables businesses to create online stores,
37
+ manage products, process orders, and handle customer relationships. This connector
38
+ provides access to Shopify Admin REST API for reading store data including customers,
39
+ orders, products, inventory, and more.
40
+
41
+
42
+ ## Example questions
43
+
44
+ The Shopify connector is optimized to handle prompts like these.
45
+
46
+ - List all customers in my Shopify store
47
+ - Show me orders from the last 30 days
48
+ - Get details for customer \{customer_id\}
49
+ - What products do I have in my store?
50
+ - Show me abandoned checkouts from this week
51
+ - List all locations for my store
52
+ - Get inventory levels for location \{location_id\}
53
+ - Show me all draft orders
54
+ - What price rules are currently active?
55
+ - List all custom collections in my store
56
+ - Get details for order \{order_id\}
57
+ - Show me product variants for product \{product_id\}
58
+
59
+ ## Unsupported questions
60
+
61
+ The Shopify connector isn't currently able to handle prompts like these.
62
+
63
+ - Create a new customer in Shopify
64
+ - Update product pricing
65
+ - Delete an order
66
+ - Process a refund
67
+ - Send shipping notification to customer
68
+ - Create a new discount code
69
+
70
+ ## Installation
71
+
72
+ ```bash
73
+ uv pip install airbyte-agent-shopify
74
+ ```
75
+
76
+ ## Usage
77
+
78
+ ```python
79
+ from airbyte_agent_shopify import ShopifyConnector, ShopifyAuthConfig
80
+
81
+ connector = ShopifyConnector(
82
+ auth_config=ShopifyAuthConfig(
83
+ api_key="...",
84
+ shop="..."
85
+ )
86
+ )
87
+ result = await connector.customers.list()
88
+ ```
89
+
90
+
91
+ ## Full documentation
92
+
93
+ This connector supports the following entities and actions.
94
+
95
+ | Entity | Actions |
96
+ |--------|---------|
97
+ | Customers | [List](./REFERENCE.md#customers-list), [Get](./REFERENCE.md#customers-get) |
98
+ | Orders | [List](./REFERENCE.md#orders-list), [Get](./REFERENCE.md#orders-get) |
99
+ | Products | [List](./REFERENCE.md#products-list), [Get](./REFERENCE.md#products-get) |
100
+ | Product Variants | [List](./REFERENCE.md#product-variants-list), [Get](./REFERENCE.md#product-variants-get) |
101
+ | Product Images | [List](./REFERENCE.md#product-images-list), [Get](./REFERENCE.md#product-images-get) |
102
+ | Abandoned Checkouts | [List](./REFERENCE.md#abandoned-checkouts-list) |
103
+ | Locations | [List](./REFERENCE.md#locations-list), [Get](./REFERENCE.md#locations-get) |
104
+ | Inventory Levels | [List](./REFERENCE.md#inventory-levels-list) |
105
+ | Inventory Items | [List](./REFERENCE.md#inventory-items-list), [Get](./REFERENCE.md#inventory-items-get) |
106
+ | Shop | [Get](./REFERENCE.md#shop-get) |
107
+ | Price Rules | [List](./REFERENCE.md#price-rules-list), [Get](./REFERENCE.md#price-rules-get) |
108
+ | Discount Codes | [List](./REFERENCE.md#discount-codes-list), [Get](./REFERENCE.md#discount-codes-get) |
109
+ | Custom Collections | [List](./REFERENCE.md#custom-collections-list), [Get](./REFERENCE.md#custom-collections-get) |
110
+ | Smart Collections | [List](./REFERENCE.md#smart-collections-list), [Get](./REFERENCE.md#smart-collections-get) |
111
+ | Collects | [List](./REFERENCE.md#collects-list), [Get](./REFERENCE.md#collects-get) |
112
+ | Draft Orders | [List](./REFERENCE.md#draft-orders-list), [Get](./REFERENCE.md#draft-orders-get) |
113
+ | Fulfillments | [List](./REFERENCE.md#fulfillments-list), [Get](./REFERENCE.md#fulfillments-get) |
114
+ | Order Refunds | [List](./REFERENCE.md#order-refunds-list), [Get](./REFERENCE.md#order-refunds-get) |
115
+ | Transactions | [List](./REFERENCE.md#transactions-list), [Get](./REFERENCE.md#transactions-get) |
116
+ | Tender Transactions | [List](./REFERENCE.md#tender-transactions-list) |
117
+ | Countries | [List](./REFERENCE.md#countries-list), [Get](./REFERENCE.md#countries-get) |
118
+ | Metafield Shops | [List](./REFERENCE.md#metafield-shops-list), [Get](./REFERENCE.md#metafield-shops-get) |
119
+ | Metafield Customers | [List](./REFERENCE.md#metafield-customers-list) |
120
+ | Metafield Products | [List](./REFERENCE.md#metafield-products-list) |
121
+ | Metafield Orders | [List](./REFERENCE.md#metafield-orders-list) |
122
+ | Metafield Draft Orders | [List](./REFERENCE.md#metafield-draft-orders-list) |
123
+ | Metafield Locations | [List](./REFERENCE.md#metafield-locations-list) |
124
+ | Metafield Product Variants | [List](./REFERENCE.md#metafield-product-variants-list) |
125
+ | Metafield Smart Collections | [List](./REFERENCE.md#metafield-smart-collections-list) |
126
+ | Metafield Product Images | [List](./REFERENCE.md#metafield-product-images-list) |
127
+ | Customer Address | [List](./REFERENCE.md#customer-address-list), [Get](./REFERENCE.md#customer-address-get) |
128
+ | Fulfillment Orders | [List](./REFERENCE.md#fulfillment-orders-list), [Get](./REFERENCE.md#fulfillment-orders-get) |
129
+
130
+
131
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
132
+
133
+ For the service's official API docs, see the [Shopify API reference](https://shopify.dev/docs/api/admin-rest).
134
+
135
+ ## Version information
136
+
137
+ - **Package version:** 0.1.3
138
+ - **Connector version:** 0.1.1
139
+ - **Generated with Connector SDK commit SHA:** c713ec4833c2b52dc89926ec68caa343423884cd
@@ -0,0 +1,106 @@
1
+ # Shopify agent connector
2
+
3
+ Shopify is an e-commerce platform that enables businesses to create online stores,
4
+ manage products, process orders, and handle customer relationships. This connector
5
+ provides access to Shopify Admin REST API for reading store data including customers,
6
+ orders, products, inventory, and more.
7
+
8
+
9
+ ## Example questions
10
+
11
+ The Shopify connector is optimized to handle prompts like these.
12
+
13
+ - List all customers in my Shopify store
14
+ - Show me orders from the last 30 days
15
+ - Get details for customer \{customer_id\}
16
+ - What products do I have in my store?
17
+ - Show me abandoned checkouts from this week
18
+ - List all locations for my store
19
+ - Get inventory levels for location \{location_id\}
20
+ - Show me all draft orders
21
+ - What price rules are currently active?
22
+ - List all custom collections in my store
23
+ - Get details for order \{order_id\}
24
+ - Show me product variants for product \{product_id\}
25
+
26
+ ## Unsupported questions
27
+
28
+ The Shopify connector isn't currently able to handle prompts like these.
29
+
30
+ - Create a new customer in Shopify
31
+ - Update product pricing
32
+ - Delete an order
33
+ - Process a refund
34
+ - Send shipping notification to customer
35
+ - Create a new discount code
36
+
37
+ ## Installation
38
+
39
+ ```bash
40
+ uv pip install airbyte-agent-shopify
41
+ ```
42
+
43
+ ## Usage
44
+
45
+ ```python
46
+ from airbyte_agent_shopify import ShopifyConnector, ShopifyAuthConfig
47
+
48
+ connector = ShopifyConnector(
49
+ auth_config=ShopifyAuthConfig(
50
+ api_key="...",
51
+ shop="..."
52
+ )
53
+ )
54
+ result = await connector.customers.list()
55
+ ```
56
+
57
+
58
+ ## Full documentation
59
+
60
+ This connector supports the following entities and actions.
61
+
62
+ | Entity | Actions |
63
+ |--------|---------|
64
+ | Customers | [List](./REFERENCE.md#customers-list), [Get](./REFERENCE.md#customers-get) |
65
+ | Orders | [List](./REFERENCE.md#orders-list), [Get](./REFERENCE.md#orders-get) |
66
+ | Products | [List](./REFERENCE.md#products-list), [Get](./REFERENCE.md#products-get) |
67
+ | Product Variants | [List](./REFERENCE.md#product-variants-list), [Get](./REFERENCE.md#product-variants-get) |
68
+ | Product Images | [List](./REFERENCE.md#product-images-list), [Get](./REFERENCE.md#product-images-get) |
69
+ | Abandoned Checkouts | [List](./REFERENCE.md#abandoned-checkouts-list) |
70
+ | Locations | [List](./REFERENCE.md#locations-list), [Get](./REFERENCE.md#locations-get) |
71
+ | Inventory Levels | [List](./REFERENCE.md#inventory-levels-list) |
72
+ | Inventory Items | [List](./REFERENCE.md#inventory-items-list), [Get](./REFERENCE.md#inventory-items-get) |
73
+ | Shop | [Get](./REFERENCE.md#shop-get) |
74
+ | Price Rules | [List](./REFERENCE.md#price-rules-list), [Get](./REFERENCE.md#price-rules-get) |
75
+ | Discount Codes | [List](./REFERENCE.md#discount-codes-list), [Get](./REFERENCE.md#discount-codes-get) |
76
+ | Custom Collections | [List](./REFERENCE.md#custom-collections-list), [Get](./REFERENCE.md#custom-collections-get) |
77
+ | Smart Collections | [List](./REFERENCE.md#smart-collections-list), [Get](./REFERENCE.md#smart-collections-get) |
78
+ | Collects | [List](./REFERENCE.md#collects-list), [Get](./REFERENCE.md#collects-get) |
79
+ | Draft Orders | [List](./REFERENCE.md#draft-orders-list), [Get](./REFERENCE.md#draft-orders-get) |
80
+ | Fulfillments | [List](./REFERENCE.md#fulfillments-list), [Get](./REFERENCE.md#fulfillments-get) |
81
+ | Order Refunds | [List](./REFERENCE.md#order-refunds-list), [Get](./REFERENCE.md#order-refunds-get) |
82
+ | Transactions | [List](./REFERENCE.md#transactions-list), [Get](./REFERENCE.md#transactions-get) |
83
+ | Tender Transactions | [List](./REFERENCE.md#tender-transactions-list) |
84
+ | Countries | [List](./REFERENCE.md#countries-list), [Get](./REFERENCE.md#countries-get) |
85
+ | Metafield Shops | [List](./REFERENCE.md#metafield-shops-list), [Get](./REFERENCE.md#metafield-shops-get) |
86
+ | Metafield Customers | [List](./REFERENCE.md#metafield-customers-list) |
87
+ | Metafield Products | [List](./REFERENCE.md#metafield-products-list) |
88
+ | Metafield Orders | [List](./REFERENCE.md#metafield-orders-list) |
89
+ | Metafield Draft Orders | [List](./REFERENCE.md#metafield-draft-orders-list) |
90
+ | Metafield Locations | [List](./REFERENCE.md#metafield-locations-list) |
91
+ | Metafield Product Variants | [List](./REFERENCE.md#metafield-product-variants-list) |
92
+ | Metafield Smart Collections | [List](./REFERENCE.md#metafield-smart-collections-list) |
93
+ | Metafield Product Images | [List](./REFERENCE.md#metafield-product-images-list) |
94
+ | Customer Address | [List](./REFERENCE.md#customer-address-list), [Get](./REFERENCE.md#customer-address-get) |
95
+ | Fulfillment Orders | [List](./REFERENCE.md#fulfillment-orders-list), [Get](./REFERENCE.md#fulfillment-orders-get) |
96
+
97
+
98
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
99
+
100
+ For the service's official API docs, see the [Shopify API reference](https://shopify.dev/docs/api/admin-rest).
101
+
102
+ ## Version information
103
+
104
+ - **Package version:** 0.1.3
105
+ - **Connector version:** 0.1.1
106
+ - **Generated with Connector SDK commit SHA:** c713ec4833c2b52dc89926ec68caa343423884cd