@flowio/types 11.24.119 → 11.24.121
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +213 -38
- package/dist/api.d.ts +3100 -5212
- package/package.json +2 -2
- package/src/api-internal.ts +313 -39
- package/src/api.ts +4549 -7208
package/dist/api-internal.d.ts
CHANGED
|
@@ -1107,7 +1107,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1107
1107
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1108
1108
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1109
1109
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1110
|
-
type PaymentFeeType = 'fx' | 'mor';
|
|
1110
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
1111
1111
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1112
1112
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1113
1113
|
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';
|
|
@@ -4439,6 +4439,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4439
4439
|
readonly api_password?: string;
|
|
4440
4440
|
readonly access_token?: string;
|
|
4441
4441
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
4442
|
+
readonly catalog_publication_owner?: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
4442
4443
|
}
|
|
4443
4444
|
interface ShopifyMarketsShopSummary {
|
|
4444
4445
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
@@ -6502,6 +6503,40 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6502
6503
|
readonly webhooks: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse[];
|
|
6503
6504
|
}
|
|
6504
6505
|
}
|
|
6506
|
+
declare namespace io.flow.channel.shopify.internal.v0.enums {
|
|
6507
|
+
type CatalogPublicationOwner = 'shopify' | 'globale';
|
|
6508
|
+
type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
6509
|
+
}
|
|
6510
|
+
declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
6511
|
+
interface ChannelOrganizationShopify {
|
|
6512
|
+
readonly organization: io.flow.channel.v0.models.ChannelOrganization;
|
|
6513
|
+
readonly tokens: io.flow.channel.shopify.internal.v0.models.ShopifyChannelOrganizationTokens[];
|
|
6514
|
+
}
|
|
6515
|
+
interface ChannelOrganizationShopifyForm {
|
|
6516
|
+
readonly form: io.flow.channel.v0.models.ChannelOrganizationPutForm;
|
|
6517
|
+
readonly metadata: io.flow.channel.shopify.internal.v0.models.ShopifyMetadata;
|
|
6518
|
+
}
|
|
6519
|
+
interface ChannelOrganizationShopifyPostForm {
|
|
6520
|
+
readonly form: io.flow.channel.v0.models.ChannelOrganizationForm;
|
|
6521
|
+
readonly metadata: io.flow.channel.shopify.internal.v0.models.ShopifyMetadata;
|
|
6522
|
+
}
|
|
6523
|
+
interface ShopifyCatalogPublication {
|
|
6524
|
+
readonly owner: io.flow.channel.shopify.internal.v0.enums.CatalogPublicationOwner;
|
|
6525
|
+
}
|
|
6526
|
+
interface ShopifyChannelOrganizationToken {
|
|
6527
|
+
readonly cleartext: string;
|
|
6528
|
+
}
|
|
6529
|
+
interface ShopifyChannelOrganizationTokens {
|
|
6530
|
+
readonly token: io.flow.channel.shopify.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
6531
|
+
readonly service: io.flow.channel.shopify.internal.v0.enums.ShopifyService;
|
|
6532
|
+
}
|
|
6533
|
+
interface ShopifyMetadata {
|
|
6534
|
+
readonly domain: string;
|
|
6535
|
+
readonly myshopify_domain: string;
|
|
6536
|
+
readonly catalog_publication?: io.flow.channel.shopify.internal.v0.models.ShopifyCatalogPublication;
|
|
6537
|
+
readonly token: string;
|
|
6538
|
+
}
|
|
6539
|
+
}
|
|
6505
6540
|
declare namespace io.flow.order.price.v0.enums {
|
|
6506
6541
|
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';
|
|
6507
6542
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
@@ -6534,6 +6569,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
6534
6569
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
6535
6570
|
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';
|
|
6536
6571
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
6572
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
6537
6573
|
}
|
|
6538
6574
|
declare namespace io.flow.channel.internal.v0.models {
|
|
6539
6575
|
interface ChannelCurrencyForm {
|
|
@@ -6574,7 +6610,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
6574
6610
|
readonly order_created_at?: string;
|
|
6575
6611
|
readonly order_updated_at?: string;
|
|
6576
6612
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
6577
|
-
readonly payment_source?: io.flow.
|
|
6613
|
+
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
6578
6614
|
}
|
|
6579
6615
|
interface ChannelOrderAcceptanceDetails {
|
|
6580
6616
|
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
@@ -7382,6 +7418,24 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7382
7418
|
readonly organization: string;
|
|
7383
7419
|
readonly assessment: io.flow.shopify.markets.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
7384
7420
|
}
|
|
7421
|
+
interface ShopifyOrderTransaction {
|
|
7422
|
+
readonly id: string;
|
|
7423
|
+
readonly model: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction;
|
|
7424
|
+
}
|
|
7425
|
+
interface ShopifyOrderTransactionDeleted {
|
|
7426
|
+
readonly discriminator: 'shopify_order_transaction_deleted';
|
|
7427
|
+
readonly event_id: string;
|
|
7428
|
+
readonly timestamp: string;
|
|
7429
|
+
readonly organization: string;
|
|
7430
|
+
readonly id: string;
|
|
7431
|
+
}
|
|
7432
|
+
interface ShopifyOrderTransactionUpserted {
|
|
7433
|
+
readonly discriminator: 'shopify_order_transaction_upserted';
|
|
7434
|
+
readonly event_id: string;
|
|
7435
|
+
readonly timestamp: string;
|
|
7436
|
+
readonly organization: string;
|
|
7437
|
+
readonly transaction: io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransaction;
|
|
7438
|
+
}
|
|
7385
7439
|
interface ShopifyProductBundleDeleted {
|
|
7386
7440
|
readonly discriminator: 'shopify_product_bundle_deleted';
|
|
7387
7441
|
readonly event_id: string;
|
|
@@ -7398,7 +7452,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7398
7452
|
}
|
|
7399
7453
|
}
|
|
7400
7454
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
7401
|
-
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted;
|
|
7455
|
+
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;
|
|
7402
7456
|
}
|
|
7403
7457
|
declare namespace io.flow.experience.v0.enums {
|
|
7404
7458
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -8563,6 +8617,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
8563
8617
|
readonly amount: io.flow.common.v0.models.Money;
|
|
8564
8618
|
readonly starts_at?: string;
|
|
8565
8619
|
readonly ends_at?: string;
|
|
8620
|
+
readonly regions?: string[];
|
|
8621
|
+
readonly dependent_service_fees?: string[];
|
|
8566
8622
|
}
|
|
8567
8623
|
interface Ratecard {
|
|
8568
8624
|
readonly id: string;
|
|
@@ -8650,6 +8706,10 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
8650
8706
|
readonly rate_level_key?: string;
|
|
8651
8707
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
8652
8708
|
}
|
|
8709
|
+
interface RatecardFeeSummary {
|
|
8710
|
+
readonly ratecard_fee: io.flow.ratecard.v0.unions.RatecardFee;
|
|
8711
|
+
readonly source_service_fees: string[];
|
|
8712
|
+
}
|
|
8653
8713
|
interface RatecardForm {
|
|
8654
8714
|
readonly direction: io.flow.label.v0.enums.Direction;
|
|
8655
8715
|
readonly effective_at: string;
|
|
@@ -10171,12 +10231,12 @@ declare namespace io.flow.item.v0.models {
|
|
|
10171
10231
|
}
|
|
10172
10232
|
}
|
|
10173
10233
|
declare namespace io.flow.billing.v0.enums {
|
|
10174
|
-
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
10234
|
+
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee' | 'sp';
|
|
10175
10235
|
type PayoutAttachmentType = 'transactions';
|
|
10176
10236
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
10177
10237
|
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';
|
|
10178
10238
|
type StatementAttachmentType = 'csv';
|
|
10179
|
-
type TaxDutyTransactionReasonCode = '
|
|
10239
|
+
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';
|
|
10180
10240
|
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';
|
|
10181
10241
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
10182
10242
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
@@ -11692,6 +11752,7 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
11692
11752
|
}
|
|
11693
11753
|
declare namespace io.flow.sellability.v0.models {
|
|
11694
11754
|
interface ProductSellability {
|
|
11755
|
+
readonly discriminator: 'product_sellability';
|
|
11695
11756
|
readonly shop_id: string;
|
|
11696
11757
|
readonly product_id?: string;
|
|
11697
11758
|
readonly request_id: string;
|
|
@@ -11713,6 +11774,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11713
11774
|
readonly amount: number;
|
|
11714
11775
|
}
|
|
11715
11776
|
interface SellabilityError {
|
|
11777
|
+
readonly discriminator: 'sellability_error';
|
|
11716
11778
|
readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
11717
11779
|
readonly messages: string[];
|
|
11718
11780
|
}
|
|
@@ -11721,6 +11783,9 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11721
11783
|
readonly regions: string[];
|
|
11722
11784
|
}
|
|
11723
11785
|
}
|
|
11786
|
+
declare namespace io.flow.sellability.v0.unions {
|
|
11787
|
+
type SellabilityResponse = io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError;
|
|
11788
|
+
}
|
|
11724
11789
|
declare namespace io.flow.currency.v0.models {
|
|
11725
11790
|
interface Rate {
|
|
11726
11791
|
readonly id: string;
|
|
@@ -11973,12 +12038,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11973
12038
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
11974
12039
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
11975
12040
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
11976
|
-
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
12041
|
+
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';
|
|
11977
12042
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
11978
12043
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
11979
12044
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11980
12045
|
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';
|
|
11981
|
-
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';
|
|
12046
|
+
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';
|
|
11982
12047
|
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';
|
|
11983
12048
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
11984
12049
|
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';
|
|
@@ -12011,6 +12076,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12011
12076
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
12012
12077
|
type ClassificationErrorCode = 'generic_error';
|
|
12013
12078
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
12079
|
+
type ClassificationScope = 'Item' | 'Product';
|
|
12014
12080
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
12015
12081
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
12016
12082
|
type CommercialInvoiceVersion = 'v2_2_1';
|
|
@@ -12048,7 +12114,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12048
12114
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
|
|
12049
12115
|
type EmptyAttribute = 'irrelevant';
|
|
12050
12116
|
type ErpFileType = 'vendor';
|
|
12051
|
-
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';
|
|
12117
|
+
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';
|
|
12052
12118
|
type ExperienceImportType = 'experience_with_settings';
|
|
12053
12119
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12054
12120
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12068,7 +12134,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12068
12134
|
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
12069
12135
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12070
12136
|
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';
|
|
12071
|
-
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
12137
|
+
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
12138
|
+
type HoseinItemType = 'physical' | 'digital';
|
|
12072
12139
|
type HttpMethod = 'get' | 'post';
|
|
12073
12140
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
12074
12141
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -12092,7 +12159,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12092
12159
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
12093
12160
|
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';
|
|
12094
12161
|
type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands';
|
|
12095
|
-
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
12162
|
+
type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
|
|
12096
12163
|
type MixedBagWeight = '0' | '1' | '2';
|
|
12097
12164
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
12098
12165
|
type NiallItemType = 'physical' | 'digital';
|
|
@@ -12110,6 +12177,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12110
12177
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
12111
12178
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
12112
12179
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
12180
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
12113
12181
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
12114
12182
|
type OrderValidationStatus = 'success' | 'failed' | 'label_created' | 'unresolvable' | 'cancelled' | 'breached';
|
|
12115
12183
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
@@ -12127,6 +12195,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12127
12195
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
12128
12196
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
12129
12197
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
12198
|
+
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
12130
12199
|
type PrateekItemType = 'physical' | 'digital';
|
|
12131
12200
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12132
12201
|
type PriceSelector = 'minimum' | 'maximum';
|
|
@@ -13831,7 +13900,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13831
13900
|
readonly order_created_at?: string;
|
|
13832
13901
|
readonly order_updated_at?: string;
|
|
13833
13902
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
13834
|
-
readonly payment_source?: io.flow.
|
|
13903
|
+
readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
13835
13904
|
}
|
|
13836
13905
|
interface ChannelOrderAcceptanceDeleted {
|
|
13837
13906
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -14696,6 +14765,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14696
14765
|
readonly total: io.flow.common.v0.models.MoneyWithBase;
|
|
14697
14766
|
readonly identifiers?: Record<string, string>;
|
|
14698
14767
|
readonly submitted_at?: string;
|
|
14768
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
14699
14769
|
}
|
|
14700
14770
|
interface DebugOrderTransaction {
|
|
14701
14771
|
readonly order: io.flow.internal.v0.models.DebugOrder;
|
|
@@ -15339,6 +15409,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15339
15409
|
readonly errors?: string[];
|
|
15340
15410
|
readonly processed_at?: string;
|
|
15341
15411
|
}
|
|
15412
|
+
interface EvaluationResults {
|
|
15413
|
+
readonly chapter_result: any;
|
|
15414
|
+
readonly sellability_result: any;
|
|
15415
|
+
readonly duty_variance_result: any;
|
|
15416
|
+
}
|
|
15342
15417
|
interface ExclusionRuleDeleted {
|
|
15343
15418
|
readonly discriminator: 'exclusion_rule_deleted';
|
|
15344
15419
|
readonly event_id: string;
|
|
@@ -15571,6 +15646,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15571
15646
|
readonly account_number: string;
|
|
15572
15647
|
readonly meter_number: string;
|
|
15573
15648
|
}
|
|
15649
|
+
interface FedexApi {
|
|
15650
|
+
readonly discriminator: 'fedex_api';
|
|
15651
|
+
readonly client_id: string;
|
|
15652
|
+
readonly client_secret: string;
|
|
15653
|
+
readonly account_number: string;
|
|
15654
|
+
}
|
|
15574
15655
|
interface FedexCrossborder {
|
|
15575
15656
|
readonly discriminator: 'fedex_crossborder';
|
|
15576
15657
|
readonly api_key: string;
|
|
@@ -15588,6 +15669,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15588
15669
|
readonly duty_guarantee?: io.flow.internal.v0.models.Fee;
|
|
15589
15670
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
15590
15671
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
15672
|
+
readonly sp?: io.flow.internal.v0.models.Fee;
|
|
15591
15673
|
}
|
|
15592
15674
|
interface FinanceBankAccount {
|
|
15593
15675
|
readonly id: string;
|
|
@@ -16385,6 +16467,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16385
16467
|
readonly organization: string;
|
|
16386
16468
|
readonly export_id: string;
|
|
16387
16469
|
}
|
|
16470
|
+
interface HoseinItem {
|
|
16471
|
+
readonly id: string;
|
|
16472
|
+
readonly number: string;
|
|
16473
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
16474
|
+
readonly description?: string;
|
|
16475
|
+
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
16476
|
+
readonly added_on: string;
|
|
16477
|
+
}
|
|
16478
|
+
interface HoseinItemForm {
|
|
16479
|
+
readonly number: string;
|
|
16480
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
16481
|
+
readonly description?: string;
|
|
16482
|
+
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
16483
|
+
readonly added_on: string;
|
|
16484
|
+
}
|
|
16388
16485
|
interface Href {
|
|
16389
16486
|
readonly discriminator: 'href';
|
|
16390
16487
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
@@ -16769,6 +16866,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16769
16866
|
readonly status: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
16770
16867
|
readonly tariffs?: Record<string, io.flow.internal.v0.models.TariffCodeDuty>;
|
|
16771
16868
|
readonly decision_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
16869
|
+
readonly classification_scope?: io.flow.internal.v0.enums.ClassificationScope;
|
|
16772
16870
|
readonly created_at?: string;
|
|
16773
16871
|
readonly updated_at?: string;
|
|
16774
16872
|
readonly updated_by_user_id?: string;
|
|
@@ -17611,6 +17709,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17611
17709
|
readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
17612
17710
|
readonly hs6_code: string;
|
|
17613
17711
|
readonly merchant_hs6_code: string;
|
|
17712
|
+
readonly evaluation_results?: io.flow.internal.v0.models.EvaluationResults;
|
|
17614
17713
|
readonly created_at: string;
|
|
17615
17714
|
readonly updated_at: string;
|
|
17616
17715
|
readonly updated_by_user_id: string;
|
|
@@ -18303,16 +18402,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18303
18402
|
readonly organization_id: string;
|
|
18304
18403
|
readonly pending_restriction_count: number;
|
|
18305
18404
|
readonly pending_verification_count: number;
|
|
18405
|
+
readonly pending_classification_count?: number;
|
|
18306
18406
|
readonly oldest_pending_restriction_date?: string;
|
|
18307
18407
|
readonly oldest_pending_verification_date?: string;
|
|
18308
18408
|
readonly product_count: number;
|
|
18309
18409
|
readonly restricted_product_count: number;
|
|
18310
18410
|
readonly last_order_submitted_at?: string;
|
|
18311
|
-
readonly matching_positive_keywords: string[];
|
|
18312
|
-
readonly product_categories: string[];
|
|
18313
|
-
readonly matching_negative_keywords: string[];
|
|
18314
|
-
readonly decisions_user_ids: string[];
|
|
18315
|
-
readonly restriction_rule_ids: string[];
|
|
18316
18411
|
}
|
|
18317
18412
|
interface OrganizationMetadataDeleted {
|
|
18318
18413
|
readonly discriminator: 'organization_metadata_deleted';
|
|
@@ -19301,6 +19396,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19301
19396
|
readonly review_status: io.flow.internal.v0.enums.RestrictionStateReviewStatus;
|
|
19302
19397
|
readonly pending_restriction_count?: number;
|
|
19303
19398
|
readonly pending_verification_count?: number;
|
|
19399
|
+
readonly pending_classification_count?: number;
|
|
19304
19400
|
readonly oldest_pending_restriction_date?: string;
|
|
19305
19401
|
readonly oldest_pending_verification_date?: string;
|
|
19306
19402
|
}
|
|
@@ -19330,12 +19426,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19330
19426
|
readonly product_id: string;
|
|
19331
19427
|
readonly reviews: io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
19332
19428
|
}
|
|
19429
|
+
interface ProductSellabilityInternal {
|
|
19430
|
+
readonly shop_id: string;
|
|
19431
|
+
readonly product_id?: string;
|
|
19432
|
+
readonly request_id: string;
|
|
19433
|
+
readonly hs6_code: string;
|
|
19434
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
19435
|
+
readonly rule_ids: string[];
|
|
19436
|
+
}
|
|
19333
19437
|
interface ProductSellabilityResult {
|
|
19334
19438
|
readonly shop_id: string;
|
|
19335
19439
|
readonly product_number: string;
|
|
19336
19440
|
readonly request_id: string;
|
|
19337
19441
|
readonly hs6_code: string;
|
|
19338
19442
|
readonly restricted_regions: string[];
|
|
19443
|
+
readonly rule_ids?: string[];
|
|
19339
19444
|
}
|
|
19340
19445
|
interface ProductTransaction {
|
|
19341
19446
|
readonly transaction_amount: number;
|
|
@@ -19807,6 +19912,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19807
19912
|
}
|
|
19808
19913
|
interface ReportFilter {
|
|
19809
19914
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
19915
|
+
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
19810
19916
|
}
|
|
19811
19917
|
interface ReportForm {
|
|
19812
19918
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
@@ -19995,7 +20101,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19995
20101
|
readonly id: string;
|
|
19996
20102
|
readonly number: string;
|
|
19997
20103
|
readonly submitted_at: string;
|
|
19998
|
-
readonly payment_source?:
|
|
20104
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
19999
20105
|
}
|
|
20000
20106
|
interface ReportingOrganizationSummary {
|
|
20001
20107
|
readonly id: string;
|
|
@@ -20062,7 +20168,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20062
20168
|
readonly category: string;
|
|
20063
20169
|
}
|
|
20064
20170
|
interface RestrictionFilter {
|
|
20065
|
-
readonly categories: string[];
|
|
20066
20171
|
readonly users: io.flow.common.v0.models.User[];
|
|
20067
20172
|
readonly rules: io.flow.internal.v0.models.RestrictionRuleSummary[];
|
|
20068
20173
|
readonly positive_keywords: string[];
|
|
@@ -20089,6 +20194,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20089
20194
|
readonly name: string;
|
|
20090
20195
|
readonly price: io.flow.common.v0.models.Price;
|
|
20091
20196
|
readonly hs_code?: string;
|
|
20197
|
+
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
20092
20198
|
readonly description: string;
|
|
20093
20199
|
readonly category?: string;
|
|
20094
20200
|
readonly categories: string[];
|
|
@@ -20104,7 +20210,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20104
20210
|
readonly statuses?: io.flow.internal.v0.enums.RestrictionStatus[];
|
|
20105
20211
|
readonly rule_ids?: string[];
|
|
20106
20212
|
readonly user_ids?: string[];
|
|
20107
|
-
readonly
|
|
20213
|
+
readonly category?: string;
|
|
20108
20214
|
readonly product_name_query?: string;
|
|
20109
20215
|
readonly hs6?: string;
|
|
20110
20216
|
readonly positive_keywords?: string[];
|
|
@@ -20202,6 +20308,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20202
20308
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
20203
20309
|
readonly thumbnails: io.flow.catalog.v0.models.Image[];
|
|
20204
20310
|
readonly hs_code?: string;
|
|
20311
|
+
readonly hs_code_source?: io.flow.internal.v0.enums.HarmonizationDecisionSource;
|
|
20205
20312
|
readonly url?: string;
|
|
20206
20313
|
readonly reviews: io.flow.internal.v0.models.RestrictionItemReview[];
|
|
20207
20314
|
readonly created_at: string;
|
|
@@ -20216,7 +20323,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20216
20323
|
readonly positive_keywords?: string[];
|
|
20217
20324
|
readonly negative_keywords?: string[];
|
|
20218
20325
|
readonly user_ids?: string[];
|
|
20219
|
-
readonly
|
|
20326
|
+
readonly category?: string;
|
|
20220
20327
|
readonly product_name_query?: string;
|
|
20221
20328
|
readonly hs6?: string;
|
|
20222
20329
|
readonly product_id?: string;
|
|
@@ -20284,7 +20391,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20284
20391
|
readonly negative_keywords: string[];
|
|
20285
20392
|
readonly value_threshold_usd?: number;
|
|
20286
20393
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
20287
|
-
readonly source
|
|
20394
|
+
readonly source: io.flow.internal.v0.enums.RestrictionOrganizationSource;
|
|
20288
20395
|
readonly sellability_positive_keywords?: string[];
|
|
20289
20396
|
}
|
|
20290
20397
|
interface RestrictionRuleLaneExemption {
|
|
@@ -20294,6 +20401,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20294
20401
|
readonly origin_countries: string[];
|
|
20295
20402
|
readonly destination_countries: string[];
|
|
20296
20403
|
}
|
|
20404
|
+
interface RestrictionRuleOrganizationExemption {
|
|
20405
|
+
readonly id: string;
|
|
20406
|
+
readonly organization_id: string;
|
|
20407
|
+
readonly rule_id: string;
|
|
20408
|
+
readonly description: string;
|
|
20409
|
+
readonly is_rule_exempt: boolean;
|
|
20410
|
+
readonly exempt_countries?: string[];
|
|
20411
|
+
readonly ignored_keywords?: string[];
|
|
20412
|
+
readonly additional_keywords?: string[];
|
|
20413
|
+
}
|
|
20297
20414
|
interface RestrictionRuleOverride {
|
|
20298
20415
|
readonly id: string;
|
|
20299
20416
|
readonly organization_id: string;
|
|
@@ -20314,6 +20431,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20314
20431
|
interface RestrictionSummaryCounts {
|
|
20315
20432
|
readonly pending_restriction_count: number;
|
|
20316
20433
|
readonly pending_verification_count: number;
|
|
20434
|
+
readonly pending_classification_count: number;
|
|
20317
20435
|
}
|
|
20318
20436
|
interface RestrictionsDailyops {
|
|
20319
20437
|
readonly id: string;
|
|
@@ -20343,6 +20461,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20343
20461
|
readonly oldest_insufficient_details_pv_onboarding?: string;
|
|
20344
20462
|
readonly oldest_insufficient_details_pv_active?: string;
|
|
20345
20463
|
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
20464
|
+
readonly num_products_with_fs_result?: number;
|
|
20465
|
+
readonly num_products_sellable_somewhere_by_fs?: number;
|
|
20466
|
+
readonly num_products_restricted_somewhere_by_fs?: number;
|
|
20467
|
+
readonly num_products_with_false_allows_by_fs?: number;
|
|
20468
|
+
readonly num_products_with_false_restricts_by_fs?: number;
|
|
20469
|
+
readonly daily_num_products_with_fs_result?: number;
|
|
20470
|
+
readonly daily_num_products_sellable_somewhere_by_fs?: number;
|
|
20471
|
+
readonly daily_num_products_restricted_somewhere_by_fs?: number;
|
|
20472
|
+
readonly daily_num_products_with_false_allows_by_fs?: number;
|
|
20473
|
+
readonly daily_num_products_with_false_restricts_by_fs?: number;
|
|
20346
20474
|
}
|
|
20347
20475
|
interface RestrictionsDailyopsDeleted {
|
|
20348
20476
|
readonly discriminator: 'restrictions_dailyops_deleted';
|
|
@@ -20371,14 +20499,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20371
20499
|
interface ResyncFallbackRates {
|
|
20372
20500
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
20373
20501
|
}
|
|
20374
|
-
interface Retracking {
|
|
20375
|
-
readonly carrier: string;
|
|
20376
|
-
readonly tracking_number?: string;
|
|
20377
|
-
}
|
|
20378
|
-
interface RetrackingForm {
|
|
20379
|
-
readonly carrier: string;
|
|
20380
|
-
readonly carrier_tracking_numbers: string[];
|
|
20381
|
-
}
|
|
20382
20502
|
interface Return {
|
|
20383
20503
|
readonly id: string;
|
|
20384
20504
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
@@ -20932,6 +21052,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20932
21052
|
readonly api_password?: string;
|
|
20933
21053
|
readonly access_token?: string;
|
|
20934
21054
|
readonly shopify_plan_name?: io.flow.shopify.external.v0.enums.ShopifyPlanName;
|
|
21055
|
+
readonly catalog_publication_owner?: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
20935
21056
|
}
|
|
20936
21057
|
interface ShopifyMarketsShopStatisticsDeleted {
|
|
20937
21058
|
readonly discriminator: 'shopify_markets_shop_statistics_deleted';
|
|
@@ -21150,6 +21271,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21150
21271
|
readonly organization: string;
|
|
21151
21272
|
readonly assessment: io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
21152
21273
|
}
|
|
21274
|
+
interface ShopifyOrderTransaction {
|
|
21275
|
+
readonly id: string;
|
|
21276
|
+
readonly model: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction;
|
|
21277
|
+
}
|
|
21278
|
+
interface ShopifyOrderTransactionDeleted {
|
|
21279
|
+
readonly discriminator: 'shopify_order_transaction_deleted';
|
|
21280
|
+
readonly event_id: string;
|
|
21281
|
+
readonly timestamp: string;
|
|
21282
|
+
readonly organization: string;
|
|
21283
|
+
readonly id: string;
|
|
21284
|
+
}
|
|
21285
|
+
interface ShopifyOrderTransactionUpserted {
|
|
21286
|
+
readonly discriminator: 'shopify_order_transaction_upserted';
|
|
21287
|
+
readonly event_id: string;
|
|
21288
|
+
readonly timestamp: string;
|
|
21289
|
+
readonly organization: string;
|
|
21290
|
+
readonly transaction: io.flow.internal.v0.models.ShopifyOrderTransaction;
|
|
21291
|
+
}
|
|
21153
21292
|
interface ShopifyOrganizationSettings {
|
|
21154
21293
|
readonly id: string;
|
|
21155
21294
|
readonly process_label: boolean;
|
|
@@ -21685,6 +21824,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21685
21824
|
readonly import_taxes?: number;
|
|
21686
21825
|
readonly mor_fees?: number;
|
|
21687
21826
|
readonly mor_foreign_exchange_fees?: number;
|
|
21827
|
+
readonly sp_processing_fees?: number;
|
|
21688
21828
|
}
|
|
21689
21829
|
interface StripeConnectReportRecordTransferMetadata {
|
|
21690
21830
|
readonly discriminator: 'stripe_connect_report_record_transfer_metadata';
|
|
@@ -21699,6 +21839,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21699
21839
|
readonly import_taxes?: number;
|
|
21700
21840
|
readonly mor_fees?: number;
|
|
21701
21841
|
readonly mor_foreign_exchange_fees?: number;
|
|
21842
|
+
readonly sp_processing_fees?: number;
|
|
21702
21843
|
readonly merchant_account_currency?: string;
|
|
21703
21844
|
readonly amount_in_merchant_account_currency?: number;
|
|
21704
21845
|
readonly payout_exchange_rate?: number;
|
|
@@ -21977,6 +22118,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21977
22118
|
readonly description?: string;
|
|
21978
22119
|
readonly category_code?: string;
|
|
21979
22120
|
}
|
|
22121
|
+
interface TaxDutyReasonCodeMetadata {
|
|
22122
|
+
readonly discriminator: 'tax_duty_reason_code_metadata';
|
|
22123
|
+
readonly reason_code: io.flow.billing.v0.enums.TaxDutyTransactionReasonCode;
|
|
22124
|
+
}
|
|
21980
22125
|
interface TaxRemittanceTransaction {
|
|
21981
22126
|
readonly discriminator: 'tax_remittance_transaction';
|
|
21982
22127
|
readonly order: io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -22033,6 +22178,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22033
22178
|
readonly name: string;
|
|
22034
22179
|
readonly children: io.flow.internal.v0.unions.ClassificationTaxonomy[];
|
|
22035
22180
|
}
|
|
22181
|
+
interface TaxonomyCategoryHs6Ref {
|
|
22182
|
+
readonly id: string;
|
|
22183
|
+
readonly taxonomy_category: string;
|
|
22184
|
+
readonly hs6: string;
|
|
22185
|
+
readonly updated_by_user_id: string;
|
|
22186
|
+
}
|
|
22187
|
+
interface TaxonomyCategoryHs6RefDeleted {
|
|
22188
|
+
readonly discriminator: 'taxonomy_category_hs6_ref_deleted';
|
|
22189
|
+
readonly event_id: string;
|
|
22190
|
+
readonly timestamp: string;
|
|
22191
|
+
readonly id: string;
|
|
22192
|
+
}
|
|
22193
|
+
interface TaxonomyCategoryHs6RefUpserted {
|
|
22194
|
+
readonly discriminator: 'taxonomy_category_hs6_ref_upserted';
|
|
22195
|
+
readonly event_id: string;
|
|
22196
|
+
readonly timestamp: string;
|
|
22197
|
+
readonly taxonomy_category_hs6_ref: io.flow.internal.v0.models.TaxonomyCategoryHs6Ref;
|
|
22198
|
+
}
|
|
22036
22199
|
interface TaxonomyNode {
|
|
22037
22200
|
readonly id: string;
|
|
22038
22201
|
readonly children?: io.flow.internal.v0.models.TaxonomyNode[];
|
|
@@ -22300,9 +22463,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22300
22463
|
readonly flow_tracking_number: string;
|
|
22301
22464
|
readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
|
|
22302
22465
|
}
|
|
22303
|
-
interface TrackingResync {
|
|
22304
|
-
readonly placeholder?: boolean;
|
|
22305
|
-
}
|
|
22306
22466
|
interface TrackingSubscription {
|
|
22307
22467
|
readonly id: string;
|
|
22308
22468
|
readonly organization_id: string;
|
|
@@ -22594,6 +22754,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22594
22754
|
readonly additional_services_requested?: io.flow.label.v0.models.AdditionalServicesRequested[];
|
|
22595
22755
|
readonly provided_charges?: io.flow.internal.v0.models.ChargeInput[];
|
|
22596
22756
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
22757
|
+
readonly package_dimensions_source: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
22597
22758
|
}
|
|
22598
22759
|
interface ValidationCharacterLength {
|
|
22599
22760
|
readonly discriminator: 'validation_character_length';
|
|
@@ -22648,7 +22809,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22648
22809
|
type AuthorizedOrderCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
22649
22810
|
type CalculatorStamp = io.flow.internal.v0.models.MessageStamp | io.flow.internal.v0.models.CalculationStep;
|
|
22650
22811
|
type CarrierChargeForm = io.flow.internal.v0.models.CarrierChargeFormLabel | io.flow.internal.v0.models.CarrierChargeFormOther;
|
|
22651
|
-
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;
|
|
22812
|
+
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;
|
|
22652
22813
|
type ChannelRateMetadata = io.flow.internal.v0.models.ChannelRateMetadataIdentity | io.flow.internal.v0.models.ChannelRateMetadataRate;
|
|
22653
22814
|
type ClassificationAction = io.flow.internal.v0.models.SingleClassificationAction | io.flow.internal.v0.models.BulkClassificationAction;
|
|
22654
22815
|
type ClassificationActionForm = io.flow.internal.v0.models.ClassificationActionFormUndo;
|
|
@@ -22668,7 +22829,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22668
22829
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22669
22830
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22670
22831
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22671
|
-
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;
|
|
22832
|
+
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;
|
|
22672
22833
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22673
22834
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22674
22835
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22717,7 +22878,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22717
22878
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
22718
22879
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
22719
22880
|
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;
|
|
22720
|
-
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
22881
|
+
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata | io.flow.internal.v0.models.TaxDutyReasonCodeMetadata;
|
|
22721
22882
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
22722
22883
|
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;
|
|
22723
22884
|
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;
|
|
@@ -23104,6 +23265,7 @@ export declare type ClassificationProductSummary = io.flow.internal.v0.models.Cl
|
|
|
23104
23265
|
export declare type ClassificationProductSummaryPage = io.flow.internal.v0.models.ClassificationProductSummaryPage;
|
|
23105
23266
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
23106
23267
|
export declare type ClassificationResponse = io.flow.internal.v0.unions.ClassificationResponse;
|
|
23268
|
+
export declare type ClassificationScope = io.flow.internal.v0.enums.ClassificationScope;
|
|
23107
23269
|
export declare type ClassificationStatistics = io.flow.internal.v0.models.ClassificationStatistics;
|
|
23108
23270
|
export declare type ClassificationSummaryReportPayload = io.flow.internal.v0.models.ClassificationSummaryReportPayload;
|
|
23109
23271
|
export declare type ClassificationTaxonomy = io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
@@ -23296,6 +23458,7 @@ export declare type ErpVendorStatus = io.flow.internal.v0.models.ErpVendorStatus
|
|
|
23296
23458
|
export declare type ErpVendorStatusEntity = io.flow.internal.v0.models.ErpVendorStatusEntity;
|
|
23297
23459
|
export declare type ErpVendorStatusFlowFile = io.flow.internal.v0.models.ErpVendorStatusFlowFile;
|
|
23298
23460
|
export declare type ErpVendorStatusPriorityFile = io.flow.internal.v0.models.ErpVendorStatusPriorityFile;
|
|
23461
|
+
export declare type EvaluationResults = io.flow.internal.v0.models.EvaluationResults;
|
|
23299
23462
|
export declare type Event = io.flow.internal.v0.unions.Event;
|
|
23300
23463
|
export declare type EventType = io.flow.internal.v0.enums.EventType;
|
|
23301
23464
|
export declare type ExclusionRuleDeleted = io.flow.internal.v0.models.ExclusionRuleDeleted;
|
|
@@ -23349,6 +23512,7 @@ export declare type FeatureValue = io.flow.internal.v0.unions.FeatureValue;
|
|
|
23349
23512
|
export declare type FeatureValueForm = io.flow.internal.v0.models.FeatureValueForm;
|
|
23350
23513
|
export declare type FeatureValueResult = io.flow.internal.v0.models.FeatureValueResult;
|
|
23351
23514
|
export declare type Fedex = io.flow.internal.v0.models.Fedex;
|
|
23515
|
+
export declare type FedexApi = io.flow.internal.v0.models.FedexApi;
|
|
23352
23516
|
export declare type FedexCrossborder = io.flow.internal.v0.models.FedexCrossborder;
|
|
23353
23517
|
export declare type Fee = io.flow.internal.v0.models.Fee;
|
|
23354
23518
|
export declare type Fees = io.flow.internal.v0.models.Fees;
|
|
@@ -23488,6 +23652,9 @@ export declare type HarmonizationThresholdForm = io.flow.internal.v0.models.Harm
|
|
|
23488
23652
|
export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.models.HarmonizationUnclassifiedStatistics;
|
|
23489
23653
|
export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
23490
23654
|
export declare type HarmonizedItemsHs6Export = io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
23655
|
+
export declare type HoseinItem = io.flow.internal.v0.models.HoseinItem;
|
|
23656
|
+
export declare type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
|
|
23657
|
+
export declare type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
|
|
23491
23658
|
export declare type Href = io.flow.internal.v0.models.Href;
|
|
23492
23659
|
export declare type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
23493
23660
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
@@ -23768,6 +23935,7 @@ export declare type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecyc
|
|
|
23768
23935
|
export declare type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
23769
23936
|
export declare type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
23770
23937
|
export declare type OrderPaymentAuthorization = io.flow.internal.v0.models.OrderPaymentAuthorization;
|
|
23938
|
+
export declare type OrderPaymentSourceType = io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
23771
23939
|
export declare type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
23772
23940
|
export declare type OrderRatesPublishedV3 = io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
23773
23941
|
export declare type OrderReference = io.flow.internal.v0.models.OrderReference;
|
|
@@ -23939,6 +24107,7 @@ export declare type PaypalRefundUpserted = io.flow.internal.v0.models.PaypalRefu
|
|
|
23939
24107
|
export declare type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
23940
24108
|
export declare type PendingBankPaymentDetail = io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
23941
24109
|
export declare type PendingOrder = io.flow.internal.v0.models.PendingOrder;
|
|
24110
|
+
export declare type PendingRecordType = io.flow.internal.v0.enums.PendingRecordType;
|
|
23942
24111
|
export declare type PhraseClassified = io.flow.internal.v0.models.PhraseClassified;
|
|
23943
24112
|
export declare type PhrasePropagated = io.flow.internal.v0.models.PhrasePropagated;
|
|
23944
24113
|
export declare type PlatformFee = io.flow.internal.v0.unions.PlatformFee;
|
|
@@ -23995,6 +24164,7 @@ export declare type ProductRestrictionStateDeleted = io.flow.internal.v0.models.
|
|
|
23995
24164
|
export declare type ProductRestrictionStateInserted = io.flow.internal.v0.models.ProductRestrictionStateInserted;
|
|
23996
24165
|
export declare type ProductRestrictionStateUpdated = io.flow.internal.v0.models.ProductRestrictionStateUpdated;
|
|
23997
24166
|
export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductReviewHistory;
|
|
24167
|
+
export declare type ProductSellabilityInternal = io.flow.internal.v0.models.ProductSellabilityInternal;
|
|
23998
24168
|
export declare type ProductSellabilityResult = io.flow.internal.v0.models.ProductSellabilityResult;
|
|
23999
24169
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
24000
24170
|
export declare type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
@@ -24170,6 +24340,7 @@ export declare type RestrictionRuleEffectUpserted = io.flow.internal.v0.models.R
|
|
|
24170
24340
|
export declare type RestrictionRuleExceptionAction = io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
|
|
24171
24341
|
export declare type RestrictionRuleForm = io.flow.internal.v0.models.RestrictionRuleForm;
|
|
24172
24342
|
export declare type RestrictionRuleLaneExemption = io.flow.internal.v0.models.RestrictionRuleLaneExemption;
|
|
24343
|
+
export declare type RestrictionRuleOrganizationExemption = io.flow.internal.v0.models.RestrictionRuleOrganizationExemption;
|
|
24173
24344
|
export declare type RestrictionRuleOverride = io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
24174
24345
|
export declare type RestrictionRuleSummary = io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
24175
24346
|
export declare type RestrictionRuleUpserted = io.flow.internal.v0.models.RestrictionRuleUpserted;
|
|
@@ -24183,8 +24354,6 @@ export declare type ResyncByDestinations = io.flow.internal.v0.models.ResyncByDe
|
|
|
24183
24354
|
export declare type ResyncByHs6Destinations = io.flow.internal.v0.models.ResyncByHs6Destinations;
|
|
24184
24355
|
export declare type ResyncByHs6Origin = io.flow.internal.v0.models.ResyncByHs6Origin;
|
|
24185
24356
|
export declare type ResyncFallbackRates = io.flow.internal.v0.models.ResyncFallbackRates;
|
|
24186
|
-
export declare type Retracking = io.flow.internal.v0.models.Retracking;
|
|
24187
|
-
export declare type RetrackingForm = io.flow.internal.v0.models.RetrackingForm;
|
|
24188
24357
|
export declare type Return = io.flow.internal.v0.models.Return;
|
|
24189
24358
|
export declare type ReturnPolicyDeleted = io.flow.internal.v0.models.ReturnPolicyDeleted;
|
|
24190
24359
|
export declare type ReturnPolicyItemResultDeleted = io.flow.internal.v0.models.ReturnPolicyItemResultDeleted;
|
|
@@ -24329,6 +24498,9 @@ export declare type ShopifyOrderLineContent = io.flow.internal.v0.models.Shopify
|
|
|
24329
24498
|
export declare type ShopifyOrderRiskAssessment = io.flow.internal.v0.models.ShopifyOrderRiskAssessment;
|
|
24330
24499
|
export declare type ShopifyOrderRiskAssessmentDeleted = io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted;
|
|
24331
24500
|
export declare type ShopifyOrderRiskAssessmentUpserted = io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted;
|
|
24501
|
+
export declare type ShopifyOrderTransaction = io.flow.internal.v0.models.ShopifyOrderTransaction;
|
|
24502
|
+
export declare type ShopifyOrderTransactionDeleted = io.flow.internal.v0.models.ShopifyOrderTransactionDeleted;
|
|
24503
|
+
export declare type ShopifyOrderTransactionUpserted = io.flow.internal.v0.models.ShopifyOrderTransactionUpserted;
|
|
24332
24504
|
export declare type ShopifyOrganizationSettings = io.flow.internal.v0.models.ShopifyOrganizationSettings;
|
|
24333
24505
|
export declare type ShopifyOrganizationSettingsForm = io.flow.internal.v0.models.ShopifyOrganizationSettingsForm;
|
|
24334
24506
|
export declare type ShopifyPartnerWebhook = io.flow.internal.v0.models.ShopifyPartnerWebhook;
|
|
@@ -24481,6 +24653,7 @@ export declare type TaxCalculationErrorCode = io.flow.internal.v0.enums.TaxCalcu
|
|
|
24481
24653
|
export declare type TaxCalculationForm = io.flow.internal.v0.models.TaxCalculationForm;
|
|
24482
24654
|
export declare type TaxCalculationLineItem = io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
24483
24655
|
export declare type TaxCalculationLineItemForm = io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
24656
|
+
export declare type TaxDutyReasonCodeMetadata = io.flow.internal.v0.models.TaxDutyReasonCodeMetadata;
|
|
24484
24657
|
export declare type TaxParty = io.flow.internal.v0.enums.TaxParty;
|
|
24485
24658
|
export declare type TaxRemittanceTransaction = io.flow.internal.v0.models.TaxRemittanceTransaction;
|
|
24486
24659
|
export declare type TaxRemittanceTransactionDeleted = io.flow.internal.v0.models.TaxRemittanceTransactionDeleted;
|
|
@@ -24490,6 +24663,9 @@ export declare type TaxTransactionDeleted = io.flow.internal.v0.models.TaxTransa
|
|
|
24490
24663
|
export declare type TaxTransactionType = io.flow.internal.v0.enums.TaxTransactionType;
|
|
24491
24664
|
export declare type TaxTransactionUpserted = io.flow.internal.v0.models.TaxTransactionUpserted;
|
|
24492
24665
|
export declare type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
|
|
24666
|
+
export declare type TaxonomyCategoryHs6Ref = io.flow.internal.v0.models.TaxonomyCategoryHs6Ref;
|
|
24667
|
+
export declare type TaxonomyCategoryHs6RefDeleted = io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted;
|
|
24668
|
+
export declare type TaxonomyCategoryHs6RefUpserted = io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted;
|
|
24493
24669
|
export declare type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
24494
24670
|
export declare type TechOnboardingDescription = io.flow.internal.v0.models.TechOnboardingDescription;
|
|
24495
24671
|
export declare type Test = io.flow.internal.v0.models.Test;
|
|
@@ -24536,7 +24712,6 @@ export declare type TrackingProcessingErrorUpserted = io.flow.internal.v0.models
|
|
|
24536
24712
|
export declare type TrackingProcessingFailureClassification = io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
24537
24713
|
export declare type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
24538
24714
|
export declare type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
24539
|
-
export declare type TrackingResync = io.flow.internal.v0.models.TrackingResync;
|
|
24540
24715
|
export declare type TrackingSubscription = io.flow.internal.v0.models.TrackingSubscription;
|
|
24541
24716
|
export declare type TrackingSubscriptionDeleted = io.flow.internal.v0.models.TrackingSubscriptionDeleted;
|
|
24542
24717
|
export declare type TrackingSubscriptionUpserted = io.flow.internal.v0.models.TrackingSubscriptionUpserted;
|