@flowio/types 11.24.105 → 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 +395 -661
- package/dist/api.d.ts +1974 -308
- package/package.json +2 -2
- package/src/api-internal.ts +555 -876
- package/src/api.ts +2593 -392
package/dist/api-internal.d.ts
CHANGED
|
@@ -2089,6 +2089,11 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2089
2089
|
readonly eci?: string;
|
|
2090
2090
|
readonly liability_sift?: boolean;
|
|
2091
2091
|
readonly version?: string;
|
|
2092
|
+
readonly authenticated?: boolean;
|
|
2093
|
+
readonly authenticated_result?: string;
|
|
2094
|
+
readonly offered?: boolean;
|
|
2095
|
+
readonly offered_result?: string;
|
|
2096
|
+
readonly sca_exemption?: string;
|
|
2092
2097
|
}
|
|
2093
2098
|
interface ThreedsChallengeActionDetails {
|
|
2094
2099
|
readonly discriminator: 'threeds_challenge_action_details';
|
|
@@ -2244,6 +2249,8 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2244
2249
|
type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
|
|
2245
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';
|
|
2246
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';
|
|
2247
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';
|
|
2248
2255
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
2249
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';
|
|
@@ -3194,6 +3201,16 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3194
3201
|
readonly object: io.flow.stripe.v0.models.Dispute;
|
|
3195
3202
|
readonly previous_attributes?: any;
|
|
3196
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
|
+
}
|
|
3197
3214
|
interface StripeError {
|
|
3198
3215
|
readonly type: io.flow.stripe.v0.enums.ErrorType;
|
|
3199
3216
|
readonly charge?: string;
|
|
@@ -3367,6 +3384,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3367
3384
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
3368
3385
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
3369
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';
|
|
3370
3388
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
3371
3389
|
}
|
|
3372
3390
|
declare namespace io.flow.label.v0.models {
|
|
@@ -3495,6 +3513,10 @@ declare namespace io.flow.label.v0.models {
|
|
|
3495
3513
|
readonly html?: string;
|
|
3496
3514
|
readonly required: boolean;
|
|
3497
3515
|
}
|
|
3516
|
+
interface ShippingLabelError {
|
|
3517
|
+
readonly code: io.flow.label.v0.enums.ShippingLabelErrorCode;
|
|
3518
|
+
readonly messages: string[];
|
|
3519
|
+
}
|
|
3498
3520
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
3499
3521
|
readonly units: io.flow.trueup.v0.models.LabelUnits;
|
|
3500
3522
|
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
@@ -4399,6 +4421,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4399
4421
|
readonly inventory_item_id: number;
|
|
4400
4422
|
readonly shopify_shop_id: number;
|
|
4401
4423
|
readonly shopify_inventory_item: io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
4424
|
+
readonly deleted_at?: string;
|
|
4402
4425
|
}
|
|
4403
4426
|
interface MarketsOrder {
|
|
4404
4427
|
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
@@ -4429,6 +4452,9 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4429
4452
|
readonly origin: string;
|
|
4430
4453
|
readonly destination: string;
|
|
4431
4454
|
}
|
|
4455
|
+
interface ShopifyMarketsBestSellingProduct {
|
|
4456
|
+
readonly id: string;
|
|
4457
|
+
}
|
|
4432
4458
|
interface ShopifyMarketsDiscrepancy {
|
|
4433
4459
|
readonly organization_id: string;
|
|
4434
4460
|
readonly count: number;
|
|
@@ -4558,6 +4584,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
4558
4584
|
type DisputeStatus = 'Accepted' | 'Expired' | 'Lost' | 'Pending' | 'Responded' | 'Undefended' | 'Unresponded' | 'Won';
|
|
4559
4585
|
type EventCode = 'AUTHORISATION' | 'CANCELLATION' | 'REFUND' | 'CANCEL_OR_REFUND' | 'CAPTURE' | 'CAPTURE_FAILED' | 'REFUND_FAILED' | 'REFUNDED_REVERSED' | 'PAIDOUT_REVERSED' | 'REQUEST_FOR_INFORMATION' | 'CHARGEBACK' | 'CHARGEBACK_REVERSED' | 'NOTIFICATION_OF_CHARGEBACK' | 'NOTIFICATION_OF_FRAUD' | 'MANUAL_REVIEW_ACCEPT' | 'MANUAL_REVIEW_REJECT' | 'RECURRING_CONTRACT' | 'PAYOUT_EXPIRE' | 'PAYOUT_DECLINE' | 'PAYOUT_THIRDPARTY' | 'REFUND_WITH_DATA' | 'AUTHORISE_REFERRAL' | 'EXPIRE' | 'FRAUD_ONLY' | 'FUND_TRANSFER' | 'HANDLED_EXTERNALLY' | 'OFFER_CLOSED' | 'ORDER_OPENED' | 'ORDER_CLOSED' | 'PENDING' | 'PROCESS_RETRY' | 'REPORT_AVAILABLE' | 'SECOND_CHARGEBACK' | 'PREARBITRATION_WON' | 'PREARBITRATION_LOST' | 'INFORMATION_SUPPLIED' | 'DISPUTE_DEFENSE_PERIOD_ENDED' | 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED';
|
|
4560
4586
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
4587
|
+
type LifecycleStage = 'INQUIRY' | 'CHARGEBACK';
|
|
4561
4588
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
4562
4589
|
type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'grabpay_MY' | 'grabpay_PH' | 'grabpay_SG' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'paywithgoogle' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'vipps' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
4563
4590
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
@@ -4724,6 +4751,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4724
4751
|
readonly paymentMethod?: io.flow.adyen.v0.enums.PaymentMethod;
|
|
4725
4752
|
readonly reason?: string;
|
|
4726
4753
|
readonly success: string;
|
|
4754
|
+
readonly lifecycleStage?: io.flow.adyen.v0.enums.LifecycleStage;
|
|
4727
4755
|
}
|
|
4728
4756
|
interface ModificationRequest {
|
|
4729
4757
|
readonly merchantAccount: string;
|
|
@@ -6505,31 +6533,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6505
6533
|
readonly webhooks: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse[];
|
|
6506
6534
|
}
|
|
6507
6535
|
}
|
|
6508
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.enums {
|
|
6509
|
-
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
6510
|
-
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
6511
|
-
}
|
|
6512
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.models {
|
|
6513
|
-
interface Details {
|
|
6514
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
6515
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
6516
|
-
readonly upserted_at: string;
|
|
6517
|
-
readonly time_elapsed_since_upserted: number;
|
|
6518
|
-
}
|
|
6519
|
-
interface PricingIndicator {
|
|
6520
|
-
readonly discriminator: 'pricing_indicator';
|
|
6521
|
-
readonly event_id: string;
|
|
6522
|
-
readonly timestamp: string;
|
|
6523
|
-
readonly organization: string;
|
|
6524
|
-
readonly published_from: io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
|
|
6525
|
-
readonly status: io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
|
|
6526
|
-
readonly event_identifier: string;
|
|
6527
|
-
readonly details: io.flow.pricing.indicator.internal.event.v0.models.Details;
|
|
6528
|
-
}
|
|
6529
|
-
}
|
|
6530
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.unions {
|
|
6531
|
-
type PricingIndicatorEvent = io.flow.pricing.indicator.internal.event.v0.models.PricingIndicator;
|
|
6532
|
-
}
|
|
6533
6536
|
declare namespace io.flow.order.price.v0.enums {
|
|
6534
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';
|
|
6535
6538
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
@@ -6560,7 +6563,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
6560
6563
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
6561
6564
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
6562
6565
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
6563
|
-
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';
|
|
6564
6567
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
6565
6568
|
}
|
|
6566
6569
|
declare namespace io.flow.channel.internal.v0.models {
|
|
@@ -6601,6 +6604,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
6601
6604
|
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
6602
6605
|
readonly order_created_at?: string;
|
|
6603
6606
|
readonly order_updated_at?: string;
|
|
6607
|
+
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
6604
6608
|
}
|
|
6605
6609
|
interface ChannelOrderAcceptanceDetails {
|
|
6606
6610
|
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
@@ -6624,6 +6628,10 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
6624
6628
|
interface FlowChannelOrganization {
|
|
6625
6629
|
readonly placeholder?: string;
|
|
6626
6630
|
}
|
|
6631
|
+
interface OrderEditSummary {
|
|
6632
|
+
readonly external_order_edit_reference: string;
|
|
6633
|
+
readonly edited_at: string;
|
|
6634
|
+
}
|
|
6627
6635
|
}
|
|
6628
6636
|
declare namespace io.flow.partner.v0.enums {
|
|
6629
6637
|
type LabelFormat = 'pdf' | 'zpl' | 'all';
|
|
@@ -6736,6 +6744,14 @@ declare namespace io.flow.partner.v0.models {
|
|
|
6736
6744
|
interface PartnerOrganizationReference {
|
|
6737
6745
|
readonly id: string;
|
|
6738
6746
|
}
|
|
6747
|
+
interface PartnerTrackingSubscription {
|
|
6748
|
+
readonly id: string;
|
|
6749
|
+
readonly carrier_tracking_number: string;
|
|
6750
|
+
readonly carrier_id: string;
|
|
6751
|
+
readonly source: string;
|
|
6752
|
+
readonly reference_key: string;
|
|
6753
|
+
readonly created_at: string;
|
|
6754
|
+
}
|
|
6739
6755
|
interface SummaryLabelForm {
|
|
6740
6756
|
readonly discriminator: 'summary_label_form';
|
|
6741
6757
|
readonly organization: string;
|
|
@@ -6759,7 +6775,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
6759
6775
|
type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
|
|
6760
6776
|
type DeliveredDuty = 'paid' | 'unpaid';
|
|
6761
6777
|
type DiscountTarget = 'item' | 'shipping';
|
|
6762
|
-
type EntityIdentifierType = 'ioss' | 'voec';
|
|
6778
|
+
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
6763
6779
|
type Environment = 'sandbox' | 'production';
|
|
6764
6780
|
type ExceptionType = 'open' | 'closed';
|
|
6765
6781
|
type GoodsSupply = 'export' | 'intra_community' | 'local';
|
|
@@ -7232,6 +7248,9 @@ declare namespace io.flow.ftp.v0.models {
|
|
|
7232
7248
|
readonly password?: string;
|
|
7233
7249
|
}
|
|
7234
7250
|
}
|
|
7251
|
+
declare namespace io.flow.shopify.markets.internal.event.v0.enums {
|
|
7252
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
7253
|
+
}
|
|
7235
7254
|
declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
7236
7255
|
interface ChannelOrderSummaryDeleted {
|
|
7237
7256
|
readonly discriminator: 'channel_order_summary_deleted';
|
|
@@ -7274,6 +7293,40 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7274
7293
|
readonly timestamp: string;
|
|
7275
7294
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
7276
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
|
+
}
|
|
7277
7330
|
interface ShopifyMarketsMetricsDeleted {
|
|
7278
7331
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
7279
7332
|
readonly event_id: string;
|
|
@@ -7297,6 +7350,17 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7297
7350
|
readonly organization: string;
|
|
7298
7351
|
readonly shopify_markets_order: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
7299
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
|
+
}
|
|
7300
7364
|
interface ShopifyMarketsOrderUpserted {
|
|
7301
7365
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
7302
7366
|
readonly event_id: string;
|
|
@@ -7362,7 +7426,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7362
7426
|
}
|
|
7363
7427
|
}
|
|
7364
7428
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
7365
|
-
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;
|
|
7366
7430
|
}
|
|
7367
7431
|
declare namespace io.flow.experience.v0.enums {
|
|
7368
7432
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -7374,6 +7438,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
7374
7438
|
type ExperienceCountryStatus = 'enabled' | 'disabled';
|
|
7375
7439
|
type ExperiencePaymentMethodTag = 'display';
|
|
7376
7440
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
7441
|
+
type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
7377
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';
|
|
7378
7443
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
7379
7444
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
@@ -7809,6 +7874,15 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7809
7874
|
readonly max?: io.flow.common.v0.models.PriceForm;
|
|
7810
7875
|
readonly attributes?: Record<string, string>;
|
|
7811
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
|
+
}
|
|
7812
7886
|
interface ItemMargin {
|
|
7813
7887
|
readonly id: string;
|
|
7814
7888
|
readonly key: string;
|
|
@@ -7902,6 +7976,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
7902
7976
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
7903
7977
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
7904
7978
|
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
7979
|
+
readonly incoterm_summary?: io.flow.experience.v0.models.IncotermSummary;
|
|
7905
7980
|
}
|
|
7906
7981
|
interface OrderAddress {
|
|
7907
7982
|
readonly text?: string;
|
|
@@ -9341,6 +9416,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
9341
9416
|
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
9342
9417
|
readonly timestamp: string;
|
|
9343
9418
|
readonly description?: string;
|
|
9419
|
+
readonly aggregator_status_code?: string;
|
|
9344
9420
|
}
|
|
9345
9421
|
interface TrackingEventForm {
|
|
9346
9422
|
readonly tracking_label_id: string;
|
|
@@ -12100,15 +12176,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12100
12176
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
12101
12177
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
12102
12178
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
12179
|
+
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
12103
12180
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
12104
12181
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12105
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';
|
|
12106
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate';
|
|
12183
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
|
|
12107
12184
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
12108
12185
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
12109
|
-
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';
|
|
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';
|
|
12110
12187
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
12111
|
-
type CalculatorEngine = '
|
|
12188
|
+
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
12112
12189
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
12113
12190
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
12114
12191
|
type CarrierFileType = 'freight' | 'tax';
|
|
@@ -12119,7 +12196,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12119
12196
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
12120
12197
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
12121
12198
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
12122
|
-
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';
|
|
12123
12200
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
12124
12201
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
12125
12202
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
@@ -12145,7 +12222,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12145
12222
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
12146
12223
|
type ContentType = 'text' | 'html';
|
|
12147
12224
|
type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
|
|
12148
|
-
type CostType = 'payment_processing' | 'fx' | 'negative_balance' | 'solution' | 'hosting' | 'duty_guarantee' | 'transfer' | 'fraud';
|
|
12149
12225
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
12150
12226
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
12151
12227
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -12170,10 +12246,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12170
12246
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
12171
12247
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
12172
12248
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
12173
|
-
type EldarItemType = 'digital' | 'physical';
|
|
12174
12249
|
type EmptyAttribute = 'irrelevant';
|
|
12175
12250
|
type ErpFileType = 'vendor';
|
|
12176
|
-
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' | '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' | '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' | '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_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';
|
|
12177
12252
|
type ExperienceImportType = 'experience_with_settings';
|
|
12178
12253
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12179
12254
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12192,18 +12267,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12192
12267
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
12193
12268
|
type GoogleAnalyticsPlugin = 'ec';
|
|
12194
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';
|
|
12195
|
-
type HarinathItemType = 'digital' | 'physical';
|
|
12196
12270
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
12197
12271
|
type HttpMethod = 'get' | 'post';
|
|
12198
|
-
type InventoryCheckService = 'sfcc' | 'gymboree';
|
|
12199
|
-
type InventoryReservation = 'synchronous-on-submit';
|
|
12200
12272
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
12201
12273
|
type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
|
|
12202
12274
|
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt';
|
|
12203
12275
|
type ItemQuantityAction = 'fulfillment_ship' | 'fulfillment_cancel' | 'fulfillment_generate_label';
|
|
12204
12276
|
type ItemType = 'standard' | 'multi_product';
|
|
12205
12277
|
type KeywordType = 'positive' | 'negative';
|
|
12206
|
-
type KonstantinItemType = 'physical' | 'digital';
|
|
12207
12278
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
12208
12279
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
12209
12280
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
@@ -12215,7 +12286,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12215
12286
|
type LogisticsCapability = 'logistics_address_correction';
|
|
12216
12287
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
12217
12288
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
12218
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure';
|
|
12289
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback';
|
|
12219
12290
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
12220
12291
|
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
12221
12292
|
type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
|
|
@@ -12226,10 +12297,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12226
12297
|
type MarketingGatewayPlatform = 'google' | 'facebook' | 'adroll' | 'aliexpress' | 'amazon' | 'bing' | 'criteo' | 'fruugo' | 'pinterest' | 'rakuten_japan' | 'wish' | 'snapchat' | 'stylight';
|
|
12227
12298
|
type MarketingGatewayProductStatus = 'approved' | 'not_approved' | 'pending' | 'not_found' | 'excluded';
|
|
12228
12299
|
type MarketingGatewaySchemaCompatibility = 'google' | 'facebook_primary' | 'facebook_country_override' | 'supplemental';
|
|
12229
|
-
type MatiasItemType = 'physical' | 'digital';
|
|
12230
|
-
type MerchantCohort = 'channel_merchant_pre_cutoff' | 'channel_merchant_post_cutoff' | 'global_e_merchant_pre_cutoff' | 'global_e_merchant_post_cutoff';
|
|
12231
|
-
type MichaelyanItemType = 'physical' | 'digital';
|
|
12232
|
-
type MiljenkoItemType = 'physical' | 'digital';
|
|
12233
12300
|
type MixedBagWeight = '0' | '1' | '2';
|
|
12234
12301
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
12235
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';
|
|
@@ -12257,19 +12324,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12257
12324
|
type OrganizationRestrictionScreeningStatus = 'in_review' | 'fully_reviewed' | 'rejected' | 'unscreened';
|
|
12258
12325
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
12259
12326
|
type Owner = 'flow' | 'organization';
|
|
12260
|
-
type Party = 'merchant' | 'channel_partner' | 'global_e';
|
|
12261
12327
|
type PaymentSummaryStatus = 'authorized' | 'canceled' | 'declined' | 'expired' | 'failed' | 'pending' | 'processed' | 'reversed' | 'review' | 'succeeded';
|
|
12262
12328
|
type PaymentSummaryType = 'authorization' | 'capture' | 'refund' | 'reversal' | 'credit';
|
|
12263
12329
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
12264
12330
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12265
12331
|
type PriceSelector = 'minimum' | 'maximum';
|
|
12266
|
-
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
12267
|
-
type PrincipalType = 'total_order_value' | 'product_order_value' | 'label_value';
|
|
12268
12332
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
12269
12333
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
12270
12334
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
12271
12335
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
12272
|
-
type ProfitStreamKey = 'pre_profit_share' | 'channel_pre_cutoff' | 'channel_post_cutoff' | 'global_e_pre_cutoff' | 'global_e_post_cutoff' | 'duty_assurance';
|
|
12273
12336
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
12274
12337
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
12275
12338
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
@@ -12283,7 +12346,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12283
12346
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
12284
12347
|
type ReportPaymentType = 'credit' | 'debit';
|
|
12285
12348
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
12286
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record';
|
|
12349
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes';
|
|
12287
12350
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
12288
12351
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
12289
12352
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -12291,14 +12354,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12291
12354
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
12292
12355
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
12293
12356
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
12294
|
-
type RevenueType = 'mor' | 'fx' | 'duty_assurance';
|
|
12295
12357
|
type RiskCheck = 'three_d_secure';
|
|
12296
12358
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
12297
|
-
type SerialReservationError = 'duration_too_long' | 'items_not_found' | 'reservation_expired';
|
|
12298
|
-
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
12299
12359
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
12300
12360
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
12301
12361
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
12362
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
12302
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';
|
|
12303
12364
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
12304
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';
|
|
@@ -12310,7 +12371,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12310
12371
|
type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
|
|
12311
12372
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
12312
12373
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
12313
|
-
type ShrutiDemoType = 'digital' | 'physical';
|
|
12314
12374
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
12315
12375
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
12316
12376
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -12319,15 +12379,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12319
12379
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
12320
12380
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
12321
12381
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
12322
|
-
type SvitlanaType = 'physical' | 'digital';
|
|
12323
|
-
type TamItemType = 'physical' | 'digital';
|
|
12324
12382
|
type TariffEligibilityType = 'rex';
|
|
12325
12383
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
12326
12384
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
12327
12385
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
12328
12386
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
12329
12387
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
12330
|
-
type ThiagoItemType = 'digital' | 'physical';
|
|
12331
12388
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
12332
12389
|
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
12333
12390
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
@@ -12478,8 +12535,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12478
12535
|
readonly enable_fee_reversals: boolean;
|
|
12479
12536
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
12480
12537
|
readonly enable_negative_debits: boolean;
|
|
12481
|
-
readonly setup_completed_at?: string;
|
|
12482
|
-
readonly cohort?: io.flow.internal.v0.enums.MerchantCohort;
|
|
12483
12538
|
}
|
|
12484
12539
|
interface AccountSettingsDeleted {
|
|
12485
12540
|
readonly discriminator: 'account_settings_deleted';
|
|
@@ -12501,6 +12556,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12501
12556
|
readonly transfers: io.flow.common.v0.models.Price;
|
|
12502
12557
|
readonly balance: io.flow.common.v0.models.Price;
|
|
12503
12558
|
readonly pending: io.flow.common.v0.models.Price;
|
|
12559
|
+
readonly additional_balances?: io.flow.internal.v0.models.AccountStatisticsAdditionalBalances;
|
|
12560
|
+
}
|
|
12561
|
+
interface AccountStatisticsAdditionalBalances {
|
|
12562
|
+
readonly on_hold: io.flow.common.v0.models.Price;
|
|
12504
12563
|
}
|
|
12505
12564
|
interface AccountSummary {
|
|
12506
12565
|
readonly id: string;
|
|
@@ -12982,11 +13041,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12982
13041
|
readonly queue: string;
|
|
12983
13042
|
readonly count: number;
|
|
12984
13043
|
}
|
|
12985
|
-
interface AlgoliaIndexAssignment {
|
|
12986
|
-
readonly id: string;
|
|
12987
|
-
readonly name: string;
|
|
12988
|
-
readonly application_id: string;
|
|
12989
|
-
}
|
|
12990
13044
|
interface AllItemsExport {
|
|
12991
13045
|
readonly discriminator: 'all_items_export';
|
|
12992
13046
|
readonly event_id: string;
|
|
@@ -13090,6 +13144,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13090
13144
|
readonly keywords?: string[];
|
|
13091
13145
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
13092
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
|
+
}
|
|
13093
13153
|
interface BankAccountReference {
|
|
13094
13154
|
readonly id: string;
|
|
13095
13155
|
}
|
|
@@ -13559,7 +13619,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13559
13619
|
}
|
|
13560
13620
|
interface CallRecord {
|
|
13561
13621
|
readonly id: string;
|
|
13562
|
-
readonly request_body?:
|
|
13622
|
+
readonly request_body?: string;
|
|
13563
13623
|
}
|
|
13564
13624
|
interface CarrierAccount {
|
|
13565
13625
|
readonly id: string;
|
|
@@ -13980,6 +14040,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13980
14040
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
13981
14041
|
readonly order_created_at?: string;
|
|
13982
14042
|
readonly order_updated_at?: string;
|
|
14043
|
+
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
13983
14044
|
}
|
|
13984
14045
|
interface ChannelOrderAcceptanceDeleted {
|
|
13985
14046
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -14565,12 +14626,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14565
14626
|
readonly type: io.flow.internal.v0.enums.ColmItemType;
|
|
14566
14627
|
readonly added_on: string;
|
|
14567
14628
|
}
|
|
14568
|
-
interface ColmItemDeleted {
|
|
14569
|
-
readonly discriminator: 'colm_item_deleted';
|
|
14570
|
-
readonly event_id: string;
|
|
14571
|
-
readonly timestamp: string;
|
|
14572
|
-
readonly id: string;
|
|
14573
|
-
}
|
|
14574
14629
|
interface ColmItemForm {
|
|
14575
14630
|
readonly number: string;
|
|
14576
14631
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -14578,12 +14633,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14578
14633
|
readonly type: io.flow.internal.v0.enums.ColmItemType;
|
|
14579
14634
|
readonly added_on: string;
|
|
14580
14635
|
}
|
|
14581
|
-
interface ColmItemUpserted {
|
|
14582
|
-
readonly discriminator: 'colm_item_upserted';
|
|
14583
|
-
readonly event_id: string;
|
|
14584
|
-
readonly timestamp: string;
|
|
14585
|
-
readonly item: io.flow.internal.v0.models.ColmItem;
|
|
14586
|
-
}
|
|
14587
14636
|
interface CommercialInvoiceComparison {
|
|
14588
14637
|
readonly urls: string[];
|
|
14589
14638
|
}
|
|
@@ -14712,15 +14761,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14712
14761
|
readonly key: string;
|
|
14713
14762
|
readonly description?: string;
|
|
14714
14763
|
}
|
|
14715
|
-
interface Cost {
|
|
14716
|
-
readonly source: io.flow.internal.v0.models.CostRule;
|
|
14717
|
-
readonly amount: number;
|
|
14718
|
-
}
|
|
14719
|
-
interface CostRule {
|
|
14720
|
-
readonly type: io.flow.internal.v0.enums.CostType;
|
|
14721
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
14722
|
-
readonly bearer: io.flow.internal.v0.enums.Party;
|
|
14723
|
-
}
|
|
14724
14764
|
interface CountryPickerCountry {
|
|
14725
14765
|
readonly iso_3166_2: string;
|
|
14726
14766
|
readonly iso_3166_3: string;
|
|
@@ -14930,6 +14970,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14930
14970
|
readonly type_id: string;
|
|
14931
14971
|
readonly transaction_id: string;
|
|
14932
14972
|
}
|
|
14973
|
+
interface DebugBankingDetails {
|
|
14974
|
+
readonly merchant: io.flow.internal.v0.models.MerchantDetails;
|
|
14975
|
+
readonly account: io.flow.internal.v0.models.BankAccount;
|
|
14976
|
+
}
|
|
14933
14977
|
interface DebugDetails {
|
|
14934
14978
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
14935
14979
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
@@ -14966,6 +15010,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14966
15010
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
14967
15011
|
readonly transactions: io.flow.billing.v0.models.Transaction[];
|
|
14968
15012
|
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
15013
|
+
readonly banking: io.flow.internal.v0.models.DebugBankingDetails;
|
|
14969
15014
|
}
|
|
14970
15015
|
interface DebugOrderTransactionForm {
|
|
14971
15016
|
readonly order_id?: string;
|
|
@@ -15084,12 +15129,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15084
15129
|
readonly error: string;
|
|
15085
15130
|
readonly destination: io.flow.common.v0.models.Address;
|
|
15086
15131
|
}
|
|
15087
|
-
interface Details {
|
|
15088
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
15089
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
15090
|
-
readonly upserted_at: string;
|
|
15091
|
-
readonly time_elapsed_since_upserted: number;
|
|
15092
|
-
}
|
|
15093
15132
|
interface Dhl {
|
|
15094
15133
|
readonly discriminator: 'dhl';
|
|
15095
15134
|
readonly export_account_number: string;
|
|
@@ -15161,8 +15200,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15161
15200
|
readonly billable: io.flow.internal.v0.enums.DisputeBillable;
|
|
15162
15201
|
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
15163
15202
|
readonly details: io.flow.internal.v0.unions.DisputeDetails;
|
|
15203
|
+
readonly payment_method?: io.flow.reference.v0.models.PaymentMethod;
|
|
15164
15204
|
readonly issued_at: string;
|
|
15165
15205
|
readonly expires_at?: string;
|
|
15206
|
+
readonly defended_at?: string;
|
|
15166
15207
|
readonly created_at: string;
|
|
15167
15208
|
readonly updated_at?: string;
|
|
15168
15209
|
}
|
|
@@ -15229,6 +15270,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15229
15270
|
readonly category?: io.flow.internal.v0.enums.DisputeCategory;
|
|
15230
15271
|
readonly status?: io.flow.internal.v0.enums.DisputeStatus;
|
|
15231
15272
|
}
|
|
15273
|
+
interface DisputeRecord {
|
|
15274
|
+
readonly id: string;
|
|
15275
|
+
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
15276
|
+
readonly authorization: io.flow.internal.v0.models.ReportingAuthorizationReference;
|
|
15277
|
+
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
15278
|
+
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
15279
|
+
readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
|
|
15280
|
+
readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
15281
|
+
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
15282
|
+
readonly chargeback_amount: io.flow.common.v0.models.MoneyWithBase;
|
|
15283
|
+
}
|
|
15232
15284
|
interface DisputeStatusForm {
|
|
15233
15285
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
15234
15286
|
}
|
|
@@ -15293,57 +15345,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15293
15345
|
readonly parser_version: string;
|
|
15294
15346
|
readonly created_at: string;
|
|
15295
15347
|
}
|
|
15296
|
-
interface DutyRateBulkRequest {
|
|
15297
|
-
readonly discriminator: 'duty_rate_bulk_request';
|
|
15298
|
-
readonly event_id: string;
|
|
15299
|
-
readonly timestamp: string;
|
|
15300
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
15301
|
-
readonly origin: string;
|
|
15302
|
-
readonly destination_tariff_code: Record<string, string>;
|
|
15303
|
-
}
|
|
15304
|
-
interface DutyRateBulkResponse {
|
|
15305
|
-
readonly discriminator: 'duty_rate_bulk_response';
|
|
15306
|
-
readonly event_id: string;
|
|
15307
|
-
readonly timestamp: string;
|
|
15308
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
15309
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate[];
|
|
15310
|
-
}
|
|
15311
|
-
interface DutyRateContext {
|
|
15312
|
-
readonly phrase_id?: string;
|
|
15313
|
-
readonly item_number?: string;
|
|
15314
|
-
readonly product_id?: string;
|
|
15315
|
-
}
|
|
15316
15348
|
interface DutyRateItemSummary {
|
|
15317
15349
|
readonly number: string;
|
|
15318
15350
|
readonly product_id?: string;
|
|
15319
15351
|
}
|
|
15320
|
-
interface DutyRateRequest {
|
|
15321
|
-
readonly discriminator: 'duty_rate_request';
|
|
15322
|
-
readonly event_id: string;
|
|
15323
|
-
readonly timestamp: string;
|
|
15324
|
-
readonly destination: string;
|
|
15325
|
-
readonly origin: string;
|
|
15326
|
-
readonly tariff_code: string;
|
|
15327
|
-
}
|
|
15328
|
-
interface DutyRateResponse {
|
|
15329
|
-
readonly discriminator: 'duty_rate_response';
|
|
15330
|
-
readonly event_id: string;
|
|
15331
|
-
readonly timestamp: string;
|
|
15332
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate;
|
|
15333
|
-
}
|
|
15334
15352
|
interface DutyRateSummary {
|
|
15335
15353
|
readonly tariff_code: string;
|
|
15336
15354
|
readonly origin: string;
|
|
15337
15355
|
readonly destination: string;
|
|
15338
15356
|
}
|
|
15339
|
-
interface DutyRateUpserted {
|
|
15340
|
-
readonly discriminator: 'duty_rate_upserted';
|
|
15341
|
-
readonly event_id: string;
|
|
15342
|
-
readonly timestamp: string;
|
|
15343
|
-
readonly source_event: io.flow.internal.v0.models.DutyRawUpserted;
|
|
15344
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate;
|
|
15345
|
-
readonly unparsable_rates: string[];
|
|
15346
|
-
}
|
|
15347
15357
|
interface DutyRatesDataSummary {
|
|
15348
15358
|
readonly id: string;
|
|
15349
15359
|
readonly item_summary: io.flow.internal.v0.models.DutyRateItemSummary;
|
|
@@ -15369,19 +15379,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15369
15379
|
readonly version: string;
|
|
15370
15380
|
readonly created_at: string;
|
|
15371
15381
|
}
|
|
15372
|
-
interface DutyRawBulkUpserted {
|
|
15373
|
-
readonly discriminator: 'duty_raw_bulk_upserted';
|
|
15374
|
-
readonly event_id: string;
|
|
15375
|
-
readonly timestamp: string;
|
|
15376
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
15377
|
-
readonly duty_raw: io.flow.internal.v0.models.DutyRaw[];
|
|
15378
|
-
}
|
|
15379
|
-
interface DutyRawUpserted {
|
|
15380
|
-
readonly discriminator: 'duty_raw_upserted';
|
|
15381
|
-
readonly event_id: string;
|
|
15382
|
-
readonly timestamp: string;
|
|
15383
|
-
readonly duty_raw: io.flow.internal.v0.models.DutyRaw;
|
|
15384
|
-
}
|
|
15385
15382
|
interface DutySimpleExpression {
|
|
15386
15383
|
readonly discriminator: 'duty_simple_expression';
|
|
15387
15384
|
readonly type: io.flow.internal.v0.enums.DutySimpleExpressionType;
|
|
@@ -15412,33 +15409,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15412
15409
|
readonly timestamp: string;
|
|
15413
15410
|
readonly duty_transaction: io.flow.internal.v0.models.DutyTransaction;
|
|
15414
15411
|
}
|
|
15415
|
-
interface EldarItem {
|
|
15416
|
-
readonly id: string;
|
|
15417
|
-
readonly number: string;
|
|
15418
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
15419
|
-
readonly description?: string;
|
|
15420
|
-
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
15421
|
-
readonly added_on: string;
|
|
15422
|
-
}
|
|
15423
|
-
interface EldarItemDeleted {
|
|
15424
|
-
readonly discriminator: 'eldar_item_deleted';
|
|
15425
|
-
readonly event_id: string;
|
|
15426
|
-
readonly timestamp: string;
|
|
15427
|
-
readonly id: string;
|
|
15428
|
-
}
|
|
15429
|
-
interface EldarItemForm {
|
|
15430
|
-
readonly number: string;
|
|
15431
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
15432
|
-
readonly description?: string;
|
|
15433
|
-
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
15434
|
-
readonly added_on: string;
|
|
15435
|
-
}
|
|
15436
|
-
interface EldarItemUpserted {
|
|
15437
|
-
readonly discriminator: 'eldar_item_upserted';
|
|
15438
|
-
readonly event_id: string;
|
|
15439
|
-
readonly timestamp: string;
|
|
15440
|
-
readonly item: io.flow.internal.v0.models.EldarItem;
|
|
15441
|
-
}
|
|
15442
15412
|
interface EmailForm {
|
|
15443
15413
|
readonly to: string[];
|
|
15444
15414
|
readonly cc?: string[];
|
|
@@ -16631,33 +16601,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16631
16601
|
readonly discriminator: 'google_tag_manager';
|
|
16632
16602
|
readonly tracker_id: string;
|
|
16633
16603
|
}
|
|
16634
|
-
interface HarinathItem {
|
|
16635
|
-
readonly id: string;
|
|
16636
|
-
readonly number: string;
|
|
16637
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
16638
|
-
readonly description?: string;
|
|
16639
|
-
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
16640
|
-
readonly added_on: string;
|
|
16641
|
-
}
|
|
16642
|
-
interface HarinathItemDeleted {
|
|
16643
|
-
readonly discriminator: 'harinath_item_deleted';
|
|
16644
|
-
readonly event_id: string;
|
|
16645
|
-
readonly timestamp: string;
|
|
16646
|
-
readonly id: string;
|
|
16647
|
-
}
|
|
16648
|
-
interface HarinathItemForm {
|
|
16649
|
-
readonly number: string;
|
|
16650
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
16651
|
-
readonly description?: string;
|
|
16652
|
-
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
16653
|
-
readonly added_on: string;
|
|
16654
|
-
}
|
|
16655
|
-
interface HarinathItemUpserted {
|
|
16656
|
-
readonly discriminator: 'harinath_item_upserted';
|
|
16657
|
-
readonly event_id: string;
|
|
16658
|
-
readonly timestamp: string;
|
|
16659
|
-
readonly item: io.flow.internal.v0.models.HarinathItem;
|
|
16660
|
-
}
|
|
16661
16604
|
interface HarmonizationClassificationStatisticsData {
|
|
16662
16605
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
16663
16606
|
}
|
|
@@ -16767,19 +16710,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16767
16710
|
interface Hs6Metadata {
|
|
16768
16711
|
readonly description: string;
|
|
16769
16712
|
}
|
|
16770
|
-
interface HybrisCatalogItemsImportRequest {
|
|
16771
|
-
readonly discriminator: 'hybris_catalog_items_import_request';
|
|
16772
|
-
readonly event_id: string;
|
|
16773
|
-
readonly timestamp: string;
|
|
16774
|
-
readonly organization: string;
|
|
16775
|
-
readonly request: io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
16776
|
-
}
|
|
16777
|
-
interface HybrisCatalogItemsImportRequestData {
|
|
16778
|
-
readonly id: string;
|
|
16779
|
-
readonly import_id: string;
|
|
16780
|
-
readonly source_url: string;
|
|
16781
|
-
readonly filename?: string;
|
|
16782
|
-
}
|
|
16783
16713
|
interface ImportCompleted {
|
|
16784
16714
|
readonly discriminator: 'import_completed';
|
|
16785
16715
|
readonly event_id: string;
|
|
@@ -16796,20 +16726,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16796
16726
|
readonly import_id: string;
|
|
16797
16727
|
readonly error: string;
|
|
16798
16728
|
}
|
|
16799
|
-
interface IndexAssignmentDeleted {
|
|
16800
|
-
readonly discriminator: 'index_assignment_deleted';
|
|
16801
|
-
readonly event_id: string;
|
|
16802
|
-
readonly timestamp: string;
|
|
16803
|
-
readonly organization: string;
|
|
16804
|
-
readonly id: string;
|
|
16805
|
-
}
|
|
16806
|
-
interface IndexAssignmentUpserted {
|
|
16807
|
-
readonly discriminator: 'index_assignment_upserted';
|
|
16808
|
-
readonly event_id: string;
|
|
16809
|
-
readonly timestamp: string;
|
|
16810
|
-
readonly organization: string;
|
|
16811
|
-
readonly assignment: io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
16812
|
-
}
|
|
16813
16729
|
interface InstallForm {
|
|
16814
16730
|
readonly token: string;
|
|
16815
16731
|
}
|
|
@@ -16923,17 +16839,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16923
16839
|
readonly inventory_item_id: number;
|
|
16924
16840
|
readonly shopify_shop_id: number;
|
|
16925
16841
|
readonly shopify_inventory_item: io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
16926
|
-
|
|
16927
|
-
interface InventoryOrganizationSettings {
|
|
16928
|
-
readonly id: string;
|
|
16929
|
-
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
16930
|
-
readonly inventory_check_service: io.flow.internal.v0.enums.InventoryCheckService;
|
|
16931
|
-
readonly inventory_check_service_root_url?: string;
|
|
16932
|
-
}
|
|
16933
|
-
interface InventoryOrganizationSettingsForm {
|
|
16934
|
-
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
16935
|
-
readonly inventory_check_service: io.flow.internal.v0.enums.InventoryCheckService;
|
|
16936
|
-
readonly inventory_check_service_root_url?: string;
|
|
16842
|
+
readonly deleted_at?: string;
|
|
16937
16843
|
}
|
|
16938
16844
|
interface Invoice {
|
|
16939
16845
|
readonly id: string;
|
|
@@ -17096,9 +17002,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17096
17002
|
readonly filter: string;
|
|
17097
17003
|
readonly values: string[];
|
|
17098
17004
|
}
|
|
17099
|
-
interface ItemForm {
|
|
17100
|
-
readonly amount?: number;
|
|
17101
|
-
}
|
|
17102
17005
|
interface ItemFormImportRequest {
|
|
17103
17006
|
readonly discriminator: 'item_form_import_request';
|
|
17104
17007
|
readonly event_id: string;
|
|
@@ -17257,33 +17160,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17257
17160
|
readonly standard_asset_urls?: string;
|
|
17258
17161
|
readonly descriptive_asset_urls?: string;
|
|
17259
17162
|
}
|
|
17260
|
-
interface KonstantinItem {
|
|
17261
|
-
readonly id: string;
|
|
17262
|
-
readonly number: string;
|
|
17263
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
17264
|
-
readonly description?: string;
|
|
17265
|
-
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
17266
|
-
readonly added_on: string;
|
|
17267
|
-
}
|
|
17268
|
-
interface KonstantinItemDeleted {
|
|
17269
|
-
readonly discriminator: 'konstantin_item_deleted';
|
|
17270
|
-
readonly event_id: string;
|
|
17271
|
-
readonly timestamp: string;
|
|
17272
|
-
readonly id: string;
|
|
17273
|
-
}
|
|
17274
|
-
interface KonstantinItemForm {
|
|
17275
|
-
readonly number: string;
|
|
17276
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
17277
|
-
readonly description?: string;
|
|
17278
|
-
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
17279
|
-
readonly added_on: string;
|
|
17280
|
-
}
|
|
17281
|
-
interface KonstantinItemUpserted {
|
|
17282
|
-
readonly discriminator: 'konstantin_item_upserted';
|
|
17283
|
-
readonly event_id: string;
|
|
17284
|
-
readonly timestamp: string;
|
|
17285
|
-
readonly item: io.flow.internal.v0.models.KonstantinItem;
|
|
17286
|
-
}
|
|
17287
17163
|
interface LabProjectSettings {
|
|
17288
17164
|
readonly id: string;
|
|
17289
17165
|
readonly flow_lab_project_key: string;
|
|
@@ -18168,33 +18044,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18168
18044
|
interface MarketsOrderSummary {
|
|
18169
18045
|
readonly id: string;
|
|
18170
18046
|
}
|
|
18171
|
-
interface MatiasItem {
|
|
18172
|
-
readonly id: string;
|
|
18173
|
-
readonly number: string;
|
|
18174
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18175
|
-
readonly description?: string;
|
|
18176
|
-
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
18177
|
-
readonly added_on: string;
|
|
18178
|
-
}
|
|
18179
|
-
interface MatiasItemDeleted {
|
|
18180
|
-
readonly discriminator: 'matias_item_deleted';
|
|
18181
|
-
readonly event_id: string;
|
|
18182
|
-
readonly timestamp: string;
|
|
18183
|
-
readonly id: string;
|
|
18184
|
-
}
|
|
18185
|
-
interface MatiasItemForm {
|
|
18186
|
-
readonly number: string;
|
|
18187
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18188
|
-
readonly description?: string;
|
|
18189
|
-
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
18190
|
-
readonly added_on: string;
|
|
18191
|
-
}
|
|
18192
|
-
interface MatiasItemUpserted {
|
|
18193
|
-
readonly discriminator: 'matias_item_upserted';
|
|
18194
|
-
readonly event_id: string;
|
|
18195
|
-
readonly timestamp: string;
|
|
18196
|
-
readonly item: io.flow.internal.v0.models.MatiasItem;
|
|
18197
|
-
}
|
|
18198
18047
|
interface Merchant {
|
|
18199
18048
|
readonly id: string;
|
|
18200
18049
|
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
@@ -18213,6 +18062,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18213
18062
|
readonly timestamp: string;
|
|
18214
18063
|
readonly id: string;
|
|
18215
18064
|
}
|
|
18065
|
+
interface MerchantDetails {
|
|
18066
|
+
readonly name: string;
|
|
18067
|
+
}
|
|
18216
18068
|
interface MerchantFees {
|
|
18217
18069
|
readonly duty_guarantee: number;
|
|
18218
18070
|
readonly mor: number;
|
|
@@ -18324,68 +18176,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18324
18176
|
readonly id: string;
|
|
18325
18177
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
18326
18178
|
}
|
|
18327
|
-
interface MichaelyanItem {
|
|
18328
|
-
readonly id: string;
|
|
18329
|
-
readonly number: string;
|
|
18330
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18331
|
-
readonly description?: string;
|
|
18332
|
-
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
18333
|
-
readonly added_on: string;
|
|
18334
|
-
}
|
|
18335
|
-
interface MichaelyanItemDeleted {
|
|
18336
|
-
readonly discriminator: 'michaelyan_item_deleted';
|
|
18337
|
-
readonly event_id: string;
|
|
18338
|
-
readonly timestamp: string;
|
|
18339
|
-
readonly id: string;
|
|
18340
|
-
}
|
|
18341
|
-
interface MichaelyanItemForm {
|
|
18342
|
-
readonly number: string;
|
|
18343
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18344
|
-
readonly description?: string;
|
|
18345
|
-
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
18346
|
-
readonly added_on: string;
|
|
18347
|
-
}
|
|
18348
|
-
interface MichaelyanItemUpserted {
|
|
18349
|
-
readonly discriminator: 'michaelyan_item_upserted';
|
|
18350
|
-
readonly event_id: string;
|
|
18351
|
-
readonly timestamp: string;
|
|
18352
|
-
readonly item: io.flow.internal.v0.models.MichaelyanItem;
|
|
18353
|
-
}
|
|
18354
|
-
interface MiljenkoItem {
|
|
18355
|
-
readonly id: string;
|
|
18356
|
-
readonly number: string;
|
|
18357
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18358
|
-
readonly description?: string;
|
|
18359
|
-
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
18360
|
-
readonly added_on: string;
|
|
18361
|
-
}
|
|
18362
|
-
interface MiljenkoItemDeleted {
|
|
18363
|
-
readonly discriminator: 'miljenko_item_deleted';
|
|
18364
|
-
readonly event_id: string;
|
|
18365
|
-
readonly timestamp: string;
|
|
18366
|
-
readonly id: string;
|
|
18367
|
-
}
|
|
18368
|
-
interface MiljenkoItemForm {
|
|
18369
|
-
readonly number: string;
|
|
18370
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
18371
|
-
readonly description?: string;
|
|
18372
|
-
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
18373
|
-
readonly added_on: string;
|
|
18374
|
-
}
|
|
18375
|
-
interface MiljenkoItemUpserted {
|
|
18376
|
-
readonly discriminator: 'miljenko_item_upserted';
|
|
18377
|
-
readonly event_id: string;
|
|
18378
|
-
readonly timestamp: string;
|
|
18379
|
-
readonly item: io.flow.internal.v0.models.MiljenkoItem;
|
|
18380
|
-
}
|
|
18381
|
-
interface MoneyPercentage {
|
|
18382
|
-
readonly discriminator: 'percentage';
|
|
18383
|
-
readonly percent: number;
|
|
18384
|
-
}
|
|
18385
18179
|
interface NegativeDebitMetrics {
|
|
18386
18180
|
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
18181
|
+
readonly first_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
18387
18182
|
readonly second_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
18388
18183
|
readonly third_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
18184
|
+
readonly forth_plus_attempts: io.flow.internal.v0.models.AttemptStatistics;
|
|
18389
18185
|
}
|
|
18390
18186
|
interface NextBillingStatement {
|
|
18391
18187
|
readonly date: string;
|
|
@@ -18628,6 +18424,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18628
18424
|
readonly shopify_order_id?: string;
|
|
18629
18425
|
readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
|
|
18630
18426
|
}
|
|
18427
|
+
interface OrderEditSummary {
|
|
18428
|
+
readonly external_order_edit_reference: string;
|
|
18429
|
+
readonly edited_at: string;
|
|
18430
|
+
}
|
|
18631
18431
|
interface OrderFulfillmentDeleted {
|
|
18632
18432
|
readonly discriminator: 'order_fulfillment_deleted';
|
|
18633
18433
|
readonly event_id: string;
|
|
@@ -19032,6 +18832,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19032
18832
|
readonly product_count: number;
|
|
19033
18833
|
readonly restricted_product_count: number;
|
|
19034
18834
|
readonly last_order_submitted_at?: string;
|
|
18835
|
+
readonly matching_positive_keywords: string[];
|
|
18836
|
+
readonly product_categories: string[];
|
|
19035
18837
|
}
|
|
19036
18838
|
interface OrganizationMetadataDeleted {
|
|
19037
18839
|
readonly discriminator: 'organization_metadata_deleted';
|
|
@@ -19378,6 +19180,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19378
19180
|
readonly organization: string;
|
|
19379
19181
|
readonly partner_organization_settings: io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
19380
19182
|
}
|
|
19183
|
+
interface PartnerTrackingSubscriptionDeleted {
|
|
19184
|
+
readonly discriminator: 'partner_tracking_subscription_deleted';
|
|
19185
|
+
readonly event_id: string;
|
|
19186
|
+
readonly timestamp: string;
|
|
19187
|
+
readonly id: string;
|
|
19188
|
+
}
|
|
19189
|
+
interface PartnerTrackingSubscriptionUpserted {
|
|
19190
|
+
readonly discriminator: 'partner_tracking_subscription_upserted';
|
|
19191
|
+
readonly event_id: string;
|
|
19192
|
+
readonly timestamp: string;
|
|
19193
|
+
readonly partner_tracking_subscription: io.flow.partner.v0.models.PartnerTrackingSubscription;
|
|
19194
|
+
}
|
|
19381
19195
|
interface Passphrase {
|
|
19382
19196
|
readonly id: string;
|
|
19383
19197
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
@@ -19519,6 +19333,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19519
19333
|
readonly payment_id: string;
|
|
19520
19334
|
readonly payer_id: string;
|
|
19521
19335
|
}
|
|
19336
|
+
interface PaypalDisputeDeleted {
|
|
19337
|
+
readonly discriminator: 'paypal_dispute_deleted';
|
|
19338
|
+
readonly event_id: string;
|
|
19339
|
+
readonly timestamp: string;
|
|
19340
|
+
readonly id: string;
|
|
19341
|
+
}
|
|
19342
|
+
interface PaypalDisputeUpserted {
|
|
19343
|
+
readonly discriminator: 'paypal_dispute_upserted';
|
|
19344
|
+
readonly event_id: string;
|
|
19345
|
+
readonly timestamp: string;
|
|
19346
|
+
readonly dispute: io.flow.internal.v0.models.PaypalInternalDispute;
|
|
19347
|
+
}
|
|
19522
19348
|
interface PaypalExecutionDeleted {
|
|
19523
19349
|
readonly discriminator: 'paypal_execution_deleted';
|
|
19524
19350
|
readonly event_id: string;
|
|
@@ -19531,6 +19357,46 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19531
19357
|
readonly timestamp: string;
|
|
19532
19358
|
readonly execution: io.flow.internal.v0.models.PaypalInternalExecution;
|
|
19533
19359
|
}
|
|
19360
|
+
interface PaypalInternalDispute {
|
|
19361
|
+
readonly id: string;
|
|
19362
|
+
readonly dispute_id: string;
|
|
19363
|
+
readonly create_time: string;
|
|
19364
|
+
readonly update_time: string;
|
|
19365
|
+
readonly buyer_transaction_id?: string;
|
|
19366
|
+
readonly seller_transaction_id?: string;
|
|
19367
|
+
readonly transaction_reference_id?: string;
|
|
19368
|
+
readonly transaction_create_time?: string;
|
|
19369
|
+
readonly transaction_status?: string;
|
|
19370
|
+
readonly transaction_gross_amount?: string;
|
|
19371
|
+
readonly transaction_gross_currency?: string;
|
|
19372
|
+
readonly transaction_invoice_number?: string;
|
|
19373
|
+
readonly transaction_custom?: string;
|
|
19374
|
+
readonly buyer_name?: string;
|
|
19375
|
+
readonly seller_merchant_id?: string;
|
|
19376
|
+
readonly seller_merchant_name?: string;
|
|
19377
|
+
readonly items?: any[];
|
|
19378
|
+
readonly other_disputed_transactions?: any[];
|
|
19379
|
+
readonly reason: string;
|
|
19380
|
+
readonly status: string;
|
|
19381
|
+
readonly dispute_amount: string;
|
|
19382
|
+
readonly dispute_currency: string;
|
|
19383
|
+
readonly dispute_outcome_code?: string;
|
|
19384
|
+
readonly dispute_outcome_amount_refunded?: string;
|
|
19385
|
+
readonly dispute_outcome_currency?: string;
|
|
19386
|
+
readonly dispute_life_cycle_stage: string;
|
|
19387
|
+
readonly dispute_channel: string;
|
|
19388
|
+
readonly messages?: any[];
|
|
19389
|
+
readonly evidences?: any[];
|
|
19390
|
+
readonly buyer_response_due_date?: string;
|
|
19391
|
+
readonly seller_response_due_date?: string;
|
|
19392
|
+
readonly offer?: any;
|
|
19393
|
+
readonly communication_details?: any;
|
|
19394
|
+
readonly links?: any[];
|
|
19395
|
+
readonly previous_status?: string;
|
|
19396
|
+
readonly updated_by_user_id: string;
|
|
19397
|
+
readonly created_at: string;
|
|
19398
|
+
readonly updated_at: string;
|
|
19399
|
+
}
|
|
19534
19400
|
interface PaypalInternalExecution {
|
|
19535
19401
|
readonly id: string;
|
|
19536
19402
|
readonly currency: string;
|
|
@@ -19734,47 +19600,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19734
19600
|
readonly organization: string;
|
|
19735
19601
|
readonly quote_request: io.flow.internal.v0.models.QuoteRequest;
|
|
19736
19602
|
}
|
|
19737
|
-
interface PricingIndicator {
|
|
19738
|
-
readonly discriminator: 'pricing_indicator';
|
|
19739
|
-
readonly event_id: string;
|
|
19740
|
-
readonly timestamp: string;
|
|
19741
|
-
readonly organization: string;
|
|
19742
|
-
readonly published_from: io.flow.internal.v0.enums.ServiceName;
|
|
19743
|
-
readonly status: io.flow.internal.v0.enums.PricingIndicatorStatus;
|
|
19744
|
-
readonly event_identifier: string;
|
|
19745
|
-
readonly details: io.flow.internal.v0.models.Details;
|
|
19746
|
-
}
|
|
19747
|
-
interface PricingIndicatorDynamo {
|
|
19748
|
-
readonly organization_id: string;
|
|
19749
|
-
readonly item_number: string;
|
|
19750
|
-
readonly experience_key: string;
|
|
19751
|
-
readonly upserted_at: string;
|
|
19752
|
-
readonly time_elapsed_since_upserted: number;
|
|
19753
|
-
readonly event_identifier: string;
|
|
19754
|
-
readonly status: io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
|
|
19755
|
-
readonly published_at: string;
|
|
19756
|
-
readonly published_from: io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
|
|
19757
|
-
readonly expiration_time_in_epoch: number;
|
|
19758
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
19759
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
19760
|
-
}
|
|
19761
|
-
interface Principal {
|
|
19762
|
-
readonly type: io.flow.internal.v0.enums.PrincipalType;
|
|
19763
|
-
readonly amount: number;
|
|
19764
|
-
}
|
|
19765
19603
|
interface PrioritizedCenterReference {
|
|
19766
19604
|
readonly center_key: string;
|
|
19767
19605
|
readonly position: number;
|
|
19768
19606
|
}
|
|
19769
|
-
interface ProcessedPaymentSummary {
|
|
19770
|
-
readonly type: io.flow.reference.v0.enums.PaymentMethodCapability;
|
|
19771
|
-
readonly amount: number;
|
|
19772
|
-
readonly currency: io.flow.reference.v0.models.Currency;
|
|
19773
|
-
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
19774
|
-
readonly card_issuer_country?: io.flow.reference.v0.models.Country;
|
|
19775
|
-
readonly shipping_address_country?: io.flow.reference.v0.models.Country;
|
|
19776
|
-
readonly billing_address_country?: io.flow.reference.v0.models.Country;
|
|
19777
|
-
}
|
|
19778
19607
|
interface ProcessingTransaction {
|
|
19779
19608
|
readonly discriminator: 'processing_transaction';
|
|
19780
19609
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -19956,42 +19785,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19956
19785
|
readonly destination_amount: number;
|
|
19957
19786
|
readonly quantity: number;
|
|
19958
19787
|
}
|
|
19959
|
-
interface Profit {
|
|
19960
|
-
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
19961
|
-
readonly principal: io.flow.internal.v0.models.Principal;
|
|
19962
|
-
readonly revenue: io.flow.internal.v0.models.Revenue[];
|
|
19963
|
-
readonly costs: io.flow.internal.v0.models.Cost[];
|
|
19964
|
-
readonly amount: number;
|
|
19965
|
-
readonly splits: io.flow.internal.v0.models.ProfitSplit[];
|
|
19966
|
-
}
|
|
19967
|
-
interface ProfitShare {
|
|
19968
|
-
readonly order: io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
19969
|
-
readonly profits: io.flow.internal.v0.models.Profit[];
|
|
19970
|
-
}
|
|
19971
|
-
interface ProfitShareOrderReference {
|
|
19972
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
19973
|
-
readonly number: string;
|
|
19974
|
-
}
|
|
19975
|
-
interface ProfitSharePlan {
|
|
19976
|
-
readonly order: io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
19977
|
-
readonly streams: io.flow.internal.v0.models.ProfitStream[];
|
|
19978
|
-
}
|
|
19979
|
-
interface ProfitSplit {
|
|
19980
|
-
readonly rule: io.flow.internal.v0.models.ProfitSplitRule;
|
|
19981
|
-
readonly amount: number;
|
|
19982
|
-
}
|
|
19983
|
-
interface ProfitSplitRule {
|
|
19984
|
-
readonly payee: io.flow.internal.v0.enums.Party;
|
|
19985
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
19986
|
-
}
|
|
19987
|
-
interface ProfitStream {
|
|
19988
|
-
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
19989
|
-
readonly description: string;
|
|
19990
|
-
readonly principal: io.flow.internal.v0.enums.PrincipalType;
|
|
19991
|
-
readonly revenue: io.flow.internal.v0.models.RevenueRule[];
|
|
19992
|
-
readonly costs: io.flow.internal.v0.models.CostRule[];
|
|
19993
|
-
readonly splits: io.flow.internal.v0.models.ProfitSplitRule[];
|
|
19994
|
-
}
|
|
19995
19788
|
interface ProofOfPostingExternallyFulfilled {
|
|
19996
19789
|
readonly discriminator: 'external';
|
|
19997
19790
|
readonly external_fulfillment_proof_id: string;
|
|
@@ -20473,6 +20266,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20473
20266
|
readonly from?: string;
|
|
20474
20267
|
readonly to?: string;
|
|
20475
20268
|
readonly payment_type?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
20269
|
+
readonly organizations?: io.flow.internal.v0.models.ReportOrganizationReference[];
|
|
20476
20270
|
readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
20477
20271
|
readonly recipients?: string[];
|
|
20478
20272
|
}
|
|
@@ -20483,6 +20277,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20483
20277
|
readonly organization_id: string;
|
|
20484
20278
|
readonly order_number: string;
|
|
20485
20279
|
}
|
|
20280
|
+
interface ReportOrganizationReference {
|
|
20281
|
+
readonly organization_id: string;
|
|
20282
|
+
}
|
|
20486
20283
|
interface ReportOwner {
|
|
20487
20284
|
readonly name: string;
|
|
20488
20285
|
}
|
|
@@ -20547,9 +20344,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20547
20344
|
readonly sales_records?: any[];
|
|
20548
20345
|
readonly refund_records?: any[];
|
|
20549
20346
|
}
|
|
20550
|
-
interface ReportingEntity {
|
|
20551
|
-
readonly id: string;
|
|
20552
|
-
}
|
|
20553
20347
|
interface ReportingFulfillment {
|
|
20554
20348
|
readonly id: string;
|
|
20555
20349
|
readonly sequence_number: number;
|
|
@@ -20625,6 +20419,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20625
20419
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20626
20420
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20627
20421
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20422
|
+
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
20628
20423
|
}
|
|
20629
20424
|
interface ReportingMonetaryValue {
|
|
20630
20425
|
readonly transaction: number;
|
|
@@ -20911,6 +20706,45 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20911
20706
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
20912
20707
|
readonly count: number;
|
|
20913
20708
|
}
|
|
20709
|
+
interface RestrictionsDailyops {
|
|
20710
|
+
readonly id: string;
|
|
20711
|
+
readonly report_date: string;
|
|
20712
|
+
readonly num_orgs_setup_complete_with_pvs: number;
|
|
20713
|
+
readonly num_products_setup_complete_with_pvs: number;
|
|
20714
|
+
readonly num_orgs_transacting_with_pvs: number;
|
|
20715
|
+
readonly num_products_transacting_with_pvs: number;
|
|
20716
|
+
readonly oldest_pv_product_date_setup_complete: string;
|
|
20717
|
+
readonly oldest_pv_product_date_transacting: string;
|
|
20718
|
+
readonly num_orgs_setup_complete_prs: number;
|
|
20719
|
+
readonly num_products_setup_complete_prs: number;
|
|
20720
|
+
readonly num_orgs_transacting_prs: number;
|
|
20721
|
+
readonly num_products_transacting_prs: number;
|
|
20722
|
+
readonly oldest_pr_product_date_setup_complete: string;
|
|
20723
|
+
readonly oldest_pr_date_transacting: string;
|
|
20724
|
+
readonly percent_products_reviewed_transacting: number;
|
|
20725
|
+
readonly num_pv_inflow_net_new: number;
|
|
20726
|
+
readonly num_pv_outflow_human_decisions: number;
|
|
20727
|
+
readonly num_pv_outflow_auto_review_decisions: number;
|
|
20728
|
+
readonly num_pv_outflow_side_effect_decisions: number;
|
|
20729
|
+
readonly num_pr_inflow_net_new: number;
|
|
20730
|
+
readonly num_pr_outflow_human_decisions: number;
|
|
20731
|
+
readonly num_pr_outflow_auto_review_decisions: number;
|
|
20732
|
+
readonly num_pr_outflow_side_effect_decisions: number;
|
|
20733
|
+
readonly num_pending_decisions_transacting: number;
|
|
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
|
+
}
|
|
20914
20748
|
interface ResyncByDestinations {
|
|
20915
20749
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
20916
20750
|
}
|
|
@@ -20984,17 +20818,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20984
20818
|
readonly discriminator: 'by_refund';
|
|
20985
20819
|
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
20986
20820
|
}
|
|
20987
|
-
interface Revenue {
|
|
20988
|
-
readonly source: io.flow.internal.v0.models.RevenueRule;
|
|
20989
|
-
readonly amount: number;
|
|
20990
|
-
}
|
|
20991
20821
|
interface RevenueRecord {
|
|
20992
20822
|
readonly id: string;
|
|
20993
20823
|
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
20994
20824
|
readonly parent?: io.flow.internal.v0.models.RecordReference;
|
|
20995
20825
|
readonly type: io.flow.internal.v0.enums.RevenueRecordType;
|
|
20996
20826
|
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
20997
|
-
readonly entity: io.flow.internal.v0.models.ReportingEntity;
|
|
20998
20827
|
readonly vendor: io.flow.internal.v0.models.ReportingVendor;
|
|
20999
20828
|
readonly currencies: io.flow.internal.v0.models.ReportingCurrencies;
|
|
21000
20829
|
readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
|
|
@@ -21019,10 +20848,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21019
20848
|
readonly organization: string;
|
|
21020
20849
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
21021
20850
|
}
|
|
21022
|
-
interface RevenueRule {
|
|
21023
|
-
readonly type: io.flow.internal.v0.enums.RevenueType;
|
|
21024
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
21025
|
-
}
|
|
21026
20851
|
interface RoutingAccount {
|
|
21027
20852
|
readonly discriminator: 'routing_account';
|
|
21028
20853
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -21269,6 +21094,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21269
21094
|
interface ShopifyGrantsCheck {
|
|
21270
21095
|
readonly placeholder: string;
|
|
21271
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
|
+
}
|
|
21272
21134
|
interface ShopifyMarketsDiscrepancy {
|
|
21273
21135
|
readonly organization_id: string;
|
|
21274
21136
|
readonly count: number;
|
|
@@ -21309,6 +21171,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21309
21171
|
readonly organization: string;
|
|
21310
21172
|
readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
21311
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
|
+
}
|
|
21312
21185
|
interface ShopifyMarketsOrderUpserted {
|
|
21313
21186
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
21314
21187
|
readonly event_id: string;
|
|
@@ -21564,6 +21437,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21564
21437
|
readonly send_order_receipt: boolean;
|
|
21565
21438
|
readonly send_inventory_update: boolean;
|
|
21566
21439
|
}
|
|
21440
|
+
interface ShopifyPartnerWebhook {
|
|
21441
|
+
readonly placeholder?: boolean;
|
|
21442
|
+
}
|
|
21443
|
+
interface ShopifyPartnerWebhookRaw {
|
|
21444
|
+
readonly placeholder?: boolean;
|
|
21445
|
+
}
|
|
21567
21446
|
interface ShopifyPaymentSummary {
|
|
21568
21447
|
readonly description: string;
|
|
21569
21448
|
readonly address?: io.flow.common.v0.models.Address;
|
|
@@ -21747,33 +21626,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21747
21626
|
readonly order_discount: number;
|
|
21748
21627
|
readonly total: number;
|
|
21749
21628
|
}
|
|
21750
|
-
interface ShrutiDemoItem {
|
|
21751
|
-
readonly id: string;
|
|
21752
|
-
readonly number: string;
|
|
21753
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21754
|
-
readonly description?: string;
|
|
21755
|
-
readonly type: io.flow.internal.v0.enums.ShrutiDemoType;
|
|
21756
|
-
readonly added_on: string;
|
|
21757
|
-
}
|
|
21758
|
-
interface ShrutiDemoItemDeleted {
|
|
21759
|
-
readonly discriminator: 'shruti_demo_item_deleted';
|
|
21760
|
-
readonly event_id: string;
|
|
21761
|
-
readonly timestamp: string;
|
|
21762
|
-
readonly id: string;
|
|
21763
|
-
}
|
|
21764
|
-
interface ShrutiDemoItemForm {
|
|
21765
|
-
readonly number: string;
|
|
21766
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21767
|
-
readonly description?: string;
|
|
21768
|
-
readonly type: io.flow.internal.v0.enums.ShrutiDemoType;
|
|
21769
|
-
readonly added_on: string;
|
|
21770
|
-
}
|
|
21771
|
-
interface ShrutiDemoItemUpserted {
|
|
21772
|
-
readonly discriminator: 'shruti_demo_item_upserted';
|
|
21773
|
-
readonly event_id: string;
|
|
21774
|
-
readonly timestamp: string;
|
|
21775
|
-
readonly item: io.flow.internal.v0.models.ShrutiDemoItem;
|
|
21776
|
-
}
|
|
21777
21629
|
interface SimpleAccountReference {
|
|
21778
21630
|
readonly id: string;
|
|
21779
21631
|
}
|
|
@@ -22180,61 +22032,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22180
22032
|
readonly discriminator: 'supported_labels';
|
|
22181
22033
|
readonly values: io.flow.internal.v0.models.LabelAliases[];
|
|
22182
22034
|
}
|
|
22183
|
-
interface SvitlanaItem {
|
|
22184
|
-
readonly id: string;
|
|
22185
|
-
readonly number: string;
|
|
22186
|
-
readonly amount: number;
|
|
22187
|
-
readonly description?: string;
|
|
22188
|
-
readonly type: io.flow.internal.v0.enums.SvitlanaType;
|
|
22189
|
-
readonly added_on: string;
|
|
22190
|
-
}
|
|
22191
|
-
interface SvitlanaItemDeleted {
|
|
22192
|
-
readonly discriminator: 'svitlana_item_deleted';
|
|
22193
|
-
readonly event_id: string;
|
|
22194
|
-
readonly timestamp: string;
|
|
22195
|
-
readonly id: string;
|
|
22196
|
-
}
|
|
22197
|
-
interface SvitlanaItemForm {
|
|
22198
|
-
readonly number: string;
|
|
22199
|
-
readonly amount: number;
|
|
22200
|
-
readonly description?: string;
|
|
22201
|
-
readonly type: io.flow.internal.v0.enums.SvitlanaType;
|
|
22202
|
-
}
|
|
22203
|
-
interface SvitlanaItemUpserted {
|
|
22204
|
-
readonly discriminator: 'svitlana_item_upserted';
|
|
22205
|
-
readonly event_id: string;
|
|
22206
|
-
readonly timestamp: string;
|
|
22207
|
-
readonly item: io.flow.internal.v0.models.SvitlanaItem;
|
|
22208
|
-
}
|
|
22209
|
-
interface SvitlanaTest {
|
|
22210
|
-
readonly name: string;
|
|
22211
|
-
}
|
|
22212
|
-
interface TamItem {
|
|
22213
|
-
readonly id: string;
|
|
22214
|
-
readonly number: string;
|
|
22215
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22216
|
-
readonly description?: string;
|
|
22217
|
-
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
22218
|
-
readonly added_on: string;
|
|
22219
|
-
}
|
|
22220
|
-
interface TamItemDeleted {
|
|
22221
|
-
readonly discriminator: 'tam_item_deleted';
|
|
22222
|
-
readonly event_id: string;
|
|
22223
|
-
readonly timestamp: string;
|
|
22224
|
-
readonly id: string;
|
|
22225
|
-
}
|
|
22226
|
-
interface TamItemForm {
|
|
22227
|
-
readonly number: string;
|
|
22228
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22229
|
-
readonly description?: string;
|
|
22230
|
-
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
22231
|
-
}
|
|
22232
|
-
interface TamItemUpserted {
|
|
22233
|
-
readonly discriminator: 'tam_item_upserted';
|
|
22234
|
-
readonly event_id: string;
|
|
22235
|
-
readonly timestamp: string;
|
|
22236
|
-
readonly item: io.flow.internal.v0.models.TamItem;
|
|
22237
|
-
}
|
|
22238
22035
|
interface TariffCodeDuty {
|
|
22239
22036
|
readonly tariff_code: string;
|
|
22240
22037
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
@@ -22402,33 +22199,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22402
22199
|
interface TestForm {
|
|
22403
22200
|
readonly name: string;
|
|
22404
22201
|
}
|
|
22405
|
-
interface ThiagoItem {
|
|
22406
|
-
readonly id: string;
|
|
22407
|
-
readonly number: string;
|
|
22408
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22409
|
-
readonly description?: string;
|
|
22410
|
-
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
22411
|
-
readonly added_on: string;
|
|
22412
|
-
}
|
|
22413
|
-
interface ThiagoItemDeleted {
|
|
22414
|
-
readonly discriminator: 'thiago_item_deleted';
|
|
22415
|
-
readonly event_id: string;
|
|
22416
|
-
readonly timestamp: string;
|
|
22417
|
-
readonly id: string;
|
|
22418
|
-
}
|
|
22419
|
-
interface ThiagoItemForm {
|
|
22420
|
-
readonly number: string;
|
|
22421
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22422
|
-
readonly description?: string;
|
|
22423
|
-
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
22424
|
-
readonly added_on: string;
|
|
22425
|
-
}
|
|
22426
|
-
interface ThiagoItemUpserted {
|
|
22427
|
-
readonly discriminator: 'thiago_item_upserted';
|
|
22428
|
-
readonly event_id: string;
|
|
22429
|
-
readonly timestamp: string;
|
|
22430
|
-
readonly item: io.flow.internal.v0.models.ThiagoItem;
|
|
22431
|
-
}
|
|
22432
22202
|
interface ThirdPartyLogisticsPartner {
|
|
22433
22203
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
22434
22204
|
readonly warehouse_url?: string;
|
|
@@ -22547,6 +22317,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22547
22317
|
readonly timestamp: string;
|
|
22548
22318
|
readonly job: io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
22549
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
|
+
}
|
|
22550
22342
|
interface TrackingDebugForceTransitForm {
|
|
22551
22343
|
readonly description: string;
|
|
22552
22344
|
}
|
|
@@ -22654,25 +22446,36 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22654
22446
|
readonly flow_tracking_number: string;
|
|
22655
22447
|
readonly credentials: io.flow.internal.v0.unions.CarrierCredentials;
|
|
22656
22448
|
}
|
|
22657
|
-
interface TrackingRequestUpserted {
|
|
22658
|
-
readonly discriminator: 'tracking_request_upserted';
|
|
22659
|
-
readonly event_id: string;
|
|
22660
|
-
readonly timestamp: string;
|
|
22661
|
-
readonly organization: string;
|
|
22662
|
-
readonly tracking_request: io.flow.internal.v0.models.TrackingRequest;
|
|
22663
|
-
}
|
|
22664
22449
|
interface TrackingResponse {
|
|
22665
22450
|
readonly carrier: string;
|
|
22666
22451
|
readonly carrier_tracking_number: string;
|
|
22667
22452
|
readonly flow_tracking_number: string;
|
|
22668
22453
|
readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
|
|
22669
22454
|
}
|
|
22670
|
-
interface
|
|
22671
|
-
readonly
|
|
22455
|
+
interface TrackingSubscription {
|
|
22456
|
+
readonly id: string;
|
|
22457
|
+
readonly organization_id: string;
|
|
22458
|
+
readonly carrier_tracking_number: string;
|
|
22459
|
+
readonly carrier_id: string;
|
|
22460
|
+
readonly label_id: string;
|
|
22461
|
+
readonly label_origin: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
22462
|
+
readonly label_destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
22463
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
22464
|
+
readonly events: io.flow.tracking.v0.models.TrackingEvent[];
|
|
22465
|
+
readonly external_reference_key?: string;
|
|
22466
|
+
readonly external_reference_source?: string;
|
|
22467
|
+
}
|
|
22468
|
+
interface TrackingSubscriptionDeleted {
|
|
22469
|
+
readonly discriminator: 'tracking_subscription_deleted';
|
|
22672
22470
|
readonly event_id: string;
|
|
22673
22471
|
readonly timestamp: string;
|
|
22674
|
-
readonly
|
|
22675
|
-
|
|
22472
|
+
readonly id: string;
|
|
22473
|
+
}
|
|
22474
|
+
interface TrackingSubscriptionUpserted {
|
|
22475
|
+
readonly discriminator: 'tracking_subscription_upserted';
|
|
22476
|
+
readonly event_id: string;
|
|
22477
|
+
readonly timestamp: string;
|
|
22478
|
+
readonly tracking_subscription: io.flow.internal.v0.models.TrackingSubscription;
|
|
22676
22479
|
}
|
|
22677
22480
|
interface TrackingUpserted {
|
|
22678
22481
|
readonly discriminator: 'tracking_upserted';
|
|
@@ -22969,7 +22772,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22969
22772
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22970
22773
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22971
22774
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22972
|
-
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.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.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.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.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;
|
|
22973
22776
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22974
22777
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22975
22778
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22996,7 +22799,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22996
22799
|
type MarketingGatewayFeedSource = io.flow.internal.v0.models.MarketingGatewayFeedSourceGoogle | io.flow.internal.v0.models.MarketingGatewayFeedSourceFacebook;
|
|
22997
22800
|
type MarketingGatewayItem = io.flow.internal.v0.models.MarketingGatewayGoogleItem;
|
|
22998
22801
|
type MarketingGatewaySourceSummary = io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary | io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary | io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
|
|
22999
|
-
type MoneyRule = io.flow.internal.v0.models.MoneyPercentage;
|
|
23000
22802
|
type OptinPromptDisplay = io.flow.internal.v0.models.OptinPromptCheckoutDisplay;
|
|
23001
22803
|
type OrderActionForm = io.flow.internal.v0.models.WholeOrderActionForm | io.flow.internal.v0.models.LineActionForm | io.flow.internal.v0.models.FulfillmentActionForm;
|
|
23002
22804
|
type OrderCancellationEvidence = io.flow.internal.v0.models.OrderCancellationEvidenceManual | io.flow.internal.v0.models.OrderCancellationEvidenceFullyRefundedNotFulfilled | io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender;
|
|
@@ -23056,6 +22858,7 @@ export declare type AccountSettingsDeleted = io.flow.internal.v0.models.AccountS
|
|
|
23056
22858
|
export declare type AccountSettingsUpserted = io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
23057
22859
|
export declare type AccountSource = io.flow.internal.v0.models.AccountSource;
|
|
23058
22860
|
export declare type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
|
|
22861
|
+
export declare type AccountStatisticsAdditionalBalances = io.flow.internal.v0.models.AccountStatisticsAdditionalBalances;
|
|
23059
22862
|
export declare type AccountSummary = io.flow.internal.v0.models.AccountSummary;
|
|
23060
22863
|
export declare type AccountTransactionsExportRequest = io.flow.internal.v0.models.AccountTransactionsExportRequest;
|
|
23061
22864
|
export declare type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
@@ -23131,7 +22934,6 @@ export declare type AlertFailureSummary = io.flow.internal.v0.models.AlertFailur
|
|
|
23131
22934
|
export declare type AlertFailureSummaryDetail = io.flow.internal.v0.models.AlertFailureSummaryDetail;
|
|
23132
22935
|
export declare type AlertImportSummary = io.flow.internal.v0.models.AlertImportSummary;
|
|
23133
22936
|
export declare type AlertRequeueSummary = io.flow.internal.v0.models.AlertRequeueSummary;
|
|
23134
|
-
export declare type AlgoliaIndexAssignment = io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
23135
22937
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
23136
22938
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
23137
22939
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
@@ -23157,7 +22959,9 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
|
|
|
23157
22959
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
23158
22960
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
23159
22961
|
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
22962
|
+
export declare type BankAccount = io.flow.internal.v0.models.BankAccount;
|
|
23160
22963
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
22964
|
+
export declare type BankAccountStatus = io.flow.internal.v0.enums.BankAccountStatus;
|
|
23161
22965
|
export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
23162
22966
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
23163
22967
|
export declare type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
@@ -23436,10 +23240,8 @@ export declare type CliLogEntry = io.flow.internal.v0.models.CliLogEntry;
|
|
|
23436
23240
|
export declare type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
|
|
23437
23241
|
export declare type ClothingAgeClassification = io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
23438
23242
|
export declare type ColmItem = io.flow.internal.v0.models.ColmItem;
|
|
23439
|
-
export declare type ColmItemDeleted = io.flow.internal.v0.models.ColmItemDeleted;
|
|
23440
23243
|
export declare type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
|
|
23441
23244
|
export declare type ColmItemType = io.flow.internal.v0.enums.ColmItemType;
|
|
23442
|
-
export declare type ColmItemUpserted = io.flow.internal.v0.models.ColmItemUpserted;
|
|
23443
23245
|
export declare type CommercialInvoiceComparison = io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
23444
23246
|
export declare type CommercialInvoiceInternal = io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
23445
23247
|
export declare type CommercialInvoiceInternalDeleted = io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
|
|
@@ -23466,9 +23268,6 @@ export declare type ContentSchemaSummary = io.flow.internal.v0.models.ContentSch
|
|
|
23466
23268
|
export declare type ContentStatus = io.flow.internal.v0.enums.ContentStatus;
|
|
23467
23269
|
export declare type ContentType = io.flow.internal.v0.enums.ContentType;
|
|
23468
23270
|
export declare type ContentTypeCast = io.flow.internal.v0.enums.ContentTypeCast;
|
|
23469
|
-
export declare type Cost = io.flow.internal.v0.models.Cost;
|
|
23470
|
-
export declare type CostRule = io.flow.internal.v0.models.CostRule;
|
|
23471
|
-
export declare type CostType = io.flow.internal.v0.enums.CostType;
|
|
23472
23271
|
export declare type CountryPickerCountry = io.flow.internal.v0.models.CountryPickerCountry;
|
|
23473
23272
|
export declare type CountryPickerCountryData = io.flow.internal.v0.models.CountryPickerCountryData;
|
|
23474
23273
|
export declare type CountryPickerCurrency = io.flow.internal.v0.models.CountryPickerCurrency;
|
|
@@ -23502,6 +23301,7 @@ export declare type DailyValueDeleted = io.flow.internal.v0.models.DailyValueDel
|
|
|
23502
23301
|
export declare type DailyValueUpserted = io.flow.internal.v0.models.DailyValueUpserted;
|
|
23503
23302
|
export declare type DebugAccountingTransaction = io.flow.internal.v0.models.DebugAccountingTransaction;
|
|
23504
23303
|
export declare type DebugAccountingTransactionType = io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
23304
|
+
export declare type DebugBankingDetails = io.flow.internal.v0.models.DebugBankingDetails;
|
|
23505
23305
|
export declare type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
23506
23306
|
export declare type DebugFulfillmentDelta = io.flow.internal.v0.models.DebugFulfillmentDelta;
|
|
23507
23307
|
export declare type DebugLabel = io.flow.internal.v0.models.DebugLabel;
|
|
@@ -23533,7 +23333,6 @@ export declare type DeliveredDutyPreference = io.flow.internal.v0.models.Deliver
|
|
|
23533
23333
|
export declare type DeliveredDutyPreferenceForm = io.flow.internal.v0.models.DeliveredDutyPreferenceForm;
|
|
23534
23334
|
export declare type DeminimisAdjustmentType = io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
23535
23335
|
export declare type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
23536
|
-
export declare type Details = io.flow.internal.v0.models.Details;
|
|
23537
23336
|
export declare type Dhl = io.flow.internal.v0.models.Dhl;
|
|
23538
23337
|
export declare type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
23539
23338
|
export declare type Dict = io.flow.internal.v0.models.Dict;
|
|
@@ -23569,6 +23368,7 @@ export declare type DisputeOrderReference = io.flow.internal.v0.models.DisputeOr
|
|
|
23569
23368
|
export declare type DisputeOrganizationReference = io.flow.internal.v0.models.DisputeOrganizationReference;
|
|
23570
23369
|
export declare type DisputeOverrideUpdateForm = io.flow.internal.v0.models.DisputeOverrideUpdateForm;
|
|
23571
23370
|
export declare type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcessor;
|
|
23371
|
+
export declare type DisputeRecord = io.flow.internal.v0.models.DisputeRecord;
|
|
23572
23372
|
export declare type DisputeReportingCategory = io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
23573
23373
|
export declare type DisputeStatus = io.flow.internal.v0.enums.DisputeStatus;
|
|
23574
23374
|
export declare type DisputeStatusForm = io.flow.internal.v0.models.DisputeStatusForm;
|
|
@@ -23584,21 +23384,13 @@ export declare type DutyExemptItemTypes = io.flow.internal.v0.enums.DutyExemptIt
|
|
|
23584
23384
|
export declare type DutyExpression = io.flow.internal.v0.unions.DutyExpression;
|
|
23585
23385
|
export declare type DutyInternalRate = io.flow.internal.v0.models.DutyInternalRate;
|
|
23586
23386
|
export declare type DutyRate = io.flow.internal.v0.models.DutyRate;
|
|
23587
|
-
export declare type DutyRateBulkRequest = io.flow.internal.v0.models.DutyRateBulkRequest;
|
|
23588
|
-
export declare type DutyRateBulkResponse = io.flow.internal.v0.models.DutyRateBulkResponse;
|
|
23589
|
-
export declare type DutyRateContext = io.flow.internal.v0.models.DutyRateContext;
|
|
23590
23387
|
export declare type DutyRateItemSummary = io.flow.internal.v0.models.DutyRateItemSummary;
|
|
23591
|
-
export declare type DutyRateRequest = io.flow.internal.v0.models.DutyRateRequest;
|
|
23592
|
-
export declare type DutyRateResponse = io.flow.internal.v0.models.DutyRateResponse;
|
|
23593
23388
|
export declare type DutyRateSource = io.flow.internal.v0.enums.DutyRateSource;
|
|
23594
23389
|
export declare type DutyRateSummary = io.flow.internal.v0.models.DutyRateSummary;
|
|
23595
23390
|
export declare type DutyRateUnitOfMeasure = io.flow.internal.v0.enums.DutyRateUnitOfMeasure;
|
|
23596
|
-
export declare type DutyRateUpserted = io.flow.internal.v0.models.DutyRateUpserted;
|
|
23597
23391
|
export declare type DutyRatesDataSummary = io.flow.internal.v0.models.DutyRatesDataSummary;
|
|
23598
23392
|
export declare type DutyRatesPublishedV2 = io.flow.internal.v0.models.DutyRatesPublishedV2;
|
|
23599
23393
|
export declare type DutyRaw = io.flow.internal.v0.models.DutyRaw;
|
|
23600
|
-
export declare type DutyRawBulkUpserted = io.flow.internal.v0.models.DutyRawBulkUpserted;
|
|
23601
|
-
export declare type DutyRawUpserted = io.flow.internal.v0.models.DutyRawUpserted;
|
|
23602
23394
|
export declare type DutySelectionRule = io.flow.internal.v0.enums.DutySelectionRule;
|
|
23603
23395
|
export declare type DutySimpleExpression = io.flow.internal.v0.models.DutySimpleExpression;
|
|
23604
23396
|
export declare type DutySimpleExpressionType = io.flow.internal.v0.enums.DutySimpleExpressionType;
|
|
@@ -23606,11 +23398,6 @@ export declare type DutyTransaction = io.flow.internal.v0.models.DutyTransaction
|
|
|
23606
23398
|
export declare type DutyTransactionDeleted = io.flow.internal.v0.models.DutyTransactionDeleted;
|
|
23607
23399
|
export declare type DutyTransactionType = io.flow.internal.v0.enums.DutyTransactionType;
|
|
23608
23400
|
export declare type DutyTransactionUpserted = io.flow.internal.v0.models.DutyTransactionUpserted;
|
|
23609
|
-
export declare type EldarItem = io.flow.internal.v0.models.EldarItem;
|
|
23610
|
-
export declare type EldarItemDeleted = io.flow.internal.v0.models.EldarItemDeleted;
|
|
23611
|
-
export declare type EldarItemForm = io.flow.internal.v0.models.EldarItemForm;
|
|
23612
|
-
export declare type EldarItemType = io.flow.internal.v0.enums.EldarItemType;
|
|
23613
|
-
export declare type EldarItemUpserted = io.flow.internal.v0.models.EldarItemUpserted;
|
|
23614
23401
|
export declare type EmailForm = io.flow.internal.v0.models.EmailForm;
|
|
23615
23402
|
export declare type EmailModificationForm = io.flow.internal.v0.models.EmailModificationForm;
|
|
23616
23403
|
export declare type EmptyAttribute = io.flow.internal.v0.enums.EmptyAttribute;
|
|
@@ -23812,11 +23599,6 @@ export declare type GoogleShoppingAccountParameters = io.flow.internal.v0.models
|
|
|
23812
23599
|
export declare type GoogleShoppingSetting = io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
23813
23600
|
export declare type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
23814
23601
|
export declare type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
23815
|
-
export declare type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
23816
|
-
export declare type HarinathItemDeleted = io.flow.internal.v0.models.HarinathItemDeleted;
|
|
23817
|
-
export declare type HarinathItemForm = io.flow.internal.v0.models.HarinathItemForm;
|
|
23818
|
-
export declare type HarinathItemType = io.flow.internal.v0.enums.HarinathItemType;
|
|
23819
|
-
export declare type HarinathItemUpserted = io.flow.internal.v0.models.HarinathItemUpserted;
|
|
23820
23602
|
export declare type HarmonizationClassificationStatisticsData = io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
23821
23603
|
export declare type HarmonizationClassificationStatisticsPublished = io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished;
|
|
23822
23604
|
export declare type HarmonizationCodesImport = io.flow.internal.v0.models.HarmonizationCodesImport;
|
|
@@ -23837,12 +23619,8 @@ export declare type Href = io.flow.internal.v0.models.Href;
|
|
|
23837
23619
|
export declare type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
23838
23620
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
23839
23621
|
export declare type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
23840
|
-
export declare type HybrisCatalogItemsImportRequest = io.flow.internal.v0.models.HybrisCatalogItemsImportRequest;
|
|
23841
|
-
export declare type HybrisCatalogItemsImportRequestData = io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
23842
23622
|
export declare type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
|
|
23843
23623
|
export declare type ImportFailed = io.flow.internal.v0.models.ImportFailed;
|
|
23844
|
-
export declare type IndexAssignmentDeleted = io.flow.internal.v0.models.IndexAssignmentDeleted;
|
|
23845
|
-
export declare type IndexAssignmentUpserted = io.flow.internal.v0.models.IndexAssignmentUpserted;
|
|
23846
23624
|
export declare type IndexTaskType = io.flow.internal.v0.unions.IndexTaskType;
|
|
23847
23625
|
export declare type InlineAuthorizationParameters = io.flow.internal.v0.unions.InlineAuthorizationParameters;
|
|
23848
23626
|
export declare type InstallForm = io.flow.internal.v0.models.InstallForm;
|
|
@@ -23871,11 +23649,7 @@ export declare type InternalTransactionDetails = io.flow.internal.v0.unions.Inte
|
|
|
23871
23649
|
export declare type InternalTransactionDetailsCard = io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
23872
23650
|
export declare type InvalidCheckoutData = io.flow.internal.v0.models.InvalidCheckoutData;
|
|
23873
23651
|
export declare type Invariant = io.flow.internal.v0.models.Invariant;
|
|
23874
|
-
export declare type InventoryCheckService = io.flow.internal.v0.enums.InventoryCheckService;
|
|
23875
23652
|
export declare type InventoryItemWrapper = io.flow.internal.v0.models.InventoryItemWrapper;
|
|
23876
|
-
export declare type InventoryOrganizationSettings = io.flow.internal.v0.models.InventoryOrganizationSettings;
|
|
23877
|
-
export declare type InventoryOrganizationSettingsForm = io.flow.internal.v0.models.InventoryOrganizationSettingsForm;
|
|
23878
|
-
export declare type InventoryReservation = io.flow.internal.v0.enums.InventoryReservation;
|
|
23879
23653
|
export declare type Invoice = io.flow.internal.v0.models.Invoice;
|
|
23880
23654
|
export declare type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm;
|
|
23881
23655
|
export declare type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
@@ -23898,7 +23672,6 @@ export declare type ItemDimensionEstimateUpsertedV2 = io.flow.internal.v0.models
|
|
|
23898
23672
|
export declare type ItemFilterResponse = io.flow.internal.v0.models.ItemFilterResponse;
|
|
23899
23673
|
export declare type ItemFilterValueResponse = io.flow.internal.v0.models.ItemFilterValueResponse;
|
|
23900
23674
|
export declare type ItemFilterValuesForm = io.flow.internal.v0.models.ItemFilterValuesForm;
|
|
23901
|
-
export declare type ItemForm = io.flow.internal.v0.models.ItemForm;
|
|
23902
23675
|
export declare type ItemFormImportRequest = io.flow.internal.v0.models.ItemFormImportRequest;
|
|
23903
23676
|
export declare type ItemHarmonization = io.flow.internal.v0.models.ItemHarmonization;
|
|
23904
23677
|
export declare type ItemHarmonizationDeleted = io.flow.internal.v0.models.ItemHarmonizationDeleted;
|
|
@@ -23926,11 +23699,6 @@ export declare type KeyReference = io.flow.internal.v0.models.KeyReference;
|
|
|
23926
23699
|
export declare type KeywordType = io.flow.internal.v0.enums.KeywordType;
|
|
23927
23700
|
export declare type KlarnaAuthorizationParameters = io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
23928
23701
|
export declare type KlarnaPaymentMethodCategory = io.flow.internal.v0.models.KlarnaPaymentMethodCategory;
|
|
23929
|
-
export declare type KonstantinItem = io.flow.internal.v0.models.KonstantinItem;
|
|
23930
|
-
export declare type KonstantinItemDeleted = io.flow.internal.v0.models.KonstantinItemDeleted;
|
|
23931
|
-
export declare type KonstantinItemForm = io.flow.internal.v0.models.KonstantinItemForm;
|
|
23932
|
-
export declare type KonstantinItemType = io.flow.internal.v0.enums.KonstantinItemType;
|
|
23933
|
-
export declare type KonstantinItemUpserted = io.flow.internal.v0.models.KonstantinItemUpserted;
|
|
23934
23702
|
export declare type LabProjectSettings = io.flow.internal.v0.models.LabProjectSettings;
|
|
23935
23703
|
export declare type LabProjectSettingsForm = io.flow.internal.v0.models.LabProjectSettingsForm;
|
|
23936
23704
|
export declare type LabProjectSettingsFormAcceptance = io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
@@ -24092,16 +23860,11 @@ export declare type MarketingGatewaySourceSummary = io.flow.internal.v0.unions.M
|
|
|
24092
23860
|
export declare type MarketingGatewaySupportedChannelDetails = io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
24093
23861
|
export declare type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
24094
23862
|
export declare type MarketsOrderSummary = io.flow.internal.v0.models.MarketsOrderSummary;
|
|
24095
|
-
export declare type MatiasItem = io.flow.internal.v0.models.MatiasItem;
|
|
24096
|
-
export declare type MatiasItemDeleted = io.flow.internal.v0.models.MatiasItemDeleted;
|
|
24097
|
-
export declare type MatiasItemForm = io.flow.internal.v0.models.MatiasItemForm;
|
|
24098
|
-
export declare type MatiasItemType = io.flow.internal.v0.enums.MatiasItemType;
|
|
24099
|
-
export declare type MatiasItemUpserted = io.flow.internal.v0.models.MatiasItemUpserted;
|
|
24100
23863
|
export declare type Merchant = io.flow.internal.v0.models.Merchant;
|
|
24101
23864
|
export declare type MerchantApplicationSummaries = io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
24102
23865
|
export declare type MerchantApplicationSummary = io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
24103
|
-
export declare type MerchantCohort = io.flow.internal.v0.enums.MerchantCohort;
|
|
24104
23866
|
export declare type MerchantDeleted = io.flow.internal.v0.models.MerchantDeleted;
|
|
23867
|
+
export declare type MerchantDetails = io.flow.internal.v0.models.MerchantDetails;
|
|
24105
23868
|
export declare type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
24106
23869
|
export declare type MerchantGuidAssignment = io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
24107
23870
|
export declare type MerchantGuidAssignmentDeleted = io.flow.internal.v0.models.MerchantGuidAssignmentDeleted;
|
|
@@ -24118,19 +23881,7 @@ export declare type MerchantUpserted = io.flow.internal.v0.models.MerchantUpsert
|
|
|
24118
23881
|
export declare type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
24119
23882
|
export declare type MetadataProposition = io.flow.internal.v0.models.MetadataProposition;
|
|
24120
23883
|
export declare type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
24121
|
-
export declare type MichaelyanItem = io.flow.internal.v0.models.MichaelyanItem;
|
|
24122
|
-
export declare type MichaelyanItemDeleted = io.flow.internal.v0.models.MichaelyanItemDeleted;
|
|
24123
|
-
export declare type MichaelyanItemForm = io.flow.internal.v0.models.MichaelyanItemForm;
|
|
24124
|
-
export declare type MichaelyanItemType = io.flow.internal.v0.enums.MichaelyanItemType;
|
|
24125
|
-
export declare type MichaelyanItemUpserted = io.flow.internal.v0.models.MichaelyanItemUpserted;
|
|
24126
|
-
export declare type MiljenkoItem = io.flow.internal.v0.models.MiljenkoItem;
|
|
24127
|
-
export declare type MiljenkoItemDeleted = io.flow.internal.v0.models.MiljenkoItemDeleted;
|
|
24128
|
-
export declare type MiljenkoItemForm = io.flow.internal.v0.models.MiljenkoItemForm;
|
|
24129
|
-
export declare type MiljenkoItemType = io.flow.internal.v0.enums.MiljenkoItemType;
|
|
24130
|
-
export declare type MiljenkoItemUpserted = io.flow.internal.v0.models.MiljenkoItemUpserted;
|
|
24131
23884
|
export declare type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
24132
|
-
export declare type MoneyPercentage = io.flow.internal.v0.models.MoneyPercentage;
|
|
24133
|
-
export declare type MoneyRule = io.flow.internal.v0.unions.MoneyRule;
|
|
24134
23885
|
export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
24135
23886
|
export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
24136
23887
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
@@ -24186,6 +23937,7 @@ export declare type OrderCombinedShipmentDeleted = io.flow.internal.v0.models.Or
|
|
|
24186
23937
|
export declare type OrderCombinedShipmentForm = io.flow.internal.v0.models.OrderCombinedShipmentForm;
|
|
24187
23938
|
export declare type OrderCombinedShipmentUpserted = io.flow.internal.v0.models.OrderCombinedShipmentUpserted;
|
|
24188
23939
|
export declare type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
23940
|
+
export declare type OrderEditSummary = io.flow.internal.v0.models.OrderEditSummary;
|
|
24189
23941
|
export declare type OrderFulfillmentDeleted = io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
24190
23942
|
export declare type OrderFulfillmentUpserted = io.flow.internal.v0.models.OrderFulfillmentUpserted;
|
|
24191
23943
|
export declare type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecycleEvent;
|
|
@@ -24313,7 +24065,8 @@ export declare type PartnerOrganizationSettings = io.flow.internal.v0.models.Par
|
|
|
24313
24065
|
export declare type PartnerOrganizationSettingsDeleted = io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted;
|
|
24314
24066
|
export declare type PartnerOrganizationSettingsForm = io.flow.internal.v0.models.PartnerOrganizationSettingsForm;
|
|
24315
24067
|
export declare type PartnerOrganizationSettingsUpserted = io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted;
|
|
24316
|
-
export declare type
|
|
24068
|
+
export declare type PartnerTrackingSubscriptionDeleted = io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted;
|
|
24069
|
+
export declare type PartnerTrackingSubscriptionUpserted = io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted;
|
|
24317
24070
|
export declare type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
24318
24071
|
export declare type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
24319
24072
|
export declare type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
@@ -24340,8 +24093,11 @@ export declare type PaypalAccountReference = io.flow.internal.v0.models.PaypalAc
|
|
|
24340
24093
|
export declare type PaypalAuthentication = io.flow.internal.v0.models.PaypalAuthentication;
|
|
24341
24094
|
export declare type PaypalAuthenticationForm = io.flow.internal.v0.models.PaypalAuthenticationForm;
|
|
24342
24095
|
export declare type PaypalAuthorizationPayload = io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
24096
|
+
export declare type PaypalDisputeDeleted = io.flow.internal.v0.models.PaypalDisputeDeleted;
|
|
24097
|
+
export declare type PaypalDisputeUpserted = io.flow.internal.v0.models.PaypalDisputeUpserted;
|
|
24343
24098
|
export declare type PaypalExecutionDeleted = io.flow.internal.v0.models.PaypalExecutionDeleted;
|
|
24344
24099
|
export declare type PaypalExecutionUpserted = io.flow.internal.v0.models.PaypalExecutionUpserted;
|
|
24100
|
+
export declare type PaypalInternalDispute = io.flow.internal.v0.models.PaypalInternalDispute;
|
|
24345
24101
|
export declare type PaypalInternalExecution = io.flow.internal.v0.models.PaypalInternalExecution;
|
|
24346
24102
|
export declare type PaypalInternalPayment = io.flow.internal.v0.models.PaypalInternalPayment;
|
|
24347
24103
|
export declare type PaypalInternalRefund = io.flow.internal.v0.models.PaypalInternalRefund;
|
|
@@ -24372,13 +24128,7 @@ export declare type PreferredBillingSchedule = io.flow.internal.v0.enums.Preferr
|
|
|
24372
24128
|
export declare type PregeneratedQuote = io.flow.internal.v0.models.PregeneratedQuote;
|
|
24373
24129
|
export declare type PregeneratedRequestEvent = io.flow.internal.v0.models.PregeneratedRequestEvent;
|
|
24374
24130
|
export declare type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
24375
|
-
export declare type PricingIndicator = io.flow.internal.v0.models.PricingIndicator;
|
|
24376
|
-
export declare type PricingIndicatorDynamo = io.flow.internal.v0.models.PricingIndicatorDynamo;
|
|
24377
|
-
export declare type PricingIndicatorStatus = io.flow.internal.v0.enums.PricingIndicatorStatus;
|
|
24378
|
-
export declare type Principal = io.flow.internal.v0.models.Principal;
|
|
24379
|
-
export declare type PrincipalType = io.flow.internal.v0.enums.PrincipalType;
|
|
24380
24131
|
export declare type PrioritizedCenterReference = io.flow.internal.v0.models.PrioritizedCenterReference;
|
|
24381
|
-
export declare type ProcessedPaymentSummary = io.flow.internal.v0.models.ProcessedPaymentSummary;
|
|
24382
24132
|
export declare type ProcessingTransaction = io.flow.internal.v0.models.ProcessingTransaction;
|
|
24383
24133
|
export declare type ProcessingTransactionDeleted = io.flow.internal.v0.models.ProcessingTransactionDeleted;
|
|
24384
24134
|
export declare type ProcessingTransactionReference = io.flow.internal.v0.models.ProcessingTransactionReference;
|
|
@@ -24414,14 +24164,6 @@ export declare type ProductRestrictionRuleDecisionUpserted = io.flow.internal.v0
|
|
|
24414
24164
|
export declare type ProductReviewHistory = io.flow.internal.v0.models.ProductReviewHistory;
|
|
24415
24165
|
export declare type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
24416
24166
|
export declare type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
24417
|
-
export declare type Profit = io.flow.internal.v0.models.Profit;
|
|
24418
|
-
export declare type ProfitShare = io.flow.internal.v0.models.ProfitShare;
|
|
24419
|
-
export declare type ProfitShareOrderReference = io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
24420
|
-
export declare type ProfitSharePlan = io.flow.internal.v0.models.ProfitSharePlan;
|
|
24421
|
-
export declare type ProfitSplit = io.flow.internal.v0.models.ProfitSplit;
|
|
24422
|
-
export declare type ProfitSplitRule = io.flow.internal.v0.models.ProfitSplitRule;
|
|
24423
|
-
export declare type ProfitStream = io.flow.internal.v0.models.ProfitStream;
|
|
24424
|
-
export declare type ProfitStreamKey = io.flow.internal.v0.enums.ProfitStreamKey;
|
|
24425
24167
|
export declare type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
24426
24168
|
export declare type PromptCheckoutDisplayPosition = io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
24427
24169
|
export declare type PromptOptions = io.flow.internal.v0.enums.PromptOptions;
|
|
@@ -24514,6 +24256,7 @@ export declare type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
|
24514
24256
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
24515
24257
|
export declare type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
|
|
24516
24258
|
export declare type ReportOrderReference = io.flow.internal.v0.models.ReportOrderReference;
|
|
24259
|
+
export declare type ReportOrganizationReference = io.flow.internal.v0.models.ReportOrganizationReference;
|
|
24517
24260
|
export declare type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
24518
24261
|
export declare type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
24519
24262
|
export declare type ReportPaymentType = io.flow.internal.v0.enums.ReportPaymentType;
|
|
@@ -24530,7 +24273,6 @@ export declare type ReportingDebug = io.flow.internal.v0.models.ReportingDebug;
|
|
|
24530
24273
|
export declare type ReportingDebugMissingSubsidies = io.flow.internal.v0.models.ReportingDebugMissingSubsidies;
|
|
24531
24274
|
export declare type ReportingDestination = io.flow.internal.v0.models.ReportingDestination;
|
|
24532
24275
|
export declare type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
24533
|
-
export declare type ReportingEntity = io.flow.internal.v0.models.ReportingEntity;
|
|
24534
24276
|
export declare type ReportingFulfillment = io.flow.internal.v0.models.ReportingFulfillment;
|
|
24535
24277
|
export declare type ReportingFulfillmentHas = io.flow.internal.v0.models.ReportingFulfillmentHas;
|
|
24536
24278
|
export declare type ReportingFulfillmentIs = io.flow.internal.v0.models.ReportingFulfillmentIs;
|
|
@@ -24587,6 +24329,9 @@ export declare type RestrictionRuleOverride = io.flow.internal.v0.models.Restric
|
|
|
24587
24329
|
export declare type RestrictionRuleSummary = io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
24588
24330
|
export declare type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
24589
24331
|
export declare type RestrictionStatusMetadata = io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
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;
|
|
24590
24335
|
export declare type ResyncByDestinations = io.flow.internal.v0.models.ResyncByDestinations;
|
|
24591
24336
|
export declare type ResyncByHs6Destinations = io.flow.internal.v0.models.ResyncByHs6Destinations;
|
|
24592
24337
|
export declare type ResyncByHs6Origin = io.flow.internal.v0.models.ResyncByHs6Origin;
|
|
@@ -24601,13 +24346,10 @@ export declare type ReturnPolicyUpserted = io.flow.internal.v0.models.ReturnPoli
|
|
|
24601
24346
|
export declare type ReturnSummary = io.flow.internal.v0.models.ReturnSummary;
|
|
24602
24347
|
export declare type ReturnTrigger = io.flow.internal.v0.unions.ReturnTrigger;
|
|
24603
24348
|
export declare type ReturnTriggerRefund = io.flow.internal.v0.models.ReturnTriggerRefund;
|
|
24604
|
-
export declare type Revenue = io.flow.internal.v0.models.Revenue;
|
|
24605
24349
|
export declare type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
|
|
24606
24350
|
export declare type RevenueRecordDeleted = io.flow.internal.v0.models.RevenueRecordDeleted;
|
|
24607
24351
|
export declare type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
|
|
24608
24352
|
export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
24609
|
-
export declare type RevenueRule = io.flow.internal.v0.models.RevenueRule;
|
|
24610
|
-
export declare type RevenueType = io.flow.internal.v0.enums.RevenueType;
|
|
24611
24353
|
export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
24612
24354
|
export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
24613
24355
|
export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
@@ -24630,8 +24372,6 @@ export declare type SearchItemSummary = io.flow.internal.v0.models.SearchItemSum
|
|
|
24630
24372
|
export declare type SearchOrderSummary = io.flow.internal.v0.models.SearchOrderSummary;
|
|
24631
24373
|
export declare type SearchProviderExport = io.flow.internal.v0.models.SearchProviderExport;
|
|
24632
24374
|
export declare type SearchTrackingSummary = io.flow.internal.v0.models.SearchTrackingSummary;
|
|
24633
|
-
export declare type SerialReservationError = io.flow.internal.v0.enums.SerialReservationError;
|
|
24634
|
-
export declare type ServiceName = io.flow.internal.v0.enums.ServiceName;
|
|
24635
24375
|
export declare type SessionCountries = io.flow.internal.v0.models.SessionCountries;
|
|
24636
24376
|
export declare type SessionCountry = io.flow.internal.v0.models.SessionCountry;
|
|
24637
24377
|
export declare type SessionCountryForm = io.flow.internal.v0.models.SessionCountryForm;
|
|
@@ -24664,6 +24404,13 @@ export declare type ShopifyGiftCardReversal = io.flow.internal.v0.models.Shopify
|
|
|
24664
24404
|
export declare type ShopifyGiftCardReversalForm = io.flow.internal.v0.models.ShopifyGiftCardReversalForm;
|
|
24665
24405
|
export declare type ShopifyGrantStatus = io.flow.internal.v0.enums.ShopifyGrantStatus;
|
|
24666
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;
|
|
24667
24414
|
export declare type ShopifyMarketsDangerousGoods = io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods;
|
|
24668
24415
|
export declare type ShopifyMarketsDiscrepancy = io.flow.internal.v0.models.ShopifyMarketsDiscrepancy;
|
|
24669
24416
|
export declare type ShopifyMarketsDiscrepancyData = io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
@@ -24674,6 +24421,8 @@ export declare type ShopifyMarketsMetricsDeleted = io.flow.internal.v0.models.Sh
|
|
|
24674
24421
|
export declare type ShopifyMarketsMetricsUpserted = io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted;
|
|
24675
24422
|
export declare type ShopifyMarketsOrder = io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
24676
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;
|
|
24677
24426
|
export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
24678
24427
|
export declare type ShopifyMarketsOrderVersionWithShopId = io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId;
|
|
24679
24428
|
export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
@@ -24721,6 +24470,8 @@ export declare type ShopifyOrderLineAttribute = io.flow.internal.v0.models.Shopi
|
|
|
24721
24470
|
export declare type ShopifyOrderLineContent = io.flow.internal.v0.models.ShopifyOrderLineContent;
|
|
24722
24471
|
export declare type ShopifyOrganizationSettings = io.flow.internal.v0.models.ShopifyOrganizationSettings;
|
|
24723
24472
|
export declare type ShopifyOrganizationSettingsForm = io.flow.internal.v0.models.ShopifyOrganizationSettingsForm;
|
|
24473
|
+
export declare type ShopifyPartnerWebhook = io.flow.internal.v0.models.ShopifyPartnerWebhook;
|
|
24474
|
+
export declare type ShopifyPartnerWebhookRaw = io.flow.internal.v0.models.ShopifyPartnerWebhookRaw;
|
|
24724
24475
|
export declare type ShopifyPaymentSummary = io.flow.internal.v0.models.ShopifyPaymentSummary;
|
|
24725
24476
|
export declare type ShopifyProductBundle = io.flow.internal.v0.models.ShopifyProductBundle;
|
|
24726
24477
|
export declare type ShopifyProductBundleDeleted = io.flow.internal.v0.models.ShopifyProductBundleDeleted;
|
|
@@ -24762,11 +24513,6 @@ export declare type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
|
|
24762
24513
|
export declare type ShopperLine = io.flow.internal.v0.models.ShopperLine;
|
|
24763
24514
|
export declare type ShopperLines = io.flow.internal.v0.models.ShopperLines;
|
|
24764
24515
|
export declare type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
|
|
24765
|
-
export declare type ShrutiDemoItem = io.flow.internal.v0.models.ShrutiDemoItem;
|
|
24766
|
-
export declare type ShrutiDemoItemDeleted = io.flow.internal.v0.models.ShrutiDemoItemDeleted;
|
|
24767
|
-
export declare type ShrutiDemoItemForm = io.flow.internal.v0.models.ShrutiDemoItemForm;
|
|
24768
|
-
export declare type ShrutiDemoItemUpserted = io.flow.internal.v0.models.ShrutiDemoItemUpserted;
|
|
24769
|
-
export declare type ShrutiDemoType = io.flow.internal.v0.enums.ShrutiDemoType;
|
|
24770
24516
|
export declare type SimpleAccountReference = io.flow.internal.v0.models.SimpleAccountReference;
|
|
24771
24517
|
export declare type SimpleRoundingStrategy = io.flow.internal.v0.enums.SimpleRoundingStrategy;
|
|
24772
24518
|
export declare type SimplifiedClassificationTaxonomy = io.flow.internal.v0.unions.SimplifiedClassificationTaxonomy;
|
|
@@ -24834,17 +24580,6 @@ export declare type SubscriptionFrequency = io.flow.internal.v0.enums.Subscripti
|
|
|
24834
24580
|
export declare type SubscriptionTransaction = io.flow.internal.v0.models.SubscriptionTransaction;
|
|
24835
24581
|
export declare type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
24836
24582
|
export declare type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
24837
|
-
export declare type SvitlanaItem = io.flow.internal.v0.models.SvitlanaItem;
|
|
24838
|
-
export declare type SvitlanaItemDeleted = io.flow.internal.v0.models.SvitlanaItemDeleted;
|
|
24839
|
-
export declare type SvitlanaItemForm = io.flow.internal.v0.models.SvitlanaItemForm;
|
|
24840
|
-
export declare type SvitlanaItemUpserted = io.flow.internal.v0.models.SvitlanaItemUpserted;
|
|
24841
|
-
export declare type SvitlanaTest = io.flow.internal.v0.models.SvitlanaTest;
|
|
24842
|
-
export declare type SvitlanaType = io.flow.internal.v0.enums.SvitlanaType;
|
|
24843
|
-
export declare type TamItem = io.flow.internal.v0.models.TamItem;
|
|
24844
|
-
export declare type TamItemDeleted = io.flow.internal.v0.models.TamItemDeleted;
|
|
24845
|
-
export declare type TamItemForm = io.flow.internal.v0.models.TamItemForm;
|
|
24846
|
-
export declare type TamItemType = io.flow.internal.v0.enums.TamItemType;
|
|
24847
|
-
export declare type TamItemUpserted = io.flow.internal.v0.models.TamItemUpserted;
|
|
24848
24583
|
export declare type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
24849
24584
|
export declare type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
24850
24585
|
export declare type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|
|
@@ -24881,11 +24616,6 @@ export declare type TaxonomyNode = io.flow.internal.v0.models.TaxonomyNode;
|
|
|
24881
24616
|
export declare type TechOnboardingDescription = io.flow.internal.v0.models.TechOnboardingDescription;
|
|
24882
24617
|
export declare type Test = io.flow.internal.v0.models.Test;
|
|
24883
24618
|
export declare type TestForm = io.flow.internal.v0.models.TestForm;
|
|
24884
|
-
export declare type ThiagoItem = io.flow.internal.v0.models.ThiagoItem;
|
|
24885
|
-
export declare type ThiagoItemDeleted = io.flow.internal.v0.models.ThiagoItemDeleted;
|
|
24886
|
-
export declare type ThiagoItemForm = io.flow.internal.v0.models.ThiagoItemForm;
|
|
24887
|
-
export declare type ThiagoItemType = io.flow.internal.v0.enums.ThiagoItemType;
|
|
24888
|
-
export declare type ThiagoItemUpserted = io.flow.internal.v0.models.ThiagoItemUpserted;
|
|
24889
24619
|
export declare type ThirdPartyLogisticsPartner = io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
24890
24620
|
export declare type ThirdPartyLogisticsPickUpTimeWindow = io.flow.internal.v0.models.ThirdPartyLogisticsPickUpTimeWindow;
|
|
24891
24621
|
export declare type TieredFee = io.flow.internal.v0.models.TieredFee;
|
|
@@ -24904,6 +24634,9 @@ export declare type TrackingAssuranceAnalysisUpserted = io.flow.internal.v0.mode
|
|
|
24904
24634
|
export declare type TrackingAssuranceJob = io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
24905
24635
|
export declare type TrackingAssuranceJobDeleted = io.flow.internal.v0.models.TrackingAssuranceJobDeleted;
|
|
24906
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;
|
|
24907
24640
|
export declare type TrackingDebugForceTransitForm = io.flow.internal.v0.models.TrackingDebugForceTransitForm;
|
|
24908
24641
|
export declare type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
24909
24642
|
export declare type TrackingDebugLabelEvent = io.flow.internal.v0.models.TrackingDebugLabelEvent;
|
|
@@ -24924,9 +24657,10 @@ export declare type TrackingProcessingErrorDeleted = io.flow.internal.v0.models.
|
|
|
24924
24657
|
export declare type TrackingProcessingErrorUpserted = io.flow.internal.v0.models.TrackingProcessingErrorUpserted;
|
|
24925
24658
|
export declare type TrackingProcessingFailureClassification = io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
24926
24659
|
export declare type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
24927
|
-
export declare type TrackingRequestUpserted = io.flow.internal.v0.models.TrackingRequestUpserted;
|
|
24928
24660
|
export declare type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
24929
|
-
export declare type
|
|
24661
|
+
export declare type TrackingSubscription = io.flow.internal.v0.models.TrackingSubscription;
|
|
24662
|
+
export declare type TrackingSubscriptionDeleted = io.flow.internal.v0.models.TrackingSubscriptionDeleted;
|
|
24663
|
+
export declare type TrackingSubscriptionUpserted = io.flow.internal.v0.models.TrackingSubscriptionUpserted;
|
|
24930
24664
|
export declare type TrackingUpserted = io.flow.internal.v0.models.TrackingUpserted;
|
|
24931
24665
|
export declare type Transaction = io.flow.internal.v0.unions.Transaction;
|
|
24932
24666
|
export declare type TransactionAdjustment = io.flow.internal.v0.models.TransactionAdjustment;
|