airbyte-agent-stripe 0.5.25__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 airbyte-agent-stripe might be problematic. Click here for more details.

Files changed (55) hide show
  1. airbyte_agent_stripe/__init__.py +237 -0
  2. airbyte_agent_stripe/_vendored/__init__.py +1 -0
  3. airbyte_agent_stripe/_vendored/connector_sdk/__init__.py +82 -0
  4. airbyte_agent_stripe/_vendored/connector_sdk/auth_strategies.py +1123 -0
  5. airbyte_agent_stripe/_vendored/connector_sdk/auth_template.py +135 -0
  6. airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
  7. airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/client.py +213 -0
  8. airbyte_agent_stripe/_vendored/connector_sdk/connector_model_loader.py +957 -0
  9. airbyte_agent_stripe/_vendored/connector_sdk/constants.py +78 -0
  10. airbyte_agent_stripe/_vendored/connector_sdk/exceptions.py +23 -0
  11. airbyte_agent_stripe/_vendored/connector_sdk/executor/__init__.py +31 -0
  12. airbyte_agent_stripe/_vendored/connector_sdk/executor/hosted_executor.py +197 -0
  13. airbyte_agent_stripe/_vendored/connector_sdk/executor/local_executor.py +1504 -0
  14. airbyte_agent_stripe/_vendored/connector_sdk/executor/models.py +190 -0
  15. airbyte_agent_stripe/_vendored/connector_sdk/extensions.py +655 -0
  16. airbyte_agent_stripe/_vendored/connector_sdk/http/__init__.py +37 -0
  17. airbyte_agent_stripe/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
  18. airbyte_agent_stripe/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
  19. airbyte_agent_stripe/_vendored/connector_sdk/http/config.py +98 -0
  20. airbyte_agent_stripe/_vendored/connector_sdk/http/exceptions.py +119 -0
  21. airbyte_agent_stripe/_vendored/connector_sdk/http/protocols.py +114 -0
  22. airbyte_agent_stripe/_vendored/connector_sdk/http/response.py +102 -0
  23. airbyte_agent_stripe/_vendored/connector_sdk/http_client.py +686 -0
  24. airbyte_agent_stripe/_vendored/connector_sdk/logging/__init__.py +11 -0
  25. airbyte_agent_stripe/_vendored/connector_sdk/logging/logger.py +264 -0
  26. airbyte_agent_stripe/_vendored/connector_sdk/logging/types.py +92 -0
  27. airbyte_agent_stripe/_vendored/connector_sdk/observability/__init__.py +11 -0
  28. airbyte_agent_stripe/_vendored/connector_sdk/observability/models.py +19 -0
  29. airbyte_agent_stripe/_vendored/connector_sdk/observability/redactor.py +81 -0
  30. airbyte_agent_stripe/_vendored/connector_sdk/observability/session.py +94 -0
  31. airbyte_agent_stripe/_vendored/connector_sdk/performance/__init__.py +6 -0
  32. airbyte_agent_stripe/_vendored/connector_sdk/performance/instrumentation.py +57 -0
  33. airbyte_agent_stripe/_vendored/connector_sdk/performance/metrics.py +93 -0
  34. airbyte_agent_stripe/_vendored/connector_sdk/schema/__init__.py +75 -0
  35. airbyte_agent_stripe/_vendored/connector_sdk/schema/base.py +161 -0
  36. airbyte_agent_stripe/_vendored/connector_sdk/schema/components.py +238 -0
  37. airbyte_agent_stripe/_vendored/connector_sdk/schema/connector.py +131 -0
  38. airbyte_agent_stripe/_vendored/connector_sdk/schema/extensions.py +109 -0
  39. airbyte_agent_stripe/_vendored/connector_sdk/schema/operations.py +146 -0
  40. airbyte_agent_stripe/_vendored/connector_sdk/schema/security.py +213 -0
  41. airbyte_agent_stripe/_vendored/connector_sdk/secrets.py +182 -0
  42. airbyte_agent_stripe/_vendored/connector_sdk/telemetry/__init__.py +10 -0
  43. airbyte_agent_stripe/_vendored/connector_sdk/telemetry/config.py +32 -0
  44. airbyte_agent_stripe/_vendored/connector_sdk/telemetry/events.py +58 -0
  45. airbyte_agent_stripe/_vendored/connector_sdk/telemetry/tracker.py +151 -0
  46. airbyte_agent_stripe/_vendored/connector_sdk/types.py +241 -0
  47. airbyte_agent_stripe/_vendored/connector_sdk/utils.py +60 -0
  48. airbyte_agent_stripe/_vendored/connector_sdk/validation.py +822 -0
  49. airbyte_agent_stripe/connector.py +1579 -0
  50. airbyte_agent_stripe/connector_model.py +14869 -0
  51. airbyte_agent_stripe/models.py +2353 -0
  52. airbyte_agent_stripe/types.py +295 -0
  53. airbyte_agent_stripe-0.5.25.dist-info/METADATA +110 -0
  54. airbyte_agent_stripe-0.5.25.dist-info/RECORD +55 -0
  55. airbyte_agent_stripe-0.5.25.dist-info/WHEEL +4 -0
