airbyte-agent-stripe 0.5.21__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.
- airbyte_agent_stripe-0.5.21/.gitignore +29 -0
- airbyte_agent_stripe-0.5.21/CHANGELOG.md +249 -0
- airbyte_agent_stripe-0.5.21/PKG-INFO +109 -0
- airbyte_agent_stripe-0.5.21/README.md +75 -0
- airbyte_agent_stripe-0.5.21/REFERENCE.md +2438 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/__init__.py +237 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/__init__.py +1 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/auth_strategies.py +1123 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/client.py +213 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/connector_model_loader.py +957 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/executor/hosted_executor.py +197 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/executor/local_executor.py +1504 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/extensions.py +655 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/http/response.py +102 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/http_client.py +686 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/logging/logger.py +264 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/logging/types.py +92 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/observability/session.py +94 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/schema/base.py +161 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/schema/components.py +238 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/schema/connector.py +131 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/schema/extensions.py +109 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/schema/security.py +213 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/telemetry/events.py +58 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/telemetry/tracker.py +151 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/types.py +241 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/_vendored/connector_sdk/validation.py +822 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/connector.py +1579 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/connector_model.py +14869 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/models.py +2353 -0
- airbyte_agent_stripe-0.5.21/airbyte_agent_stripe/types.py +295 -0
- airbyte_agent_stripe-0.5.21/pyproject.toml +51 -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,249 @@
|
|
|
1
|
+
# Stripe changelog
|
|
2
|
+
|
|
3
|
+
## [0.5.21] - 2025-12-18
|
|
4
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
5
|
+
- Source commit: f7c55d3e
|
|
6
|
+
- SDK version: 0.1.0
|
|
7
|
+
|
|
8
|
+
## [0.5.20] - 2025-12-17
|
|
9
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
10
|
+
- Source commit: af456521
|
|
11
|
+
- SDK version: 0.1.0
|
|
12
|
+
|
|
13
|
+
## [0.5.19] - 2025-12-17
|
|
14
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
15
|
+
- Source commit: 6a6c981e
|
|
16
|
+
- SDK version: 0.1.0
|
|
17
|
+
|
|
18
|
+
## [0.5.18] - 2025-12-15
|
|
19
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
20
|
+
- Source commit: c4c39c27
|
|
21
|
+
- SDK version: 0.1.0
|
|
22
|
+
|
|
23
|
+
## [0.5.17] - 2025-12-15
|
|
24
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
25
|
+
- Source commit: 85f4e6b0
|
|
26
|
+
- SDK version: 0.1.0
|
|
27
|
+
|
|
28
|
+
## [0.5.16] - 2025-12-15
|
|
29
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
30
|
+
- Source commit: 0bfa6500
|
|
31
|
+
- SDK version: 0.1.0
|
|
32
|
+
|
|
33
|
+
## [0.5.15] - 2025-12-15
|
|
34
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
35
|
+
- Source commit: ea5a02a3
|
|
36
|
+
- SDK version: 0.1.0
|
|
37
|
+
|
|
38
|
+
## [0.5.14] - 2025-12-15
|
|
39
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
40
|
+
- Source commit: f13dee0a
|
|
41
|
+
- SDK version: 0.1.0
|
|
42
|
+
|
|
43
|
+
## [0.5.13] - 2025-12-15
|
|
44
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
45
|
+
- Source commit: d79da1e7
|
|
46
|
+
- SDK version: 0.1.0
|
|
47
|
+
|
|
48
|
+
## [0.5.12] - 2025-12-15
|
|
49
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
50
|
+
- Source commit: 06e7d5c6
|
|
51
|
+
- SDK version: 0.1.0
|
|
52
|
+
|
|
53
|
+
## [0.5.11] - 2025-12-13
|
|
54
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
55
|
+
- Source commit: 1ab72bd8
|
|
56
|
+
- SDK version: 0.1.0
|
|
57
|
+
|
|
58
|
+
## [0.5.10] - 2025-12-12
|
|
59
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
60
|
+
- Source commit: c17d44a8
|
|
61
|
+
- SDK version: 0.1.0
|
|
62
|
+
|
|
63
|
+
## [0.5.9] - 2025-12-12
|
|
64
|
+
- Updated connector definition (YAML version 0.1.1)
|
|
65
|
+
- Source commit: 4d366cb5
|
|
66
|
+
- SDK version: 0.1.0
|
|
67
|
+
|
|
68
|
+
## [0.5.8] - 2025-12-12
|
|
69
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
70
|
+
- Source commit: dc79dc8b
|
|
71
|
+
- SDK version: 0.1.0
|
|
72
|
+
|
|
73
|
+
## [0.5.7] - 2025-12-12
|
|
74
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
75
|
+
- Source commit: 9f7f8a98
|
|
76
|
+
- SDK version: 0.1.0
|
|
77
|
+
|
|
78
|
+
## [0.5.6] - 2025-12-11
|
|
79
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
80
|
+
- Source commit: 8c06aa10
|
|
81
|
+
- SDK version: 0.1.0
|
|
82
|
+
|
|
83
|
+
## [0.5.5] - 2025-12-11
|
|
84
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
85
|
+
- Source commit: 11427ac3
|
|
86
|
+
- SDK version: 0.1.0
|
|
87
|
+
|
|
88
|
+
## [0.5.4] - 2025-12-11
|
|
89
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
90
|
+
- Source commit: bdd5df6d
|
|
91
|
+
- SDK version: 0.1.0
|
|
92
|
+
|
|
93
|
+
## [0.5.3] - 2025-12-11
|
|
94
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
95
|
+
- Source commit: f2497f71
|
|
96
|
+
- SDK version: 0.1.0
|
|
97
|
+
|
|
98
|
+
## [0.5.2] - 2025-12-11
|
|
99
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
100
|
+
- Source commit: 7d738be5
|
|
101
|
+
- SDK version: 0.1.0
|
|
102
|
+
|
|
103
|
+
## [0.5.1] - 2025-12-10
|
|
104
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
105
|
+
- Source commit: 76636830
|
|
106
|
+
- SDK version: 0.1.0
|
|
107
|
+
|
|
108
|
+
## [0.5.0] - 2025-12-08
|
|
109
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
110
|
+
- Source commit: f2ad5029
|
|
111
|
+
- SDK version: 0.1.0
|
|
112
|
+
|
|
113
|
+
## [0.4.0] - 2025-12-08
|
|
114
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
115
|
+
- Source commit: 139b0b0d
|
|
116
|
+
- SDK version: 0.1.0
|
|
117
|
+
|
|
118
|
+
## [0.3.0] - 2025-12-05
|
|
119
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
120
|
+
- Source commit: e96bed3d
|
|
121
|
+
- SDK version: 0.1.0
|
|
122
|
+
|
|
123
|
+
## [0.2.0] - 2025-12-05
|
|
124
|
+
- Updated connector definition (YAML version 0.1.0)
|
|
125
|
+
- Source commit: ed697b90
|
|
126
|
+
- SDK version: 0.1.0
|
|
127
|
+
|
|
128
|
+
## [0.1.23] - 2025-12-05
|
|
129
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
130
|
+
- Source commit: 20618410
|
|
131
|
+
- SDK version: 0.1.0
|
|
132
|
+
|
|
133
|
+
## [0.1.22] - 2025-12-04
|
|
134
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
135
|
+
- Source commit: 4a01e446
|
|
136
|
+
- SDK version: 0.1.0
|
|
137
|
+
|
|
138
|
+
## [0.1.21] - 2025-12-04
|
|
139
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
140
|
+
- Source commit: 5ec76dde
|
|
141
|
+
- SDK version: 0.1.0
|
|
142
|
+
|
|
143
|
+
## [0.1.20] - 2025-12-04
|
|
144
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
145
|
+
- Source commit: df32a458
|
|
146
|
+
- SDK version: 0.1.0
|
|
147
|
+
|
|
148
|
+
## [0.1.19] - 2025-12-04
|
|
149
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
150
|
+
- Source commit: a506b369
|
|
151
|
+
- SDK version: 0.1.0
|
|
152
|
+
|
|
153
|
+
## [0.1.18] - 2025-12-03
|
|
154
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
155
|
+
- Source commit: 92a39ab5
|
|
156
|
+
- SDK version: 0.1.0
|
|
157
|
+
|
|
158
|
+
## [0.1.17] - 2025-12-03
|
|
159
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
160
|
+
- Source commit: 0ce38253
|
|
161
|
+
- SDK version: 0.1.0
|
|
162
|
+
|
|
163
|
+
## [0.1.16] - 2025-12-02
|
|
164
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
165
|
+
- Source commit: c8e326d9
|
|
166
|
+
- SDK version: 0.1.0
|
|
167
|
+
|
|
168
|
+
## [0.1.15] - 2025-12-02
|
|
169
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
170
|
+
- Source commit: ad0b961b
|
|
171
|
+
- SDK version: 0.1.0
|
|
172
|
+
|
|
173
|
+
## [0.1.14] - 2025-12-02
|
|
174
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
175
|
+
- Source commit: 7153780a
|
|
176
|
+
- SDK version: 0.1.0
|
|
177
|
+
|
|
178
|
+
## [0.1.13] - 2025-12-02
|
|
179
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
180
|
+
- Source commit: 01f71cad
|
|
181
|
+
- SDK version: 0.1.0
|
|
182
|
+
|
|
183
|
+
## [0.1.12] - 2025-12-02
|
|
184
|
+
- Updated connector definition (YAML version 0.0.4)
|
|
185
|
+
- Source commit: 236db7f0
|
|
186
|
+
- SDK version: 0.1.0
|
|
187
|
+
|
|
188
|
+
## [0.1.11] - 2025-12-02
|
|
189
|
+
- Updated connector definition (YAML version 0.0.3)
|
|
190
|
+
- Source commit: 4c17f060
|
|
191
|
+
- SDK version: 0.1.0
|
|
192
|
+
|
|
193
|
+
## [0.1.10] - 2025-12-02
|
|
194
|
+
- Updated connector definition (YAML version 0.0.3)
|
|
195
|
+
- Source commit: cd499acd
|
|
196
|
+
- SDK version: 0.1.0
|
|
197
|
+
|
|
198
|
+
## [0.1.9] - 2025-12-02
|
|
199
|
+
- Updated connector definition (YAML version 0.0.3)
|
|
200
|
+
- Source commit: 64df6a87
|
|
201
|
+
- SDK version: 0.1.0
|
|
202
|
+
|
|
203
|
+
## [0.1.8] - 2025-12-02
|
|
204
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
205
|
+
- Source commit: f34b246f
|
|
206
|
+
- SDK version: 0.1.0
|
|
207
|
+
|
|
208
|
+
## [0.1.7] - 2025-12-02
|
|
209
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
210
|
+
- Source commit: b261c3a2
|
|
211
|
+
- SDK version: 0.1.0
|
|
212
|
+
|
|
213
|
+
## [0.1.6] - 2025-11-27
|
|
214
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
215
|
+
- Source commit: 702fd446
|
|
216
|
+
- SDK version: 0.1.0
|
|
217
|
+
|
|
218
|
+
## [0.1.5] - 2025-11-27
|
|
219
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
220
|
+
- Source commit: d656a4a2
|
|
221
|
+
- SDK version: 0.1.0
|
|
222
|
+
|
|
223
|
+
## [0.1.4] - 2025-11-27
|
|
224
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
225
|
+
- Source commit: 9afac212
|
|
226
|
+
- SDK version: 0.1.0
|
|
227
|
+
|
|
228
|
+
## [0.1.3] - 2025-11-27
|
|
229
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
230
|
+
- Source commit: 9afac212
|
|
231
|
+
- SDK version: 0.1.0
|
|
232
|
+
|
|
233
|
+
## [0.1.2] - 2025-11-27
|
|
234
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
235
|
+
- Source commit: c1700e5e
|
|
236
|
+
- SDK version: 0.1.0
|
|
237
|
+
- YAML version: 0.0.1
|
|
238
|
+
|
|
239
|
+
## [0.1.1] - 2025-11-26
|
|
240
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
241
|
+
- Source commit: 5a3bf104
|
|
242
|
+
- SDK version: 0.1.0
|
|
243
|
+
- YAML version: 0.0.1
|
|
244
|
+
|
|
245
|
+
## [0.1.0] - 2025-11-26
|
|
246
|
+
- Updated connector definition (YAML version 0.0.1)
|
|
247
|
+
- Source commit: 5a3bf104
|
|
248
|
+
- SDK version: 0.1.0
|
|
249
|
+
- YAML version: 0.0.1
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: airbyte-agent-stripe
|
|
3
|
+
Version: 0.5.21
|
|
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 [customerX]
|
|
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 [customerX]
|
|
59
|
+
- Delete a customer record
|
|
60
|
+
- Send a payment reminder to [customerX]
|
|
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
|
+
## Full documentation
|
|
83
|
+
|
|
84
|
+
This connector supports the following entities and actions.
|
|
85
|
+
|
|
86
|
+
| Entity | Actions |
|
|
87
|
+
|--------|---------|
|
|
88
|
+
| Customers | [List](./REFERENCE.md#customers-list), [Get](./REFERENCE.md#customers-get), [Search](./REFERENCE.md#customers-search) |
|
|
89
|
+
| Invoices | [List](./REFERENCE.md#invoices-list), [Get](./REFERENCE.md#invoices-get), [Search](./REFERENCE.md#invoices-search) |
|
|
90
|
+
| Charges | [List](./REFERENCE.md#charges-list), [Get](./REFERENCE.md#charges-get), [Search](./REFERENCE.md#charges-search) |
|
|
91
|
+
| Subscriptions | [List](./REFERENCE.md#subscriptions-list), [Get](./REFERENCE.md#subscriptions-get), [Search](./REFERENCE.md#subscriptions-search) |
|
|
92
|
+
| Refunds | [List](./REFERENCE.md#refunds-list), [Get](./REFERENCE.md#refunds-get) |
|
|
93
|
+
| Products | [List](./REFERENCE.md#products-list), [Get](./REFERENCE.md#products-get), [Search](./REFERENCE.md#products-search) |
|
|
94
|
+
| Balance | [Get](./REFERENCE.md#balance-get) |
|
|
95
|
+
| Balance Transactions | [List](./REFERENCE.md#balance-transactions-list), [Get](./REFERENCE.md#balance-transactions-get) |
|
|
96
|
+
| Payment Intents | [List](./REFERENCE.md#payment-intents-list), [Get](./REFERENCE.md#payment-intents-get), [Search](./REFERENCE.md#payment-intents-search) |
|
|
97
|
+
| Disputes | [List](./REFERENCE.md#disputes-list), [Get](./REFERENCE.md#disputes-get) |
|
|
98
|
+
| Payouts | [List](./REFERENCE.md#payouts-list), [Get](./REFERENCE.md#payouts-get) |
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
102
|
+
|
|
103
|
+
For the service's official API docs, see the [Stripe API reference](https://docs.stripe.com/api).
|
|
104
|
+
|
|
105
|
+
## Version information
|
|
106
|
+
|
|
107
|
+
- **Package version:** 0.5.21
|
|
108
|
+
- **Connector version:** 0.1.2
|
|
109
|
+
- **Generated with Connector SDK commit SHA:** f7c55d3e3cdc7568cab2da9d736285eec58f044b
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# Stripe agent connector
|
|
2
|
+
|
|
3
|
+
Stripe is a payment processing platform that enables businesses to accept payments,
|
|
4
|
+
manage subscriptions, and handle financial transactions. This connector provides
|
|
5
|
+
access to customers for payment analytics and customer management.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Example questions
|
|
9
|
+
|
|
10
|
+
- Show me my top 10 customers by total revenue this month
|
|
11
|
+
- List all customers who have spent over $5,000 in the last quarter
|
|
12
|
+
- Analyze payment trends for my Stripe customers
|
|
13
|
+
- Identify which customers have the most consistent subscription payments
|
|
14
|
+
- Give me insights into my customer retention rates
|
|
15
|
+
- Summarize the payment history for [customerX]
|
|
16
|
+
- Compare customer spending patterns from last month to this month
|
|
17
|
+
- Show me details about my highest-value Stripe customers
|
|
18
|
+
- What are the key financial insights from my customer base?
|
|
19
|
+
- Break down my customers by their average transaction value
|
|
20
|
+
|
|
21
|
+
## Unsupported questions
|
|
22
|
+
|
|
23
|
+
- Create a new customer profile in Stripe
|
|
24
|
+
- Update the billing information for [customerX]
|
|
25
|
+
- Delete a customer record
|
|
26
|
+
- Send a payment reminder to [customerX]
|
|
27
|
+
- Schedule an automatic invoice for [Company]
|
|
28
|
+
|
|
29
|
+
## Installation
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
uv pip install airbyte-agent-stripe
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Usage
|
|
36
|
+
|
|
37
|
+
```python
|
|
38
|
+
from airbyte_agent_stripe import StripeConnector, StripeAuthConfig
|
|
39
|
+
|
|
40
|
+
connector = StripeConnector(
|
|
41
|
+
auth_config=StripeAuthConfig(
|
|
42
|
+
api_key="..."
|
|
43
|
+
)
|
|
44
|
+
)
|
|
45
|
+
result = await connector.customers.list()
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Full documentation
|
|
49
|
+
|
|
50
|
+
This connector supports the following entities and actions.
|
|
51
|
+
|
|
52
|
+
| Entity | Actions |
|
|
53
|
+
|--------|---------|
|
|
54
|
+
| Customers | [List](./REFERENCE.md#customers-list), [Get](./REFERENCE.md#customers-get), [Search](./REFERENCE.md#customers-search) |
|
|
55
|
+
| Invoices | [List](./REFERENCE.md#invoices-list), [Get](./REFERENCE.md#invoices-get), [Search](./REFERENCE.md#invoices-search) |
|
|
56
|
+
| Charges | [List](./REFERENCE.md#charges-list), [Get](./REFERENCE.md#charges-get), [Search](./REFERENCE.md#charges-search) |
|
|
57
|
+
| Subscriptions | [List](./REFERENCE.md#subscriptions-list), [Get](./REFERENCE.md#subscriptions-get), [Search](./REFERENCE.md#subscriptions-search) |
|
|
58
|
+
| Refunds | [List](./REFERENCE.md#refunds-list), [Get](./REFERENCE.md#refunds-get) |
|
|
59
|
+
| Products | [List](./REFERENCE.md#products-list), [Get](./REFERENCE.md#products-get), [Search](./REFERENCE.md#products-search) |
|
|
60
|
+
| Balance | [Get](./REFERENCE.md#balance-get) |
|
|
61
|
+
| Balance Transactions | [List](./REFERENCE.md#balance-transactions-list), [Get](./REFERENCE.md#balance-transactions-get) |
|
|
62
|
+
| Payment Intents | [List](./REFERENCE.md#payment-intents-list), [Get](./REFERENCE.md#payment-intents-get), [Search](./REFERENCE.md#payment-intents-search) |
|
|
63
|
+
| Disputes | [List](./REFERENCE.md#disputes-list), [Get](./REFERENCE.md#disputes-get) |
|
|
64
|
+
| Payouts | [List](./REFERENCE.md#payouts-list), [Get](./REFERENCE.md#payouts-get) |
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
68
|
+
|
|
69
|
+
For the service's official API docs, see the [Stripe API reference](https://docs.stripe.com/api).
|
|
70
|
+
|
|
71
|
+
## Version information
|
|
72
|
+
|
|
73
|
+
- **Package version:** 0.5.21
|
|
74
|
+
- **Connector version:** 0.1.2
|
|
75
|
+
- **Generated with Connector SDK commit SHA:** f7c55d3e3cdc7568cab2da9d736285eec58f044b
|