@flowio/types 11.24.106 → 11.24.107
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 +217 -669
- package/dist/api.d.ts +29 -39
- package/package.json +2 -2
- package/src/api-internal.ts +301 -875
- package/src/api.ts +37 -50
package/dist/api-internal.d.ts
CHANGED
|
@@ -2249,6 +2249,8 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2249
2249
|
type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
|
|
2250
2250
|
type DisputeReason = 'bank_cannot_process' | 'check_returned' | 'credit_not_processed' | 'customer_initiated' | 'debit_not_authorized' | 'duplicate' | 'fraudulent' | 'general' | 'incorrect_account_details' | 'insufficient_funds' | 'product_not_received' | 'product_unacceptable' | 'subscription_canceled' | 'unrecognized';
|
|
2251
2251
|
type DisputeStatus = 'warning_needs_response' | 'warning_under_review' | 'warning_closed' | 'needs_response' | 'under_review' | 'won' | 'lost';
|
|
2252
|
+
type EarlyFraudWarningEventType = 'radar.early_fraud_warning';
|
|
2253
|
+
type EarlyFraudWarningType = 'card_never_received' | 'fraudulent_card_application' | 'made_with_counterfeit_card' | 'made_with_lost_card' | 'made_with_stolen_card' | 'unauthorized_use_of_card' | 'misc';
|
|
2252
2254
|
type ErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'country_code_invalid' | 'email_invalid' | 'postal_code_invalid' | 'invalid_characters' | 'url_invalid' | 'invalid_charge_amount' | 'incorrect_number' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'expired_card' | 'missing' | 'processing_error' | 'account_closed' | 'amount_too_small' | 'amount_too_large' | 'api_key_expired' | 'authentication_required' | 'capture_charge_authorization_expired' | 'capture_unauthorized_payment' | 'card_decline_rate_limit_exceeded' | 'charge_already_captured' | 'charge_already_refunded' | 'charge_disputed' | 'charge_exceeds_source_limit' | 'charge_expired_for_capture' | 'charge_invalid_parameter' | 'charge_not_refundable' | 'insufficient_funds' | 'intent_invalid_state' | 'livemode_mismatch' | 'parameter_invalid_empty' | 'parameter_invalid_integer' | 'parameter_invalid_string_blank' | 'parameter_invalid_string_empty' | 'parameter_missing' | 'parameter_unknown' | 'parameters_exclusive' | 'payment_intent_action_required' | 'payment_intent_authentication_failure' | 'payment_intent_incompatible_payment_method' | 'payment_intent_payment_attempt_expired' | 'payment_intent_payment_attempt_failed' | 'payment_intent_unexpected_state' | 'payment_intent_invalid_parameter' | 'payment_method_billing_details_address_missing' | 'payment_method_customer_decline' | 'payment_method_currency_mismatch' | 'payment_method_invalid_parameter' | 'payment_method_invalid_parameter_testmode' | 'payment_method_not_available' | 'payment_method_provider_decline' | 'payment_method_provider_timeout' | 'payment_method_unactivated' | 'payment_method_unexpected_state' | 'payment_method_unsupported_type' | 'platform_api_key_expired' | 'refund_disputed_payment' | 'testmode_charges_only' | 'tls_version_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state';
|
|
2253
2255
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
2254
2256
|
type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
|
|
@@ -3199,6 +3201,16 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3199
3201
|
readonly object: io.flow.stripe.v0.models.Dispute;
|
|
3200
3202
|
readonly previous_attributes?: any;
|
|
3201
3203
|
}
|
|
3204
|
+
interface StripeEarlyFraudWarningEvent {
|
|
3205
|
+
readonly id: string;
|
|
3206
|
+
readonly object: io.flow.stripe.v0.enums.EarlyFraudWarningEventType;
|
|
3207
|
+
readonly actionable: boolean;
|
|
3208
|
+
readonly charge: string;
|
|
3209
|
+
readonly created: number;
|
|
3210
|
+
readonly fraud_type: io.flow.stripe.v0.enums.EarlyFraudWarningType;
|
|
3211
|
+
readonly livemode: boolean;
|
|
3212
|
+
readonly payment_intent?: string;
|
|
3213
|
+
}
|
|
3202
3214
|
interface StripeError {
|
|
3203
3215
|
readonly type: io.flow.stripe.v0.enums.ErrorType;
|
|
3204
3216
|
readonly charge?: string;
|
|
@@ -3372,6 +3384,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3372
3384
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
3373
3385
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
3374
3386
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3387
|
+
type ShippingLabelErrorCode = 'generic_error' | 'cancelled_order' | 'carrier_outage' | 'catalog_issue' | 'invalid_destination' | 'invalid_origin' | 'invalid_shipping_parameters' | 'merchant_error' | 'order_not_found' | 'order_processing' | 'restricted_item' | 'unsupported_lane';
|
|
3375
3388
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
3376
3389
|
}
|
|
3377
3390
|
declare namespace io.flow.label.v0.models {
|
|
@@ -3500,6 +3513,10 @@ declare namespace io.flow.label.v0.models {
|
|
|
3500
3513
|
readonly html?: string;
|
|
3501
3514
|
readonly required: boolean;
|
|
3502
3515
|
}
|
|
3516
|
+
interface ShippingLabelError {
|
|
3517
|
+
readonly code: io.flow.label.v0.enums.ShippingLabelErrorCode;
|
|
3518
|
+
readonly messages: string[];
|
|
3519
|
+
}
|
|
3503
3520
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
3504
3521
|
readonly units: io.flow.trueup.v0.models.LabelUnits;
|
|
3505
3522
|
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
@@ -4435,6 +4452,9 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4435
4452
|
readonly origin: string;
|
|
4436
4453
|
readonly destination: string;
|
|
4437
4454
|
}
|
|
4455
|
+
interface ShopifyMarketsBestSellingProduct {
|
|
4456
|
+
readonly id: string;
|
|
4457
|
+
}
|
|
4438
4458
|
interface ShopifyMarketsDiscrepancy {
|
|
4439
4459
|
readonly organization_id: string;
|
|
4440
4460
|
readonly count: number;
|
|
@@ -6513,31 +6533,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6513
6533
|
readonly webhooks: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse[];
|
|
6514
6534
|
}
|
|
6515
6535
|
}
|
|
6516
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.enums {
|
|
6517
|
-
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
6518
|
-
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
6519
|
-
}
|
|
6520
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.models {
|
|
6521
|
-
interface Details {
|
|
6522
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
6523
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
6524
|
-
readonly upserted_at: string;
|
|
6525
|
-
readonly time_elapsed_since_upserted: number;
|
|
6526
|
-
}
|
|
6527
|
-
interface PricingIndicator {
|
|
6528
|
-
readonly discriminator: 'pricing_indicator';
|
|
6529
|
-
readonly event_id: string;
|
|
6530
|
-
readonly timestamp: string;
|
|
6531
|
-
readonly organization: string;
|
|
6532
|
-
readonly published_from: io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
|
|
6533
|
-
readonly status: io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
|
|
6534
|
-
readonly event_identifier: string;
|
|
6535
|
-
readonly details: io.flow.pricing.indicator.internal.event.v0.models.Details;
|
|
6536
|
-
}
|
|
6537
|
-
}
|
|
6538
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.unions {
|
|
6539
|
-
type PricingIndicatorEvent = io.flow.pricing.indicator.internal.event.v0.models.PricingIndicator;
|
|
6540
|
-
}
|
|
6541
6536
|
declare namespace io.flow.order.price.v0.enums {
|
|
6542
6537
|
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';
|
|
6543
6538
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
@@ -6568,7 +6563,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
6568
6563
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
6569
6564
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
6570
6565
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
6571
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_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';
|
|
6566
|
+
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';
|
|
6572
6567
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
6573
6568
|
}
|
|
6574
6569
|
declare namespace io.flow.channel.internal.v0.models {
|
|
@@ -6609,6 +6604,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
6609
6604
|
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
6610
6605
|
readonly order_created_at?: string;
|
|
6611
6606
|
readonly order_updated_at?: string;
|
|
6607
|
+
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
6612
6608
|
}
|
|
6613
6609
|
interface ChannelOrderAcceptanceDetails {
|
|
6614
6610
|
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
@@ -6632,6 +6628,10 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
6632
6628
|
interface FlowChannelOrganization {
|
|
6633
6629
|
readonly placeholder?: string;
|
|
6634
6630
|
}
|
|
6631
|
+
interface OrderEditSummary {
|
|
6632
|
+
readonly external_order_edit_reference: string;
|
|
6633
|
+
readonly edited_at: string;
|
|
6634
|
+
}
|
|
6635
6635
|
}
|
|
6636
6636
|
declare namespace io.flow.partner.v0.enums {
|
|
6637
6637
|
type LabelFormat = 'pdf' | 'zpl' | 'all';
|
|
@@ -7248,6 +7248,9 @@ declare namespace io.flow.ftp.v0.models {
|
|
|
7248
7248
|
readonly password?: string;
|
|
7249
7249
|
}
|
|
7250
7250
|
}
|
|
7251
|
+
declare namespace io.flow.shopify.markets.internal.event.v0.enums {
|
|
7252
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
7253
|
+
}
|
|
7251
7254
|
declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
7252
7255
|
interface ChannelOrderSummaryDeleted {
|
|
7253
7256
|
readonly discriminator: 'channel_order_summary_deleted';
|
|
@@ -7290,6 +7293,40 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7290
7293
|
readonly timestamp: string;
|
|
7291
7294
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
7292
7295
|
}
|
|
7296
|
+
interface ShopifyIncotermIncludes {
|
|
7297
|
+
readonly duties: boolean;
|
|
7298
|
+
readonly taxes: boolean;
|
|
7299
|
+
}
|
|
7300
|
+
interface ShopifyIncotermSummaryErrorData {
|
|
7301
|
+
readonly id: string;
|
|
7302
|
+
readonly shopify_order_id: string;
|
|
7303
|
+
readonly order_number: string;
|
|
7304
|
+
readonly configuration: io.flow.shopify.markets.internal.event.v0.enums.ShopifyIncotermConfiguration;
|
|
7305
|
+
readonly includes: io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermIncludes;
|
|
7306
|
+
readonly reason: string;
|
|
7307
|
+
readonly order_submitted_at: string;
|
|
7308
|
+
}
|
|
7309
|
+
interface ShopifyIncotermSummaryErrorPublished {
|
|
7310
|
+
readonly discriminator: 'shopify_incoterm_summary_error_published';
|
|
7311
|
+
readonly event_id: string;
|
|
7312
|
+
readonly timestamp: string;
|
|
7313
|
+
readonly organization: string;
|
|
7314
|
+
readonly data: io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorData;
|
|
7315
|
+
}
|
|
7316
|
+
interface ShopifyMarketsBestSellingProductDeleted {
|
|
7317
|
+
readonly discriminator: 'shopify_markets_best_selling_product_deleted';
|
|
7318
|
+
readonly event_id: string;
|
|
7319
|
+
readonly timestamp: string;
|
|
7320
|
+
readonly organization: string;
|
|
7321
|
+
readonly id: string;
|
|
7322
|
+
}
|
|
7323
|
+
interface ShopifyMarketsBestSellingProductUpserted {
|
|
7324
|
+
readonly discriminator: 'shopify_markets_best_selling_product_upserted';
|
|
7325
|
+
readonly event_id: string;
|
|
7326
|
+
readonly timestamp: string;
|
|
7327
|
+
readonly organization: string;
|
|
7328
|
+
readonly shopify_markets_best_selling_product: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
7329
|
+
}
|
|
7293
7330
|
interface ShopifyMarketsMetricsDeleted {
|
|
7294
7331
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
7295
7332
|
readonly event_id: string;
|
|
@@ -7313,6 +7350,17 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7313
7350
|
readonly organization: string;
|
|
7314
7351
|
readonly shopify_markets_order: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
7315
7352
|
}
|
|
7353
|
+
interface ShopifyMarketsOrderEditSummaryData {
|
|
7354
|
+
readonly channel_order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
7355
|
+
readonly edited_at: string;
|
|
7356
|
+
}
|
|
7357
|
+
interface ShopifyMarketsOrderEditSummaryPublished {
|
|
7358
|
+
readonly discriminator: 'shopify_markets_order_edit_summary_published';
|
|
7359
|
+
readonly event_id: string;
|
|
7360
|
+
readonly timestamp: string;
|
|
7361
|
+
readonly organization: string;
|
|
7362
|
+
readonly data: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
7363
|
+
}
|
|
7316
7364
|
interface ShopifyMarketsOrderUpserted {
|
|
7317
7365
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
7318
7366
|
readonly event_id: string;
|
|
@@ -7378,7 +7426,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7378
7426
|
}
|
|
7379
7427
|
}
|
|
7380
7428
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
7381
|
-
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;
|
|
7429
|
+
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.ShopifyMarketsOrderEditSummaryPublished | 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;
|
|
7382
7430
|
}
|
|
7383
7431
|
declare namespace io.flow.experience.v0.enums {
|
|
7384
7432
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -7390,6 +7438,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
7390
7438
|
type ExperienceCountryStatus = 'enabled' | 'disabled';
|
|
7391
7439
|
type ExperiencePaymentMethodTag = 'display';
|
|
7392
7440
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
7441
|
+
type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
7393
7442
|
type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
|
|
7394
7443
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
7395
7444
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
@@ -7825,6 +7874,15 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7825
7874
|
readonly max?: io.flow.common.v0.models.PriceForm;
|
|
7826
7875
|
readonly attributes?: Record<string, string>;
|
|
7827
7876
|
}
|
|
7877
|
+
interface IncotermIncludes {
|
|
7878
|
+
readonly duties: boolean;
|
|
7879
|
+
readonly taxes: boolean;
|
|
7880
|
+
}
|
|
7881
|
+
interface IncotermSummary {
|
|
7882
|
+
readonly configuration: io.flow.experience.v0.enums.IncotermConfiguration;
|
|
7883
|
+
readonly includes: io.flow.experience.v0.models.IncotermIncludes;
|
|
7884
|
+
readonly reason?: string;
|
|
7885
|
+
}
|
|
7828
7886
|
interface ItemMargin {
|
|
7829
7887
|
readonly id: string;
|
|
7830
7888
|
readonly key: string;
|
|
@@ -7918,6 +7976,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7918
7976
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
7919
7977
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
7920
7978
|
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
7979
|
+
readonly incoterm_summary?: io.flow.experience.v0.models.IncotermSummary;
|
|
7921
7980
|
}
|
|
7922
7981
|
interface OrderAddress {
|
|
7923
7982
|
readonly text?: string;
|
|
@@ -9357,6 +9416,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
9357
9416
|
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
9358
9417
|
readonly timestamp: string;
|
|
9359
9418
|
readonly description?: string;
|
|
9419
|
+
readonly aggregator_status_code?: string;
|
|
9360
9420
|
}
|
|
9361
9421
|
interface TrackingEventForm {
|
|
9362
9422
|
readonly tracking_label_id: string;
|
|
@@ -12116,6 +12176,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12116
12176
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12117
12177
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
12118
12178
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
12179
|
+
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
12119
12180
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
12120
12181
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12121
12182
|
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';
|
|
@@ -12124,7 +12185,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12124
12185
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
12125
12186
|
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' | 'tax_refund' | 'duty_refund';
|
|
12126
12187
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
12127
|
-
type CalculatorEngine = '
|
|
12188
|
+
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
12128
12189
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
12129
12190
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
12130
12191
|
type CarrierFileType = 'freight' | 'tax';
|
|
@@ -12135,7 +12196,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12135
12196
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
12136
12197
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
12137
12198
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
12138
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_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';
|
|
12199
|
+
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';
|
|
12139
12200
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
12140
12201
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
12141
12202
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
@@ -12161,7 +12222,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12161
12222
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
12162
12223
|
type ContentType = 'text' | 'html';
|
|
12163
12224
|
type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
|
|
12164
|
-
type CostType = 'payment_processing' | 'fx' | 'negative_balance' | 'solution' | 'hosting' | 'duty_guarantee' | 'transfer' | 'fraud';
|
|
12165
12225
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
12166
12226
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
12167
12227
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -12186,10 +12246,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12186
12246
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
12187
12247
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
12188
12248
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
12189
|
-
type EldarItemType = 'digital' | 'physical';
|
|
12190
12249
|
type EmptyAttribute = 'irrelevant';
|
|
12191
12250
|
type ErpFileType = 'vendor';
|
|
12192
|
-
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | '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' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | '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' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | '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' | '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' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_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_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'sanjay_item_upserted' | 'sanjay_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_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_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12251
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | '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' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | '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' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | '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' | '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_markets_order_edit_summary_published' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_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';
|
|
12193
12252
|
type ExperienceImportType = 'experience_with_settings';
|
|
12194
12253
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12195
12254
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12208,7 +12267,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12208
12267
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
12209
12268
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12210
12269
|
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';
|
|
12211
|
-
type HarinathItemType = 'digital' | 'physical';
|
|
12212
12270
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
12213
12271
|
type HttpMethod = 'get' | 'post';
|
|
12214
12272
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -12217,7 +12275,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12217
12275
|
type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
|
|
12218
12276
|
type ItemType = 'standard' | 'multi_product';
|
|
12219
12277
|
type KeywordType = 'positive' | 'negative';
|
|
12220
|
-
type KonstantinItemType = 'physical' | 'digital';
|
|
12221
12278
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
12222
12279
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
12223
12280
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
@@ -12240,10 +12297,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12240
12297
|
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
12241
12298
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
12242
12299
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
12243
|
-
type MatiasItemType = 'physical' | 'digital';
|
|
12244
|
-
type MerchantCohort = 'channel_merchant_pre_cutoff' | 'channel_merchant_post_cutoff' | 'global_e_merchant_pre_cutoff' | 'global_e_merchant_post_cutoff';
|
|
12245
|
-
type MichaelyanItemType = 'physical' | 'digital';
|
|
12246
|
-
type MiljenkoItemType = 'physical' | 'digital';
|
|
12247
12300
|
type MixedBagWeight = '0' | '1' | '2';
|
|
12248
12301
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
12249
12302
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
@@ -12271,19 +12324,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12271
12324
|
type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
|
|
12272
12325
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
12273
12326
|
type Owner = 'flow' | 'organization';
|
|
12274
|
-
type Party = 'merchant' | 'channel_partner' | 'global_e';
|
|
12275
12327
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
12276
12328
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
12277
12329
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
12278
12330
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12279
12331
|
type PriceSelector = 'minimum' | 'maximum';
|
|
12280
|
-
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
12281
|
-
type PrincipalType = 'total_order_value' | 'product_order_value' | 'label_value';
|
|
12282
12332
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
12283
12333
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
12284
12334
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
12285
12335
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
12286
|
-
type ProfitStreamKey = 'pre_profit_share' | 'channel_pre_cutoff' | 'channel_post_cutoff' | 'global_e_pre_cutoff' | 'global_e_post_cutoff' | 'duty_assurance';
|
|
12287
12336
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
12288
12337
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
12289
12338
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
@@ -12305,14 +12354,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12305
12354
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
12306
12355
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
12307
12356
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
12308
|
-
type RevenueType = 'mor' | 'fx' | 'duty_assurance';
|
|
12309
12357
|
type RiskCheck = 'three_d_secure';
|
|
12310
12358
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
12311
|
-
type SanjayItemType = 'digital' | 'physical';
|
|
12312
|
-
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
12313
12359
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
12314
12360
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
12315
12361
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
12362
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
12316
12363
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
12317
12364
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
12318
12365
|
type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations' | 'channel_organization_identifier' | 'bulk_product_ingestion' | 'bulk_duty_update';
|
|
@@ -12324,7 +12371,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12324
12371
|
type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
|
|
12325
12372
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
12326
12373
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
12327
|
-
type ShrutiDemoType = 'digital' | 'physical';
|
|
12328
12374
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
12329
12375
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
12330
12376
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -12333,15 +12379,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12333
12379
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
12334
12380
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
12335
12381
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
12336
|
-
type SvitlanaType = 'physical' | 'digital';
|
|
12337
|
-
type TamItemType = 'physical' | 'digital';
|
|
12338
12382
|
type TariffEligibilityType = 'rex';
|
|
12339
12383
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
12340
12384
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
12341
12385
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
12342
12386
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
12343
12387
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
12344
|
-
type ThiagoItemType = 'digital' | 'physical';
|
|
12345
12388
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
12346
12389
|
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
12347
12390
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
@@ -12492,8 +12535,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12492
12535
|
readonly enable_fee_reversals: boolean;
|
|
12493
12536
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
12494
12537
|
readonly enable_negative_debits: boolean;
|
|
12495
|
-
readonly setup_completed_at?: string;
|
|
12496
|
-
readonly cohort?: io.flow.internal.v0.enums.MerchantCohort;
|
|
12497
12538
|
}
|
|
12498
12539
|
interface AccountSettingsDeleted {
|
|
12499
12540
|
readonly discriminator: 'account_settings_deleted';
|
|
@@ -13000,11 +13041,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13000
13041
|
readonly queue: string;
|
|
13001
13042
|
readonly count: number;
|
|
13002
13043
|
}
|
|
13003
|
-
interface AlgoliaIndexAssignment {
|
|
13004
|
-
readonly id: string;
|
|
13005
|
-
readonly name: string;
|
|
13006
|
-
readonly application_id: string;
|
|
13007
|
-
}
|
|
13008
13044
|
interface AllItemsExport {
|
|
13009
13045
|
readonly discriminator: 'all_items_export';
|
|
13010
13046
|
readonly event_id: string;
|
|
@@ -13108,6 +13144,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13108
13144
|
readonly keywords?: string[];
|
|
13109
13145
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
13110
13146
|
}
|
|
13147
|
+
interface BankAccount {
|
|
13148
|
+
readonly status: io.flow.internal.v0.enums.BankAccountStatus;
|
|
13149
|
+
readonly hold_created_at?: string;
|
|
13150
|
+
readonly updated_at: string;
|
|
13151
|
+
readonly last4: string;
|
|
13152
|
+
}
|
|
13111
13153
|
interface BankAccountReference {
|
|
13112
13154
|
readonly id: string;
|
|
13113
13155
|
}
|
|
@@ -13998,6 +14040,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13998
14040
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
13999
14041
|
readonly order_created_at?: string;
|
|
14000
14042
|
readonly order_updated_at?: string;
|
|
14043
|
+
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
14001
14044
|
}
|
|
14002
14045
|
interface ChannelOrderAcceptanceDeleted {
|
|
14003
14046
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -14583,12 +14626,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14583
14626
|
readonly type: io.flow.internal.v0.enums.ColmItemType;
|
|
14584
14627
|
readonly added_on: string;
|
|
14585
14628
|
}
|
|
14586
|
-
interface ColmItemDeleted {
|
|
14587
|
-
readonly discriminator: 'colm_item_deleted';
|
|
14588
|
-
readonly event_id: string;
|
|
14589
|
-
readonly timestamp: string;
|
|
14590
|
-
readonly id: string;
|
|
14591
|
-
}
|
|
14592
14629
|
interface ColmItemForm {
|
|
14593
14630
|
readonly number: string;
|
|
14594
14631
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -14596,12 +14633,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14596
14633
|
readonly type: io.flow.internal.v0.enums.ColmItemType;
|
|
14597
14634
|
readonly added_on: string;
|
|
14598
14635
|
}
|
|
14599
|
-
interface ColmItemUpserted {
|
|
14600
|
-
readonly discriminator: 'colm_item_upserted';
|
|
14601
|
-
readonly event_id: string;
|
|
14602
|
-
readonly timestamp: string;
|
|
14603
|
-
readonly item: io.flow.internal.v0.models.ColmItem;
|
|
14604
|
-
}
|
|
14605
14636
|
interface CommercialInvoiceComparison {
|
|
14606
14637
|
readonly urls: string[];
|
|
14607
14638
|
}
|
|
@@ -14730,15 +14761,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14730
14761
|
readonly key: string;
|
|
14731
14762
|
readonly description?: string;
|
|
14732
14763
|
}
|
|
14733
|
-
interface Cost {
|
|
14734
|
-
readonly source: io.flow.internal.v0.models.CostRule;
|
|
14735
|
-
readonly amount: number;
|
|
14736
|
-
}
|
|
14737
|
-
interface CostRule {
|
|
14738
|
-
readonly type: io.flow.internal.v0.enums.CostType;
|
|
14739
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
14740
|
-
readonly bearer: io.flow.internal.v0.enums.Party;
|
|
14741
|
-
}
|
|
14742
14764
|
interface CountryPickerCountry {
|
|
14743
14765
|
readonly iso_3166_2: string;
|
|
14744
14766
|
readonly iso_3166_3: string;
|
|
@@ -14948,6 +14970,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14948
14970
|
readonly type_id: string;
|
|
14949
14971
|
readonly transaction_id: string;
|
|
14950
14972
|
}
|
|
14973
|
+
interface DebugBankingDetails {
|
|
14974
|
+
readonly merchant: io.flow.internal.v0.models.MerchantDetails;
|
|
14975
|
+
readonly account: io.flow.internal.v0.models.BankAccount;
|
|
14976
|
+
}
|
|
14951
14977
|
interface DebugDetails {
|
|
14952
14978
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
14953
14979
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
@@ -14984,6 +15010,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14984
15010
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
14985
15011
|
readonly transactions: io.flow.billing.v0.models.Transaction[];
|
|
14986
15012
|
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
15013
|
+
readonly banking: io.flow.internal.v0.models.DebugBankingDetails;
|
|
14987
15014
|
}
|
|
14988
15015
|
interface DebugOrderTransactionForm {
|
|
14989
15016
|
readonly order_id?: string;
|
|
@@ -15102,12 +15129,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15102
15129
|
readonly error: string;
|
|
15103
15130
|
readonly destination: io.flow.common.v0.models.Address;
|
|
15104
15131
|
}
|
|
15105
|
-
interface Details {
|
|
15106
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
15107
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
15108
|
-
readonly upserted_at: string;
|
|
15109
|
-
readonly time_elapsed_since_upserted: number;
|
|
15110
|
-
}
|
|
15111
15132
|
interface Dhl {
|
|
15112
15133
|
readonly discriminator: 'dhl';
|
|
15113
15134
|
readonly export_account_number: string;
|
|
@@ -15179,8 +15200,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15179
15200
|
readonly billable: io.flow.internal.v0.enums.DisputeBillable;
|
|
15180
15201
|
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
15181
15202
|
readonly details: io.flow.internal.v0.unions.DisputeDetails;
|
|
15203
|
+
readonly payment_method?: io.flow.reference.v0.models.PaymentMethod;
|
|
15182
15204
|
readonly issued_at: string;
|
|
15183
15205
|
readonly expires_at?: string;
|
|
15206
|
+
readonly defended_at?: string;
|
|
15184
15207
|
readonly created_at: string;
|
|
15185
15208
|
readonly updated_at?: string;
|
|
15186
15209
|
}
|
|
@@ -15250,6 +15273,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15250
15273
|
interface DisputeRecord {
|
|
15251
15274
|
readonly id: string;
|
|
15252
15275
|
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
15276
|
+
readonly authorization: io.flow.internal.v0.models.ReportingAuthorizationReference;
|
|
15253
15277
|
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
15254
15278
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
15255
15279
|
readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
|
|
@@ -15321,57 +15345,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15321
15345
|
readonly parser_version: string;
|
|
15322
15346
|
readonly created_at: string;
|
|
15323
15347
|
}
|
|
15324
|
-
interface DutyRateBulkRequest {
|
|
15325
|
-
readonly discriminator: 'duty_rate_bulk_request';
|
|
15326
|
-
readonly event_id: string;
|
|
15327
|
-
readonly timestamp: string;
|
|
15328
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
15329
|
-
readonly origin: string;
|
|
15330
|
-
readonly destination_tariff_code: Record<string, string>;
|
|
15331
|
-
}
|
|
15332
|
-
interface DutyRateBulkResponse {
|
|
15333
|
-
readonly discriminator: 'duty_rate_bulk_response';
|
|
15334
|
-
readonly event_id: string;
|
|
15335
|
-
readonly timestamp: string;
|
|
15336
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
15337
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate[];
|
|
15338
|
-
}
|
|
15339
|
-
interface DutyRateContext {
|
|
15340
|
-
readonly phrase_id?: string;
|
|
15341
|
-
readonly item_number?: string;
|
|
15342
|
-
readonly product_id?: string;
|
|
15343
|
-
}
|
|
15344
15348
|
interface DutyRateItemSummary {
|
|
15345
15349
|
readonly number: string;
|
|
15346
15350
|
readonly product_id?: string;
|
|
15347
15351
|
}
|
|
15348
|
-
interface DutyRateRequest {
|
|
15349
|
-
readonly discriminator: 'duty_rate_request';
|
|
15350
|
-
readonly event_id: string;
|
|
15351
|
-
readonly timestamp: string;
|
|
15352
|
-
readonly destination: string;
|
|
15353
|
-
readonly origin: string;
|
|
15354
|
-
readonly tariff_code: string;
|
|
15355
|
-
}
|
|
15356
|
-
interface DutyRateResponse {
|
|
15357
|
-
readonly discriminator: 'duty_rate_response';
|
|
15358
|
-
readonly event_id: string;
|
|
15359
|
-
readonly timestamp: string;
|
|
15360
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate;
|
|
15361
|
-
}
|
|
15362
15352
|
interface DutyRateSummary {
|
|
15363
15353
|
readonly tariff_code: string;
|
|
15364
15354
|
readonly origin: string;
|
|
15365
15355
|
readonly destination: string;
|
|
15366
15356
|
}
|
|
15367
|
-
interface DutyRateUpserted {
|
|
15368
|
-
readonly discriminator: 'duty_rate_upserted';
|
|
15369
|
-
readonly event_id: string;
|
|
15370
|
-
readonly timestamp: string;
|
|
15371
|
-
readonly source_event: io.flow.internal.v0.models.DutyRawUpserted;
|
|
15372
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate;
|
|
15373
|
-
readonly unparsable_rates: string[];
|
|
15374
|
-
}
|
|
15375
15357
|
interface DutyRatesDataSummary {
|
|
15376
15358
|
readonly id: string;
|
|
15377
15359
|
readonly item_summary: io.flow.internal.v0.models.DutyRateItemSummary;
|
|
@@ -15397,19 +15379,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15397
15379
|
readonly version: string;
|
|
15398
15380
|
readonly created_at: string;
|
|
15399
15381
|
}
|
|
15400
|
-
interface DutyRawBulkUpserted {
|
|
15401
|
-
readonly discriminator: 'duty_raw_bulk_upserted';
|
|
15402
|
-
readonly event_id: string;
|
|
15403
|
-
readonly timestamp: string;
|
|
15404
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
15405
|
-
readonly duty_raw: io.flow.internal.v0.models.DutyRaw[];
|
|
15406
|
-
}
|
|
15407
|
-
interface DutyRawUpserted {
|
|
15408
|
-
readonly discriminator: 'duty_raw_upserted';
|
|
15409
|
-
readonly event_id: string;
|
|
15410
|
-
readonly timestamp: string;
|
|
15411
|
-
readonly duty_raw: io.flow.internal.v0.models.DutyRaw;
|
|
15412
|
-
}
|
|
15413
15382
|
interface DutySimpleExpression {
|
|
15414
15383
|
readonly discriminator: 'duty_simple_expression';
|
|
15415
15384
|
readonly type: io.flow.internal.v0.enums.DutySimpleExpressionType;
|
|
@@ -15440,33 +15409,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15440
15409
|
readonly timestamp: string;
|
|
15441
15410
|
readonly duty_transaction: io.flow.internal.v0.models.DutyTransaction;
|
|
15442
15411
|
}
|
|
15443
|
-
interface EldarItem {
|
|
15444
|
-
readonly id: string;
|
|
15445
|
-
readonly number: string;
|
|
15446
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
15447
|
-
readonly description?: string;
|
|
15448
|
-
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
15449
|
-
readonly added_on: string;
|
|
15450
|
-
}
|
|
15451
|
-
interface EldarItemDeleted {
|
|
15452
|
-
readonly discriminator: 'eldar_item_deleted';
|
|
15453
|
-
readonly event_id: string;
|
|
15454
|
-
readonly timestamp: string;
|
|
15455
|
-
readonly id: string;
|
|
15456
|
-
}
|
|
15457
|
-
interface EldarItemForm {
|
|
15458
|
-
readonly number: string;
|
|
15459
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
15460
|
-
readonly description?: string;
|
|
15461
|
-
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
15462
|
-
readonly added_on: string;
|
|
15463
|
-
}
|
|
15464
|
-
interface EldarItemUpserted {
|
|
15465
|
-
readonly discriminator: 'eldar_item_upserted';
|
|
15466
|
-
readonly event_id: string;
|
|
15467
|
-
readonly timestamp: string;
|
|
15468
|
-
readonly item: io.flow.internal.v0.models.EldarItem;
|
|
15469
|
-
}
|
|
15470
15412
|
interface EmailForm {
|
|
15471
15413
|
readonly to: string[];
|
|
15472
15414
|
readonly cc?: string[];
|
|
@@ -16224,7 +16166,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16224
16166
|
readonly payment_authorization_id?: string;
|
|
16225
16167
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
16226
16168
|
readonly created_at?: string;
|
|
16227
|
-
readonly has_provider_link?: boolean;
|
|
16228
16169
|
}
|
|
16229
16170
|
interface FraudReviewAuthorization {
|
|
16230
16171
|
readonly id: string;
|
|
@@ -16242,7 +16183,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16242
16183
|
readonly payment_authorization_id?: string;
|
|
16243
16184
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
16244
16185
|
readonly created_at?: string;
|
|
16245
|
-
readonly has_provider_link?: boolean;
|
|
16246
16186
|
}
|
|
16247
16187
|
interface FraudReviewAuthorizationDecision {
|
|
16248
16188
|
readonly id: string;
|
|
@@ -16661,33 +16601,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16661
16601
|
readonly discriminator: 'google_tag_manager';
|
|
16662
16602
|
readonly tracker_id: string;
|
|
16663
16603
|
}
|
|
16664
|
-
interface HarinathItem {
|
|
16665
|
-
readonly id: string;
|
|
16666
|
-
readonly number: string;
|
|
16667
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
16668
|
-
readonly description?: string;
|
|
16669
|
-
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
16670
|
-
readonly added_on: string;
|
|
16671
|
-
}
|
|
16672
|
-
interface HarinathItemDeleted {
|
|
16673
|
-
readonly discriminator: 'harinath_item_deleted';
|
|
16674
|
-
readonly event_id: string;
|
|
16675
|
-
readonly timestamp: string;
|
|
16676
|
-
readonly id: string;
|
|
16677
|
-
}
|
|
16678
|
-
interface HarinathItemForm {
|
|
16679
|
-
readonly number: string;
|
|
16680
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
16681
|
-
readonly description?: string;
|
|
16682
|
-
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
16683
|
-
readonly added_on: string;
|
|
16684
|
-
}
|
|
16685
|
-
interface HarinathItemUpserted {
|
|
16686
|
-
readonly discriminator: 'harinath_item_upserted';
|
|
16687
|
-
readonly event_id: string;
|
|
16688
|
-
readonly timestamp: string;
|
|
16689
|
-
readonly item: io.flow.internal.v0.models.HarinathItem;
|
|
16690
|
-
}
|
|
16691
16604
|
interface HarmonizationClassificationStatisticsData {
|
|
16692
16605
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
16693
16606
|
}
|
|
@@ -16797,19 +16710,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16797
16710
|
interface Hs6Metadata {
|
|
16798
16711
|
readonly description: string;
|
|
16799
16712
|
}
|
|
16800
|
-
interface HybrisCatalogItemsImportRequest {
|
|
16801
|
-
readonly discriminator: 'hybris_catalog_items_import_request';
|
|
16802
|
-
readonly event_id: string;
|
|
16803
|
-
readonly timestamp: string;
|
|
16804
|
-
readonly organization: string;
|
|
16805
|
-
readonly request: io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
16806
|
-
}
|
|
16807
|
-
interface HybrisCatalogItemsImportRequestData {
|
|
16808
|
-
readonly id: string;
|
|
16809
|
-
readonly import_id: string;
|
|
16810
|
-
readonly source_url: string;
|
|
16811
|
-
readonly filename?: string;
|
|
16812
|
-
}
|
|
16813
16713
|
interface ImportCompleted {
|
|
16814
16714
|
readonly discriminator: 'import_completed';
|
|
16815
16715
|
readonly event_id: string;
|
|
@@ -16826,20 +16726,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16826
16726
|
readonly import_id: string;
|
|
16827
16727
|
readonly error: string;
|
|
16828
16728
|
}
|
|
16829
|
-
interface IndexAssignmentDeleted {
|
|
16830
|
-
readonly discriminator: 'index_assignment_deleted';
|
|
16831
|
-
readonly event_id: string;
|
|
16832
|
-
readonly timestamp: string;
|
|
16833
|
-
readonly organization: string;
|
|
16834
|
-
readonly id: string;
|
|
16835
|
-
}
|
|
16836
|
-
interface IndexAssignmentUpserted {
|
|
16837
|
-
readonly discriminator: 'index_assignment_upserted';
|
|
16838
|
-
readonly event_id: string;
|
|
16839
|
-
readonly timestamp: string;
|
|
16840
|
-
readonly organization: string;
|
|
16841
|
-
readonly assignment: io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
16842
|
-
}
|
|
16843
16729
|
interface InstallForm {
|
|
16844
16730
|
readonly token: string;
|
|
16845
16731
|
}
|
|
@@ -17116,9 +17002,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17116
17002
|
readonly filter: string;
|
|
17117
17003
|
readonly values: string[];
|
|
17118
17004
|
}
|
|
17119
|
-
interface ItemForm {
|
|
17120
|
-
readonly amount?: number;
|
|
17121
|
-
}
|
|
17122
17005
|
interface ItemFormImportRequest {
|
|
17123
17006
|
readonly discriminator: 'item_form_import_request';
|
|
17124
17007
|
readonly event_id: string;
|
|
@@ -17277,33 +17160,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17277
17160
|
readonly standard_asset_urls?: string;
|
|
17278
17161
|
readonly descriptive_asset_urls?: string;
|
|
17279
17162
|
}
|
|
17280
|
-
interface KonstantinItem {
|
|
17281
|
-
readonly id: string;
|
|
17282
|
-
readonly number: string;
|
|
17283
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
17284
|
-
readonly description?: string;
|
|
17285
|
-
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
17286
|
-
readonly added_on: string;
|
|
17287
|
-
}
|
|
17288
|
-
interface KonstantinItemDeleted {
|
|
17289
|
-
readonly discriminator: 'konstantin_item_deleted';
|
|
17290
|
-
readonly event_id: string;
|
|
17291
|
-
readonly timestamp: string;
|
|
17292
|
-
readonly id: string;
|
|
17293
|
-
}
|
|
17294
|
-
interface KonstantinItemForm {
|
|
17295
|
-
readonly number: string;
|
|
17296
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
17297
|
-
readonly description?: string;
|
|
17298
|
-
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
17299
|
-
readonly added_on: string;
|
|
17300
|
-
}
|
|
17301
|
-
interface KonstantinItemUpserted {
|
|
17302
|
-
readonly discriminator: 'konstantin_item_upserted';
|
|
17303
|
-
readonly event_id: string;
|
|
17304
|
-
readonly timestamp: string;
|
|
17305
|
-
readonly item: io.flow.internal.v0.models.KonstantinItem;
|
|
17306
|
-
}
|
|
17307
17163
|
interface LabProjectSettings {
|
|
17308
17164
|
readonly id: string;
|
|
17309
17165
|
readonly flow_lab_project_key: string;
|
|
@@ -18188,33 +18044,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18188
18044
|
interface MarketsOrderSummary {
|
|
18189
18045
|
readonly id: string;
|
|
18190
18046
|
}
|
|
18191
|
-
interface MatiasItem {
|
|
18192
|
-
readonly id: string;
|
|
18193
|
-
readonly number: string;
|
|
18194
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18195
|
-
readonly description?: string;
|
|
18196
|
-
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
18197
|
-
readonly added_on: string;
|
|
18198
|
-
}
|
|
18199
|
-
interface MatiasItemDeleted {
|
|
18200
|
-
readonly discriminator: 'matias_item_deleted';
|
|
18201
|
-
readonly event_id: string;
|
|
18202
|
-
readonly timestamp: string;
|
|
18203
|
-
readonly id: string;
|
|
18204
|
-
}
|
|
18205
|
-
interface MatiasItemForm {
|
|
18206
|
-
readonly number: string;
|
|
18207
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18208
|
-
readonly description?: string;
|
|
18209
|
-
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
18210
|
-
readonly added_on: string;
|
|
18211
|
-
}
|
|
18212
|
-
interface MatiasItemUpserted {
|
|
18213
|
-
readonly discriminator: 'matias_item_upserted';
|
|
18214
|
-
readonly event_id: string;
|
|
18215
|
-
readonly timestamp: string;
|
|
18216
|
-
readonly item: io.flow.internal.v0.models.MatiasItem;
|
|
18217
|
-
}
|
|
18218
18047
|
interface Merchant {
|
|
18219
18048
|
readonly id: string;
|
|
18220
18049
|
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
@@ -18233,6 +18062,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18233
18062
|
readonly timestamp: string;
|
|
18234
18063
|
readonly id: string;
|
|
18235
18064
|
}
|
|
18065
|
+
interface MerchantDetails {
|
|
18066
|
+
readonly name: string;
|
|
18067
|
+
}
|
|
18236
18068
|
interface MerchantFees {
|
|
18237
18069
|
readonly duty_guarantee: number;
|
|
18238
18070
|
readonly mor: number;
|
|
@@ -18344,64 +18176,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18344
18176
|
readonly id: string;
|
|
18345
18177
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
18346
18178
|
}
|
|
18347
|
-
interface MichaelyanItem {
|
|
18348
|
-
readonly id: string;
|
|
18349
|
-
readonly number: string;
|
|
18350
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18351
|
-
readonly description?: string;
|
|
18352
|
-
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
18353
|
-
readonly added_on: string;
|
|
18354
|
-
}
|
|
18355
|
-
interface MichaelyanItemDeleted {
|
|
18356
|
-
readonly discriminator: 'michaelyan_item_deleted';
|
|
18357
|
-
readonly event_id: string;
|
|
18358
|
-
readonly timestamp: string;
|
|
18359
|
-
readonly id: string;
|
|
18360
|
-
}
|
|
18361
|
-
interface MichaelyanItemForm {
|
|
18362
|
-
readonly number: string;
|
|
18363
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18364
|
-
readonly description?: string;
|
|
18365
|
-
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
18366
|
-
readonly added_on: string;
|
|
18367
|
-
}
|
|
18368
|
-
interface MichaelyanItemUpserted {
|
|
18369
|
-
readonly discriminator: 'michaelyan_item_upserted';
|
|
18370
|
-
readonly event_id: string;
|
|
18371
|
-
readonly timestamp: string;
|
|
18372
|
-
readonly item: io.flow.internal.v0.models.MichaelyanItem;
|
|
18373
|
-
}
|
|
18374
|
-
interface MiljenkoItem {
|
|
18375
|
-
readonly id: string;
|
|
18376
|
-
readonly number: string;
|
|
18377
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18378
|
-
readonly description?: string;
|
|
18379
|
-
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
18380
|
-
readonly added_on: string;
|
|
18381
|
-
}
|
|
18382
|
-
interface MiljenkoItemDeleted {
|
|
18383
|
-
readonly discriminator: 'miljenko_item_deleted';
|
|
18384
|
-
readonly event_id: string;
|
|
18385
|
-
readonly timestamp: string;
|
|
18386
|
-
readonly id: string;
|
|
18387
|
-
}
|
|
18388
|
-
interface MiljenkoItemForm {
|
|
18389
|
-
readonly number: string;
|
|
18390
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18391
|
-
readonly description?: string;
|
|
18392
|
-
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
18393
|
-
readonly added_on: string;
|
|
18394
|
-
}
|
|
18395
|
-
interface MiljenkoItemUpserted {
|
|
18396
|
-
readonly discriminator: 'miljenko_item_upserted';
|
|
18397
|
-
readonly event_id: string;
|
|
18398
|
-
readonly timestamp: string;
|
|
18399
|
-
readonly item: io.flow.internal.v0.models.MiljenkoItem;
|
|
18400
|
-
}
|
|
18401
|
-
interface MoneyPercentage {
|
|
18402
|
-
readonly discriminator: 'percentage';
|
|
18403
|
-
readonly percent: number;
|
|
18404
|
-
}
|
|
18405
18179
|
interface NegativeDebitMetrics {
|
|
18406
18180
|
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
18407
18181
|
readonly first_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
@@ -18650,6 +18424,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18650
18424
|
readonly shopify_order_id?: string;
|
|
18651
18425
|
readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
|
|
18652
18426
|
}
|
|
18427
|
+
interface OrderEditSummary {
|
|
18428
|
+
readonly external_order_edit_reference: string;
|
|
18429
|
+
readonly edited_at: string;
|
|
18430
|
+
}
|
|
18653
18431
|
interface OrderFulfillmentDeleted {
|
|
18654
18432
|
readonly discriminator: 'order_fulfillment_deleted';
|
|
18655
18433
|
readonly event_id: string;
|
|
@@ -19822,47 +19600,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19822
19600
|
readonly organization: string;
|
|
19823
19601
|
readonly quote_request: io.flow.internal.v0.models.QuoteRequest;
|
|
19824
19602
|
}
|
|
19825
|
-
interface PricingIndicator {
|
|
19826
|
-
readonly discriminator: 'pricing_indicator';
|
|
19827
|
-
readonly event_id: string;
|
|
19828
|
-
readonly timestamp: string;
|
|
19829
|
-
readonly organization: string;
|
|
19830
|
-
readonly published_from: io.flow.internal.v0.enums.ServiceName;
|
|
19831
|
-
readonly status: io.flow.internal.v0.enums.PricingIndicatorStatus;
|
|
19832
|
-
readonly event_identifier: string;
|
|
19833
|
-
readonly details: io.flow.internal.v0.models.Details;
|
|
19834
|
-
}
|
|
19835
|
-
interface PricingIndicatorDynamo {
|
|
19836
|
-
readonly organization_id: string;
|
|
19837
|
-
readonly item_number: string;
|
|
19838
|
-
readonly experience_key: string;
|
|
19839
|
-
readonly upserted_at: string;
|
|
19840
|
-
readonly time_elapsed_since_upserted: number;
|
|
19841
|
-
readonly event_identifier: string;
|
|
19842
|
-
readonly status: io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
|
|
19843
|
-
readonly published_at: string;
|
|
19844
|
-
readonly published_from: io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
|
|
19845
|
-
readonly expiration_time_in_epoch: number;
|
|
19846
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
19847
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
19848
|
-
}
|
|
19849
|
-
interface Principal {
|
|
19850
|
-
readonly type: io.flow.internal.v0.enums.PrincipalType;
|
|
19851
|
-
readonly amount: number;
|
|
19852
|
-
}
|
|
19853
19603
|
interface PrioritizedCenterReference {
|
|
19854
19604
|
readonly center_key: string;
|
|
19855
19605
|
readonly position: number;
|
|
19856
19606
|
}
|
|
19857
|
-
interface ProcessedPaymentSummary {
|
|
19858
|
-
readonly type: io.flow.reference.v0.enums.PaymentMethodCapability;
|
|
19859
|
-
readonly amount: number;
|
|
19860
|
-
readonly currency: io.flow.reference.v0.models.Currency;
|
|
19861
|
-
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
19862
|
-
readonly card_issuer_country?: io.flow.reference.v0.models.Country;
|
|
19863
|
-
readonly shipping_address_country?: io.flow.reference.v0.models.Country;
|
|
19864
|
-
readonly billing_address_country?: io.flow.reference.v0.models.Country;
|
|
19865
|
-
}
|
|
19866
19607
|
interface ProcessingTransaction {
|
|
19867
19608
|
readonly discriminator: 'processing_transaction';
|
|
19868
19609
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -20044,42 +19785,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20044
19785
|
readonly destination_amount: number;
|
|
20045
19786
|
readonly quantity: number;
|
|
20046
19787
|
}
|
|
20047
|
-
interface Profit {
|
|
20048
|
-
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
20049
|
-
readonly principal: io.flow.internal.v0.models.Principal;
|
|
20050
|
-
readonly revenue: io.flow.internal.v0.models.Revenue[];
|
|
20051
|
-
readonly costs: io.flow.internal.v0.models.Cost[];
|
|
20052
|
-
readonly amount: number;
|
|
20053
|
-
readonly splits: io.flow.internal.v0.models.ProfitSplit[];
|
|
20054
|
-
}
|
|
20055
|
-
interface ProfitShare {
|
|
20056
|
-
readonly order: io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
20057
|
-
readonly profits: io.flow.internal.v0.models.Profit[];
|
|
20058
|
-
}
|
|
20059
|
-
interface ProfitShareOrderReference {
|
|
20060
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
20061
|
-
readonly number: string;
|
|
20062
|
-
}
|
|
20063
|
-
interface ProfitSharePlan {
|
|
20064
|
-
readonly order: io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
20065
|
-
readonly streams: io.flow.internal.v0.models.ProfitStream[];
|
|
20066
|
-
}
|
|
20067
|
-
interface ProfitSplit {
|
|
20068
|
-
readonly rule: io.flow.internal.v0.models.ProfitSplitRule;
|
|
20069
|
-
readonly amount: number;
|
|
20070
|
-
}
|
|
20071
|
-
interface ProfitSplitRule {
|
|
20072
|
-
readonly payee: io.flow.internal.v0.enums.Party;
|
|
20073
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
20074
|
-
}
|
|
20075
|
-
interface ProfitStream {
|
|
20076
|
-
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
20077
|
-
readonly description: string;
|
|
20078
|
-
readonly principal: io.flow.internal.v0.enums.PrincipalType;
|
|
20079
|
-
readonly revenue: io.flow.internal.v0.models.RevenueRule[];
|
|
20080
|
-
readonly costs: io.flow.internal.v0.models.CostRule[];
|
|
20081
|
-
readonly splits: io.flow.internal.v0.models.ProfitSplitRule[];
|
|
20082
|
-
}
|
|
20083
19788
|
interface ProofOfPostingExternallyFulfilled {
|
|
20084
19789
|
readonly discriminator: 'external';
|
|
20085
19790
|
readonly external_fulfillment_proof_id: string;
|
|
@@ -21027,6 +20732,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21027
20732
|
readonly num_pr_outflow_side_effect_decisions: number;
|
|
21028
20733
|
readonly num_pending_decisions_transacting: number;
|
|
21029
20734
|
}
|
|
20735
|
+
interface RestrictionsDailyopsDeleted {
|
|
20736
|
+
readonly discriminator: 'restrictions_dailyops_deleted';
|
|
20737
|
+
readonly event_id: string;
|
|
20738
|
+
readonly timestamp: string;
|
|
20739
|
+
readonly organization: string;
|
|
20740
|
+
readonly id: string;
|
|
20741
|
+
}
|
|
20742
|
+
interface RestrictionsDailyopsUpserted {
|
|
20743
|
+
readonly discriminator: 'restrictions_dailyops_upserted';
|
|
20744
|
+
readonly event_id: string;
|
|
20745
|
+
readonly timestamp: string;
|
|
20746
|
+
readonly restrictions_dailyops: io.flow.internal.v0.models.RestrictionsDailyops;
|
|
20747
|
+
}
|
|
21030
20748
|
interface ResyncByDestinations {
|
|
21031
20749
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
21032
20750
|
}
|
|
@@ -21100,10 +20818,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21100
20818
|
readonly discriminator: 'by_refund';
|
|
21101
20819
|
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
21102
20820
|
}
|
|
21103
|
-
interface Revenue {
|
|
21104
|
-
readonly source: io.flow.internal.v0.models.RevenueRule;
|
|
21105
|
-
readonly amount: number;
|
|
21106
|
-
}
|
|
21107
20821
|
interface RevenueRecord {
|
|
21108
20822
|
readonly id: string;
|
|
21109
20823
|
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
@@ -21134,10 +20848,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21134
20848
|
readonly organization: string;
|
|
21135
20849
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
21136
20850
|
}
|
|
21137
|
-
interface RevenueRule {
|
|
21138
|
-
readonly type: io.flow.internal.v0.enums.RevenueType;
|
|
21139
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
21140
|
-
}
|
|
21141
20851
|
interface RoutingAccount {
|
|
21142
20852
|
readonly discriminator: 'routing_account';
|
|
21143
20853
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -21159,33 +20869,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21159
20869
|
interface SandboxSetupForm {
|
|
21160
20870
|
readonly requested_by: string;
|
|
21161
20871
|
}
|
|
21162
|
-
interface SanjayItem {
|
|
21163
|
-
readonly id: string;
|
|
21164
|
-
readonly number: string;
|
|
21165
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21166
|
-
readonly description?: string;
|
|
21167
|
-
readonly type: io.flow.internal.v0.enums.SanjayItemType;
|
|
21168
|
-
readonly added_on: string;
|
|
21169
|
-
}
|
|
21170
|
-
interface SanjayItemDeleted {
|
|
21171
|
-
readonly discriminator: 'sanjay_item_deleted';
|
|
21172
|
-
readonly event_id: string;
|
|
21173
|
-
readonly timestamp: string;
|
|
21174
|
-
readonly id: string;
|
|
21175
|
-
}
|
|
21176
|
-
interface SanjayItemForm {
|
|
21177
|
-
readonly number: string;
|
|
21178
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21179
|
-
readonly description?: string;
|
|
21180
|
-
readonly type: io.flow.internal.v0.enums.SanjayItemType;
|
|
21181
|
-
readonly added_on: string;
|
|
21182
|
-
}
|
|
21183
|
-
interface SanjayItemUpserted {
|
|
21184
|
-
readonly discriminator: 'sanjay_item_upserted';
|
|
21185
|
-
readonly event_id: string;
|
|
21186
|
-
readonly timestamp: string;
|
|
21187
|
-
readonly item: io.flow.internal.v0.models.SanjayItem;
|
|
21188
|
-
}
|
|
21189
20872
|
interface ScheduledPayment {
|
|
21190
20873
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
21191
20874
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -21411,6 +21094,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21411
21094
|
interface ShopifyGrantsCheck {
|
|
21412
21095
|
readonly placeholder: string;
|
|
21413
21096
|
}
|
|
21097
|
+
interface ShopifyIncotermIncludes {
|
|
21098
|
+
readonly duties: boolean;
|
|
21099
|
+
readonly taxes: boolean;
|
|
21100
|
+
}
|
|
21101
|
+
interface ShopifyIncotermSummaryErrorData {
|
|
21102
|
+
readonly id: string;
|
|
21103
|
+
readonly shopify_order_id: string;
|
|
21104
|
+
readonly order_number: string;
|
|
21105
|
+
readonly configuration: io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
|
|
21106
|
+
readonly includes: io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
21107
|
+
readonly reason: string;
|
|
21108
|
+
readonly order_submitted_at: string;
|
|
21109
|
+
}
|
|
21110
|
+
interface ShopifyIncotermSummaryErrorPublished {
|
|
21111
|
+
readonly discriminator: 'shopify_incoterm_summary_error_published';
|
|
21112
|
+
readonly event_id: string;
|
|
21113
|
+
readonly timestamp: string;
|
|
21114
|
+
readonly organization: string;
|
|
21115
|
+
readonly data: io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
21116
|
+
}
|
|
21117
|
+
interface ShopifyMarketsBestSellingProduct {
|
|
21118
|
+
readonly id: string;
|
|
21119
|
+
}
|
|
21120
|
+
interface ShopifyMarketsBestSellingProductDeleted {
|
|
21121
|
+
readonly discriminator: 'shopify_markets_best_selling_product_deleted';
|
|
21122
|
+
readonly event_id: string;
|
|
21123
|
+
readonly timestamp: string;
|
|
21124
|
+
readonly organization: string;
|
|
21125
|
+
readonly id: string;
|
|
21126
|
+
}
|
|
21127
|
+
interface ShopifyMarketsBestSellingProductUpserted {
|
|
21128
|
+
readonly discriminator: 'shopify_markets_best_selling_product_upserted';
|
|
21129
|
+
readonly event_id: string;
|
|
21130
|
+
readonly timestamp: string;
|
|
21131
|
+
readonly organization: string;
|
|
21132
|
+
readonly shopify_markets_best_selling_product: io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
21133
|
+
}
|
|
21414
21134
|
interface ShopifyMarketsDiscrepancy {
|
|
21415
21135
|
readonly organization_id: string;
|
|
21416
21136
|
readonly count: number;
|
|
@@ -21451,6 +21171,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21451
21171
|
readonly organization: string;
|
|
21452
21172
|
readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
21453
21173
|
}
|
|
21174
|
+
interface ShopifyMarketsOrderEditSummaryData {
|
|
21175
|
+
readonly channel_order_acceptance: io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
21176
|
+
readonly edited_at: string;
|
|
21177
|
+
}
|
|
21178
|
+
interface ShopifyMarketsOrderEditSummaryPublished {
|
|
21179
|
+
readonly discriminator: 'shopify_markets_order_edit_summary_published';
|
|
21180
|
+
readonly event_id: string;
|
|
21181
|
+
readonly timestamp: string;
|
|
21182
|
+
readonly organization: string;
|
|
21183
|
+
readonly data: io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
21184
|
+
}
|
|
21454
21185
|
interface ShopifyMarketsOrderUpserted {
|
|
21455
21186
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
21456
21187
|
readonly event_id: string;
|
|
@@ -21895,33 +21626,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21895
21626
|
readonly order_discount: number;
|
|
21896
21627
|
readonly total: number;
|
|
21897
21628
|
}
|
|
21898
|
-
interface ShrutiDemoItem {
|
|
21899
|
-
readonly id: string;
|
|
21900
|
-
readonly number: string;
|
|
21901
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21902
|
-
readonly description?: string;
|
|
21903
|
-
readonly type: io.flow.internal.v0.enums.ShrutiDemoType;
|
|
21904
|
-
readonly added_on: string;
|
|
21905
|
-
}
|
|
21906
|
-
interface ShrutiDemoItemDeleted {
|
|
21907
|
-
readonly discriminator: 'shruti_demo_item_deleted';
|
|
21908
|
-
readonly event_id: string;
|
|
21909
|
-
readonly timestamp: string;
|
|
21910
|
-
readonly id: string;
|
|
21911
|
-
}
|
|
21912
|
-
interface ShrutiDemoItemForm {
|
|
21913
|
-
readonly number: string;
|
|
21914
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21915
|
-
readonly description?: string;
|
|
21916
|
-
readonly type: io.flow.internal.v0.enums.ShrutiDemoType;
|
|
21917
|
-
readonly added_on: string;
|
|
21918
|
-
}
|
|
21919
|
-
interface ShrutiDemoItemUpserted {
|
|
21920
|
-
readonly discriminator: 'shruti_demo_item_upserted';
|
|
21921
|
-
readonly event_id: string;
|
|
21922
|
-
readonly timestamp: string;
|
|
21923
|
-
readonly item: io.flow.internal.v0.models.ShrutiDemoItem;
|
|
21924
|
-
}
|
|
21925
21629
|
interface SimpleAccountReference {
|
|
21926
21630
|
readonly id: string;
|
|
21927
21631
|
}
|
|
@@ -22328,61 +22032,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22328
22032
|
readonly discriminator: 'supported_labels';
|
|
22329
22033
|
readonly values: io.flow.internal.v0.models.LabelAliases[];
|
|
22330
22034
|
}
|
|
22331
|
-
interface SvitlanaItem {
|
|
22332
|
-
readonly id: string;
|
|
22333
|
-
readonly number: string;
|
|
22334
|
-
readonly amount: number;
|
|
22335
|
-
readonly description?: string;
|
|
22336
|
-
readonly type: io.flow.internal.v0.enums.SvitlanaType;
|
|
22337
|
-
readonly added_on: string;
|
|
22338
|
-
}
|
|
22339
|
-
interface SvitlanaItemDeleted {
|
|
22340
|
-
readonly discriminator: 'svitlana_item_deleted';
|
|
22341
|
-
readonly event_id: string;
|
|
22342
|
-
readonly timestamp: string;
|
|
22343
|
-
readonly id: string;
|
|
22344
|
-
}
|
|
22345
|
-
interface SvitlanaItemForm {
|
|
22346
|
-
readonly number: string;
|
|
22347
|
-
readonly amount: number;
|
|
22348
|
-
readonly description?: string;
|
|
22349
|
-
readonly type: io.flow.internal.v0.enums.SvitlanaType;
|
|
22350
|
-
}
|
|
22351
|
-
interface SvitlanaItemUpserted {
|
|
22352
|
-
readonly discriminator: 'svitlana_item_upserted';
|
|
22353
|
-
readonly event_id: string;
|
|
22354
|
-
readonly timestamp: string;
|
|
22355
|
-
readonly item: io.flow.internal.v0.models.SvitlanaItem;
|
|
22356
|
-
}
|
|
22357
|
-
interface SvitlanaTest {
|
|
22358
|
-
readonly name: string;
|
|
22359
|
-
}
|
|
22360
|
-
interface TamItem {
|
|
22361
|
-
readonly id: string;
|
|
22362
|
-
readonly number: string;
|
|
22363
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22364
|
-
readonly description?: string;
|
|
22365
|
-
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
22366
|
-
readonly added_on: string;
|
|
22367
|
-
}
|
|
22368
|
-
interface TamItemDeleted {
|
|
22369
|
-
readonly discriminator: 'tam_item_deleted';
|
|
22370
|
-
readonly event_id: string;
|
|
22371
|
-
readonly timestamp: string;
|
|
22372
|
-
readonly id: string;
|
|
22373
|
-
}
|
|
22374
|
-
interface TamItemForm {
|
|
22375
|
-
readonly number: string;
|
|
22376
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22377
|
-
readonly description?: string;
|
|
22378
|
-
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
22379
|
-
}
|
|
22380
|
-
interface TamItemUpserted {
|
|
22381
|
-
readonly discriminator: 'tam_item_upserted';
|
|
22382
|
-
readonly event_id: string;
|
|
22383
|
-
readonly timestamp: string;
|
|
22384
|
-
readonly item: io.flow.internal.v0.models.TamItem;
|
|
22385
|
-
}
|
|
22386
22035
|
interface TariffCodeDuty {
|
|
22387
22036
|
readonly tariff_code: string;
|
|
22388
22037
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
@@ -22550,33 +22199,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22550
22199
|
interface TestForm {
|
|
22551
22200
|
readonly name: string;
|
|
22552
22201
|
}
|
|
22553
|
-
interface ThiagoItem {
|
|
22554
|
-
readonly id: string;
|
|
22555
|
-
readonly number: string;
|
|
22556
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22557
|
-
readonly description?: string;
|
|
22558
|
-
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
22559
|
-
readonly added_on: string;
|
|
22560
|
-
}
|
|
22561
|
-
interface ThiagoItemDeleted {
|
|
22562
|
-
readonly discriminator: 'thiago_item_deleted';
|
|
22563
|
-
readonly event_id: string;
|
|
22564
|
-
readonly timestamp: string;
|
|
22565
|
-
readonly id: string;
|
|
22566
|
-
}
|
|
22567
|
-
interface ThiagoItemForm {
|
|
22568
|
-
readonly number: string;
|
|
22569
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22570
|
-
readonly description?: string;
|
|
22571
|
-
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
22572
|
-
readonly added_on: string;
|
|
22573
|
-
}
|
|
22574
|
-
interface ThiagoItemUpserted {
|
|
22575
|
-
readonly discriminator: 'thiago_item_upserted';
|
|
22576
|
-
readonly event_id: string;
|
|
22577
|
-
readonly timestamp: string;
|
|
22578
|
-
readonly item: io.flow.internal.v0.models.ThiagoItem;
|
|
22579
|
-
}
|
|
22580
22202
|
interface ThirdPartyLogisticsPartner {
|
|
22581
22203
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
22582
22204
|
readonly warehouse_url?: string;
|
|
@@ -22695,6 +22317,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22695
22317
|
readonly timestamp: string;
|
|
22696
22318
|
readonly job: io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
22697
22319
|
}
|
|
22320
|
+
interface TrackingCarrierReturnLabel {
|
|
22321
|
+
readonly id: string;
|
|
22322
|
+
readonly carrier_tracking_number: string;
|
|
22323
|
+
readonly alternate_tracking_numbers: string[];
|
|
22324
|
+
readonly carrier_id: string;
|
|
22325
|
+
readonly outbound_label_id?: string;
|
|
22326
|
+
readonly s3file?: string;
|
|
22327
|
+
readonly origin?: any;
|
|
22328
|
+
readonly destination?: any;
|
|
22329
|
+
}
|
|
22330
|
+
interface TrackingCarrierReturnLabelDeleted {
|
|
22331
|
+
readonly discriminator: 'tracking_carrier_return_label_deleted';
|
|
22332
|
+
readonly event_id: string;
|
|
22333
|
+
readonly timestamp: string;
|
|
22334
|
+
readonly id: string;
|
|
22335
|
+
}
|
|
22336
|
+
interface TrackingCarrierReturnLabelUpserted {
|
|
22337
|
+
readonly discriminator: 'tracking_carrier_return_label_upserted';
|
|
22338
|
+
readonly event_id: string;
|
|
22339
|
+
readonly timestamp: string;
|
|
22340
|
+
readonly tracking_carrier_return_label: io.flow.internal.v0.models.TrackingCarrierReturnLabel;
|
|
22341
|
+
}
|
|
22698
22342
|
interface TrackingDebugForceTransitForm {
|
|
22699
22343
|
readonly description: string;
|
|
22700
22344
|
}
|
|
@@ -22802,26 +22446,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22802
22446
|
readonly flow_tracking_number: string;
|
|
22803
22447
|
readonly credentials: io.flow.internal.v0.unions.CarrierCredentials;
|
|
22804
22448
|
}
|
|
22805
|
-
interface TrackingRequestUpserted {
|
|
22806
|
-
readonly discriminator: 'tracking_request_upserted';
|
|
22807
|
-
readonly event_id: string;
|
|
22808
|
-
readonly timestamp: string;
|
|
22809
|
-
readonly organization: string;
|
|
22810
|
-
readonly tracking_request: io.flow.internal.v0.models.TrackingRequest;
|
|
22811
|
-
}
|
|
22812
22449
|
interface TrackingResponse {
|
|
22813
22450
|
readonly carrier: string;
|
|
22814
22451
|
readonly carrier_tracking_number: string;
|
|
22815
22452
|
readonly flow_tracking_number: string;
|
|
22816
22453
|
readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
|
|
22817
22454
|
}
|
|
22818
|
-
interface TrackingResponseUpserted {
|
|
22819
|
-
readonly discriminator: 'tracking_response_upserted';
|
|
22820
|
-
readonly event_id: string;
|
|
22821
|
-
readonly timestamp: string;
|
|
22822
|
-
readonly organization: string;
|
|
22823
|
-
readonly tracking_response: io.flow.internal.v0.models.TrackingResponse;
|
|
22824
|
-
}
|
|
22825
22455
|
interface TrackingSubscription {
|
|
22826
22456
|
readonly id: string;
|
|
22827
22457
|
readonly organization_id: string;
|
|
@@ -23142,7 +22772,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23142
22772
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23143
22773
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23144
22774
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
23145
|
-
type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | 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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.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.PregeneratedRequestEvent | 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.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.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.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.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.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.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.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.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.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.SanjayItemUpserted | io.flow.internal.v0.models.SanjayItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | 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.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22775
|
+
type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.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.PregeneratedRequestEvent | 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.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.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.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.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.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.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.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.ShopifyMarketsOrderEditSummaryPublished | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | 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;
|
|
23146
22776
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23147
22777
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23148
22778
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23169,7 +22799,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23169
22799
|
type MarketingGatewayFeedSource = io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle | io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook;
|
|
23170
22800
|
type MarketingGatewayItem = io.flow.internal.v0.models.MarketingGatewayGoogleItem;
|
|
23171
22801
|
type MarketingGatewaySourceSummary = io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
|
|
23172
|
-
type MoneyRule = io.flow.internal.v0.models.MoneyPercentage;
|
|
23173
22802
|
type OptinPromptDisplay = io.flow.internal.v0.models.OptinPromptCheckoutDisplay;
|
|
23174
22803
|
type OrderActionForm = io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm;
|
|
23175
22804
|
type OrderCancellationEvidence = io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender;
|
|
@@ -23305,7 +22934,6 @@ export declare type AlertFailureSummary = io.flow.internal.v0.models.AlertFailur
|
|
|
23305
22934
|
export declare type AlertFailureSummaryDetail = io.flow.internal.v0.models.AlertFailureSummaryDetail;
|
|
23306
22935
|
export declare type AlertImportSummary = io.flow.internal.v0.models.AlertImportSummary;
|
|
23307
22936
|
export declare type AlertRequeueSummary = io.flow.internal.v0.models.AlertRequeueSummary;
|
|
23308
|
-
export declare type AlgoliaIndexAssignment = io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
23309
22937
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
23310
22938
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
23311
22939
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
@@ -23331,7 +22959,9 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
|
|
|
23331
22959
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
23332
22960
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
23333
22961
|
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
22962
|
+
export declare type BankAccount = io.flow.internal.v0.models.BankAccount;
|
|
23334
22963
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
22964
|
+
export declare type BankAccountStatus = io.flow.internal.v0.enums.BankAccountStatus;
|
|
23335
22965
|
export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
23336
22966
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
23337
22967
|
export declare type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
@@ -23610,10 +23240,8 @@ export declare type CliLogEntry = io.flow.internal.v0.models.CliLogEntry;
|
|
|
23610
23240
|
export declare type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
|
|
23611
23241
|
export declare type ClothingAgeClassification = io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
23612
23242
|
export declare type ColmItem = io.flow.internal.v0.models.ColmItem;
|
|
23613
|
-
export declare type ColmItemDeleted = io.flow.internal.v0.models.ColmItemDeleted;
|
|
23614
23243
|
export declare type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
|
|
23615
23244
|
export declare type ColmItemType = io.flow.internal.v0.enums.ColmItemType;
|
|
23616
|
-
export declare type ColmItemUpserted = io.flow.internal.v0.models.ColmItemUpserted;
|
|
23617
23245
|
export declare type CommercialInvoiceComparison = io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
23618
23246
|
export declare type CommercialInvoiceInternal = io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
23619
23247
|
export declare type CommercialInvoiceInternalDeleted = io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
|
|
@@ -23640,9 +23268,6 @@ export declare type ContentSchemaSummary = io.flow.internal.v0.models.ContentSch
|
|
|
23640
23268
|
export declare type ContentStatus = io.flow.internal.v0.enums.ContentStatus;
|
|
23641
23269
|
export declare type ContentType = io.flow.internal.v0.enums.ContentType;
|
|
23642
23270
|
export declare type ContentTypeCast = io.flow.internal.v0.enums.ContentTypeCast;
|
|
23643
|
-
export declare type Cost = io.flow.internal.v0.models.Cost;
|
|
23644
|
-
export declare type CostRule = io.flow.internal.v0.models.CostRule;
|
|
23645
|
-
export declare type CostType = io.flow.internal.v0.enums.CostType;
|
|
23646
23271
|
export declare type CountryPickerCountry = io.flow.internal.v0.models.CountryPickerCountry;
|
|
23647
23272
|
export declare type CountryPickerCountryData = io.flow.internal.v0.models.CountryPickerCountryData;
|
|
23648
23273
|
export declare type CountryPickerCurrency = io.flow.internal.v0.models.CountryPickerCurrency;
|
|
@@ -23676,6 +23301,7 @@ export declare type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDel
|
|
|
23676
23301
|
export declare type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
23677
23302
|
export declare type DebugAccountingTransaction = io.flow.internal.v0.models.DebugAccountingTransaction;
|
|
23678
23303
|
export declare type DebugAccountingTransactionType = io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
23304
|
+
export declare type DebugBankingDetails = io.flow.internal.v0.models.DebugBankingDetails;
|
|
23679
23305
|
export declare type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
23680
23306
|
export declare type DebugFulfillmentDelta = io.flow.internal.v0.models.DebugFulfillmentDelta;
|
|
23681
23307
|
export declare type DebugLabel = io.flow.internal.v0.models.DebugLabel;
|
|
@@ -23707,7 +23333,6 @@ export declare type DeliveredDutyPreference = io.flow.internal.v0.models.Deliver
|
|
|
23707
23333
|
export declare type DeliveredDutyPreferenceForm = io.flow.internal.v0.models.DeliveredDutyPreferenceForm;
|
|
23708
23334
|
export declare type DeminimisAdjustmentType = io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
23709
23335
|
export declare type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
23710
|
-
export declare type Details = io.flow.internal.v0.models.Details;
|
|
23711
23336
|
export declare type Dhl = io.flow.internal.v0.models.Dhl;
|
|
23712
23337
|
export declare type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
23713
23338
|
export declare type Dict = io.flow.internal.v0.models.Dict;
|
|
@@ -23759,21 +23384,13 @@ export declare type DutyExemptItemTypes = io.flow.internal.v0.enums.DutyExemptIt
|
|
|
23759
23384
|
export declare type DutyExpression = io.flow.internal.v0.unions.DutyExpression;
|
|
23760
23385
|
export declare type DutyInternalRate = io.flow.internal.v0.models.DutyInternalRate;
|
|
23761
23386
|
export declare type DutyRate = io.flow.internal.v0.models.DutyRate;
|
|
23762
|
-
export declare type DutyRateBulkRequest = io.flow.internal.v0.models.DutyRateBulkRequest;
|
|
23763
|
-
export declare type DutyRateBulkResponse = io.flow.internal.v0.models.DutyRateBulkResponse;
|
|
23764
|
-
export declare type DutyRateContext = io.flow.internal.v0.models.DutyRateContext;
|
|
23765
23387
|
export declare type DutyRateItemSummary = io.flow.internal.v0.models.DutyRateItemSummary;
|
|
23766
|
-
export declare type DutyRateRequest = io.flow.internal.v0.models.DutyRateRequest;
|
|
23767
|
-
export declare type DutyRateResponse = io.flow.internal.v0.models.DutyRateResponse;
|
|
23768
23388
|
export declare type DutyRateSource = io.flow.internal.v0.enums.DutyRateSource;
|
|
23769
23389
|
export declare type DutyRateSummary = io.flow.internal.v0.models.DutyRateSummary;
|
|
23770
23390
|
export declare type DutyRateUnitOfMeasure = io.flow.internal.v0.enums.DutyRateUnitOfMeasure;
|
|
23771
|
-
export declare type DutyRateUpserted = io.flow.internal.v0.models.DutyRateUpserted;
|
|
23772
23391
|
export declare type DutyRatesDataSummary = io.flow.internal.v0.models.DutyRatesDataSummary;
|
|
23773
23392
|
export declare type DutyRatesPublishedV2 = io.flow.internal.v0.models.DutyRatesPublishedV2;
|
|
23774
23393
|
export declare type DutyRaw = io.flow.internal.v0.models.DutyRaw;
|
|
23775
|
-
export declare type DutyRawBulkUpserted = io.flow.internal.v0.models.DutyRawBulkUpserted;
|
|
23776
|
-
export declare type DutyRawUpserted = io.flow.internal.v0.models.DutyRawUpserted;
|
|
23777
23394
|
export declare type DutySelectionRule = io.flow.internal.v0.enums.DutySelectionRule;
|
|
23778
23395
|
export declare type DutySimpleExpression = io.flow.internal.v0.models.DutySimpleExpression;
|
|
23779
23396
|
export declare type DutySimpleExpressionType = io.flow.internal.v0.enums.DutySimpleExpressionType;
|
|
@@ -23781,11 +23398,6 @@ export declare type DutyTransaction = io.flow.internal.v0.models.DutyTransaction
|
|
|
23781
23398
|
export declare type DutyTransactionDeleted = io.flow.internal.v0.models.DutyTransactionDeleted;
|
|
23782
23399
|
export declare type DutyTransactionType = io.flow.internal.v0.enums.DutyTransactionType;
|
|
23783
23400
|
export declare type DutyTransactionUpserted = io.flow.internal.v0.models.DutyTransactionUpserted;
|
|
23784
|
-
export declare type EldarItem = io.flow.internal.v0.models.EldarItem;
|
|
23785
|
-
export declare type EldarItemDeleted = io.flow.internal.v0.models.EldarItemDeleted;
|
|
23786
|
-
export declare type EldarItemForm = io.flow.internal.v0.models.EldarItemForm;
|
|
23787
|
-
export declare type EldarItemType = io.flow.internal.v0.enums.EldarItemType;
|
|
23788
|
-
export declare type EldarItemUpserted = io.flow.internal.v0.models.EldarItemUpserted;
|
|
23789
23401
|
export declare type EmailForm = io.flow.internal.v0.models.EmailForm;
|
|
23790
23402
|
export declare type EmailModificationForm = io.flow.internal.v0.models.EmailModificationForm;
|
|
23791
23403
|
export declare type EmptyAttribute = io.flow.internal.v0.enums.EmptyAttribute;
|
|
@@ -23987,11 +23599,6 @@ export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models
|
|
|
23987
23599
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
23988
23600
|
export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
23989
23601
|
export declare type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
23990
|
-
export declare type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
23991
|
-
export declare type HarinathItemDeleted = io.flow.internal.v0.models.HarinathItemDeleted;
|
|
23992
|
-
export declare type HarinathItemForm = io.flow.internal.v0.models.HarinathItemForm;
|
|
23993
|
-
export declare type HarinathItemType = io.flow.internal.v0.enums.HarinathItemType;
|
|
23994
|
-
export declare type HarinathItemUpserted = io.flow.internal.v0.models.HarinathItemUpserted;
|
|
23995
23602
|
export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
23996
23603
|
export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
|
|
23997
23604
|
export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
@@ -24012,12 +23619,8 @@ export declare type Href = io.flow.internal.v0.models.Href;
|
|
|
24012
23619
|
export declare type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
24013
23620
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
24014
23621
|
export declare type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
24015
|
-
export declare type HybrisCatalogItemsImportRequest = io.flow.internal.v0.models.HybrisCatalogItemsImportRequest;
|
|
24016
|
-
export declare type HybrisCatalogItemsImportRequestData = io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
24017
23622
|
export declare type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
|
|
24018
23623
|
export declare type ImportFailed = io.flow.internal.v0.models.ImportFailed;
|
|
24019
|
-
export declare type IndexAssignmentDeleted = io.flow.internal.v0.models.IndexAssignmentDeleted;
|
|
24020
|
-
export declare type IndexAssignmentUpserted = io.flow.internal.v0.models.IndexAssignmentUpserted;
|
|
24021
23624
|
export declare type IndexTaskType = io.flow.internal.v0.unions.IndexTaskType;
|
|
24022
23625
|
export declare type InlineAuthorizationParameters = io.flow.internal.v0.unions.InlineAuthorizationParameters;
|
|
24023
23626
|
export declare type InstallForm = io.flow.internal.v0.models.InstallForm;
|
|
@@ -24069,7 +23672,6 @@ export declare type ItemDimensionEstimateUpsertedV2 = io.flow.internal.v0.models
|
|
|
24069
23672
|
export declare type ItemFilterResponse = io.flow.internal.v0.models.ItemFilterResponse;
|
|
24070
23673
|
export declare type ItemFilterValueResponse = io.flow.internal.v0.models.ItemFilterValueResponse;
|
|
24071
23674
|
export declare type ItemFilterValuesForm = io.flow.internal.v0.models.ItemFilterValuesForm;
|
|
24072
|
-
export declare type ItemForm = io.flow.internal.v0.models.ItemForm;
|
|
24073
23675
|
export declare type ItemFormImportRequest = io.flow.internal.v0.models.ItemFormImportRequest;
|
|
24074
23676
|
export declare type ItemHarmonization = io.flow.internal.v0.models.ItemHarmonization;
|
|
24075
23677
|
export declare type ItemHarmonizationDeleted = io.flow.internal.v0.models.ItemHarmonizationDeleted;
|
|
@@ -24097,11 +23699,6 @@ export declare type KeyReference = io.flow.internal.v0.models.KeyReference;
|
|
|
24097
23699
|
export declare type KeywordType = io.flow.internal.v0.enums.KeywordType;
|
|
24098
23700
|
export declare type KlarnaAuthorizationParameters = io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
24099
23701
|
export declare type KlarnaPaymentMethodCategory = io.flow.internal.v0.models.KlarnaPaymentMethodCategory;
|
|
24100
|
-
export declare type KonstantinItem = io.flow.internal.v0.models.KonstantinItem;
|
|
24101
|
-
export declare type KonstantinItemDeleted = io.flow.internal.v0.models.KonstantinItemDeleted;
|
|
24102
|
-
export declare type KonstantinItemForm = io.flow.internal.v0.models.KonstantinItemForm;
|
|
24103
|
-
export declare type KonstantinItemType = io.flow.internal.v0.enums.KonstantinItemType;
|
|
24104
|
-
export declare type KonstantinItemUpserted = io.flow.internal.v0.models.KonstantinItemUpserted;
|
|
24105
23702
|
export declare type LabProjectSettings = io.flow.internal.v0.models.LabProjectSettings;
|
|
24106
23703
|
export declare type LabProjectSettingsForm = io.flow.internal.v0.models.LabProjectSettingsForm;
|
|
24107
23704
|
export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
@@ -24263,16 +23860,11 @@ export declare type MarketingGatewaySourceSummary = io.flow.internal.v0.unions.M
|
|
|
24263
23860
|
export declare type MarketingGatewaySupportedChannelDetails = io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
24264
23861
|
export declare type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
24265
23862
|
export declare type MarketsOrderSummary = io.flow.internal.v0.models.MarketsOrderSummary;
|
|
24266
|
-
export declare type MatiasItem = io.flow.internal.v0.models.MatiasItem;
|
|
24267
|
-
export declare type MatiasItemDeleted = io.flow.internal.v0.models.MatiasItemDeleted;
|
|
24268
|
-
export declare type MatiasItemForm = io.flow.internal.v0.models.MatiasItemForm;
|
|
24269
|
-
export declare type MatiasItemType = io.flow.internal.v0.enums.MatiasItemType;
|
|
24270
|
-
export declare type MatiasItemUpserted = io.flow.internal.v0.models.MatiasItemUpserted;
|
|
24271
23863
|
export declare type Merchant = io.flow.internal.v0.models.Merchant;
|
|
24272
23864
|
export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
24273
23865
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
24274
|
-
export declare type MerchantCohort = io.flow.internal.v0.enums.MerchantCohort;
|
|
24275
23866
|
export declare type MerchantDeleted = io.flow.internal.v0.models.MerchantDeleted;
|
|
23867
|
+
export declare type MerchantDetails = io.flow.internal.v0.models.MerchantDetails;
|
|
24276
23868
|
export declare type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
24277
23869
|
export declare type MerchantGuidAssignment = io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
24278
23870
|
export declare type MerchantGuidAssignmentDeleted = io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
|
|
@@ -24289,19 +23881,7 @@ export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpsert
|
|
|
24289
23881
|
export declare type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
24290
23882
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
24291
23883
|
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
24292
|
-
export declare type MichaelyanItem = io.flow.internal.v0.models.MichaelyanItem;
|
|
24293
|
-
export declare type MichaelyanItemDeleted = io.flow.internal.v0.models.MichaelyanItemDeleted;
|
|
24294
|
-
export declare type MichaelyanItemForm = io.flow.internal.v0.models.MichaelyanItemForm;
|
|
24295
|
-
export declare type MichaelyanItemType = io.flow.internal.v0.enums.MichaelyanItemType;
|
|
24296
|
-
export declare type MichaelyanItemUpserted = io.flow.internal.v0.models.MichaelyanItemUpserted;
|
|
24297
|
-
export declare type MiljenkoItem = io.flow.internal.v0.models.MiljenkoItem;
|
|
24298
|
-
export declare type MiljenkoItemDeleted = io.flow.internal.v0.models.MiljenkoItemDeleted;
|
|
24299
|
-
export declare type MiljenkoItemForm = io.flow.internal.v0.models.MiljenkoItemForm;
|
|
24300
|
-
export declare type MiljenkoItemType = io.flow.internal.v0.enums.MiljenkoItemType;
|
|
24301
|
-
export declare type MiljenkoItemUpserted = io.flow.internal.v0.models.MiljenkoItemUpserted;
|
|
24302
23884
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
24303
|
-
export declare type MoneyPercentage = io.flow.internal.v0.models.MoneyPercentage;
|
|
24304
|
-
export declare type MoneyRule = io.flow.internal.v0.unions.MoneyRule;
|
|
24305
23885
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
24306
23886
|
export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
24307
23887
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
@@ -24357,6 +23937,7 @@ export declare type OrderCombinedShipmentDeleted = io.flow.internal.v0.models.Or
|
|
|
24357
23937
|
export declare type OrderCombinedShipmentForm = io.flow.internal.v0.models.OrderCombinedShipmentForm;
|
|
24358
23938
|
export declare type OrderCombinedShipmentUpserted = io.flow.internal.v0.models.OrderCombinedShipmentUpserted;
|
|
24359
23939
|
export declare type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
23940
|
+
export declare type OrderEditSummary = io.flow.internal.v0.models.OrderEditSummary;
|
|
24360
23941
|
export declare type OrderFulfillmentDeleted = io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
24361
23942
|
export declare type OrderFulfillmentUpserted = io.flow.internal.v0.models.OrderFulfillmentUpserted;
|
|
24362
23943
|
export declare type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecycleEvent;
|
|
@@ -24486,7 +24067,6 @@ export declare type PartnerOrganizationSettingsForm = io.flow.internal.v0.models
|
|
|
24486
24067
|
export declare type PartnerOrganizationSettingsUpserted = io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted;
|
|
24487
24068
|
export declare type PartnerTrackingSubscriptionDeleted = io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted;
|
|
24488
24069
|
export declare type PartnerTrackingSubscriptionUpserted = io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted;
|
|
24489
|
-
export declare type Party = io.flow.internal.v0.enums.Party;
|
|
24490
24070
|
export declare type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
24491
24071
|
export declare type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
24492
24072
|
export declare type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
@@ -24548,13 +24128,7 @@ export declare type PreferredBillingSchedule = io.flow.internal.v0.enums.Preferr
|
|
|
24548
24128
|
export declare type PregeneratedQuote = io.flow.internal.v0.models.PregeneratedQuote;
|
|
24549
24129
|
export declare type PregeneratedRequestEvent = io.flow.internal.v0.models.PregeneratedRequestEvent;
|
|
24550
24130
|
export declare type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
24551
|
-
export declare type PricingIndicator = io.flow.internal.v0.models.PricingIndicator;
|
|
24552
|
-
export declare type PricingIndicatorDynamo = io.flow.internal.v0.models.PricingIndicatorDynamo;
|
|
24553
|
-
export declare type PricingIndicatorStatus = io.flow.internal.v0.enums.PricingIndicatorStatus;
|
|
24554
|
-
export declare type Principal = io.flow.internal.v0.models.Principal;
|
|
24555
|
-
export declare type PrincipalType = io.flow.internal.v0.enums.PrincipalType;
|
|
24556
24131
|
export declare type PrioritizedCenterReference = io.flow.internal.v0.models.PrioritizedCenterReference;
|
|
24557
|
-
export declare type ProcessedPaymentSummary = io.flow.internal.v0.models.ProcessedPaymentSummary;
|
|
24558
24132
|
export declare type ProcessingTransaction = io.flow.internal.v0.models.ProcessingTransaction;
|
|
24559
24133
|
export declare type ProcessingTransactionDeleted = io.flow.internal.v0.models.ProcessingTransactionDeleted;
|
|
24560
24134
|
export declare type ProcessingTransactionReference = io.flow.internal.v0.models.ProcessingTransactionReference;
|
|
@@ -24590,14 +24164,6 @@ export declare type ProductRestrictionRuleDecisionUpserted = io.flow.internal.v0
|
|
|
24590
24164
|
export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductReviewHistory;
|
|
24591
24165
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
24592
24166
|
export declare type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
24593
|
-
export declare type Profit = io.flow.internal.v0.models.Profit;
|
|
24594
|
-
export declare type ProfitShare = io.flow.internal.v0.models.ProfitShare;
|
|
24595
|
-
export declare type ProfitShareOrderReference = io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
24596
|
-
export declare type ProfitSharePlan = io.flow.internal.v0.models.ProfitSharePlan;
|
|
24597
|
-
export declare type ProfitSplit = io.flow.internal.v0.models.ProfitSplit;
|
|
24598
|
-
export declare type ProfitSplitRule = io.flow.internal.v0.models.ProfitSplitRule;
|
|
24599
|
-
export declare type ProfitStream = io.flow.internal.v0.models.ProfitStream;
|
|
24600
|
-
export declare type ProfitStreamKey = io.flow.internal.v0.enums.ProfitStreamKey;
|
|
24601
24167
|
export declare type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
24602
24168
|
export declare type PromptCheckoutDisplayPosition = io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
24603
24169
|
export declare type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
|
|
@@ -24764,6 +24330,8 @@ export declare type RestrictionRuleSummary = io.flow.internal.v0.models.Restrict
|
|
|
24764
24330
|
export declare type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
24765
24331
|
export declare type RestrictionStatusMetadata = io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
24766
24332
|
export declare type RestrictionsDailyops = io.flow.internal.v0.models.RestrictionsDailyops;
|
|
24333
|
+
export declare type RestrictionsDailyopsDeleted = io.flow.internal.v0.models.RestrictionsDailyopsDeleted;
|
|
24334
|
+
export declare type RestrictionsDailyopsUpserted = io.flow.internal.v0.models.RestrictionsDailyopsUpserted;
|
|
24767
24335
|
export declare type ResyncByDestinations = io.flow.internal.v0.models.ResyncByDestinations;
|
|
24768
24336
|
export declare type ResyncByHs6Destinations = io.flow.internal.v0.models.ResyncByHs6Destinations;
|
|
24769
24337
|
export declare type ResyncByHs6Origin = io.flow.internal.v0.models.ResyncByHs6Origin;
|
|
@@ -24778,13 +24346,10 @@ export declare type ReturnPolicyUpserted = io.flow.internal.v0.models.ReturnPoli
|
|
|
24778
24346
|
export declare type ReturnSummary = io.flow.internal.v0.models.ReturnSummary;
|
|
24779
24347
|
export declare type ReturnTrigger = io.flow.internal.v0.unions.ReturnTrigger;
|
|
24780
24348
|
export declare type ReturnTriggerRefund = io.flow.internal.v0.models.ReturnTriggerRefund;
|
|
24781
|
-
export declare type Revenue = io.flow.internal.v0.models.Revenue;
|
|
24782
24349
|
export declare type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
|
|
24783
24350
|
export declare type RevenueRecordDeleted = io.flow.internal.v0.models.RevenueRecordDeleted;
|
|
24784
24351
|
export declare type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
|
|
24785
24352
|
export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
24786
|
-
export declare type RevenueRule = io.flow.internal.v0.models.RevenueRule;
|
|
24787
|
-
export declare type RevenueType = io.flow.internal.v0.enums.RevenueType;
|
|
24788
24353
|
export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
24789
24354
|
export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
24790
24355
|
export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
@@ -24793,11 +24358,6 @@ export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant
|
|
|
24793
24358
|
export declare type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
24794
24359
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
24795
24360
|
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
24796
|
-
export declare type SanjayItem = io.flow.internal.v0.models.SanjayItem;
|
|
24797
|
-
export declare type SanjayItemDeleted = io.flow.internal.v0.models.SanjayItemDeleted;
|
|
24798
|
-
export declare type SanjayItemForm = io.flow.internal.v0.models.SanjayItemForm;
|
|
24799
|
-
export declare type SanjayItemType = io.flow.internal.v0.enums.SanjayItemType;
|
|
24800
|
-
export declare type SanjayItemUpserted = io.flow.internal.v0.models.SanjayItemUpserted;
|
|
24801
24361
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
24802
24362
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
24803
24363
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -24812,7 +24372,6 @@ export declare type SearchItemSummary = io.flow.internal.v0.models.SearchItemSum
|
|
|
24812
24372
|
export declare type SearchOrderSummary = io.flow.internal.v0.models.SearchOrderSummary;
|
|
24813
24373
|
export declare type SearchProviderExport = io.flow.internal.v0.models.SearchProviderExport;
|
|
24814
24374
|
export declare type SearchTrackingSummary = io.flow.internal.v0.models.SearchTrackingSummary;
|
|
24815
|
-
export declare type ServiceName = io.flow.internal.v0.enums.ServiceName;
|
|
24816
24375
|
export declare type SessionCountries = io.flow.internal.v0.models.SessionCountries;
|
|
24817
24376
|
export declare type SessionCountry = io.flow.internal.v0.models.SessionCountry;
|
|
24818
24377
|
export declare type SessionCountryForm = io.flow.internal.v0.models.SessionCountryForm;
|
|
@@ -24845,6 +24404,13 @@ export declare type ShopifyGiftCardReversal = io.flow.internal.v0.models.Shopify
|
|
|
24845
24404
|
export declare type ShopifyGiftCardReversalForm = io.flow.internal.v0.models.ShopifyGiftCardReversalForm;
|
|
24846
24405
|
export declare type ShopifyGrantStatus = io.flow.internal.v0.enums.ShopifyGrantStatus;
|
|
24847
24406
|
export declare type ShopifyGrantsCheck = io.flow.internal.v0.models.ShopifyGrantsCheck;
|
|
24407
|
+
export declare type ShopifyIncotermConfiguration = io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
|
|
24408
|
+
export declare type ShopifyIncotermIncludes = io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
24409
|
+
export declare type ShopifyIncotermSummaryErrorData = io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
24410
|
+
export declare type ShopifyIncotermSummaryErrorPublished = io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished;
|
|
24411
|
+
export declare type ShopifyMarketsBestSellingProduct = io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
24412
|
+
export declare type ShopifyMarketsBestSellingProductDeleted = io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
24413
|
+
export declare type ShopifyMarketsBestSellingProductUpserted = io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted;
|
|
24848
24414
|
export declare type ShopifyMarketsDangerousGoods = io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods;
|
|
24849
24415
|
export declare type ShopifyMarketsDiscrepancy = io.flow.internal.v0.models.ShopifyMarketsDiscrepancy;
|
|
24850
24416
|
export declare type ShopifyMarketsDiscrepancyData = io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
@@ -24855,6 +24421,8 @@ export declare type ShopifyMarketsMetricsDeleted = io.flow.internal.v0.models.Sh
|
|
|
24855
24421
|
export declare type ShopifyMarketsMetricsUpserted = io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted;
|
|
24856
24422
|
export declare type ShopifyMarketsOrder = io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
24857
24423
|
export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
24424
|
+
export declare type ShopifyMarketsOrderEditSummaryData = io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
24425
|
+
export declare type ShopifyMarketsOrderEditSummaryPublished = io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished;
|
|
24858
24426
|
export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
24859
24427
|
export declare type ShopifyMarketsOrderVersionWithShopId = io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId;
|
|
24860
24428
|
export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
@@ -24945,11 +24513,6 @@ export declare type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
|
|
24945
24513
|
export declare type ShopperLine = io.flow.internal.v0.models.ShopperLine;
|
|
24946
24514
|
export declare type ShopperLines = io.flow.internal.v0.models.ShopperLines;
|
|
24947
24515
|
export declare type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
|
|
24948
|
-
export declare type ShrutiDemoItem = io.flow.internal.v0.models.ShrutiDemoItem;
|
|
24949
|
-
export declare type ShrutiDemoItemDeleted = io.flow.internal.v0.models.ShrutiDemoItemDeleted;
|
|
24950
|
-
export declare type ShrutiDemoItemForm = io.flow.internal.v0.models.ShrutiDemoItemForm;
|
|
24951
|
-
export declare type ShrutiDemoItemUpserted = io.flow.internal.v0.models.ShrutiDemoItemUpserted;
|
|
24952
|
-
export declare type ShrutiDemoType = io.flow.internal.v0.enums.ShrutiDemoType;
|
|
24953
24516
|
export declare type SimpleAccountReference = io.flow.internal.v0.models.SimpleAccountReference;
|
|
24954
24517
|
export declare type SimpleRoundingStrategy = io.flow.internal.v0.enums.SimpleRoundingStrategy;
|
|
24955
24518
|
export declare type SimplifiedClassificationTaxonomy = io.flow.internal.v0.unions.SimplifiedClassificationTaxonomy;
|
|
@@ -25017,17 +24580,6 @@ export declare type SubscriptionFrequency = io.flow.internal.v0.enums.Subscripti
|
|
|
25017
24580
|
export declare type SubscriptionTransaction = io.flow.internal.v0.models.SubscriptionTransaction;
|
|
25018
24581
|
export declare type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
25019
24582
|
export declare type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
25020
|
-
export declare type SvitlanaItem = io.flow.internal.v0.models.SvitlanaItem;
|
|
25021
|
-
export declare type SvitlanaItemDeleted = io.flow.internal.v0.models.SvitlanaItemDeleted;
|
|
25022
|
-
export declare type SvitlanaItemForm = io.flow.internal.v0.models.SvitlanaItemForm;
|
|
25023
|
-
export declare type SvitlanaItemUpserted = io.flow.internal.v0.models.SvitlanaItemUpserted;
|
|
25024
|
-
export declare type SvitlanaTest = io.flow.internal.v0.models.SvitlanaTest;
|
|
25025
|
-
export declare type SvitlanaType = io.flow.internal.v0.enums.SvitlanaType;
|
|
25026
|
-
export declare type TamItem = io.flow.internal.v0.models.TamItem;
|
|
25027
|
-
export declare type TamItemDeleted = io.flow.internal.v0.models.TamItemDeleted;
|
|
25028
|
-
export declare type TamItemForm = io.flow.internal.v0.models.TamItemForm;
|
|
25029
|
-
export declare type TamItemType = io.flow.internal.v0.enums.TamItemType;
|
|
25030
|
-
export declare type TamItemUpserted = io.flow.internal.v0.models.TamItemUpserted;
|
|
25031
24583
|
export declare type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
25032
24584
|
export declare type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
25033
24585
|
export declare type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|
|
@@ -25064,11 +24616,6 @@ export declare type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
|
25064
24616
|
export declare type TechOnboardingDescription = io.flow.internal.v0.models.TechOnboardingDescription;
|
|
25065
24617
|
export declare type Test = io.flow.internal.v0.models.Test;
|
|
25066
24618
|
export declare type TestForm = io.flow.internal.v0.models.TestForm;
|
|
25067
|
-
export declare type ThiagoItem = io.flow.internal.v0.models.ThiagoItem;
|
|
25068
|
-
export declare type ThiagoItemDeleted = io.flow.internal.v0.models.ThiagoItemDeleted;
|
|
25069
|
-
export declare type ThiagoItemForm = io.flow.internal.v0.models.ThiagoItemForm;
|
|
25070
|
-
export declare type ThiagoItemType = io.flow.internal.v0.enums.ThiagoItemType;
|
|
25071
|
-
export declare type ThiagoItemUpserted = io.flow.internal.v0.models.ThiagoItemUpserted;
|
|
25072
24619
|
export declare type ThirdPartyLogisticsPartner = io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
25073
24620
|
export declare type ThirdPartyLogisticsPickUpTimeWindow = io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow;
|
|
25074
24621
|
export declare type TieredFee = io.flow.internal.v0.models.TieredFee;
|
|
@@ -25087,6 +24634,9 @@ export declare type TrackingAssuranceAnalysisUpserted = io.flow.internal.v0.mode
|
|
|
25087
24634
|
export declare type TrackingAssuranceJob = io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
25088
24635
|
export declare type TrackingAssuranceJobDeleted = io.flow.internal.v0.models.TrackingAssuranceJobDeleted;
|
|
25089
24636
|
export declare type TrackingAssuranceJobUpserted = io.flow.internal.v0.models.TrackingAssuranceJobUpserted;
|
|
24637
|
+
export declare type TrackingCarrierReturnLabel = io.flow.internal.v0.models.TrackingCarrierReturnLabel;
|
|
24638
|
+
export declare type TrackingCarrierReturnLabelDeleted = io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted;
|
|
24639
|
+
export declare type TrackingCarrierReturnLabelUpserted = io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted;
|
|
25090
24640
|
export declare type TrackingDebugForceTransitForm = io.flow.internal.v0.models.TrackingDebugForceTransitForm;
|
|
25091
24641
|
export declare type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
25092
24642
|
export declare type TrackingDebugLabelEvent = io.flow.internal.v0.models.TrackingDebugLabelEvent;
|
|
@@ -25107,9 +24657,7 @@ export declare type TrackingProcessingErrorDeleted = io.flow.internal.v0.models.
|
|
|
25107
24657
|
export declare type TrackingProcessingErrorUpserted = io.flow.internal.v0.models.TrackingProcessingErrorUpserted;
|
|
25108
24658
|
export declare type TrackingProcessingFailureClassification = io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
25109
24659
|
export declare type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
25110
|
-
export declare type TrackingRequestUpserted = io.flow.internal.v0.models.TrackingRequestUpserted;
|
|
25111
24660
|
export declare type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
25112
|
-
export declare type TrackingResponseUpserted = io.flow.internal.v0.models.TrackingResponseUpserted;
|
|
25113
24661
|
export declare type TrackingSubscription = io.flow.internal.v0.models.TrackingSubscription;
|
|
25114
24662
|
export declare type TrackingSubscriptionDeleted = io.flow.internal.v0.models.TrackingSubscriptionDeleted;
|
|
25115
24663
|
export declare type TrackingSubscriptionUpserted = io.flow.internal.v0.models.TrackingSubscriptionUpserted;
|