@flowio/types 11.24.54 → 11.24.55
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.
- package/dist/api-internal.d.ts +93 -54
- package/dist/api.d.ts +76 -7
- package/package.json +2 -2
- package/src/api-internal.ts +124 -64
- package/src/api.ts +100 -4
package/dist/api-internal.d.ts
CHANGED
|
@@ -1445,6 +1445,11 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1445
1445
|
readonly validation_url: string;
|
|
1446
1446
|
readonly display_name?: string;
|
|
1447
1447
|
}
|
|
1448
|
+
interface ApplepaySdkAuthorizationResultActionDetails {
|
|
1449
|
+
readonly discriminator: 'applepay_sdk_authorization_result_action_details';
|
|
1450
|
+
readonly merchant_identifier: string;
|
|
1451
|
+
readonly payment_data_request: any;
|
|
1452
|
+
}
|
|
1448
1453
|
interface AuthorizationCode {
|
|
1449
1454
|
readonly result_code: string;
|
|
1450
1455
|
readonly code: string;
|
|
@@ -2173,7 +2178,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2173
2178
|
type AuthorizationForm = io.flow.payment.v0.models.AuthorizationCopyForm | io.flow.payment.v0.models.DirectAuthorizationForm | io.flow.payment.v0.models.MerchantOfRecordAuthorizationForm | io.flow.payment.v0.models.PaypalAuthorizationForm | io.flow.payment.v0.models.RedirectAuthorizationForm | io.flow.payment.v0.models.InlineAuthorizationForm | io.flow.payment.v0.models.AchAuthorizationForm | io.flow.payment.v0.models.CardPaymentSourceAuthorizationForm | io.flow.payment.v0.models.OnlinePaymentAuthorizationForm;
|
|
2174
2179
|
type AuthorizationPayloadParameters = io.flow.payment.v0.models.GooglePayAuthorizationPayload | io.flow.payment.v0.models.ApplePayMerchantValidationPayload;
|
|
2175
2180
|
type AuthorizationResultAction = io.flow.payment.v0.models.AuthorizationResultActionGet | io.flow.payment.v0.models.AuthorizationResultActionPost | io.flow.payment.v0.models.AuthorizationResultActionWait | io.flow.payment.v0.models.AuthorizationResultActionNative;
|
|
2176
|
-
type AuthorizationResultActionDetails = io.flow.payment.v0.models.AdyenNativeActionDetails | io.flow.payment.v0.models.StripeAuthorizationResultActionDetails | io.flow.payment.v0.models.ThreedsIdentifyActionDetails | io.flow.payment.v0.models.ThreedsChallengeActionDetails | io.flow.payment.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.payment.v0.models.SelectIssuerOptionActionDetails;
|
|
2181
|
+
type AuthorizationResultActionDetails = io.flow.payment.v0.models.AdyenNativeActionDetails | io.flow.payment.v0.models.StripeAuthorizationResultActionDetails | io.flow.payment.v0.models.ThreedsIdentifyActionDetails | io.flow.payment.v0.models.ThreedsChallengeActionDetails | io.flow.payment.v0.models.ApplepaySdkAuthorizationResultActionDetails | io.flow.payment.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.payment.v0.models.SelectIssuerOptionActionDetails;
|
|
2177
2182
|
type BrowserActionConfiguration = io.flow.payment.v0.models.CardBrowserActionConfiguration;
|
|
2178
2183
|
type ConfirmationDetails = io.flow.payment.v0.models.DirectDebit;
|
|
2179
2184
|
type ExpandableCard = io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary;
|
|
@@ -5317,7 +5322,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5317
5322
|
}
|
|
5318
5323
|
interface ShopifyOrderAttribute {
|
|
5319
5324
|
readonly name: string;
|
|
5320
|
-
readonly value:
|
|
5325
|
+
readonly value: any;
|
|
5321
5326
|
}
|
|
5322
5327
|
interface ShopifyOrderCancellationForm {
|
|
5323
5328
|
readonly refund: io.flow.shopify.markets.v0.models.ShopifyRefund;
|
|
@@ -5841,6 +5846,9 @@ declare namespace io.flow.payment.gateway.v0.enums {
|
|
|
5841
5846
|
type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
|
|
5842
5847
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
5843
5848
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
5849
|
+
type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
|
|
5850
|
+
type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic';
|
|
5851
|
+
type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
|
|
5844
5852
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
5845
5853
|
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
|
|
5846
5854
|
}
|
|
@@ -6293,6 +6301,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6293
6301
|
readonly payment_information: io.flow.payment.gateway.v0.models.PaymentInformation;
|
|
6294
6302
|
readonly supported_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
|
|
6295
6303
|
readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
6304
|
+
readonly review?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
|
|
6296
6305
|
}
|
|
6297
6306
|
interface PaymentRequestForm {
|
|
6298
6307
|
readonly amount: number;
|
|
@@ -6311,6 +6320,14 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6311
6320
|
readonly id: string;
|
|
6312
6321
|
readonly reference?: string;
|
|
6313
6322
|
}
|
|
6323
|
+
interface PaymentRequestReview {
|
|
6324
|
+
readonly status: io.flow.payment.gateway.v0.enums.PaymentRequestReviewStatus;
|
|
6325
|
+
readonly checks: io.flow.payment.gateway.v0.models.PaymentRequestReviewCheck[];
|
|
6326
|
+
}
|
|
6327
|
+
interface PaymentRequestReviewCheck {
|
|
6328
|
+
readonly type: io.flow.payment.gateway.v0.enums.PaymentRequestReviewCheckType;
|
|
6329
|
+
readonly status: io.flow.payment.gateway.v0.enums.PaymentRequestReviewCheckStatus;
|
|
6330
|
+
}
|
|
6314
6331
|
interface PaymentReversal {
|
|
6315
6332
|
readonly id: string;
|
|
6316
6333
|
readonly amount: number;
|
|
@@ -8759,12 +8776,14 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8759
8776
|
readonly url: string;
|
|
8760
8777
|
}
|
|
8761
8778
|
interface BankAccountForm {
|
|
8762
|
-
readonly last4: string;
|
|
8763
8779
|
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
8764
8780
|
}
|
|
8765
8781
|
interface BankAccountReference {
|
|
8766
8782
|
readonly id: string;
|
|
8767
8783
|
}
|
|
8784
|
+
interface BankAccountSummary {
|
|
8785
|
+
readonly last4: string;
|
|
8786
|
+
}
|
|
8768
8787
|
interface BillingChannelOrderSummary {
|
|
8769
8788
|
readonly organization: io.flow.billing.v0.models.BillingChannelOrganizationSummary;
|
|
8770
8789
|
readonly number: string;
|
|
@@ -8784,10 +8803,20 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8784
8803
|
readonly amount: number;
|
|
8785
8804
|
readonly description?: string;
|
|
8786
8805
|
}
|
|
8806
|
+
interface ChannelBankAccount {
|
|
8807
|
+
readonly id: string;
|
|
8808
|
+
readonly key: string;
|
|
8809
|
+
readonly last4: string;
|
|
8810
|
+
}
|
|
8811
|
+
interface ChannelDefaultBankAccount {
|
|
8812
|
+
readonly id: string;
|
|
8813
|
+
readonly bank_account: io.flow.billing.v0.models.BankAccountReference;
|
|
8814
|
+
}
|
|
8787
8815
|
interface ChannelPayout {
|
|
8788
8816
|
readonly id: string;
|
|
8789
8817
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
8790
8818
|
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
8819
|
+
readonly bank_account?: io.flow.billing.v0.models.BankAccountSummary;
|
|
8791
8820
|
readonly amount: number;
|
|
8792
8821
|
readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
|
|
8793
8822
|
readonly created_at: string;
|
|
@@ -8828,6 +8857,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8828
8857
|
}
|
|
8829
8858
|
interface OrganizationBankAccount {
|
|
8830
8859
|
readonly id: string;
|
|
8860
|
+
readonly key: string;
|
|
8831
8861
|
readonly last4: string;
|
|
8832
8862
|
}
|
|
8833
8863
|
interface OrganizationDefaultBankAccount {
|
|
@@ -8838,6 +8868,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8838
8868
|
readonly id: string;
|
|
8839
8869
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
8840
8870
|
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
8871
|
+
readonly bank_account?: io.flow.billing.v0.models.BankAccountSummary;
|
|
8841
8872
|
readonly amount: number;
|
|
8842
8873
|
readonly attachments: io.flow.billing.v0.models.PayoutAttachment[];
|
|
8843
8874
|
readonly created_at: string;
|
|
@@ -10004,7 +10035,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10004
10035
|
}
|
|
10005
10036
|
interface SetupCompleted {
|
|
10006
10037
|
readonly discriminator: 'setup_completed';
|
|
10007
|
-
readonly third_party_logistics_guid
|
|
10038
|
+
readonly third_party_logistics_guid?: string;
|
|
10008
10039
|
}
|
|
10009
10040
|
interface SetupInProgress {
|
|
10010
10041
|
readonly discriminator: 'setup_in_progress';
|
|
@@ -10300,11 +10331,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10300
10331
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
10301
10332
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
10302
10333
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
10303
|
-
type BankPaymentStatusCode = 'sent' | 'failed';
|
|
10334
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
10304
10335
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
10305
10336
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
10306
10337
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
10307
|
-
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
10308
10338
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
10309
10339
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
|
|
10310
10340
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
@@ -10315,7 +10345,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10315
10345
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
10316
10346
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
10317
10347
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject';
|
|
10318
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order';
|
|
10348
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods';
|
|
10319
10349
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
10320
10350
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
10321
10351
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
@@ -10421,7 +10451,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10421
10451
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10422
10452
|
type EmptyAttribute = 'irrelevant';
|
|
10423
10453
|
type ErpFileType = 'vendor';
|
|
10424
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | '
|
|
10454
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
10425
10455
|
type ExperienceImportType = 'experience_with_settings';
|
|
10426
10456
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10427
10457
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10707,6 +10737,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10707
10737
|
readonly balance: io.flow.common.v0.models.Price;
|
|
10708
10738
|
readonly pending: io.flow.common.v0.models.Price;
|
|
10709
10739
|
}
|
|
10740
|
+
interface AccountSummary {
|
|
10741
|
+
readonly id: string;
|
|
10742
|
+
readonly currency: string;
|
|
10743
|
+
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
10744
|
+
}
|
|
10710
10745
|
interface AccountTransactionsExportRequest {
|
|
10711
10746
|
readonly discriminator: 'account_transactions_export_request';
|
|
10712
10747
|
readonly event_id: string;
|
|
@@ -11214,9 +11249,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11214
11249
|
readonly key: string;
|
|
11215
11250
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
11216
11251
|
readonly reference?: string;
|
|
11217
|
-
readonly sent_on
|
|
11252
|
+
readonly sent_on?: string;
|
|
11218
11253
|
readonly status: io.flow.billing.v0.unions.PayoutStatus;
|
|
11219
|
-
readonly expected_delivery_by
|
|
11254
|
+
readonly expected_delivery_by?: string;
|
|
11220
11255
|
readonly total: io.flow.common.v0.models.Price;
|
|
11221
11256
|
}
|
|
11222
11257
|
interface BankPaymentDeleted {
|
|
@@ -11235,8 +11270,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11235
11270
|
interface BankPaymentForm {
|
|
11236
11271
|
readonly account_id: string;
|
|
11237
11272
|
readonly reference?: string;
|
|
11238
|
-
readonly sent_on
|
|
11239
|
-
readonly expected_delivery_by
|
|
11273
|
+
readonly sent_on?: string;
|
|
11274
|
+
readonly expected_delivery_by?: string;
|
|
11240
11275
|
readonly amount: number;
|
|
11241
11276
|
readonly currency: string;
|
|
11242
11277
|
readonly transfer_transaction_ids: string[];
|
|
@@ -11393,23 +11428,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11393
11428
|
readonly timestamp: string;
|
|
11394
11429
|
readonly id: string;
|
|
11395
11430
|
}
|
|
11396
|
-
interface BillingStatementPendingReview {
|
|
11397
|
-
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
11398
|
-
readonly statement: io.flow.internal.v0.models.BillingStatementSummary;
|
|
11399
|
-
}
|
|
11400
11431
|
interface BillingStatementReference {
|
|
11401
11432
|
readonly id: string;
|
|
11402
11433
|
}
|
|
11403
|
-
interface BillingStatementReview {
|
|
11404
|
-
readonly id: string;
|
|
11405
|
-
readonly billing_statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
11406
|
-
readonly reviewed_by: io.flow.common.v0.models.UserReference;
|
|
11407
|
-
readonly reviewed_at: string;
|
|
11408
|
-
}
|
|
11409
|
-
interface BillingStatementReviewForm {
|
|
11410
|
-
readonly reviewed_by_id: string;
|
|
11411
|
-
readonly reviewed_at: string;
|
|
11412
|
-
}
|
|
11413
11434
|
interface BillingStatementSummary {
|
|
11414
11435
|
readonly id: string;
|
|
11415
11436
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -11798,11 +11819,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11798
11819
|
readonly data: io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
11799
11820
|
}
|
|
11800
11821
|
interface CatalogSettings {
|
|
11822
|
+
readonly id: string;
|
|
11801
11823
|
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
11802
11824
|
}
|
|
11825
|
+
interface CatalogSettingsDeleted {
|
|
11826
|
+
readonly discriminator: 'catalog_settings_deleted';
|
|
11827
|
+
readonly event_id: string;
|
|
11828
|
+
readonly timestamp: string;
|
|
11829
|
+
readonly organization: string;
|
|
11830
|
+
readonly id: string;
|
|
11831
|
+
}
|
|
11803
11832
|
interface CatalogSettingsPutForm {
|
|
11804
11833
|
readonly mixed_bag_weight: io.flow.internal.v0.enums.MixedBagWeight;
|
|
11805
11834
|
}
|
|
11835
|
+
interface CatalogSettingsUpserted {
|
|
11836
|
+
readonly discriminator: 'catalog_settings_upserted';
|
|
11837
|
+
readonly event_id: string;
|
|
11838
|
+
readonly timestamp: string;
|
|
11839
|
+
readonly organization: string;
|
|
11840
|
+
readonly catalog_settings: io.flow.internal.v0.models.CatalogSettings;
|
|
11841
|
+
}
|
|
11806
11842
|
interface CenterDefaults {
|
|
11807
11843
|
readonly packaging: io.flow.fulfillment.v0.models.Packaging[];
|
|
11808
11844
|
readonly shipping_address_contact: io.flow.common.v0.models.Contact;
|
|
@@ -15120,6 +15156,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15120
15156
|
readonly transactions: number;
|
|
15121
15157
|
readonly statements: number;
|
|
15122
15158
|
}
|
|
15159
|
+
interface FinanceBankAccount {
|
|
15160
|
+
readonly id: string;
|
|
15161
|
+
readonly account: io.flow.internal.v0.models.AccountSummary;
|
|
15162
|
+
readonly last4: string;
|
|
15163
|
+
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
15164
|
+
readonly owner: io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
15165
|
+
}
|
|
15166
|
+
interface FinanceBankAccountOwner {
|
|
15167
|
+
readonly name: string;
|
|
15168
|
+
}
|
|
15123
15169
|
interface FinancialMerchantCategory {
|
|
15124
15170
|
readonly id: string;
|
|
15125
15171
|
readonly iso_18245_4: string;
|
|
@@ -15516,7 +15562,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15516
15562
|
readonly local: io.flow.common.v0.models.Money;
|
|
15517
15563
|
readonly transaction_created_at: string;
|
|
15518
15564
|
}
|
|
15519
|
-
interface
|
|
15565
|
+
interface GenerateLoadMultipleOrgs {
|
|
15566
|
+
readonly discriminator: 'generate_load_multiple_orgs';
|
|
15567
|
+
readonly organization_ids: string[];
|
|
15568
|
+
readonly num_events: number;
|
|
15569
|
+
}
|
|
15570
|
+
interface GenerateLoadSingleOrg {
|
|
15571
|
+
readonly discriminator: 'generate_load_single_org';
|
|
15520
15572
|
readonly organization_id: string;
|
|
15521
15573
|
readonly num_events: number;
|
|
15522
15574
|
}
|
|
@@ -17125,7 +17177,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17125
17177
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17126
17178
|
readonly created_at: string;
|
|
17127
17179
|
readonly original_at?: string;
|
|
17128
|
-
readonly disposition?: io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
17129
17180
|
}
|
|
17130
17181
|
interface MainTransactionDeleted {
|
|
17131
17182
|
readonly discriminator: 'main_transaction_deleted';
|
|
@@ -17499,6 +17550,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17499
17550
|
readonly onboarding_current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
17500
17551
|
readonly setup_completed_at?: string;
|
|
17501
17552
|
readonly gmv: number;
|
|
17553
|
+
readonly health_score: number;
|
|
17502
17554
|
}
|
|
17503
17555
|
interface OneTimeTokenRedemptionForm {
|
|
17504
17556
|
readonly token: string;
|
|
@@ -18301,9 +18353,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18301
18353
|
readonly refund: io.flow.internal.v0.models.PaypalInternalRefund;
|
|
18302
18354
|
}
|
|
18303
18355
|
interface PendingBankPayment {
|
|
18304
|
-
readonly
|
|
18305
|
-
readonly account: io.flow.
|
|
18306
|
-
readonly recommended_reference: string;
|
|
18356
|
+
readonly id: string;
|
|
18357
|
+
readonly account: io.flow.internal.v0.models.AccountSummary;
|
|
18307
18358
|
readonly total: io.flow.common.v0.models.Price;
|
|
18308
18359
|
readonly details: io.flow.internal.v0.models.PendingBankPaymentDetail[];
|
|
18309
18360
|
}
|
|
@@ -18441,7 +18492,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18441
18492
|
readonly flow_rate: number;
|
|
18442
18493
|
readonly flow_margin: number;
|
|
18443
18494
|
readonly revenue_share?: io.flow.common.v0.models.Price;
|
|
18444
|
-
readonly disposition?: io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
18445
18495
|
readonly id: string;
|
|
18446
18496
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
18447
18497
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -19041,6 +19091,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19041
19091
|
readonly full_review_start_date?: string;
|
|
19042
19092
|
readonly full_review_end_date?: string;
|
|
19043
19093
|
readonly reason?: string;
|
|
19094
|
+
readonly updated_at: string;
|
|
19044
19095
|
}
|
|
19045
19096
|
interface RestrictionOrganizationStatusDeleted {
|
|
19046
19097
|
readonly discriminator: 'restriction_organization_status_deleted';
|
|
@@ -20191,23 +20242,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20191
20242
|
readonly id: string;
|
|
20192
20243
|
readonly name: string;
|
|
20193
20244
|
}
|
|
20194
|
-
interface TestDeleted {
|
|
20195
|
-
readonly discriminator: 'test_deleted';
|
|
20196
|
-
readonly event_id: string;
|
|
20197
|
-
readonly timestamp: string;
|
|
20198
|
-
readonly organization: string;
|
|
20199
|
-
readonly id: string;
|
|
20200
|
-
}
|
|
20201
20245
|
interface TestForm {
|
|
20202
20246
|
readonly name: string;
|
|
20203
20247
|
}
|
|
20204
|
-
interface TestUpserted {
|
|
20205
|
-
readonly discriminator: 'test_upserted';
|
|
20206
|
-
readonly event_id: string;
|
|
20207
|
-
readonly timestamp: string;
|
|
20208
|
-
readonly organization: string;
|
|
20209
|
-
readonly test: io.flow.internal.v0.models.Test;
|
|
20210
|
-
}
|
|
20211
20248
|
interface ThirdPartyLogisticsPartner {
|
|
20212
20249
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
20213
20250
|
readonly warehouse_url?: string;
|
|
@@ -20717,7 +20754,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20717
20754
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
20718
20755
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
20719
20756
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
20720
|
-
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.TestUpserted | io.flow.internal.v0.models.TestDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
20757
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
20721
20758
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
20722
20759
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
20723
20760
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -20728,6 +20765,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20728
20765
|
type FraudProviderConfiguration = io.flow.internal.v0.models.FraudProviderConfigurationRiskified;
|
|
20729
20766
|
type FraudProviderConfigurationForm = io.flow.internal.v0.models.FraudProviderConfigurationFormRiskified;
|
|
20730
20767
|
type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.models.FuelSurchargeServiceFeePercentPutForm | io.flow.internal.v0.models.FuelSurchargeServiceFeeAmountByWeightPutForm;
|
|
20768
|
+
type GenerateLoad = io.flow.internal.v0.models.GenerateLoadSingleOrg | io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
20731
20769
|
type GlobalSearchResult = io.flow.internal.v0.models.SearchExperienceSummary | io.flow.internal.v0.models.SearchExperimentSummary | io.flow.internal.v0.models.SearchOrderSummary | io.flow.internal.v0.models.SearchItemSummary;
|
|
20732
20770
|
type HeapEvent = io.flow.internal.v0.models.HeapAddressPredictionClick | io.flow.internal.v0.models.HeapAfterpayPopupOpened | io.flow.internal.v0.models.HeapAfterpayPopupClosed | io.flow.internal.v0.models.HeapAuthorizationDeclined | io.flow.internal.v0.models.HeapAuthorizationError | io.flow.internal.v0.models.HeapCardError | io.flow.internal.v0.models.HeapCheckoutEvent | io.flow.internal.v0.models.HeapCheckoutProgress | io.flow.internal.v0.models.HeapCheckoutStarted | io.flow.internal.v0.models.HeapContinueClick | io.flow.internal.v0.models.HeapDeliveryFormDataReceived | io.flow.internal.v0.models.HeapDeliveryFormDataTimeout | io.flow.internal.v0.models.HeapDeliveryOptionCount | io.flow.internal.v0.models.HeapDeliveryOptionSelected | io.flow.internal.v0.models.HeapExitCheckout | io.flow.internal.v0.models.HeapFieldBlur | io.flow.internal.v0.models.HeapFieldErrorTooltipShown | io.flow.internal.v0.models.HeapFieldFocus | io.flow.internal.v0.models.HeapFieldValidation | io.flow.internal.v0.models.HeapGiftCardApply | io.flow.internal.v0.models.HeapGiftCardOpen | io.flow.internal.v0.models.HeapGiftCardWithPin | io.flow.internal.v0.models.HeapOptinPromptDeselected | io.flow.internal.v0.models.HeapOptinPromptSelected | io.flow.internal.v0.models.HeapOrderSummaryClose | io.flow.internal.v0.models.HeapOrderSummaryOpen | io.flow.internal.v0.models.HeapPayClick | io.flow.internal.v0.models.HeapPaymentFormDataReceived | io.flow.internal.v0.models.HeapPaymentFormDataTimeout | io.flow.internal.v0.models.HeapPaymentMethodSelected | io.flow.internal.v0.models.HeapPerformance | io.flow.internal.v0.models.HeapPromoCodeApply | io.flow.internal.v0.models.HeapPromoCodeError | io.flow.internal.v0.models.HeapPromoCodeOpen | io.flow.internal.v0.models.HeapPurchase | io.flow.internal.v0.models.HeapRageClick | io.flow.internal.v0.models.HeapScriptError | io.flow.internal.v0.models.HeapSequencedError | io.flow.internal.v0.models.HeapSequencedTiming | io.flow.internal.v0.models.HeapSplitLoaded | io.flow.internal.v0.models.HeapSplitTimeout | io.flow.internal.v0.models.HeapStartCheckout | io.flow.internal.v0.models.HeapStreamError | io.flow.internal.v0.models.HeapSubmitError | io.flow.internal.v0.models.HeapWebsocketClose | io.flow.internal.v0.models.HeapWebsocketConnectionLost | io.flow.internal.v0.models.HeapWebsocketError | io.flow.internal.v0.models.HeapWebsocketGiveUp | io.flow.internal.v0.models.HeapWebsocketOpen | io.flow.internal.v0.models.HeapWebsocketRequest | io.flow.internal.v0.models.HeapWebsocketResponse | io.flow.internal.v0.models.HeapWebsocketRetry;
|
|
20733
20771
|
type IndexTaskType = io.flow.internal.v0.models.CatalogItemIndexTask | io.flow.internal.v0.models.CatalogItemBatchIndexTask | io.flow.internal.v0.models.CatalogItemDeleteIndexTask | io.flow.internal.v0.models.ChangeSettingsIndexTask | io.flow.internal.v0.models.DeleteIndexTask;
|
|
@@ -20797,6 +20835,7 @@ export declare type AccountSettingsDeleted = io.flow.internal.v0.models.AccountS
|
|
|
20797
20835
|
export declare type AccountSettingsUpserted = io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
20798
20836
|
export declare type AccountSource = io.flow.internal.v0.models.AccountSource;
|
|
20799
20837
|
export declare type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
|
|
20838
|
+
export declare type AccountSummary = io.flow.internal.v0.models.AccountSummary;
|
|
20800
20839
|
export declare type AccountTransactionsExportRequest = io.flow.internal.v0.models.AccountTransactionsExportRequest;
|
|
20801
20840
|
export declare type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
20802
20841
|
export declare type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
|
|
@@ -20920,11 +20959,7 @@ export declare type BillingStatementBatchStatementDeleted = io.flow.internal.v0.
|
|
|
20920
20959
|
export declare type BillingStatementBatchStatementUpserted = io.flow.internal.v0.models.BillingStatementBatchStatementUpserted;
|
|
20921
20960
|
export declare type BillingStatementBatchUpserted = io.flow.internal.v0.models.BillingStatementBatchUpserted;
|
|
20922
20961
|
export declare type BillingStatementDeleted = io.flow.internal.v0.models.BillingStatementDeleted;
|
|
20923
|
-
export declare type BillingStatementPendingReview = io.flow.internal.v0.models.BillingStatementPendingReview;
|
|
20924
20962
|
export declare type BillingStatementReference = io.flow.internal.v0.models.BillingStatementReference;
|
|
20925
|
-
export declare type BillingStatementReview = io.flow.internal.v0.models.BillingStatementReview;
|
|
20926
|
-
export declare type BillingStatementReviewForm = io.flow.internal.v0.models.BillingStatementReviewForm;
|
|
20927
|
-
export declare type BillingStatementReviewStatus = io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
20928
20963
|
export declare type BillingStatementSummary = io.flow.internal.v0.models.BillingStatementSummary;
|
|
20929
20964
|
export declare type BillingStatementTotals = io.flow.internal.v0.models.BillingStatementTotals;
|
|
20930
20965
|
export declare type BillingStatementUpserted = io.flow.internal.v0.models.BillingStatementUpserted;
|
|
@@ -21005,7 +21040,9 @@ export declare type CatalogItemRegionAvailabilities = io.flow.internal.v0.models
|
|
|
21005
21040
|
export declare type CatalogItemRegionAvailabilitiesData = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesData;
|
|
21006
21041
|
export declare type CatalogItemRegionAvailabilitiesPublished = io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished;
|
|
21007
21042
|
export declare type CatalogSettings = io.flow.internal.v0.models.CatalogSettings;
|
|
21043
|
+
export declare type CatalogSettingsDeleted = io.flow.internal.v0.models.CatalogSettingsDeleted;
|
|
21008
21044
|
export declare type CatalogSettingsPutForm = io.flow.internal.v0.models.CatalogSettingsPutForm;
|
|
21045
|
+
export declare type CatalogSettingsUpserted = io.flow.internal.v0.models.CatalogSettingsUpserted;
|
|
21009
21046
|
export declare type CenterDefaults = io.flow.internal.v0.models.CenterDefaults;
|
|
21010
21047
|
export declare type CenterDefaultsForm = io.flow.internal.v0.models.CenterDefaultsForm;
|
|
21011
21048
|
export declare type CenterQueryBuilder = io.flow.internal.v0.models.CenterQueryBuilder;
|
|
@@ -21858,6 +21895,8 @@ export declare type FileConfirmation = io.flow.internal.v0.models.FileConfirmati
|
|
|
21858
21895
|
export declare type FileConfirmationForm = io.flow.internal.v0.models.FileConfirmationForm;
|
|
21859
21896
|
export declare type FileMetadata = io.flow.internal.v0.models.FileMetadata;
|
|
21860
21897
|
export declare type FileMetadataCounts = io.flow.internal.v0.models.FileMetadataCounts;
|
|
21898
|
+
export declare type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
|
|
21899
|
+
export declare type FinanceBankAccountOwner = io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
21861
21900
|
export declare type FinancialMerchantCategory = io.flow.internal.v0.models.FinancialMerchantCategory;
|
|
21862
21901
|
export declare type FinancialReportingResponsibleParty = io.flow.internal.v0.enums.FinancialReportingResponsibleParty;
|
|
21863
21902
|
export declare type FinancialReportingStatement = io.flow.internal.v0.models.FinancialReportingStatement;
|
|
@@ -21926,7 +21965,9 @@ export declare type FxRevenueRecognitionOrder = io.flow.internal.v0.models.FxRev
|
|
|
21926
21965
|
export declare type FxRevenueRecognitionOrganization = io.flow.internal.v0.models.FxRevenueRecognitionOrganization;
|
|
21927
21966
|
export declare type FxRevenueRecognitionRate = io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
21928
21967
|
export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
21929
|
-
export declare type GenerateLoad = io.flow.internal.v0.
|
|
21968
|
+
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
21969
|
+
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
21970
|
+
export declare type GenerateLoadSingleOrg = io.flow.internal.v0.models.GenerateLoadSingleOrg;
|
|
21930
21971
|
export declare type GiftCard = io.flow.internal.v0.models.GiftCard;
|
|
21931
21972
|
export declare type GiftCardAuthorizationError = io.flow.internal.v0.models.GiftCardAuthorizationError;
|
|
21932
21973
|
export declare type GiftCardForm = io.flow.internal.v0.models.GiftCardForm;
|
|
@@ -22763,9 +22804,7 @@ export declare type TaxTransactionUpserted = io.flow.internal.v0.models.TaxTrans
|
|
|
22763
22804
|
export declare type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
|
|
22764
22805
|
export declare type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
22765
22806
|
export declare type Test = io.flow.internal.v0.models.Test;
|
|
22766
|
-
export declare type TestDeleted = io.flow.internal.v0.models.TestDeleted;
|
|
22767
22807
|
export declare type TestForm = io.flow.internal.v0.models.TestForm;
|
|
22768
|
-
export declare type TestUpserted = io.flow.internal.v0.models.TestUpserted;
|
|
22769
22808
|
export declare type ThirdPartyLogisticsPartner = io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
22770
22809
|
export declare type ThirdPartyLogisticsPickUpTimeWindow = io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow;
|
|
22771
22810
|
export declare type TieredFee = io.flow.internal.v0.models.TieredFee;
|