-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Source Stripe: implement slicing (#15292)
* #45 oncall - source Stripe: implement slicing * #45 source stripe: upd changelog * #45 source stripe: upd changelog * #45 source stripe: make slice range configurable * #45 source stripe: move generating a single slice into a mixin * auto-bump connector version [ci skip] Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
- Loading branch information
1 parent
167aa13
commit 16d8133
Showing
11 changed files
with
193 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 16 additions & 16 deletions
32
airbyte-integrations/connectors/source-stripe/integration_tests/abnormal_state.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{ | ||
"charges": { "created": 161703040300 }, | ||
"coupons": { "created": 161703040300 }, | ||
"events": { "created": 161749384700 }, | ||
"customers": { "created": 160083796900 }, | ||
"plans": { "created": 159484835000 }, | ||
"invoices": { "created": 161749017500 }, | ||
"invoice_items": { "date": 159494698100 }, | ||
"transfers": { "created": 161099582400 }, | ||
"subscriptions": { "created": 159968687300 }, | ||
"balance_transactions": { "created": 161706755600 }, | ||
"payouts": { "created": 161706755600 }, | ||
"disputes": { "created": 161099630500 }, | ||
"products": { "created": 158551134100 }, | ||
"refunds": { "created": 161959562900 }, | ||
"payment_intents": { "created": 161959562900 }, | ||
"promotion_codes": { "created": 163534157100 }, | ||
"charges": { "created": 10000000000 }, | ||
"coupons": { "created": 10000000000 }, | ||
"events": { "created": 10000000000 }, | ||
"customers": { "created": 10000000000 }, | ||
"plans": { "created": 10000000000 }, | ||
"invoices": { "created": 10000000000 }, | ||
"invoice_items": { "date": 10000000000 }, | ||
"transfers": { "created": 10000000000 }, | ||
"subscriptions": { "created": 10000000000 }, | ||
"balance_transactions": { "created": 10000000000 }, | ||
"payouts": { "created": 10000000000 }, | ||
"disputes": { "created": 10000000000 }, | ||
"products": { "created": 10000000000 }, | ||
"refunds": { "created": 10000000000 }, | ||
"payment_intents": { "created": 10000000000 }, | ||
"promotion_codes": { "created": 10000000000 }, | ||
"checkout_sessions": { "expires_at": 10000000000 }, | ||
"checkout_sessions_line_items": { "checkout_session_expires_at": 10000000000 } | ||
} |
10 changes: 0 additions & 10 deletions
10
airbyte-integrations/connectors/source-stripe/integration_tests/test_dummy.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.