@@ -0,0 +1,295 @@
1
+ """
2
+ Type definitions for stripe connector.
3
+ """
4
+ from __future__ import annotations
5
+
6
+ # Use typing_extensions.TypedDict for Pydantic compatibility on Python < 3.12
7
+ try:
8
+ from typing_extensions import TypedDict, NotRequired
9
+ except ImportError:
10
+ from typing import TypedDict, NotRequired # type: ignore[attr-defined]
11
+
12
+
13
+
14
+ # ===== NESTED PARAM TYPE DEFINITIONS =====
15
+ # Nested parameter schemas discovered during parameter extraction
16
+
17
+ class CustomersListParamsCreated(TypedDict):
18
+ """Nested schema for CustomersListParams.created"""
19
+ gt: NotRequired[int]
20
+ gte: NotRequired[int]
21
+ lt: NotRequired[int]
22
+ lte: NotRequired[int]
23
+
24
+ class InvoicesListParamsCreated(TypedDict):
25
+ """Nested schema for InvoicesListParams.created"""
26
+ gt: NotRequired[int]
27
+ gte: NotRequired[int]
28
+ lt: NotRequired[int]
29
+ lte: NotRequired[int]
30
+
31
+ class ChargesListParamsCreated(TypedDict):
32
+ """Nested schema for ChargesListParams.created"""
33
+ gt: NotRequired[int]
34
+ gte: NotRequired[int]
35
+ lt: NotRequired[int]
36
+ lte: NotRequired[int]
37
+
38
+ class SubscriptionsListParamsAutomaticTax(TypedDict):
39
+ """Nested schema for SubscriptionsListParams.automatic_tax"""
40
+ enabled: NotRequired[bool]
41
+
42
+ class SubscriptionsListParamsCreated(TypedDict):
43
+ """Nested schema for SubscriptionsListParams.created"""
44
+ gt: NotRequired[int]
45
+ gte: NotRequired[int]
46
+ lt: NotRequired[int]
47
+ lte: NotRequired[int]
48
+
49
+ class SubscriptionsListParamsCurrentPeriodEnd(TypedDict):
50
+ """Nested schema for SubscriptionsListParams.current_period_end"""
51
+ gt: NotRequired[int]
52
+ gte: NotRequired[int]
53
+ lt: NotRequired[int]
54
+ lte: NotRequired[int]
55
+
56
+ class SubscriptionsListParamsCurrentPeriodStart(TypedDict):
57
+ """Nested schema for SubscriptionsListParams.current_period_start"""
58
+ gt: NotRequired[int]
59
+ gte: NotRequired[int]
60
+ lt: NotRequired[int]
61
+ lte: NotRequired[int]
62
+
63
+ class RefundsListParamsCreated(TypedDict):
64
+ """Nested schema for RefundsListParams.created"""
65
+ gt: NotRequired[int]
66
+ gte: NotRequired[int]
67
+ lt: NotRequired[int]
68
+ lte: NotRequired[int]
69
+
70
+ class ProductsListParamsCreated(TypedDict):
71
+ """Nested schema for ProductsListParams.created"""
72
+ gt: NotRequired[int]
73
+ gte: NotRequired[int]
74
+ lt: NotRequired[int]
75
+ lte: NotRequired[int]
76
+
77
+ class BalanceTransactionsListParamsCreated(TypedDict):
78
+ """Nested schema for BalanceTransactionsListParams.created"""
79
+ gt: NotRequired[int]
80
+ gte: NotRequired[int]
81
+ lt: NotRequired[int]
82
+ lte: NotRequired[int]
83
+
84
+ class PaymentIntentsListParamsCreated(TypedDict):
85
+ """Nested schema for PaymentIntentsListParams.created"""
86
+ gt: NotRequired[int]
87
+ gte: NotRequired[int]
88
+ lt: NotRequired[int]
89
+ lte: NotRequired[int]
90
+
91
+ class DisputesListParamsCreated(TypedDict):
92
+ """Nested schema for DisputesListParams.created"""
93
+ gt: NotRequired[int]
94
+ gte: NotRequired[int]
95
+ lt: NotRequired[int]
96
+ lte: NotRequired[int]
97
+
98
+ class PayoutsListParamsArrivalDate(TypedDict):
99
+ """Nested schema for PayoutsListParams.arrival_date"""
100
+ gt: NotRequired[int]
101
+ gte: NotRequired[int]
102
+ lt: NotRequired[int]
103
+ lte: NotRequired[int]
104
+
105
+ class PayoutsListParamsCreated(TypedDict):
106
+ """Nested schema for PayoutsListParams.created"""
107
+ gt: NotRequired[int]
108
+ gte: NotRequired[int]
109
+ lt: NotRequired[int]
110
+ lte: NotRequired[int]
111
+
112
+ # ===== OPERATION PARAMS TYPE DEFINITIONS =====
113
+
114
+ class CustomersListParams(TypedDict):
115
+ """Parameters for customers.list operation"""
116
+ limit: NotRequired[int]
117
+ starting_after: NotRequired[str]
118
+ ending_before: NotRequired[str]
119
+ email: NotRequired[str]
120
+ created: NotRequired[CustomersListParamsCreated]
121
+
122
+ class CustomersGetParams(TypedDict):
123
+ """Parameters for customers.get operation"""
124
+ id: str
125
+
126
+ class CustomersSearchParams(TypedDict):
127
+ """Parameters for customers.search operation"""
128
+ query: str
129
+ limit: NotRequired[int]
130
+ page: NotRequired[str]
131
+
132
+ class InvoicesListParams(TypedDict):
133
+ """Parameters for invoices.list operation"""
134
+ collection_method: NotRequired[str]
135
+ created: NotRequired[InvoicesListParamsCreated]
136
+ customer: NotRequired[str]
137
+ customer_account: NotRequired[str]
138
+ ending_before: NotRequired[str]
139
+ limit: NotRequired[int]
140
+ starting_after: NotRequired[str]
141
+ status: NotRequired[str]
142
+ subscription: NotRequired[str]
143
+
144
+ class InvoicesGetParams(TypedDict):
145
+ """Parameters for invoices.get operation"""
146
+ id: str
147
+
148
+ class InvoicesSearchParams(TypedDict):
149
+ """Parameters for invoices.search operation"""
150
+ query: str
151
+ limit: NotRequired[int]
152
+ page: NotRequired[str]
153
+
154
+ class ChargesListParams(TypedDict):
155
+ """Parameters for charges.list operation"""
156
+ created: NotRequired[ChargesListParamsCreated]
157
+ customer: NotRequired[str]
158
+ ending_before: NotRequired[str]
159
+ limit: NotRequired[int]
160
+ payment_intent: NotRequired[str]
161
+ starting_after: NotRequired[str]
162
+
163
+ class ChargesGetParams(TypedDict):
164
+ """Parameters for charges.get operation"""
165
+ id: str
166
+
167
+ class ChargesSearchParams(TypedDict):
168
+ """Parameters for charges.search operation"""
169
+ query: str
170
+ limit: NotRequired[int]
171
+ page: NotRequired[str]
172
+
173
+ class SubscriptionsListParams(TypedDict):
174
+ """Parameters for subscriptions.list operation"""
175
+ automatic_tax: NotRequired[SubscriptionsListParamsAutomaticTax]
176
+ collection_method: NotRequired[str]
177
+ created: NotRequired[SubscriptionsListParamsCreated]
178
+ current_period_end: NotRequired[SubscriptionsListParamsCurrentPeriodEnd]
179
+ current_period_start: NotRequired[SubscriptionsListParamsCurrentPeriodStart]
180
+ customer: NotRequired[str]
181
+ customer_account: NotRequired[str]
182
+ ending_before: NotRequired[str]
183
+ limit: NotRequired[int]
184
+ price: NotRequired[str]
185
+ starting_after: NotRequired[str]
186
+ status: NotRequired[str]
187
+
188
+ class SubscriptionsGetParams(TypedDict):
189
+ """Parameters for subscriptions.get operation"""
190
+ id: str
191
+
192
+ class SubscriptionsSearchParams(TypedDict):
193
+ """Parameters for subscriptions.search operation"""
194
+ query: str
195
+ limit: NotRequired[int]
196
+ page: NotRequired[str]
197
+
198
+ class RefundsListParams(TypedDict):
199
+ """Parameters for refunds.list operation"""
200
+ charge: NotRequired[str]
201
+ created: NotRequired[RefundsListParamsCreated]
202
+ ending_before: NotRequired[str]
203
+ limit: NotRequired[int]
204
+ payment_intent: NotRequired[str]
205
+ starting_after: NotRequired[str]
206
+
207
+ class RefundsGetParams(TypedDict):
208
+ """Parameters for refunds.get operation"""
209
+ id: str
210
+
211
+ class ProductsListParams(TypedDict):
212
+ """Parameters for products.list operation"""
213
+ active: NotRequired[bool]
214
+ created: NotRequired[ProductsListParamsCreated]
215
+ ending_before: NotRequired[str]
216
+ ids: NotRequired[list[str]]
217
+ limit: NotRequired[int]
218
+ shippable: NotRequired[bool]
219
+ starting_after: NotRequired[str]
220
+ url: NotRequired[str]
221
+
222
+ class ProductsGetParams(TypedDict):
223
+ """Parameters for products.get operation"""
224
+ id: str
225
+
226
+ class ProductsSearchParams(TypedDict):
227
+ """Parameters for products.search operation"""
228
+ query: str
229
+ limit: NotRequired[int]
230
+ page: NotRequired[str]
231
+
232
+ class BalanceGetParams(TypedDict):
233
+ """Parameters for balance.get operation"""
234
+ pass
235
+
236
+ class BalanceTransactionsListParams(TypedDict):
237
+ """Parameters for balance_transactions.list operation"""
238
+ created: NotRequired[BalanceTransactionsListParamsCreated]
239
+ currency: NotRequired[str]
240
+ ending_before: NotRequired[str]
241
+ limit: NotRequired[int]
242
+ payout: NotRequired[str]
243
+ source: NotRequired[str]
244
+ starting_after: NotRequired[str]
245
+ type: NotRequired[str]
246
+
247
+ class BalanceTransactionsGetParams(TypedDict):
248
+ """Parameters for balance_transactions.get operation"""
249
+ id: str
250
+
251
+ class PaymentIntentsListParams(TypedDict):
252
+ """Parameters for payment_intents.list operation"""
253
+ created: NotRequired[PaymentIntentsListParamsCreated]
254
+ customer: NotRequired[str]
255
+ customer_account: NotRequired[str]
256
+ ending_before: NotRequired[str]
257
+ limit: NotRequired[int]
258
+ starting_after: NotRequired[str]
259
+
260
+ class PaymentIntentsGetParams(TypedDict):
261
+ """Parameters for payment_intents.get operation"""
262
+ id: str
263
+
264
+ class PaymentIntentsSearchParams(TypedDict):
265
+ """Parameters for payment_intents.search operation"""
266
+ query: str
267
+ limit: NotRequired[int]
268
+ page: NotRequired[str]
269
+
270
+ class DisputesListParams(TypedDict):
271
+ """Parameters for disputes.list operation"""
272
+ charge: NotRequired[str]
273
+ created: NotRequired[DisputesListParamsCreated]
274
+ ending_before: NotRequired[str]
275
+ limit: NotRequired[int]
276
+ payment_intent: NotRequired[str]
277
+ starting_after: NotRequired[str]
278
+
279
+ class DisputesGetParams(TypedDict):
280
+ """Parameters for disputes.get operation"""
281
+ id: str
282
+
283
+ class PayoutsListParams(TypedDict):
284
+ """Parameters for payouts.list operation"""
285
+ arrival_date: NotRequired[PayoutsListParamsArrivalDate]
286
+ created: NotRequired[PayoutsListParamsCreated]
287
+ destination: NotRequired[str]
288
+ ending_before: NotRequired[str]
289
+ limit: NotRequired[int]
290
+ starting_after: NotRequired[str]
291
+ status: NotRequired[str]
292
+
293
+ class PayoutsGetParams(TypedDict):
294
+ """Parameters for payouts.get operation"""
295
+ id: str
@@ -0,0 +1,110 @@
1
+ Metadata-Version: 2.4
2
+ Name: airbyte-agent-stripe
3
+ Version: 0.5.25
4
+ Summary: Airbyte Stripe Connector for AI platforms
5
+ Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
6
+ Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
7
+ Project-URL: Repository, https://github.com/airbytehq/airbyte-embedded
8
+ Project-URL: Issues, https://github.com/airbytehq/airbyte-embedded/issues
9
+ Author-email: Airbyte <contact@airbyte.io>
10
+ License: Elastic-2.0
11
+ Keywords: airbyte,api,connector,stripe
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: Other/Proprietary License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.9
23
+ Requires-Dist: httpx>=0.24.0
24
+ Requires-Dist: jinja2>=3.0.0
25
+ Requires-Dist: jsonpath-ng>=1.6.1
26
+ Requires-Dist: jsonref>=1.1.0
27
+ Requires-Dist: opentelemetry-api>=1.37.0
28
+ Requires-Dist: opentelemetry-sdk>=1.37.0
29
+ Requires-Dist: pydantic>=2.0.0
30
+ Requires-Dist: python-dotenv>=1.0.0
31
+ Requires-Dist: pyyaml>=6.0
32
+ Requires-Dist: segment-analytics-python>=2.2.0
33
+ Description-Content-Type: text/markdown
34
+
35
+ # Stripe agent connector
36
+
37
+ Stripe is a payment processing platform that enables businesses to accept payments,
38
+ manage subscriptions, and handle financial transactions. This connector provides
39
+ access to customers for payment analytics and customer management.
40
+
41
+
42
+ ## Example questions
43
+
44
+ - Show me my top 10 customers by total revenue this month
45
+ - List all customers who have spent over $5,000 in the last quarter
46
+ - Analyze payment trends for my Stripe customers
47
+ - Identify which customers have the most consistent subscription payments
48
+ - Give me insights into my customer retention rates
49
+ - Summarize the payment history for {customer}
50
+ - Compare customer spending patterns from last month to this month
51
+ - Show me details about my highest-value Stripe customers
52
+ - What are the key financial insights from my customer base?
53
+ - Break down my customers by their average transaction value
54
+
55
+ ## Unsupported questions
56
+
57
+ - Create a new customer profile in Stripe
58
+ - Update the billing information for {customer}
59
+ - Delete a customer record
60
+ - Send a payment reminder to {customer}
61
+ - Schedule an automatic invoice for {company}
62
+
63
+ ## Installation
64
+
65
+ ```bash
66
+ uv pip install airbyte-agent-stripe
67
+ ```
68
+
69
+ ## Usage
70
+
71
+ ```python
72
+ from airbyte_agent_stripe import StripeConnector, StripeAuthConfig
73
+
74
+ connector = StripeConnector(
75
+ auth_config=StripeAuthConfig(
76
+ api_key="..."
77
+ )
78
+ )
79
+ result = await connector.customers.list()
80
+ ```
81
+
82
+
83
+ ## Full documentation
84
+
85
+ This connector supports the following entities and actions.
86
+
87
+ | Entity | Actions |
88
+ |--------|---------|
89
+ | Customers | [List](./REFERENCE.md#customers-list), [Get](./REFERENCE.md#customers-get), [Search](./REFERENCE.md#customers-search) |
90
+ | Invoices | [List](./REFERENCE.md#invoices-list), [Get](./REFERENCE.md#invoices-get), [Search](./REFERENCE.md#invoices-search) |
91
+ | Charges | [List](./REFERENCE.md#charges-list), [Get](./REFERENCE.md#charges-get), [Search](./REFERENCE.md#charges-search) |
92
+ | Subscriptions | [List](./REFERENCE.md#subscriptions-list), [Get](./REFERENCE.md#subscriptions-get), [Search](./REFERENCE.md#subscriptions-search) |
93
+ | Refunds | [List](./REFERENCE.md#refunds-list), [Get](./REFERENCE.md#refunds-get) |
94
+ | Products | [List](./REFERENCE.md#products-list), [Get](./REFERENCE.md#products-get), [Search](./REFERENCE.md#products-search) |
95
+ | Balance | [Get](./REFERENCE.md#balance-get) |
96
+ | Balance Transactions | [List](./REFERENCE.md#balance-transactions-list), [Get](./REFERENCE.md#balance-transactions-get) |
97
+ | Payment Intents | [List](./REFERENCE.md#payment-intents-list), [Get](./REFERENCE.md#payment-intents-get), [Search](./REFERENCE.md#payment-intents-search) |
98
+ | Disputes | [List](./REFERENCE.md#disputes-list), [Get](./REFERENCE.md#disputes-get) |
99
+ | Payouts | [List](./REFERENCE.md#payouts-list), [Get](./REFERENCE.md#payouts-get) |
100
+
101
+
102
+ For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
103
+
104
+ For the service's official API docs, see the [Stripe API reference](https://docs.stripe.com/api).
105
+
106
+ ## Version information
107
+
108
+ - **Package version:** 0.5.25
109
+ - **Connector version:** 0.1.3
110
+ - **Generated with Connector SDK commit SHA:** 0eb1b1c4afe2ae6607371288233ef427ccad1b80
@@ -0,0 +1,55 @@
1
+ airbyte_agent_stripe/__init__.py,sha256=X1kMar2Em83qqSn5hDr9bZxyeK-M8IyyPukDdQ-4fxg,13534
2
+ airbyte_agent_stripe/connector.py,sha256=A7iLeVc8aEPVZTtQ3oJnIh5NLfA5UvWG5a-uU9VeG_Q,57796
3
+ airbyte_agent_stripe/connector_model.py,sha256=GpOy6cJGh3SRke_ETQvJy8cvxCk_gNL-L0clH6oAP70,1069044
4
+ airbyte_agent_stripe/models.py,sha256=1jEaAHMtaTokdRasD4LJBJAysNHFnst43xqiA4nmGy4,145327
5
+ airbyte_agent_stripe/types.py,sha256=2nWzCmB2C9xn8IZG8Jjg-6okb11yLDSh2QktMeoFGRo,9150
6
+ airbyte_agent_stripe/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
7
+ airbyte_agent_stripe/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
8
+ airbyte_agent_stripe/_vendored/connector_sdk/auth_strategies.py,sha256=0BfIISVzuvZTAYZjQFOOhKTpw0QuKDlLQBQ1PQo-V2M,39967
9
+ airbyte_agent_stripe/_vendored/connector_sdk/auth_template.py,sha256=vKnyA21Jp33EuDjkIUAf1PGicwk4t9kZAPJuAgAZKzU,4458
10
+ airbyte_agent_stripe/_vendored/connector_sdk/connector_model_loader.py,sha256=BeX4QykMUQZk5qY--WuwxXClI7FBDxxbGguqcztAd8A,34663
11
+ airbyte_agent_stripe/_vendored/connector_sdk/constants.py,sha256=uH4rjBX6WsBP8M0jt7AUJI9w5Adn4wvJwib7Gdfkr1M,2736
12
+ airbyte_agent_stripe/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
13
+ airbyte_agent_stripe/_vendored/connector_sdk/extensions.py,sha256=iWA2i0kiiGZY84H8P25A6QmfbuZwu7euMcj4-Vx2DOQ,20185
14
+ airbyte_agent_stripe/_vendored/connector_sdk/http_client.py,sha256=NdccrrBHI5rW56XnXcP54arCwywIVKnMeSQPas6KlOM,27466
15
+ airbyte_agent_stripe/_vendored/connector_sdk/secrets.py,sha256=UWcO9fP-vZwcfkAuvlZahlOCTOwdNN860BIwe8X4jxw,6868
16
+ airbyte_agent_stripe/_vendored/connector_sdk/types.py,sha256=sS9olOyT-kVemHmcFll2ePFRhTdGMbWcz7bSgV-MuSw,8114
17
+ airbyte_agent_stripe/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
18
+ airbyte_agent_stripe/_vendored/connector_sdk/validation.py,sha256=CDjCux1eg35a0Y4BegSivzIwZjiTqOxYWotWNLqTSVU,31792
19
+ airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
20
+ airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/client.py,sha256=HoDgZuEgGHj78P-BGwUf6HGPVWynbdKjGOmjb-JDk58,7188
21
+ airbyte_agent_stripe/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
22
+ airbyte_agent_stripe/_vendored/connector_sdk/executor/hosted_executor.py,sha256=YQ-qfT7PZh9izNFHHe7SAcETiZOKrWjTU-okVb0_VL8,7079
23
+ airbyte_agent_stripe/_vendored/connector_sdk/executor/local_executor.py,sha256=hHlBTtvykrUcfypzyW0e61fU4e3vlxc90mypCFzgSl0,61879
24
+ airbyte_agent_stripe/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
25
+ airbyte_agent_stripe/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
26
+ airbyte_agent_stripe/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
27
+ airbyte_agent_stripe/_vendored/connector_sdk/http/exceptions.py,sha256=eYdYmxqcwA6pgrSoRXNfR6_nRBGRH6upp2-r1jcKaZo,3586
28
+ airbyte_agent_stripe/_vendored/connector_sdk/http/protocols.py,sha256=eV7NbBIQOcPLw-iu8mtkV2zCVgScDwP0ek1SbPNQo0g,3323
29
+ airbyte_agent_stripe/_vendored/connector_sdk/http/response.py,sha256=r7QFYRkw6is-Na7WozAyzZynpCQ90RBUhnX4pBSJ1Yc,3338
30
+ airbyte_agent_stripe/_vendored/connector_sdk/http/adapters/__init__.py,sha256=gjbWdU4LfzUG2PETI0TkfkukdzoCAhpL6FZtIEnkO-s,209
31
+ airbyte_agent_stripe/_vendored/connector_sdk/http/adapters/httpx_adapter.py,sha256=dkYhzBWiKBmzWZlc-cRTx50Hb6fy3OI8kOQvXRfS1CQ,8465
32
+ airbyte_agent_stripe/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXhwSA0m3xQqh0FiCifjp1sB3S8jnnFPuJLYf8,227
33
+ airbyte_agent_stripe/_vendored/connector_sdk/logging/logger.py,sha256=Nh0h3C0aO-rAqZhDIyeEXG6Jd7yj1Gk32ECMPth0wl8,8118
34
+ airbyte_agent_stripe/_vendored/connector_sdk/logging/types.py,sha256=iI-xLoOg33OUGQOp3CeaxKtHh73WXE-oul6ZCNf3Nzc,3209
35
+ airbyte_agent_stripe/_vendored/connector_sdk/observability/__init__.py,sha256=ojx1n9vaWCXFFvb3-90Pwtg845trFdV2v6wcCoO75Ko,269
36
+ airbyte_agent_stripe/_vendored/connector_sdk/observability/models.py,sha256=rF6-SoAAywqL8bhEv7yCbmr_W_w0vmApO-MCxcHq9RI,473
37
+ airbyte_agent_stripe/_vendored/connector_sdk/observability/redactor.py,sha256=HRbSwGxsfQYbYlG4QBVvv8Qnw0d4SMowMv0dTFHsHqQ,2361
38
+ airbyte_agent_stripe/_vendored/connector_sdk/observability/session.py,sha256=fLBgb9olATdoC0IMtd8MKe581t1HuK73MiGbghPzUHQ,3083
39
+ airbyte_agent_stripe/_vendored/connector_sdk/performance/__init__.py,sha256=Sp5fSd1LvtIQkv-fnrKqPsM7-6IWp0sSZSK0mhzal_A,200
40
+ airbyte_agent_stripe/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
41
+ airbyte_agent_stripe/_vendored/connector_sdk/performance/metrics.py,sha256=3-wPwlJyfVLUIG3y7ESxk0avhkILk3z8K7zSrnlZf5U,2833
42
+ airbyte_agent_stripe/_vendored/connector_sdk/schema/__init__.py,sha256=Uymu-QuzGJuMxexBagIvUxpVAigIuIhz3KeBl_Vu4Ko,1638
43
+ airbyte_agent_stripe/_vendored/connector_sdk/schema/base.py,sha256=eN6YfHwsYNz_0CE-S715Me8x3gQWTtaRk1vhFjEZF8I,4799
44
+ airbyte_agent_stripe/_vendored/connector_sdk/schema/components.py,sha256=2ivMNhUAcovw88qvDkW221ILf1L63eXteztTDZL46us,7989
45
+ airbyte_agent_stripe/_vendored/connector_sdk/schema/connector.py,sha256=VFBOzIkLgYBR1XUTmyrPGqBkX8PP-zsG8avQcdJUqXs,3864
46
+ airbyte_agent_stripe/_vendored/connector_sdk/schema/extensions.py,sha256=LdoCuMLNdCj68O47qAL4v8xmqGz5tJgRiNZL5JnL9uw,3311
47
+ airbyte_agent_stripe/_vendored/connector_sdk/schema/operations.py,sha256=zInMjx9iOEVZo-CCWw06Uk2SFg7HtUAXXpO5kFGUwNk,5825
48
+ airbyte_agent_stripe/_vendored/connector_sdk/schema/security.py,sha256=Jtrhb58d1zssN5yR7LhLJi-QK0PsZKT7uIvPqanF0co,8114
49
+ airbyte_agent_stripe/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
50
+ airbyte_agent_stripe/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
51
+ airbyte_agent_stripe/_vendored/connector_sdk/telemetry/events.py,sha256=NvqjlUbkm6cbGh4ffKxYxtjdwwgzfPF4MKJ2GfgWeFg,1285
52
+ airbyte_agent_stripe/_vendored/connector_sdk/telemetry/tracker.py,sha256=KacNdbHatvPPhnNrycp5YUuD5xpkp56AFcHd-zguBgk,5247
53
+ airbyte_agent_stripe-0.5.25.dist-info/METADATA,sha256=VkQvj8tcQFtiU_C3SZTYZhhXgIk5m8AYFwj5rxfvWi8,4637
54
+ airbyte_agent_stripe-0.5.25.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
55
+ airbyte_agent_stripe-0.5.25.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any