@flowio/api-internal-prop-types 9.24.118 → 9.24.120
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 +239 -41
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +239 -41
- package/src/api-internal.js +440 -178
package/lib/api-internal.d.ts
CHANGED
|
@@ -1296,7 +1296,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1296
1296
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1297
1297
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1298
1298
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1299
|
-
type PaymentFeeType = 'fx' | 'mor';
|
|
1299
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
1300
1300
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1301
1301
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1302
1302
|
type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
|
|
@@ -5069,6 +5069,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5069
5069
|
readonly 'api_password'?: string;
|
|
5070
5070
|
readonly 'access_token'?: string;
|
|
5071
5071
|
readonly 'shopify_plan_name'?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
5072
|
+
readonly 'catalog_publication_owner'?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
5072
5073
|
}
|
|
5073
5074
|
|
|
5074
5075
|
interface ShopifyMarketsShopSummary {
|
|
@@ -7398,6 +7399,48 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7398
7399
|
}
|
|
7399
7400
|
}
|
|
7400
7401
|
|
|
7402
|
+
declare namespace io.flow.channel.shopify.internal.v0.enums {
|
|
7403
|
+
type CatalogPublicationOwner = 'shopify' | 'globale';
|
|
7404
|
+
type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
7405
|
+
}
|
|
7406
|
+
|
|
7407
|
+
declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
7408
|
+
interface ChannelOrganizationShopify {
|
|
7409
|
+
readonly 'organization': io.flow.channel.v0.models.ChannelOrganization;
|
|
7410
|
+
readonly 'tokens': io.flow.channel.shopify.internal.v0.models.ShopifyChannelOrganizationTokens[];
|
|
7411
|
+
}
|
|
7412
|
+
|
|
7413
|
+
interface ChannelOrganizationShopifyForm {
|
|
7414
|
+
readonly 'form': io.flow.channel.v0.models.ChannelOrganizationPutForm;
|
|
7415
|
+
readonly 'metadata': io.flow.channel.shopify.internal.v0.models.ShopifyMetadata;
|
|
7416
|
+
}
|
|
7417
|
+
|
|
7418
|
+
interface ChannelOrganizationShopifyPostForm {
|
|
7419
|
+
readonly 'form': io.flow.channel.v0.models.ChannelOrganizationForm;
|
|
7420
|
+
readonly 'metadata': io.flow.channel.shopify.internal.v0.models.ShopifyMetadata;
|
|
7421
|
+
}
|
|
7422
|
+
|
|
7423
|
+
interface ShopifyCatalogPublication {
|
|
7424
|
+
readonly 'owner': io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
7425
|
+
}
|
|
7426
|
+
|
|
7427
|
+
interface ShopifyChannelOrganizationToken {
|
|
7428
|
+
readonly 'cleartext': string;
|
|
7429
|
+
}
|
|
7430
|
+
|
|
7431
|
+
interface ShopifyChannelOrganizationTokens {
|
|
7432
|
+
readonly 'token': io.flow.channel.shopify.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
7433
|
+
readonly 'service': io.flow.channel.shopify.internal.v0.enums.ShopifyService;
|
|
7434
|
+
}
|
|
7435
|
+
|
|
7436
|
+
interface ShopifyMetadata {
|
|
7437
|
+
readonly 'domain': string;
|
|
7438
|
+
readonly 'myshopify_domain': string;
|
|
7439
|
+
readonly 'catalog_publication'?: io.flow.channel.shopify.internal.v0.models.ShopifyCatalogPublication;
|
|
7440
|
+
readonly 'token': string;
|
|
7441
|
+
}
|
|
7442
|
+
}
|
|
7443
|
+
|
|
7401
7444
|
declare namespace io.flow.order.price.v0.enums {
|
|
7402
7445
|
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
7403
7446
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
@@ -7433,6 +7476,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
7433
7476
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
7434
7477
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
7435
7478
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
7479
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
7436
7480
|
}
|
|
7437
7481
|
|
|
7438
7482
|
declare namespace io.flow.channel.internal.v0.models {
|
|
@@ -7479,7 +7523,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7479
7523
|
readonly 'order_created_at'?: string;
|
|
7480
7524
|
readonly 'order_updated_at'?: string;
|
|
7481
7525
|
readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
7482
|
-
readonly 'payment_source'?: io.flow.
|
|
7526
|
+
readonly 'payment_source'?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
7483
7527
|
}
|
|
7484
7528
|
|
|
7485
7529
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -8425,6 +8469,27 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8425
8469
|
readonly 'assessment': io.flow.shopify.markets.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
8426
8470
|
}
|
|
8427
8471
|
|
|
8472
|
+
interface ShopifyOrderTransaction {
|
|
8473
|
+
readonly 'id': string;
|
|
8474
|
+
readonly 'model': io.flow.shopify.markets.v0.models.ShopifyOrderTransaction;
|
|
8475
|
+
}
|
|
8476
|
+
|
|
8477
|
+
interface ShopifyOrderTransactionDeleted {
|
|
8478
|
+
readonly 'discriminator': 'shopify_order_transaction_deleted';
|
|
8479
|
+
readonly 'event_id': string;
|
|
8480
|
+
readonly 'timestamp': string;
|
|
8481
|
+
readonly 'organization': string;
|
|
8482
|
+
readonly 'id': string;
|
|
8483
|
+
}
|
|
8484
|
+
|
|
8485
|
+
interface ShopifyOrderTransactionUpserted {
|
|
8486
|
+
readonly 'discriminator': 'shopify_order_transaction_upserted';
|
|
8487
|
+
readonly 'event_id': string;
|
|
8488
|
+
readonly 'timestamp': string;
|
|
8489
|
+
readonly 'organization': string;
|
|
8490
|
+
readonly 'transaction': io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransaction;
|
|
8491
|
+
}
|
|
8492
|
+
|
|
8428
8493
|
interface ShopifyProductBundleDeleted {
|
|
8429
8494
|
readonly 'discriminator': 'shopify_product_bundle_deleted';
|
|
8430
8495
|
readonly 'event_id': string;
|
|
@@ -8443,7 +8508,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8443
8508
|
}
|
|
8444
8509
|
|
|
8445
8510
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
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);
|
|
8511
|
+
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 | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted);
|
|
8447
8512
|
}
|
|
8448
8513
|
|
|
8449
8514
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -9802,6 +9867,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9802
9867
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
9803
9868
|
readonly 'starts_at'?: string;
|
|
9804
9869
|
readonly 'ends_at'?: string;
|
|
9870
|
+
readonly 'regions'?: string[];
|
|
9871
|
+
readonly 'dependent_service_fees'?: string[];
|
|
9805
9872
|
}
|
|
9806
9873
|
|
|
9807
9874
|
interface Ratecard {
|
|
@@ -9898,6 +9965,11 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9898
9965
|
readonly 'line_items'?: io.flow.common.v0.models.LineItemForm[];
|
|
9899
9966
|
}
|
|
9900
9967
|
|
|
9968
|
+
interface RatecardFeeSummary {
|
|
9969
|
+
readonly 'ratecard_fee': io.flow.ratecard.v0.unions.RatecardFee;
|
|
9970
|
+
readonly 'source_service_fees': string[];
|
|
9971
|
+
}
|
|
9972
|
+
|
|
9901
9973
|
interface RatecardForm {
|
|
9902
9974
|
readonly 'direction': io.flow.label.v0.enums.Direction;
|
|
9903
9975
|
readonly 'effective_at': string;
|
|
@@ -11665,12 +11737,12 @@ declare namespace io.flow.item.v0.models {
|
|
|
11665
11737
|
}
|
|
11666
11738
|
|
|
11667
11739
|
declare namespace io.flow.billing.v0.enums {
|
|
11668
|
-
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
11740
|
+
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee' | 'sp';
|
|
11669
11741
|
type PayoutAttachmentType = 'transactions';
|
|
11670
11742
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11671
11743
|
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';
|
|
11672
11744
|
type StatementAttachmentType = 'csv';
|
|
11673
|
-
type TaxDutyTransactionReasonCode = '
|
|
11745
|
+
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
11674
11746
|
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';
|
|
11675
11747
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
11676
11748
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -13436,6 +13508,7 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
13436
13508
|
|
|
13437
13509
|
declare namespace io.flow.sellability.v0.models {
|
|
13438
13510
|
interface ProductSellability {
|
|
13511
|
+
readonly 'discriminator': 'product_sellability';
|
|
13439
13512
|
readonly 'shop_id': string;
|
|
13440
13513
|
readonly 'product_id'?: string;
|
|
13441
13514
|
readonly 'request_id': string;
|
|
@@ -13460,6 +13533,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13460
13533
|
}
|
|
13461
13534
|
|
|
13462
13535
|
interface SellabilityError {
|
|
13536
|
+
readonly 'discriminator': 'sellability_error';
|
|
13463
13537
|
readonly 'code': io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
13464
13538
|
readonly 'messages': string[];
|
|
13465
13539
|
}
|
|
@@ -13470,6 +13544,10 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
13470
13544
|
}
|
|
13471
13545
|
}
|
|
13472
13546
|
|
|
13547
|
+
declare namespace io.flow.sellability.v0.unions {
|
|
13548
|
+
type SellabilityResponse = (io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError);
|
|
13549
|
+
}
|
|
13550
|
+
|
|
13473
13551
|
declare namespace io.flow.currency.v0.models {
|
|
13474
13552
|
interface Rate {
|
|
13475
13553
|
readonly 'id': string;
|
|
@@ -13765,12 +13843,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13765
13843
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
13766
13844
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
13767
13845
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
13768
|
-
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
13846
|
+
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95' | 'prr-36e1603f56e54eb889792637c29eed40' | 'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e' | 'prr-ec2f3d608b7e43a49de88ac40e6b50a8' | 'prr-04ed078c39ca4447b171f767d71a481d' | 'prr-bb664a76d6d64a17843e720e6ccd401a' | 'prr-8ce63afcd48641eb9d44e04117348a96' | 'prr-76544617791b4ce8af96b3a7879474c6' | 'prr-566cc67167944bc4bd08167aa9c0beba' | 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
13769
13847
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
13770
13848
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
13771
13849
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13772
13850
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
13773
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
|
|
13851
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio' | 'ge_revenue_share_standard_transactions_count' | 'ge_revenue_share_standard_transactions_total' | 'ge_revenue_share_shopify_plus_transactions_count' | 'ge_revenue_share_shopify_plus_transactions_total' | 'non_l4l_tax_duty_fx_transactions_count' | 'non_l4l_tax_duty_fx_transactions_total' | 'sp_adjustment_transactions_count' | 'sp_adjustment_transactions_total' | 'sp_billable_label_transactions_count' | 'sp_billable_label_transactions_count_for_unique_orders' | 'sp_billable_label_transactions_total' | 'sp_capture_transactions_count' | 'sp_capture_transactions_total' | 'sp_carrier_charge_transactions_count' | 'sp_carrier_charge_transactions_total' | 'sp_channel_transactions_count' | 'sp_channel_transactions_total' | 'sp_duty_transactions_count' | 'sp_duty_transactions_total' | 'sp_manual_transactions_count' | 'sp_manual_transactions_total' | 'sp_refund_transactions_count' | 'sp_refund_transactions_total' | 'sp_reversal_transactions_count' | 'sp_reversal_transactions_total' | 'sp_revenue_share_label_transactions_count' | 'sp_revenue_share_label_transactions_count_for_unique_orders' | 'sp_revenue_share_label_transactions_total' | 'sp_tax_transactions_count' | 'sp_tax_transactions_total' | 'sp_transfer_transactions_count' | 'sp_transfer_transactions_total' | 'sp_trueup_transactions_count' | 'sp_trueup_transactions_total';
|
|
13774
13852
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
13775
13853
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13776
13854
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share';
|
|
@@ -13803,6 +13881,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13803
13881
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
13804
13882
|
type ClassificationErrorCode = 'generic_error';
|
|
13805
13883
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
13884
|
+
type ClassificationScope = 'Item' | 'Product';
|
|
13806
13885
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
13807
13886
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
13808
13887
|
type CommercialInvoiceVersion = 'v2_2_1';
|
|
@@ -13840,7 +13919,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13840
13919
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
|
|
13841
13920
|
type EmptyAttribute = 'irrelevant';
|
|
13842
13921
|
type ErpFileType = 'vendor';
|
|
13843
|
-
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';
|
|
13922
|
+
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' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_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_order_transaction_upserted' | 'shopify_order_transaction_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';
|
|
13844
13923
|
type ExperienceImportType = 'experience_with_settings';
|
|
13845
13924
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13846
13925
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13860,7 +13939,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13860
13939
|
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
13861
13940
|
type GoogleAnalyticsPlugin = 'ec';
|
|
13862
13941
|
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';
|
|
13863
|
-
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
13942
|
+
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
13943
|
+
type HoseinItemType = 'physical' | 'digital';
|
|
13864
13944
|
type HttpMethod = 'get' | 'post';
|
|
13865
13945
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
13866
13946
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -13884,7 +13964,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13884
13964
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13885
13965
|
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback';
|
|
13886
13966
|
type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands';
|
|
13887
|
-
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
13967
|
+
type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
|
|
13888
13968
|
type MixedBagWeight = '0' | '1' | '2';
|
|
13889
13969
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
13890
13970
|
type NiallItemType = 'physical' | 'digital';
|
|
@@ -13902,6 +13982,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13902
13982
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
13903
13983
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
13904
13984
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
13985
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
13905
13986
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
13906
13987
|
type OrderValidationStatus = 'success' | 'failed' | 'label_created' | 'unresolvable' | 'cancelled' | 'breached';
|
|
13907
13988
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
@@ -13919,6 +14000,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13919
14000
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
13920
14001
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
13921
14002
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
14003
|
+
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
13922
14004
|
type PrateekItemType = 'physical' | 'digital';
|
|
13923
14005
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
13924
14006
|
type PriceSelector = 'minimum' | 'maximum';
|
|
@@ -15866,7 +15948,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15866
15948
|
readonly 'order_created_at'?: string;
|
|
15867
15949
|
readonly 'order_updated_at'?: string;
|
|
15868
15950
|
readonly 'order_edit_summary'?: io.flow.internal.v0.models.OrderEditSummary;
|
|
15869
|
-
readonly 'payment_source'?: io.flow.
|
|
15951
|
+
readonly 'payment_source'?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
15870
15952
|
}
|
|
15871
15953
|
|
|
15872
15954
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -16864,6 +16946,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16864
16946
|
readonly 'total': io.flow.common.v0.models.MoneyWithBase;
|
|
16865
16947
|
readonly 'identifiers'?: Record<string, string>;
|
|
16866
16948
|
readonly 'submitted_at'?: string;
|
|
16949
|
+
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
16867
16950
|
}
|
|
16868
16951
|
|
|
16869
16952
|
interface DebugOrderTransaction {
|
|
@@ -17595,6 +17678,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17595
17678
|
readonly 'processed_at'?: string;
|
|
17596
17679
|
}
|
|
17597
17680
|
|
|
17681
|
+
interface EvaluationResults {
|
|
17682
|
+
readonly 'chapter_result': any/*object*/;
|
|
17683
|
+
readonly 'sellability_result': any/*object*/;
|
|
17684
|
+
readonly 'duty_variance_result': any/*object*/;
|
|
17685
|
+
}
|
|
17686
|
+
|
|
17598
17687
|
interface ExclusionRuleDeleted {
|
|
17599
17688
|
readonly 'discriminator': 'exclusion_rule_deleted';
|
|
17600
17689
|
readonly 'event_id': string;
|
|
@@ -17864,6 +17953,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17864
17953
|
readonly 'meter_number': string;
|
|
17865
17954
|
}
|
|
17866
17955
|
|
|
17956
|
+
interface FedexApi {
|
|
17957
|
+
readonly 'discriminator': 'fedex_api';
|
|
17958
|
+
readonly 'client_id': string;
|
|
17959
|
+
readonly 'client_secret': string;
|
|
17960
|
+
readonly 'account_number': string;
|
|
17961
|
+
}
|
|
17962
|
+
|
|
17867
17963
|
interface FedexCrossborder {
|
|
17868
17964
|
readonly 'discriminator': 'fedex_crossborder';
|
|
17869
17965
|
readonly 'api_key': string;
|
|
@@ -17883,6 +17979,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17883
17979
|
readonly 'duty_guarantee'?: io.flow.internal.v0.models.Fee;
|
|
17884
17980
|
readonly 'transfer'?: io.flow.internal.v0.models.Fee;
|
|
17885
17981
|
readonly 'negative_balance'?: io.flow.internal.v0.models.Fee;
|
|
17982
|
+
readonly 'sp'?: io.flow.internal.v0.models.Fee;
|
|
17886
17983
|
}
|
|
17887
17984
|
|
|
17888
17985
|
interface FinanceBankAccount {
|
|
@@ -18797,6 +18894,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18797
18894
|
readonly 'export_id': string;
|
|
18798
18895
|
}
|
|
18799
18896
|
|
|
18897
|
+
interface HoseinItem {
|
|
18898
|
+
readonly 'id': string;
|
|
18899
|
+
readonly 'number': string;
|
|
18900
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
18901
|
+
readonly 'description'?: string;
|
|
18902
|
+
readonly 'type': io.flow.internal.v0.enums.HoseinItemType;
|
|
18903
|
+
readonly 'added_on': string;
|
|
18904
|
+
}
|
|
18905
|
+
|
|
18906
|
+
interface HoseinItemForm {
|
|
18907
|
+
readonly 'number': string;
|
|
18908
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
18909
|
+
readonly 'description'?: string;
|
|
18910
|
+
readonly 'type': io.flow.internal.v0.enums.HoseinItemType;
|
|
18911
|
+
readonly 'added_on': string;
|
|
18912
|
+
}
|
|
18913
|
+
|
|
18800
18914
|
interface Href {
|
|
18801
18915
|
readonly 'discriminator': 'href';
|
|
18802
18916
|
readonly 'label': io.flow.internal.v0.models.ContentLabel;
|
|
@@ -19229,6 +19343,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19229
19343
|
readonly 'status': io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
19230
19344
|
readonly 'tariffs'?: Record<string, io.flow.internal.v0.models.TariffCodeDuty>;
|
|
19231
19345
|
readonly 'decision_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
19346
|
+
readonly 'classification_scope'?: io.flow.internal.v0.enums.ClassificationScope;
|
|
19232
19347
|
readonly 'created_at'?: string;
|
|
19233
19348
|
readonly 'updated_at'?: string;
|
|
19234
19349
|
readonly 'updated_by_user_id'?: string;
|
|
@@ -20196,6 +20311,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20196
20311
|
readonly 'status': io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
20197
20312
|
readonly 'hs6_code': string;
|
|
20198
20313
|
readonly 'merchant_hs6_code': string;
|
|
20314
|
+
readonly 'evaluation_results'?: io.flow.internal.v0.models.EvaluationResults;
|
|
20199
20315
|
readonly 'created_at': string;
|
|
20200
20316
|
readonly 'updated_at': string;
|
|
20201
20317
|
readonly 'updated_by_user_id': string;
|
|
@@ -20993,16 +21109,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20993
21109
|
readonly 'organization_id': string;
|
|
20994
21110
|
readonly 'pending_restriction_count': number;
|
|
20995
21111
|
readonly 'pending_verification_count': number;
|
|
21112
|
+
readonly 'pending_classification_count'?: number;
|
|
20996
21113
|
readonly 'oldest_pending_restriction_date'?: string;
|
|
20997
21114
|
readonly 'oldest_pending_verification_date'?: string;
|
|
20998
21115
|
readonly 'product_count': number;
|
|
20999
21116
|
readonly 'restricted_product_count': number;
|
|
21000
21117
|
readonly 'last_order_submitted_at'?: string;
|
|
21001
|
-
readonly 'matching_positive_keywords': string[];
|
|
21002
|
-
readonly 'product_categories': string[];
|
|
21003
|
-
readonly 'matching_negative_keywords': string[];
|
|
21004
|
-
readonly 'decisions_user_ids': string[];
|
|
21005
|
-
readonly 'restriction_rule_ids': string[];
|
|
21006
21118
|
}
|
|
21007
21119
|
|
|
21008
21120
|
interface OrganizationMetadataDeleted {
|
|
@@ -22131,6 +22243,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22131
22243
|
readonly 'review_status': io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
22132
22244
|
readonly 'pending_restriction_count'?: number;
|
|
22133
22245
|
readonly 'pending_verification_count'?: number;
|
|
22246
|
+
readonly 'pending_classification_count'?: number;
|
|
22134
22247
|
readonly 'oldest_pending_restriction_date'?: string;
|
|
22135
22248
|
readonly 'oldest_pending_verification_date'?: string;
|
|
22136
22249
|
}
|
|
@@ -22165,12 +22278,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22165
22278
|
readonly 'reviews': io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
22166
22279
|
}
|
|
22167
22280
|
|
|
22281
|
+
interface ProductSellabilityInternal {
|
|
22282
|
+
readonly 'shop_id': string;
|
|
22283
|
+
readonly 'product_id'?: string;
|
|
22284
|
+
readonly 'request_id': string;
|
|
22285
|
+
readonly 'hs6_code': string;
|
|
22286
|
+
readonly 'restricted_regions': io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
22287
|
+
readonly 'rule_ids': string[];
|
|
22288
|
+
}
|
|
22289
|
+
|
|
22168
22290
|
interface ProductSellabilityResult {
|
|
22169
22291
|
readonly 'shop_id': string;
|
|
22170
22292
|
readonly 'product_number': string;
|
|
22171
22293
|
readonly 'request_id': string;
|
|
22172
22294
|
readonly 'hs6_code': string;
|
|
22173
22295
|
readonly 'restricted_regions': string[];
|
|
22296
|
+
readonly 'rule_ids'?: string[];
|
|
22174
22297
|
}
|
|
22175
22298
|
|
|
22176
22299
|
interface ProductTransaction {
|
|
@@ -22721,6 +22844,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22721
22844
|
|
|
22722
22845
|
interface ReportFilter {
|
|
22723
22846
|
readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
22847
|
+
readonly 'order_payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
22724
22848
|
}
|
|
22725
22849
|
|
|
22726
22850
|
interface ReportForm {
|
|
@@ -22938,7 +23062,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22938
23062
|
readonly 'id': string;
|
|
22939
23063
|
readonly 'number': string;
|
|
22940
23064
|
readonly 'submitted_at': string;
|
|
22941
|
-
readonly 'payment_source'?:
|
|
23065
|
+
readonly 'payment_source'?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
22942
23066
|
}
|
|
22943
23067
|
|
|
22944
23068
|
interface ReportingOrganizationSummary {
|
|
@@ -23020,7 +23144,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23020
23144
|
}
|
|
23021
23145
|
|
|
23022
23146
|
interface RestrictionFilter {
|
|
23023
|
-
readonly 'categories': string[];
|
|
23024
23147
|
readonly 'users': io.flow.common.v0.models.User[];
|
|
23025
23148
|
readonly 'rules': io.flow.internal.v0.models.RestrictionRuleSummary[];
|
|
23026
23149
|
readonly 'positive_keywords': string[];
|
|
@@ -23049,6 +23172,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23049
23172
|
readonly 'name': string;
|
|
23050
23173
|
readonly 'price': io.flow.common.v0.models.Price;
|
|
23051
23174
|
readonly 'hs_code'?: string;
|
|
23175
|
+
readonly 'hs_code_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
23052
23176
|
readonly 'description': string;
|
|
23053
23177
|
readonly 'category'?: string;
|
|
23054
23178
|
readonly 'categories': string[];
|
|
@@ -23065,7 +23189,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23065
23189
|
readonly 'statuses'?: io.flow.internal.v0.enums.RestrictionStatus[];
|
|
23066
23190
|
readonly 'rule_ids'?: string[];
|
|
23067
23191
|
readonly 'user_ids'?: string[];
|
|
23068
|
-
readonly '
|
|
23192
|
+
readonly 'category'?: string;
|
|
23069
23193
|
readonly 'product_name_query'?: string;
|
|
23070
23194
|
readonly 'hs6'?: string;
|
|
23071
23195
|
readonly 'positive_keywords'?: string[];
|
|
@@ -23174,6 +23298,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23174
23298
|
readonly 'images': io.flow.catalog.v0.models.Image[];
|
|
23175
23299
|
readonly 'thumbnails': io.flow.catalog.v0.models.Image[];
|
|
23176
23300
|
readonly 'hs_code'?: string;
|
|
23301
|
+
readonly 'hs_code_source'?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
23177
23302
|
readonly 'url'?: string;
|
|
23178
23303
|
readonly 'reviews': io.flow.internal.v0.models.RestrictionItemReview[];
|
|
23179
23304
|
readonly 'created_at': string;
|
|
@@ -23190,7 +23315,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23190
23315
|
readonly 'positive_keywords'?: string[];
|
|
23191
23316
|
readonly 'negative_keywords'?: string[];
|
|
23192
23317
|
readonly 'user_ids'?: string[];
|
|
23193
|
-
readonly '
|
|
23318
|
+
readonly 'category'?: string;
|
|
23194
23319
|
readonly 'product_name_query'?: string;
|
|
23195
23320
|
readonly 'hs6'?: string;
|
|
23196
23321
|
readonly 'product_id'?: string;
|
|
@@ -23267,7 +23392,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23267
23392
|
readonly 'negative_keywords': string[];
|
|
23268
23393
|
readonly 'value_threshold_usd'?: number;
|
|
23269
23394
|
readonly 'auto_review_criteria'?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
23270
|
-
readonly 'source'
|
|
23395
|
+
readonly 'source': io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
23271
23396
|
readonly 'sellability_positive_keywords'?: string[];
|
|
23272
23397
|
}
|
|
23273
23398
|
|
|
@@ -23279,6 +23404,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23279
23404
|
readonly 'destination_countries': string[];
|
|
23280
23405
|
}
|
|
23281
23406
|
|
|
23407
|
+
interface RestrictionRuleOrganizationExemption {
|
|
23408
|
+
readonly 'id': string;
|
|
23409
|
+
readonly 'organization_id': string;
|
|
23410
|
+
readonly 'rule_id': string;
|
|
23411
|
+
readonly 'description': string;
|
|
23412
|
+
readonly 'is_rule_exempt': boolean;
|
|
23413
|
+
readonly 'exempt_countries'?: string[];
|
|
23414
|
+
readonly 'ignored_keywords'?: string[];
|
|
23415
|
+
readonly 'additional_keywords'?: string[];
|
|
23416
|
+
}
|
|
23417
|
+
|
|
23282
23418
|
interface RestrictionRuleOverride {
|
|
23283
23419
|
readonly 'id': string;
|
|
23284
23420
|
readonly 'organization_id': string;
|
|
@@ -23302,6 +23438,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23302
23438
|
interface RestrictionSummaryCounts {
|
|
23303
23439
|
readonly 'pending_restriction_count': number;
|
|
23304
23440
|
readonly 'pending_verification_count': number;
|
|
23441
|
+
readonly 'pending_classification_count': number;
|
|
23305
23442
|
}
|
|
23306
23443
|
|
|
23307
23444
|
interface RestrictionsDailyops {
|
|
@@ -23332,6 +23469,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23332
23469
|
readonly 'oldest_insufficient_details_pv_onboarding'?: string;
|
|
23333
23470
|
readonly 'oldest_insufficient_details_pv_active'?: string;
|
|
23334
23471
|
readonly 'oldest_insufficient_details_pv_transacting'?: string;
|
|
23472
|
+
readonly 'num_products_with_fs_result'?: number;
|
|
23473
|
+
readonly 'num_products_sellable_somewhere_by_fs'?: number;
|
|
23474
|
+
readonly 'num_products_restricted_somewhere_by_fs'?: number;
|
|
23475
|
+
readonly 'num_products_with_false_allows_by_fs'?: number;
|
|
23476
|
+
readonly 'num_products_with_false_restricts_by_fs'?: number;
|
|
23477
|
+
readonly 'daily_num_products_with_fs_result'?: number;
|
|
23478
|
+
readonly 'daily_num_products_sellable_somewhere_by_fs'?: number;
|
|
23479
|
+
readonly 'daily_num_products_restricted_somewhere_by_fs'?: number;
|
|
23480
|
+
readonly 'daily_num_products_with_false_allows_by_fs'?: number;
|
|
23481
|
+
readonly 'daily_num_products_with_false_restricts_by_fs'?: number;
|
|
23335
23482
|
}
|
|
23336
23483
|
|
|
23337
23484
|
interface RestrictionsDailyopsDeleted {
|
|
@@ -23367,16 +23514,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23367
23514
|
readonly 'destinations': io.flow.reference.v0.models.Country[];
|
|
23368
23515
|
}
|
|
23369
23516
|
|
|
23370
|
-
interface Retracking {
|
|
23371
|
-
readonly 'carrier': string;
|
|
23372
|
-
readonly 'tracking_number'?: string;
|
|
23373
|
-
}
|
|
23374
|
-
|
|
23375
|
-
interface RetrackingForm {
|
|
23376
|
-
readonly 'carrier': string;
|
|
23377
|
-
readonly 'carrier_tracking_numbers': string[];
|
|
23378
|
-
}
|
|
23379
|
-
|
|
23380
23517
|
interface Return {
|
|
23381
23518
|
readonly 'id': string;
|
|
23382
23519
|
readonly 'order': io.flow.internal.v0.models.OrderSummary;
|
|
@@ -24018,6 +24155,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24018
24155
|
readonly 'api_password'?: string;
|
|
24019
24156
|
readonly 'access_token'?: string;
|
|
24020
24157
|
readonly 'shopify_plan_name'?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
24158
|
+
readonly 'catalog_publication_owner'?: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
24021
24159
|
}
|
|
24022
24160
|
|
|
24023
24161
|
interface ShopifyMarketsShopStatisticsDeleted {
|
|
@@ -24276,6 +24414,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24276
24414
|
readonly 'assessment': io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
24277
24415
|
}
|
|
24278
24416
|
|
|
24417
|
+
interface ShopifyOrderTransaction {
|
|
24418
|
+
readonly 'id': string;
|
|
24419
|
+
readonly 'model': io.flow.shopify.markets.v0.models.ShopifyOrderTransaction;
|
|
24420
|
+
}
|
|
24421
|
+
|
|
24422
|
+
interface ShopifyOrderTransactionDeleted {
|
|
24423
|
+
readonly 'discriminator': 'shopify_order_transaction_deleted';
|
|
24424
|
+
readonly 'event_id': string;
|
|
24425
|
+
readonly 'timestamp': string;
|
|
24426
|
+
readonly 'organization': string;
|
|
24427
|
+
readonly 'id': string;
|
|
24428
|
+
}
|
|
24429
|
+
|
|
24430
|
+
interface ShopifyOrderTransactionUpserted {
|
|
24431
|
+
readonly 'discriminator': 'shopify_order_transaction_upserted';
|
|
24432
|
+
readonly 'event_id': string;
|
|
24433
|
+
readonly 'timestamp': string;
|
|
24434
|
+
readonly 'organization': string;
|
|
24435
|
+
readonly 'transaction': io.flow.internal.v0.models.ShopifyOrderTransaction;
|
|
24436
|
+
}
|
|
24437
|
+
|
|
24279
24438
|
interface ShopifyOrganizationSettings {
|
|
24280
24439
|
readonly 'id': string;
|
|
24281
24440
|
readonly 'process_label': boolean;
|
|
@@ -24896,6 +25055,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24896
25055
|
readonly 'import_taxes'?: number;
|
|
24897
25056
|
readonly 'mor_fees'?: number;
|
|
24898
25057
|
readonly 'mor_foreign_exchange_fees'?: number;
|
|
25058
|
+
readonly 'sp_processing_fees'?: number;
|
|
24899
25059
|
}
|
|
24900
25060
|
|
|
24901
25061
|
interface StripeConnectReportRecordTransferMetadata {
|
|
@@ -24911,6 +25071,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24911
25071
|
readonly 'import_taxes'?: number;
|
|
24912
25072
|
readonly 'mor_fees'?: number;
|
|
24913
25073
|
readonly 'mor_foreign_exchange_fees'?: number;
|
|
25074
|
+
readonly 'sp_processing_fees'?: number;
|
|
24914
25075
|
readonly 'merchant_account_currency'?: string;
|
|
24915
25076
|
readonly 'amount_in_merchant_account_currency'?: number;
|
|
24916
25077
|
readonly 'payout_exchange_rate'?: number;
|
|
@@ -25224,6 +25385,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25224
25385
|
readonly 'category_code'?: string;
|
|
25225
25386
|
}
|
|
25226
25387
|
|
|
25388
|
+
interface TaxDutyReasonCodeMetadata {
|
|
25389
|
+
readonly 'discriminator': 'tax_duty_reason_code_metadata';
|
|
25390
|
+
readonly 'reason_code': io.flow.billing.v0.enums.TaxDutyTransactionReasonCode;
|
|
25391
|
+
}
|
|
25392
|
+
|
|
25227
25393
|
interface TaxRemittanceTransaction {
|
|
25228
25394
|
readonly 'discriminator': 'tax_remittance_transaction';
|
|
25229
25395
|
readonly 'order': io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -25287,6 +25453,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25287
25453
|
readonly 'children': io.flow.internal.v0.unions.ClassificationTaxonomy[];
|
|
25288
25454
|
}
|
|
25289
25455
|
|
|
25456
|
+
interface TaxonomyCategoryHs6Ref {
|
|
25457
|
+
readonly 'id': string;
|
|
25458
|
+
readonly 'taxonomy_category': string;
|
|
25459
|
+
readonly 'hs6': string;
|
|
25460
|
+
readonly 'updated_by_user_id': string;
|
|
25461
|
+
}
|
|
25462
|
+
|
|
25463
|
+
interface TaxonomyCategoryHs6RefDeleted {
|
|
25464
|
+
readonly 'discriminator': 'taxonomy_category_hs6_ref_deleted';
|
|
25465
|
+
readonly 'event_id': string;
|
|
25466
|
+
readonly 'timestamp': string;
|
|
25467
|
+
readonly 'id': string;
|
|
25468
|
+
}
|
|
25469
|
+
|
|
25470
|
+
interface TaxonomyCategoryHs6RefUpserted {
|
|
25471
|
+
readonly 'discriminator': 'taxonomy_category_hs6_ref_upserted';
|
|
25472
|
+
readonly 'event_id': string;
|
|
25473
|
+
readonly 'timestamp': string;
|
|
25474
|
+
readonly 'taxonomy_category_hs6_ref': io.flow.internal.v0.models.TaxonomyCategoryHs6Ref;
|
|
25475
|
+
}
|
|
25476
|
+
|
|
25290
25477
|
interface TaxonomyNode {
|
|
25291
25478
|
readonly 'id': string;
|
|
25292
25479
|
readonly 'children'?: io.flow.internal.v0.models.TaxonomyNode[];
|
|
@@ -25596,10 +25783,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25596
25783
|
readonly 'tracking_events': io.flow.internal.v0.models.TrackingEvent[];
|
|
25597
25784
|
}
|
|
25598
25785
|
|
|
25599
|
-
interface TrackingResync {
|
|
25600
|
-
readonly 'placeholder'?: boolean;
|
|
25601
|
-
}
|
|
25602
|
-
|
|
25603
25786
|
interface TrackingSubscription {
|
|
25604
25787
|
readonly 'id': string;
|
|
25605
25788
|
readonly 'organization_id': string;
|
|
@@ -25932,6 +26115,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25932
26115
|
readonly 'additional_services_requested'?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
25933
26116
|
readonly 'provided_charges'?: io.flow.internal.v0.models.ChargeInput[];
|
|
25934
26117
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
26118
|
+
readonly 'package_dimensions_source': io.flow.label.v0.enums.PackageDimensionsSource;
|
|
25935
26119
|
}
|
|
25936
26120
|
|
|
25937
26121
|
interface ValidationCharacterLength {
|
|
@@ -25994,7 +26178,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25994
26178
|
type AuthorizedOrderCharge = (io.flow.internal.v0.models.AuthorizedShippingCharge);
|
|
25995
26179
|
type CalculatorStamp = (io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep);
|
|
25996
26180
|
type CarrierChargeForm = (io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther);
|
|
25997
|
-
type CarrierCredentials = (io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex);
|
|
26181
|
+
type CarrierCredentials = (io.flow.internal.v0.models.SfExpress | io.flow.internal.v0.models.DhlEcommerce | io.flow.internal.v0.models.Landmark | io.flow.internal.v0.models.Dhl | io.flow.internal.v0.models.FedexCrossborder | io.flow.internal.v0.models.Ups | io.flow.internal.v0.models.Fedex | io.flow.internal.v0.models.FedexApi);
|
|
25998
26182
|
type ChannelRateMetadata = (io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate);
|
|
25999
26183
|
type ClassificationAction = (io.flow.internal.v0.models.SingleClassificationAction | io.flow.internal.v0.models.BulkClassificationAction);
|
|
26000
26184
|
type ClassificationActionForm = (io.flow.internal.v0.models.ClassificationActionFormUndo);
|
|
@@ -26016,7 +26200,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26016
26200
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
26017
26201
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
26018
26202
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
26019
|
-
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);
|
|
26203
|
+
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.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | 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.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | 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);
|
|
26020
26204
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
26021
26205
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
26022
26206
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26065,7 +26249,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26065
26249
|
type TariffEligibilityData = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData);
|
|
26066
26250
|
type TariffEligibilityForm = (io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm);
|
|
26067
26251
|
type TaskData = (io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport);
|
|
26068
|
-
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata);
|
|
26252
|
+
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata);
|
|
26069
26253
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
26070
26254
|
type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
|
|
26071
26255
|
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction);
|
|
@@ -26122,6 +26306,7 @@ export const checkoutUrlType: PropTypes.Requireable<io.flow.internal.v0.enums.Ch
|
|
|
26122
26306
|
export const classificationDecision: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationDecision>;
|
|
26123
26307
|
export const classificationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationErrorCode>;
|
|
26124
26308
|
export const classificationPlatform: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationPlatform>;
|
|
26309
|
+
export const classificationScope: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationScope>;
|
|
26125
26310
|
export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums.ClassificationType>;
|
|
26126
26311
|
export const clothingAgeClassification: PropTypes.Requireable<io.flow.internal.v0.enums.ClothingAgeClassification>;
|
|
26127
26312
|
export const commercialInvoiceVersion: PropTypes.Requireable<io.flow.internal.v0.enums.CommercialInvoiceVersion>;
|
|
@@ -26180,6 +26365,7 @@ export const geIngestionFileStatus: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
26180
26365
|
export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.enums.GoogleAnalyticsPlugin>;
|
|
26181
26366
|
export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
|
|
26182
26367
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
26368
|
+
export const hoseinItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HoseinItemType>;
|
|
26183
26369
|
export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
|
|
26184
26370
|
export const internalPaymentEntityType: PropTypes.Requireable<io.flow.internal.v0.enums.InternalPaymentEntityType>;
|
|
26185
26371
|
export const itemClassificationAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationAction>;
|
|
@@ -26221,6 +26407,7 @@ export const orderAttributeIntent: PropTypes.Requireable<io.flow.internal.v0.enu
|
|
|
26221
26407
|
export const orderCancellationInitiatedBy: PropTypes.Requireable<io.flow.internal.v0.enums.OrderCancellationInitiatedBy>;
|
|
26222
26408
|
export const orderChargeTrigger: PropTypes.Requireable<io.flow.internal.v0.enums.OrderChargeTrigger>;
|
|
26223
26409
|
export const orderLifecycleEvent: PropTypes.Requireable<io.flow.internal.v0.enums.OrderLifecycleEvent>;
|
|
26410
|
+
export const orderPaymentSourceType: PropTypes.Requireable<io.flow.internal.v0.enums.OrderPaymentSourceType>;
|
|
26224
26411
|
export const orderTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.OrderTransactionType>;
|
|
26225
26412
|
export const orderValidationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.OrderValidationStatus>;
|
|
26226
26413
|
export const organizationCapability: PropTypes.Requireable<io.flow.internal.v0.enums.OrganizationCapability>;
|
|
@@ -26238,6 +26425,7 @@ export const paymentShortUrlDiscriminator: PropTypes.Requireable<io.flow.interna
|
|
|
26238
26425
|
export const paymentSummaryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryStatus>;
|
|
26239
26426
|
export const paymentSummaryType: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentSummaryType>;
|
|
26240
26427
|
export const paymentTerm: PropTypes.Requireable<io.flow.internal.v0.enums.PaymentTerm>;
|
|
26428
|
+
export const pendingRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.PendingRecordType>;
|
|
26241
26429
|
export const prateekItemType: PropTypes.Requireable<io.flow.internal.v0.enums.PrateekItemType>;
|
|
26242
26430
|
export const preferredBillingSchedule: PropTypes.Requireable<io.flow.internal.v0.enums.PreferredBillingSchedule>;
|
|
26243
26431
|
export const priceSelector: PropTypes.Requireable<io.flow.internal.v0.enums.PriceSelector>;
|
|
@@ -26774,6 +26962,7 @@ export const erpVendorStatus: PropTypes.Requireable<io.flow.internal.v0.models.E
|
|
|
26774
26962
|
export const erpVendorStatusEntity: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusEntity>;
|
|
26775
26963
|
export const erpVendorStatusFlowFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusFlowFile>;
|
|
26776
26964
|
export const erpVendorStatusPriorityFile: PropTypes.Requireable<io.flow.internal.v0.models.ErpVendorStatusPriorityFile>;
|
|
26965
|
+
export const evaluationResults: PropTypes.Requireable<io.flow.internal.v0.models.EvaluationResults>;
|
|
26777
26966
|
export const exclusionRuleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleDeleted>;
|
|
26778
26967
|
export const exclusionRuleExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleExportRequest>;
|
|
26779
26968
|
export const exclusionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ExclusionRuleUpserted>;
|
|
@@ -26811,6 +27000,7 @@ export const featureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.F
|
|
|
26811
27000
|
export const featureValueForm: PropTypes.Requireable<io.flow.internal.v0.models.FeatureValueForm>;
|
|
26812
27001
|
export const featureValueResult: PropTypes.Requireable<io.flow.internal.v0.models.FeatureValueResult>;
|
|
26813
27002
|
export const fedex: PropTypes.Requireable<io.flow.internal.v0.models.Fedex>;
|
|
27003
|
+
export const fedexApi: PropTypes.Requireable<io.flow.internal.v0.models.FedexApi>;
|
|
26814
27004
|
export const fedexCrossborder: PropTypes.Requireable<io.flow.internal.v0.models.FedexCrossborder>;
|
|
26815
27005
|
export const fee: PropTypes.Requireable<io.flow.internal.v0.models.Fee>;
|
|
26816
27006
|
export const fees: PropTypes.Requireable<io.flow.internal.v0.models.Fees>;
|
|
@@ -26930,6 +27120,8 @@ export const harmonizationThresholdForm: PropTypes.Requireable<io.flow.internal.
|
|
|
26930
27120
|
export const harmonizationUnclassifiedStatistics: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics>;
|
|
26931
27121
|
export const harmonizeFullyRequestV2: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizeFullyRequestV2>;
|
|
26932
27122
|
export const harmonizedItemsHs6Export: PropTypes.Requireable<io.flow.internal.v0.models.HarmonizedItemsHs6Export>;
|
|
27123
|
+
export const hoseinItem: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItem>;
|
|
27124
|
+
export const hoseinItemForm: PropTypes.Requireable<io.flow.internal.v0.models.HoseinItemForm>;
|
|
26933
27125
|
export const href: PropTypes.Requireable<io.flow.internal.v0.models.Href>;
|
|
26934
27126
|
export const hs6: PropTypes.Requireable<io.flow.internal.v0.models.Hs6>;
|
|
26935
27127
|
export const hs6Metadata: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Metadata>;
|
|
@@ -27353,6 +27545,7 @@ export const productRestrictionStateDeleted: PropTypes.Requireable<io.flow.inter
|
|
|
27353
27545
|
export const productRestrictionStateInserted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionStateInserted>;
|
|
27354
27546
|
export const productRestrictionStateUpdated: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionStateUpdated>;
|
|
27355
27547
|
export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
|
|
27548
|
+
export const productSellabilityInternal: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityInternal>;
|
|
27356
27549
|
export const productSellabilityResult: PropTypes.Requireable<io.flow.internal.v0.models.ProductSellabilityResult>;
|
|
27357
27550
|
export const productTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProductTransaction>;
|
|
27358
27551
|
export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
|
|
@@ -27503,6 +27696,7 @@ export const restrictionRuleEffectForm: PropTypes.Requireable<io.flow.internal.v
|
|
|
27503
27696
|
export const restrictionRuleEffectUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleEffectUpserted>;
|
|
27504
27697
|
export const restrictionRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleForm>;
|
|
27505
27698
|
export const restrictionRuleLaneExemption: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleLaneExemption>;
|
|
27699
|
+
export const restrictionRuleOrganizationExemption: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleOrganizationExemption>;
|
|
27506
27700
|
export const restrictionRuleOverride: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleOverride>;
|
|
27507
27701
|
export const restrictionRuleSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleSummary>;
|
|
27508
27702
|
export const restrictionRuleUpserted: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleUpserted>;
|
|
@@ -27514,8 +27708,6 @@ export const resyncByDestinations: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
27514
27708
|
export const resyncByHs6Destinations: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Destinations>;
|
|
27515
27709
|
export const resyncByHs6Origin: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Origin>;
|
|
27516
27710
|
export const resyncFallbackRates: PropTypes.Requireable<io.flow.internal.v0.models.ResyncFallbackRates>;
|
|
27517
|
-
export const retracking: PropTypes.Requireable<io.flow.internal.v0.models.Retracking>;
|
|
27518
|
-
export const retrackingForm: PropTypes.Requireable<io.flow.internal.v0.models.RetrackingForm>;
|
|
27519
27711
|
export const UNSAFE_return: PropTypes.Requireable<io.flow.internal.v0.models.Return>;
|
|
27520
27712
|
export const returnPolicyDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyDeleted>;
|
|
27521
27713
|
export const returnPolicyItemResultDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ReturnPolicyItemResultDeleted>;
|
|
@@ -27644,6 +27836,9 @@ export const shopifyOrderLineContent: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
27644
27836
|
export const shopifyOrderRiskAssessment: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderRiskAssessment>;
|
|
27645
27837
|
export const shopifyOrderRiskAssessmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted>;
|
|
27646
27838
|
export const shopifyOrderRiskAssessmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted>;
|
|
27839
|
+
export const shopifyOrderTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderTransaction>;
|
|
27840
|
+
export const shopifyOrderTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderTransactionDeleted>;
|
|
27841
|
+
export const shopifyOrderTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderTransactionUpserted>;
|
|
27647
27842
|
export const shopifyOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrganizationSettings>;
|
|
27648
27843
|
export const shopifyOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrganizationSettingsForm>;
|
|
27649
27844
|
export const shopifyPartnerWebhook: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyPartnerWebhook>;
|
|
@@ -27765,6 +27960,7 @@ export const taxCalculationError: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27765
27960
|
export const taxCalculationForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationForm>;
|
|
27766
27961
|
export const taxCalculationLineItem: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItem>;
|
|
27767
27962
|
export const taxCalculationLineItemForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItemForm>;
|
|
27963
|
+
export const taxDutyReasonCodeMetadata: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyReasonCodeMetadata>;
|
|
27768
27964
|
export const taxRemittanceTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransaction>;
|
|
27769
27965
|
export const taxRemittanceTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionDeleted>;
|
|
27770
27966
|
export const taxRemittanceTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionUpserted>;
|
|
@@ -27772,6 +27968,9 @@ export const taxTransaction: PropTypes.Requireable<io.flow.internal.v0.models.Ta
|
|
|
27772
27968
|
export const taxTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionDeleted>;
|
|
27773
27969
|
export const taxTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxTransactionUpserted>;
|
|
27774
27970
|
export const taxonomyCategory: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategory>;
|
|
27971
|
+
export const taxonomyCategoryHs6Ref: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategoryHs6Ref>;
|
|
27972
|
+
export const taxonomyCategoryHs6RefDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted>;
|
|
27973
|
+
export const taxonomyCategoryHs6RefUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted>;
|
|
27775
27974
|
export const taxonomyNode: PropTypes.Requireable<io.flow.internal.v0.models.TaxonomyNode>;
|
|
27776
27975
|
export const techOnboardingDescription: PropTypes.Requireable<io.flow.internal.v0.models.TechOnboardingDescription>;
|
|
27777
27976
|
export const test: PropTypes.Requireable<io.flow.internal.v0.models.Test>;
|
|
@@ -27814,7 +28013,6 @@ export const trackingProcessingErrorDeleted: PropTypes.Requireable<io.flow.inter
|
|
|
27814
28013
|
export const trackingProcessingErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingProcessingErrorUpserted>;
|
|
27815
28014
|
export const trackingRequest: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequest>;
|
|
27816
28015
|
export const trackingResponse: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponse>;
|
|
27817
|
-
export const trackingResync: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResync>;
|
|
27818
28016
|
export const trackingSubscription: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscription>;
|
|
27819
28017
|
export const trackingSubscriptionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionDeleted>;
|
|
27820
28018
|
export const trackingSubscriptionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionUpserted>;
|