@flowio/api-internal-prop-types 9.24.111 → 9.24.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +207 -184
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +207 -184
- package/src/api-internal.js +532 -500
package/src/api-internal.d.ts
CHANGED
|
@@ -1296,6 +1296,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1296
1296
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1297
1297
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1298
1298
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1299
|
+
type PaymentFeeType = 'fx' | 'mor';
|
|
1299
1300
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1300
1301
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1301
1302
|
type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
|
|
@@ -1494,6 +1495,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1494
1495
|
readonly 'attributes'?: Record<string, string>;
|
|
1495
1496
|
readonly 'status'?: io.flow.payment.v0.enums.CaptureStatus;
|
|
1496
1497
|
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
1498
|
+
readonly 'fees'?: io.flow.payment.v0.models.PaymentFee[];
|
|
1497
1499
|
}
|
|
1498
1500
|
|
|
1499
1501
|
interface CaptureError {
|
|
@@ -1738,6 +1740,12 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1738
1740
|
readonly 'year': number;
|
|
1739
1741
|
}
|
|
1740
1742
|
|
|
1743
|
+
interface ExternalCard {
|
|
1744
|
+
readonly 'discriminator': 'external_card';
|
|
1745
|
+
readonly 'id': string;
|
|
1746
|
+
readonly 'type'?: io.flow.payment.v0.enums.CardType;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1741
1749
|
interface GooglePayAuthorizationPayload {
|
|
1742
1750
|
readonly 'discriminator': 'google_pay_authorization_payload';
|
|
1743
1751
|
readonly 'payload': any/*object*/;
|
|
@@ -1874,6 +1882,12 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1874
1882
|
readonly 'codes': io.flow.payment.v0.enums.PaymentErrorCode[];
|
|
1875
1883
|
}
|
|
1876
1884
|
|
|
1885
|
+
interface PaymentFee {
|
|
1886
|
+
readonly 'type': io.flow.payment.v0.enums.PaymentFeeType;
|
|
1887
|
+
readonly 'money': io.flow.common.v0.models.Money;
|
|
1888
|
+
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
1889
|
+
}
|
|
1890
|
+
|
|
1877
1891
|
interface PaymentPaymentRequestReference {
|
|
1878
1892
|
readonly 'discriminator': 'payment_request';
|
|
1879
1893
|
readonly 'payment_request_id': string;
|
|
@@ -2269,7 +2283,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2269
2283
|
type BrowserActionConfiguration = (io.flow.payment.v0.models.CardBrowserActionConfiguration);
|
|
2270
2284
|
type ConfirmationDetails = (io.flow.payment.v0.models.DirectDebit | io.flow.payment.v0.models.CardConfirmationSummary);
|
|
2271
2285
|
type DeviceDetails = (io.flow.payment.v0.models.DeviceDetailsBrowser);
|
|
2272
|
-
type ExpandableCard = (io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary);
|
|
2286
|
+
type ExpandableCard = (io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary | io.flow.payment.v0.models.ExternalCard);
|
|
2273
2287
|
type ExpandablePaymentProcessor = (io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference);
|
|
2274
2288
|
type GatewayAuthenticationData = (io.flow.payment.v0.models.StripeAuthenticationData);
|
|
2275
2289
|
type GatewayAuthenticationDataForm = (io.flow.payment.v0.models.StripeAuthenticationDataForm);
|
|
@@ -2332,6 +2346,9 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2332
2346
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
2333
2347
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
2334
2348
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
2349
|
+
type ConnectReportReportingCategory = 'charge' | 'refund' | 'payout_reversal' | 'transfer' | 'transfer_reversal';
|
|
2350
|
+
type ConnectReportShopPlan = 'shopify_plus' | 'standard';
|
|
2351
|
+
type ConnectReportTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
|
|
2335
2352
|
type DeclineCode = 'approve_with_id' | 'call_issuer' | 'card_not_supported' | 'card_velocity_exceeded' | 'currency_not_supported' | 'do_not_honor' | 'do_not_try_again' | 'duplicate_transaction' | 'expired_card' | 'fraudulent' | 'generic_decline' | 'incorrect_number' | 'incorrect_cvc' | 'incorrect_pin' | 'incorrect_zip' | 'insufficient_funds' | 'invalid_account' | 'invalid_amount' | 'invalid_cvc' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_number' | 'invalid_pin' | 'issuer_not_available' | 'lost_card' | 'new_account_information_available' | 'no_action_taken' | 'not_permitted' | 'pickup_card' | 'pin_try_exceeded' | 'processing_error' | 'reenter_transaction' | 'restricted_card' | 'revocation_of_all_authorizations' | 'revocation_of_authorization' | 'security_violation' | 'service_not_allowed' | 'stolen_card' | 'stop_payment_order' | 'testmode_decline' | 'transaction_not_allowed' | 'try_again_later' | 'withdrawal_count_limit_exceeded' | 'previously_declined_do_not_retry' | 'highest_risk_level' | 'requested_block_on_incorrect_cvc';
|
|
2336
2353
|
type DisputeEventType = 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated';
|
|
2337
2354
|
type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
|
|
@@ -2588,6 +2605,46 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2588
2605
|
readonly 'status': io.flow.stripe.v0.enums.CodeVerificationStatus;
|
|
2589
2606
|
}
|
|
2590
2607
|
|
|
2608
|
+
interface ConnectReportRecord {
|
|
2609
|
+
readonly 'created_utc': string;
|
|
2610
|
+
readonly 'charge_id'?: string;
|
|
2611
|
+
readonly 'payment_intent_id'?: string;
|
|
2612
|
+
readonly 'gross': number;
|
|
2613
|
+
readonly 'fee': number;
|
|
2614
|
+
readonly 'net': number;
|
|
2615
|
+
readonly 'currency': string;
|
|
2616
|
+
readonly 'connected_account': string;
|
|
2617
|
+
readonly 'reporting_category': io.flow.stripe.v0.enums.ConnectReportReportingCategory;
|
|
2618
|
+
readonly 'dispute_reason'?: io.flow.stripe.v0.enums.DisputeReason;
|
|
2619
|
+
readonly 'available_on_utc': string;
|
|
2620
|
+
readonly 'automatic_payout_effective_at_utc'?: string;
|
|
2621
|
+
readonly 'source_id'?: string;
|
|
2622
|
+
readonly 'customer_facing_amount'?: number;
|
|
2623
|
+
readonly 'customer_facing_currency'?: string;
|
|
2624
|
+
readonly 'payment_method_type'?: string;
|
|
2625
|
+
readonly 'card_brand'?: string;
|
|
2626
|
+
readonly 'statement_descriptor'?: string;
|
|
2627
|
+
readonly 'payment_metadata'?: io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata;
|
|
2628
|
+
readonly 'transfer_metadata'?: any/*object*/;
|
|
2629
|
+
}
|
|
2630
|
+
|
|
2631
|
+
interface ConnectReportRecordPaymentMetadata {
|
|
2632
|
+
readonly 'shop_id'?: number;
|
|
2633
|
+
readonly 'shop_plan'?: io.flow.stripe.v0.enums.ConnectReportShopPlan;
|
|
2634
|
+
readonly 'checkout_id'?: string;
|
|
2635
|
+
readonly 'order_id'?: number;
|
|
2636
|
+
readonly 'order_transaction_id'?: number;
|
|
2637
|
+
readonly 'transfer_type'?: io.flow.stripe.v0.enums.ConnectReportTransferType;
|
|
2638
|
+
readonly 'transfer_exchange_rate'?: number;
|
|
2639
|
+
readonly 'charge_total'?: number;
|
|
2640
|
+
readonly 'charge_currency'?: string;
|
|
2641
|
+
readonly 'charge_exchange_rate'?: number;
|
|
2642
|
+
readonly 'duties'?: number;
|
|
2643
|
+
readonly 'import_taxes'?: number;
|
|
2644
|
+
readonly 'mor_fee'?: number;
|
|
2645
|
+
readonly 'fx_fee'?: number;
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2591
2648
|
interface Customer {
|
|
2592
2649
|
readonly 'id': string;
|
|
2593
2650
|
readonly 'object': string;
|
|
@@ -3693,8 +3750,6 @@ declare namespace io.flow.customer.v0.models {
|
|
|
3693
3750
|
declare namespace io.flow.label.v0.enums {
|
|
3694
3751
|
type CostEstimateSource = 'flow' | 'channel';
|
|
3695
3752
|
type Direction = 'outbound' | 'return';
|
|
3696
|
-
type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
|
|
3697
|
-
type EstimateType = 'Estimated' | 'Final';
|
|
3698
3753
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
3699
3754
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3700
3755
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
@@ -3770,15 +3825,6 @@ declare namespace io.flow.label.v0.models {
|
|
|
3770
3825
|
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3771
3826
|
}
|
|
3772
3827
|
|
|
3773
|
-
interface Estimate {
|
|
3774
|
-
readonly 'id': string;
|
|
3775
|
-
readonly 'organization_id': string;
|
|
3776
|
-
readonly 'label_id': string;
|
|
3777
|
-
readonly 'estimate': io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
3778
|
-
readonly 'type': io.flow.label.v0.enums.EstimateType;
|
|
3779
|
-
readonly 'origin'?: io.flow.label.v0.enums.EstimateOrigin;
|
|
3780
|
-
}
|
|
3781
|
-
|
|
3782
3828
|
interface LabelOrderSummary {
|
|
3783
3829
|
readonly 'id': string;
|
|
3784
3830
|
readonly 'number': string;
|
|
@@ -4849,7 +4895,7 @@ declare namespace io.flow.brickftp.v0.unions {
|
|
|
4849
4895
|
|
|
4850
4896
|
declare namespace io.flow.units.v0.enums {
|
|
4851
4897
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
4852
|
-
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
4898
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter';
|
|
4853
4899
|
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
4854
4900
|
}
|
|
4855
4901
|
|
|
@@ -7636,7 +7682,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
7636
7682
|
type RoundingType = 'pattern' | 'multiple';
|
|
7637
7683
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
7638
7684
|
type SortDirection = 'ascending' | 'descending';
|
|
7639
|
-
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
7685
|
+
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
7640
7686
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
7641
7687
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
7642
7688
|
type ValueAddedService = 'Hazardous Material';
|
|
@@ -8387,7 +8433,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
8387
8433
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
8388
8434
|
type OrderStatus = 'open' | 'submitted';
|
|
8389
8435
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
8390
|
-
type OrderType = 'standard' | 'replacement';
|
|
8436
|
+
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
8391
8437
|
type OrganizationPaymentMethodTag = 'deny';
|
|
8392
8438
|
type PaymentMethodRuleContentKey = 'description';
|
|
8393
8439
|
type PriceFacetBoundary = 'min' | 'max';
|
|
@@ -9534,6 +9580,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9534
9580
|
interface DutiesTaxesPaidSurchargeServiceFee {
|
|
9535
9581
|
readonly 'discriminator': 'duties_taxes_paid_surcharge_service_fee';
|
|
9536
9582
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
9583
|
+
readonly 'destination_countries'?: string[];
|
|
9537
9584
|
readonly 'starts_at'?: string;
|
|
9538
9585
|
readonly 'ends_at'?: string;
|
|
9539
9586
|
}
|
|
@@ -11582,7 +11629,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11582
11629
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11583
11630
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
11584
11631
|
type StatementAttachmentType = 'csv';
|
|
11585
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share'
|
|
11632
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share';
|
|
11586
11633
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
11587
11634
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11588
11635
|
}
|
|
@@ -13688,7 +13735,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13688
13735
|
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
|
|
13689
13736
|
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';
|
|
13690
13737
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13691
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share'
|
|
13738
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share';
|
|
13692
13739
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
13693
13740
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13694
13741
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -13751,7 +13798,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13751
13798
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
13752
13799
|
type EmptyAttribute = 'irrelevant';
|
|
13753
13800
|
type ErpFileType = 'vendor';
|
|
13754
|
-
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'shipping_estimate_upserted' | 'shipping_estimate_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' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | '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' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | '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';
|
|
13801
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13755
13802
|
type ExperienceImportType = 'experience_with_settings';
|
|
13756
13803
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13757
13804
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13770,8 +13817,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13770
13817
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
13771
13818
|
type GoogleAnalyticsPlugin = 'ec';
|
|
13772
13819
|
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
13773
|
-
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
13820
|
+
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
13774
13821
|
type HttpMethod = 'get' | 'post';
|
|
13822
|
+
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
13775
13823
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
13776
13824
|
type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
|
|
13777
13825
|
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt';
|
|
@@ -13792,6 +13840,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13792
13840
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
13793
13841
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13794
13842
|
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';
|
|
13843
|
+
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
13795
13844
|
type MixedBagWeight = '0' | '1' | '2';
|
|
13796
13845
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
13797
13846
|
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';
|
|
@@ -13838,6 +13887,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13838
13887
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
13839
13888
|
type RedirectReason = 'three_d_secure';
|
|
13840
13889
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
13890
|
+
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
13891
|
+
type ReportFileType = 'stripe_connect_report';
|
|
13841
13892
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
13842
13893
|
type ReportPaymentType = 'credit' | 'debit';
|
|
13843
13894
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
@@ -14158,29 +14209,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14158
14209
|
readonly 'province_code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
14159
14210
|
}
|
|
14160
14211
|
|
|
14161
|
-
interface AdjustedEstimates {
|
|
14162
|
-
readonly 'id': string;
|
|
14163
|
-
readonly 'organization_id': string;
|
|
14164
|
-
readonly 'label_id': string;
|
|
14165
|
-
readonly 'estimates': io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
14166
|
-
}
|
|
14167
|
-
|
|
14168
|
-
interface AdjustedEstimatesDeleted {
|
|
14169
|
-
readonly 'discriminator': 'adjusted_estimates_deleted';
|
|
14170
|
-
readonly 'event_id': string;
|
|
14171
|
-
readonly 'timestamp': string;
|
|
14172
|
-
readonly 'organization': string;
|
|
14173
|
-
readonly 'id': string;
|
|
14174
|
-
}
|
|
14175
|
-
|
|
14176
|
-
interface AdjustedEstimatesUpserted {
|
|
14177
|
-
readonly 'discriminator': 'adjusted_estimates_upserted';
|
|
14178
|
-
readonly 'event_id': string;
|
|
14179
|
-
readonly 'timestamp': string;
|
|
14180
|
-
readonly 'organization': string;
|
|
14181
|
-
readonly 'adjusted_estimates': io.flow.internal.v0.models.AdjustedEstimates;
|
|
14182
|
-
}
|
|
14183
|
-
|
|
14184
14212
|
interface AdjustmentAmountFixed {
|
|
14185
14213
|
readonly 'discriminator': 'fixed';
|
|
14186
14214
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -18326,19 +18354,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18326
18354
|
readonly 'vat_registration_number': string;
|
|
18327
18355
|
}
|
|
18328
18356
|
|
|
18329
|
-
interface FulfillmentCancel {
|
|
18330
|
-
readonly 'discriminator': 'fulfillment_cancel';
|
|
18331
|
-
readonly 'event_id': string;
|
|
18332
|
-
readonly 'timestamp': string;
|
|
18333
|
-
readonly 'organization': string;
|
|
18334
|
-
readonly 'order_number': string;
|
|
18335
|
-
readonly 'order': io.flow.experience.v0.models.Order;
|
|
18336
|
-
readonly 'fulfillments': io.flow.order.management.v0.models.Fulfillment[];
|
|
18337
|
-
readonly 'change_source': io.flow.order.management.v0.enums.OrderChangeSource;
|
|
18338
|
-
readonly 'reason': io.flow.order.management.v0.enums.CancelReason;
|
|
18339
|
-
readonly 'cancelled_lines': io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
18340
|
-
}
|
|
18341
|
-
|
|
18342
18357
|
interface FulfillmentCarrier {
|
|
18343
18358
|
readonly 'id': string;
|
|
18344
18359
|
readonly 'service_id'?: string;
|
|
@@ -18425,14 +18440,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18425
18440
|
readonly 'id': string;
|
|
18426
18441
|
}
|
|
18427
18442
|
|
|
18428
|
-
interface FulfillmentShipmentTracking {
|
|
18429
|
-
readonly 'fulfillment_key': string;
|
|
18430
|
-
readonly 'flow_tracking_number': string;
|
|
18431
|
-
readonly 'carrier_tracking_number'?: string;
|
|
18432
|
-
readonly 'carrier_tracking_url'?: string;
|
|
18433
|
-
readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
|
|
18434
|
-
}
|
|
18435
|
-
|
|
18436
18443
|
interface FulfillmentShopperBreakdown {
|
|
18437
18444
|
readonly 'shipping': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18438
18445
|
readonly 'fees': io.flow.internal.v0.models.ReportingShopperFees;
|
|
@@ -19179,18 +19186,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19179
19186
|
readonly 'values': string[];
|
|
19180
19187
|
}
|
|
19181
19188
|
|
|
19182
|
-
interface ItemsShipped {
|
|
19183
|
-
readonly 'discriminator': 'items_shipped';
|
|
19184
|
-
readonly 'event_id': string;
|
|
19185
|
-
readonly 'timestamp': string;
|
|
19186
|
-
readonly 'organization': string;
|
|
19187
|
-
readonly 'order_number': string;
|
|
19188
|
-
readonly 'order': io.flow.experience.v0.models.Order;
|
|
19189
|
-
readonly 'fulfillments': io.flow.order.management.v0.models.Fulfillment[];
|
|
19190
|
-
readonly 'flow_tracking_number': string;
|
|
19191
|
-
readonly 'shipped_item_values': io.flow.internal.v0.models.ShippedItemValue[];
|
|
19192
|
-
}
|
|
19193
|
-
|
|
19194
19189
|
interface JeanDemoItem {
|
|
19195
19190
|
readonly 'id': string;
|
|
19196
19191
|
readonly 'name': string;
|
|
@@ -19258,14 +19253,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19258
19253
|
readonly 'service_id'?: string;
|
|
19259
19254
|
readonly 'carrier_tracking_number'?: string;
|
|
19260
19255
|
readonly 'flow_tracking_number'?: string;
|
|
19256
|
+
readonly 'label_id'?: string;
|
|
19261
19257
|
readonly 'errors': string[];
|
|
19262
19258
|
}
|
|
19263
19259
|
|
|
19260
|
+
interface LabelCreationJobDeleted {
|
|
19261
|
+
readonly 'discriminator': 'label_creation_job_deleted';
|
|
19262
|
+
readonly 'event_id': string;
|
|
19263
|
+
readonly 'timestamp': string;
|
|
19264
|
+
readonly 'organization': string;
|
|
19265
|
+
readonly 'id': string;
|
|
19266
|
+
}
|
|
19267
|
+
|
|
19264
19268
|
interface LabelCreationJobSummary {
|
|
19265
19269
|
readonly 'reference_id': string;
|
|
19266
19270
|
readonly 'status': io.flow.internal.v0.enums.LabelCreationStatus;
|
|
19267
19271
|
}
|
|
19268
19272
|
|
|
19273
|
+
interface LabelCreationJobUpserted {
|
|
19274
|
+
readonly 'discriminator': 'label_creation_job_upserted';
|
|
19275
|
+
readonly 'event_id': string;
|
|
19276
|
+
readonly 'timestamp': string;
|
|
19277
|
+
readonly 'organization': string;
|
|
19278
|
+
readonly 'label_creation_job': io.flow.internal.v0.models.LabelCreationJob;
|
|
19279
|
+
}
|
|
19280
|
+
|
|
19269
19281
|
interface LabelCreationRequestForm {
|
|
19270
19282
|
readonly 'organization': string;
|
|
19271
19283
|
readonly 'shipping_label_form': io.flow.label.v0.unions.ShippingLabelForm;
|
|
@@ -19388,6 +19400,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19388
19400
|
readonly 'destination_country'?: string;
|
|
19389
19401
|
readonly 'reference_id'?: string;
|
|
19390
19402
|
readonly 'logistics_integration_provider'?: string;
|
|
19403
|
+
readonly 'tax_lrp_liabilities'?: io.flow.internal.v0.models.Liability[];
|
|
19391
19404
|
}
|
|
19392
19405
|
|
|
19393
19406
|
interface LabelSummary {
|
|
@@ -19808,6 +19821,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19808
19821
|
readonly 'paid_at'?: string;
|
|
19809
19822
|
readonly 'posted_at'?: string;
|
|
19810
19823
|
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
19824
|
+
readonly 'channel_statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
19811
19825
|
readonly 'created_at': string;
|
|
19812
19826
|
readonly 'original_at'?: string;
|
|
19813
19827
|
}
|
|
@@ -20015,6 +20029,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20015
20029
|
readonly 'currency'?: string;
|
|
20016
20030
|
}
|
|
20017
20031
|
|
|
20032
|
+
interface MerchantOverride {
|
|
20033
|
+
readonly 'id': string;
|
|
20034
|
+
readonly 'organization_id': string;
|
|
20035
|
+
readonly 'item_number': string;
|
|
20036
|
+
readonly 'status': io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
20037
|
+
readonly 'hs6_code': string;
|
|
20038
|
+
readonly 'merchant_hs6_code': string;
|
|
20039
|
+
}
|
|
20040
|
+
|
|
20041
|
+
interface MerchantOverrideDecisionForm {
|
|
20042
|
+
readonly 'status': io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
20043
|
+
}
|
|
20044
|
+
|
|
20018
20045
|
interface MerchantSearchResult {
|
|
20019
20046
|
readonly 'organization_id': string;
|
|
20020
20047
|
readonly 'shop_name'?: string;
|
|
@@ -20393,16 +20420,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20393
20420
|
readonly 'placeholder': string;
|
|
20394
20421
|
}
|
|
20395
20422
|
|
|
20396
|
-
interface OrderPlaced {
|
|
20397
|
-
readonly 'discriminator': 'order_placed';
|
|
20398
|
-
readonly 'event_id': string;
|
|
20399
|
-
readonly 'timestamp': string;
|
|
20400
|
-
readonly 'organization': string;
|
|
20401
|
-
readonly 'order_number': string;
|
|
20402
|
-
readonly 'order': io.flow.experience.v0.models.Order;
|
|
20403
|
-
readonly 'allocation': io.flow.experience.v0.models.AllocationV2;
|
|
20404
|
-
}
|
|
20405
|
-
|
|
20406
20423
|
interface OrderRatesDataV3 {
|
|
20407
20424
|
readonly 'organization': string;
|
|
20408
20425
|
readonly 'order_id': string;
|
|
@@ -20455,17 +20472,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20455
20472
|
readonly 'to_service_id': string;
|
|
20456
20473
|
}
|
|
20457
20474
|
|
|
20458
|
-
interface OrderShipped {
|
|
20459
|
-
readonly 'discriminator': 'order_shipped';
|
|
20460
|
-
readonly 'event_id': string;
|
|
20461
|
-
readonly 'timestamp': string;
|
|
20462
|
-
readonly 'organization': string;
|
|
20463
|
-
readonly 'order_number': string;
|
|
20464
|
-
readonly 'order': io.flow.experience.v0.models.Order;
|
|
20465
|
-
readonly 'fulfillments': io.flow.order.management.v0.models.Fulfillment[];
|
|
20466
|
-
readonly 'shipment_trackings': io.flow.internal.v0.models.FulfillmentShipmentTracking[];
|
|
20467
|
-
}
|
|
20468
|
-
|
|
20469
20475
|
interface OrderSubmissionForm {
|
|
20470
20476
|
readonly 'authorization'?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
20471
20477
|
}
|
|
@@ -22353,17 +22359,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22353
22359
|
readonly 'summaries': io.flow.internal.v0.models.RateNameSummary[];
|
|
22354
22360
|
}
|
|
22355
22361
|
|
|
22356
|
-
interface ReadyToFulfill {
|
|
22357
|
-
readonly 'discriminator': 'ready_to_fulfill';
|
|
22358
|
-
readonly 'event_id': string;
|
|
22359
|
-
readonly 'timestamp': string;
|
|
22360
|
-
readonly 'organization': string;
|
|
22361
|
-
readonly 'order_number': string;
|
|
22362
|
-
readonly 'order': io.flow.experience.v0.models.Order;
|
|
22363
|
-
readonly 'fulfillments'?: io.flow.order.management.v0.models.Fulfillment[];
|
|
22364
|
-
readonly 'fulfillment_item_allocation_details'?: io.flow.order.management.event.v0.models.FulfillmentItemAllocationDetails[];
|
|
22365
|
-
}
|
|
22366
|
-
|
|
22367
22362
|
interface ReboundConfiguration {
|
|
22368
22363
|
readonly 'id': string;
|
|
22369
22364
|
readonly 'login': string;
|
|
@@ -22442,6 +22437,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22442
22437
|
readonly 'account_number': string;
|
|
22443
22438
|
}
|
|
22444
22439
|
|
|
22440
|
+
interface ReportFile {
|
|
22441
|
+
readonly 'id': string;
|
|
22442
|
+
readonly 'processor': string;
|
|
22443
|
+
readonly 'report_file_type': io.flow.internal.v0.enums.ReportFileType;
|
|
22444
|
+
readonly 'file_name': string;
|
|
22445
|
+
readonly 'status': io.flow.internal.v0.enums.ReportFileStatus;
|
|
22446
|
+
readonly 'failure_reason'?: string;
|
|
22447
|
+
}
|
|
22448
|
+
|
|
22445
22449
|
interface ReportFilter {
|
|
22446
22450
|
readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
22447
22451
|
}
|
|
@@ -22480,6 +22484,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22480
22484
|
readonly 'created_at': string;
|
|
22481
22485
|
}
|
|
22482
22486
|
|
|
22487
|
+
interface ReportRecordError {
|
|
22488
|
+
readonly 'id': string;
|
|
22489
|
+
readonly 'file_id': string;
|
|
22490
|
+
readonly 'line_number': number;
|
|
22491
|
+
readonly 'failure_reason': string;
|
|
22492
|
+
}
|
|
22493
|
+
|
|
22494
|
+
interface ReportRecordRetryQueue {
|
|
22495
|
+
readonly 'id': string;
|
|
22496
|
+
readonly 'report_file_type': io.flow.internal.v0.enums.ReportFileType;
|
|
22497
|
+
readonly 'type': io.flow.internal.v0.enums.InternalPaymentEntityType;
|
|
22498
|
+
readonly 'report_record_id': string;
|
|
22499
|
+
readonly 'dependent_source_id': string;
|
|
22500
|
+
}
|
|
22501
|
+
|
|
22483
22502
|
interface ReportRuleDecision {
|
|
22484
22503
|
readonly 'rule_id': string;
|
|
22485
22504
|
readonly 'rule_name': string;
|
|
@@ -22750,8 +22769,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22750
22769
|
readonly 'organization_id': string;
|
|
22751
22770
|
readonly 'restriction_product_id': string;
|
|
22752
22771
|
readonly 'product_id': string;
|
|
22772
|
+
readonly 'item_numbers': string[];
|
|
22773
|
+
readonly 'primary_item_number'?: string;
|
|
22753
22774
|
readonly 'name': string;
|
|
22754
22775
|
readonly 'price': io.flow.common.v0.models.Price;
|
|
22776
|
+
readonly 'hs_code'?: string;
|
|
22755
22777
|
readonly 'description': string;
|
|
22756
22778
|
readonly 'categories': string[];
|
|
22757
22779
|
readonly 'images': io.flow.catalog.v0.models.Image[];
|
|
@@ -22769,6 +22791,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22769
22791
|
readonly 'user_ids'?: string[];
|
|
22770
22792
|
readonly 'categories'?: string[];
|
|
22771
22793
|
readonly 'product_name_query'?: string;
|
|
22794
|
+
readonly 'hs6'?: string;
|
|
22772
22795
|
readonly 'positive_keywords'?: string[];
|
|
22773
22796
|
readonly 'negative_keywords'?: string[];
|
|
22774
22797
|
readonly 'product_id'?: string;
|
|
@@ -22897,6 +22920,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22897
22920
|
readonly 'user_ids'?: string[];
|
|
22898
22921
|
readonly 'categories'?: string[];
|
|
22899
22922
|
readonly 'product_name_query'?: string;
|
|
22923
|
+
readonly 'hs6'?: string;
|
|
22900
22924
|
readonly 'product_id'?: string;
|
|
22901
22925
|
}
|
|
22902
22926
|
|
|
@@ -23017,7 +23041,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23017
23041
|
readonly 'num_products_transacting_prs': number;
|
|
23018
23042
|
readonly 'oldest_pr_product_date_setup_complete': string;
|
|
23019
23043
|
readonly 'oldest_pr_date_transacting': string;
|
|
23020
|
-
readonly 'percent_products_reviewed_transacting'
|
|
23044
|
+
readonly 'percent_products_reviewed_transacting'?: number;
|
|
23021
23045
|
readonly 'num_pv_inflow_net_new': number;
|
|
23022
23046
|
readonly 'num_pv_outflow_human_decisions': number;
|
|
23023
23047
|
readonly 'num_pv_outflow_auto_review_decisions': number;
|
|
@@ -23027,6 +23051,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23027
23051
|
readonly 'num_pr_outflow_auto_review_decisions': number;
|
|
23028
23052
|
readonly 'num_pr_outflow_side_effect_decisions': number;
|
|
23029
23053
|
readonly 'num_pending_decisions_transacting': number;
|
|
23054
|
+
readonly 'oldest_insufficient_details_pv_onboarding'?: string;
|
|
23055
|
+
readonly 'oldest_insufficient_details_pv_active'?: string;
|
|
23056
|
+
readonly 'oldest_insufficient_details_pv_transacting'?: string;
|
|
23030
23057
|
}
|
|
23031
23058
|
|
|
23032
23059
|
interface RestrictionsDailyopsDeleted {
|
|
@@ -23326,29 +23353,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23326
23353
|
readonly 'customer_id': string;
|
|
23327
23354
|
}
|
|
23328
23355
|
|
|
23329
|
-
interface ShippedItemValue {
|
|
23330
|
-
readonly 'item': io.flow.common.v0.models.CatalogItemReference;
|
|
23331
|
-
readonly 'taxes': io.flow.common.v0.models.PriceWithBase;
|
|
23332
|
-
readonly 'duties': io.flow.common.v0.models.PriceWithBase;
|
|
23333
|
-
readonly 'total': io.flow.common.v0.models.PriceWithBase;
|
|
23334
|
-
}
|
|
23335
|
-
|
|
23336
|
-
interface ShippingEstimateDeleted {
|
|
23337
|
-
readonly 'discriminator': 'shipping_estimate_deleted';
|
|
23338
|
-
readonly 'event_id': string;
|
|
23339
|
-
readonly 'timestamp': string;
|
|
23340
|
-
readonly 'organization': string;
|
|
23341
|
-
readonly 'id': string;
|
|
23342
|
-
}
|
|
23343
|
-
|
|
23344
|
-
interface ShippingEstimateUpserted {
|
|
23345
|
-
readonly 'discriminator': 'shipping_estimate_upserted';
|
|
23346
|
-
readonly 'event_id': string;
|
|
23347
|
-
readonly 'timestamp': string;
|
|
23348
|
-
readonly 'organization': string;
|
|
23349
|
-
readonly 'estimate': io.flow.label.v0.models.Estimate;
|
|
23350
|
-
}
|
|
23351
|
-
|
|
23352
23356
|
interface ShippingLane {
|
|
23353
23357
|
readonly 'origin': string;
|
|
23354
23358
|
readonly 'destination': string;
|
|
@@ -23760,6 +23764,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23760
23764
|
readonly 'plan': io.flow.internal.v0.enums.ShopifyPlanType;
|
|
23761
23765
|
}
|
|
23762
23766
|
|
|
23767
|
+
interface ShopifyMerchantPlanDeleted {
|
|
23768
|
+
readonly 'discriminator': 'shopify_merchant_plan_deleted';
|
|
23769
|
+
readonly 'event_id': string;
|
|
23770
|
+
readonly 'timestamp': string;
|
|
23771
|
+
readonly 'id': string;
|
|
23772
|
+
}
|
|
23773
|
+
|
|
23774
|
+
interface ShopifyMerchantPlanUpserted {
|
|
23775
|
+
readonly 'discriminator': 'shopify_merchant_plan_upserted';
|
|
23776
|
+
readonly 'event_id': string;
|
|
23777
|
+
readonly 'timestamp': string;
|
|
23778
|
+
readonly 'shopify_merchant_plan': io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
23779
|
+
}
|
|
23780
|
+
|
|
23763
23781
|
interface ShopifyMetadata {
|
|
23764
23782
|
readonly 'domain': string;
|
|
23765
23783
|
readonly 'myshopify_domain': string;
|
|
@@ -24501,6 +24519,46 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24501
24519
|
readonly 'capture': io.flow.internal.v0.models.StripeInternalCapture;
|
|
24502
24520
|
}
|
|
24503
24521
|
|
|
24522
|
+
interface StripeConnectReportRecord {
|
|
24523
|
+
readonly 'id': string;
|
|
24524
|
+
readonly 'file_id': string;
|
|
24525
|
+
readonly 'line_number': number;
|
|
24526
|
+
readonly 'created_utc': string;
|
|
24527
|
+
readonly 'charge_id'?: string;
|
|
24528
|
+
readonly 'payment_intent_id'?: string;
|
|
24529
|
+
readonly 'gross': number;
|
|
24530
|
+
readonly 'fee': number;
|
|
24531
|
+
readonly 'net': number;
|
|
24532
|
+
readonly 'currency': string;
|
|
24533
|
+
readonly 'connected_account': string;
|
|
24534
|
+
readonly 'reporting_category': io.flow.stripe.v0.enums.ConnectReportReportingCategory;
|
|
24535
|
+
readonly 'dispute_reason'?: string;
|
|
24536
|
+
readonly 'available_on_utc': string;
|
|
24537
|
+
readonly 'automatic_payout_effective_at_utc'?: string;
|
|
24538
|
+
readonly 'source_id'?: string;
|
|
24539
|
+
readonly 'customer_facing_amount'?: number;
|
|
24540
|
+
readonly 'customer_facing_currency'?: string;
|
|
24541
|
+
readonly 'payment_method_type'?: string;
|
|
24542
|
+
readonly 'card_brand'?: string;
|
|
24543
|
+
readonly 'statement_descriptor'?: string;
|
|
24544
|
+
readonly 'payment_metadata'?: io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata;
|
|
24545
|
+
readonly 'transfer_metadata'?: any/*object*/;
|
|
24546
|
+
}
|
|
24547
|
+
|
|
24548
|
+
interface StripeConnectReportRecordDeleted {
|
|
24549
|
+
readonly 'discriminator': 'stripe_connect_report_record_deleted';
|
|
24550
|
+
readonly 'event_id': string;
|
|
24551
|
+
readonly 'timestamp': string;
|
|
24552
|
+
readonly 'id': string;
|
|
24553
|
+
}
|
|
24554
|
+
|
|
24555
|
+
interface StripeConnectReportRecordUpserted {
|
|
24556
|
+
readonly 'discriminator': 'stripe_connect_report_record_upserted';
|
|
24557
|
+
readonly 'event_id': string;
|
|
24558
|
+
readonly 'timestamp': string;
|
|
24559
|
+
readonly 'record': io.flow.stripe.v0.models.ConnectReportRecord;
|
|
24560
|
+
}
|
|
24561
|
+
|
|
24504
24562
|
interface StripeDisputeDeleted {
|
|
24505
24563
|
readonly 'discriminator': 'stripe_dispute_deleted';
|
|
24506
24564
|
readonly 'event_id': string;
|
|
@@ -24802,40 +24860,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24802
24860
|
readonly 'category_code'?: string;
|
|
24803
24861
|
}
|
|
24804
24862
|
|
|
24805
|
-
interface TaxDutyDeltaMetadataActual {
|
|
24806
|
-
readonly 'processing': io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
24807
|
-
}
|
|
24808
|
-
|
|
24809
|
-
interface TaxDutyDeltaMetadataActualProcessing {
|
|
24810
|
-
readonly 'capture': io.flow.common.v0.models.Money;
|
|
24811
|
-
readonly 'fees': io.flow.common.v0.models.Money;
|
|
24812
|
-
readonly 'transfer': io.flow.common.v0.models.Money;
|
|
24813
|
-
readonly 'total': io.flow.common.v0.models.Money;
|
|
24814
|
-
}
|
|
24815
|
-
|
|
24816
|
-
interface TaxDutyDeltaMetadataExpected {
|
|
24817
|
-
readonly 'processing': io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
24818
|
-
}
|
|
24819
|
-
|
|
24820
|
-
interface TaxDutyDeltaMetadataExpectedProcessing {
|
|
24821
|
-
readonly 'tax': io.flow.common.v0.models.Money;
|
|
24822
|
-
readonly 'duty': io.flow.common.v0.models.Money;
|
|
24823
|
-
readonly 'total': io.flow.common.v0.models.Money;
|
|
24824
|
-
}
|
|
24825
|
-
|
|
24826
|
-
interface TaxDutyDeltaTransaction {
|
|
24827
|
-
readonly 'discriminator': 'tax_duty_delta_transaction';
|
|
24828
|
-
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
24829
|
-
readonly 'id': string;
|
|
24830
|
-
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
24831
|
-
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
24832
|
-
readonly 'posted_at'?: string;
|
|
24833
|
-
readonly 'value': io.flow.common.v0.models.Price;
|
|
24834
|
-
readonly 'description': string;
|
|
24835
|
-
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
24836
|
-
readonly 'created_at': string;
|
|
24837
|
-
}
|
|
24838
|
-
|
|
24839
24863
|
interface TaxRemittanceTransaction {
|
|
24840
24864
|
readonly 'discriminator': 'tax_remittance_transaction';
|
|
24841
24865
|
readonly 'order': io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -25581,7 +25605,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25581
25605
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25582
25606
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25583
25607
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25584
|
-
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.ShippingEstimateUpserted | io.flow.internal.v0.models.ShippingEstimateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.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.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.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);
|
|
25608
|
+
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
25585
25609
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25586
25610
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25587
25611
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -25632,7 +25656,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25632
25656
|
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata);
|
|
25633
25657
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
25634
25658
|
type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
|
|
25635
|
-
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction
|
|
25659
|
+
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction);
|
|
25636
25660
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
25637
25661
|
type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
|
|
25638
25662
|
}
|
|
@@ -25739,6 +25763,7 @@ export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
25739
25763
|
export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
|
|
25740
25764
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
25741
25765
|
export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
|
|
25766
|
+
export const internalPaymentEntityType: PropTypes.Requireable<io.flow.internal.v0.enums.InternalPaymentEntityType>;
|
|
25742
25767
|
export const itemClassificationAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationAction>;
|
|
25743
25768
|
export const itemClassificationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationStatus>;
|
|
25744
25769
|
export const itemHarmonizationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ItemHarmonizationStatus>;
|
|
@@ -25759,6 +25784,7 @@ export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enum
|
|
|
25759
25784
|
export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
|
|
25760
25785
|
export const manualReviewRuleStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ManualReviewRuleStatus>;
|
|
25761
25786
|
export const manualTransactionCategory: PropTypes.Requireable<io.flow.internal.v0.enums.ManualTransactionCategory>;
|
|
25787
|
+
export const merchantOverrideStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MerchantOverrideStatus>;
|
|
25762
25788
|
export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
|
|
25763
25789
|
export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
|
|
25764
25790
|
export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
|
|
@@ -25805,6 +25831,8 @@ export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSou
|
|
|
25805
25831
|
export const reboundConfigurationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReboundConfigurationStatus>;
|
|
25806
25832
|
export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
|
|
25807
25833
|
export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
|
|
25834
|
+
export const reportFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileStatus>;
|
|
25835
|
+
export const reportFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileType>;
|
|
25808
25836
|
export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
|
|
25809
25837
|
export const reportPaymentType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportPaymentType>;
|
|
25810
25838
|
export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
|
|
@@ -25891,9 +25919,6 @@ export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
25891
25919
|
export const addressConfigurationProvinceSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationProvinceSetting>;
|
|
25892
25920
|
export const addressConfigurationSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSetting>;
|
|
25893
25921
|
export const addressConfigurationSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSettingForm>;
|
|
25894
|
-
export const adjustedEstimates: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimates>;
|
|
25895
|
-
export const adjustedEstimatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesDeleted>;
|
|
25896
|
-
export const adjustedEstimatesUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesUpserted>;
|
|
25897
25922
|
export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
|
|
25898
25923
|
export const adjustmentAmountPercentage: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountPercentage>;
|
|
25899
25924
|
export const adjustmentDetailsAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentDetailsAmountFixed>;
|
|
@@ -26425,7 +26450,6 @@ export const fuelSurchargeServiceFeePercentPutForm: PropTypes.Requireable<io.flo
|
|
|
26425
26450
|
export const fulfillment: PropTypes.Requireable<io.flow.internal.v0.models.Fulfillment>;
|
|
26426
26451
|
export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentActionForm>;
|
|
26427
26452
|
export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
|
|
26428
|
-
export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
|
|
26429
26453
|
export const fulfillmentCarrier: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCarrier>;
|
|
26430
26454
|
export const fulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentDeleted>;
|
|
26431
26455
|
export const fulfillmentFallbacks: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacks>;
|
|
@@ -26437,7 +26461,6 @@ export const fulfillmentProofLabelTrackingReference: PropTypes.Requireable<io.fl
|
|
|
26437
26461
|
export const fulfillmentProofOrderCombinedShipmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference>;
|
|
26438
26462
|
export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
|
|
26439
26463
|
export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
|
|
26440
|
-
export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
|
|
26441
26464
|
export const fulfillmentShopperBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShopperBreakdown>;
|
|
26442
26465
|
export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
|
|
26443
26466
|
export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
|
|
@@ -26540,7 +26563,6 @@ export const itemSalesMarginUpserted: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26540
26563
|
export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginVersion>;
|
|
26541
26564
|
export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
|
|
26542
26565
|
export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
|
|
26543
|
-
export const itemsShipped: PropTypes.Requireable<io.flow.internal.v0.models.ItemsShipped>;
|
|
26544
26566
|
export const jeanDemoItem: PropTypes.Requireable<io.flow.internal.v0.models.JeanDemoItem>;
|
|
26545
26567
|
export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
|
|
26546
26568
|
export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
|
|
@@ -26553,7 +26575,9 @@ export const labelAliases: PropTypes.Requireable<io.flow.internal.v0.models.Labe
|
|
|
26553
26575
|
export const labelAssociation: PropTypes.Requireable<io.flow.internal.v0.models.LabelAssociation>;
|
|
26554
26576
|
export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.models.LabelCancellationError>;
|
|
26555
26577
|
export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
|
|
26578
|
+
export const labelCreationJobDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobDeleted>;
|
|
26556
26579
|
export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
|
|
26580
|
+
export const labelCreationJobUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobUpserted>;
|
|
26557
26581
|
export const labelCreationRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationRequestForm>;
|
|
26558
26582
|
export const labelDestination: PropTypes.Requireable<io.flow.internal.v0.models.LabelDestination>;
|
|
26559
26583
|
export const labelGenerationSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettings>;
|
|
@@ -26648,6 +26672,8 @@ export const merchantHubOverride: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26648
26672
|
export const merchantHubOverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantHubOverrideForm>;
|
|
26649
26673
|
export const merchantOfRecordEntitySettings: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettings>;
|
|
26650
26674
|
export const merchantOfRecordEntitySettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm>;
|
|
26675
|
+
export const merchantOverride: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverride>;
|
|
26676
|
+
export const merchantOverrideDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverrideDecisionForm>;
|
|
26651
26677
|
export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
|
|
26652
26678
|
export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
|
|
26653
26679
|
export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
|
|
@@ -26700,7 +26726,6 @@ export const orderFulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26700
26726
|
export const orderNote: PropTypes.Requireable<io.flow.internal.v0.models.OrderNote>;
|
|
26701
26727
|
export const orderNoteForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderNoteForm>;
|
|
26702
26728
|
export const orderPaymentAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.OrderPaymentAuthorization>;
|
|
26703
|
-
export const orderPlaced: PropTypes.Requireable<io.flow.internal.v0.models.OrderPlaced>;
|
|
26704
26729
|
export const orderRatesDataV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesDataV3>;
|
|
26705
26730
|
export const orderRatesPublishedV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesPublishedV3>;
|
|
26706
26731
|
export const orderReference: PropTypes.Requireable<io.flow.internal.v0.models.OrderReference>;
|
|
@@ -26709,7 +26734,6 @@ export const orderRevenueRegionDataPoint: PropTypes.Requireable<io.flow.internal
|
|
|
26709
26734
|
export const orderRevenueTimelineChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineChart>;
|
|
26710
26735
|
export const orderRevenueTimelineDataPoint: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineDataPoint>;
|
|
26711
26736
|
export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderServiceChangeCsvForm>;
|
|
26712
|
-
export const orderShipped: PropTypes.Requireable<io.flow.internal.v0.models.OrderShipped>;
|
|
26713
26737
|
export const orderSubmissionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderSubmissionForm>;
|
|
26714
26738
|
export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
|
|
26715
26739
|
export const orderTaxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting>;
|
|
@@ -26952,7 +26976,6 @@ export const ratecardStandardConfigurationUpserted: PropTypes.Requireable<io.flo
|
|
|
26952
26976
|
export const ratecardStandardSettings: PropTypes.Requireable<io.flow.internal.v0.models.RatecardStandardSettings>;
|
|
26953
26977
|
export const ratesChanged: PropTypes.Requireable<io.flow.internal.v0.models.RatesChanged>;
|
|
26954
26978
|
export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatesNamesSummary>;
|
|
26955
|
-
export const readyToFulfill: PropTypes.Requireable<io.flow.internal.v0.models.ReadyToFulfill>;
|
|
26956
26979
|
export const reboundConfiguration: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfiguration>;
|
|
26957
26980
|
export const reboundConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfigurationForm>;
|
|
26958
26981
|
export const recordReference: PropTypes.Requireable<io.flow.internal.v0.models.RecordReference>;
|
|
@@ -26965,6 +26988,7 @@ export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
|
|
|
26965
26988
|
export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
|
|
26966
26989
|
export const reportBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccount>;
|
|
26967
26990
|
export const reportBankAccountCleartext: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccountCleartext>;
|
|
26991
|
+
export const reportFile: PropTypes.Requireable<io.flow.internal.v0.models.ReportFile>;
|
|
26968
26992
|
export const reportFilter: PropTypes.Requireable<io.flow.internal.v0.models.ReportFilter>;
|
|
26969
26993
|
export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.ReportForm>;
|
|
26970
26994
|
export const reportMerchant: PropTypes.Requireable<io.flow.internal.v0.models.ReportMerchant>;
|
|
@@ -26972,6 +26996,8 @@ export const reportOrderReference: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
26972
26996
|
export const reportOrganizationReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportOrganizationReference>;
|
|
26973
26997
|
export const reportOwner: PropTypes.Requireable<io.flow.internal.v0.models.ReportOwner>;
|
|
26974
26998
|
export const reportPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportPayment>;
|
|
26999
|
+
export const reportRecordError: PropTypes.Requireable<io.flow.internal.v0.models.ReportRecordError>;
|
|
27000
|
+
export const reportRecordRetryQueue: PropTypes.Requireable<io.flow.internal.v0.models.ReportRecordRetryQueue>;
|
|
26975
27001
|
export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
|
|
26976
27002
|
export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
|
|
26977
27003
|
export const reportingAuthorizationReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportingAuthorizationReference>;
|
|
@@ -27084,9 +27110,6 @@ export const sessionRollout: PropTypes.Requireable<io.flow.internal.v0.models.Se
|
|
|
27084
27110
|
export const sessionRolloutForm: PropTypes.Requireable<io.flow.internal.v0.models.SessionRolloutForm>;
|
|
27085
27111
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
27086
27112
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
27087
|
-
export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
|
|
27088
|
-
export const shippingEstimateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShippingEstimateDeleted>;
|
|
27089
|
-
export const shippingEstimateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShippingEstimateUpserted>;
|
|
27090
27113
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
27091
27114
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
27092
27115
|
export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
|
|
@@ -27148,6 +27171,8 @@ export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.in
|
|
|
27148
27171
|
export const shopifyMarketsWebhookRegistrationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted>;
|
|
27149
27172
|
export const shopifyMarketsWebhookRegistrationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted>;
|
|
27150
27173
|
export const shopifyMerchantPlan: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlan>;
|
|
27174
|
+
export const shopifyMerchantPlanDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlanDeleted>;
|
|
27175
|
+
export const shopifyMerchantPlanUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlanUpserted>;
|
|
27151
27176
|
export const shopifyMetadata: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMetadata>;
|
|
27152
27177
|
export const shopifyMonitoringCarrierService: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringCarrierService>;
|
|
27153
27178
|
export const shopifyMonitoringFulfillmentExternal: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal>;
|
|
@@ -27257,6 +27282,9 @@ export const stripeAuthorizationDeleted: PropTypes.Requireable<io.flow.internal.
|
|
|
27257
27282
|
export const stripeAuthorizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeAuthorizationUpserted>;
|
|
27258
27283
|
export const stripeCaptureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeCaptureDeleted>;
|
|
27259
27284
|
export const stripeCaptureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeCaptureUpserted>;
|
|
27285
|
+
export const stripeConnectReportRecord: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecord>;
|
|
27286
|
+
export const stripeConnectReportRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordDeleted>;
|
|
27287
|
+
export const stripeConnectReportRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordUpserted>;
|
|
27260
27288
|
export const stripeDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeDisputeDeleted>;
|
|
27261
27289
|
export const stripeDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeDisputeUpserted>;
|
|
27262
27290
|
export const stripeInternalAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.StripeInternalAuthorization>;
|
|
@@ -27290,11 +27318,6 @@ export const taxCalculationError: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27290
27318
|
export const taxCalculationForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationForm>;
|
|
27291
27319
|
export const taxCalculationLineItem: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItem>;
|
|
27292
27320
|
export const taxCalculationLineItemForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItemForm>;
|
|
27293
|
-
export const taxDutyDeltaMetadataActual: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataActual>;
|
|
27294
|
-
export const taxDutyDeltaMetadataActualProcessing: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing>;
|
|
27295
|
-
export const taxDutyDeltaMetadataExpected: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected>;
|
|
27296
|
-
export const taxDutyDeltaMetadataExpectedProcessing: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing>;
|
|
27297
|
-
export const taxDutyDeltaTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaTransaction>;
|
|
27298
27321
|
export const taxRemittanceTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransaction>;
|
|
27299
27322
|
export const taxRemittanceTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionDeleted>;
|
|
27300
27323
|
export const taxRemittanceTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionUpserted>;
|