airbyte-agent-stripe 0.5.21__tar.gz → 0.5.35__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 → airbyte_agent_stripe-0.5.35}/CHANGELOG.md +70 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/PKG-INFO +14 -13
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/README.md +12 -7
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/__init__.py +78 -78
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/connector_model_loader.py +10 -2
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/constants.py +1 -1
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/executor/local_executor.py +90 -20
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/extensions.py +39 -0
- airbyte_agent_stripe-0.5.35/airbyte_agent_stripe/_vendored/connector_sdk/introspection.py +262 -0
- airbyte_agent_stripe-0.5.35/airbyte_agent_stripe/_vendored/connector_sdk/observability/config.py +179 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/observability/session.py +35 -28
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/schema/components.py +2 -1
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/schema/security.py +10 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/telemetry/events.py +2 -1
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/telemetry/tracker.py +3 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/types.py +4 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/connector.py +89 -4
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/connector_model.py +1 -1
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/types.py +1 -1
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/pyproject.toml +2 -6
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/.gitignore +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/REFERENCE.md +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/auth_strategies.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/auth_template.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/client.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/exceptions.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/executor/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/executor/hosted_executor.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/executor/models.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/http/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/http/adapters/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/http/config.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/http/exceptions.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/http/protocols.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/http/response.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/http_client.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/logging/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/logging/logger.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/logging/types.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/observability/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/observability/models.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/observability/redactor.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/performance/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/performance/instrumentation.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/performance/metrics.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/schema/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/schema/base.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/schema/connector.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/schema/extensions.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/schema/operations.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/secrets.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/telemetry/__init__.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/telemetry/config.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/utils.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/_vendored/connector_sdk/validation.py +0 -0
- {airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/models.py +706 -706
|
@@ -1,5 +1,75 @@
|
|
|
1
1
|
# Stripe changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.35] - 2026-01-13
|
|
4
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
5
|
+
- Source commit: e80a226e
|
|
6
|
+
- SDK version: 0.1.0
|
|
7
|
+
|
|
8
|
+
## [0.5.34] - 2026-01-13
|
|
9
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
10
|
+
- Source commit: 78b1be67
|
|
11
|
+
- SDK version: 0.1.0
|
|
12
|
+
|
|
13
|
+
## [0.5.33] - 2026-01-11
|
|
14
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
15
|
+
- Source commit: e519b73d
|
|
16
|
+
- SDK version: 0.1.0
|
|
17
|
+
|
|
18
|
+
## [0.5.32] - 2026-01-09
|
|
19
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
20
|
+
- Source commit: 3c7bfdfd
|
|
21
|
+
- SDK version: 0.1.0
|
|
22
|
+
|
|
23
|
+
## [0.5.31] - 2026-01-09
|
|
24
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
25
|
+
- Source commit: 3bcb33e8
|
|
26
|
+
- SDK version: 0.1.0
|
|
27
|
+
|
|
28
|
+
## [0.5.30] - 2026-01-09
|
|
29
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
30
|
+
- Source commit: da9b741b
|
|
31
|
+
- SDK version: 0.1.0
|
|
32
|
+
|
|
33
|
+
## [0.5.29] - 2026-01-07
|
|
34
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
35
|
+
- Source commit: d023e05f
|
|
36
|
+
- SDK version: 0.1.0
|
|
37
|
+
|
|
38
|
+
## [0.5.28] - 2026-01-06
|
|
39
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
40
|
+
- Source commit: 0580c727
|
|
41
|
+
- SDK version: 0.1.0
|
|
42
|
+
|
|
43
|
+
## [0.5.27] - 2026-01-06
|
|
44
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
45
|
+
- Source commit: e0e2f989
|
|
46
|
+
- SDK version: 0.1.0
|
|
47
|
+
|
|
48
|
+
## [0.5.26] - 2026-01-05
|
|
49
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
50
|
+
- Source commit: 3e274293
|
|
51
|
+
- SDK version: 0.1.0
|
|
52
|
+
|
|
53
|
+
## [0.5.25] - 2025-12-22
|
|
54
|
+
- Updated connector definition (YAML version 0.1.3)
|
|
55
|
+
- Source commit: 0eb1b1c4
|
|
56
|
+
- SDK version: 0.1.0
|
|
57
|
+
|
|
58
|
+
## [0.5.24] - 2025-12-19
|
|
59
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
60
|
+
- Source commit: 12f6b994
|
|
61
|
+
- SDK version: 0.1.0
|
|
62
|
+
|
|
63
|
+
## [0.5.23] - 2025-12-19
|
|
64
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
65
|
+
- Source commit: 5d11bfdf
|
|
66
|
+
- SDK version: 0.1.0
|
|
67
|
+
|
|
68
|
+
## [0.5.22] - 2025-12-19
|
|
69
|
+
- Updated connector definition (YAML version 0.1.2)
|
|
70
|
+
- Source commit: e996e848
|
|
71
|
+
- SDK version: 0.1.0
|
|
72
|
+
|
|
3
73
|
## [0.5.21] - 2025-12-18
|
|
4
74
|
- Updated connector definition (YAML version 0.1.2)
|
|
5
75
|
- Source commit: f7c55d3e
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-stripe
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.35
|
|
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
|
|
@@ -41,12 +37,14 @@ access to customers for payment analytics and customer management.
|
|
|
41
37
|
|
|
42
38
|
## Example questions
|
|
43
39
|
|
|
40
|
+
The Stripe connector is optimized to handle prompts like these.
|
|
41
|
+
|
|
44
42
|
- Show me my top 10 customers by total revenue this month
|
|
45
43
|
- List all customers who have spent over $5,000 in the last quarter
|
|
46
44
|
- Analyze payment trends for my Stripe customers
|
|
47
45
|
- Identify which customers have the most consistent subscription payments
|
|
48
46
|
- Give me insights into my customer retention rates
|
|
49
|
-
- Summarize the payment history for
|
|
47
|
+
- Summarize the payment history for \{customer\}
|
|
50
48
|
- Compare customer spending patterns from last month to this month
|
|
51
49
|
- Show me details about my highest-value Stripe customers
|
|
52
50
|
- What are the key financial insights from my customer base?
|
|
@@ -54,11 +52,13 @@ access to customers for payment analytics and customer management.
|
|
|
54
52
|
|
|
55
53
|
## Unsupported questions
|
|
56
54
|
|
|
55
|
+
The Stripe connector isn't currently able to handle prompts like these.
|
|
56
|
+
|
|
57
57
|
- Create a new customer profile in Stripe
|
|
58
|
-
- Update the billing information for
|
|
58
|
+
- Update the billing information for \{customer\}
|
|
59
59
|
- Delete a customer record
|
|
60
|
-
- Send a payment reminder to
|
|
61
|
-
- Schedule an automatic invoice for
|
|
60
|
+
- Send a payment reminder to \{customer\}
|
|
61
|
+
- Schedule an automatic invoice for \{company\}
|
|
62
62
|
|
|
63
63
|
## Installation
|
|
64
64
|
|
|
@@ -79,6 +79,7 @@ connector = StripeConnector(
|
|
|
79
79
|
result = await connector.customers.list()
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
+
|
|
82
83
|
## Full documentation
|
|
83
84
|
|
|
84
85
|
This connector supports the following entities and actions.
|
|
@@ -104,6 +105,6 @@ For the service's official API docs, see the [Stripe API reference](https://docs
|
|
|
104
105
|
|
|
105
106
|
## Version information
|
|
106
107
|
|
|
107
|
-
- **Package version:** 0.5.
|
|
108
|
-
- **Connector version:** 0.1.
|
|
109
|
-
- **Generated with Connector SDK commit SHA:**
|
|
108
|
+
- **Package version:** 0.5.35
|
|
109
|
+
- **Connector version:** 0.1.3
|
|
110
|
+
- **Generated with Connector SDK commit SHA:** e80a226ece656f93854a8fd7a75aff502dadd2ae
|
|
@@ -7,12 +7,14 @@ access to customers for payment analytics and customer management.
|
|
|
7
7
|
|
|
8
8
|
## Example questions
|
|
9
9
|
|
|
10
|
+
The Stripe connector is optimized to handle prompts like these.
|
|
11
|
+
|
|
10
12
|
- Show me my top 10 customers by total revenue this month
|
|
11
13
|
- List all customers who have spent over $5,000 in the last quarter
|
|
12
14
|
- Analyze payment trends for my Stripe customers
|
|
13
15
|
- Identify which customers have the most consistent subscription payments
|
|
14
16
|
- Give me insights into my customer retention rates
|
|
15
|
-
- Summarize the payment history for
|
|
17
|
+
- Summarize the payment history for \{customer\}
|
|
16
18
|
- Compare customer spending patterns from last month to this month
|
|
17
19
|
- Show me details about my highest-value Stripe customers
|
|
18
20
|
- What are the key financial insights from my customer base?
|
|
@@ -20,11 +22,13 @@ access to customers for payment analytics and customer management.
|
|
|
20
22
|
|
|
21
23
|
## Unsupported questions
|
|
22
24
|
|
|
25
|
+
The Stripe connector isn't currently able to handle prompts like these.
|
|
26
|
+
|
|
23
27
|
- Create a new customer profile in Stripe
|
|
24
|
-
- Update the billing information for
|
|
28
|
+
- Update the billing information for \{customer\}
|
|
25
29
|
- Delete a customer record
|
|
26
|
-
- Send a payment reminder to
|
|
27
|
-
- Schedule an automatic invoice for
|
|
30
|
+
- Send a payment reminder to \{customer\}
|
|
31
|
+
- Schedule an automatic invoice for \{company\}
|
|
28
32
|
|
|
29
33
|
## Installation
|
|
30
34
|
|
|
@@ -45,6 +49,7 @@ connector = StripeConnector(
|
|
|
45
49
|
result = await connector.customers.list()
|
|
46
50
|
```
|
|
47
51
|
|
|
52
|
+
|
|
48
53
|
## Full documentation
|
|
49
54
|
|
|
50
55
|
This connector supports the following entities and actions.
|
|
@@ -70,6 +75,6 @@ For the service's official API docs, see the [Stripe API reference](https://docs
|
|
|
70
75
|
|
|
71
76
|
## Version information
|
|
72
77
|
|
|
73
|
-
- **Package version:** 0.5.
|
|
74
|
-
- **Connector version:** 0.1.
|
|
75
|
-
- **Generated with Connector SDK commit SHA:**
|
|
78
|
+
- **Package version:** 0.5.35
|
|
79
|
+
- **Connector version:** 0.1.3
|
|
80
|
+
- **Generated with Connector SDK commit SHA:** e80a226ece656f93854a8fd7a75aff502dadd2ae
|
{airbyte_agent_stripe-0.5.21 → airbyte_agent_stripe-0.5.35}/airbyte_agent_stripe/__init__.py
RENAMED
|
@@ -7,143 +7,143 @@ Auto-generated from OpenAPI specification.
|
|
|
7
7
|
from .connector import StripeConnector
|
|
8
8
|
from .models import (
|
|
9
9
|
StripeAuthConfig,
|
|
10
|
+
CustomerShippingAddress,
|
|
11
|
+
CustomerShipping,
|
|
12
|
+
CustomerCashBalanceSettings,
|
|
13
|
+
CustomerCashBalance,
|
|
10
14
|
CustomerDiscountSource,
|
|
11
15
|
CustomerDiscount,
|
|
12
|
-
CustomerInvoiceSettingsRenderingOptions,
|
|
13
16
|
CustomerInvoiceSettingsCustomFieldsItem,
|
|
17
|
+
CustomerInvoiceSettingsRenderingOptions,
|
|
14
18
|
CustomerInvoiceSettings,
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
SubscriptionAutomaticTax,
|
|
19
|
+
CustomerAddress,
|
|
20
|
+
SubscriptionDefaultTaxRatesItemFlatAmount,
|
|
21
|
+
SubscriptionDefaultTaxRatesItem,
|
|
19
22
|
SubscriptionCancellationDetails,
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
+
SubscriptionPauseCollection,
|
|
24
|
+
SubscriptionBillingModeFlexible,
|
|
25
|
+
SubscriptionBillingMode,
|
|
23
26
|
SubscriptionItemsDataItemBillingThresholds,
|
|
24
27
|
SubscriptionItemsDataItem,
|
|
25
28
|
SubscriptionItems,
|
|
26
|
-
|
|
27
|
-
|
|
29
|
+
SubscriptionTrialSettingsEndBehavior,
|
|
30
|
+
SubscriptionTrialSettings,
|
|
31
|
+
SubscriptionInvoiceSettingsIssuer,
|
|
32
|
+
SubscriptionInvoiceSettings,
|
|
28
33
|
SubscriptionPaymentSettings,
|
|
34
|
+
SubscriptionBillingThresholds,
|
|
35
|
+
SubscriptionAutomaticTaxLiability,
|
|
36
|
+
SubscriptionAutomaticTax,
|
|
29
37
|
SubscriptionBillingCycleAnchorConfig,
|
|
30
|
-
SubscriptionPauseCollection,
|
|
31
|
-
SubscriptionDefaultTaxRatesItemFlatAmount,
|
|
32
|
-
SubscriptionDefaultTaxRatesItem,
|
|
33
38
|
Subscription,
|
|
34
39
|
CustomerSubscriptions,
|
|
35
|
-
CustomerCashBalanceSettings,
|
|
36
|
-
CustomerCashBalance,
|
|
37
|
-
CustomerAddress,
|
|
38
|
-
CustomerShippingAddress,
|
|
39
|
-
CustomerShipping,
|
|
40
40
|
CustomerSourcesDataItem,
|
|
41
41
|
CustomerSources,
|
|
42
42
|
Customer,
|
|
43
43
|
CustomerList,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
InvoiceFromInvoice,
|
|
44
|
+
InvoiceDiscountCoupon,
|
|
45
|
+
InvoiceDiscount,
|
|
46
|
+
InvoiceThresholdReasonItemReasonsItem,
|
|
47
|
+
InvoiceThresholdReason,
|
|
49
48
|
InvoiceRenderingPdf,
|
|
50
49
|
InvoiceRendering,
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
InvoiceParentQuoteDetails,
|
|
58
|
-
InvoiceParent,
|
|
59
|
-
InvoiceSubscriptionDetails,
|
|
60
|
-
InvoiceTotalTaxAmountsItem,
|
|
61
|
-
InvoiceLinesDataItemPeriod,
|
|
50
|
+
InvoiceDefaultTaxRatesItemFlatAmount,
|
|
51
|
+
InvoiceDefaultTaxRatesItem,
|
|
52
|
+
InvoiceFromInvoice,
|
|
53
|
+
InvoiceCustomerShippingAddress,
|
|
54
|
+
InvoiceCustomerShipping,
|
|
55
|
+
InvoiceIssuer,
|
|
62
56
|
InvoiceLinesDataItemDiscountAmountsItem,
|
|
57
|
+
InvoiceLinesDataItemPeriod,
|
|
63
58
|
InvoiceLinesDataItem,
|
|
64
59
|
InvoiceLines,
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
InvoiceLastFinalizationError,
|
|
60
|
+
InvoiceShippingDetailsAddress,
|
|
61
|
+
InvoiceShippingDetails,
|
|
62
|
+
InvoiceParentQuoteDetails,
|
|
63
|
+
InvoiceParentSubscriptionDetails,
|
|
64
|
+
InvoiceParent,
|
|
71
65
|
InvoiceShippingCostTaxesItem,
|
|
72
66
|
InvoiceShippingCost,
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
InvoiceIssuer,
|
|
78
|
-
InvoiceDiscountCoupon,
|
|
79
|
-
InvoiceDiscount,
|
|
80
|
-
InvoiceTotalTaxesItem,
|
|
67
|
+
InvoiceLastFinalizationError,
|
|
68
|
+
InvoiceTotalTaxAmountsItem,
|
|
69
|
+
InvoiceCustomerTaxIdsItem,
|
|
70
|
+
InvoiceCustomerAddress,
|
|
81
71
|
InvoiceTotalPretaxCreditAmountsItem,
|
|
82
72
|
InvoiceConfirmationSecret,
|
|
73
|
+
InvoiceAutomaticTaxLiability,
|
|
74
|
+
InvoiceAutomaticTax,
|
|
75
|
+
InvoiceTotalTaxesItem,
|
|
76
|
+
InvoiceTotalDiscountAmountsItem,
|
|
77
|
+
InvoiceStatusTransitions,
|
|
78
|
+
InvoiceCustomFieldsItem,
|
|
79
|
+
InvoicePaymentSettings,
|
|
80
|
+
InvoiceSubscriptionDetails,
|
|
81
|
+
InvoicePaymentsDataItem,
|
|
82
|
+
InvoicePayments,
|
|
83
83
|
Invoice,
|
|
84
84
|
InvoiceList,
|
|
85
|
-
ChargePresentmentDetails,
|
|
86
85
|
ChargeBillingDetailsAddress,
|
|
87
86
|
ChargeBillingDetails,
|
|
88
|
-
|
|
87
|
+
ChargePresentmentDetails,
|
|
88
|
+
ChargePaymentMethodDetailsCardOvercapture,
|
|
89
89
|
ChargePaymentMethodDetailsCardMulticapture,
|
|
90
90
|
ChargePaymentMethodDetailsCardExtendedAuthorization,
|
|
91
91
|
ChargePaymentMethodDetailsCardChecks,
|
|
92
|
-
ChargePaymentMethodDetailsCardIncrementalAuthorization,
|
|
93
|
-
ChargePaymentMethodDetailsCardOvercapture,
|
|
94
92
|
ChargePaymentMethodDetailsCardNetworkToken,
|
|
93
|
+
ChargePaymentMethodDetailsCardIncrementalAuthorization,
|
|
95
94
|
ChargePaymentMethodDetailsCard,
|
|
96
95
|
ChargePaymentMethodDetails,
|
|
97
|
-
ChargeRefunds,
|
|
98
96
|
ChargeOutcome,
|
|
97
|
+
ChargeRefunds,
|
|
98
|
+
ChargeFraudDetails,
|
|
99
99
|
Charge,
|
|
100
100
|
ChargeList,
|
|
101
101
|
SubscriptionList,
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
102
|
+
RefundNextActionDisplayDetailsEmailSent,
|
|
103
|
+
RefundNextActionDisplayDetails,
|
|
104
|
+
RefundNextAction,
|
|
105
105
|
RefundDestinationDetailsP24,
|
|
106
|
-
|
|
106
|
+
RefundDestinationDetailsCard,
|
|
107
107
|
RefundDestinationDetailsMxBankTransfer,
|
|
108
|
-
|
|
109
|
-
RefundDestinationDetailsBrBankTransfer,
|
|
110
|
-
RefundDestinationDetailsMbWay,
|
|
108
|
+
RefundDestinationDetailsBlik,
|
|
111
109
|
RefundDestinationDetailsSwish,
|
|
112
|
-
RefundDestinationDetailsThBankTransfer,
|
|
113
|
-
RefundDestinationDetailsCrypto,
|
|
114
|
-
RefundDestinationDetailsJpBankTransfer,
|
|
115
|
-
RefundDestinationDetailsCard,
|
|
116
110
|
RefundDestinationDetailsUsBankTransfer,
|
|
111
|
+
RefundDestinationDetailsMbWay,
|
|
112
|
+
RefundDestinationDetailsJpBankTransfer,
|
|
113
|
+
RefundDestinationDetailsMultibanco,
|
|
114
|
+
RefundDestinationDetailsCrypto,
|
|
115
|
+
RefundDestinationDetailsPaypal,
|
|
116
|
+
RefundDestinationDetailsEuBankTransfer,
|
|
117
|
+
RefundDestinationDetailsThBankTransfer,
|
|
118
|
+
RefundDestinationDetailsBrBankTransfer,
|
|
119
|
+
RefundDestinationDetailsGbBankTransfer,
|
|
117
120
|
RefundDestinationDetails,
|
|
118
|
-
RefundNextActionDisplayDetailsEmailSent,
|
|
119
|
-
RefundNextActionDisplayDetails,
|
|
120
|
-
RefundNextAction,
|
|
121
121
|
Refund,
|
|
122
122
|
RefundList,
|
|
123
|
-
ProductPackageDimensions,
|
|
124
123
|
ProductMarketingFeaturesItem,
|
|
124
|
+
ProductPackageDimensions,
|
|
125
125
|
ProductFeaturesItem,
|
|
126
126
|
Product,
|
|
127
127
|
ProductList,
|
|
128
128
|
ProductSearchResult,
|
|
129
|
-
BalanceIssuingAvailableItemSourceTypes,
|
|
130
|
-
BalanceIssuingAvailableItem,
|
|
131
|
-
BalanceIssuing,
|
|
132
|
-
BalancePendingItemSourceTypes,
|
|
133
|
-
BalancePendingItem,
|
|
134
|
-
BalanceConnectReservedItemSourceTypes,
|
|
135
|
-
BalanceConnectReservedItem,
|
|
136
129
|
BalanceInstantAvailableItemSourceTypes,
|
|
137
130
|
BalanceInstantAvailableItemNetAvailableItemSourceTypes,
|
|
138
131
|
BalanceInstantAvailableItemNetAvailableItem,
|
|
139
132
|
BalanceInstantAvailableItem,
|
|
140
|
-
|
|
141
|
-
|
|
133
|
+
BalancePendingItemSourceTypes,
|
|
134
|
+
BalancePendingItem,
|
|
135
|
+
BalanceIssuingAvailableItemSourceTypes,
|
|
136
|
+
BalanceIssuingAvailableItem,
|
|
137
|
+
BalanceIssuing,
|
|
142
138
|
BalanceRefundAndDisputePrefundingPendingItemSourceTypes,
|
|
143
139
|
BalanceRefundAndDisputePrefundingPendingItem,
|
|
140
|
+
BalanceRefundAndDisputePrefundingAvailableItemSourceTypes,
|
|
141
|
+
BalanceRefundAndDisputePrefundingAvailableItem,
|
|
144
142
|
BalanceRefundAndDisputePrefunding,
|
|
145
143
|
BalanceAvailableItemSourceTypes,
|
|
146
144
|
BalanceAvailableItem,
|
|
145
|
+
BalanceConnectReservedItemSourceTypes,
|
|
146
|
+
BalanceConnectReservedItem,
|
|
147
147
|
Balance,
|
|
148
148
|
BalanceTransactionFeeDetailsItem,
|
|
149
149
|
BalanceTransaction,
|
|
@@ -234,4 +234,4 @@ from .types import (
|
|
|
234
234
|
PayoutsGetParams
|
|
235
235
|
)
|
|
236
236
|
|
|
237
|
-
__all__ = ["StripeConnector", "StripeAuthConfig", "
|
|
237
|
+
__all__ = ["StripeConnector", "StripeAuthConfig", "CustomerShippingAddress", "CustomerShipping", "CustomerCashBalanceSettings", "CustomerCashBalance", "CustomerDiscountSource", "CustomerDiscount", "CustomerInvoiceSettingsCustomFieldsItem", "CustomerInvoiceSettingsRenderingOptions", "CustomerInvoiceSettings", "CustomerAddress", "SubscriptionDefaultTaxRatesItemFlatAmount", "SubscriptionDefaultTaxRatesItem", "SubscriptionCancellationDetails", "SubscriptionPauseCollection", "SubscriptionBillingModeFlexible", "SubscriptionBillingMode", "SubscriptionItemsDataItemBillingThresholds", "SubscriptionItemsDataItem", "SubscriptionItems", "SubscriptionTrialSettingsEndBehavior", "SubscriptionTrialSettings", "SubscriptionInvoiceSettingsIssuer", "SubscriptionInvoiceSettings", "SubscriptionPaymentSettings", "SubscriptionBillingThresholds", "SubscriptionAutomaticTaxLiability", "SubscriptionAutomaticTax", "SubscriptionBillingCycleAnchorConfig", "Subscription", "CustomerSubscriptions", "CustomerSourcesDataItem", "CustomerSources", "Customer", "CustomerList", "InvoiceDiscountCoupon", "InvoiceDiscount", "InvoiceThresholdReasonItemReasonsItem", "InvoiceThresholdReason", "InvoiceRenderingPdf", "InvoiceRendering", "InvoiceDefaultTaxRatesItemFlatAmount", "InvoiceDefaultTaxRatesItem", "InvoiceFromInvoice", "InvoiceCustomerShippingAddress", "InvoiceCustomerShipping", "InvoiceIssuer", "InvoiceLinesDataItemDiscountAmountsItem", "InvoiceLinesDataItemPeriod", "InvoiceLinesDataItem", "InvoiceLines", "InvoiceShippingDetailsAddress", "InvoiceShippingDetails", "InvoiceParentQuoteDetails", "InvoiceParentSubscriptionDetails", "InvoiceParent", "InvoiceShippingCostTaxesItem", "InvoiceShippingCost", "InvoiceLastFinalizationError", "InvoiceTotalTaxAmountsItem", "InvoiceCustomerTaxIdsItem", "InvoiceCustomerAddress", "InvoiceTotalPretaxCreditAmountsItem", "InvoiceConfirmationSecret", "InvoiceAutomaticTaxLiability", "InvoiceAutomaticTax", "InvoiceTotalTaxesItem", "InvoiceTotalDiscountAmountsItem", "InvoiceStatusTransitions", "InvoiceCustomFieldsItem", "InvoicePaymentSettings", "InvoiceSubscriptionDetails", "InvoicePaymentsDataItem", "InvoicePayments", "Invoice", "InvoiceList", "ChargeBillingDetailsAddress", "ChargeBillingDetails", "ChargePresentmentDetails", "ChargePaymentMethodDetailsCardOvercapture", "ChargePaymentMethodDetailsCardMulticapture", "ChargePaymentMethodDetailsCardExtendedAuthorization", "ChargePaymentMethodDetailsCardChecks", "ChargePaymentMethodDetailsCardNetworkToken", "ChargePaymentMethodDetailsCardIncrementalAuthorization", "ChargePaymentMethodDetailsCard", "ChargePaymentMethodDetails", "ChargeOutcome", "ChargeRefunds", "ChargeFraudDetails", "Charge", "ChargeList", "SubscriptionList", "RefundNextActionDisplayDetailsEmailSent", "RefundNextActionDisplayDetails", "RefundNextAction", "RefundDestinationDetailsP24", "RefundDestinationDetailsCard", "RefundDestinationDetailsMxBankTransfer", "RefundDestinationDetailsBlik", "RefundDestinationDetailsSwish", "RefundDestinationDetailsUsBankTransfer", "RefundDestinationDetailsMbWay", "RefundDestinationDetailsJpBankTransfer", "RefundDestinationDetailsMultibanco", "RefundDestinationDetailsCrypto", "RefundDestinationDetailsPaypal", "RefundDestinationDetailsEuBankTransfer", "RefundDestinationDetailsThBankTransfer", "RefundDestinationDetailsBrBankTransfer", "RefundDestinationDetailsGbBankTransfer", "RefundDestinationDetails", "Refund", "RefundList", "ProductMarketingFeaturesItem", "ProductPackageDimensions", "ProductFeaturesItem", "Product", "ProductList", "ProductSearchResult", "BalanceInstantAvailableItemSourceTypes", "BalanceInstantAvailableItemNetAvailableItemSourceTypes", "BalanceInstantAvailableItemNetAvailableItem", "BalanceInstantAvailableItem", "BalancePendingItemSourceTypes", "BalancePendingItem", "BalanceIssuingAvailableItemSourceTypes", "BalanceIssuingAvailableItem", "BalanceIssuing", "BalanceRefundAndDisputePrefundingPendingItemSourceTypes", "BalanceRefundAndDisputePrefundingPendingItem", "BalanceRefundAndDisputePrefundingAvailableItemSourceTypes", "BalanceRefundAndDisputePrefundingAvailableItem", "BalanceRefundAndDisputePrefunding", "BalanceAvailableItemSourceTypes", "BalanceAvailableItem", "BalanceConnectReservedItemSourceTypes", "BalanceConnectReservedItem", "Balance", "BalanceTransactionFeeDetailsItem", "BalanceTransaction", "BalanceTransactionList", "PaymentIntent", "PaymentIntentList", "PaymentIntentSearchResult", "DisputeEvidenceDetails", "Dispute", "DisputeList", "PayoutTraceId", "Payout", "PayoutList", "CustomerSearchResult", "InvoiceSearchResult", "ChargeSearchResult", "SubscriptionSearchResult", "CustomersListResultMeta", "CustomersSearchResultMeta", "InvoicesListResultMeta", "ChargesListResultMeta", "SubscriptionsListResultMeta", "RefundsListResultMeta", "ProductsListResultMeta", "ProductsSearchResultMeta", "BalanceTransactionsListResultMeta", "PaymentIntentsListResultMeta", "PaymentIntentsSearchResultMeta", "DisputesListResultMeta", "PayoutsListResultMeta", "StripeExecuteResult", "StripeExecuteResultWithMeta", "CustomersListResult", "CustomersSearchResult", "InvoicesListResult", "ChargesListResult", "SubscriptionsListResult", "RefundsListResult", "ProductsListResult", "ProductsSearchResult", "BalanceTransactionsListResult", "PaymentIntentsListResult", "PaymentIntentsSearchResult", "DisputesListResult", "PayoutsListResult", "CustomersListParamsCreated", "InvoicesListParamsCreated", "ChargesListParamsCreated", "SubscriptionsListParamsAutomaticTax", "SubscriptionsListParamsCreated", "SubscriptionsListParamsCurrentPeriodEnd", "SubscriptionsListParamsCurrentPeriodStart", "RefundsListParamsCreated", "ProductsListParamsCreated", "BalanceTransactionsListParamsCreated", "PaymentIntentsListParamsCreated", "DisputesListParamsCreated", "PayoutsListParamsArrivalDate", "PayoutsListParamsCreated", "CustomersListParams", "CustomersGetParams", "CustomersSearchParams", "InvoicesListParams", "InvoicesGetParams", "InvoicesSearchParams", "ChargesListParams", "ChargesGetParams", "ChargesSearchParams", "SubscriptionsListParams", "SubscriptionsGetParams", "SubscriptionsSearchParams", "RefundsListParams", "RefundsGetParams", "ProductsListParams", "ProductsGetParams", "ProductsSearchParams", "BalanceGetParams", "BalanceTransactionsListParams", "BalanceTransactionsGetParams", "PaymentIntentsListParams", "PaymentIntentsGetParams", "PaymentIntentsSearchParams", "DisputesListParams", "DisputesGetParams", "PayoutsListParams", "PayoutsGetParams"]
|
|
@@ -393,16 +393,24 @@ def convert_openapi_to_connector_model(spec: OpenAPIConnector) -> ConnectorModel
|
|
|
393
393
|
for entity_name, endpoints_dict in entities_map.items():
|
|
394
394
|
actions = list(endpoints_dict.keys())
|
|
395
395
|
|
|
396
|
-
# Get schema from components if available
|
|
396
|
+
# Get schema and stream_name from components if available
|
|
397
397
|
schema = None
|
|
398
|
+
entity_stream_name = None
|
|
398
399
|
if spec.components:
|
|
399
400
|
# Look for a schema matching the entity name
|
|
400
401
|
for schema_name, schema_def in spec.components.schemas.items():
|
|
401
402
|
if schema_def.x_airbyte_entity_name == entity_name or schema_name.lower() == entity_name.lower():
|
|
402
403
|
schema = schema_def.model_dump(by_alias=True)
|
|
404
|
+
entity_stream_name = schema_def.x_airbyte_stream_name
|
|
403
405
|
break
|
|
404
406
|
|
|
405
|
-
entity = EntityDefinition(
|
|
407
|
+
entity = EntityDefinition(
|
|
408
|
+
name=entity_name,
|
|
409
|
+
stream_name=entity_stream_name,
|
|
410
|
+
actions=actions,
|
|
411
|
+
endpoints=endpoints_dict,
|
|
412
|
+
schema=schema,
|
|
413
|
+
)
|
|
406
414
|
entities.append(entity)
|
|
407
415
|
|
|
408
416
|
# Extract retry config from x-airbyte-retry-config extension
|