@flowio/types 11.24.64 → 11.24.65
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 +147 -63
- package/dist/api.d.ts +86 -4
- package/package.json +2 -2
- package/src/api-internal.ts +272 -70
- package/src/api.ts +105 -4
package/dist/api-internal.d.ts
CHANGED
|
@@ -1341,6 +1341,20 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1341
1341
|
readonly code: io.flow.payment.v0.enums.CvvResultCode;
|
|
1342
1342
|
readonly raw?: string;
|
|
1343
1343
|
}
|
|
1344
|
+
interface DeviceDetailsBrowser {
|
|
1345
|
+
readonly type: 'browser';
|
|
1346
|
+
readonly user_agent: string;
|
|
1347
|
+
readonly origin: string;
|
|
1348
|
+
readonly accept_language?: string;
|
|
1349
|
+
readonly ip?: string;
|
|
1350
|
+
readonly time_zone_offset?: number;
|
|
1351
|
+
readonly date_string?: string;
|
|
1352
|
+
readonly navigator_language?: string;
|
|
1353
|
+
readonly navigator_hardware_concurrency?: number;
|
|
1354
|
+
readonly cookie_created_at?: number;
|
|
1355
|
+
readonly session_duration?: number;
|
|
1356
|
+
readonly fingerprint?: string;
|
|
1357
|
+
}
|
|
1344
1358
|
interface DirectAuthorizationForm {
|
|
1345
1359
|
readonly discriminator: 'direct_authorization_form';
|
|
1346
1360
|
readonly token: string;
|
|
@@ -1810,6 +1824,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
1810
1824
|
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.ApplepaySdkCreateResultActionDetails | io.flow.payment.v0.models.ApplepaySdkValidateResultActionDetails | io.flow.payment.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.payment.v0.models.SelectIssuerOptionActionDetails;
|
|
1811
1825
|
type BrowserActionConfiguration = io.flow.payment.v0.models.CardBrowserActionConfiguration;
|
|
1812
1826
|
type ConfirmationDetails = io.flow.payment.v0.models.DirectDebit | io.flow.payment.v0.models.CardConfirmationSummary;
|
|
1827
|
+
type DeviceDetails = io.flow.payment.v0.models.DeviceDetailsBrowser;
|
|
1813
1828
|
type ExpandableCard = io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary;
|
|
1814
1829
|
type ExpandablePaymentProcessor = io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference;
|
|
1815
1830
|
type GatewayAuthenticationData = io.flow.payment.v0.models.StripeAuthenticationData;
|
|
@@ -4011,6 +4026,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4011
4026
|
readonly vendor?: string;
|
|
4012
4027
|
readonly body_html?: string;
|
|
4013
4028
|
readonly product_type?: string;
|
|
4029
|
+
readonly status?: string;
|
|
4014
4030
|
readonly options: io.flow.shopify.external.v0.models.Option[];
|
|
4015
4031
|
readonly tags?: string;
|
|
4016
4032
|
readonly template_suffix?: string;
|
|
@@ -4705,7 +4721,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
4705
4721
|
}
|
|
4706
4722
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
4707
4723
|
interface FulfillmentOrderInternationalDuties {
|
|
4708
|
-
readonly incoterm
|
|
4724
|
+
readonly incoterm?: io.flow.shopify.markets.v0.enums.IncotermDuties;
|
|
4709
4725
|
}
|
|
4710
4726
|
interface FulfillmentOrderLineItem {
|
|
4711
4727
|
readonly id: number;
|
|
@@ -5587,20 +5603,6 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
5587
5603
|
readonly type: 'adyen_v4';
|
|
5588
5604
|
readonly result: any;
|
|
5589
5605
|
}
|
|
5590
|
-
interface DeviceDetailsBrowser {
|
|
5591
|
-
readonly type: 'browser';
|
|
5592
|
-
readonly user_agent: string;
|
|
5593
|
-
readonly origin: string;
|
|
5594
|
-
readonly accept_language?: string;
|
|
5595
|
-
readonly ip?: string;
|
|
5596
|
-
readonly time_zone_offset?: number;
|
|
5597
|
-
readonly date_string?: string;
|
|
5598
|
-
readonly navigator_language?: string;
|
|
5599
|
-
readonly navigator_hardware_concurrency?: number;
|
|
5600
|
-
readonly cookie_created_at?: number;
|
|
5601
|
-
readonly session_duration?: number;
|
|
5602
|
-
readonly fingerprint?: string;
|
|
5603
|
-
}
|
|
5604
5606
|
interface DeviceFingerprintDetailsBrowser {
|
|
5605
5607
|
readonly type: 'browser';
|
|
5606
5608
|
readonly accept?: string;
|
|
@@ -5947,7 +5949,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
5947
5949
|
readonly amount: number;
|
|
5948
5950
|
readonly currency: string;
|
|
5949
5951
|
readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
|
|
5950
|
-
readonly device_details: io.flow.payment.
|
|
5952
|
+
readonly device_details: io.flow.payment.v0.unions.DeviceDetails;
|
|
5951
5953
|
readonly locale?: string;
|
|
5952
5954
|
readonly return_url: string;
|
|
5953
5955
|
readonly attributes?: Record<string, string>;
|
|
@@ -5961,7 +5963,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
5961
5963
|
readonly amount: number;
|
|
5962
5964
|
readonly currency: string;
|
|
5963
5965
|
readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
|
|
5964
|
-
readonly device_details: io.flow.payment.
|
|
5966
|
+
readonly device_details: io.flow.payment.v0.unions.DeviceDetails;
|
|
5965
5967
|
readonly locale?: string;
|
|
5966
5968
|
readonly return_url: string;
|
|
5967
5969
|
readonly attributes?: Record<string, string>;
|
|
@@ -6014,7 +6016,6 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
6014
6016
|
type Action = io.flow.payment.gateway.v0.models.ActionRedirect | io.flow.payment.gateway.v0.models.ActionUseSdkKlarnaV1 | io.flow.payment.gateway.v0.models.ActionUseSdkApplepayJsCreateSession | io.flow.payment.gateway.v0.models.ActionUseSdkApplepayJsCompleteValidation | io.flow.payment.gateway.v0.models.ActionUseSdkGooglepay | io.flow.payment.gateway.v0.models.ActionUseSdkPaypal | io.flow.payment.gateway.v0.models.ActionUseSdkStripeV3 | io.flow.payment.gateway.v0.models.ActionUseSdkAdyenV3 | io.flow.payment.gateway.v0.models.ActionUseSdkAdyenV4 | io.flow.payment.gateway.v0.models.ActionSelectPaymentOption | io.flow.payment.gateway.v0.models.ActionExecuteScript | io.flow.payment.gateway.v0.models.ActionDisplayInlineWindow | io.flow.payment.gateway.v0.models.ActionWait;
|
|
6015
6017
|
type CardAuthorizationActionResult = io.flow.payment.gateway.v0.models.AuthorizationActionResultAdyenV3 | io.flow.payment.gateway.v0.models.AuthorizationActionResultAdyenV4;
|
|
6016
6018
|
type CardNumber = io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCleartext | io.flow.payment.gateway.v0.models.PaymentMethodCardNumberCipher;
|
|
6017
|
-
type DeviceDetails = io.flow.payment.gateway.v0.models.DeviceDetailsBrowser;
|
|
6018
6019
|
type DeviceFingerprintDetails = io.flow.payment.gateway.v0.models.DeviceFingerprintDetailsBrowser;
|
|
6019
6020
|
type OrderInformation = io.flow.payment.gateway.v0.models.OrderInformationFlow | io.flow.payment.gateway.v0.models.OrderInformationDetails;
|
|
6020
6021
|
type PaymentCaptureOption = io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual;
|
|
@@ -7164,6 +7165,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7164
7165
|
readonly rules?: io.flow.experience.v0.models.OrderRulesSummary;
|
|
7165
7166
|
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
7166
7167
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
7168
|
+
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
7167
7169
|
}
|
|
7168
7170
|
interface OrderAddress {
|
|
7169
7171
|
readonly text?: string;
|
|
@@ -8923,7 +8925,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
8923
8925
|
declare namespace io.flow.billing.v0.enums {
|
|
8924
8926
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
8925
8927
|
type PayoutAttachmentType = 'transactions';
|
|
8926
|
-
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
8928
|
+
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
8927
8929
|
type StatementAttachmentType = 'csv';
|
|
8928
8930
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
8929
8931
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -8937,9 +8939,15 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8937
8939
|
readonly type: io.flow.billing.v0.enums.StatementAttachmentType;
|
|
8938
8940
|
readonly url: string;
|
|
8939
8941
|
}
|
|
8940
|
-
interface
|
|
8942
|
+
interface BankAccountFormInfo {
|
|
8943
|
+
readonly discriminator: 'info';
|
|
8941
8944
|
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
8942
8945
|
}
|
|
8946
|
+
interface BankAccountFormSimple {
|
|
8947
|
+
readonly discriminator: 'simple';
|
|
8948
|
+
readonly routing_number: string;
|
|
8949
|
+
readonly account_number: string;
|
|
8950
|
+
}
|
|
8943
8951
|
interface BankAccountReference {
|
|
8944
8952
|
readonly id: string;
|
|
8945
8953
|
}
|
|
@@ -9115,6 +9123,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9115
9123
|
}
|
|
9116
9124
|
}
|
|
9117
9125
|
declare namespace io.flow.billing.v0.unions {
|
|
9126
|
+
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
9118
9127
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
9119
9128
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
9120
9129
|
}
|
|
@@ -10195,6 +10204,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10195
10204
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
10196
10205
|
readonly transitions: io.flow.organization.onboarding.state.v0.models.OnboardingStateTransition[];
|
|
10197
10206
|
readonly current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
10207
|
+
readonly started_at?: string;
|
|
10208
|
+
readonly time_blocked?: number;
|
|
10209
|
+
readonly blocked_since?: string;
|
|
10210
|
+
readonly completed_at?: string;
|
|
10198
10211
|
}
|
|
10199
10212
|
interface SetupBlocked {
|
|
10200
10213
|
readonly discriminator: 'setup_blocked';
|
|
@@ -10481,6 +10494,26 @@ declare namespace io.flow.session.v0.unions {
|
|
|
10481
10494
|
type SessionAuthorization = io.flow.session.v0.models.OrganizationSessionAuthorization;
|
|
10482
10495
|
}
|
|
10483
10496
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
10497
|
+
interface BankAccountInfoCan {
|
|
10498
|
+
readonly discriminator: 'can';
|
|
10499
|
+
readonly routing_number: string;
|
|
10500
|
+
readonly account_number: string;
|
|
10501
|
+
}
|
|
10502
|
+
interface BankAccountInfoFra {
|
|
10503
|
+
readonly discriminator: 'fra';
|
|
10504
|
+
readonly swift_code: string;
|
|
10505
|
+
readonly iban: string;
|
|
10506
|
+
}
|
|
10507
|
+
interface BankAccountInfoGbr {
|
|
10508
|
+
readonly discriminator: 'gbr';
|
|
10509
|
+
readonly swift_code: string;
|
|
10510
|
+
readonly iban: string;
|
|
10511
|
+
}
|
|
10512
|
+
interface BankAccountInfoIta {
|
|
10513
|
+
readonly discriminator: 'ita';
|
|
10514
|
+
readonly swift_code: string;
|
|
10515
|
+
readonly iban: string;
|
|
10516
|
+
}
|
|
10484
10517
|
interface BankAccountInfoUsa {
|
|
10485
10518
|
readonly discriminator: 'usa';
|
|
10486
10519
|
readonly routing_number: string;
|
|
@@ -10488,7 +10521,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
10488
10521
|
}
|
|
10489
10522
|
}
|
|
10490
10523
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
10491
|
-
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa;
|
|
10524
|
+
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
10492
10525
|
}
|
|
10493
10526
|
declare namespace io.flow.internal.v0.enums {
|
|
10494
10527
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
@@ -10498,8 +10531,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10498
10531
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
10499
10532
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
10500
10533
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
10534
|
+
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
10501
10535
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
10502
10536
|
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';
|
|
10537
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_total' | 'channel_transactions_count' | 'channel_transactions_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'fulfillments_count' | 'fulfillments_total' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_capture_deletion_unprocessed_count' | 'queued_channel_transaction_unprocessed_count' | 'queued_channel_organization_unprocessed_count' | 'queued_consumer_invoice_unprocessed_count' | 'queued_label_tracking_summary_unprocessed_count' | 'queued_order_unprocessed_count' | 'queued_order_identifier_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_refund_deletion_unprocessed_count' | 'queued_statement_batch_unprocessed_count' | 'queued_statement_batch_email_unprocessed_count' | 'queued_statement_email_unprocessed_count' | 'queued_statement_summary_email_unprocessed_count' | 'shipping_notifications_total' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'pending_payouts_max_age' | 'average_payout_amount';
|
|
10503
10538
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
10504
10539
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
10505
10540
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -10618,7 +10653,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10618
10653
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10619
10654
|
type EmptyAttribute = 'irrelevant';
|
|
10620
10655
|
type ErpFileType = 'vendor';
|
|
10621
|
-
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' | 'label_generation_settings_upserted' | 'label_generation_settings_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' | 'organization_bank_account_upserted' | 'organization_bank_account_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' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | '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' | 'harmonization_classification_statistics_published' | '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_status_change_upserted' | 'organization_status_change_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | 'organization_restriction_status_upserted' | 'organization_restriction_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_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_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';
|
|
10656
|
+
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' | 'daily_value_upserted' | 'daily_value_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_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' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_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' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | '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' | 'harmonization_classification_statistics_published' | '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_status_change_upserted' | 'organization_status_change_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_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' | 'organization_restriction_status_upserted' | 'organization_restriction_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_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_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';
|
|
10622
10657
|
type ExperienceImportType = 'experience_with_settings';
|
|
10623
10658
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10624
10659
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10683,6 +10718,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10683
10718
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
10684
10719
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
10685
10720
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
10721
|
+
type OrganizationMetricType = 'organization_restriction_snapshot' | 'organization_restriction_status';
|
|
10686
10722
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
10687
10723
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
10688
10724
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason' | 'additional_rejection_info';
|
|
@@ -10700,10 +10736,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10700
10736
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
10701
10737
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
10702
10738
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
10739
|
+
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
10703
10740
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
10704
10741
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
10705
10742
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
10706
10743
|
type PromptTarget = 'browse' | 'checkout';
|
|
10744
|
+
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'channel_organization' | 'consumer_invoice' | 'label_tracking_summary' | 'order' | 'order_identifier' | 'refund' | 'refund_deletion' | 'statement_batch' | 'statement_batch_email' | 'statement_email' | 'statement_summary_email' | 'wash';
|
|
10707
10745
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
10708
10746
|
type RateSource = 'calculated' | 'market';
|
|
10709
10747
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
@@ -10736,7 +10774,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10736
10774
|
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
10737
10775
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
10738
10776
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
10739
|
-
type SnoozeSourceType = '
|
|
10777
|
+
type SnoozeSourceType = 'queued_record';
|
|
10740
10778
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
10741
10779
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
10742
10780
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
@@ -11560,7 +11598,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11560
11598
|
}
|
|
11561
11599
|
interface BillingStatementBatch {
|
|
11562
11600
|
readonly id: string;
|
|
11563
|
-
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
11564
11601
|
readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
11565
11602
|
}
|
|
11566
11603
|
interface BillingStatementBatchDeleted {
|
|
@@ -14152,6 +14189,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14152
14189
|
readonly status: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
14153
14190
|
readonly number_of_items: number;
|
|
14154
14191
|
}
|
|
14192
|
+
interface ClassificationSummaryReportPayload {
|
|
14193
|
+
readonly organization_id?: string;
|
|
14194
|
+
readonly product_id?: string;
|
|
14195
|
+
readonly date_from?: string;
|
|
14196
|
+
readonly date_to?: string;
|
|
14197
|
+
readonly email: string;
|
|
14198
|
+
readonly limit: number;
|
|
14199
|
+
}
|
|
14155
14200
|
interface ClassificationWrapper {
|
|
14156
14201
|
readonly classifications: io.flow.internal.v0.unions.ClassificationResponse[];
|
|
14157
14202
|
}
|
|
@@ -14540,6 +14585,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14540
14585
|
readonly organization_id: string;
|
|
14541
14586
|
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
14542
14587
|
}
|
|
14588
|
+
interface DailyValue {
|
|
14589
|
+
readonly id: string;
|
|
14590
|
+
readonly key: io.flow.internal.v0.enums.BillingMetricKey;
|
|
14591
|
+
readonly value: number;
|
|
14592
|
+
readonly date: string;
|
|
14593
|
+
}
|
|
14594
|
+
interface DailyValueDeleted {
|
|
14595
|
+
readonly discriminator: 'daily_value_deleted';
|
|
14596
|
+
readonly event_id: string;
|
|
14597
|
+
readonly timestamp: string;
|
|
14598
|
+
readonly id: string;
|
|
14599
|
+
}
|
|
14600
|
+
interface DailyValueUpserted {
|
|
14601
|
+
readonly discriminator: 'daily_value_upserted';
|
|
14602
|
+
readonly event_id: string;
|
|
14603
|
+
readonly timestamp: string;
|
|
14604
|
+
readonly daily_value: io.flow.internal.v0.models.DailyValue;
|
|
14605
|
+
}
|
|
14543
14606
|
interface DebugDetails {
|
|
14544
14607
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
14545
14608
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
@@ -14586,8 +14649,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14586
14649
|
readonly type: string;
|
|
14587
14650
|
readonly processing_transaction_id?: string;
|
|
14588
14651
|
readonly queue_errors?: string[];
|
|
14589
|
-
readonly
|
|
14590
|
-
readonly channel_transaction_ignore_reason?: string;
|
|
14652
|
+
readonly ignore_reason?: string;
|
|
14591
14653
|
}
|
|
14592
14654
|
interface DebugTransactionDetails {
|
|
14593
14655
|
readonly id: string;
|
|
@@ -14642,6 +14704,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14642
14704
|
readonly discriminator: 'delete_index_task';
|
|
14643
14705
|
readonly name: string;
|
|
14644
14706
|
}
|
|
14707
|
+
interface DeleteTransitionsPutForm {
|
|
14708
|
+
readonly transition_ids: string[];
|
|
14709
|
+
}
|
|
14645
14710
|
interface DeliveredDutyOption {
|
|
14646
14711
|
readonly methods: io.flow.common.v0.enums.DeliveredDuty[];
|
|
14647
14712
|
readonly message?: io.flow.internal.v0.models.DeliveredDutyOptionMessage;
|
|
@@ -15444,28 +15509,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15444
15509
|
readonly duty_guarantee?: io.flow.internal.v0.models.Fee;
|
|
15445
15510
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
15446
15511
|
}
|
|
15447
|
-
interface File {
|
|
15448
|
-
readonly id: string;
|
|
15449
|
-
readonly stream: io.flow.internal.v0.models.StreamReference;
|
|
15450
|
-
readonly url: string;
|
|
15451
|
-
readonly created_at: string;
|
|
15452
|
-
readonly metadata: io.flow.internal.v0.models.FileMetadata;
|
|
15453
|
-
readonly confirmation?: io.flow.internal.v0.models.FileConfirmation;
|
|
15454
|
-
}
|
|
15455
|
-
interface FileConfirmation {
|
|
15456
|
-
readonly counts: io.flow.internal.v0.models.FileMetadataCounts;
|
|
15457
|
-
}
|
|
15458
|
-
interface FileConfirmationForm {
|
|
15459
|
-
readonly count_transactions: number;
|
|
15460
|
-
readonly count_statements: number;
|
|
15461
|
-
}
|
|
15462
|
-
interface FileMetadata {
|
|
15463
|
-
readonly counts: io.flow.internal.v0.models.FileMetadataCounts;
|
|
15464
|
-
}
|
|
15465
|
-
interface FileMetadataCounts {
|
|
15466
|
-
readonly transactions: number;
|
|
15467
|
-
readonly statements: number;
|
|
15468
|
-
}
|
|
15469
15512
|
interface FinanceBankAccount {
|
|
15470
15513
|
readonly id: string;
|
|
15471
15514
|
readonly accounts: io.flow.internal.v0.models.AccountSummary[];
|
|
@@ -18334,6 +18377,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18334
18377
|
interface OrganizationOnboardingStateAdjustmentResult {
|
|
18335
18378
|
readonly organization_onboarding_state?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
18336
18379
|
}
|
|
18380
|
+
interface OrganizationOnboardingStateAuditResult {
|
|
18381
|
+
readonly organization: string;
|
|
18382
|
+
readonly validation_errors: string[];
|
|
18383
|
+
}
|
|
18337
18384
|
interface OrganizationPaymentSetting {
|
|
18338
18385
|
readonly id: string;
|
|
18339
18386
|
readonly organization_id: string;
|
|
@@ -19452,6 +19499,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19452
19499
|
readonly discriminator: 'rex';
|
|
19453
19500
|
readonly number: string;
|
|
19454
19501
|
}
|
|
19502
|
+
interface ReportRuleDecision {
|
|
19503
|
+
readonly rule_id: string;
|
|
19504
|
+
readonly rule_name: string;
|
|
19505
|
+
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
19506
|
+
readonly count: number;
|
|
19507
|
+
}
|
|
19508
|
+
interface ReportSummary {
|
|
19509
|
+
readonly task_id: string;
|
|
19510
|
+
}
|
|
19455
19511
|
interface RequeueRequestForm {
|
|
19456
19512
|
readonly product_ids?: string[];
|
|
19457
19513
|
readonly hs6_codes?: string[];
|
|
@@ -20196,6 +20252,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20196
20252
|
readonly timestamp: string;
|
|
20197
20253
|
readonly id: string;
|
|
20198
20254
|
}
|
|
20255
|
+
interface ShopifyShopStatistics {
|
|
20256
|
+
readonly id: string;
|
|
20257
|
+
readonly initial_catalog_synced_at?: string;
|
|
20258
|
+
readonly catalog_sync_duration?: number;
|
|
20259
|
+
readonly catalog_products_count?: number;
|
|
20260
|
+
}
|
|
20199
20261
|
interface ShopifyShopUpserted {
|
|
20200
20262
|
readonly discriminator: 'shopify_shop_upserted';
|
|
20201
20263
|
readonly event_id: string;
|
|
@@ -20324,6 +20386,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20324
20386
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
20325
20387
|
readonly spot_rate: io.flow.internal.v0.models.SpotRate;
|
|
20326
20388
|
}
|
|
20389
|
+
interface StandaloneAttachment {
|
|
20390
|
+
readonly id: string;
|
|
20391
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
20392
|
+
readonly key: io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
20393
|
+
readonly name: string;
|
|
20394
|
+
readonly url: string;
|
|
20395
|
+
}
|
|
20396
|
+
interface StandaloneAttachmentDeleted {
|
|
20397
|
+
readonly discriminator: 'standalone_attachment_deleted';
|
|
20398
|
+
readonly event_id: string;
|
|
20399
|
+
readonly timestamp: string;
|
|
20400
|
+
readonly id: string;
|
|
20401
|
+
}
|
|
20402
|
+
interface StandaloneAttachmentUpserted {
|
|
20403
|
+
readonly discriminator: 'standalone_attachment_upserted';
|
|
20404
|
+
readonly event_id: string;
|
|
20405
|
+
readonly timestamp: string;
|
|
20406
|
+
readonly attachment: io.flow.internal.v0.models.StandaloneAttachment;
|
|
20407
|
+
}
|
|
20327
20408
|
interface StoreConnection {
|
|
20328
20409
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
20329
20410
|
readonly id: string;
|
|
@@ -20332,13 +20413,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20332
20413
|
interface StoreConnectionForm {
|
|
20333
20414
|
readonly organization: string;
|
|
20334
20415
|
}
|
|
20335
|
-
interface Stream {
|
|
20336
|
-
readonly id: string;
|
|
20337
|
-
readonly key: string;
|
|
20338
|
-
}
|
|
20339
|
-
interface StreamReference {
|
|
20340
|
-
readonly id: string;
|
|
20341
|
-
}
|
|
20342
20416
|
interface StringFeatureDefaultValue {
|
|
20343
20417
|
readonly discriminator: 'string';
|
|
20344
20418
|
readonly value: string;
|
|
@@ -21262,7 +21336,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21262
21336
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
21263
21337
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
21264
21338
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
21265
|
-
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.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | 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.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | 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.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | 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.HarmonizationClassificationStatisticsPublished | 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.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | 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.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | 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;
|
|
21339
|
+
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.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | 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.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | 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.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | 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.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | 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.HarmonizationClassificationStatisticsPublished | 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.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | 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.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | 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.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | 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;
|
|
21266
21340
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
21267
21341
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
21268
21342
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -21431,6 +21505,7 @@ export declare type AuthorizedChargeStatus = io.flow.internal.v0.models.Authoriz
|
|
|
21431
21505
|
export declare type AuthorizedLineItemCharge = io.flow.internal.v0.models.AuthorizedLineItemCharge;
|
|
21432
21506
|
export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.AuthorizedOrderCharge;
|
|
21433
21507
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
21508
|
+
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
21434
21509
|
export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
21435
21510
|
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
21436
21511
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
@@ -21447,6 +21522,7 @@ export declare type BillingAuthorizationReference = io.flow.internal.v0.models.B
|
|
|
21447
21522
|
export declare type BillingInvoiceSummary = io.flow.internal.v0.models.BillingInvoiceSummary;
|
|
21448
21523
|
export declare type BillingLabelSummary = io.flow.internal.v0.models.BillingLabelSummary;
|
|
21449
21524
|
export declare type BillingLabelTrackingSummaryReference = io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
|
|
21525
|
+
export declare type BillingMetricKey = io.flow.internal.v0.enums.BillingMetricKey;
|
|
21450
21526
|
export declare type BillingOrderDestination = io.flow.internal.v0.models.BillingOrderDestination;
|
|
21451
21527
|
export declare type BillingOrderSummary = io.flow.internal.v0.models.BillingOrderSummary;
|
|
21452
21528
|
export declare type BillingOrderTransactionOrderReference = io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -22158,6 +22234,7 @@ export declare type ClassificationProductSummaryPage = io.flow.internal.v0.model
|
|
|
22158
22234
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
22159
22235
|
export declare type ClassificationResponse = io.flow.internal.v0.unions.ClassificationResponse;
|
|
22160
22236
|
export declare type ClassificationStatistics = io.flow.internal.v0.models.ClassificationStatistics;
|
|
22237
|
+
export declare type ClassificationSummaryReportPayload = io.flow.internal.v0.models.ClassificationSummaryReportPayload;
|
|
22161
22238
|
export declare type ClassificationTaxonomy = io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
22162
22239
|
export declare type ClassificationWrapper = io.flow.internal.v0.models.ClassificationWrapper;
|
|
22163
22240
|
export declare type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
@@ -22226,6 +22303,9 @@ export declare type DailyExperimentEngineResults = io.flow.internal.v0.models.Da
|
|
|
22226
22303
|
export declare type DailyExperimentResults = io.flow.internal.v0.models.DailyExperimentResults;
|
|
22227
22304
|
export declare type DailyExperimentResultsDeleted = io.flow.internal.v0.models.DailyExperimentResultsDeleted;
|
|
22228
22305
|
export declare type DailyExperimentResultsUpserted = io.flow.internal.v0.models.DailyExperimentResultsUpserted;
|
|
22306
|
+
export declare type DailyValue = io.flow.internal.v0.models.DailyValue;
|
|
22307
|
+
export declare type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
|
|
22308
|
+
export declare type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
22229
22309
|
export declare type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
22230
22310
|
export declare type DebugLabel = io.flow.internal.v0.models.DebugLabel;
|
|
22231
22311
|
export declare type DebugLabelTransactionSummary = io.flow.internal.v0.models.DebugLabelTransactionSummary;
|
|
@@ -22246,6 +22326,7 @@ export declare type DeclineReasonFraud = io.flow.internal.v0.models.DeclineReaso
|
|
|
22246
22326
|
export declare type DecryptCipherForm = io.flow.internal.v0.models.DecryptCipherForm;
|
|
22247
22327
|
export declare type DecryptedCipher = io.flow.internal.v0.models.DecryptedCipher;
|
|
22248
22328
|
export declare type DeleteIndexTask = io.flow.internal.v0.models.DeleteIndexTask;
|
|
22329
|
+
export declare type DeleteTransitionsPutForm = io.flow.internal.v0.models.DeleteTransitionsPutForm;
|
|
22249
22330
|
export declare type DeliveredDutyOption = io.flow.internal.v0.models.DeliveredDutyOption;
|
|
22250
22331
|
export declare type DeliveredDutyOptionMessage = io.flow.internal.v0.models.DeliveredDutyOptionMessage;
|
|
22251
22332
|
export declare type DeliveredDutyOptionMessageType = io.flow.internal.v0.enums.DeliveredDutyOptionMessageType;
|
|
@@ -22418,11 +22499,6 @@ export declare type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
|
|
|
22418
22499
|
export declare type FeedsExport = io.flow.internal.v0.models.FeedsExport;
|
|
22419
22500
|
export declare type Fees = io.flow.internal.v0.models.Fees;
|
|
22420
22501
|
export declare type FeesSource = io.flow.internal.v0.enums.FeesSource;
|
|
22421
|
-
export declare type File = io.flow.internal.v0.models.File;
|
|
22422
|
-
export declare type FileConfirmation = io.flow.internal.v0.models.FileConfirmation;
|
|
22423
|
-
export declare type FileConfirmationForm = io.flow.internal.v0.models.FileConfirmationForm;
|
|
22424
|
-
export declare type FileMetadata = io.flow.internal.v0.models.FileMetadata;
|
|
22425
|
-
export declare type FileMetadataCounts = io.flow.internal.v0.models.FileMetadataCounts;
|
|
22426
22502
|
export declare type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
|
|
22427
22503
|
export declare type FinanceBankAccountOwner = io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
22428
22504
|
export declare type FinanceBankPayment = io.flow.internal.v0.models.FinanceBankPayment;
|
|
@@ -22899,7 +22975,9 @@ export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.Or
|
|
|
22899
22975
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
22900
22976
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
22901
22977
|
export declare type OrganizationMembershipCopyForm = io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
22978
|
+
export declare type OrganizationMetricType = io.flow.internal.v0.enums.OrganizationMetricType;
|
|
22902
22979
|
export declare type OrganizationOnboardingStateAdjustmentResult = io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult;
|
|
22980
|
+
export declare type OrganizationOnboardingStateAuditResult = io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult;
|
|
22903
22981
|
export declare type OrganizationPaymentSetting = io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
22904
22982
|
export declare type OrganizationPaymentSettingDeleted = io.flow.internal.v0.models.OrganizationPaymentSettingDeleted;
|
|
22905
22983
|
export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.OrganizationPaymentSettingForm;
|
|
@@ -23030,6 +23108,7 @@ export declare type ProductHarmonizationForm = io.flow.internal.v0.models.Produc
|
|
|
23030
23108
|
export declare type ProductLabels = io.flow.internal.v0.models.ProductLabels;
|
|
23031
23109
|
export declare type ProductListSettingsForm = io.flow.internal.v0.models.ProductListSettingsForm;
|
|
23032
23110
|
export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductReviewHistory;
|
|
23111
|
+
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
23033
23112
|
export declare type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
23034
23113
|
export declare type PromptCheckoutDisplayPosition = io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
23035
23114
|
export declare type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
|
|
@@ -23039,6 +23118,7 @@ export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.mode
|
|
|
23039
23118
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
23040
23119
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
23041
23120
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
23121
|
+
export declare type QueuedRecordType = io.flow.internal.v0.enums.QueuedRecordType;
|
|
23042
23122
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
23043
23123
|
export declare type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
23044
23124
|
export declare type RateAndRuleItem = io.flow.internal.v0.models.RateAndRuleItem;
|
|
@@ -23105,6 +23185,8 @@ export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v
|
|
|
23105
23185
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23106
23186
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
23107
23187
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
23188
|
+
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
23189
|
+
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
23108
23190
|
export declare type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
23109
23191
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
23110
23192
|
export declare type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -23263,6 +23345,7 @@ export declare type ShopifyPromotionRule = io.flow.internal.v0.models.ShopifyPro
|
|
|
23263
23345
|
export declare type ShopifyPromotionStatus = io.flow.internal.v0.enums.ShopifyPromotionStatus;
|
|
23264
23346
|
export declare type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
|
|
23265
23347
|
export declare type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopDeleted;
|
|
23348
|
+
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
23266
23349
|
export declare type ShopifyShopUpserted = io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
23267
23350
|
export declare type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
23268
23351
|
export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebhookEvent;
|
|
@@ -23290,14 +23373,15 @@ export declare type SpotRateMetadataIdentity = io.flow.internal.v0.models.SpotRa
|
|
|
23290
23373
|
export declare type SpotRateMetadataRate = io.flow.internal.v0.models.SpotRateMetadataRate;
|
|
23291
23374
|
export declare type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
|
|
23292
23375
|
export declare type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
|
|
23376
|
+
export declare type StandaloneAttachment = io.flow.internal.v0.models.StandaloneAttachment;
|
|
23377
|
+
export declare type StandaloneAttachmentDeleted = io.flow.internal.v0.models.StandaloneAttachmentDeleted;
|
|
23378
|
+
export declare type StandaloneAttachmentUpserted = io.flow.internal.v0.models.StandaloneAttachmentUpserted;
|
|
23293
23379
|
export declare type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
23294
23380
|
export declare type StatementTransferTransactionLocation = io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
23295
23381
|
export declare type StatisticType = io.flow.internal.v0.enums.StatisticType;
|
|
23296
23382
|
export declare type Status = io.flow.internal.v0.enums.Status;
|
|
23297
23383
|
export declare type StoreConnection = io.flow.internal.v0.models.StoreConnection;
|
|
23298
23384
|
export declare type StoreConnectionForm = io.flow.internal.v0.models.StoreConnectionForm;
|
|
23299
|
-
export declare type Stream = io.flow.internal.v0.models.Stream;
|
|
23300
|
-
export declare type StreamReference = io.flow.internal.v0.models.StreamReference;
|
|
23301
23385
|
export declare type StringFeatureDefaultValue = io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
23302
23386
|
export declare type StringFeatureRule = io.flow.internal.v0.models.StringFeatureRule;
|
|
23303
23387
|
export declare type StringFeatureRuleForm = io.flow.internal.v0.models.StringFeatureRuleForm;
|