@flowio/api-internal-prop-types 9.24.114 → 9.24.116
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/lib/api-internal.d.ts +410 -94
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +410 -94
- package/src/api-internal.js +1249 -905
package/src/api-internal.d.ts
CHANGED
|
@@ -2231,11 +2231,10 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2231
2231
|
interface Transfer {
|
|
2232
2232
|
readonly 'id': string;
|
|
2233
2233
|
readonly 'type': io.flow.payment.v0.enums.TransferType;
|
|
2234
|
-
readonly '
|
|
2235
|
-
readonly 'transferred_money': io.flow.payment.v0.models.ExchangedMoney;
|
|
2234
|
+
readonly 'base': io.flow.common.v0.models.Money;
|
|
2236
2235
|
readonly 'status': io.flow.payment.v0.enums.TransferStatus;
|
|
2237
2236
|
readonly 'created_at': string;
|
|
2238
|
-
readonly '
|
|
2237
|
+
readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
|
|
2239
2238
|
readonly 'transferred_at': string;
|
|
2240
2239
|
}
|
|
2241
2240
|
|
|
@@ -5110,6 +5109,12 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5110
5109
|
readonly 'order_note'?: string;
|
|
5111
5110
|
}
|
|
5112
5111
|
|
|
5112
|
+
interface ShopifyOrderRiskAssessment {
|
|
5113
|
+
readonly 'id': string;
|
|
5114
|
+
readonly 'risk_level': string;
|
|
5115
|
+
readonly 'assessment_created_at': string;
|
|
5116
|
+
}
|
|
5117
|
+
|
|
5113
5118
|
interface ShopifyProductBundle {
|
|
5114
5119
|
readonly 'id': string;
|
|
5115
5120
|
readonly 'underlying': io.flow.shopify.markets.internal.v0.models.ShopifyProductBundleUnderlying;
|
|
@@ -7474,6 +7479,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7474
7479
|
readonly 'order_created_at'?: string;
|
|
7475
7480
|
readonly 'order_updated_at'?: string;
|
|
7476
7481
|
readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
7482
|
+
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
7477
7483
|
}
|
|
7478
7484
|
|
|
7479
7485
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -8403,6 +8409,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8403
8409
|
readonly 'registration': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
8404
8410
|
}
|
|
8405
8411
|
|
|
8412
|
+
interface ShopifyOrderRiskAssessmentDeleted {
|
|
8413
|
+
readonly 'discriminator': 'shopify_order_risk_assessment_deleted';
|
|
8414
|
+
readonly 'event_id': string;
|
|
8415
|
+
readonly 'timestamp': string;
|
|
8416
|
+
readonly 'organization': string;
|
|
8417
|
+
readonly 'id': string;
|
|
8418
|
+
}
|
|
8419
|
+
|
|
8420
|
+
interface ShopifyOrderRiskAssessmentUpserted {
|
|
8421
|
+
readonly 'discriminator': 'shopify_order_risk_assessment_upserted';
|
|
8422
|
+
readonly 'event_id': string;
|
|
8423
|
+
readonly 'timestamp': string;
|
|
8424
|
+
readonly 'organization': string;
|
|
8425
|
+
readonly 'assessment': io.flow.shopify.markets.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
8426
|
+
}
|
|
8427
|
+
|
|
8406
8428
|
interface ShopifyProductBundleDeleted {
|
|
8407
8429
|
readonly 'discriminator': 'shopify_product_bundle_deleted';
|
|
8408
8430
|
readonly 'event_id': string;
|
|
@@ -8421,7 +8443,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8421
8443
|
}
|
|
8422
8444
|
|
|
8423
8445
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8424
|
-
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);
|
|
8446
|
+
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);
|
|
8425
8447
|
}
|
|
8426
8448
|
|
|
8427
8449
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -11648,6 +11670,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11648
11670
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11649
11671
|
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';
|
|
11650
11672
|
type StatementAttachmentType = 'csv';
|
|
11673
|
+
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';
|
|
11651
11674
|
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';
|
|
11652
11675
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
11653
11676
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -12002,9 +12025,15 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12002
12025
|
|
|
12003
12026
|
interface TransactionMetadataShippingLabelCarrier {
|
|
12004
12027
|
readonly 'id': string;
|
|
12028
|
+
readonly 'service_id'?: string;
|
|
12005
12029
|
readonly 'tracking_number': string;
|
|
12006
12030
|
}
|
|
12007
12031
|
|
|
12032
|
+
interface TransactionMetadataTaxDuty {
|
|
12033
|
+
readonly 'discriminator': 'transaction_tax_duty';
|
|
12034
|
+
readonly 'reason_code': io.flow.billing.v0.enums.TaxDutyTransactionReasonCode;
|
|
12035
|
+
}
|
|
12036
|
+
|
|
12008
12037
|
interface TransactionMetadataTrueup {
|
|
12009
12038
|
readonly 'discriminator': 'trueup';
|
|
12010
12039
|
readonly 'original': io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
@@ -12102,7 +12131,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
12102
12131
|
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
12103
12132
|
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
12104
12133
|
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
12105
|
-
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);
|
|
12134
|
+
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);
|
|
12106
12135
|
}
|
|
12107
12136
|
|
|
12108
12137
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -13401,7 +13430,8 @@ declare namespace io.flow.fraud.v0.unions {
|
|
|
13401
13430
|
|
|
13402
13431
|
declare namespace io.flow.sellability.v0.enums {
|
|
13403
13432
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
13404
|
-
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
|
|
13433
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
13434
|
+
type SellabilityRequestStatus = 'commit';
|
|
13405
13435
|
}
|
|
13406
13436
|
|
|
13407
13437
|
declare namespace io.flow.sellability.v0.models {
|
|
@@ -13416,11 +13446,12 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13416
13446
|
interface ProductSellabilityForm {
|
|
13417
13447
|
readonly 'shop_id': string;
|
|
13418
13448
|
readonly 'product_id'?: string;
|
|
13419
|
-
readonly 'request_id': string;
|
|
13420
13449
|
readonly 'name': string;
|
|
13421
13450
|
readonly 'price': io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
13422
13451
|
readonly 'description': string;
|
|
13423
13452
|
readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
13453
|
+
readonly 'status'?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
13454
|
+
readonly 'dry_run'?: boolean;
|
|
13424
13455
|
}
|
|
13425
13456
|
|
|
13426
13457
|
interface ProductSellabilityPrice {
|
|
@@ -13556,19 +13587,6 @@ declare namespace io.flow.organization.v0.models {
|
|
|
13556
13587
|
readonly 'environment': io.flow.common.v0.enums.Environment;
|
|
13557
13588
|
}
|
|
13558
13589
|
|
|
13559
|
-
interface OrganizationConfigurationReference {
|
|
13560
|
-
readonly 'id': string;
|
|
13561
|
-
}
|
|
13562
|
-
|
|
13563
|
-
interface OrganizationDefaultConfigurations {
|
|
13564
|
-
readonly 'id': string;
|
|
13565
|
-
readonly 'checkout_configuration': io.flow.organization.v0.models.OrganizationConfigurationReference;
|
|
13566
|
-
}
|
|
13567
|
-
|
|
13568
|
-
interface OrganizationDefaultConfigurationsForm {
|
|
13569
|
-
readonly 'id': string;
|
|
13570
|
-
}
|
|
13571
|
-
|
|
13572
13590
|
interface OrganizationForm {
|
|
13573
13591
|
readonly 'id'?: string;
|
|
13574
13592
|
readonly 'name'?: string;
|
|
@@ -13746,6 +13764,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13746
13764
|
type AnshItemType = 'physical' | 'digital';
|
|
13747
13765
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
13748
13766
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
13767
|
+
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
13749
13768
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
13750
13769
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
13751
13770
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
@@ -13785,6 +13804,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13785
13804
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
13786
13805
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
13787
13806
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
13807
|
+
type CommercialInvoiceVersion = 'v2_2_1';
|
|
13788
13808
|
type Company = 'globale' | 'flow';
|
|
13789
13809
|
type ComplianceType = 'weee';
|
|
13790
13810
|
type ConnectReportPaymentTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
|
|
@@ -13819,7 +13839,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13819
13839
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
|
|
13820
13840
|
type EmptyAttribute = 'irrelevant';
|
|
13821
13841
|
type ErpFileType = 'vendor';
|
|
13822
|
-
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';
|
|
13842
|
+
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';
|
|
13823
13843
|
type ExperienceImportType = 'experience_with_settings';
|
|
13824
13844
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13825
13845
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13836,6 +13856,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13836
13856
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
13837
13857
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
13838
13858
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
13859
|
+
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
13839
13860
|
type GoogleAnalyticsPlugin = 'ec';
|
|
13840
13861
|
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';
|
|
13841
13862
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
@@ -13865,7 +13886,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13865
13886
|
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
13866
13887
|
type MixedBagWeight = '0' | '1' | '2';
|
|
13867
13888
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
13889
|
+
type NiallItemType = 'physical' | 'digital';
|
|
13868
13890
|
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';
|
|
13891
|
+
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
13869
13892
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
13870
13893
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
13871
13894
|
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
@@ -13895,6 +13918,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13895
13918
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
13896
13919
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
13897
13920
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
13921
|
+
type PrateekItemType = 'physical' | 'digital';
|
|
13898
13922
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
13899
13923
|
type PriceSelector = 'minimum' | 'maximum';
|
|
13900
13924
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
@@ -13921,11 +13945,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13921
13945
|
type ResponsibleParty = 'flow' | 'organization';
|
|
13922
13946
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
13923
13947
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
13948
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
|
|
13949
|
+
type RestrictionOrganizationSource = 'shopify' | 'enterprise';
|
|
13950
|
+
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
13951
|
+
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
13924
13952
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
13925
13953
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
13926
13954
|
type RiskCheck = 'three_d_secure';
|
|
13927
13955
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
13928
|
-
type
|
|
13956
|
+
type RohanItemType = 'physical' | 'digital';
|
|
13929
13957
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
13930
13958
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
13931
13959
|
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
@@ -15122,6 +15150,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15122
15150
|
readonly 'duty': io.flow.common.v0.models.Price;
|
|
15123
15151
|
readonly 'trueup': io.flow.common.v0.models.Price;
|
|
15124
15152
|
readonly 'carrier_charge': io.flow.common.v0.models.Price;
|
|
15153
|
+
readonly 'duty_refund': io.flow.common.v0.models.Price;
|
|
15154
|
+
readonly 'ge_revenue_share': io.flow.common.v0.models.Price;
|
|
15155
|
+
readonly 'non_l4l_tax_duty_fx': io.flow.common.v0.models.Price;
|
|
15125
15156
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
15126
15157
|
readonly 'tax_refund': io.flow.common.v0.models.Price;
|
|
15127
15158
|
}
|
|
@@ -15834,6 +15865,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15834
15865
|
readonly 'order_created_at'?: string;
|
|
15835
15866
|
readonly 'order_updated_at'?: string;
|
|
15836
15867
|
readonly 'order_edit_summary'?: io.flow.internal.v0.models.OrderEditSummary;
|
|
15868
|
+
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
15837
15869
|
}
|
|
15838
15870
|
|
|
15839
15871
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -16683,19 +16715,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16683
16715
|
readonly 'updated_by_user_id': string;
|
|
16684
16716
|
}
|
|
16685
16717
|
|
|
16686
|
-
interface CustomerPurgeUpserted {
|
|
16687
|
-
readonly 'discriminator': 'customer_purge_upserted';
|
|
16688
|
-
readonly 'event_id': string;
|
|
16689
|
-
readonly 'timestamp': string;
|
|
16690
|
-
readonly 'organization': string;
|
|
16691
|
-
readonly 'customer': io.flow.customer.v0.models.Customer;
|
|
16692
|
-
}
|
|
16693
|
-
|
|
16694
|
-
interface CustomerSecret {
|
|
16695
|
-
readonly 'id': string;
|
|
16696
|
-
readonly 'secret': string;
|
|
16697
|
-
}
|
|
16698
|
-
|
|
16699
16718
|
interface CustomsDescriptionImport {
|
|
16700
16719
|
readonly 'discriminator': 'customs_description_import';
|
|
16701
16720
|
readonly 'event_id': string;
|
|
@@ -17351,10 +17370,40 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17351
17370
|
readonly 'passphrase_ids': string[];
|
|
17352
17371
|
}
|
|
17353
17372
|
|
|
17373
|
+
interface EnrichedLineItemForm {
|
|
17374
|
+
readonly 'form': io.flow.common.v0.models.LineItemForm;
|
|
17375
|
+
readonly 'customs_product_name'?: string;
|
|
17376
|
+
readonly 'tariff_code'?: string;
|
|
17377
|
+
readonly 'customs_description'?: string;
|
|
17378
|
+
readonly 'hs_description'?: string;
|
|
17379
|
+
readonly 'country_of_origin': string;
|
|
17380
|
+
readonly 'price_composition_rate': number;
|
|
17381
|
+
readonly 'duty_composition_rate': number;
|
|
17382
|
+
readonly 'export_control_classification_number': string;
|
|
17383
|
+
readonly 'sub_item_number'?: string;
|
|
17384
|
+
readonly 'item_type'?: string;
|
|
17385
|
+
readonly 'material'?: string;
|
|
17386
|
+
readonly 'construction'?: string;
|
|
17387
|
+
readonly 'gender'?: string;
|
|
17388
|
+
}
|
|
17389
|
+
|
|
17390
|
+
interface EnrichedShippingLabelPackage {
|
|
17391
|
+
readonly 'dimensions': io.flow.common.v0.models.Dimension;
|
|
17392
|
+
readonly 'items': io.flow.internal.v0.models.EnrichedLineItemForm[];
|
|
17393
|
+
readonly 'reference_number'?: string;
|
|
17394
|
+
}
|
|
17395
|
+
|
|
17354
17396
|
interface EntityReference {
|
|
17355
17397
|
readonly 'id': string;
|
|
17356
17398
|
}
|
|
17357
17399
|
|
|
17400
|
+
interface EntityReferenceNumber {
|
|
17401
|
+
readonly 'short_name': string;
|
|
17402
|
+
readonly 'number': string;
|
|
17403
|
+
readonly 'issuing_country'?: io.flow.reference.v0.models.Country;
|
|
17404
|
+
readonly 'display_name'?: string;
|
|
17405
|
+
}
|
|
17406
|
+
|
|
17358
17407
|
interface ErpFlowFile {
|
|
17359
17408
|
readonly 'id': string;
|
|
17360
17409
|
readonly 'type': io.flow.internal.v0.enums.ErpFileType;
|
|
@@ -18861,6 +18910,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18861
18910
|
readonly 'fiserv_authentication_data': io.flow.internal.v0.models.FiservAuthenticationDataReference;
|
|
18862
18911
|
}
|
|
18863
18912
|
|
|
18913
|
+
interface InternalItem {
|
|
18914
|
+
readonly 'id': string;
|
|
18915
|
+
readonly 'organization': string;
|
|
18916
|
+
readonly 'catalog': string;
|
|
18917
|
+
readonly 'name': string;
|
|
18918
|
+
readonly 'number': string;
|
|
18919
|
+
readonly 'currency': string;
|
|
18920
|
+
readonly 'price': number;
|
|
18921
|
+
readonly 'categories': string[];
|
|
18922
|
+
readonly 'attributes': Record<string, string>;
|
|
18923
|
+
readonly 'sku'?: string;
|
|
18924
|
+
readonly 'barcode'?: string;
|
|
18925
|
+
}
|
|
18926
|
+
|
|
18864
18927
|
interface InternalItemForm {
|
|
18865
18928
|
readonly 'id': string;
|
|
18866
18929
|
readonly 'item_form': io.flow.catalog.v0.models.ItemForm;
|
|
@@ -18924,6 +18987,78 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18924
18987
|
readonly 'total': io.flow.common.v0.models.Price;
|
|
18925
18988
|
}
|
|
18926
18989
|
|
|
18990
|
+
interface InvoiceData {
|
|
18991
|
+
readonly 'organization_id': string;
|
|
18992
|
+
readonly 'order_number': string;
|
|
18993
|
+
readonly 'invoice_reference': string;
|
|
18994
|
+
readonly 'signature_url': string;
|
|
18995
|
+
readonly 'signature_date': string;
|
|
18996
|
+
readonly 'signature_name': string;
|
|
18997
|
+
readonly 'line_items': io.flow.internal.v0.models.InvoiceDataLineItem[];
|
|
18998
|
+
readonly 'currency': io.flow.reference.v0.models.Currency;
|
|
18999
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
19000
|
+
readonly 'delivered_duty_text': string;
|
|
19001
|
+
readonly 'transaction_date': string;
|
|
19002
|
+
readonly 'origin': io.flow.internal.v0.models.ValidatedAddress;
|
|
19003
|
+
readonly 'destination': io.flow.internal.v0.models.ValidatedAddress;
|
|
19004
|
+
readonly 'billing_address'?: io.flow.internal.v0.models.ValidatedAddress;
|
|
19005
|
+
readonly 'service': io.flow.reference.v0.models.CarrierService;
|
|
19006
|
+
readonly 'flow_tracking_number': string;
|
|
19007
|
+
readonly 'rex_number'?: string;
|
|
19008
|
+
readonly 'weee_number'?: string;
|
|
19009
|
+
readonly 'business_gst_numbers': io.flow.internal.v0.models.EntityReferenceNumber[];
|
|
19010
|
+
readonly 'destination_identification_numbers'?: io.flow.internal.v0.models.EntityReferenceNumber[];
|
|
19011
|
+
readonly 'vat_name': string;
|
|
19012
|
+
readonly 'item_identifier_column_name': string;
|
|
19013
|
+
readonly 'feature_show_merchant_id': boolean;
|
|
19014
|
+
readonly 'shipping_pricing': io.flow.internal.v0.models.ShippingPricing;
|
|
19015
|
+
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
19016
|
+
readonly 'eu_preferential_origin'?: string;
|
|
19017
|
+
readonly 'customs_master_file_number'?: string;
|
|
19018
|
+
readonly 'merchant_of_record_entity'?: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
19019
|
+
readonly 'weight_measured'?: string;
|
|
19020
|
+
readonly 'notes_export_declaration'?: string;
|
|
19021
|
+
readonly 'notes_import_duty_taxes_due'?: string;
|
|
19022
|
+
readonly 'invoice_id': string;
|
|
19023
|
+
readonly 'invoice_date': string;
|
|
19024
|
+
readonly 'invoice_number'?: string;
|
|
19025
|
+
readonly 'invoice_version': io.flow.internal.v0.enums.CommercialInvoiceVersion;
|
|
19026
|
+
readonly 'shipping_price': number;
|
|
19027
|
+
readonly 'goods_value': number;
|
|
19028
|
+
readonly 'total_taxes': number;
|
|
19029
|
+
readonly 'total_duties': number;
|
|
19030
|
+
readonly 'customs_value': number;
|
|
19031
|
+
readonly 'total_value': number;
|
|
19032
|
+
readonly 'usa_exporter_identifier_number_if_value_over_threshold'?: string;
|
|
19033
|
+
readonly 'feature_israel_notes_import_duty_and_taxes_due': boolean;
|
|
19034
|
+
readonly 'feature_new_export_declaration': boolean;
|
|
19035
|
+
}
|
|
19036
|
+
|
|
19037
|
+
interface InvoiceDataLineItem {
|
|
19038
|
+
readonly 'i': number;
|
|
19039
|
+
readonly 'number': string;
|
|
19040
|
+
readonly 'quantity': number;
|
|
19041
|
+
readonly 'description': string;
|
|
19042
|
+
readonly 'tariff_code': string;
|
|
19043
|
+
readonly 'country_of_origin': string;
|
|
19044
|
+
readonly 'display_country_of_origin': string;
|
|
19045
|
+
readonly 'gst_paid': boolean;
|
|
19046
|
+
readonly 'gst_paid_text': string;
|
|
19047
|
+
readonly 'unit_price': number;
|
|
19048
|
+
readonly 'vat_price': number;
|
|
19049
|
+
readonly 'duty_price': number;
|
|
19050
|
+
readonly 'discount_price': number;
|
|
19051
|
+
readonly 'total_price': number;
|
|
19052
|
+
readonly 'export_control_classification_number': string;
|
|
19053
|
+
readonly 'manufacturer_id'?: string;
|
|
19054
|
+
readonly 'display_number': string;
|
|
19055
|
+
readonly 'item_type'?: string;
|
|
19056
|
+
readonly 'construction'?: string;
|
|
19057
|
+
readonly 'gender'?: string;
|
|
19058
|
+
readonly 'material'?: string;
|
|
19059
|
+
readonly 'url'?: string;
|
|
19060
|
+
}
|
|
19061
|
+
|
|
18927
19062
|
interface InvoiceInfoForm {
|
|
18928
19063
|
readonly 'invoice_number': string;
|
|
18929
19064
|
readonly 'invoice_date': string;
|
|
@@ -19043,6 +19178,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19043
19178
|
readonly 'duty_composition_rate': number;
|
|
19044
19179
|
readonly 'export_control_classification_number'?: string;
|
|
19045
19180
|
readonly 'labels'?: io.flow.internal.v0.models.CustomsProductLabels;
|
|
19181
|
+
readonly 'applicable_preferential_rate'?: io.flow.internal.v0.enums.ApplicablePreferentialRate;
|
|
19046
19182
|
}
|
|
19047
19183
|
|
|
19048
19184
|
interface ItemDimensionEstimate {
|
|
@@ -20138,6 +20274,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20138
20274
|
readonly 'conditions'?: string;
|
|
20139
20275
|
}
|
|
20140
20276
|
|
|
20277
|
+
interface NiallItem {
|
|
20278
|
+
readonly 'id': string;
|
|
20279
|
+
readonly 'number': string;
|
|
20280
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20281
|
+
readonly 'description'?: string;
|
|
20282
|
+
readonly 'type': io.flow.internal.v0.enums.NiallItemType;
|
|
20283
|
+
readonly 'added_on': string;
|
|
20284
|
+
}
|
|
20285
|
+
|
|
20286
|
+
interface NiallItemForm {
|
|
20287
|
+
readonly 'number': string;
|
|
20288
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
20289
|
+
readonly 'description'?: string;
|
|
20290
|
+
readonly 'type': io.flow.internal.v0.enums.NiallItemType;
|
|
20291
|
+
readonly 'added_on': string;
|
|
20292
|
+
}
|
|
20293
|
+
|
|
20141
20294
|
interface NoCalculatedTaxAmount {
|
|
20142
20295
|
readonly 'discriminator': 'no_calculated_tax_amount';
|
|
20143
20296
|
readonly 'amount': number;
|
|
@@ -21747,6 +21900,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21747
21900
|
readonly 'rate': number;
|
|
21748
21901
|
}
|
|
21749
21902
|
|
|
21903
|
+
interface PrateekItem {
|
|
21904
|
+
readonly 'id': string;
|
|
21905
|
+
readonly 'number': string;
|
|
21906
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
21907
|
+
readonly 'description'?: string;
|
|
21908
|
+
readonly 'type': io.flow.internal.v0.enums.PrateekItemType;
|
|
21909
|
+
readonly 'added_on': string;
|
|
21910
|
+
}
|
|
21911
|
+
|
|
21912
|
+
interface PrateekItemForm {
|
|
21913
|
+
readonly 'number': string;
|
|
21914
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
21915
|
+
readonly 'description'?: string;
|
|
21916
|
+
readonly 'type': io.flow.internal.v0.enums.PrateekItemType;
|
|
21917
|
+
readonly 'added_on': string;
|
|
21918
|
+
}
|
|
21919
|
+
|
|
21750
21920
|
interface Prediction {
|
|
21751
21921
|
readonly 'main_material': string;
|
|
21752
21922
|
readonly 'gender': string;
|
|
@@ -21953,11 +22123,55 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21953
22123
|
readonly 'product_restriction_rule_decision': io.flow.internal.v0.models.ProductRestrictionRuleDecision;
|
|
21954
22124
|
}
|
|
21955
22125
|
|
|
22126
|
+
interface ProductRestrictionState {
|
|
22127
|
+
readonly 'id': string;
|
|
22128
|
+
readonly 'organization_id': string;
|
|
22129
|
+
readonly 'product_number': string;
|
|
22130
|
+
readonly 'review_status': io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
22131
|
+
readonly 'pending_restriction_count'?: number;
|
|
22132
|
+
readonly 'pending_verification_count'?: number;
|
|
22133
|
+
readonly 'oldest_pending_restriction_date'?: string;
|
|
22134
|
+
readonly 'oldest_pending_verification_date'?: string;
|
|
22135
|
+
}
|
|
22136
|
+
|
|
22137
|
+
interface ProductRestrictionStateDeleted {
|
|
22138
|
+
readonly 'discriminator': 'product_restriction_state_deleted';
|
|
22139
|
+
readonly 'event_id': string;
|
|
22140
|
+
readonly 'timestamp': string;
|
|
22141
|
+
readonly 'organization': string;
|
|
22142
|
+
readonly 'product_restriction_state': io.flow.internal.v0.models.ProductRestrictionState;
|
|
22143
|
+
}
|
|
22144
|
+
|
|
22145
|
+
interface ProductRestrictionStateInserted {
|
|
22146
|
+
readonly 'discriminator': 'product_restriction_state_inserted';
|
|
22147
|
+
readonly 'event_id': string;
|
|
22148
|
+
readonly 'timestamp': string;
|
|
22149
|
+
readonly 'organization': string;
|
|
22150
|
+
readonly 'product_restriction_state': io.flow.internal.v0.models.ProductRestrictionState;
|
|
22151
|
+
}
|
|
22152
|
+
|
|
22153
|
+
interface ProductRestrictionStateUpdated {
|
|
22154
|
+
readonly 'discriminator': 'product_restriction_state_updated';
|
|
22155
|
+
readonly 'event_id': string;
|
|
22156
|
+
readonly 'timestamp': string;
|
|
22157
|
+
readonly 'organization': string;
|
|
22158
|
+
readonly 'previous_product_restriction_state': io.flow.internal.v0.models.ProductRestrictionState;
|
|
22159
|
+
readonly 'product_restriction_state': io.flow.internal.v0.models.ProductRestrictionState;
|
|
22160
|
+
}
|
|
22161
|
+
|
|
21956
22162
|
interface ProductReviewHistory {
|
|
21957
22163
|
readonly 'product_id': string;
|
|
21958
22164
|
readonly 'reviews': io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
21959
22165
|
}
|
|
21960
22166
|
|
|
22167
|
+
interface ProductSellabilityResult {
|
|
22168
|
+
readonly 'shop_id': string;
|
|
22169
|
+
readonly 'product_number': string;
|
|
22170
|
+
readonly 'request_id': string;
|
|
22171
|
+
readonly 'hs6_code': string;
|
|
22172
|
+
readonly 'restricted_regions': string[];
|
|
22173
|
+
}
|
|
22174
|
+
|
|
21961
22175
|
interface ProductTransaction {
|
|
21962
22176
|
readonly 'transaction_amount': number;
|
|
21963
22177
|
readonly 'destination_amount': number;
|
|
@@ -22658,6 +22872,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22658
22872
|
readonly 'tax_inclusive'?: boolean;
|
|
22659
22873
|
readonly 'duty_inclusive'?: boolean;
|
|
22660
22874
|
readonly 'manual_payment'?: boolean;
|
|
22875
|
+
readonly 'manual_capture'?: boolean;
|
|
22661
22876
|
readonly 'partial_fulfillment'?: boolean;
|
|
22662
22877
|
readonly 'partial_refund'?: boolean;
|
|
22663
22878
|
}
|
|
@@ -22722,6 +22937,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22722
22937
|
readonly 'id': string;
|
|
22723
22938
|
readonly 'number': string;
|
|
22724
22939
|
readonly 'submitted_at': string;
|
|
22940
|
+
readonly 'payment_source'?: string;
|
|
22725
22941
|
}
|
|
22726
22942
|
|
|
22727
22943
|
interface ReportingOrganizationSummary {
|
|
@@ -22911,6 +23127,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22911
23127
|
readonly 'priority_score': number;
|
|
22912
23128
|
readonly 'date': string;
|
|
22913
23129
|
readonly 'statuses': io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
23130
|
+
readonly 'counts': io.flow.internal.v0.models.RestrictionSummaryCounts;
|
|
22914
23131
|
readonly 'count': number;
|
|
22915
23132
|
}
|
|
22916
23133
|
|
|
@@ -23005,6 +23222,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23005
23222
|
readonly 'negative_keywords': string[];
|
|
23006
23223
|
readonly 'value_threshold_usd'?: number;
|
|
23007
23224
|
readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
23225
|
+
readonly 'source': io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
23226
|
+
readonly 'sellability_positive_keywords'?: string[];
|
|
23008
23227
|
}
|
|
23009
23228
|
|
|
23010
23229
|
interface RestrictionRuleDecisionForm {
|
|
@@ -23058,12 +23277,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23058
23277
|
readonly 'negative_keywords': string[];
|
|
23059
23278
|
readonly 'value_threshold_usd'?: number;
|
|
23060
23279
|
readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
23280
|
+
readonly 'source'?: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
23281
|
+
readonly 'sellability_positive_keywords'?: string[];
|
|
23061
23282
|
}
|
|
23062
23283
|
|
|
23063
|
-
interface
|
|
23064
|
-
readonly '
|
|
23065
|
-
readonly '
|
|
23066
|
-
readonly '
|
|
23284
|
+
interface RestrictionRuleLaneExemption {
|
|
23285
|
+
readonly 'id': string;
|
|
23286
|
+
readonly 'rule_id': string;
|
|
23287
|
+
readonly 'description': string;
|
|
23288
|
+
readonly 'origin_countries': string[];
|
|
23289
|
+
readonly 'destination_countries': string[];
|
|
23067
23290
|
}
|
|
23068
23291
|
|
|
23069
23292
|
interface RestrictionRuleOverride {
|
|
@@ -23091,6 +23314,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23091
23314
|
readonly 'count': number;
|
|
23092
23315
|
}
|
|
23093
23316
|
|
|
23317
|
+
interface RestrictionSummaryCounts {
|
|
23318
|
+
readonly 'pending_restriction_count': number;
|
|
23319
|
+
readonly 'pending_verification_count': number;
|
|
23320
|
+
}
|
|
23321
|
+
|
|
23094
23322
|
interface RestrictionsDailyops {
|
|
23095
23323
|
readonly 'id': string;
|
|
23096
23324
|
readonly 'report_date': string;
|
|
@@ -23255,6 +23483,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23255
23483
|
readonly 'revenue_record': io.flow.internal.v0.models.RevenueRecord;
|
|
23256
23484
|
}
|
|
23257
23485
|
|
|
23486
|
+
interface RohanItem {
|
|
23487
|
+
readonly 'id': string;
|
|
23488
|
+
readonly 'number': string;
|
|
23489
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
23490
|
+
readonly 'description'?: string;
|
|
23491
|
+
readonly 'type': io.flow.internal.v0.enums.RohanItemType;
|
|
23492
|
+
readonly 'added_on': string;
|
|
23493
|
+
}
|
|
23494
|
+
|
|
23495
|
+
interface RohanItemForm {
|
|
23496
|
+
readonly 'number': string;
|
|
23497
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
23498
|
+
readonly 'description'?: string;
|
|
23499
|
+
readonly 'type': io.flow.internal.v0.enums.RohanItemType;
|
|
23500
|
+
readonly 'added_on': string;
|
|
23501
|
+
}
|
|
23502
|
+
|
|
23258
23503
|
interface RoutingAccount {
|
|
23259
23504
|
readonly 'discriminator': 'routing_account';
|
|
23260
23505
|
readonly 'processor': io.flow.internal.v0.enums.Processor;
|
|
@@ -23376,19 +23621,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23376
23621
|
readonly 'label': io.flow.internal.v0.models.LabelSummary;
|
|
23377
23622
|
}
|
|
23378
23623
|
|
|
23379
|
-
interface SessionCountries {
|
|
23380
|
-
readonly 'countries': io.flow.internal.v0.models.SessionCountry[];
|
|
23381
|
-
}
|
|
23382
|
-
|
|
23383
|
-
interface SessionCountry {
|
|
23384
|
-
readonly 'country': string;
|
|
23385
|
-
readonly 'status': io.flow.internal.v0.enums.SessionCountryStatus;
|
|
23386
|
-
}
|
|
23387
|
-
|
|
23388
|
-
interface SessionCountryForm {
|
|
23389
|
-
readonly 'status': io.flow.internal.v0.enums.SessionCountryStatus;
|
|
23390
|
-
}
|
|
23391
|
-
|
|
23392
23624
|
interface SessionOrderData {
|
|
23393
23625
|
readonly 'id': string;
|
|
23394
23626
|
readonly 'session': io.flow.common.v0.models.SessionReference;
|
|
@@ -23397,15 +23629,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23397
23629
|
readonly 'destination': io.flow.experience.v0.models.OrderAddress;
|
|
23398
23630
|
}
|
|
23399
23631
|
|
|
23400
|
-
interface SessionRollout {
|
|
23401
|
-
readonly 'id': string;
|
|
23402
|
-
readonly 'percent': number;
|
|
23403
|
-
}
|
|
23404
|
-
|
|
23405
|
-
interface SessionRolloutForm {
|
|
23406
|
-
readonly 'percent': number;
|
|
23407
|
-
}
|
|
23408
|
-
|
|
23409
23632
|
interface SetupBlockPutForm {
|
|
23410
23633
|
readonly 'reasons': io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
23411
23634
|
}
|
|
@@ -23418,6 +23641,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23418
23641
|
readonly 'customer_id': string;
|
|
23419
23642
|
}
|
|
23420
23643
|
|
|
23644
|
+
interface ShipmentCostSummary {
|
|
23645
|
+
readonly 'lane_id'?: string;
|
|
23646
|
+
readonly 'ratecard_id'?: string;
|
|
23647
|
+
readonly 'ratecard_owner': io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
23648
|
+
readonly 'glbe_shipping_method_id'?: string;
|
|
23649
|
+
readonly 'glbe_proposition_name'?: string;
|
|
23650
|
+
readonly 'weight_break'?: number;
|
|
23651
|
+
readonly 'channel_revenue_share_percentage'?: number;
|
|
23652
|
+
readonly 'rate_level_key'?: string;
|
|
23653
|
+
readonly 'cost_estimate_source': io.flow.label.v0.enums.CostEstimateSource;
|
|
23654
|
+
readonly 'cost': io.flow.common.v0.models.Money;
|
|
23655
|
+
}
|
|
23656
|
+
|
|
23421
23657
|
interface ShippingLane {
|
|
23422
23658
|
readonly 'origin': string;
|
|
23423
23659
|
readonly 'destination': string;
|
|
@@ -23427,6 +23663,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23427
23663
|
readonly 'id': string;
|
|
23428
23664
|
}
|
|
23429
23665
|
|
|
23666
|
+
interface ShippingPricing {
|
|
23667
|
+
readonly 'freight_cost': number;
|
|
23668
|
+
readonly 'customer_price': number;
|
|
23669
|
+
}
|
|
23670
|
+
|
|
23430
23671
|
interface Shop {
|
|
23431
23672
|
readonly 'id': string;
|
|
23432
23673
|
readonly 'organization'?: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -23854,6 +24095,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23854
24095
|
}
|
|
23855
24096
|
|
|
23856
24097
|
interface ShopifyMerchantPlan {
|
|
24098
|
+
readonly 'id': string;
|
|
23857
24099
|
readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
|
|
23858
24100
|
readonly 'plan': io.flow.internal.v0.enums.ShopifyPlanType;
|
|
23859
24101
|
}
|
|
@@ -24022,6 +24264,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24022
24264
|
readonly 'attributes': io.flow.internal.v0.models.ShopifyOrderLineAttribute[];
|
|
24023
24265
|
}
|
|
24024
24266
|
|
|
24267
|
+
interface ShopifyOrderRiskAssessment {
|
|
24268
|
+
readonly 'id': string;
|
|
24269
|
+
readonly 'risk_level': string;
|
|
24270
|
+
readonly 'assessment_created_at': string;
|
|
24271
|
+
}
|
|
24272
|
+
|
|
24273
|
+
interface ShopifyOrderRiskAssessmentDeleted {
|
|
24274
|
+
readonly 'discriminator': 'shopify_order_risk_assessment_deleted';
|
|
24275
|
+
readonly 'event_id': string;
|
|
24276
|
+
readonly 'timestamp': string;
|
|
24277
|
+
readonly 'organization': string;
|
|
24278
|
+
readonly 'id': string;
|
|
24279
|
+
}
|
|
24280
|
+
|
|
24281
|
+
interface ShopifyOrderRiskAssessmentUpserted {
|
|
24282
|
+
readonly 'discriminator': 'shopify_order_risk_assessment_upserted';
|
|
24283
|
+
readonly 'event_id': string;
|
|
24284
|
+
readonly 'timestamp': string;
|
|
24285
|
+
readonly 'organization': string;
|
|
24286
|
+
readonly 'assessment': io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
24287
|
+
}
|
|
24288
|
+
|
|
24025
24289
|
interface ShopifyOrganizationSettings {
|
|
24026
24290
|
readonly 'id': string;
|
|
24027
24291
|
readonly 'process_label': boolean;
|
|
@@ -24453,26 +24717,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24453
24717
|
readonly 'spot_rate': io.flow.internal.v0.models.SpotRate;
|
|
24454
24718
|
}
|
|
24455
24719
|
|
|
24456
|
-
interface SppTrackerUpdateRequest {
|
|
24457
|
-
readonly 'id': string;
|
|
24458
|
-
readonly 'tracking_subscription': io.flow.internal.v0.models.TrackingSubscription;
|
|
24459
|
-
readonly 'created_at': string;
|
|
24460
|
-
}
|
|
24461
|
-
|
|
24462
|
-
interface SppTrackerUpdateRequestDeleted {
|
|
24463
|
-
readonly 'discriminator': 'spp_tracker_update_request_deleted';
|
|
24464
|
-
readonly 'event_id': string;
|
|
24465
|
-
readonly 'timestamp': string;
|
|
24466
|
-
readonly 'id': string;
|
|
24467
|
-
}
|
|
24468
|
-
|
|
24469
|
-
interface SppTrackerUpdateRequestUpserted {
|
|
24470
|
-
readonly 'discriminator': 'spp_tracker_update_request_upserted';
|
|
24471
|
-
readonly 'event_id': string;
|
|
24472
|
-
readonly 'timestamp': string;
|
|
24473
|
-
readonly 'spp_tracker_update_request': io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
24474
|
-
}
|
|
24475
|
-
|
|
24476
24720
|
interface StandaloneAttachment {
|
|
24477
24721
|
readonly 'id': string;
|
|
24478
24722
|
readonly 'statement': io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -25653,6 +25897,53 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25653
25897
|
readonly 'customer_bundle'?: io.flow.customer.v0.models.CustomerBundle;
|
|
25654
25898
|
}
|
|
25655
25899
|
|
|
25900
|
+
interface ValidatedAddress {
|
|
25901
|
+
readonly 'company_name': string;
|
|
25902
|
+
readonly 'person_name': string;
|
|
25903
|
+
readonly 'phone': string;
|
|
25904
|
+
readonly 'email': string;
|
|
25905
|
+
readonly 'original_streets': string[];
|
|
25906
|
+
readonly 'city': string;
|
|
25907
|
+
readonly 'province': string;
|
|
25908
|
+
readonly 'postal': string;
|
|
25909
|
+
readonly 'country': io.flow.reference.v0.models.Country;
|
|
25910
|
+
readonly 'original_address': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
25911
|
+
}
|
|
25912
|
+
|
|
25913
|
+
interface ValidatedShippingData {
|
|
25914
|
+
readonly 'organization': string;
|
|
25915
|
+
readonly 'reference_id'?: string;
|
|
25916
|
+
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
25917
|
+
readonly 'merchant_of_record_entity'?: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
25918
|
+
readonly 'destination': io.flow.internal.v0.models.ValidatedAddress;
|
|
25919
|
+
readonly 'origin': io.flow.internal.v0.models.ValidatedAddress;
|
|
25920
|
+
readonly 'service': io.flow.reference.v0.models.CarrierService;
|
|
25921
|
+
readonly 'package': io.flow.internal.v0.models.EnrichedShippingLabelPackage;
|
|
25922
|
+
readonly 'total_catalog_item_value': io.flow.common.v0.models.Money;
|
|
25923
|
+
readonly 'weight_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
25924
|
+
readonly 'distance_unit': io.flow.common.v0.enums.UnitOfMeasurement;
|
|
25925
|
+
readonly 'flow_tracking_number': string;
|
|
25926
|
+
readonly 'center'?: io.flow.fulfillment.v0.models.Center;
|
|
25927
|
+
readonly 'catalog_items': io.flow.internal.v0.models.InternalItem[];
|
|
25928
|
+
readonly 'order': io.flow.experience.v0.models.Order;
|
|
25929
|
+
readonly 'window': io.flow.common.v0.models.DatetimeRange;
|
|
25930
|
+
readonly 'id': string;
|
|
25931
|
+
readonly 'shipment_recipient': io.flow.label.v0.enums.ShipmentRecipient;
|
|
25932
|
+
readonly 'request_id': string;
|
|
25933
|
+
readonly 'commercial_invoice_data'?: io.flow.internal.v0.models.InvoiceData;
|
|
25934
|
+
readonly 'order_identifier'?: string;
|
|
25935
|
+
readonly 'fulfillment_key'?: string;
|
|
25936
|
+
readonly 'rex_number'?: string;
|
|
25937
|
+
readonly 'weee_number'?: string;
|
|
25938
|
+
readonly 'generate_commercial_invoice_only': boolean;
|
|
25939
|
+
readonly 'liability_remittance_plan'?: io.flow.internal.v0.models.LiabilityRemittancePlan;
|
|
25940
|
+
readonly 'shipment_cost_summary'?: io.flow.internal.v0.models.ShipmentCostSummary;
|
|
25941
|
+
readonly 'shipping_label_hop_cost_itemized_estimate'?: io.flow.label.v0.models.ShippingLabelHopCostItemizedEstimate;
|
|
25942
|
+
readonly 'additional_services_requested'?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
25943
|
+
readonly 'provided_charges'?: io.flow.internal.v0.models.ChargeInput[];
|
|
25944
|
+
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
25945
|
+
}
|
|
25946
|
+
|
|
25656
25947
|
interface ValidationCharacterLength {
|
|
25657
25948
|
readonly 'discriminator': 'validation_character_length';
|
|
25658
25949
|
readonly 'min'?: number;
|
|
@@ -25735,7 +26026,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25735
26026
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25736
26027
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25737
26028
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25738
|
-
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);
|
|
26029
|
+
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);
|
|
25739
26030
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25740
26031
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25741
26032
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -25802,6 +26093,7 @@ export const aldoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AldoI
|
|
|
25802
26093
|
export const anshItemType: PropTypes.Requireable<io.flow.internal.v0.enums.AnshItemType>;
|
|
25803
26094
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
25804
26095
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
26096
|
+
export const applicablePreferentialRate: PropTypes.Requireable<io.flow.internal.v0.enums.ApplicablePreferentialRate>;
|
|
25805
26097
|
export const autoRestrictRule: PropTypes.Requireable<io.flow.internal.v0.enums.AutoRestrictRule>;
|
|
25806
26098
|
export const bankAccountStatus: PropTypes.Requireable<io.flow.internal.v0.enums.BankAccountStatus>;
|
|
25807
26099
|
export const bankPaymentPromiseCompletedMethod: PropTypes.Requireable<io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod>;
|
|
@@ -25841,6 +26133,7 @@ export const classificationErrorCode: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
25841
26133
|
export const classificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationPlatform>;
|
|
25842
26134
|
export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationType>;
|
|
25843
26135
|
export const clothingAgeClassification: PropTypes.Requireable<io.flow.internal.v0.enums.ClothingAgeClassification>;
|
|
26136
|
+
export const commercialInvoiceVersion: PropTypes.Requireable<io.flow.internal.v0.enums.CommercialInvoiceVersion>;
|
|
25844
26137
|
export const company: PropTypes.Requireable<io.flow.internal.v0.enums.Company>;
|
|
25845
26138
|
export const complianceType: PropTypes.Requireable<io.flow.internal.v0.enums.ComplianceType>;
|
|
25846
26139
|
export const connectReportPaymentTransferType: PropTypes.Requireable<io.flow.internal.v0.enums.ConnectReportPaymentTransferType>;
|
|
@@ -25892,6 +26185,7 @@ export const fraudProviderStatus: PropTypes.Requireable<io.flow.internal.v0.enum
|
|
|
25892
26185
|
export const fraudReviewResponsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.FraudReviewResponsibleParty>;
|
|
25893
26186
|
export const ftpIntent: PropTypes.Requireable<io.flow.internal.v0.enums.FtpIntent>;
|
|
25894
26187
|
export const ftpProtocol: PropTypes.Requireable<io.flow.internal.v0.enums.FtpProtocol>;
|
|
26188
|
+
export const geIngestionFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.GeIngestionFileStatus>;
|
|
25895
26189
|
export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
|
|
25896
26190
|
export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
|
|
25897
26191
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
@@ -25921,7 +26215,9 @@ export const merchantOfRecord: PropTypes.Requireable<io.flow.internal.v0.enums.M
|
|
|
25921
26215
|
export const merchantOverrideStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MerchantOverrideStatus>;
|
|
25922
26216
|
export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
|
|
25923
26217
|
export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
|
|
26218
|
+
export const niallItemType: PropTypes.Requireable<io.flow.internal.v0.enums.NiallItemType>;
|
|
25924
26219
|
export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
|
|
26220
|
+
export const nonL4LTaxDutyFxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.NonL4LTaxDutyFxTransactionType>;
|
|
25925
26221
|
export const onboardingAuditMessageLevel: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAuditMessageLevel>;
|
|
25926
26222
|
export const onboardingAuditResult: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAuditResult>;
|
|
25927
26223
|
export const onboardingAuditThemeKey: PropTypes.Requireable<io.flow.internal.v0.enums.OnboardingAuditThemeKey>;
|
|
@@ -25951,6 +26247,7 @@ export const paymentShortUrlDiscriminator: PropTypes.Requireable<io.flow.interna
|
|
|
25951
26247
|
export const paymentSummaryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryStatus>;
|
|
25952
26248
|
export const paymentSummaryType: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryType>;
|
|
25953
26249
|
export const paymentTerm: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentTerm>;
|
|
26250
|
+
export const prateekItemType: PropTypes.Requireable<io.flow.internal.v0.enums.PrateekItemType>;
|
|
25954
26251
|
export const preferredBillingSchedule: PropTypes.Requireable<io.flow.internal.v0.enums.PreferredBillingSchedule>;
|
|
25955
26252
|
export const priceSelector: PropTypes.Requireable<io.flow.internal.v0.enums.PriceSelector>;
|
|
25956
26253
|
export const processingTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ProcessingTransactionType>;
|
|
@@ -25977,11 +26274,15 @@ export const reportingScheme: PropTypes.Requireable<io.flow.internal.v0.enums.Re
|
|
|
25977
26274
|
export const responsibleParty: PropTypes.Requireable<io.flow.internal.v0.enums.ResponsibleParty>;
|
|
25978
26275
|
export const restrictionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionAction>;
|
|
25979
26276
|
export const restrictionDecision: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionDecision>;
|
|
26277
|
+
export const restrictionOrganizationChannel: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationChannel>;
|
|
26278
|
+
export const restrictionOrganizationSource: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionOrganizationSource>;
|
|
26279
|
+
export const restrictionRuleExceptionAction: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionRuleExceptionAction>;
|
|
26280
|
+
export const restrictionStateReviewStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStateReviewStatus>;
|
|
25980
26281
|
export const restrictionStatus: PropTypes.Requireable<io.flow.internal.v0.enums.RestrictionStatus>;
|
|
25981
26282
|
export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueRecordType>;
|
|
25982
26283
|
export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
|
|
25983
26284
|
export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
|
|
25984
|
-
export const
|
|
26285
|
+
export const rohanItemType: PropTypes.Requireable<io.flow.internal.v0.enums.RohanItemType>;
|
|
25985
26286
|
export const shopifyCheckInventoryErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyCheckInventoryErrorCode>;
|
|
25986
26287
|
export const shopifyGrantStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyGrantStatus>;
|
|
25987
26288
|
export const shopifyIncotermConfiguration: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyIncotermConfiguration>;
|
|
@@ -26374,8 +26675,6 @@ export const cryptoAuthentication: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
26374
26675
|
export const cryptoAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAuthenticationForm>;
|
|
26375
26676
|
export const csvTransaction: PropTypes.Requireable<io.flow.internal.v0.models.CsvTransaction>;
|
|
26376
26677
|
export const currencyInternalRate: PropTypes.Requireable<io.flow.internal.v0.models.CurrencyInternalRate>;
|
|
26377
|
-
export const customerPurgeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CustomerPurgeUpserted>;
|
|
26378
|
-
export const customerSecret: PropTypes.Requireable<io.flow.internal.v0.models.CustomerSecret>;
|
|
26379
26678
|
export const customsDescriptionImport: PropTypes.Requireable<io.flow.internal.v0.models.CustomsDescriptionImport>;
|
|
26380
26679
|
export const customsDescriptionStatistics: PropTypes.Requireable<io.flow.internal.v0.models.CustomsDescriptionStatistics>;
|
|
26381
26680
|
export const customsDescriptionSuggestion: PropTypes.Requireable<io.flow.internal.v0.models.CustomsDescriptionSuggestion>;
|
|
@@ -26468,7 +26767,10 @@ export const emailForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailFo
|
|
|
26468
26767
|
export const emailModificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmailModificationForm>;
|
|
26469
26768
|
export const emptyClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.EmptyClassificationForm>;
|
|
26470
26769
|
export const encryption: PropTypes.Requireable<io.flow.internal.v0.models.Encryption>;
|
|
26770
|
+
export const enrichedLineItemForm: PropTypes.Requireable<io.flow.internal.v0.models.EnrichedLineItemForm>;
|
|
26771
|
+
export const enrichedShippingLabelPackage: PropTypes.Requireable<io.flow.internal.v0.models.EnrichedShippingLabelPackage>;
|
|
26471
26772
|
export const entityReference: PropTypes.Requireable<io.flow.internal.v0.models.EntityReference>;
|
|
26773
|
+
export const entityReferenceNumber: PropTypes.Requireable<io.flow.internal.v0.models.EntityReferenceNumber>;
|
|
26472
26774
|
export const erpFlowFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowFile>;
|
|
26473
26775
|
export const erpFlowFileForm: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowFileForm>;
|
|
26474
26776
|
export const erpFlowVendor: PropTypes.Requireable<io.flow.internal.v0.models.ErpFlowVendor>;
|
|
@@ -26655,6 +26957,7 @@ export const internalChannelRateUpserted: PropTypes.Requireable<io.flow.internal
|
|
|
26655
26957
|
export const internalDebugTransaction: PropTypes.Requireable<io.flow.internal.v0.models.InternalDebugTransaction>;
|
|
26656
26958
|
export const internalExclusionRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.InternalExclusionRuleForm>;
|
|
26657
26959
|
export const internalFiservAuthorizationDetails: PropTypes.Requireable<io.flow.internal.v0.models.InternalFiservAuthorizationDetails>;
|
|
26960
|
+
export const internalItem: PropTypes.Requireable<io.flow.internal.v0.models.InternalItem>;
|
|
26658
26961
|
export const internalItemForm: PropTypes.Requireable<io.flow.internal.v0.models.InternalItemForm>;
|
|
26659
26962
|
export const internalOrder: PropTypes.Requireable<io.flow.internal.v0.models.InternalOrder>;
|
|
26660
26963
|
export const internalPaymentRequest: PropTypes.Requireable<io.flow.internal.v0.models.InternalPaymentRequest>;
|
|
@@ -26665,6 +26968,8 @@ export const internalTransactionDetailsCard: PropTypes.Requireable<io.flow.inter
|
|
|
26665
26968
|
export const invariant: PropTypes.Requireable<io.flow.internal.v0.models.Invariant>;
|
|
26666
26969
|
export const inventoryItemWrapper: PropTypes.Requireable<io.flow.internal.v0.models.InventoryItemWrapper>;
|
|
26667
26970
|
export const invoice: PropTypes.Requireable<io.flow.internal.v0.models.Invoice>;
|
|
26971
|
+
export const invoiceData: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceData>;
|
|
26972
|
+
export const invoiceDataLineItem: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceDataLineItem>;
|
|
26668
26973
|
export const invoiceInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceInfoForm>;
|
|
26669
26974
|
export const invoiceLine: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLine>;
|
|
26670
26975
|
export const invoiceLineItem: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLineItem>;
|
|
@@ -26819,6 +27124,8 @@ export const metadataProposition: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26819
27124
|
export const metadataRatecard: PropTypes.Requireable<io.flow.internal.v0.models.MetadataRatecard>;
|
|
26820
27125
|
export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
|
|
26821
27126
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
27127
|
+
export const niallItem: PropTypes.Requireable<io.flow.internal.v0.models.NiallItem>;
|
|
27128
|
+
export const niallItemForm: PropTypes.Requireable<io.flow.internal.v0.models.NiallItemForm>;
|
|
26822
27129
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
26823
27130
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
26824
27131
|
export const nonChannelPaymentBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.NonChannelPaymentBankAccount>;
|
|
@@ -27024,6 +27331,8 @@ export const platformFeeFlat: PropTypes.Requireable<io.flow.internal.v0.models.P
|
|
|
27024
27331
|
export const platformFeePause: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePause>;
|
|
27025
27332
|
export const platformFeePercentage: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePercentage>;
|
|
27026
27333
|
export const platformFeePercentageTier: PropTypes.Requireable<io.flow.internal.v0.models.PlatformFeePercentageTier>;
|
|
27334
|
+
export const prateekItem: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItem>;
|
|
27335
|
+
export const prateekItemForm: PropTypes.Requireable<io.flow.internal.v0.models.PrateekItemForm>;
|
|
27027
27336
|
export const prediction: PropTypes.Requireable<io.flow.internal.v0.models.Prediction>;
|
|
27028
27337
|
export const prioritizedCenterReference: PropTypes.Requireable<io.flow.internal.v0.models.PrioritizedCenterReference>;
|
|
27029
27338
|
export const processingTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProcessingTransaction>;
|
|
@@ -27048,7 +27357,12 @@ export const productRestrictionResultValidationError: PropTypes.Requireable<io.f
|
|
|
27048
27357
|
export const productRestrictionRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecision>;
|
|
27049
27358
|
export const productRestrictionRuleDecisionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted>;
|
|
27050
27359
|
export const productRestrictionRuleDecisionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted>;
|
|
27360
|
+
export const productRestrictionState: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionState>;
|
|
27361
|
+
export const productRestrictionStateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionStateDeleted>;
|
|
27362
|
+
export const productRestrictionStateInserted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionStateInserted>;
|
|
27363
|
+
export const productRestrictionStateUpdated: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionStateUpdated>;
|
|
27051
27364
|
export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
|
|
27365
|
+
export const productSellabilityResult: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityResult>;
|
|
27052
27366
|
export const productTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProductTransaction>;
|
|
27053
27367
|
export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
|
|
27054
27368
|
export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
|
|
@@ -27199,11 +27513,12 @@ export const restrictionRuleEffectDeleted: PropTypes.Requireable<io.flow.interna
|
|
|
27199
27513
|
export const restrictionRuleEffectForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleEffectForm>;
|
|
27200
27514
|
export const restrictionRuleEffectUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleEffectUpserted>;
|
|
27201
27515
|
export const restrictionRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleForm>;
|
|
27202
|
-
export const
|
|
27516
|
+
export const restrictionRuleLaneExemption: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleLaneExemption>;
|
|
27203
27517
|
export const restrictionRuleOverride: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleOverride>;
|
|
27204
27518
|
export const restrictionRuleSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleSummary>;
|
|
27205
27519
|
export const restrictionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleUpserted>;
|
|
27206
27520
|
export const restrictionStatusMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionStatusMetadata>;
|
|
27521
|
+
export const restrictionSummaryCounts: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionSummaryCounts>;
|
|
27207
27522
|
export const restrictionsDailyops: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyops>;
|
|
27208
27523
|
export const restrictionsDailyopsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyopsDeleted>;
|
|
27209
27524
|
export const restrictionsDailyopsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyopsUpserted>;
|
|
@@ -27223,6 +27538,8 @@ export const returnTriggerRefund: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27223
27538
|
export const revenueRecord: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecord>;
|
|
27224
27539
|
export const revenueRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordDeleted>;
|
|
27225
27540
|
export const revenueRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RevenueRecordUpserted>;
|
|
27541
|
+
export const rohanItem: PropTypes.Requireable<io.flow.internal.v0.models.RohanItem>;
|
|
27542
|
+
export const rohanItemForm: PropTypes.Requireable<io.flow.internal.v0.models.RohanItemForm>;
|
|
27226
27543
|
export const routingAccount: PropTypes.Requireable<io.flow.internal.v0.models.RoutingAccount>;
|
|
27227
27544
|
export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.RoutingMerchant>;
|
|
27228
27545
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|
|
@@ -27241,16 +27558,13 @@ export const searchItemSummary: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
27241
27558
|
export const searchOrderSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchOrderSummary>;
|
|
27242
27559
|
export const searchProviderExport: PropTypes.Requireable<io.flow.internal.v0.models.SearchProviderExport>;
|
|
27243
27560
|
export const searchTrackingSummary: PropTypes.Requireable<io.flow.internal.v0.models.SearchTrackingSummary>;
|
|
27244
|
-
export const sessionCountries: PropTypes.Requireable<io.flow.internal.v0.models.SessionCountries>;
|
|
27245
|
-
export const sessionCountry: PropTypes.Requireable<io.flow.internal.v0.models.SessionCountry>;
|
|
27246
|
-
export const sessionCountryForm: PropTypes.Requireable<io.flow.internal.v0.models.SessionCountryForm>;
|
|
27247
27561
|
export const sessionOrderData: PropTypes.Requireable<io.flow.internal.v0.models.SessionOrderData>;
|
|
27248
|
-
export const sessionRollout: PropTypes.Requireable<io.flow.internal.v0.models.SessionRollout>;
|
|
27249
|
-
export const sessionRolloutForm: PropTypes.Requireable<io.flow.internal.v0.models.SessionRolloutForm>;
|
|
27250
27562
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
27251
27563
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
27564
|
+
export const shipmentCostSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShipmentCostSummary>;
|
|
27252
27565
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
27253
27566
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
27567
|
+
export const shippingPricing: PropTypes.Requireable<io.flow.internal.v0.models.ShippingPricing>;
|
|
27254
27568
|
export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
|
|
27255
27569
|
export const shopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopForm>;
|
|
27256
27570
|
export const shopVersion: PropTypes.Requireable<io.flow.internal.v0.models.ShopVersion>;
|
|
@@ -27338,6 +27652,9 @@ export const shopifyOrderFulfillmentsSnapshotUpserted: PropTypes.Requireable<io.
|
|
|
27338
27652
|
export const shopifyOrderInventoryCheck: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderInventoryCheck>;
|
|
27339
27653
|
export const shopifyOrderLineAttribute: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderLineAttribute>;
|
|
27340
27654
|
export const shopifyOrderLineContent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderLineContent>;
|
|
27655
|
+
export const shopifyOrderRiskAssessment: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderRiskAssessment>;
|
|
27656
|
+
export const shopifyOrderRiskAssessmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted>;
|
|
27657
|
+
export const shopifyOrderRiskAssessmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted>;
|
|
27341
27658
|
export const shopifyOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrganizationSettings>;
|
|
27342
27659
|
export const shopifyOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrganizationSettingsForm>;
|
|
27343
27660
|
export const shopifyPartnerWebhook: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyPartnerWebhook>;
|
|
@@ -27401,9 +27718,6 @@ export const spotRateMetadataIdentity: PropTypes.Requireable<io.flow.internal.v0
|
|
|
27401
27718
|
export const spotRateMetadataRate: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateMetadataRate>;
|
|
27402
27719
|
export const spotRateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateUpserted>;
|
|
27403
27720
|
export const spotRateVersion: PropTypes.Requireable<io.flow.internal.v0.models.SpotRateVersion>;
|
|
27404
|
-
export const sppTrackerUpdateRequest: PropTypes.Requireable<io.flow.internal.v0.models.SppTrackerUpdateRequest>;
|
|
27405
|
-
export const sppTrackerUpdateRequestDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted>;
|
|
27406
|
-
export const sppTrackerUpdateRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted>;
|
|
27407
27721
|
export const standaloneAttachment: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachment>;
|
|
27408
27722
|
export const standaloneAttachmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentDeleted>;
|
|
27409
27723
|
export const standaloneAttachmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StandaloneAttachmentUpserted>;
|
|
@@ -27552,6 +27866,8 @@ export const userStatusRule: PropTypes.Requireable<io.flow.internal.v0.models.Us
|
|
|
27552
27866
|
export const userStatusRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.UserStatusRuleForm>;
|
|
27553
27867
|
export const userUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.UserUpsertedV2>;
|
|
27554
27868
|
export const v1Checkout: PropTypes.Requireable<io.flow.internal.v0.models.V1Checkout>;
|
|
27869
|
+
export const validatedAddress: PropTypes.Requireable<io.flow.internal.v0.models.ValidatedAddress>;
|
|
27870
|
+
export const validatedShippingData: PropTypes.Requireable<io.flow.internal.v0.models.ValidatedShippingData>;
|
|
27555
27871
|
export const validationCharacterLength: PropTypes.Requireable<io.flow.internal.v0.models.ValidationCharacterLength>;
|
|
27556
27872
|
export const viesResult: PropTypes.Requireable<io.flow.internal.v0.models.ViesResult>;
|
|
27557
27873
|
export const virtualCardTransaction: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardTransaction>;
|