@flowio/types 11.24.64 → 11.24.66
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 +181 -63
- package/dist/api.d.ts +89 -4
- package/package.json +2 -2
- package/src/api-internal.ts +318 -70
- package/src/api.ts +108 -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;
|
|
@@ -2732,6 +2747,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
2732
2747
|
readonly order_identifier?: string;
|
|
2733
2748
|
readonly fulfillment_key?: string;
|
|
2734
2749
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
2750
|
+
readonly created_at?: string;
|
|
2735
2751
|
readonly updated_at?: string;
|
|
2736
2752
|
}
|
|
2737
2753
|
interface ShippingNotificationVersion {
|
|
@@ -4011,6 +4027,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4011
4027
|
readonly vendor?: string;
|
|
4012
4028
|
readonly body_html?: string;
|
|
4013
4029
|
readonly product_type?: string;
|
|
4030
|
+
readonly status?: string;
|
|
4014
4031
|
readonly options: io.flow.shopify.external.v0.models.Option[];
|
|
4015
4032
|
readonly tags?: string;
|
|
4016
4033
|
readonly template_suffix?: string;
|
|
@@ -4705,7 +4722,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
4705
4722
|
}
|
|
4706
4723
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
4707
4724
|
interface FulfillmentOrderInternationalDuties {
|
|
4708
|
-
readonly incoterm
|
|
4725
|
+
readonly incoterm?: io.flow.shopify.markets.v0.enums.IncotermDuties;
|
|
4709
4726
|
}
|
|
4710
4727
|
interface FulfillmentOrderLineItem {
|
|
4711
4728
|
readonly id: number;
|
|
@@ -5587,20 +5604,6 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
5587
5604
|
readonly type: 'adyen_v4';
|
|
5588
5605
|
readonly result: any;
|
|
5589
5606
|
}
|
|
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
5607
|
interface DeviceFingerprintDetailsBrowser {
|
|
5605
5608
|
readonly type: 'browser';
|
|
5606
5609
|
readonly accept?: string;
|
|
@@ -5947,7 +5950,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
5947
5950
|
readonly amount: number;
|
|
5948
5951
|
readonly currency: string;
|
|
5949
5952
|
readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
|
|
5950
|
-
readonly device_details: io.flow.payment.
|
|
5953
|
+
readonly device_details: io.flow.payment.v0.unions.DeviceDetails;
|
|
5951
5954
|
readonly locale?: string;
|
|
5952
5955
|
readonly return_url: string;
|
|
5953
5956
|
readonly attributes?: Record<string, string>;
|
|
@@ -5961,7 +5964,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
5961
5964
|
readonly amount: number;
|
|
5962
5965
|
readonly currency: string;
|
|
5963
5966
|
readonly order_information: io.flow.payment.gateway.v0.unions.OrderInformation;
|
|
5964
|
-
readonly device_details: io.flow.payment.
|
|
5967
|
+
readonly device_details: io.flow.payment.v0.unions.DeviceDetails;
|
|
5965
5968
|
readonly locale?: string;
|
|
5966
5969
|
readonly return_url: string;
|
|
5967
5970
|
readonly attributes?: Record<string, string>;
|
|
@@ -6014,7 +6017,6 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
6014
6017
|
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
6018
|
type CardAuthorizationActionResult = io.flow.payment.gateway.v0.models.AuthorizationActionResultAdyenV3 | io.flow.payment.gateway.v0.models.AuthorizationActionResultAdyenV4;
|
|
6016
6019
|
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
6020
|
type DeviceFingerprintDetails = io.flow.payment.gateway.v0.models.DeviceFingerprintDetailsBrowser;
|
|
6019
6021
|
type OrderInformation = io.flow.payment.gateway.v0.models.OrderInformationFlow | io.flow.payment.gateway.v0.models.OrderInformationDetails;
|
|
6020
6022
|
type PaymentCaptureOption = io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual;
|
|
@@ -7164,6 +7166,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7164
7166
|
readonly rules?: io.flow.experience.v0.models.OrderRulesSummary;
|
|
7165
7167
|
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
7166
7168
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
7169
|
+
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
7167
7170
|
}
|
|
7168
7171
|
interface OrderAddress {
|
|
7169
7172
|
readonly text?: string;
|
|
@@ -7238,6 +7241,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7238
7241
|
readonly attributes?: Record<string, string>;
|
|
7239
7242
|
readonly authorization_keys?: string[];
|
|
7240
7243
|
readonly options?: io.flow.experience.v0.models.OrderOptions;
|
|
7244
|
+
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
7241
7245
|
}
|
|
7242
7246
|
interface OrderGeo {
|
|
7243
7247
|
readonly ip?: string;
|
|
@@ -7332,6 +7336,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7332
7336
|
readonly attributes?: Record<string, string>;
|
|
7333
7337
|
readonly authorization_keys?: string[];
|
|
7334
7338
|
readonly options?: io.flow.experience.v0.models.OrderOptions;
|
|
7339
|
+
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
7335
7340
|
}
|
|
7336
7341
|
interface OrderReference {
|
|
7337
7342
|
readonly discriminator: 'order_reference';
|
|
@@ -8923,7 +8928,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
8923
8928
|
declare namespace io.flow.billing.v0.enums {
|
|
8924
8929
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
8925
8930
|
type PayoutAttachmentType = 'transactions';
|
|
8926
|
-
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
8931
|
+
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
8927
8932
|
type StatementAttachmentType = 'csv';
|
|
8928
8933
|
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
8934
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -8937,9 +8942,15 @@ declare namespace io.flow.billing.v0.models {
|
|
|
8937
8942
|
readonly type: io.flow.billing.v0.enums.StatementAttachmentType;
|
|
8938
8943
|
readonly url: string;
|
|
8939
8944
|
}
|
|
8940
|
-
interface
|
|
8945
|
+
interface BankAccountFormInfo {
|
|
8946
|
+
readonly discriminator: 'info';
|
|
8941
8947
|
readonly info: io.flow.billing.bank.account.v0.unions.BankAccountInfo;
|
|
8942
8948
|
}
|
|
8949
|
+
interface BankAccountFormSimple {
|
|
8950
|
+
readonly discriminator: 'simple';
|
|
8951
|
+
readonly routing_number: string;
|
|
8952
|
+
readonly account_number: string;
|
|
8953
|
+
}
|
|
8943
8954
|
interface BankAccountReference {
|
|
8944
8955
|
readonly id: string;
|
|
8945
8956
|
}
|
|
@@ -9115,6 +9126,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9115
9126
|
}
|
|
9116
9127
|
}
|
|
9117
9128
|
declare namespace io.flow.billing.v0.unions {
|
|
9129
|
+
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
9118
9130
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
9119
9131
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
9120
9132
|
}
|
|
@@ -10195,6 +10207,10 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10195
10207
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
10196
10208
|
readonly transitions: io.flow.organization.onboarding.state.v0.models.OnboardingStateTransition[];
|
|
10197
10209
|
readonly current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
10210
|
+
readonly started_at?: string;
|
|
10211
|
+
readonly time_blocked?: number;
|
|
10212
|
+
readonly blocked_since?: string;
|
|
10213
|
+
readonly completed_at?: string;
|
|
10198
10214
|
}
|
|
10199
10215
|
interface SetupBlocked {
|
|
10200
10216
|
readonly discriminator: 'setup_blocked';
|
|
@@ -10481,6 +10497,26 @@ declare namespace io.flow.session.v0.unions {
|
|
|
10481
10497
|
type SessionAuthorization = io.flow.session.v0.models.OrganizationSessionAuthorization;
|
|
10482
10498
|
}
|
|
10483
10499
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
10500
|
+
interface BankAccountInfoCan {
|
|
10501
|
+
readonly discriminator: 'can';
|
|
10502
|
+
readonly routing_number: string;
|
|
10503
|
+
readonly account_number: string;
|
|
10504
|
+
}
|
|
10505
|
+
interface BankAccountInfoFra {
|
|
10506
|
+
readonly discriminator: 'fra';
|
|
10507
|
+
readonly swift_code: string;
|
|
10508
|
+
readonly iban: string;
|
|
10509
|
+
}
|
|
10510
|
+
interface BankAccountInfoGbr {
|
|
10511
|
+
readonly discriminator: 'gbr';
|
|
10512
|
+
readonly swift_code: string;
|
|
10513
|
+
readonly iban: string;
|
|
10514
|
+
}
|
|
10515
|
+
interface BankAccountInfoIta {
|
|
10516
|
+
readonly discriminator: 'ita';
|
|
10517
|
+
readonly swift_code: string;
|
|
10518
|
+
readonly iban: string;
|
|
10519
|
+
}
|
|
10484
10520
|
interface BankAccountInfoUsa {
|
|
10485
10521
|
readonly discriminator: 'usa';
|
|
10486
10522
|
readonly routing_number: string;
|
|
@@ -10488,7 +10524,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
10488
10524
|
}
|
|
10489
10525
|
}
|
|
10490
10526
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
10491
|
-
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa;
|
|
10527
|
+
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
10528
|
}
|
|
10493
10529
|
declare namespace io.flow.internal.v0.enums {
|
|
10494
10530
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
@@ -10498,8 +10534,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10498
10534
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
10499
10535
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
10500
10536
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
10537
|
+
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
10501
10538
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
10502
10539
|
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';
|
|
10540
|
+
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
10541
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
10504
10542
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
10505
10543
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
@@ -10618,7 +10656,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10618
10656
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10619
10657
|
type EmptyAttribute = 'irrelevant';
|
|
10620
10658
|
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';
|
|
10659
|
+
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_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_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
10660
|
type ExperienceImportType = 'experience_with_settings';
|
|
10623
10661
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10624
10662
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10683,6 +10721,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10683
10721
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
10684
10722
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
10685
10723
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
10724
|
+
type OrganizationMetricType = 'organization_restriction_snapshot' | 'organization_restriction_status';
|
|
10686
10725
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
10687
10726
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
10688
10727
|
type OrganizationRestrictionNoteType = 'internal' | 'rejection_reason' | 'additional_rejection_info';
|
|
@@ -10700,10 +10739,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10700
10739
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
10701
10740
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
10702
10741
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
10742
|
+
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
10703
10743
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
10704
10744
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
10705
10745
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
10706
10746
|
type PromptTarget = 'browse' | 'checkout';
|
|
10747
|
+
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
10748
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
10708
10749
|
type RateSource = 'calculated' | 'market';
|
|
10709
10750
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
@@ -10736,7 +10777,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10736
10777
|
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
10737
10778
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
10738
10779
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
10739
|
-
type SnoozeSourceType = '
|
|
10780
|
+
type SnoozeSourceType = 'queued_record';
|
|
10740
10781
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
10741
10782
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
10742
10783
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
@@ -11560,7 +11601,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11560
11601
|
}
|
|
11561
11602
|
interface BillingStatementBatch {
|
|
11562
11603
|
readonly id: string;
|
|
11563
|
-
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
11564
11604
|
readonly reconciliation: io.flow.internal.v0.models.BillingStatementBatchReconciliation;
|
|
11565
11605
|
}
|
|
11566
11606
|
interface BillingStatementBatchDeleted {
|
|
@@ -14152,6 +14192,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14152
14192
|
readonly status: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
14153
14193
|
readonly number_of_items: number;
|
|
14154
14194
|
}
|
|
14195
|
+
interface ClassificationSummaryReportPayload {
|
|
14196
|
+
readonly organization_id?: string;
|
|
14197
|
+
readonly product_id?: string;
|
|
14198
|
+
readonly date_from?: string;
|
|
14199
|
+
readonly date_to?: string;
|
|
14200
|
+
readonly email: string;
|
|
14201
|
+
readonly limit: number;
|
|
14202
|
+
}
|
|
14155
14203
|
interface ClassificationWrapper {
|
|
14156
14204
|
readonly classifications: io.flow.internal.v0.unions.ClassificationResponse[];
|
|
14157
14205
|
}
|
|
@@ -14540,6 +14588,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14540
14588
|
readonly organization_id: string;
|
|
14541
14589
|
readonly daily_experiment_results: io.flow.internal.v0.models.DailyExperimentResults;
|
|
14542
14590
|
}
|
|
14591
|
+
interface DailyValue {
|
|
14592
|
+
readonly id: string;
|
|
14593
|
+
readonly key: io.flow.internal.v0.enums.BillingMetricKey;
|
|
14594
|
+
readonly value: number;
|
|
14595
|
+
readonly date: string;
|
|
14596
|
+
}
|
|
14597
|
+
interface DailyValueDeleted {
|
|
14598
|
+
readonly discriminator: 'daily_value_deleted';
|
|
14599
|
+
readonly event_id: string;
|
|
14600
|
+
readonly timestamp: string;
|
|
14601
|
+
readonly id: string;
|
|
14602
|
+
}
|
|
14603
|
+
interface DailyValueUpserted {
|
|
14604
|
+
readonly discriminator: 'daily_value_upserted';
|
|
14605
|
+
readonly event_id: string;
|
|
14606
|
+
readonly timestamp: string;
|
|
14607
|
+
readonly daily_value: io.flow.internal.v0.models.DailyValue;
|
|
14608
|
+
}
|
|
14543
14609
|
interface DebugDetails {
|
|
14544
14610
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
14545
14611
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
@@ -14586,8 +14652,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14586
14652
|
readonly type: string;
|
|
14587
14653
|
readonly processing_transaction_id?: string;
|
|
14588
14654
|
readonly queue_errors?: string[];
|
|
14589
|
-
readonly
|
|
14590
|
-
readonly channel_transaction_ignore_reason?: string;
|
|
14655
|
+
readonly ignore_reason?: string;
|
|
14591
14656
|
}
|
|
14592
14657
|
interface DebugTransactionDetails {
|
|
14593
14658
|
readonly id: string;
|
|
@@ -14642,6 +14707,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14642
14707
|
readonly discriminator: 'delete_index_task';
|
|
14643
14708
|
readonly name: string;
|
|
14644
14709
|
}
|
|
14710
|
+
interface DeleteTransitionsPutForm {
|
|
14711
|
+
readonly transition_ids: string[];
|
|
14712
|
+
}
|
|
14645
14713
|
interface DeliveredDutyOption {
|
|
14646
14714
|
readonly methods: io.flow.common.v0.enums.DeliveredDuty[];
|
|
14647
14715
|
readonly message?: io.flow.internal.v0.models.DeliveredDutyOptionMessage;
|
|
@@ -14998,6 +15066,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14998
15066
|
readonly url: string;
|
|
14999
15067
|
readonly created_at: string;
|
|
15000
15068
|
}
|
|
15069
|
+
interface ErpFlowFileBatchForm {
|
|
15070
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
15071
|
+
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
15072
|
+
}
|
|
15001
15073
|
interface ErpPriorityFile {
|
|
15002
15074
|
readonly id: string;
|
|
15003
15075
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
@@ -15008,6 +15080,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15008
15080
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
15009
15081
|
readonly url: string;
|
|
15010
15082
|
}
|
|
15083
|
+
interface ErpVendor {
|
|
15084
|
+
readonly placeholder?: string;
|
|
15085
|
+
}
|
|
15086
|
+
interface ErpVendorsDelta {
|
|
15087
|
+
readonly entity: io.flow.merchant.of.record.v0.enums.FlowEntity;
|
|
15088
|
+
readonly count: number;
|
|
15089
|
+
}
|
|
15011
15090
|
interface ExclusionRuleDeleted {
|
|
15012
15091
|
readonly discriminator: 'exclusion_rule_deleted';
|
|
15013
15092
|
readonly event_id: string;
|
|
@@ -15444,28 +15523,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15444
15523
|
readonly duty_guarantee?: io.flow.internal.v0.models.Fee;
|
|
15445
15524
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
15446
15525
|
}
|
|
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
15526
|
interface FinanceBankAccount {
|
|
15470
15527
|
readonly id: string;
|
|
15471
15528
|
readonly accounts: io.flow.internal.v0.models.AccountSummary[];
|
|
@@ -18334,6 +18391,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18334
18391
|
interface OrganizationOnboardingStateAdjustmentResult {
|
|
18335
18392
|
readonly organization_onboarding_state?: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
18336
18393
|
}
|
|
18394
|
+
interface OrganizationOnboardingStateAuditResult {
|
|
18395
|
+
readonly organization: string;
|
|
18396
|
+
readonly validation_errors: string[];
|
|
18397
|
+
}
|
|
18337
18398
|
interface OrganizationPaymentSetting {
|
|
18338
18399
|
readonly id: string;
|
|
18339
18400
|
readonly organization_id: string;
|
|
@@ -19452,6 +19513,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19452
19513
|
readonly discriminator: 'rex';
|
|
19453
19514
|
readonly number: string;
|
|
19454
19515
|
}
|
|
19516
|
+
interface ReportRuleDecision {
|
|
19517
|
+
readonly rule_id: string;
|
|
19518
|
+
readonly rule_name: string;
|
|
19519
|
+
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
19520
|
+
readonly count: number;
|
|
19521
|
+
}
|
|
19522
|
+
interface ReportSummary {
|
|
19523
|
+
readonly task_id: string;
|
|
19524
|
+
}
|
|
19455
19525
|
interface RequeueRequestForm {
|
|
19456
19526
|
readonly product_ids?: string[];
|
|
19457
19527
|
readonly hs6_codes?: string[];
|
|
@@ -19940,6 +20010,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19940
20010
|
readonly api_password?: string;
|
|
19941
20011
|
readonly access_token?: string;
|
|
19942
20012
|
}
|
|
20013
|
+
interface ShopifyMarketsShopStatisticsDeleted {
|
|
20014
|
+
readonly discriminator: 'shopify_markets_shop_statistics_deleted';
|
|
20015
|
+
readonly event_id: string;
|
|
20016
|
+
readonly timestamp: string;
|
|
20017
|
+
readonly organization: string;
|
|
20018
|
+
readonly id: string;
|
|
20019
|
+
}
|
|
20020
|
+
interface ShopifyMarketsShopStatisticsUpserted {
|
|
20021
|
+
readonly discriminator: 'shopify_markets_shop_statistics_upserted';
|
|
20022
|
+
readonly event_id: string;
|
|
20023
|
+
readonly timestamp: string;
|
|
20024
|
+
readonly organization: string;
|
|
20025
|
+
readonly shopify_markets_shop_statistics: io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
20026
|
+
}
|
|
19943
20027
|
interface ShopifyMarketsShopSummary {
|
|
19944
20028
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
19945
20029
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
@@ -19991,6 +20075,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19991
20075
|
readonly flow_carrier_service: io.flow.internal.v0.models.ShopifyMonitoringCarrierService[];
|
|
19992
20076
|
readonly shopify_tracking_number: io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
19993
20077
|
readonly shopify_carrier_service?: io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
20078
|
+
readonly fulfillment_created_at?: string;
|
|
19994
20079
|
}
|
|
19995
20080
|
interface ShopifyMonitoringFulfillmentMissingDetails {
|
|
19996
20081
|
readonly discriminator: 'fulfillment_missing_details';
|
|
@@ -20196,6 +20281,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20196
20281
|
readonly timestamp: string;
|
|
20197
20282
|
readonly id: string;
|
|
20198
20283
|
}
|
|
20284
|
+
interface ShopifyShopStatistics {
|
|
20285
|
+
readonly id: string;
|
|
20286
|
+
readonly initial_catalog_synced_at?: string;
|
|
20287
|
+
readonly catalog_sync_duration?: number;
|
|
20288
|
+
readonly catalog_products_count?: number;
|
|
20289
|
+
}
|
|
20199
20290
|
interface ShopifyShopUpserted {
|
|
20200
20291
|
readonly discriminator: 'shopify_shop_upserted';
|
|
20201
20292
|
readonly event_id: string;
|
|
@@ -20324,6 +20415,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20324
20415
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
20325
20416
|
readonly spot_rate: io.flow.internal.v0.models.SpotRate;
|
|
20326
20417
|
}
|
|
20418
|
+
interface StandaloneAttachment {
|
|
20419
|
+
readonly id: string;
|
|
20420
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
20421
|
+
readonly key: io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
20422
|
+
readonly name: string;
|
|
20423
|
+
readonly url: string;
|
|
20424
|
+
}
|
|
20425
|
+
interface StandaloneAttachmentDeleted {
|
|
20426
|
+
readonly discriminator: 'standalone_attachment_deleted';
|
|
20427
|
+
readonly event_id: string;
|
|
20428
|
+
readonly timestamp: string;
|
|
20429
|
+
readonly id: string;
|
|
20430
|
+
}
|
|
20431
|
+
interface StandaloneAttachmentUpserted {
|
|
20432
|
+
readonly discriminator: 'standalone_attachment_upserted';
|
|
20433
|
+
readonly event_id: string;
|
|
20434
|
+
readonly timestamp: string;
|
|
20435
|
+
readonly attachment: io.flow.internal.v0.models.StandaloneAttachment;
|
|
20436
|
+
}
|
|
20327
20437
|
interface StoreConnection {
|
|
20328
20438
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
20329
20439
|
readonly id: string;
|
|
@@ -20332,13 +20442,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20332
20442
|
interface StoreConnectionForm {
|
|
20333
20443
|
readonly organization: string;
|
|
20334
20444
|
}
|
|
20335
|
-
interface Stream {
|
|
20336
|
-
readonly id: string;
|
|
20337
|
-
readonly key: string;
|
|
20338
|
-
}
|
|
20339
|
-
interface StreamReference {
|
|
20340
|
-
readonly id: string;
|
|
20341
|
-
}
|
|
20342
20445
|
interface StringFeatureDefaultValue {
|
|
20343
20446
|
readonly discriminator: 'string';
|
|
20344
20447
|
readonly value: string;
|
|
@@ -21262,7 +21365,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
21262
21365
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
21263
21366
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
21264
21367
|
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;
|
|
21368
|
+
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.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | 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
21369
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
21267
21370
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
21268
21371
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -21431,6 +21534,7 @@ export declare type AuthorizedChargeStatus = io.flow.internal.v0.models.Authoriz
|
|
|
21431
21534
|
export declare type AuthorizedLineItemCharge = io.flow.internal.v0.models.AuthorizedLineItemCharge;
|
|
21432
21535
|
export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.AuthorizedOrderCharge;
|
|
21433
21536
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
21537
|
+
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
21434
21538
|
export declare type Backfill = io.flow.internal.v0.models.Backfill;
|
|
21435
21539
|
export declare type BackfillForm = io.flow.internal.v0.models.BackfillForm;
|
|
21436
21540
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
@@ -21447,6 +21551,7 @@ export declare type BillingAuthorizationReference = io.flow.internal.v0.models.B
|
|
|
21447
21551
|
export declare type BillingInvoiceSummary = io.flow.internal.v0.models.BillingInvoiceSummary;
|
|
21448
21552
|
export declare type BillingLabelSummary = io.flow.internal.v0.models.BillingLabelSummary;
|
|
21449
21553
|
export declare type BillingLabelTrackingSummaryReference = io.flow.internal.v0.models.BillingLabelTrackingSummaryReference;
|
|
21554
|
+
export declare type BillingMetricKey = io.flow.internal.v0.enums.BillingMetricKey;
|
|
21450
21555
|
export declare type BillingOrderDestination = io.flow.internal.v0.models.BillingOrderDestination;
|
|
21451
21556
|
export declare type BillingOrderSummary = io.flow.internal.v0.models.BillingOrderSummary;
|
|
21452
21557
|
export declare type BillingOrderTransactionOrderReference = io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -22158,6 +22263,7 @@ export declare type ClassificationProductSummaryPage = io.flow.internal.v0.model
|
|
|
22158
22263
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
22159
22264
|
export declare type ClassificationResponse = io.flow.internal.v0.unions.ClassificationResponse;
|
|
22160
22265
|
export declare type ClassificationStatistics = io.flow.internal.v0.models.ClassificationStatistics;
|
|
22266
|
+
export declare type ClassificationSummaryReportPayload = io.flow.internal.v0.models.ClassificationSummaryReportPayload;
|
|
22161
22267
|
export declare type ClassificationTaxonomy = io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
22162
22268
|
export declare type ClassificationWrapper = io.flow.internal.v0.models.ClassificationWrapper;
|
|
22163
22269
|
export declare type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
@@ -22226,6 +22332,9 @@ export declare type DailyExperimentEngineResults = io.flow.internal.v0.models.Da
|
|
|
22226
22332
|
export declare type DailyExperimentResults = io.flow.internal.v0.models.DailyExperimentResults;
|
|
22227
22333
|
export declare type DailyExperimentResultsDeleted = io.flow.internal.v0.models.DailyExperimentResultsDeleted;
|
|
22228
22334
|
export declare type DailyExperimentResultsUpserted = io.flow.internal.v0.models.DailyExperimentResultsUpserted;
|
|
22335
|
+
export declare type DailyValue = io.flow.internal.v0.models.DailyValue;
|
|
22336
|
+
export declare type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDeleted;
|
|
22337
|
+
export declare type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
22229
22338
|
export declare type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
22230
22339
|
export declare type DebugLabel = io.flow.internal.v0.models.DebugLabel;
|
|
22231
22340
|
export declare type DebugLabelTransactionSummary = io.flow.internal.v0.models.DebugLabelTransactionSummary;
|
|
@@ -22246,6 +22355,7 @@ export declare type DeclineReasonFraud = io.flow.internal.v0.models.DeclineReaso
|
|
|
22246
22355
|
export declare type DecryptCipherForm = io.flow.internal.v0.models.DecryptCipherForm;
|
|
22247
22356
|
export declare type DecryptedCipher = io.flow.internal.v0.models.DecryptedCipher;
|
|
22248
22357
|
export declare type DeleteIndexTask = io.flow.internal.v0.models.DeleteIndexTask;
|
|
22358
|
+
export declare type DeleteTransitionsPutForm = io.flow.internal.v0.models.DeleteTransitionsPutForm;
|
|
22249
22359
|
export declare type DeliveredDutyOption = io.flow.internal.v0.models.DeliveredDutyOption;
|
|
22250
22360
|
export declare type DeliveredDutyOptionMessage = io.flow.internal.v0.models.DeliveredDutyOptionMessage;
|
|
22251
22361
|
export declare type DeliveredDutyOptionMessageType = io.flow.internal.v0.enums.DeliveredDutyOptionMessageType;
|
|
@@ -22328,8 +22438,11 @@ export declare type EmptyClassificationForm = io.flow.internal.v0.models.EmptyCl
|
|
|
22328
22438
|
export declare type Encryption = io.flow.internal.v0.models.Encryption;
|
|
22329
22439
|
export declare type ErpFileType = io.flow.internal.v0.enums.ErpFileType;
|
|
22330
22440
|
export declare type ErpFlowFile = io.flow.internal.v0.models.ErpFlowFile;
|
|
22441
|
+
export declare type ErpFlowFileBatchForm = io.flow.internal.v0.models.ErpFlowFileBatchForm;
|
|
22331
22442
|
export declare type ErpPriorityFile = io.flow.internal.v0.models.ErpPriorityFile;
|
|
22332
22443
|
export declare type ErpPriorityFileForm = io.flow.internal.v0.models.ErpPriorityFileForm;
|
|
22444
|
+
export declare type ErpVendor = io.flow.internal.v0.models.ErpVendor;
|
|
22445
|
+
export declare type ErpVendorsDelta = io.flow.internal.v0.models.ErpVendorsDelta;
|
|
22333
22446
|
export declare type Event = io.flow.internal.v0.unions.Event;
|
|
22334
22447
|
export declare type EventType = io.flow.internal.v0.enums.EventType;
|
|
22335
22448
|
export declare type ExclusionRuleDeleted = io.flow.internal.v0.models.ExclusionRuleDeleted;
|
|
@@ -22418,11 +22531,6 @@ export declare type FeedUpserted = io.flow.internal.v0.models.FeedUpserted;
|
|
|
22418
22531
|
export declare type FeedsExport = io.flow.internal.v0.models.FeedsExport;
|
|
22419
22532
|
export declare type Fees = io.flow.internal.v0.models.Fees;
|
|
22420
22533
|
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
22534
|
export declare type FinanceBankAccount = io.flow.internal.v0.models.FinanceBankAccount;
|
|
22427
22535
|
export declare type FinanceBankAccountOwner = io.flow.internal.v0.models.FinanceBankAccountOwner;
|
|
22428
22536
|
export declare type FinanceBankPayment = io.flow.internal.v0.models.FinanceBankPayment;
|
|
@@ -22899,7 +23007,9 @@ export declare type OrganizationDebugTransaction = io.flow.internal.v0.models.Or
|
|
|
22899
23007
|
export declare type OrganizationInvitationAcceptForm = io.flow.internal.v0.models.OrganizationInvitationAcceptForm;
|
|
22900
23008
|
export declare type OrganizationMembershipCopy = io.flow.internal.v0.models.OrganizationMembershipCopy;
|
|
22901
23009
|
export declare type OrganizationMembershipCopyForm = io.flow.internal.v0.models.OrganizationMembershipCopyForm;
|
|
23010
|
+
export declare type OrganizationMetricType = io.flow.internal.v0.enums.OrganizationMetricType;
|
|
22902
23011
|
export declare type OrganizationOnboardingStateAdjustmentResult = io.flow.internal.v0.models.OrganizationOnboardingStateAdjustmentResult;
|
|
23012
|
+
export declare type OrganizationOnboardingStateAuditResult = io.flow.internal.v0.models.OrganizationOnboardingStateAuditResult;
|
|
22903
23013
|
export declare type OrganizationPaymentSetting = io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
22904
23014
|
export declare type OrganizationPaymentSettingDeleted = io.flow.internal.v0.models.OrganizationPaymentSettingDeleted;
|
|
22905
23015
|
export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.OrganizationPaymentSettingForm;
|
|
@@ -23030,6 +23140,7 @@ export declare type ProductHarmonizationForm = io.flow.internal.v0.models.Produc
|
|
|
23030
23140
|
export declare type ProductLabels = io.flow.internal.v0.models.ProductLabels;
|
|
23031
23141
|
export declare type ProductListSettingsForm = io.flow.internal.v0.models.ProductListSettingsForm;
|
|
23032
23142
|
export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductReviewHistory;
|
|
23143
|
+
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
23033
23144
|
export declare type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
23034
23145
|
export declare type PromptCheckoutDisplayPosition = io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
23035
23146
|
export declare type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
|
|
@@ -23039,6 +23150,7 @@ export declare type ProofOfPostingExternallyFulfilled = io.flow.internal.v0.mode
|
|
|
23039
23150
|
export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOfPostingFulfilled;
|
|
23040
23151
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
23041
23152
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
23153
|
+
export declare type QueuedRecordType = io.flow.internal.v0.enums.QueuedRecordType;
|
|
23042
23154
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
23043
23155
|
export declare type QuoteRequestType = io.flow.internal.v0.enums.QuoteRequestType;
|
|
23044
23156
|
export declare type RateAndRuleItem = io.flow.internal.v0.models.RateAndRuleItem;
|
|
@@ -23105,6 +23217,8 @@ export declare type RegisteredExporterTariffEligibilityData = io.flow.internal.v
|
|
|
23105
23217
|
export declare type RegisteredExporterTariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
23106
23218
|
export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
23107
23219
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
23220
|
+
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
23221
|
+
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
23108
23222
|
export declare type ReportingScheme = io.flow.internal.v0.enums.ReportingScheme;
|
|
23109
23223
|
export declare type RequeueRequestForm = io.flow.internal.v0.models.RequeueRequestForm;
|
|
23110
23224
|
export declare type ResponsibleParty = io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -23202,6 +23316,8 @@ export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.Sho
|
|
|
23202
23316
|
export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
23203
23317
|
export declare type ShopifyMarketsShopDeleted = io.flow.internal.v0.models.ShopifyMarketsShopDeleted;
|
|
23204
23318
|
export declare type ShopifyMarketsShopForm = io.flow.internal.v0.models.ShopifyMarketsShopForm;
|
|
23319
|
+
export declare type ShopifyMarketsShopStatisticsDeleted = io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted;
|
|
23320
|
+
export declare type ShopifyMarketsShopStatisticsUpserted = io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted;
|
|
23205
23321
|
export declare type ShopifyMarketsShopSummary = io.flow.internal.v0.models.ShopifyMarketsShopSummary;
|
|
23206
23322
|
export declare type ShopifyMarketsShopUpserted = io.flow.internal.v0.models.ShopifyMarketsShopUpserted;
|
|
23207
23323
|
export declare type ShopifyMarketsSubsidiaryCompany = io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany;
|
|
@@ -23263,6 +23379,7 @@ export declare type ShopifyPromotionRule = io.flow.internal.v0.models.ShopifyPro
|
|
|
23263
23379
|
export declare type ShopifyPromotionStatus = io.flow.internal.v0.enums.ShopifyPromotionStatus;
|
|
23264
23380
|
export declare type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
|
|
23265
23381
|
export declare type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopDeleted;
|
|
23382
|
+
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
23266
23383
|
export declare type ShopifyShopUpserted = io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
23267
23384
|
export declare type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
23268
23385
|
export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebhookEvent;
|
|
@@ -23290,14 +23407,15 @@ export declare type SpotRateMetadataIdentity = io.flow.internal.v0.models.SpotRa
|
|
|
23290
23407
|
export declare type SpotRateMetadataRate = io.flow.internal.v0.models.SpotRateMetadataRate;
|
|
23291
23408
|
export declare type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
|
|
23292
23409
|
export declare type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
|
|
23410
|
+
export declare type StandaloneAttachment = io.flow.internal.v0.models.StandaloneAttachment;
|
|
23411
|
+
export declare type StandaloneAttachmentDeleted = io.flow.internal.v0.models.StandaloneAttachmentDeleted;
|
|
23412
|
+
export declare type StandaloneAttachmentUpserted = io.flow.internal.v0.models.StandaloneAttachmentUpserted;
|
|
23293
23413
|
export declare type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
23294
23414
|
export declare type StatementTransferTransactionLocation = io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
23295
23415
|
export declare type StatisticType = io.flow.internal.v0.enums.StatisticType;
|
|
23296
23416
|
export declare type Status = io.flow.internal.v0.enums.Status;
|
|
23297
23417
|
export declare type StoreConnection = io.flow.internal.v0.models.StoreConnection;
|
|
23298
23418
|
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
23419
|
export declare type StringFeatureDefaultValue = io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
23302
23420
|
export declare type StringFeatureRule = io.flow.internal.v0.models.StringFeatureRule;
|
|
23303
23421
|
export declare type StringFeatureRuleForm = io.flow.internal.v0.models.StringFeatureRuleForm;
|