@flowio/types 11.24.115 → 11.24.117
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 +381 -81
- package/dist/api.d.ts +5214 -3207
- package/package.json +2 -2
- package/src/api-internal.ts +460 -104
- package/src/api.ts +6242 -3714
package/dist/api-internal.d.ts
CHANGED
|
@@ -1924,11 +1924,10 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1924
1924
|
interface Transfer {
|
|
1925
1925
|
readonly id: string;
|
|
1926
1926
|
readonly type: io.flow.payment.v0.enums.TransferType;
|
|
1927
|
-
readonly
|
|
1928
|
-
readonly transferred_money: io.flow.payment.v0.models.ExchangedMoney;
|
|
1927
|
+
readonly base: io.flow.common.v0.models.Money;
|
|
1929
1928
|
readonly status: io.flow.payment.v0.enums.TransferStatus;
|
|
1930
1929
|
readonly created_at: string;
|
|
1931
|
-
readonly
|
|
1930
|
+
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
1932
1931
|
readonly transferred_at: string;
|
|
1933
1932
|
}
|
|
1934
1933
|
interface VirtualCard {
|
|
@@ -4471,6 +4470,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4471
4470
|
readonly destination: io.flow.common.v0.models.Address;
|
|
4472
4471
|
readonly order_note?: string;
|
|
4473
4472
|
}
|
|
4473
|
+
interface ShopifyOrderRiskAssessment {
|
|
4474
|
+
readonly id: string;
|
|
4475
|
+
readonly risk_level: string;
|
|
4476
|
+
readonly assessment_created_at: string;
|
|
4477
|
+
}
|
|
4474
4478
|
interface ShopifyProductBundle {
|
|
4475
4479
|
readonly id: string;
|
|
4476
4480
|
readonly underlying: io.flow.shopify.markets.internal.v0.models.ShopifyProductBundleUnderlying;
|
|
@@ -6570,6 +6574,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
6570
6574
|
readonly order_created_at?: string;
|
|
6571
6575
|
readonly order_updated_at?: string;
|
|
6572
6576
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
6577
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
6573
6578
|
}
|
|
6574
6579
|
interface ChannelOrderAcceptanceDetails {
|
|
6575
6580
|
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
@@ -7363,6 +7368,20 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7363
7368
|
readonly organization: string;
|
|
7364
7369
|
readonly registration: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
7365
7370
|
}
|
|
7371
|
+
interface ShopifyOrderRiskAssessmentDeleted {
|
|
7372
|
+
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
7373
|
+
readonly event_id: string;
|
|
7374
|
+
readonly timestamp: string;
|
|
7375
|
+
readonly organization: string;
|
|
7376
|
+
readonly id: string;
|
|
7377
|
+
}
|
|
7378
|
+
interface ShopifyOrderRiskAssessmentUpserted {
|
|
7379
|
+
readonly discriminator: 'shopify_order_risk_assessment_upserted';
|
|
7380
|
+
readonly event_id: string;
|
|
7381
|
+
readonly timestamp: string;
|
|
7382
|
+
readonly organization: string;
|
|
7383
|
+
readonly assessment: io.flow.shopify.markets.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
7384
|
+
}
|
|
7366
7385
|
interface ShopifyProductBundleDeleted {
|
|
7367
7386
|
readonly discriminator: 'shopify_product_bundle_deleted';
|
|
7368
7387
|
readonly event_id: string;
|
|
@@ -7379,7 +7398,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7379
7398
|
}
|
|
7380
7399
|
}
|
|
7381
7400
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
7382
|
-
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
7401
|
+
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted;
|
|
7383
7402
|
}
|
|
7384
7403
|
declare namespace io.flow.experience.v0.enums {
|
|
7385
7404
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -10157,6 +10176,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
10157
10176
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
10158
10177
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
10159
10178
|
type StatementAttachmentType = 'csv';
|
|
10179
|
+
type TaxDutyTransactionReasonCode = 'order_edit' | 'order_acceptance' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment';
|
|
10160
10180
|
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share';
|
|
10161
10181
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
10162
10182
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -10460,8 +10480,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10460
10480
|
}
|
|
10461
10481
|
interface TransactionMetadataShippingLabelCarrier {
|
|
10462
10482
|
readonly id: string;
|
|
10483
|
+
readonly service_id?: string;
|
|
10463
10484
|
readonly tracking_number: string;
|
|
10464
10485
|
}
|
|
10486
|
+
interface TransactionMetadataTaxDuty {
|
|
10487
|
+
readonly discriminator: 'transaction_tax_duty';
|
|
10488
|
+
readonly reason_code: io.flow.billing.v0.enums.TaxDutyTransactionReasonCode;
|
|
10489
|
+
}
|
|
10465
10490
|
interface TransactionMetadataTrueup {
|
|
10466
10491
|
readonly discriminator: 'trueup';
|
|
10467
10492
|
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
@@ -10544,7 +10569,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
10544
10569
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
10545
10570
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
10546
10571
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
10547
|
-
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
|
|
10572
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction | io.flow.billing.v0.models.TransactionMetadataTaxDuty;
|
|
10548
10573
|
}
|
|
10549
10574
|
declare namespace io.flow.harmonization.v0.enums {
|
|
10550
10575
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -11662,7 +11687,8 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
11662
11687
|
}
|
|
11663
11688
|
declare namespace io.flow.sellability.v0.enums {
|
|
11664
11689
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
11665
|
-
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
|
|
11690
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
11691
|
+
type SellabilityRequestStatus = 'commit';
|
|
11666
11692
|
}
|
|
11667
11693
|
declare namespace io.flow.sellability.v0.models {
|
|
11668
11694
|
interface ProductSellability {
|
|
@@ -11675,11 +11701,12 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11675
11701
|
interface ProductSellabilityForm {
|
|
11676
11702
|
readonly shop_id: string;
|
|
11677
11703
|
readonly product_id?: string;
|
|
11678
|
-
readonly request_id: string;
|
|
11679
11704
|
readonly name: string;
|
|
11680
11705
|
readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
11681
11706
|
readonly description: string;
|
|
11682
11707
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
11708
|
+
readonly status?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
11709
|
+
readonly dry_run?: boolean;
|
|
11683
11710
|
}
|
|
11684
11711
|
interface ProductSellabilityPrice {
|
|
11685
11712
|
readonly currency: string;
|
|
@@ -11793,16 +11820,6 @@ declare namespace io.flow.organization.v0.models {
|
|
|
11793
11820
|
readonly organization: string;
|
|
11794
11821
|
readonly environment: io.flow.common.v0.enums.Environment;
|
|
11795
11822
|
}
|
|
11796
|
-
interface OrganizationConfigurationReference {
|
|
11797
|
-
readonly id: string;
|
|
11798
|
-
}
|
|
11799
|
-
interface OrganizationDefaultConfigurations {
|
|
11800
|
-
readonly id: string;
|
|
11801
|
-
readonly checkout_configuration: io.flow.organization.v0.models.OrganizationConfigurationReference;
|
|
11802
|
-
}
|
|
11803
|
-
interface OrganizationDefaultConfigurationsForm {
|
|
11804
|
-
readonly id: string;
|
|
11805
|
-
}
|
|
11806
11823
|
interface OrganizationForm {
|
|
11807
11824
|
readonly id?: string;
|
|
11808
11825
|
readonly name?: string;
|
|
@@ -11955,6 +11972,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11955
11972
|
type AnshItemType = 'physical' | 'digital';
|
|
11956
11973
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
11957
11974
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
11975
|
+
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
11958
11976
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
11959
11977
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
11960
11978
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -11994,6 +12012,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11994
12012
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
11995
12013
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
11996
12014
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
12015
|
+
type CommercialInvoiceVersion = 'v2_2_1';
|
|
11997
12016
|
type Company = 'globale' | 'flow';
|
|
11998
12017
|
type ComplianceType = 'weee';
|
|
11999
12018
|
type ConnectReportPaymentTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
|
|
@@ -12028,7 +12047,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12028
12047
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
|
|
12029
12048
|
type EmptyAttribute = 'irrelevant';
|
|
12030
12049
|
type ErpFileType = 'vendor';
|
|
12031
|
-
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' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | '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_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' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_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' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_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' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | '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' | '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' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_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' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | '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_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_deleted' | 'partner_request_upserted' | 'partner_request_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' | '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' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | '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_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' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_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_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_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' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12050
|
+
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' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | '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_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' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_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' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_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' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | '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' | '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' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_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' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | '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_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_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' | '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' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | '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_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' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_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_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_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' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12032
12051
|
type ExperienceImportType = 'experience_with_settings';
|
|
12033
12052
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12034
12053
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12045,6 +12064,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12045
12064
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
12046
12065
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
12047
12066
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
12067
|
+
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
12048
12068
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12049
12069
|
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
12050
12070
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
@@ -12074,7 +12094,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12074
12094
|
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
12075
12095
|
type MixedBagWeight = '0' | '1' | '2';
|
|
12076
12096
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
12097
|
+
type NiallItemType = 'physical' | 'digital';
|
|
12077
12098
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
12099
|
+
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
12078
12100
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
12079
12101
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
12080
12102
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
@@ -12104,6 +12126,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12104
12126
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
12105
12127
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
12106
12128
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
12129
|
+
type PrateekItemType = 'physical' | 'digital';
|
|
12107
12130
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12108
12131
|
type PriceSelector = 'minimum' | 'maximum';
|
|
12109
12132
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
@@ -12130,11 +12153,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12130
12153
|
type ResponsibleParty = 'flow' | 'organization';
|
|
12131
12154
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
12132
12155
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
12156
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
|
|
12157
|
+
type RestrictionOrganizationSource = 'shopify' | 'enterprise';
|
|
12158
|
+
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
12159
|
+
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
12133
12160
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
12134
12161
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
12135
12162
|
type RiskCheck = 'three_d_secure';
|
|
12136
12163
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
12137
|
-
type
|
|
12164
|
+
type RohanItemType = 'physical' | 'digital';
|
|
12138
12165
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
12139
12166
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
12140
12167
|
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
@@ -13177,6 +13204,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13177
13204
|
readonly duty: io.flow.common.v0.models.Price;
|
|
13178
13205
|
readonly trueup: io.flow.common.v0.models.Price;
|
|
13179
13206
|
readonly carrier_charge: io.flow.common.v0.models.Price;
|
|
13207
|
+
readonly duty_refund: io.flow.common.v0.models.Price;
|
|
13208
|
+
readonly ge_revenue_share: io.flow.common.v0.models.Price;
|
|
13209
|
+
readonly non_l4l_tax_duty_fx: io.flow.common.v0.models.Price;
|
|
13180
13210
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
13181
13211
|
readonly tax_refund: io.flow.common.v0.models.Price;
|
|
13182
13212
|
}
|
|
@@ -13800,6 +13830,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13800
13830
|
readonly order_created_at?: string;
|
|
13801
13831
|
readonly order_updated_at?: string;
|
|
13802
13832
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
13833
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
13803
13834
|
}
|
|
13804
13835
|
interface ChannelOrderAcceptanceDeleted {
|
|
13805
13836
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -14536,17 +14567,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14536
14567
|
readonly updated_at: string;
|
|
14537
14568
|
readonly updated_by_user_id: string;
|
|
14538
14569
|
}
|
|
14539
|
-
interface CustomerPurgeUpserted {
|
|
14540
|
-
readonly discriminator: 'customer_purge_upserted';
|
|
14541
|
-
readonly event_id: string;
|
|
14542
|
-
readonly timestamp: string;
|
|
14543
|
-
readonly organization: string;
|
|
14544
|
-
readonly customer: io.flow.customer.v0.models.Customer;
|
|
14545
|
-
}
|
|
14546
|
-
interface CustomerSecret {
|
|
14547
|
-
readonly id: string;
|
|
14548
|
-
readonly secret: string;
|
|
14549
|
-
}
|
|
14550
14570
|
interface CustomsDescriptionImport {
|
|
14551
14571
|
readonly discriminator: 'customs_description_import';
|
|
14552
14572
|
readonly event_id: string;
|
|
@@ -15110,9 +15130,36 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15110
15130
|
readonly cipher: string;
|
|
15111
15131
|
readonly passphrase_ids: string[];
|
|
15112
15132
|
}
|
|
15133
|
+
interface EnrichedLineItemForm {
|
|
15134
|
+
readonly form: io.flow.common.v0.models.LineItemForm;
|
|
15135
|
+
readonly customs_product_name?: string;
|
|
15136
|
+
readonly tariff_code?: string;
|
|
15137
|
+
readonly customs_description?: string;
|
|
15138
|
+
readonly hs_description?: string;
|
|
15139
|
+
readonly country_of_origin: string;
|
|
15140
|
+
readonly price_composition_rate: number;
|
|
15141
|
+
readonly duty_composition_rate: number;
|
|
15142
|
+
readonly export_control_classification_number: string;
|
|
15143
|
+
readonly sub_item_number?: string;
|
|
15144
|
+
readonly item_type?: string;
|
|
15145
|
+
readonly material?: string;
|
|
15146
|
+
readonly construction?: string;
|
|
15147
|
+
readonly gender?: string;
|
|
15148
|
+
}
|
|
15149
|
+
interface EnrichedShippingLabelPackage {
|
|
15150
|
+
readonly dimensions: io.flow.common.v0.models.Dimension;
|
|
15151
|
+
readonly items: io.flow.internal.v0.models.EnrichedLineItemForm[];
|
|
15152
|
+
readonly reference_number?: string;
|
|
15153
|
+
}
|
|
15113
15154
|
interface EntityReference {
|
|
15114
15155
|
readonly id: string;
|
|
15115
15156
|
}
|
|
15157
|
+
interface EntityReferenceNumber {
|
|
15158
|
+
readonly short_name: string;
|
|
15159
|
+
readonly number: string;
|
|
15160
|
+
readonly issuing_country?: io.flow.reference.v0.models.Country;
|
|
15161
|
+
readonly display_name?: string;
|
|
15162
|
+
}
|
|
15116
15163
|
interface ErpFlowFile {
|
|
15117
15164
|
readonly id: string;
|
|
15118
15165
|
readonly type: io.flow.internal.v0.enums.ErpFileType;
|
|
@@ -16433,6 +16480,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16433
16480
|
readonly discriminator: 'internal_fiserv_authorization_details';
|
|
16434
16481
|
readonly fiserv_authentication_data: io.flow.internal.v0.models.FiservAuthenticationDataReference;
|
|
16435
16482
|
}
|
|
16483
|
+
interface InternalItem {
|
|
16484
|
+
readonly id: string;
|
|
16485
|
+
readonly organization: string;
|
|
16486
|
+
readonly catalog: string;
|
|
16487
|
+
readonly name: string;
|
|
16488
|
+
readonly number: string;
|
|
16489
|
+
readonly currency: string;
|
|
16490
|
+
readonly price: number;
|
|
16491
|
+
readonly categories: string[];
|
|
16492
|
+
readonly attributes: Record<string, string>;
|
|
16493
|
+
readonly sku?: string;
|
|
16494
|
+
readonly barcode?: string;
|
|
16495
|
+
}
|
|
16436
16496
|
interface InternalItemForm {
|
|
16437
16497
|
readonly id: string;
|
|
16438
16498
|
readonly item_form: io.flow.catalog.v0.models.ItemForm;
|
|
@@ -16486,6 +16546,76 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16486
16546
|
readonly lines: io.flow.internal.v0.models.InvoiceLine[];
|
|
16487
16547
|
readonly total: io.flow.common.v0.models.Price;
|
|
16488
16548
|
}
|
|
16549
|
+
interface InvoiceData {
|
|
16550
|
+
readonly organization_id: string;
|
|
16551
|
+
readonly order_number: string;
|
|
16552
|
+
readonly invoice_reference: string;
|
|
16553
|
+
readonly signature_url: string;
|
|
16554
|
+
readonly signature_date: string;
|
|
16555
|
+
readonly signature_name: string;
|
|
16556
|
+
readonly line_items: io.flow.internal.v0.models.InvoiceDataLineItem[];
|
|
16557
|
+
readonly currency: io.flow.reference.v0.models.Currency;
|
|
16558
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
16559
|
+
readonly delivered_duty_text: string;
|
|
16560
|
+
readonly transaction_date: string;
|
|
16561
|
+
readonly origin: io.flow.internal.v0.models.ValidatedAddress;
|
|
16562
|
+
readonly destination: io.flow.internal.v0.models.ValidatedAddress;
|
|
16563
|
+
readonly billing_address?: io.flow.internal.v0.models.ValidatedAddress;
|
|
16564
|
+
readonly service: io.flow.reference.v0.models.CarrierService;
|
|
16565
|
+
readonly flow_tracking_number: string;
|
|
16566
|
+
readonly rex_number?: string;
|
|
16567
|
+
readonly weee_number?: string;
|
|
16568
|
+
readonly business_gst_numbers: io.flow.internal.v0.models.EntityReferenceNumber[];
|
|
16569
|
+
readonly destination_identification_numbers?: io.flow.internal.v0.models.EntityReferenceNumber[];
|
|
16570
|
+
readonly vat_name: string;
|
|
16571
|
+
readonly item_identifier_column_name: string;
|
|
16572
|
+
readonly feature_show_merchant_id: boolean;
|
|
16573
|
+
readonly shipping_pricing: io.flow.internal.v0.models.ShippingPricing;
|
|
16574
|
+
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
16575
|
+
readonly eu_preferential_origin?: string;
|
|
16576
|
+
readonly customs_master_file_number?: string;
|
|
16577
|
+
readonly merchant_of_record_entity?: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
16578
|
+
readonly weight_measured?: string;
|
|
16579
|
+
readonly notes_export_declaration?: string;
|
|
16580
|
+
readonly notes_import_duty_taxes_due?: string;
|
|
16581
|
+
readonly invoice_id: string;
|
|
16582
|
+
readonly invoice_date: string;
|
|
16583
|
+
readonly invoice_number?: string;
|
|
16584
|
+
readonly invoice_version: io.flow.internal.v0.enums.CommercialInvoiceVersion;
|
|
16585
|
+
readonly shipping_price: number;
|
|
16586
|
+
readonly goods_value: number;
|
|
16587
|
+
readonly total_taxes: number;
|
|
16588
|
+
readonly total_duties: number;
|
|
16589
|
+
readonly customs_value: number;
|
|
16590
|
+
readonly total_value: number;
|
|
16591
|
+
readonly usa_exporter_identifier_number_if_value_over_threshold?: string;
|
|
16592
|
+
readonly feature_israel_notes_import_duty_and_taxes_due: boolean;
|
|
16593
|
+
readonly feature_new_export_declaration: boolean;
|
|
16594
|
+
}
|
|
16595
|
+
interface InvoiceDataLineItem {
|
|
16596
|
+
readonly i: number;
|
|
16597
|
+
readonly number: string;
|
|
16598
|
+
readonly quantity: number;
|
|
16599
|
+
readonly description: string;
|
|
16600
|
+
readonly tariff_code: string;
|
|
16601
|
+
readonly country_of_origin: string;
|
|
16602
|
+
readonly display_country_of_origin: string;
|
|
16603
|
+
readonly gst_paid: boolean;
|
|
16604
|
+
readonly gst_paid_text: string;
|
|
16605
|
+
readonly unit_price: number;
|
|
16606
|
+
readonly vat_price: number;
|
|
16607
|
+
readonly duty_price: number;
|
|
16608
|
+
readonly discount_price: number;
|
|
16609
|
+
readonly total_price: number;
|
|
16610
|
+
readonly export_control_classification_number: string;
|
|
16611
|
+
readonly manufacturer_id?: string;
|
|
16612
|
+
readonly display_number: string;
|
|
16613
|
+
readonly item_type?: string;
|
|
16614
|
+
readonly construction?: string;
|
|
16615
|
+
readonly gender?: string;
|
|
16616
|
+
readonly material?: string;
|
|
16617
|
+
readonly url?: string;
|
|
16618
|
+
}
|
|
16489
16619
|
interface InvoiceInfoForm {
|
|
16490
16620
|
readonly invoice_number: string;
|
|
16491
16621
|
readonly invoice_date: string;
|
|
@@ -16594,6 +16724,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16594
16724
|
readonly duty_composition_rate: number;
|
|
16595
16725
|
readonly export_control_classification_number?: string;
|
|
16596
16726
|
readonly labels?: io.flow.internal.v0.models.CustomsProductLabels;
|
|
16727
|
+
readonly applicable_preferential_rate?: io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
16597
16728
|
}
|
|
16598
16729
|
interface ItemDimensionEstimate {
|
|
16599
16730
|
readonly id: string;
|
|
@@ -17546,6 +17677,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17546
17677
|
readonly amount: io.flow.common.v0.models.Price;
|
|
17547
17678
|
readonly conditions?: string;
|
|
17548
17679
|
}
|
|
17680
|
+
interface NiallItem {
|
|
17681
|
+
readonly id: string;
|
|
17682
|
+
readonly number: string;
|
|
17683
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17684
|
+
readonly description?: string;
|
|
17685
|
+
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
17686
|
+
readonly added_on: string;
|
|
17687
|
+
}
|
|
17688
|
+
interface NiallItemForm {
|
|
17689
|
+
readonly number: string;
|
|
17690
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
17691
|
+
readonly description?: string;
|
|
17692
|
+
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
17693
|
+
readonly added_on: string;
|
|
17694
|
+
}
|
|
17549
17695
|
interface NoCalculatedTaxAmount {
|
|
17550
17696
|
readonly discriminator: 'no_calculated_tax_amount';
|
|
17551
17697
|
readonly amount: number;
|
|
@@ -18950,6 +19096,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18950
19096
|
readonly minimum_amount_base: number;
|
|
18951
19097
|
readonly rate: number;
|
|
18952
19098
|
}
|
|
19099
|
+
interface PrateekItem {
|
|
19100
|
+
readonly id: string;
|
|
19101
|
+
readonly number: string;
|
|
19102
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
19103
|
+
readonly description?: string;
|
|
19104
|
+
readonly type: io.flow.internal.v0.enums.PrateekItemType;
|
|
19105
|
+
readonly added_on: string;
|
|
19106
|
+
}
|
|
19107
|
+
interface PrateekItemForm {
|
|
19108
|
+
readonly number: string;
|
|
19109
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
19110
|
+
readonly description?: string;
|
|
19111
|
+
readonly type: io.flow.internal.v0.enums.PrateekItemType;
|
|
19112
|
+
readonly added_on: string;
|
|
19113
|
+
}
|
|
18953
19114
|
interface Prediction {
|
|
18954
19115
|
readonly main_material: string;
|
|
18955
19116
|
readonly gender: string;
|
|
@@ -19132,10 +19293,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19132
19293
|
readonly organization: string;
|
|
19133
19294
|
readonly product_restriction_rule_decision: io.flow.internal.v0.models.ProductRestrictionRuleDecision;
|
|
19134
19295
|
}
|
|
19296
|
+
interface ProductRestrictionState {
|
|
19297
|
+
readonly id: string;
|
|
19298
|
+
readonly organization_id: string;
|
|
19299
|
+
readonly product_number: string;
|
|
19300
|
+
readonly review_status: io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
19301
|
+
readonly pending_restriction_count?: number;
|
|
19302
|
+
readonly pending_verification_count?: number;
|
|
19303
|
+
readonly oldest_pending_restriction_date?: string;
|
|
19304
|
+
readonly oldest_pending_verification_date?: string;
|
|
19305
|
+
}
|
|
19306
|
+
interface ProductRestrictionStateDeleted {
|
|
19307
|
+
readonly discriminator: 'product_restriction_state_deleted';
|
|
19308
|
+
readonly event_id: string;
|
|
19309
|
+
readonly timestamp: string;
|
|
19310
|
+
readonly organization: string;
|
|
19311
|
+
readonly product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
19312
|
+
}
|
|
19313
|
+
interface ProductRestrictionStateInserted {
|
|
19314
|
+
readonly discriminator: 'product_restriction_state_inserted';
|
|
19315
|
+
readonly event_id: string;
|
|
19316
|
+
readonly timestamp: string;
|
|
19317
|
+
readonly organization: string;
|
|
19318
|
+
readonly product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
19319
|
+
}
|
|
19320
|
+
interface ProductRestrictionStateUpdated {
|
|
19321
|
+
readonly discriminator: 'product_restriction_state_updated';
|
|
19322
|
+
readonly event_id: string;
|
|
19323
|
+
readonly timestamp: string;
|
|
19324
|
+
readonly organization: string;
|
|
19325
|
+
readonly previous_product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
19326
|
+
readonly product_restriction_state: io.flow.internal.v0.models.ProductRestrictionState;
|
|
19327
|
+
}
|
|
19135
19328
|
interface ProductReviewHistory {
|
|
19136
19329
|
readonly product_id: string;
|
|
19137
19330
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
19138
19331
|
}
|
|
19332
|
+
interface ProductSellabilityResult {
|
|
19333
|
+
readonly shop_id: string;
|
|
19334
|
+
readonly product_number: string;
|
|
19335
|
+
readonly request_id: string;
|
|
19336
|
+
readonly hs6_code: string;
|
|
19337
|
+
readonly restricted_regions: string[];
|
|
19338
|
+
}
|
|
19139
19339
|
interface ProductTransaction {
|
|
19140
19340
|
readonly transaction_amount: number;
|
|
19141
19341
|
readonly destination_amount: number;
|
|
@@ -19736,6 +19936,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19736
19936
|
readonly tax_inclusive?: boolean;
|
|
19737
19937
|
readonly duty_inclusive?: boolean;
|
|
19738
19938
|
readonly manual_payment?: boolean;
|
|
19939
|
+
readonly manual_capture?: boolean;
|
|
19739
19940
|
readonly partial_fulfillment?: boolean;
|
|
19740
19941
|
readonly partial_refund?: boolean;
|
|
19741
19942
|
}
|
|
@@ -19793,6 +19994,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19793
19994
|
readonly id: string;
|
|
19794
19995
|
readonly number: string;
|
|
19795
19996
|
readonly submitted_at: string;
|
|
19997
|
+
readonly payment_source?: string;
|
|
19796
19998
|
}
|
|
19797
19999
|
interface ReportingOrganizationSummary {
|
|
19798
20000
|
readonly id: string;
|
|
@@ -19957,6 +20159,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19957
20159
|
readonly priority_score: number;
|
|
19958
20160
|
readonly date: string;
|
|
19959
20161
|
readonly statuses: io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
20162
|
+
readonly counts: io.flow.internal.v0.models.RestrictionSummaryCounts;
|
|
19960
20163
|
readonly count: number;
|
|
19961
20164
|
}
|
|
19962
20165
|
interface RestrictionOrganizationStatus {
|
|
@@ -20041,6 +20244,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20041
20244
|
readonly negative_keywords: string[];
|
|
20042
20245
|
readonly value_threshold_usd?: number;
|
|
20043
20246
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
20247
|
+
readonly source: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
20248
|
+
readonly sellability_positive_keywords?: string[];
|
|
20044
20249
|
}
|
|
20045
20250
|
interface RestrictionRuleDecisionForm {
|
|
20046
20251
|
readonly rule_id: string;
|
|
@@ -20087,11 +20292,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20087
20292
|
readonly negative_keywords: string[];
|
|
20088
20293
|
readonly value_threshold_usd?: number;
|
|
20089
20294
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
20295
|
+
readonly source?: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
20296
|
+
readonly sellability_positive_keywords?: string[];
|
|
20090
20297
|
}
|
|
20091
|
-
interface
|
|
20092
|
-
readonly
|
|
20093
|
-
readonly
|
|
20094
|
-
readonly
|
|
20298
|
+
interface RestrictionRuleLaneExemption {
|
|
20299
|
+
readonly id: string;
|
|
20300
|
+
readonly rule_id: string;
|
|
20301
|
+
readonly description: string;
|
|
20302
|
+
readonly origin_countries: string[];
|
|
20303
|
+
readonly destination_countries: string[];
|
|
20095
20304
|
}
|
|
20096
20305
|
interface RestrictionRuleOverride {
|
|
20097
20306
|
readonly id: string;
|
|
@@ -20114,6 +20323,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20114
20323
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
20115
20324
|
readonly count: number;
|
|
20116
20325
|
}
|
|
20326
|
+
interface RestrictionSummaryCounts {
|
|
20327
|
+
readonly pending_restriction_count: number;
|
|
20328
|
+
readonly pending_verification_count: number;
|
|
20329
|
+
}
|
|
20117
20330
|
interface RestrictionsDailyops {
|
|
20118
20331
|
readonly id: string;
|
|
20119
20332
|
readonly report_date: string;
|
|
@@ -20259,6 +20472,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20259
20472
|
readonly organization: string;
|
|
20260
20473
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
20261
20474
|
}
|
|
20475
|
+
interface RohanItem {
|
|
20476
|
+
readonly id: string;
|
|
20477
|
+
readonly number: string;
|
|
20478
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20479
|
+
readonly description?: string;
|
|
20480
|
+
readonly type: io.flow.internal.v0.enums.RohanItemType;
|
|
20481
|
+
readonly added_on: string;
|
|
20482
|
+
}
|
|
20483
|
+
interface RohanItemForm {
|
|
20484
|
+
readonly number: string;
|
|
20485
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
20486
|
+
readonly description?: string;
|
|
20487
|
+
readonly type: io.flow.internal.v0.enums.RohanItemType;
|
|
20488
|
+
readonly added_on: string;
|
|
20489
|
+
}
|
|
20262
20490
|
interface RoutingAccount {
|
|
20263
20491
|
readonly discriminator: 'routing_account';
|
|
20264
20492
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -20362,16 +20590,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20362
20590
|
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
20363
20591
|
readonly label: io.flow.internal.v0.models.LabelSummary;
|
|
20364
20592
|
}
|
|
20365
|
-
interface SessionCountries {
|
|
20366
|
-
readonly countries: io.flow.internal.v0.models.SessionCountry[];
|
|
20367
|
-
}
|
|
20368
|
-
interface SessionCountry {
|
|
20369
|
-
readonly country: string;
|
|
20370
|
-
readonly status: io.flow.internal.v0.enums.SessionCountryStatus;
|
|
20371
|
-
}
|
|
20372
|
-
interface SessionCountryForm {
|
|
20373
|
-
readonly status: io.flow.internal.v0.enums.SessionCountryStatus;
|
|
20374
|
-
}
|
|
20375
20593
|
interface SessionOrderData {
|
|
20376
20594
|
readonly id: string;
|
|
20377
20595
|
readonly session: io.flow.common.v0.models.SessionReference;
|
|
@@ -20379,13 +20597,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20379
20597
|
readonly customer: io.flow.common.v0.models.OrderCustomer;
|
|
20380
20598
|
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
20381
20599
|
}
|
|
20382
|
-
interface SessionRollout {
|
|
20383
|
-
readonly id: string;
|
|
20384
|
-
readonly percent: number;
|
|
20385
|
-
}
|
|
20386
|
-
interface SessionRolloutForm {
|
|
20387
|
-
readonly percent: number;
|
|
20388
|
-
}
|
|
20389
20600
|
interface SetupBlockPutForm {
|
|
20390
20601
|
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
20391
20602
|
}
|
|
@@ -20396,6 +20607,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20396
20607
|
readonly product_code: string;
|
|
20397
20608
|
readonly customer_id: string;
|
|
20398
20609
|
}
|
|
20610
|
+
interface ShipmentCostSummary {
|
|
20611
|
+
readonly lane_id?: string;
|
|
20612
|
+
readonly ratecard_id?: string;
|
|
20613
|
+
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
20614
|
+
readonly glbe_shipping_method_id?: string;
|
|
20615
|
+
readonly glbe_proposition_name?: string;
|
|
20616
|
+
readonly weight_break?: number;
|
|
20617
|
+
readonly channel_revenue_share_percentage?: number;
|
|
20618
|
+
readonly rate_level_key?: string;
|
|
20619
|
+
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
20620
|
+
readonly cost: io.flow.common.v0.models.Money;
|
|
20621
|
+
}
|
|
20399
20622
|
interface ShippingLane {
|
|
20400
20623
|
readonly origin: string;
|
|
20401
20624
|
readonly destination: string;
|
|
@@ -20403,6 +20626,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20403
20626
|
interface ShippingMethodReference {
|
|
20404
20627
|
readonly id: string;
|
|
20405
20628
|
}
|
|
20629
|
+
interface ShippingPricing {
|
|
20630
|
+
readonly freight_cost: number;
|
|
20631
|
+
readonly customer_price: number;
|
|
20632
|
+
}
|
|
20406
20633
|
interface Shop {
|
|
20407
20634
|
readonly id: string;
|
|
20408
20635
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -20769,6 +20996,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20769
20996
|
readonly registration: io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
20770
20997
|
}
|
|
20771
20998
|
interface ShopifyMerchantPlan {
|
|
20999
|
+
readonly id: string;
|
|
20772
21000
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
20773
21001
|
readonly plan: io.flow.internal.v0.enums.ShopifyPlanType;
|
|
20774
21002
|
}
|
|
@@ -20911,6 +21139,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20911
21139
|
readonly variant_url: string;
|
|
20912
21140
|
readonly attributes: io.flow.internal.v0.models.ShopifyOrderLineAttribute[];
|
|
20913
21141
|
}
|
|
21142
|
+
interface ShopifyOrderRiskAssessment {
|
|
21143
|
+
readonly id: string;
|
|
21144
|
+
readonly risk_level: string;
|
|
21145
|
+
readonly assessment_created_at: string;
|
|
21146
|
+
}
|
|
21147
|
+
interface ShopifyOrderRiskAssessmentDeleted {
|
|
21148
|
+
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
21149
|
+
readonly event_id: string;
|
|
21150
|
+
readonly timestamp: string;
|
|
21151
|
+
readonly organization: string;
|
|
21152
|
+
readonly id: string;
|
|
21153
|
+
}
|
|
21154
|
+
interface ShopifyOrderRiskAssessmentUpserted {
|
|
21155
|
+
readonly discriminator: 'shopify_order_risk_assessment_upserted';
|
|
21156
|
+
readonly event_id: string;
|
|
21157
|
+
readonly timestamp: string;
|
|
21158
|
+
readonly organization: string;
|
|
21159
|
+
readonly assessment: io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
21160
|
+
}
|
|
20914
21161
|
interface ShopifyOrganizationSettings {
|
|
20915
21162
|
readonly id: string;
|
|
20916
21163
|
readonly process_label: boolean;
|
|
@@ -21279,23 +21526,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21279
21526
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
21280
21527
|
readonly spot_rate: io.flow.internal.v0.models.SpotRate;
|
|
21281
21528
|
}
|
|
21282
|
-
interface SppTrackerUpdateRequest {
|
|
21283
|
-
readonly id: string;
|
|
21284
|
-
readonly tracking_subscription: io.flow.internal.v0.models.TrackingSubscription;
|
|
21285
|
-
readonly created_at: string;
|
|
21286
|
-
}
|
|
21287
|
-
interface SppTrackerUpdateRequestDeleted {
|
|
21288
|
-
readonly discriminator: 'spp_tracker_update_request_deleted';
|
|
21289
|
-
readonly event_id: string;
|
|
21290
|
-
readonly timestamp: string;
|
|
21291
|
-
readonly id: string;
|
|
21292
|
-
}
|
|
21293
|
-
interface SppTrackerUpdateRequestUpserted {
|
|
21294
|
-
readonly discriminator: 'spp_tracker_update_request_upserted';
|
|
21295
|
-
readonly event_id: string;
|
|
21296
|
-
readonly timestamp: string;
|
|
21297
|
-
readonly spp_tracker_update_request: io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
21298
|
-
}
|
|
21299
21529
|
interface StandaloneAttachment {
|
|
21300
21530
|
readonly id: string;
|
|
21301
21531
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -22328,6 +22558,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22328
22558
|
readonly payment: io.flow.internal.v0.models.CheckoutPayment;
|
|
22329
22559
|
readonly customer_bundle?: io.flow.customer.v0.models.CustomerBundle;
|
|
22330
22560
|
}
|
|
22561
|
+
interface ValidatedAddress {
|
|
22562
|
+
readonly company_name: string;
|
|
22563
|
+
readonly person_name: string;
|
|
22564
|
+
readonly phone: string;
|
|
22565
|
+
readonly email: string;
|
|
22566
|
+
readonly original_streets: string[];
|
|
22567
|
+
readonly city: string;
|
|
22568
|
+
readonly province: string;
|
|
22569
|
+
readonly postal: string;
|
|
22570
|
+
readonly country: io.flow.reference.v0.models.Country;
|
|
22571
|
+
readonly original_address: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
22572
|
+
}
|
|
22573
|
+
interface ValidatedShippingData {
|
|
22574
|
+
readonly organization: string;
|
|
22575
|
+
readonly reference_id?: string;
|
|
22576
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
22577
|
+
readonly merchant_of_record_entity?: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
22578
|
+
readonly destination: io.flow.internal.v0.models.ValidatedAddress;
|
|
22579
|
+
readonly origin: io.flow.internal.v0.models.ValidatedAddress;
|
|
22580
|
+
readonly service: io.flow.reference.v0.models.CarrierService;
|
|
22581
|
+
readonly package: io.flow.internal.v0.models.EnrichedShippingLabelPackage;
|
|
22582
|
+
readonly total_catalog_item_value: io.flow.common.v0.models.Money;
|
|
22583
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
22584
|
+
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
22585
|
+
readonly flow_tracking_number: string;
|
|
22586
|
+
readonly center?: io.flow.fulfillment.v0.models.Center;
|
|
22587
|
+
readonly catalog_items: io.flow.internal.v0.models.InternalItem[];
|
|
22588
|
+
readonly order: io.flow.experience.v0.models.Order;
|
|
22589
|
+
readonly window: io.flow.common.v0.models.DatetimeRange;
|
|
22590
|
+
readonly id: string;
|
|
22591
|
+
readonly shipment_recipient: io.flow.label.v0.enums.ShipmentRecipient;
|
|
22592
|
+
readonly request_id: string;
|
|
22593
|
+
readonly commercial_invoice_data?: io.flow.internal.v0.models.InvoiceData;
|
|
22594
|
+
readonly order_identifier?: string;
|
|
22595
|
+
readonly fulfillment_key?: string;
|
|
22596
|
+
readonly rex_number?: string;
|
|
22597
|
+
readonly weee_number?: string;
|
|
22598
|
+
readonly generate_commercial_invoice_only: boolean;
|
|
22599
|
+
readonly liability_remittance_plan?: io.flow.internal.v0.models.LiabilityRemittancePlan;
|
|
22600
|
+
readonly shipment_cost_summary?: io.flow.internal.v0.models.ShipmentCostSummary;
|
|
22601
|
+
readonly shipping_label_hop_cost_itemized_estimate?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
22602
|
+
readonly additional_services_requested?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
22603
|
+
readonly provided_charges?: io.flow.internal.v0.models.ChargeInput[];
|
|
22604
|
+
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
22605
|
+
}
|
|
22331
22606
|
interface ValidationCharacterLength {
|
|
22332
22607
|
readonly discriminator: 'validation_character_length';
|
|
22333
22608
|
readonly min?: number;
|
|
@@ -22401,7 +22676,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22401
22676
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22402
22677
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22403
22678
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22404
|
-
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.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | 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.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.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | 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.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | 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.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | 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.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.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.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | 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.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | 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.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | 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.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | 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.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | 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.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | 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.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.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | 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.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.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | 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.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | 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.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | 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.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | 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.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22679
|
+
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.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | 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.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.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | 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.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | 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.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | 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.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.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.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | 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.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | 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.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | 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.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | 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.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | 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.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | 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.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.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | 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.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.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | 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.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | 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.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | 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.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | 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.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22405
22680
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22406
22681
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22407
22682
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22571,6 +22846,7 @@ export declare type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGo
|
|
|
22571
22846
|
export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
22572
22847
|
export declare type ApmContent = io.flow.internal.v0.models.ApmContent;
|
|
22573
22848
|
export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
22849
|
+
export declare type ApplicablePreferentialRate = io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
22574
22850
|
export declare type ApplyAtValueForm = io.flow.internal.v0.models.ApplyAtValueForm;
|
|
22575
22851
|
export declare type AttemptStatistics = io.flow.internal.v0.models.AttemptStatistics;
|
|
22576
22852
|
export declare type AttributeLabel = io.flow.internal.v0.models.AttributeLabel;
|
|
@@ -22850,6 +23126,7 @@ export declare type CommercialInvoiceInternal = io.flow.internal.v0.models.Comme
|
|
|
22850
23126
|
export declare type CommercialInvoiceInternalDeleted = io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
|
|
22851
23127
|
export declare type CommercialInvoiceInternalUpserted = io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
22852
23128
|
export declare type CommercialInvoiceSummary = io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
23129
|
+
export declare type CommercialInvoiceVersion = io.flow.internal.v0.enums.CommercialInvoiceVersion;
|
|
22853
23130
|
export declare type Company = io.flow.internal.v0.enums.Company;
|
|
22854
23131
|
export declare type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
22855
23132
|
export declare type Compliance = io.flow.internal.v0.models.Compliance;
|
|
@@ -22889,8 +23166,6 @@ export declare type CryptoAuthentication = io.flow.internal.v0.models.CryptoAuth
|
|
|
22889
23166
|
export declare type CryptoAuthenticationForm = io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
22890
23167
|
export declare type CsvTransaction = io.flow.internal.v0.models.CsvTransaction;
|
|
22891
23168
|
export declare type CurrencyInternalRate = io.flow.internal.v0.models.CurrencyInternalRate;
|
|
22892
|
-
export declare type CustomerPurgeUpserted = io.flow.internal.v0.models.CustomerPurgeUpserted;
|
|
22893
|
-
export declare type CustomerSecret = io.flow.internal.v0.models.CustomerSecret;
|
|
22894
23169
|
export declare type CustomsDescriptionImport = io.flow.internal.v0.models.CustomsDescriptionImport;
|
|
22895
23170
|
export declare type CustomsDescriptionStatistics = io.flow.internal.v0.models.CustomsDescriptionStatistics;
|
|
22896
23171
|
export declare type CustomsDescriptionSuggestion = io.flow.internal.v0.models.CustomsDescriptionSuggestion;
|
|
@@ -23011,7 +23286,10 @@ export declare type EmailModificationForm = io.flow.internal.v0.models.EmailModi
|
|
|
23011
23286
|
export declare type EmptyAttribute = io.flow.internal.v0.enums.EmptyAttribute;
|
|
23012
23287
|
export declare type EmptyClassificationForm = io.flow.internal.v0.models.EmptyClassificationForm;
|
|
23013
23288
|
export declare type Encryption = io.flow.internal.v0.models.Encryption;
|
|
23289
|
+
export declare type EnrichedLineItemForm = io.flow.internal.v0.models.EnrichedLineItemForm;
|
|
23290
|
+
export declare type EnrichedShippingLabelPackage = io.flow.internal.v0.models.EnrichedShippingLabelPackage;
|
|
23014
23291
|
export declare type EntityReference = io.flow.internal.v0.models.EntityReference;
|
|
23292
|
+
export declare type EntityReferenceNumber = io.flow.internal.v0.models.EntityReferenceNumber;
|
|
23015
23293
|
export declare type ErpFileType = io.flow.internal.v0.enums.ErpFileType;
|
|
23016
23294
|
export declare type ErpFlowFile = io.flow.internal.v0.models.ErpFlowFile;
|
|
23017
23295
|
export declare type ErpFlowFileForm = io.flow.internal.v0.models.ErpFlowFileForm;
|
|
@@ -23184,6 +23462,7 @@ export declare type FxRevenueRecognitionOrder = io.flow.internal.v0.models.FxRev
|
|
|
23184
23462
|
export declare type FxRevenueRecognitionOrganization = io.flow.internal.v0.models.FxRevenueRecognitionOrganization;
|
|
23185
23463
|
export declare type FxRevenueRecognitionRate = io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
23186
23464
|
export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
23465
|
+
export declare type GeIngestionFileStatus = io.flow.internal.v0.enums.GeIngestionFileStatus;
|
|
23187
23466
|
export declare type GeRevenueShareTransaction = io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
23188
23467
|
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
23189
23468
|
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
@@ -23239,6 +23518,7 @@ export declare type InternalDebugTransaction = io.flow.internal.v0.models.Intern
|
|
|
23239
23518
|
export declare type InternalExclusionRuleForm = io.flow.internal.v0.models.InternalExclusionRuleForm;
|
|
23240
23519
|
export declare type InternalFiservAuthorizationDetails = io.flow.internal.v0.models.InternalFiservAuthorizationDetails;
|
|
23241
23520
|
export declare type InternalHarmonizationStatistic = io.flow.internal.v0.unions.InternalHarmonizationStatistic;
|
|
23521
|
+
export declare type InternalItem = io.flow.internal.v0.models.InternalItem;
|
|
23242
23522
|
export declare type InternalItemForm = io.flow.internal.v0.models.InternalItemForm;
|
|
23243
23523
|
export declare type InternalOrder = io.flow.internal.v0.models.InternalOrder;
|
|
23244
23524
|
export declare type InternalPaymentEntityType = io.flow.internal.v0.enums.InternalPaymentEntityType;
|
|
@@ -23252,6 +23532,8 @@ export declare type InternalTransactionDetailsCard = io.flow.internal.v0.models.
|
|
|
23252
23532
|
export declare type Invariant = io.flow.internal.v0.models.Invariant;
|
|
23253
23533
|
export declare type InventoryItemWrapper = io.flow.internal.v0.models.InventoryItemWrapper;
|
|
23254
23534
|
export declare type Invoice = io.flow.internal.v0.models.Invoice;
|
|
23535
|
+
export declare type InvoiceData = io.flow.internal.v0.models.InvoiceData;
|
|
23536
|
+
export declare type InvoiceDataLineItem = io.flow.internal.v0.models.InvoiceDataLineItem;
|
|
23255
23537
|
export declare type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm;
|
|
23256
23538
|
export declare type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
23257
23539
|
export declare type InvoiceLineItem = io.flow.internal.v0.models.InvoiceLineItem;
|
|
@@ -23431,11 +23713,15 @@ export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
|
23431
23713
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
23432
23714
|
export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
23433
23715
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
23716
|
+
export declare type NiallItem = io.flow.internal.v0.models.NiallItem;
|
|
23717
|
+
export declare type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
|
|
23718
|
+
export declare type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
|
|
23434
23719
|
export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
23435
23720
|
export declare type NoClassificationForm = io.flow.internal.v0.models.NoClassificationForm;
|
|
23436
23721
|
export declare type NoLiabilityReasonCode = io.flow.internal.v0.enums.NoLiabilityReasonCode;
|
|
23437
23722
|
export declare type NonChannelPaymentBankAccount = io.flow.internal.v0.models.NonChannelPaymentBankAccount;
|
|
23438
23723
|
export declare type NonL4LTaxDutyFxTransaction = io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction;
|
|
23724
|
+
export declare type NonL4LTaxDutyFxTransactionType = io.flow.internal.v0.enums.NonL4LTaxDutyFxTransactionType;
|
|
23439
23725
|
export declare type Notification = io.flow.internal.v0.models.Notification;
|
|
23440
23726
|
export declare type OnboardingAuditMessage = io.flow.internal.v0.models.OnboardingAuditMessage;
|
|
23441
23727
|
export declare type OnboardingAuditMessageLevel = io.flow.internal.v0.enums.OnboardingAuditMessageLevel;
|
|
@@ -23672,6 +23958,9 @@ export declare type PlatformFeeFlat = io.flow.internal.v0.models.PlatformFeeFlat
|
|
|
23672
23958
|
export declare type PlatformFeePause = io.flow.internal.v0.models.PlatformFeePause;
|
|
23673
23959
|
export declare type PlatformFeePercentage = io.flow.internal.v0.models.PlatformFeePercentage;
|
|
23674
23960
|
export declare type PlatformFeePercentageTier = io.flow.internal.v0.models.PlatformFeePercentageTier;
|
|
23961
|
+
export declare type PrateekItem = io.flow.internal.v0.models.PrateekItem;
|
|
23962
|
+
export declare type PrateekItemForm = io.flow.internal.v0.models.PrateekItemForm;
|
|
23963
|
+
export declare type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
|
|
23675
23964
|
export declare type Prediction = io.flow.internal.v0.models.Prediction;
|
|
23676
23965
|
export declare type PreferredBillingSchedule = io.flow.internal.v0.enums.PreferredBillingSchedule;
|
|
23677
23966
|
export declare type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
@@ -23708,7 +23997,12 @@ export declare type ProductRestrictionResultValidationError = io.flow.internal.v
|
|
|
23708
23997
|
export declare type ProductRestrictionRuleDecision = io.flow.internal.v0.models.ProductRestrictionRuleDecision;
|
|
23709
23998
|
export declare type ProductRestrictionRuleDecisionDeleted = io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted;
|
|
23710
23999
|
export declare type ProductRestrictionRuleDecisionUpserted = io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted;
|
|
24000
|
+
export declare type ProductRestrictionState = io.flow.internal.v0.models.ProductRestrictionState;
|
|
24001
|
+
export declare type ProductRestrictionStateDeleted = io.flow.internal.v0.models.ProductRestrictionStateDeleted;
|
|
24002
|
+
export declare type ProductRestrictionStateInserted = io.flow.internal.v0.models.ProductRestrictionStateInserted;
|
|
24003
|
+
export declare type ProductRestrictionStateUpdated = io.flow.internal.v0.models.ProductRestrictionStateUpdated;
|
|
23711
24004
|
export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductReviewHistory;
|
|
24005
|
+
export declare type ProductSellabilityResult = io.flow.internal.v0.models.ProductSellabilityResult;
|
|
23712
24006
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
23713
24007
|
export declare type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
23714
24008
|
export declare type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
@@ -23863,7 +24157,9 @@ export declare type RestrictionItemReviewSummary = io.flow.internal.v0.models.Re
|
|
|
23863
24157
|
export declare type RestrictionKeywordMetadata = io.flow.internal.v0.models.RestrictionKeywordMetadata;
|
|
23864
24158
|
export declare type RestrictionKeywords = io.flow.internal.v0.models.RestrictionKeywords;
|
|
23865
24159
|
export declare type RestrictionOrganization = io.flow.internal.v0.models.RestrictionOrganization;
|
|
24160
|
+
export declare type RestrictionOrganizationChannel = io.flow.internal.v0.enums.RestrictionOrganizationChannel;
|
|
23866
24161
|
export declare type RestrictionOrganizationDecisionSummary = io.flow.internal.v0.models.RestrictionOrganizationDecisionSummary;
|
|
24162
|
+
export declare type RestrictionOrganizationSource = io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
23867
24163
|
export declare type RestrictionOrganizationStatus = io.flow.internal.v0.models.RestrictionOrganizationStatus;
|
|
23868
24164
|
export declare type RestrictionOrganizationStatusDeleted = io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted;
|
|
23869
24165
|
export declare type RestrictionOrganizationStatusUpserted = io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted;
|
|
@@ -23880,13 +24176,16 @@ export declare type RestrictionRuleEffect = io.flow.internal.v0.models.Restricti
|
|
|
23880
24176
|
export declare type RestrictionRuleEffectDeleted = io.flow.internal.v0.models.RestrictionRuleEffectDeleted;
|
|
23881
24177
|
export declare type RestrictionRuleEffectForm = io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
23882
24178
|
export declare type RestrictionRuleEffectUpserted = io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
24179
|
+
export declare type RestrictionRuleExceptionAction = io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
|
|
23883
24180
|
export declare type RestrictionRuleForm = io.flow.internal.v0.models.RestrictionRuleForm;
|
|
23884
|
-
export declare type
|
|
24181
|
+
export declare type RestrictionRuleLaneExemption = io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
23885
24182
|
export declare type RestrictionRuleOverride = io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
23886
24183
|
export declare type RestrictionRuleSummary = io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
23887
24184
|
export declare type RestrictionRuleUpserted = io.flow.internal.v0.models.RestrictionRuleUpserted;
|
|
24185
|
+
export declare type RestrictionStateReviewStatus = io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
23888
24186
|
export declare type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
23889
24187
|
export declare type RestrictionStatusMetadata = io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
24188
|
+
export declare type RestrictionSummaryCounts = io.flow.internal.v0.models.RestrictionSummaryCounts;
|
|
23890
24189
|
export declare type RestrictionsDailyops = io.flow.internal.v0.models.RestrictionsDailyops;
|
|
23891
24190
|
export declare type RestrictionsDailyopsDeleted = io.flow.internal.v0.models.RestrictionsDailyopsDeleted;
|
|
23892
24191
|
export declare type RestrictionsDailyopsUpserted = io.flow.internal.v0.models.RestrictionsDailyopsUpserted;
|
|
@@ -23910,6 +24209,9 @@ export declare type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordT
|
|
|
23910
24209
|
export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
23911
24210
|
export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
23912
24211
|
export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
24212
|
+
export declare type RohanItem = io.flow.internal.v0.models.RohanItem;
|
|
24213
|
+
export declare type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
|
|
24214
|
+
export declare type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
|
|
23913
24215
|
export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
23914
24216
|
export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
23915
24217
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
@@ -23929,17 +24231,13 @@ export declare type SearchItemSummary = io.flow.internal.v0.models.SearchItemSum
|
|
|
23929
24231
|
export declare type SearchOrderSummary = io.flow.internal.v0.models.SearchOrderSummary;
|
|
23930
24232
|
export declare type SearchProviderExport = io.flow.internal.v0.models.SearchProviderExport;
|
|
23931
24233
|
export declare type SearchTrackingSummary = io.flow.internal.v0.models.SearchTrackingSummary;
|
|
23932
|
-
export declare type SessionCountries = io.flow.internal.v0.models.SessionCountries;
|
|
23933
|
-
export declare type SessionCountry = io.flow.internal.v0.models.SessionCountry;
|
|
23934
|
-
export declare type SessionCountryForm = io.flow.internal.v0.models.SessionCountryForm;
|
|
23935
|
-
export declare type SessionCountryStatus = io.flow.internal.v0.enums.SessionCountryStatus;
|
|
23936
24234
|
export declare type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
23937
|
-
export declare type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
23938
|
-
export declare type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
23939
24235
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
23940
24236
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
24237
|
+
export declare type ShipmentCostSummary = io.flow.internal.v0.models.ShipmentCostSummary;
|
|
23941
24238
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
23942
24239
|
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
24240
|
+
export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
|
|
23943
24241
|
export declare type Shop = io.flow.internal.v0.models.Shop;
|
|
23944
24242
|
export declare type ShopForm = io.flow.internal.v0.models.ShopForm;
|
|
23945
24243
|
export declare type ShopVersion = io.flow.internal.v0.models.ShopVersion;
|
|
@@ -24037,6 +24335,9 @@ export declare type ShopifyOrderFulfillmentsSnapshotUpserted = io.flow.internal.
|
|
|
24037
24335
|
export declare type ShopifyOrderInventoryCheck = io.flow.internal.v0.models.ShopifyOrderInventoryCheck;
|
|
24038
24336
|
export declare type ShopifyOrderLineAttribute = io.flow.internal.v0.models.ShopifyOrderLineAttribute;
|
|
24039
24337
|
export declare type ShopifyOrderLineContent = io.flow.internal.v0.models.ShopifyOrderLineContent;
|
|
24338
|
+
export declare type ShopifyOrderRiskAssessment = io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
24339
|
+
export declare type ShopifyOrderRiskAssessmentDeleted = io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted;
|
|
24340
|
+
export declare type ShopifyOrderRiskAssessmentUpserted = io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted;
|
|
24040
24341
|
export declare type ShopifyOrganizationSettings = io.flow.internal.v0.models.ShopifyOrganizationSettings;
|
|
24041
24342
|
export declare type ShopifyOrganizationSettingsForm = io.flow.internal.v0.models.ShopifyOrganizationSettingsForm;
|
|
24042
24343
|
export declare type ShopifyPartnerWebhook = io.flow.internal.v0.models.ShopifyPartnerWebhook;
|
|
@@ -24116,9 +24417,6 @@ export declare type SpotRateMetadataIdentity = io.flow.internal.v0.models.SpotRa
|
|
|
24116
24417
|
export declare type SpotRateMetadataRate = io.flow.internal.v0.models.SpotRateMetadataRate;
|
|
24117
24418
|
export declare type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
|
|
24118
24419
|
export declare type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
|
|
24119
|
-
export declare type SppTrackerUpdateRequest = io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
24120
|
-
export declare type SppTrackerUpdateRequestDeleted = io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted;
|
|
24121
|
-
export declare type SppTrackerUpdateRequestUpserted = io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted;
|
|
24122
24420
|
export declare type StandaloneAttachment = io.flow.internal.v0.models.StandaloneAttachment;
|
|
24123
24421
|
export declare type StandaloneAttachmentDeleted = io.flow.internal.v0.models.StandaloneAttachmentDeleted;
|
|
24124
24422
|
export declare type StandaloneAttachmentUpserted = io.flow.internal.v0.models.StandaloneAttachmentUpserted;
|
|
@@ -24294,6 +24592,8 @@ export declare type UserStatusRule = io.flow.internal.v0.models.UserStatusRule;
|
|
|
24294
24592
|
export declare type UserStatusRuleForm = io.flow.internal.v0.models.UserStatusRuleForm;
|
|
24295
24593
|
export declare type UserUpsertedV2 = io.flow.internal.v0.models.UserUpsertedV2;
|
|
24296
24594
|
export declare type V1Checkout = io.flow.internal.v0.models.V1Checkout;
|
|
24595
|
+
export declare type ValidatedAddress = io.flow.internal.v0.models.ValidatedAddress;
|
|
24596
|
+
export declare type ValidatedShippingData = io.flow.internal.v0.models.ValidatedShippingData;
|
|
24297
24597
|
export declare type ValidationCharacterLength = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
24298
24598
|
export declare type ValidationRule = io.flow.internal.v0.unions.ValidationRule;
|
|
24299
24599
|
export declare type ViesResult = io.flow.internal.v0.models.ViesResult;
|