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.
- airbyte_agent_stripe/__init__.py +237 -0
- airbyte_agent_stripe/_vendored/__init__.py +1 -0
- airbyte_agent_stripe/_vendored/connector_sdk/__init__.py +82 -0
- airbyte_agent_stripe/_vendored/connector_sdk/auth_strategies.py +1123 -0
- airbyte_agent_stripe/_vendored/connector_sdk/auth_template.py +135 -0
- airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/__init__.py +5 -0
- airbyte_agent_stripe/_vendored/connector_sdk/cloud_utils/client.py +213 -0
- airbyte_agent_stripe/_vendored/connector_sdk/connector_model_loader.py +957 -0
- airbyte_agent_stripe/_vendored/connector_sdk/constants.py +78 -0
- airbyte_agent_stripe/_vendored/connector_sdk/exceptions.py +23 -0
- airbyte_agent_stripe/_vendored/connector_sdk/executor/__init__.py +31 -0
- airbyte_agent_stripe/_vendored/connector_sdk/executor/hosted_executor.py +197 -0
- airbyte_agent_stripe/_vendored/connector_sdk/executor/local_executor.py +1504 -0
- airbyte_agent_stripe/_vendored/connector_sdk/executor/models.py +190 -0
- airbyte_agent_stripe/_vendored/connector_sdk/extensions.py +655 -0
- airbyte_agent_stripe/_vendored/connector_sdk/http/__init__.py +37 -0
- airbyte_agent_stripe/_vendored/connector_sdk/http/adapters/__init__.py +9 -0
- airbyte_agent_stripe/_vendored/connector_sdk/http/adapters/httpx_adapter.py +251 -0
- airbyte_agent_stripe/_vendored/connector_sdk/http/config.py +98 -0
- airbyte_agent_stripe/_vendored/connector_sdk/http/exceptions.py +119 -0
- airbyte_agent_stripe/_vendored/connector_sdk/http/protocols.py +114 -0
- airbyte_agent_stripe/_vendored/connector_sdk/http/response.py +102 -0
- airbyte_agent_stripe/_vendored/connector_sdk/http_client.py +686 -0
- airbyte_agent_stripe/_vendored/connector_sdk/logging/__init__.py +11 -0
- airbyte_agent_stripe/_vendored/connector_sdk/logging/logger.py +264 -0
- airbyte_agent_stripe/_vendored/connector_sdk/logging/types.py +92 -0
- airbyte_agent_stripe/_vendored/connector_sdk/observability/__init__.py +11 -0
- airbyte_agent_stripe/_vendored/connector_sdk/observability/models.py +19 -0
- airbyte_agent_stripe/_vendored/connector_sdk/observability/redactor.py +81 -0
- airbyte_agent_stripe/_vendored/connector_sdk/observability/session.py +94 -0
- airbyte_agent_stripe/_vendored/connector_sdk/performance/__init__.py +6 -0
- airbyte_agent_stripe/_vendored/connector_sdk/performance/instrumentation.py +57 -0
- airbyte_agent_stripe/_vendored/connector_sdk/performance/metrics.py +93 -0
- airbyte_agent_stripe/_vendored/connector_sdk/schema/__init__.py +75 -0
- airbyte_agent_stripe/_vendored/connector_sdk/schema/base.py +161 -0
- airbyte_agent_stripe/_vendored/connector_sdk/schema/components.py +238 -0
- airbyte_agent_stripe/_vendored/connector_sdk/schema/connector.py +131 -0
- airbyte_agent_stripe/_vendored/connector_sdk/schema/extensions.py +109 -0
- airbyte_agent_stripe/_vendored/connector_sdk/schema/operations.py +146 -0
- airbyte_agent_stripe/_vendored/connector_sdk/schema/security.py +213 -0
- airbyte_agent_stripe/_vendored/connector_sdk/secrets.py +182 -0
- airbyte_agent_stripe/_vendored/connector_sdk/telemetry/__init__.py +10 -0
- airbyte_agent_stripe/_vendored/connector_sdk/telemetry/config.py +32 -0
- airbyte_agent_stripe/_vendored/connector_sdk/telemetry/events.py +58 -0
- airbyte_agent_stripe/_vendored/connector_sdk/telemetry/tracker.py +151 -0
- airbyte_agent_stripe/_vendored/connector_sdk/types.py +241 -0
- airbyte_agent_stripe/_vendored/connector_sdk/utils.py +60 -0
- airbyte_agent_stripe/_vendored/connector_sdk/validation.py +822 -0
- airbyte_agent_stripe/connector.py +1579 -0
- airbyte_agent_stripe/connector_model.py +14869 -0
- airbyte_agent_stripe/models.py +2353 -0
- airbyte_agent_stripe/types.py +295 -0
- airbyte_agent_stripe-0.5.25.dist-info/METADATA +110 -0
- airbyte_agent_stripe-0.5.25.dist-info/RECORD +55 -0
- airbyte_agent_stripe-0.5.25.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Blessed Stripe connector for Airbyte SDK.
|
|
3
|
+
|
|
4
|
+
Auto-generated from OpenAPI specification.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from .connector import StripeConnector
|
|
8
|
+
from .models import (
|
|
9
|
+
StripeAuthConfig,
|
|
10
|
+
CustomerInvoiceSettingsCustomFieldsItem,
|
|
11
|
+
CustomerInvoiceSettingsRenderingOptions,
|
|
12
|
+
CustomerInvoiceSettings,
|
|
13
|
+
CustomerCashBalanceSettings,
|
|
14
|
+
CustomerCashBalance,
|
|
15
|
+
SubscriptionPauseCollection,
|
|
16
|
+
SubscriptionAutomaticTaxLiability,
|
|
17
|
+
SubscriptionAutomaticTax,
|
|
18
|
+
SubscriptionTrialSettingsEndBehavior,
|
|
19
|
+
SubscriptionTrialSettings,
|
|
20
|
+
SubscriptionBillingCycleAnchorConfig,
|
|
21
|
+
SubscriptionDefaultTaxRatesItemFlatAmount,
|
|
22
|
+
SubscriptionDefaultTaxRatesItem,
|
|
23
|
+
SubscriptionInvoiceSettingsIssuer,
|
|
24
|
+
SubscriptionInvoiceSettings,
|
|
25
|
+
SubscriptionBillingThresholds,
|
|
26
|
+
SubscriptionItemsDataItemBillingThresholds,
|
|
27
|
+
SubscriptionItemsDataItem,
|
|
28
|
+
SubscriptionItems,
|
|
29
|
+
SubscriptionPaymentSettings,
|
|
30
|
+
SubscriptionBillingModeFlexible,
|
|
31
|
+
SubscriptionBillingMode,
|
|
32
|
+
SubscriptionCancellationDetails,
|
|
33
|
+
Subscription,
|
|
34
|
+
CustomerSubscriptions,
|
|
35
|
+
CustomerSourcesDataItem,
|
|
36
|
+
CustomerSources,
|
|
37
|
+
CustomerShippingAddress,
|
|
38
|
+
CustomerShipping,
|
|
39
|
+
CustomerAddress,
|
|
40
|
+
CustomerDiscountSource,
|
|
41
|
+
CustomerDiscount,
|
|
42
|
+
Customer,
|
|
43
|
+
CustomerList,
|
|
44
|
+
InvoiceShippingDetailsAddress,
|
|
45
|
+
InvoiceShippingDetails,
|
|
46
|
+
InvoiceShippingCostTaxesItem,
|
|
47
|
+
InvoiceShippingCost,
|
|
48
|
+
InvoiceSubscriptionDetails,
|
|
49
|
+
InvoiceParentSubscriptionDetails,
|
|
50
|
+
InvoiceParentQuoteDetails,
|
|
51
|
+
InvoiceParent,
|
|
52
|
+
InvoiceDefaultTaxRatesItemFlatAmount,
|
|
53
|
+
InvoiceDefaultTaxRatesItem,
|
|
54
|
+
InvoiceLastFinalizationError,
|
|
55
|
+
InvoicePaymentsDataItem,
|
|
56
|
+
InvoicePayments,
|
|
57
|
+
InvoiceCustomFieldsItem,
|
|
58
|
+
InvoiceLinesDataItemPeriod,
|
|
59
|
+
InvoiceLinesDataItemDiscountAmountsItem,
|
|
60
|
+
InvoiceLinesDataItem,
|
|
61
|
+
InvoiceLines,
|
|
62
|
+
InvoiceTotalPretaxCreditAmountsItem,
|
|
63
|
+
InvoiceThresholdReasonItemReasonsItem,
|
|
64
|
+
InvoiceThresholdReason,
|
|
65
|
+
InvoiceIssuer,
|
|
66
|
+
InvoiceRenderingPdf,
|
|
67
|
+
InvoiceRendering,
|
|
68
|
+
InvoiceStatusTransitions,
|
|
69
|
+
InvoiceTotalTaxesItem,
|
|
70
|
+
InvoiceFromInvoice,
|
|
71
|
+
InvoiceConfirmationSecret,
|
|
72
|
+
InvoicePaymentSettings,
|
|
73
|
+
InvoiceCustomerShippingAddress,
|
|
74
|
+
InvoiceCustomerShipping,
|
|
75
|
+
InvoiceTotalDiscountAmountsItem,
|
|
76
|
+
InvoiceTotalTaxAmountsItem,
|
|
77
|
+
InvoiceCustomerAddress,
|
|
78
|
+
InvoiceAutomaticTaxLiability,
|
|
79
|
+
InvoiceAutomaticTax,
|
|
80
|
+
InvoiceDiscountCoupon,
|
|
81
|
+
InvoiceDiscount,
|
|
82
|
+
InvoiceCustomerTaxIdsItem,
|
|
83
|
+
Invoice,
|
|
84
|
+
InvoiceList,
|
|
85
|
+
ChargePaymentMethodDetailsCardChecks,
|
|
86
|
+
ChargePaymentMethodDetailsCardNetworkToken,
|
|
87
|
+
ChargePaymentMethodDetailsCardExtendedAuthorization,
|
|
88
|
+
ChargePaymentMethodDetailsCardMulticapture,
|
|
89
|
+
ChargePaymentMethodDetailsCardIncrementalAuthorization,
|
|
90
|
+
ChargePaymentMethodDetailsCardOvercapture,
|
|
91
|
+
ChargePaymentMethodDetailsCard,
|
|
92
|
+
ChargePaymentMethodDetails,
|
|
93
|
+
ChargeBillingDetailsAddress,
|
|
94
|
+
ChargeBillingDetails,
|
|
95
|
+
ChargeFraudDetails,
|
|
96
|
+
ChargeOutcome,
|
|
97
|
+
ChargeRefunds,
|
|
98
|
+
ChargePresentmentDetails,
|
|
99
|
+
Charge,
|
|
100
|
+
ChargeList,
|
|
101
|
+
SubscriptionList,
|
|
102
|
+
RefundDestinationDetailsBlik,
|
|
103
|
+
RefundDestinationDetailsCard,
|
|
104
|
+
RefundDestinationDetailsBrBankTransfer,
|
|
105
|
+
RefundDestinationDetailsSwish,
|
|
106
|
+
RefundDestinationDetailsUsBankTransfer,
|
|
107
|
+
RefundDestinationDetailsMultibanco,
|
|
108
|
+
RefundDestinationDetailsJpBankTransfer,
|
|
109
|
+
RefundDestinationDetailsPaypal,
|
|
110
|
+
RefundDestinationDetailsMbWay,
|
|
111
|
+
RefundDestinationDetailsGbBankTransfer,
|
|
112
|
+
RefundDestinationDetailsCrypto,
|
|
113
|
+
RefundDestinationDetailsMxBankTransfer,
|
|
114
|
+
RefundDestinationDetailsP24,
|
|
115
|
+
RefundDestinationDetailsEuBankTransfer,
|
|
116
|
+
RefundDestinationDetailsThBankTransfer,
|
|
117
|
+
RefundDestinationDetails,
|
|
118
|
+
RefundNextActionDisplayDetailsEmailSent,
|
|
119
|
+
RefundNextActionDisplayDetails,
|
|
120
|
+
RefundNextAction,
|
|
121
|
+
Refund,
|
|
122
|
+
RefundList,
|
|
123
|
+
ProductMarketingFeaturesItem,
|
|
124
|
+
ProductPackageDimensions,
|
|
125
|
+
ProductFeaturesItem,
|
|
126
|
+
Product,
|
|
127
|
+
ProductList,
|
|
128
|
+
ProductSearchResult,
|
|
129
|
+
BalanceRefundAndDisputePrefundingPendingItemSourceTypes,
|
|
130
|
+
BalanceRefundAndDisputePrefundingPendingItem,
|
|
131
|
+
BalanceRefundAndDisputePrefundingAvailableItemSourceTypes,
|
|
132
|
+
BalanceRefundAndDisputePrefundingAvailableItem,
|
|
133
|
+
BalanceRefundAndDisputePrefunding,
|
|
134
|
+
BalanceInstantAvailableItemNetAvailableItemSourceTypes,
|
|
135
|
+
BalanceInstantAvailableItemNetAvailableItem,
|
|
136
|
+
BalanceInstantAvailableItemSourceTypes,
|
|
137
|
+
BalanceInstantAvailableItem,
|
|
138
|
+
BalanceConnectReservedItemSourceTypes,
|
|
139
|
+
BalanceConnectReservedItem,
|
|
140
|
+
BalanceIssuingAvailableItemSourceTypes,
|
|
141
|
+
BalanceIssuingAvailableItem,
|
|
142
|
+
BalanceIssuing,
|
|
143
|
+
BalanceAvailableItemSourceTypes,
|
|
144
|
+
BalanceAvailableItem,
|
|
145
|
+
BalancePendingItemSourceTypes,
|
|
146
|
+
BalancePendingItem,
|
|
147
|
+
Balance,
|
|
148
|
+
BalanceTransactionFeeDetailsItem,
|
|
149
|
+
BalanceTransaction,
|
|
150
|
+
BalanceTransactionList,
|
|
151
|
+
PaymentIntent,
|
|
152
|
+
PaymentIntentList,
|
|
153
|
+
PaymentIntentSearchResult,
|
|
154
|
+
DisputeEvidenceDetails,
|
|
155
|
+
Dispute,
|
|
156
|
+
DisputeList,
|
|
157
|
+
PayoutTraceId,
|
|
158
|
+
Payout,
|
|
159
|
+
PayoutList,
|
|
160
|
+
CustomerSearchResult,
|
|
161
|
+
InvoiceSearchResult,
|
|
162
|
+
ChargeSearchResult,
|
|
163
|
+
SubscriptionSearchResult,
|
|
164
|
+
CustomersListResultMeta,
|
|
165
|
+
CustomersSearchResultMeta,
|
|
166
|
+
InvoicesListResultMeta,
|
|
167
|
+
ChargesListResultMeta,
|
|
168
|
+
SubscriptionsListResultMeta,
|
|
169
|
+
RefundsListResultMeta,
|
|
170
|
+
ProductsListResultMeta,
|
|
171
|
+
ProductsSearchResultMeta,
|
|
172
|
+
BalanceTransactionsListResultMeta,
|
|
173
|
+
PaymentIntentsListResultMeta,
|
|
174
|
+
PaymentIntentsSearchResultMeta,
|
|
175
|
+
DisputesListResultMeta,
|
|
176
|
+
PayoutsListResultMeta,
|
|
177
|
+
StripeExecuteResult,
|
|
178
|
+
StripeExecuteResultWithMeta,
|
|
179
|
+
CustomersListResult,
|
|
180
|
+
CustomersSearchResult,
|
|
181
|
+
InvoicesListResult,
|
|
182
|
+
ChargesListResult,
|
|
183
|
+
SubscriptionsListResult,
|
|
184
|
+
RefundsListResult,
|
|
185
|
+
ProductsListResult,
|
|
186
|
+
ProductsSearchResult,
|
|
187
|
+
BalanceTransactionsListResult,
|
|
188
|
+
PaymentIntentsListResult,
|
|
189
|
+
PaymentIntentsSearchResult,
|
|
190
|
+
DisputesListResult,
|
|
191
|
+
PayoutsListResult
|
|
192
|
+
)
|
|
193
|
+
from .types import (
|
|
194
|
+
CustomersListParamsCreated,
|
|
195
|
+
InvoicesListParamsCreated,
|
|
196
|
+
ChargesListParamsCreated,
|
|
197
|
+
SubscriptionsListParamsAutomaticTax,
|
|
198
|
+
SubscriptionsListParamsCreated,
|
|
199
|
+
SubscriptionsListParamsCurrentPeriodEnd,
|
|
200
|
+
SubscriptionsListParamsCurrentPeriodStart,
|
|
201
|
+
RefundsListParamsCreated,
|
|
202
|
+
ProductsListParamsCreated,
|
|
203
|
+
BalanceTransactionsListParamsCreated,
|
|
204
|
+
PaymentIntentsListParamsCreated,
|
|
205
|
+
DisputesListParamsCreated,
|
|
206
|
+
PayoutsListParamsArrivalDate,
|
|
207
|
+
PayoutsListParamsCreated,
|
|
208
|
+
CustomersListParams,
|
|
209
|
+
CustomersGetParams,
|
|
210
|
+
CustomersSearchParams,
|
|
211
|
+
InvoicesListParams,
|
|
212
|
+
InvoicesGetParams,
|
|
213
|
+
InvoicesSearchParams,
|
|
214
|
+
ChargesListParams,
|
|
215
|
+
ChargesGetParams,
|
|
216
|
+
ChargesSearchParams,
|
|
217
|
+
SubscriptionsListParams,
|
|
218
|
+
SubscriptionsGetParams,
|
|
219
|
+
SubscriptionsSearchParams,
|
|
220
|
+
RefundsListParams,
|
|
221
|
+
RefundsGetParams,
|
|
222
|
+
ProductsListParams,
|
|
223
|
+
ProductsGetParams,
|
|
224
|
+
ProductsSearchParams,
|
|
225
|
+
BalanceGetParams,
|
|
226
|
+
BalanceTransactionsListParams,
|
|
227
|
+
BalanceTransactionsGetParams,
|
|
228
|
+
PaymentIntentsListParams,
|
|
229
|
+
PaymentIntentsGetParams,
|
|
230
|
+
PaymentIntentsSearchParams,
|
|
231
|
+
DisputesListParams,
|
|
232
|
+
DisputesGetParams,
|
|
233
|
+
PayoutsListParams,
|
|
234
|
+
PayoutsGetParams
|
|
235
|
+
)
|
|
236
|
+
|
|
237
|
+
__all__ = ["StripeConnector", "StripeAuthConfig", "CustomerInvoiceSettingsCustomFieldsItem", "CustomerInvoiceSettingsRenderingOptions", "CustomerInvoiceSettings", "CustomerCashBalanceSettings", "CustomerCashBalance", "SubscriptionPauseCollection", "SubscriptionAutomaticTaxLiability", "SubscriptionAutomaticTax", "SubscriptionTrialSettingsEndBehavior", "SubscriptionTrialSettings", "SubscriptionBillingCycleAnchorConfig", "SubscriptionDefaultTaxRatesItemFlatAmount", "SubscriptionDefaultTaxRatesItem", "SubscriptionInvoiceSettingsIssuer", "SubscriptionInvoiceSettings", "SubscriptionBillingThresholds", "SubscriptionItemsDataItemBillingThresholds", "SubscriptionItemsDataItem", "SubscriptionItems", "SubscriptionPaymentSettings", "SubscriptionBillingModeFlexible", "SubscriptionBillingMode", "SubscriptionCancellationDetails", "Subscription", "CustomerSubscriptions", "CustomerSourcesDataItem", "CustomerSources", "CustomerShippingAddress", "CustomerShipping", "CustomerAddress", "CustomerDiscountSource", "CustomerDiscount", "Customer", "CustomerList", "InvoiceShippingDetailsAddress", "InvoiceShippingDetails", "InvoiceShippingCostTaxesItem", "InvoiceShippingCost", "InvoiceSubscriptionDetails", "InvoiceParentSubscriptionDetails", "InvoiceParentQuoteDetails", "InvoiceParent", "InvoiceDefaultTaxRatesItemFlatAmount", "InvoiceDefaultTaxRatesItem", "InvoiceLastFinalizationError", "InvoicePaymentsDataItem", "InvoicePayments", "InvoiceCustomFieldsItem", "InvoiceLinesDataItemPeriod", "InvoiceLinesDataItemDiscountAmountsItem", "InvoiceLinesDataItem", "InvoiceLines", "InvoiceTotalPretaxCreditAmountsItem", "InvoiceThresholdReasonItemReasonsItem", "InvoiceThresholdReason", "InvoiceIssuer", "InvoiceRenderingPdf", "InvoiceRendering", "InvoiceStatusTransitions", "InvoiceTotalTaxesItem", "InvoiceFromInvoice", "InvoiceConfirmationSecret", "InvoicePaymentSettings", "InvoiceCustomerShippingAddress", "InvoiceCustomerShipping", "InvoiceTotalDiscountAmountsItem", "InvoiceTotalTaxAmountsItem", "InvoiceCustomerAddress", "InvoiceAutomaticTaxLiability", "InvoiceAutomaticTax", "InvoiceDiscountCoupon", "InvoiceDiscount", "InvoiceCustomerTaxIdsItem", "Invoice", "InvoiceList", "ChargePaymentMethodDetailsCardChecks", "ChargePaymentMethodDetailsCardNetworkToken", "ChargePaymentMethodDetailsCardExtendedAuthorization", "ChargePaymentMethodDetailsCardMulticapture", "ChargePaymentMethodDetailsCardIncrementalAuthorization", "ChargePaymentMethodDetailsCardOvercapture", "ChargePaymentMethodDetailsCard", "ChargePaymentMethodDetails", "ChargeBillingDetailsAddress", "ChargeBillingDetails", "ChargeFraudDetails", "ChargeOutcome", "ChargeRefunds", "ChargePresentmentDetails", "Charge", "ChargeList", "SubscriptionList", "RefundDestinationDetailsBlik", "RefundDestinationDetailsCard", "RefundDestinationDetailsBrBankTransfer", "RefundDestinationDetailsSwish", "RefundDestinationDetailsUsBankTransfer", "RefundDestinationDetailsMultibanco", "RefundDestinationDetailsJpBankTransfer", "RefundDestinationDetailsPaypal", "RefundDestinationDetailsMbWay", "RefundDestinationDetailsGbBankTransfer", "RefundDestinationDetailsCrypto", "RefundDestinationDetailsMxBankTransfer", "RefundDestinationDetailsP24", "RefundDestinationDetailsEuBankTransfer", "RefundDestinationDetailsThBankTransfer", "RefundDestinationDetails", "RefundNextActionDisplayDetailsEmailSent", "RefundNextActionDisplayDetails", "RefundNextAction", "Refund", "RefundList", "ProductMarketingFeaturesItem", "ProductPackageDimensions", "ProductFeaturesItem", "Product", "ProductList", "ProductSearchResult", "BalanceRefundAndDisputePrefundingPendingItemSourceTypes", "BalanceRefundAndDisputePrefundingPendingItem", "BalanceRefundAndDisputePrefundingAvailableItemSourceTypes", "BalanceRefundAndDisputePrefundingAvailableItem", "BalanceRefundAndDisputePrefunding", "BalanceInstantAvailableItemNetAvailableItemSourceTypes", "BalanceInstantAvailableItemNetAvailableItem", "BalanceInstantAvailableItemSourceTypes", "BalanceInstantAvailableItem", "BalanceConnectReservedItemSourceTypes", "BalanceConnectReservedItem", "BalanceIssuingAvailableItemSourceTypes", "BalanceIssuingAvailableItem", "BalanceIssuing", "BalanceAvailableItemSourceTypes", "BalanceAvailableItem", "BalancePendingItemSourceTypes", "BalancePendingItem", "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"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Vendored connector-sdk runtime."""
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Airbyte SDK - Async-first type-safe connector execution framework.
|
|
3
|
+
|
|
4
|
+
Provides:
|
|
5
|
+
- Async executor for all connectors
|
|
6
|
+
- Custom connector support
|
|
7
|
+
- Performance monitoring and instrumentation
|
|
8
|
+
- Connection pooling and concurrent execution
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
from __future__ import annotations
|
|
12
|
+
|
|
13
|
+
from .auth_strategies import AuthStrategy
|
|
14
|
+
from .connector_model_loader import load_connector_model
|
|
15
|
+
from .constants import SDK_VERSION
|
|
16
|
+
from .exceptions import (
|
|
17
|
+
AuthenticationError,
|
|
18
|
+
HTTPClientError,
|
|
19
|
+
NetworkError,
|
|
20
|
+
RateLimitError,
|
|
21
|
+
TimeoutError,
|
|
22
|
+
)
|
|
23
|
+
from .executor import (
|
|
24
|
+
ActionNotSupportedError,
|
|
25
|
+
EntityNotFoundError,
|
|
26
|
+
ExecutionConfig,
|
|
27
|
+
ExecutionResult,
|
|
28
|
+
ExecutorError,
|
|
29
|
+
ExecutorProtocol,
|
|
30
|
+
HostedExecutor,
|
|
31
|
+
InvalidParameterError,
|
|
32
|
+
LocalExecutor,
|
|
33
|
+
MissingParameterError,
|
|
34
|
+
)
|
|
35
|
+
from .http_client import HTTPClient
|
|
36
|
+
from .logging import LogSession, NullLogger, RequestLog, RequestLogger
|
|
37
|
+
from .performance import PerformanceMonitor, instrument
|
|
38
|
+
from .types import Action, AuthType, ConnectorModel, EntityDefinition
|
|
39
|
+
from .utils import save_download
|
|
40
|
+
|
|
41
|
+
__version__ = SDK_VERSION
|
|
42
|
+
|
|
43
|
+
__all__ = [
|
|
44
|
+
# All Executors
|
|
45
|
+
"LocalExecutor",
|
|
46
|
+
"HostedExecutor",
|
|
47
|
+
"ExecutorProtocol",
|
|
48
|
+
"HTTPClient",
|
|
49
|
+
# Execution Config and Result Types
|
|
50
|
+
"ExecutionConfig",
|
|
51
|
+
"ExecutionResult",
|
|
52
|
+
# Types
|
|
53
|
+
"ConnectorModel",
|
|
54
|
+
"Action",
|
|
55
|
+
"AuthType",
|
|
56
|
+
"EntityDefinition",
|
|
57
|
+
"load_connector_model",
|
|
58
|
+
# Authentication
|
|
59
|
+
"AuthStrategy",
|
|
60
|
+
# Executor Exceptions
|
|
61
|
+
"ExecutorError",
|
|
62
|
+
"EntityNotFoundError",
|
|
63
|
+
"ActionNotSupportedError",
|
|
64
|
+
"MissingParameterError",
|
|
65
|
+
"InvalidParameterError",
|
|
66
|
+
# HTTP Exceptions
|
|
67
|
+
"HTTPClientError",
|
|
68
|
+
"AuthenticationError",
|
|
69
|
+
"RateLimitError",
|
|
70
|
+
"NetworkError",
|
|
71
|
+
"TimeoutError",
|
|
72
|
+
# Logging
|
|
73
|
+
"RequestLogger",
|
|
74
|
+
"NullLogger",
|
|
75
|
+
"RequestLog",
|
|
76
|
+
"LogSession",
|
|
77
|
+
# Performance monitoring
|
|
78
|
+
"PerformanceMonitor",
|
|
79
|
+
"instrument",
|
|
80
|
+
# Utilities
|
|
81
|
+
"save_download",
|
|
82
|
+
]
|