airbyte-agent-stripe 0.5.32__py3-none-any.whl → 0.5.37__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.
- airbyte_agent_stripe/__init__.py +108 -88
- airbyte_agent_stripe/_vendored/connector_sdk/constants.py +1 -1
- airbyte_agent_stripe/_vendored/connector_sdk/executor/local_executor.py +3 -3
- airbyte_agent_stripe/_vendored/connector_sdk/extensions.py +3 -3
- airbyte_agent_stripe/_vendored/connector_sdk/introspection.py +1 -1
- airbyte_agent_stripe/_vendored/connector_sdk/observability/config.py +179 -0
- airbyte_agent_stripe/_vendored/connector_sdk/observability/session.py +35 -28
- airbyte_agent_stripe/_vendored/connector_sdk/schema/operations.py +1 -1
- airbyte_agent_stripe/_vendored/connector_sdk/telemetry/events.py +2 -1
- airbyte_agent_stripe/_vendored/connector_sdk/telemetry/tracker.py +3 -0
- airbyte_agent_stripe/_vendored/connector_sdk/types.py +1 -1
- airbyte_agent_stripe/connector.py +291 -58
- airbyte_agent_stripe/connector_model.py +3444 -692
- airbyte_agent_stripe/models.py +880 -720
- airbyte_agent_stripe/types.py +41 -13
- {airbyte_agent_stripe-0.5.32.dist-info → airbyte_agent_stripe-0.5.37.dist-info}/METADATA +12 -16
- {airbyte_agent_stripe-0.5.32.dist-info → airbyte_agent_stripe-0.5.37.dist-info}/RECORD +18 -17
- {airbyte_agent_stripe-0.5.32.dist-info → airbyte_agent_stripe-0.5.37.dist-info}/WHEEL +0 -0
airbyte_agent_stripe/types.py
CHANGED
|
@@ -3,7 +3,7 @@ Type definitions for stripe connector.
|
|
|
3
3
|
"""
|
|
4
4
|
from __future__ import annotations
|
|
5
5
|
|
|
6
|
-
# Use typing_extensions.TypedDict for Pydantic compatibility
|
|
6
|
+
# Use typing_extensions.TypedDict for Pydantic compatibility
|
|
7
7
|
try:
|
|
8
8
|
from typing_extensions import TypedDict, NotRequired
|
|
9
9
|
except ImportError:
|
|
@@ -119,12 +119,24 @@ class CustomersListParams(TypedDict):
|
|
|
119
119
|
email: NotRequired[str]
|
|
120
120
|
created: NotRequired[CustomersListParamsCreated]
|
|
121
121
|
|
|
122
|
+
class CustomersCreateParams(TypedDict):
|
|
123
|
+
"""Parameters for customers.create operation"""
|
|
124
|
+
pass
|
|
125
|
+
|
|
122
126
|
class CustomersGetParams(TypedDict):
|
|
123
127
|
"""Parameters for customers.get operation"""
|
|
124
128
|
id: str
|
|
125
129
|
|
|
126
|
-
class
|
|
127
|
-
"""Parameters for customers.
|
|
130
|
+
class CustomersUpdateParams(TypedDict):
|
|
131
|
+
"""Parameters for customers.update operation"""
|
|
132
|
+
id: str
|
|
133
|
+
|
|
134
|
+
class CustomersDeleteParams(TypedDict):
|
|
135
|
+
"""Parameters for customers.delete operation"""
|
|
136
|
+
id: str
|
|
137
|
+
|
|
138
|
+
class CustomersApiSearchParams(TypedDict):
|
|
139
|
+
"""Parameters for customers.api_search operation"""
|
|
128
140
|
query: str
|
|
129
141
|
limit: NotRequired[int]
|
|
130
142
|
page: NotRequired[str]
|
|
@@ -145,8 +157,8 @@ class InvoicesGetParams(TypedDict):
|
|
|
145
157
|
"""Parameters for invoices.get operation"""
|
|
146
158
|
id: str
|
|
147
159
|
|
|
148
|
-
class
|
|
149
|
-
"""Parameters for invoices.
|
|
160
|
+
class InvoicesApiSearchParams(TypedDict):
|
|
161
|
+
"""Parameters for invoices.api_search operation"""
|
|
150
162
|
query: str
|
|
151
163
|
limit: NotRequired[int]
|
|
152
164
|
page: NotRequired[str]
|
|
@@ -164,8 +176,8 @@ class ChargesGetParams(TypedDict):
|
|
|
164
176
|
"""Parameters for charges.get operation"""
|
|
165
177
|
id: str
|
|
166
178
|
|
|
167
|
-
class
|
|
168
|
-
"""Parameters for charges.
|
|
179
|
+
class ChargesApiSearchParams(TypedDict):
|
|
180
|
+
"""Parameters for charges.api_search operation"""
|
|
169
181
|
query: str
|
|
170
182
|
limit: NotRequired[int]
|
|
171
183
|
page: NotRequired[str]
|
|
@@ -189,8 +201,8 @@ class SubscriptionsGetParams(TypedDict):
|
|
|
189
201
|
"""Parameters for subscriptions.get operation"""
|
|
190
202
|
id: str
|
|
191
203
|
|
|
192
|
-
class
|
|
193
|
-
"""Parameters for subscriptions.
|
|
204
|
+
class SubscriptionsApiSearchParams(TypedDict):
|
|
205
|
+
"""Parameters for subscriptions.api_search operation"""
|
|
194
206
|
query: str
|
|
195
207
|
limit: NotRequired[int]
|
|
196
208
|
page: NotRequired[str]
|
|
@@ -204,6 +216,10 @@ class RefundsListParams(TypedDict):
|
|
|
204
216
|
payment_intent: NotRequired[str]
|
|
205
217
|
starting_after: NotRequired[str]
|
|
206
218
|
|
|
219
|
+
class RefundsCreateParams(TypedDict):
|
|
220
|
+
"""Parameters for refunds.create operation"""
|
|
221
|
+
pass
|
|
222
|
+
|
|
207
223
|
class RefundsGetParams(TypedDict):
|
|
208
224
|
"""Parameters for refunds.get operation"""
|
|
209
225
|
id: str
|
|
@@ -219,12 +235,24 @@ class ProductsListParams(TypedDict):
|
|
|
219
235
|
starting_after: NotRequired[str]
|
|
220
236
|
url: NotRequired[str]
|
|
221
237
|
|
|
238
|
+
class ProductsCreateParams(TypedDict):
|
|
239
|
+
"""Parameters for products.create operation"""
|
|
240
|
+
pass
|
|
241
|
+
|
|
222
242
|
class ProductsGetParams(TypedDict):
|
|
223
243
|
"""Parameters for products.get operation"""
|
|
224
244
|
id: str
|
|
225
245
|
|
|
226
|
-
class
|
|
227
|
-
"""Parameters for products.
|
|
246
|
+
class ProductsUpdateParams(TypedDict):
|
|
247
|
+
"""Parameters for products.update operation"""
|
|
248
|
+
id: str
|
|
249
|
+
|
|
250
|
+
class ProductsDeleteParams(TypedDict):
|
|
251
|
+
"""Parameters for products.delete operation"""
|
|
252
|
+
id: str
|
|
253
|
+
|
|
254
|
+
class ProductsApiSearchParams(TypedDict):
|
|
255
|
+
"""Parameters for products.api_search operation"""
|
|
228
256
|
query: str
|
|
229
257
|
limit: NotRequired[int]
|
|
230
258
|
page: NotRequired[str]
|
|
@@ -261,8 +289,8 @@ class PaymentIntentsGetParams(TypedDict):
|
|
|
261
289
|
"""Parameters for payment_intents.get operation"""
|
|
262
290
|
id: str
|
|
263
291
|
|
|
264
|
-
class
|
|
265
|
-
"""Parameters for payment_intents.
|
|
292
|
+
class PaymentIntentsApiSearchParams(TypedDict):
|
|
293
|
+
"""Parameters for payment_intents.api_search operation"""
|
|
266
294
|
query: str
|
|
267
295
|
limit: NotRequired[int]
|
|
268
296
|
page: NotRequired[str]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-stripe
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.37
|
|
4
4
|
Summary: Airbyte Stripe Connector for AI platforms
|
|
5
5
|
Project-URL: Homepage, https://github.com/airbytehq/airbyte-embedded
|
|
6
6
|
Project-URL: Documentation, https://github.com/airbytehq/airbyte-embedded/tree/main/integrations
|
|
@@ -13,13 +13,9 @@ Classifier: Development Status :: 3 - Alpha
|
|
|
13
13
|
Classifier: Intended Audience :: Developers
|
|
14
14
|
Classifier: License :: Other/Proprietary License
|
|
15
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
16
|
Classifier: Programming Language :: Python :: 3.13
|
|
21
17
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
|
-
Requires-Python: >=3.
|
|
18
|
+
Requires-Python: >=3.13
|
|
23
19
|
Requires-Dist: httpx>=0.24.0
|
|
24
20
|
Requires-Dist: jinja2>=3.0.0
|
|
25
21
|
Requires-Dist: jsonpath-ng>=1.6.1
|
|
@@ -90,15 +86,15 @@ This connector supports the following entities and actions.
|
|
|
90
86
|
|
|
91
87
|
| Entity | Actions |
|
|
92
88
|
|--------|---------|
|
|
93
|
-
| Customers | [List](./REFERENCE.md#customers-list), [Get](./REFERENCE.md#customers-get), [
|
|
94
|
-
| Invoices | [List](./REFERENCE.md#invoices-list), [Get](./REFERENCE.md#invoices-get), [
|
|
95
|
-
| Charges | [List](./REFERENCE.md#charges-list), [Get](./REFERENCE.md#charges-get), [
|
|
96
|
-
| Subscriptions | [List](./REFERENCE.md#subscriptions-list), [Get](./REFERENCE.md#subscriptions-get), [
|
|
97
|
-
| Refunds | [List](./REFERENCE.md#refunds-list), [Get](./REFERENCE.md#refunds-get) |
|
|
98
|
-
| Products | [List](./REFERENCE.md#products-list), [Get](./REFERENCE.md#products-get), [
|
|
89
|
+
| Customers | [List](./REFERENCE.md#customers-list), [Create](./REFERENCE.md#customers-create), [Get](./REFERENCE.md#customers-get), [Update](./REFERENCE.md#customers-update), [Delete](./REFERENCE.md#customers-delete), [Api_search](./REFERENCE.md#customers-api_search) |
|
|
90
|
+
| Invoices | [List](./REFERENCE.md#invoices-list), [Get](./REFERENCE.md#invoices-get), [Api_search](./REFERENCE.md#invoices-api_search) |
|
|
91
|
+
| Charges | [List](./REFERENCE.md#charges-list), [Get](./REFERENCE.md#charges-get), [Api_search](./REFERENCE.md#charges-api_search) |
|
|
92
|
+
| Subscriptions | [List](./REFERENCE.md#subscriptions-list), [Get](./REFERENCE.md#subscriptions-get), [Api_search](./REFERENCE.md#subscriptions-api_search) |
|
|
93
|
+
| Refunds | [List](./REFERENCE.md#refunds-list), [Create](./REFERENCE.md#refunds-create), [Get](./REFERENCE.md#refunds-get) |
|
|
94
|
+
| Products | [List](./REFERENCE.md#products-list), [Create](./REFERENCE.md#products-create), [Get](./REFERENCE.md#products-get), [Update](./REFERENCE.md#products-update), [Delete](./REFERENCE.md#products-delete), [Api_search](./REFERENCE.md#products-api_search) |
|
|
99
95
|
| Balance | [Get](./REFERENCE.md#balance-get) |
|
|
100
96
|
| Balance Transactions | [List](./REFERENCE.md#balance-transactions-list), [Get](./REFERENCE.md#balance-transactions-get) |
|
|
101
|
-
| Payment Intents | [List](./REFERENCE.md#payment-intents-list), [Get](./REFERENCE.md#payment-intents-get), [
|
|
97
|
+
| Payment Intents | [List](./REFERENCE.md#payment-intents-list), [Get](./REFERENCE.md#payment-intents-get), [Api_search](./REFERENCE.md#payment-intents-api_search) |
|
|
102
98
|
| Disputes | [List](./REFERENCE.md#disputes-list), [Get](./REFERENCE.md#disputes-get) |
|
|
103
99
|
| Payouts | [List](./REFERENCE.md#payouts-list), [Get](./REFERENCE.md#payouts-get) |
|
|
104
100
|
|
|
@@ -109,6 +105,6 @@ For the service's official API docs, see the [Stripe API reference](https://docs
|
|
|
109
105
|
|
|
110
106
|
## Version information
|
|
111
107
|
|
|
112
|
-
- **Package version:** 0.5.
|
|
113
|
-
- **Connector version:** 0.1.
|
|
114
|
-
- **Generated with Connector SDK commit SHA:**
|
|
108
|
+
- **Package version:** 0.5.37
|
|
109
|
+
- **Connector version:** 0.1.4
|
|
110
|
+
- **Generated with Connector SDK commit SHA:** 31de238d819ccaf4f96a52e40ea95ab58a546ef5
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
airbyte_agent_stripe/__init__.py,sha256=
|
|
2
|
-
airbyte_agent_stripe/connector.py,sha256=
|
|
3
|
-
airbyte_agent_stripe/connector_model.py,sha256=
|
|
4
|
-
airbyte_agent_stripe/models.py,sha256=
|
|
5
|
-
airbyte_agent_stripe/types.py,sha256=
|
|
1
|
+
airbyte_agent_stripe/__init__.py,sha256=trr4NvvwrGHIgHzOA8vt6TS-Hmh6vT0M-Tb_bJgDqxI,14784
|
|
2
|
+
airbyte_agent_stripe/connector.py,sha256=2Jro-_5cvbvxBdqqP5uJnz-A10-tEYN6s8nLZN2XXlU,66921
|
|
3
|
+
airbyte_agent_stripe/connector_model.py,sha256=VthRGbXkQUrLER3W3P0fUZYcNSJn7rMzSacUfwpUOns,1274220
|
|
4
|
+
airbyte_agent_stripe/models.py,sha256=qdrQ4vvgOt4ycVJnG3MudvjpWVPIyILg3sL3blA9j54,153350
|
|
5
|
+
airbyte_agent_stripe/types.py,sha256=J0TOvBU6ond-lO_Ab-_wTovd0Sa8yOl_PAmFVtKA9Is,9891
|
|
6
6
|
airbyte_agent_stripe/_vendored/__init__.py,sha256=ILl7AHXMui__swyrjxrh9yRa4dLiwBvV6axPWFWty80,38
|
|
7
7
|
airbyte_agent_stripe/_vendored/connector_sdk/__init__.py,sha256=T5o7roU6NSpH-lCAGZ338sE5dlh4ZU6i6IkeG1zpems,1949
|
|
8
8
|
airbyte_agent_stripe/_vendored/connector_sdk/auth_strategies.py,sha256=0BfIISVzuvZTAYZjQFOOhKTpw0QuKDlLQBQ1PQo-V2M,39967
|
|
9
9
|
airbyte_agent_stripe/_vendored/connector_sdk/auth_template.py,sha256=vKnyA21Jp33EuDjkIUAf1PGicwk4t9kZAPJuAgAZKzU,4458
|
|
10
10
|
airbyte_agent_stripe/_vendored/connector_sdk/connector_model_loader.py,sha256=nKrXfe-FAyvNMkW7AqGzxrp5wXdaHiqC0yIFJoIVwlY,34890
|
|
11
|
-
airbyte_agent_stripe/_vendored/connector_sdk/constants.py,sha256=
|
|
11
|
+
airbyte_agent_stripe/_vendored/connector_sdk/constants.py,sha256=AtzOvhDMWbRJgpsQNWl5tkogHD6mWgEY668PgRmgtOY,2737
|
|
12
12
|
airbyte_agent_stripe/_vendored/connector_sdk/exceptions.py,sha256=ss5MGv9eVPmsbLcLWetuu3sDmvturwfo6Pw3M37Oq5k,481
|
|
13
|
-
airbyte_agent_stripe/_vendored/connector_sdk/extensions.py,sha256=
|
|
13
|
+
airbyte_agent_stripe/_vendored/connector_sdk/extensions.py,sha256=Ks4LR1lbJfBoJ-gN6byj7WtFGE1xMuerVTHXGKJcFKk,21391
|
|
14
14
|
airbyte_agent_stripe/_vendored/connector_sdk/http_client.py,sha256=NdccrrBHI5rW56XnXcP54arCwywIVKnMeSQPas6KlOM,27466
|
|
15
|
-
airbyte_agent_stripe/_vendored/connector_sdk/introspection.py,sha256=
|
|
15
|
+
airbyte_agent_stripe/_vendored/connector_sdk/introspection.py,sha256=2CyKXZHT74-1Id97uw1RLeyOi6TV24_hoNbQ6-6y7uI,10335
|
|
16
16
|
airbyte_agent_stripe/_vendored/connector_sdk/secrets.py,sha256=UWcO9fP-vZwcfkAuvlZahlOCTOwdNN860BIwe8X4jxw,6868
|
|
17
|
-
airbyte_agent_stripe/_vendored/connector_sdk/types.py,sha256=
|
|
17
|
+
airbyte_agent_stripe/_vendored/connector_sdk/types.py,sha256=0yY6mF03Dan5W9RNVHIEYlOijxa1j5T28TErjN_kUvQ,8293
|
|
18
18
|
airbyte_agent_stripe/_vendored/connector_sdk/utils.py,sha256=G4LUXOC2HzPoND2v4tQW68R9uuPX9NQyCjaGxb7Kpl0,1958
|
|
19
19
|
airbyte_agent_stripe/_vendored/connector_sdk/validation.py,sha256=CDjCux1eg35a0Y4BegSivzIwZjiTqOxYWotWNLqTSVU,31792
|
|
20
20
|
airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/__init__.py,sha256=4799Hv9f2zxDVj1aLyQ8JpTEuFTp_oOZMRz-NZCdBJg,134
|
|
21
21
|
airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/client.py,sha256=HoDgZuEgGHj78P-BGwUf6HGPVWynbdKjGOmjb-JDk58,7188
|
|
22
22
|
airbyte_agent_stripe/_vendored/connector_sdk/executor/__init__.py,sha256=EmG9YQNAjSuYCVB4D5VoLm4qpD1KfeiiOf7bpALj8p8,702
|
|
23
23
|
airbyte_agent_stripe/_vendored/connector_sdk/executor/hosted_executor.py,sha256=YQ-qfT7PZh9izNFHHe7SAcETiZOKrWjTU-okVb0_VL8,7079
|
|
24
|
-
airbyte_agent_stripe/_vendored/connector_sdk/executor/local_executor.py,sha256=
|
|
24
|
+
airbyte_agent_stripe/_vendored/connector_sdk/executor/local_executor.py,sha256=ODbOLjlHjh_63T8XYGEJLuIz9e8QOZOGVdWFBsWWL44,65283
|
|
25
25
|
airbyte_agent_stripe/_vendored/connector_sdk/executor/models.py,sha256=lYVT_bNcw-PoIks4WHNyl2VY-lJVf2FntzINSOBIheE,5845
|
|
26
26
|
airbyte_agent_stripe/_vendored/connector_sdk/http/__init__.py,sha256=y8fbzZn-3yV9OxtYz8Dy6FFGI5v6TOqADd1G3xHH3Hw,911
|
|
27
27
|
airbyte_agent_stripe/_vendored/connector_sdk/http/config.py,sha256=6J7YIIwHC6sRu9i-yKa5XvArwK2KU60rlnmxzDZq3lw,3283
|
|
@@ -34,9 +34,10 @@ airbyte_agent_stripe/_vendored/connector_sdk/logging/__init__.py,sha256=IZoE5yXh
|
|
|
34
34
|
airbyte_agent_stripe/_vendored/connector_sdk/logging/logger.py,sha256=Nh0h3C0aO-rAqZhDIyeEXG6Jd7yj1Gk32ECMPth0wl8,8118
|
|
35
35
|
airbyte_agent_stripe/_vendored/connector_sdk/logging/types.py,sha256=iI-xLoOg33OUGQOp3CeaxKtHh73WXE-oul6ZCNf3Nzc,3209
|
|
36
36
|
airbyte_agent_stripe/_vendored/connector_sdk/observability/__init__.py,sha256=ojx1n9vaWCXFFvb3-90Pwtg845trFdV2v6wcCoO75Ko,269
|
|
37
|
+
airbyte_agent_stripe/_vendored/connector_sdk/observability/config.py,sha256=GJLzILUc7X6hqwL_Ger6sLAhlrecwV3GcjBJzvmXnqg,5385
|
|
37
38
|
airbyte_agent_stripe/_vendored/connector_sdk/observability/models.py,sha256=rF6-SoAAywqL8bhEv7yCbmr_W_w0vmApO-MCxcHq9RI,473
|
|
38
39
|
airbyte_agent_stripe/_vendored/connector_sdk/observability/redactor.py,sha256=HRbSwGxsfQYbYlG4QBVvv8Qnw0d4SMowMv0dTFHsHqQ,2361
|
|
39
|
-
airbyte_agent_stripe/_vendored/connector_sdk/observability/session.py,sha256=
|
|
40
|
+
airbyte_agent_stripe/_vendored/connector_sdk/observability/session.py,sha256=Q1U6qaH_Uj_eZ9sT6_Wrl27YWd95cxjA7S0GYWUrXkU,2941
|
|
40
41
|
airbyte_agent_stripe/_vendored/connector_sdk/performance/__init__.py,sha256=Sp5fSd1LvtIQkv-fnrKqPsM7-6IWp0sSZSK0mhzal_A,200
|
|
41
42
|
airbyte_agent_stripe/_vendored/connector_sdk/performance/instrumentation.py,sha256=_dXvNiqdndIBwDjeDKNViWzn_M5FkSUsMmJtFldrmsM,1504
|
|
42
43
|
airbyte_agent_stripe/_vendored/connector_sdk/performance/metrics.py,sha256=3-wPwlJyfVLUIG3y7ESxk0avhkILk3z8K7zSrnlZf5U,2833
|
|
@@ -45,12 +46,12 @@ airbyte_agent_stripe/_vendored/connector_sdk/schema/base.py,sha256=eN6YfHwsYNz_0
|
|
|
45
46
|
airbyte_agent_stripe/_vendored/connector_sdk/schema/components.py,sha256=4clYbIJNqfmFj7Te31ZqC3Rr5E2v33BeXyQx1wp3oj0,8076
|
|
46
47
|
airbyte_agent_stripe/_vendored/connector_sdk/schema/connector.py,sha256=VFBOzIkLgYBR1XUTmyrPGqBkX8PP-zsG8avQcdJUqXs,3864
|
|
47
48
|
airbyte_agent_stripe/_vendored/connector_sdk/schema/extensions.py,sha256=LdoCuMLNdCj68O47qAL4v8xmqGz5tJgRiNZL5JnL9uw,3311
|
|
48
|
-
airbyte_agent_stripe/_vendored/connector_sdk/schema/operations.py,sha256=
|
|
49
|
+
airbyte_agent_stripe/_vendored/connector_sdk/schema/operations.py,sha256=HV_4mWya-kvSXOWVGPU1uD4GK3GIWneqETFqy9cnrpM,5829
|
|
49
50
|
airbyte_agent_stripe/_vendored/connector_sdk/schema/security.py,sha256=Xo6Z0-NCryMY4EDZgvg8ABSPglskpXANvm_iI34meV8,8588
|
|
50
51
|
airbyte_agent_stripe/_vendored/connector_sdk/telemetry/__init__.py,sha256=RaLgkBU4dfxn1LC5Y0Q9rr2PJbrwjxvPgBLmq8_WafE,211
|
|
51
52
|
airbyte_agent_stripe/_vendored/connector_sdk/telemetry/config.py,sha256=tLmQwAFD0kP1WyBGWBS3ysaudN9H3e-3EopKZi6cGKg,885
|
|
52
|
-
airbyte_agent_stripe/_vendored/connector_sdk/telemetry/events.py,sha256=
|
|
53
|
-
airbyte_agent_stripe/_vendored/connector_sdk/telemetry/tracker.py,sha256=
|
|
54
|
-
airbyte_agent_stripe-0.5.
|
|
55
|
-
airbyte_agent_stripe-0.5.
|
|
56
|
-
airbyte_agent_stripe-0.5.
|
|
53
|
+
airbyte_agent_stripe/_vendored/connector_sdk/telemetry/events.py,sha256=xUiasLicB818vfGVB108U7noVVDxz35g5vMomRKi0eE,1356
|
|
54
|
+
airbyte_agent_stripe/_vendored/connector_sdk/telemetry/tracker.py,sha256=lURbjZVZSWLluX3OTK_0D8xrc3HAzK9xixtMTOEWnQ4,5439
|
|
55
|
+
airbyte_agent_stripe-0.5.37.dist-info/METADATA,sha256=NcEEwFCnWvHuIYtVKPMWMdugOdAaxZKTjWD6_MY9cMU,4925
|
|
56
|
+
airbyte_agent_stripe-0.5.37.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
57
|
+
airbyte_agent_stripe-0.5.37.dist-info/RECORD,,
|
|
File without changes
|