@flowio/types 11.24.112 → 11.24.113
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +191 -166
- package/dist/api.d.ts +191 -50
- package/package.json +2 -2
- package/src/api-internal.ts +249 -212
- package/src/api.ts +239 -56
package/dist/api-internal.d.ts
CHANGED
|
@@ -1107,6 +1107,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1107
1107
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1108
1108
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1109
1109
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1110
|
+
type PaymentFeeType = 'fx' | 'mor';
|
|
1110
1111
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1111
1112
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1112
1113
|
type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
|
|
@@ -1279,6 +1280,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1279
1280
|
readonly attributes?: Record<string, string>;
|
|
1280
1281
|
readonly status?: io.flow.payment.v0.enums.CaptureStatus;
|
|
1281
1282
|
readonly base?: io.flow.common.v0.models.Money;
|
|
1283
|
+
readonly fees?: io.flow.payment.v0.models.PaymentFee[];
|
|
1282
1284
|
}
|
|
1283
1285
|
interface CaptureError {
|
|
1284
1286
|
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
@@ -1494,6 +1496,11 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1494
1496
|
readonly month: number;
|
|
1495
1497
|
readonly year: number;
|
|
1496
1498
|
}
|
|
1499
|
+
interface ExternalCard {
|
|
1500
|
+
readonly discriminator: 'external_card';
|
|
1501
|
+
readonly id: string;
|
|
1502
|
+
readonly type?: io.flow.payment.v0.enums.CardType;
|
|
1503
|
+
}
|
|
1497
1504
|
interface GooglePayAuthorizationPayload {
|
|
1498
1505
|
readonly discriminator: 'google_pay_authorization_payload';
|
|
1499
1506
|
readonly payload: any;
|
|
@@ -1615,6 +1622,11 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1615
1622
|
readonly messages: string[];
|
|
1616
1623
|
readonly codes: io.flow.payment.v0.enums.PaymentErrorCode[];
|
|
1617
1624
|
}
|
|
1625
|
+
interface PaymentFee {
|
|
1626
|
+
readonly type: io.flow.payment.v0.enums.PaymentFeeType;
|
|
1627
|
+
readonly money: io.flow.common.v0.models.Money;
|
|
1628
|
+
readonly base?: io.flow.common.v0.models.Money;
|
|
1629
|
+
}
|
|
1618
1630
|
interface PaymentPaymentRequestReference {
|
|
1619
1631
|
readonly discriminator: 'payment_request';
|
|
1620
1632
|
readonly payment_request_id: string;
|
|
@@ -1959,7 +1971,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
1959
1971
|
type BrowserActionConfiguration = io.flow.payment.v0.models.CardBrowserActionConfiguration;
|
|
1960
1972
|
type ConfirmationDetails = io.flow.payment.v0.models.DirectDebit | io.flow.payment.v0.models.CardConfirmationSummary;
|
|
1961
1973
|
type DeviceDetails = io.flow.payment.v0.models.DeviceDetailsBrowser;
|
|
1962
|
-
type ExpandableCard = io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary;
|
|
1974
|
+
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;
|
|
1963
1975
|
type ExpandablePaymentProcessor = io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference;
|
|
1964
1976
|
type GatewayAuthenticationData = io.flow.payment.v0.models.StripeAuthenticationData;
|
|
1965
1977
|
type GatewayAuthenticationDataForm = io.flow.payment.v0.models.StripeAuthenticationDataForm;
|
|
@@ -2015,6 +2027,9 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2015
2027
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
2016
2028
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
2017
2029
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
2030
|
+
type ConnectReportReportingCategory = 'charge' | 'refund' | 'payout_reversal' | 'transfer' | 'transfer_reversal';
|
|
2031
|
+
type ConnectReportShopPlan = 'shopify_plus' | 'standard';
|
|
2032
|
+
type ConnectReportTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit';
|
|
2018
2033
|
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';
|
|
2019
2034
|
type DisputeEventType = 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated';
|
|
2020
2035
|
type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
|
|
@@ -2255,6 +2270,44 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2255
2270
|
readonly attempts_remaining: number;
|
|
2256
2271
|
readonly status: io.flow.stripe.v0.enums.CodeVerificationStatus;
|
|
2257
2272
|
}
|
|
2273
|
+
interface ConnectReportRecord {
|
|
2274
|
+
readonly created_utc: string;
|
|
2275
|
+
readonly charge_id?: string;
|
|
2276
|
+
readonly payment_intent_id?: string;
|
|
2277
|
+
readonly gross: number;
|
|
2278
|
+
readonly fee: number;
|
|
2279
|
+
readonly net: number;
|
|
2280
|
+
readonly currency: string;
|
|
2281
|
+
readonly connected_account: string;
|
|
2282
|
+
readonly reporting_category: io.flow.stripe.v0.enums.ConnectReportReportingCategory;
|
|
2283
|
+
readonly dispute_reason?: io.flow.stripe.v0.enums.DisputeReason;
|
|
2284
|
+
readonly available_on_utc: string;
|
|
2285
|
+
readonly automatic_payout_effective_at_utc?: string;
|
|
2286
|
+
readonly source_id?: string;
|
|
2287
|
+
readonly customer_facing_amount?: number;
|
|
2288
|
+
readonly customer_facing_currency?: string;
|
|
2289
|
+
readonly payment_method_type?: string;
|
|
2290
|
+
readonly card_brand?: string;
|
|
2291
|
+
readonly statement_descriptor?: string;
|
|
2292
|
+
readonly payment_metadata?: io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata;
|
|
2293
|
+
readonly transfer_metadata?: any;
|
|
2294
|
+
}
|
|
2295
|
+
interface ConnectReportRecordPaymentMetadata {
|
|
2296
|
+
readonly shop_id?: number;
|
|
2297
|
+
readonly shop_plan?: io.flow.stripe.v0.enums.ConnectReportShopPlan;
|
|
2298
|
+
readonly checkout_id?: string;
|
|
2299
|
+
readonly order_id?: number;
|
|
2300
|
+
readonly order_transaction_id?: number;
|
|
2301
|
+
readonly transfer_type?: io.flow.stripe.v0.enums.ConnectReportTransferType;
|
|
2302
|
+
readonly transfer_exchange_rate?: number;
|
|
2303
|
+
readonly charge_total?: number;
|
|
2304
|
+
readonly charge_currency?: string;
|
|
2305
|
+
readonly charge_exchange_rate?: number;
|
|
2306
|
+
readonly duties?: number;
|
|
2307
|
+
readonly import_taxes?: number;
|
|
2308
|
+
readonly mor_fee?: number;
|
|
2309
|
+
readonly fx_fee?: number;
|
|
2310
|
+
}
|
|
2258
2311
|
interface Customer {
|
|
2259
2312
|
readonly id: string;
|
|
2260
2313
|
readonly object: string;
|
|
@@ -3227,8 +3280,6 @@ declare namespace io.flow.customer.v0.models {
|
|
|
3227
3280
|
declare namespace io.flow.label.v0.enums {
|
|
3228
3281
|
type CostEstimateSource = 'flow' | 'channel';
|
|
3229
3282
|
type Direction = 'outbound' | 'return';
|
|
3230
|
-
type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
|
|
3231
|
-
type EstimateType = 'Estimated' | 'Final';
|
|
3232
3283
|
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';
|
|
3233
3284
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3234
3285
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
@@ -3296,14 +3347,6 @@ declare namespace io.flow.label.v0.models {
|
|
|
3296
3347
|
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3297
3348
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3298
3349
|
}
|
|
3299
|
-
interface Estimate {
|
|
3300
|
-
readonly id: string;
|
|
3301
|
-
readonly organization_id: string;
|
|
3302
|
-
readonly label_id: string;
|
|
3303
|
-
readonly estimate: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
3304
|
-
readonly type: io.flow.label.v0.enums.EstimateType;
|
|
3305
|
-
readonly origin?: io.flow.label.v0.enums.EstimateOrigin;
|
|
3306
|
-
}
|
|
3307
3350
|
interface LabelOrderSummary {
|
|
3308
3351
|
readonly id: string;
|
|
3309
3352
|
readonly number: string;
|
|
@@ -4249,7 +4292,7 @@ declare namespace io.flow.brickftp.v0.unions {
|
|
|
4249
4292
|
}
|
|
4250
4293
|
declare namespace io.flow.units.v0.enums {
|
|
4251
4294
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
4252
|
-
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
4295
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter';
|
|
4253
4296
|
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
4254
4297
|
}
|
|
4255
4298
|
declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
@@ -6711,7 +6754,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
6711
6754
|
type RoundingType = 'pattern' | 'multiple';
|
|
6712
6755
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
6713
6756
|
type SortDirection = 'ascending' | 'descending';
|
|
6714
|
-
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
6757
|
+
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
6715
6758
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
6716
6759
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
6717
6760
|
type ValueAddedService = 'Hazardous Material';
|
|
@@ -7351,7 +7394,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
7351
7394
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
7352
7395
|
type OrderStatus = 'open' | 'submitted';
|
|
7353
7396
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
7354
|
-
type OrderType = 'standard' | 'replacement';
|
|
7397
|
+
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
7355
7398
|
type OrganizationPaymentMethodTag = 'deny';
|
|
7356
7399
|
type PaymentMethodRuleContentKey = 'description';
|
|
7357
7400
|
type PriceFacetBoundary = 'min' | 'max';
|
|
@@ -8333,6 +8376,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
8333
8376
|
interface DutiesTaxesPaidSurchargeServiceFee {
|
|
8334
8377
|
readonly discriminator: 'duties_taxes_paid_surcharge_service_fee';
|
|
8335
8378
|
readonly amount: io.flow.common.v0.models.Money;
|
|
8379
|
+
readonly destination_countries?: string[];
|
|
8336
8380
|
readonly starts_at?: string;
|
|
8337
8381
|
readonly ends_at?: string;
|
|
8338
8382
|
}
|
|
@@ -10099,7 +10143,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
10099
10143
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
10100
10144
|
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';
|
|
10101
10145
|
type StatementAttachmentType = 'csv';
|
|
10102
|
-
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'
|
|
10146
|
+
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';
|
|
10103
10147
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
10104
10148
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
10105
10149
|
}
|
|
@@ -11905,7 +11949,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11905
11949
|
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';
|
|
11906
11950
|
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';
|
|
11907
11951
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
11908
|
-
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'
|
|
11952
|
+
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';
|
|
11909
11953
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
11910
11954
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
11911
11955
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -11968,7 +12012,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11968
12012
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
11969
12013
|
type EmptyAttribute = 'irrelevant';
|
|
11970
12014
|
type ErpFileType = 'vendor';
|
|
11971
|
-
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';
|
|
12015
|
+
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';
|
|
11972
12016
|
type ExperienceImportType = 'experience_with_settings';
|
|
11973
12017
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
11974
12018
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -11987,8 +12031,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11987
12031
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
11988
12032
|
type GoogleAnalyticsPlugin = 'ec';
|
|
11989
12033
|
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';
|
|
11990
|
-
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
12034
|
+
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
11991
12035
|
type HttpMethod = 'get' | 'post';
|
|
12036
|
+
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
11992
12037
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
11993
12038
|
type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
|
|
11994
12039
|
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt';
|
|
@@ -12009,6 +12054,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12009
12054
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
12010
12055
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
12011
12056
|
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';
|
|
12057
|
+
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
12012
12058
|
type MixedBagWeight = '0' | '1' | '2';
|
|
12013
12059
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
12014
12060
|
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';
|
|
@@ -12055,6 +12101,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12055
12101
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
12056
12102
|
type RedirectReason = 'three_d_secure';
|
|
12057
12103
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
12104
|
+
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
12105
|
+
type ReportFileType = 'stripe_connect_report';
|
|
12058
12106
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
12059
12107
|
type ReportPaymentType = 'credit' | 'debit';
|
|
12060
12108
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
@@ -12339,26 +12387,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12339
12387
|
interface AddressConfigurationSettingForm {
|
|
12340
12388
|
readonly province_code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
12341
12389
|
}
|
|
12342
|
-
interface AdjustedEstimates {
|
|
12343
|
-
readonly id: string;
|
|
12344
|
-
readonly organization_id: string;
|
|
12345
|
-
readonly label_id: string;
|
|
12346
|
-
readonly estimates: io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
12347
|
-
}
|
|
12348
|
-
interface AdjustedEstimatesDeleted {
|
|
12349
|
-
readonly discriminator: 'adjusted_estimates_deleted';
|
|
12350
|
-
readonly event_id: string;
|
|
12351
|
-
readonly timestamp: string;
|
|
12352
|
-
readonly organization: string;
|
|
12353
|
-
readonly id: string;
|
|
12354
|
-
}
|
|
12355
|
-
interface AdjustedEstimatesUpserted {
|
|
12356
|
-
readonly discriminator: 'adjusted_estimates_upserted';
|
|
12357
|
-
readonly event_id: string;
|
|
12358
|
-
readonly timestamp: string;
|
|
12359
|
-
readonly organization: string;
|
|
12360
|
-
readonly adjusted_estimates: io.flow.internal.v0.models.AdjustedEstimates;
|
|
12361
|
-
}
|
|
12362
12390
|
interface AdjustmentAmountFixed {
|
|
12363
12391
|
readonly discriminator: 'fixed';
|
|
12364
12392
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -15973,18 +16001,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15973
16001
|
interface FulfillmentBusiness {
|
|
15974
16002
|
readonly vat_registration_number: string;
|
|
15975
16003
|
}
|
|
15976
|
-
interface FulfillmentCancel {
|
|
15977
|
-
readonly discriminator: 'fulfillment_cancel';
|
|
15978
|
-
readonly event_id: string;
|
|
15979
|
-
readonly timestamp: string;
|
|
15980
|
-
readonly organization: string;
|
|
15981
|
-
readonly order_number: string;
|
|
15982
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
15983
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
15984
|
-
readonly change_source: io.flow.order.management.v0.enums.OrderChangeSource;
|
|
15985
|
-
readonly reason: io.flow.order.management.v0.enums.CancelReason;
|
|
15986
|
-
readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
15987
|
-
}
|
|
15988
16004
|
interface FulfillmentCarrier {
|
|
15989
16005
|
readonly id: string;
|
|
15990
16006
|
readonly service_id?: string;
|
|
@@ -16060,13 +16076,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16060
16076
|
interface FulfillmentReference {
|
|
16061
16077
|
readonly id: string;
|
|
16062
16078
|
}
|
|
16063
|
-
interface FulfillmentShipmentTracking {
|
|
16064
|
-
readonly fulfillment_key: string;
|
|
16065
|
-
readonly flow_tracking_number: string;
|
|
16066
|
-
readonly carrier_tracking_number?: string;
|
|
16067
|
-
readonly carrier_tracking_url?: string;
|
|
16068
|
-
readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
|
|
16069
|
-
}
|
|
16070
16079
|
interface FulfillmentShopperBreakdown {
|
|
16071
16080
|
readonly shipping: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
16072
16081
|
readonly fees: io.flow.internal.v0.models.ReportingShopperFees;
|
|
@@ -16711,17 +16720,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16711
16720
|
interface ItemValuesForm {
|
|
16712
16721
|
readonly values: string[];
|
|
16713
16722
|
}
|
|
16714
|
-
interface ItemsShipped {
|
|
16715
|
-
readonly discriminator: 'items_shipped';
|
|
16716
|
-
readonly event_id: string;
|
|
16717
|
-
readonly timestamp: string;
|
|
16718
|
-
readonly organization: string;
|
|
16719
|
-
readonly order_number: string;
|
|
16720
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
16721
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
16722
|
-
readonly flow_tracking_number: string;
|
|
16723
|
-
readonly shipped_item_values: io.flow.internal.v0.models.ShippedItemValue[];
|
|
16724
|
-
}
|
|
16725
16723
|
interface JeanDemoItem {
|
|
16726
16724
|
readonly id: string;
|
|
16727
16725
|
readonly name: string;
|
|
@@ -16778,12 +16776,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16778
16776
|
readonly service_id?: string;
|
|
16779
16777
|
readonly carrier_tracking_number?: string;
|
|
16780
16778
|
readonly flow_tracking_number?: string;
|
|
16779
|
+
readonly label_id?: string;
|
|
16781
16780
|
readonly errors: string[];
|
|
16782
16781
|
}
|
|
16782
|
+
interface LabelCreationJobDeleted {
|
|
16783
|
+
readonly discriminator: 'label_creation_job_deleted';
|
|
16784
|
+
readonly event_id: string;
|
|
16785
|
+
readonly timestamp: string;
|
|
16786
|
+
readonly organization: string;
|
|
16787
|
+
readonly id: string;
|
|
16788
|
+
}
|
|
16783
16789
|
interface LabelCreationJobSummary {
|
|
16784
16790
|
readonly reference_id: string;
|
|
16785
16791
|
readonly status: io.flow.internal.v0.enums.LabelCreationStatus;
|
|
16786
16792
|
}
|
|
16793
|
+
interface LabelCreationJobUpserted {
|
|
16794
|
+
readonly discriminator: 'label_creation_job_upserted';
|
|
16795
|
+
readonly event_id: string;
|
|
16796
|
+
readonly timestamp: string;
|
|
16797
|
+
readonly organization: string;
|
|
16798
|
+
readonly label_creation_job: io.flow.internal.v0.models.LabelCreationJob;
|
|
16799
|
+
}
|
|
16787
16800
|
interface LabelCreationRequestForm {
|
|
16788
16801
|
readonly organization: string;
|
|
16789
16802
|
readonly shipping_label_form: io.flow.label.v0.unions.ShippingLabelForm;
|
|
@@ -16893,6 +16906,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16893
16906
|
readonly destination_country?: string;
|
|
16894
16907
|
readonly reference_id?: string;
|
|
16895
16908
|
readonly logistics_integration_provider?: string;
|
|
16909
|
+
readonly tax_lrp_liabilities?: io.flow.internal.v0.models.Liability[];
|
|
16896
16910
|
}
|
|
16897
16911
|
interface LabelSummary {
|
|
16898
16912
|
readonly id: string;
|
|
@@ -17260,6 +17274,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17260
17274
|
readonly paid_at?: string;
|
|
17261
17275
|
readonly posted_at?: string;
|
|
17262
17276
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17277
|
+
readonly channel_statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17263
17278
|
readonly created_at: string;
|
|
17264
17279
|
readonly original_at?: string;
|
|
17265
17280
|
}
|
|
@@ -17439,6 +17454,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17439
17454
|
readonly center?: string;
|
|
17440
17455
|
readonly currency?: string;
|
|
17441
17456
|
}
|
|
17457
|
+
interface MerchantOverride {
|
|
17458
|
+
readonly id: string;
|
|
17459
|
+
readonly organization_id: string;
|
|
17460
|
+
readonly item_number: string;
|
|
17461
|
+
readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
17462
|
+
readonly hs6_code: string;
|
|
17463
|
+
readonly merchant_hs6_code: string;
|
|
17464
|
+
}
|
|
17465
|
+
interface MerchantOverrideDecisionForm {
|
|
17466
|
+
readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
17467
|
+
}
|
|
17442
17468
|
interface MerchantSearchResult {
|
|
17443
17469
|
readonly organization_id: string;
|
|
17444
17470
|
readonly shop_name?: string;
|
|
@@ -17765,15 +17791,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17765
17791
|
interface OrderPaymentAuthorization {
|
|
17766
17792
|
readonly placeholder: string;
|
|
17767
17793
|
}
|
|
17768
|
-
interface OrderPlaced {
|
|
17769
|
-
readonly discriminator: 'order_placed';
|
|
17770
|
-
readonly event_id: string;
|
|
17771
|
-
readonly timestamp: string;
|
|
17772
|
-
readonly organization: string;
|
|
17773
|
-
readonly order_number: string;
|
|
17774
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
17775
|
-
readonly allocation: io.flow.experience.v0.models.AllocationV2;
|
|
17776
|
-
}
|
|
17777
17794
|
interface OrderRatesDataV3 {
|
|
17778
17795
|
readonly organization: string;
|
|
17779
17796
|
readonly order_id: string;
|
|
@@ -17818,16 +17835,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17818
17835
|
readonly from_service_id: string;
|
|
17819
17836
|
readonly to_service_id: string;
|
|
17820
17837
|
}
|
|
17821
|
-
interface OrderShipped {
|
|
17822
|
-
readonly discriminator: 'order_shipped';
|
|
17823
|
-
readonly event_id: string;
|
|
17824
|
-
readonly timestamp: string;
|
|
17825
|
-
readonly organization: string;
|
|
17826
|
-
readonly order_number: string;
|
|
17827
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
17828
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
17829
|
-
readonly shipment_trackings: io.flow.internal.v0.models.FulfillmentShipmentTracking[];
|
|
17830
|
-
}
|
|
17831
17838
|
interface OrderSubmissionForm {
|
|
17832
17839
|
readonly authorization?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
17833
17840
|
}
|
|
@@ -19473,16 +19480,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19473
19480
|
readonly destination: io.flow.reference.v0.models.Country;
|
|
19474
19481
|
readonly summaries: io.flow.internal.v0.models.RateNameSummary[];
|
|
19475
19482
|
}
|
|
19476
|
-
interface ReadyToFulfill {
|
|
19477
|
-
readonly discriminator: 'ready_to_fulfill';
|
|
19478
|
-
readonly event_id: string;
|
|
19479
|
-
readonly timestamp: string;
|
|
19480
|
-
readonly organization: string;
|
|
19481
|
-
readonly order_number: string;
|
|
19482
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
19483
|
-
readonly fulfillments?: io.flow.order.management.v0.models.Fulfillment[];
|
|
19484
|
-
readonly fulfillment_item_allocation_details?: io.flow.order.management.event.v0.models.FulfillmentItemAllocationDetails[];
|
|
19485
|
-
}
|
|
19486
19483
|
interface ReboundConfiguration {
|
|
19487
19484
|
readonly id: string;
|
|
19488
19485
|
readonly login: string;
|
|
@@ -19549,6 +19546,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19549
19546
|
readonly routing_number: string;
|
|
19550
19547
|
readonly account_number: string;
|
|
19551
19548
|
}
|
|
19549
|
+
interface ReportFile {
|
|
19550
|
+
readonly id: string;
|
|
19551
|
+
readonly processor: string;
|
|
19552
|
+
readonly report_file_type: io.flow.internal.v0.enums.ReportFileType;
|
|
19553
|
+
readonly file_name: string;
|
|
19554
|
+
readonly status: io.flow.internal.v0.enums.ReportFileStatus;
|
|
19555
|
+
readonly failure_reason?: string;
|
|
19556
|
+
}
|
|
19552
19557
|
interface ReportFilter {
|
|
19553
19558
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
19554
19559
|
}
|
|
@@ -19580,6 +19585,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19580
19585
|
readonly amount: number;
|
|
19581
19586
|
readonly created_at: string;
|
|
19582
19587
|
}
|
|
19588
|
+
interface ReportRecordError {
|
|
19589
|
+
readonly id: string;
|
|
19590
|
+
readonly file_id: string;
|
|
19591
|
+
readonly line_number: number;
|
|
19592
|
+
readonly failure_reason: string;
|
|
19593
|
+
}
|
|
19594
|
+
interface ReportRecordRetryQueue {
|
|
19595
|
+
readonly id: string;
|
|
19596
|
+
readonly report_file_type: io.flow.internal.v0.enums.ReportFileType;
|
|
19597
|
+
readonly type: io.flow.internal.v0.enums.InternalPaymentEntityType;
|
|
19598
|
+
readonly report_record_id: string;
|
|
19599
|
+
readonly dependent_source_id: string;
|
|
19600
|
+
}
|
|
19583
19601
|
interface ReportRuleDecision {
|
|
19584
19602
|
readonly rule_id: string;
|
|
19585
19603
|
readonly rule_name: string;
|
|
@@ -19813,8 +19831,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19813
19831
|
readonly organization_id: string;
|
|
19814
19832
|
readonly restriction_product_id: string;
|
|
19815
19833
|
readonly product_id: string;
|
|
19834
|
+
readonly item_numbers: string[];
|
|
19835
|
+
readonly primary_item_number?: string;
|
|
19816
19836
|
readonly name: string;
|
|
19817
19837
|
readonly price: io.flow.common.v0.models.Price;
|
|
19838
|
+
readonly hs_code?: string;
|
|
19818
19839
|
readonly description: string;
|
|
19819
19840
|
readonly categories: string[];
|
|
19820
19841
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
@@ -19831,6 +19852,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19831
19852
|
readonly user_ids?: string[];
|
|
19832
19853
|
readonly categories?: string[];
|
|
19833
19854
|
readonly product_name_query?: string;
|
|
19855
|
+
readonly hs6?: string;
|
|
19834
19856
|
readonly positive_keywords?: string[];
|
|
19835
19857
|
readonly negative_keywords?: string[];
|
|
19836
19858
|
readonly product_id?: string;
|
|
@@ -19945,6 +19967,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19945
19967
|
readonly user_ids?: string[];
|
|
19946
19968
|
readonly categories?: string[];
|
|
19947
19969
|
readonly product_name_query?: string;
|
|
19970
|
+
readonly hs6?: string;
|
|
19948
19971
|
readonly product_id?: string;
|
|
19949
19972
|
}
|
|
19950
19973
|
interface RestrictionProductSummary {
|
|
@@ -20050,7 +20073,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20050
20073
|
readonly num_products_transacting_prs: number;
|
|
20051
20074
|
readonly oldest_pr_product_date_setup_complete: string;
|
|
20052
20075
|
readonly oldest_pr_date_transacting: string;
|
|
20053
|
-
readonly percent_products_reviewed_transacting
|
|
20076
|
+
readonly percent_products_reviewed_transacting?: number;
|
|
20054
20077
|
readonly num_pv_inflow_net_new: number;
|
|
20055
20078
|
readonly num_pv_outflow_human_decisions: number;
|
|
20056
20079
|
readonly num_pv_outflow_auto_review_decisions: number;
|
|
@@ -20060,6 +20083,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20060
20083
|
readonly num_pr_outflow_auto_review_decisions: number;
|
|
20061
20084
|
readonly num_pr_outflow_side_effect_decisions: number;
|
|
20062
20085
|
readonly num_pending_decisions_transacting: number;
|
|
20086
|
+
readonly oldest_insufficient_details_pv_onboarding?: string;
|
|
20087
|
+
readonly oldest_insufficient_details_pv_active?: string;
|
|
20088
|
+
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
20063
20089
|
}
|
|
20064
20090
|
interface RestrictionsDailyopsDeleted {
|
|
20065
20091
|
readonly discriminator: 'restrictions_dailyops_deleted';
|
|
@@ -20314,26 +20340,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20314
20340
|
readonly product_code: string;
|
|
20315
20341
|
readonly customer_id: string;
|
|
20316
20342
|
}
|
|
20317
|
-
interface ShippedItemValue {
|
|
20318
|
-
readonly item: io.flow.common.v0.models.CatalogItemReference;
|
|
20319
|
-
readonly taxes: io.flow.common.v0.models.PriceWithBase;
|
|
20320
|
-
readonly duties: io.flow.common.v0.models.PriceWithBase;
|
|
20321
|
-
readonly total: io.flow.common.v0.models.PriceWithBase;
|
|
20322
|
-
}
|
|
20323
|
-
interface ShippingEstimateDeleted {
|
|
20324
|
-
readonly discriminator: 'shipping_estimate_deleted';
|
|
20325
|
-
readonly event_id: string;
|
|
20326
|
-
readonly timestamp: string;
|
|
20327
|
-
readonly organization: string;
|
|
20328
|
-
readonly id: string;
|
|
20329
|
-
}
|
|
20330
|
-
interface ShippingEstimateUpserted {
|
|
20331
|
-
readonly discriminator: 'shipping_estimate_upserted';
|
|
20332
|
-
readonly event_id: string;
|
|
20333
|
-
readonly timestamp: string;
|
|
20334
|
-
readonly organization: string;
|
|
20335
|
-
readonly estimate: io.flow.label.v0.models.Estimate;
|
|
20336
|
-
}
|
|
20337
20343
|
interface ShippingLane {
|
|
20338
20344
|
readonly origin: string;
|
|
20339
20345
|
readonly destination: string;
|
|
@@ -20684,6 +20690,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20684
20690
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
20685
20691
|
readonly plan: io.flow.internal.v0.enums.ShopifyPlanType;
|
|
20686
20692
|
}
|
|
20693
|
+
interface ShopifyMerchantPlanDeleted {
|
|
20694
|
+
readonly discriminator: 'shopify_merchant_plan_deleted';
|
|
20695
|
+
readonly event_id: string;
|
|
20696
|
+
readonly timestamp: string;
|
|
20697
|
+
readonly id: string;
|
|
20698
|
+
}
|
|
20699
|
+
interface ShopifyMerchantPlanUpserted {
|
|
20700
|
+
readonly discriminator: 'shopify_merchant_plan_upserted';
|
|
20701
|
+
readonly event_id: string;
|
|
20702
|
+
readonly timestamp: string;
|
|
20703
|
+
readonly shopify_merchant_plan: io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
20704
|
+
}
|
|
20687
20705
|
interface ShopifyMetadata {
|
|
20688
20706
|
readonly domain: string;
|
|
20689
20707
|
readonly myshopify_domain: string;
|
|
@@ -21316,6 +21334,43 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21316
21334
|
readonly timestamp: string;
|
|
21317
21335
|
readonly capture: io.flow.internal.v0.models.StripeInternalCapture;
|
|
21318
21336
|
}
|
|
21337
|
+
interface StripeConnectReportRecord {
|
|
21338
|
+
readonly id: string;
|
|
21339
|
+
readonly file_id: string;
|
|
21340
|
+
readonly line_number: number;
|
|
21341
|
+
readonly created_utc: string;
|
|
21342
|
+
readonly charge_id?: string;
|
|
21343
|
+
readonly payment_intent_id?: string;
|
|
21344
|
+
readonly gross: number;
|
|
21345
|
+
readonly fee: number;
|
|
21346
|
+
readonly net: number;
|
|
21347
|
+
readonly currency: string;
|
|
21348
|
+
readonly connected_account: string;
|
|
21349
|
+
readonly reporting_category: io.flow.stripe.v0.enums.ConnectReportReportingCategory;
|
|
21350
|
+
readonly dispute_reason?: string;
|
|
21351
|
+
readonly available_on_utc: string;
|
|
21352
|
+
readonly automatic_payout_effective_at_utc?: string;
|
|
21353
|
+
readonly source_id?: string;
|
|
21354
|
+
readonly customer_facing_amount?: number;
|
|
21355
|
+
readonly customer_facing_currency?: string;
|
|
21356
|
+
readonly payment_method_type?: string;
|
|
21357
|
+
readonly card_brand?: string;
|
|
21358
|
+
readonly statement_descriptor?: string;
|
|
21359
|
+
readonly payment_metadata?: io.flow.stripe.v0.models.ConnectReportRecordPaymentMetadata;
|
|
21360
|
+
readonly transfer_metadata?: any;
|
|
21361
|
+
}
|
|
21362
|
+
interface StripeConnectReportRecordDeleted {
|
|
21363
|
+
readonly discriminator: 'stripe_connect_report_record_deleted';
|
|
21364
|
+
readonly event_id: string;
|
|
21365
|
+
readonly timestamp: string;
|
|
21366
|
+
readonly id: string;
|
|
21367
|
+
}
|
|
21368
|
+
interface StripeConnectReportRecordUpserted {
|
|
21369
|
+
readonly discriminator: 'stripe_connect_report_record_upserted';
|
|
21370
|
+
readonly event_id: string;
|
|
21371
|
+
readonly timestamp: string;
|
|
21372
|
+
readonly record: io.flow.stripe.v0.models.ConnectReportRecord;
|
|
21373
|
+
}
|
|
21319
21374
|
interface StripeDisputeDeleted {
|
|
21320
21375
|
readonly discriminator: 'stripe_dispute_deleted';
|
|
21321
21376
|
readonly event_id: string;
|
|
@@ -21584,35 +21639,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21584
21639
|
readonly description?: string;
|
|
21585
21640
|
readonly category_code?: string;
|
|
21586
21641
|
}
|
|
21587
|
-
interface TaxDutyDeltaMetadataActual {
|
|
21588
|
-
readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
21589
|
-
}
|
|
21590
|
-
interface TaxDutyDeltaMetadataActualProcessing {
|
|
21591
|
-
readonly capture: io.flow.common.v0.models.Money;
|
|
21592
|
-
readonly fees: io.flow.common.v0.models.Money;
|
|
21593
|
-
readonly transfer: io.flow.common.v0.models.Money;
|
|
21594
|
-
readonly total: io.flow.common.v0.models.Money;
|
|
21595
|
-
}
|
|
21596
|
-
interface TaxDutyDeltaMetadataExpected {
|
|
21597
|
-
readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
21598
|
-
}
|
|
21599
|
-
interface TaxDutyDeltaMetadataExpectedProcessing {
|
|
21600
|
-
readonly tax: io.flow.common.v0.models.Money;
|
|
21601
|
-
readonly duty: io.flow.common.v0.models.Money;
|
|
21602
|
-
readonly total: io.flow.common.v0.models.Money;
|
|
21603
|
-
}
|
|
21604
|
-
interface TaxDutyDeltaTransaction {
|
|
21605
|
-
readonly discriminator: 'tax_duty_delta_transaction';
|
|
21606
|
-
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
21607
|
-
readonly id: string;
|
|
21608
|
-
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
21609
|
-
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
21610
|
-
readonly posted_at?: string;
|
|
21611
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
21612
|
-
readonly description: string;
|
|
21613
|
-
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
21614
|
-
readonly created_at: string;
|
|
21615
|
-
}
|
|
21616
21642
|
interface TaxRemittanceTransaction {
|
|
21617
21643
|
readonly discriminator: 'tax_remittance_transaction';
|
|
21618
21644
|
readonly order: io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -22259,7 +22285,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22259
22285
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22260
22286
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22261
22287
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22262
|
-
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;
|
|
22288
|
+
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;
|
|
22263
22289
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22264
22290
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22265
22291
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22310,7 +22336,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22310
22336
|
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
22311
22337
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
22312
22338
|
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;
|
|
22313
|
-
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
|
|
22339
|
+
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;
|
|
22314
22340
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
22315
22341
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
22316
22342
|
}
|
|
@@ -22353,9 +22379,6 @@ export declare type AddressConfigurationProvinceSetting = io.flow.internal.v0.mo
|
|
|
22353
22379
|
export declare type AddressConfigurationSetting = io.flow.internal.v0.models.AddressConfigurationSetting;
|
|
22354
22380
|
export declare type AddressConfigurationSettingForm = io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
22355
22381
|
export declare type AddressConfigurationSettingProvinceCode = io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
22356
|
-
export declare type AdjustedEstimates = io.flow.internal.v0.models.AdjustedEstimates;
|
|
22357
|
-
export declare type AdjustedEstimatesDeleted = io.flow.internal.v0.models.AdjustedEstimatesDeleted;
|
|
22358
|
-
export declare type AdjustedEstimatesUpserted = io.flow.internal.v0.models.AdjustedEstimatesUpserted;
|
|
22359
22382
|
export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
22360
22383
|
export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
22361
22384
|
export declare type AdjustmentAmountPercentage = io.flow.internal.v0.models.AdjustmentAmountPercentage;
|
|
@@ -23015,7 +23038,6 @@ export declare type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.unions.
|
|
|
23015
23038
|
export declare type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
23016
23039
|
export declare type FulfillmentActionForm = io.flow.internal.v0.models.FulfillmentActionForm;
|
|
23017
23040
|
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
23018
|
-
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
23019
23041
|
export declare type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
23020
23042
|
export declare type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
23021
23043
|
export declare type FulfillmentFallbacks = io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
@@ -23028,7 +23050,6 @@ export declare type FulfillmentProofLabelTrackingReference = io.flow.internal.v0
|
|
|
23028
23050
|
export declare type FulfillmentProofOrderCombinedShipmentReference = io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference;
|
|
23029
23051
|
export declare type FulfillmentProofShippingNotificationReference = io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference;
|
|
23030
23052
|
export declare type FulfillmentReference = io.flow.internal.v0.models.FulfillmentReference;
|
|
23031
|
-
export declare type FulfillmentShipmentTracking = io.flow.internal.v0.models.FulfillmentShipmentTracking;
|
|
23032
23053
|
export declare type FulfillmentShopperBreakdown = io.flow.internal.v0.models.FulfillmentShopperBreakdown;
|
|
23033
23054
|
export declare type FulfillmentSnapshot = io.flow.internal.v0.models.FulfillmentSnapshot;
|
|
23034
23055
|
export declare type FulfillmentSubsidyBreakdown = io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
@@ -23101,6 +23122,7 @@ export declare type InternalFiservAuthorizationDetails = io.flow.internal.v0.mod
|
|
|
23101
23122
|
export declare type InternalHarmonizationStatistic = io.flow.internal.v0.unions.InternalHarmonizationStatistic;
|
|
23102
23123
|
export declare type InternalItemForm = io.flow.internal.v0.models.InternalItemForm;
|
|
23103
23124
|
export declare type InternalOrder = io.flow.internal.v0.models.InternalOrder;
|
|
23125
|
+
export declare type InternalPaymentEntityType = io.flow.internal.v0.enums.InternalPaymentEntityType;
|
|
23104
23126
|
export declare type InternalPaymentRequest = io.flow.internal.v0.models.InternalPaymentRequest;
|
|
23105
23127
|
export declare type InternalPaymentRequestVerification = io.flow.internal.v0.models.InternalPaymentRequestVerification;
|
|
23106
23128
|
export declare type InternalPaypalAuthorizationDetails = io.flow.internal.v0.models.InternalPaypalAuthorizationDetails;
|
|
@@ -23149,7 +23171,6 @@ export declare type ItemSalesMarginVersion = io.flow.internal.v0.models.ItemSale
|
|
|
23149
23171
|
export declare type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
23150
23172
|
export declare type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
23151
23173
|
export declare type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
23152
|
-
export declare type ItemsShipped = io.flow.internal.v0.models.ItemsShipped;
|
|
23153
23174
|
export declare type JeanDemoItem = io.flow.internal.v0.models.JeanDemoItem;
|
|
23154
23175
|
export declare type Key = io.flow.internal.v0.models.Key;
|
|
23155
23176
|
export declare type KeyReference = io.flow.internal.v0.models.KeyReference;
|
|
@@ -23165,7 +23186,9 @@ export declare type LabelBillingStrategy = io.flow.internal.v0.enums.LabelBillin
|
|
|
23165
23186
|
export declare type LabelCancellationError = io.flow.internal.v0.models.LabelCancellationError;
|
|
23166
23187
|
export declare type LabelCancellationErrorCode = io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
23167
23188
|
export declare type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJob;
|
|
23189
|
+
export declare type LabelCreationJobDeleted = io.flow.internal.v0.models.LabelCreationJobDeleted;
|
|
23168
23190
|
export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
23191
|
+
export declare type LabelCreationJobUpserted = io.flow.internal.v0.models.LabelCreationJobUpserted;
|
|
23169
23192
|
export declare type LabelCreationRequestForm = io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
23170
23193
|
export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
23171
23194
|
export declare type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
@@ -23273,6 +23296,9 @@ export declare type MerchantHubOverride = io.flow.internal.v0.models.MerchantHub
|
|
|
23273
23296
|
export declare type MerchantHubOverrideForm = io.flow.internal.v0.models.MerchantHubOverrideForm;
|
|
23274
23297
|
export declare type MerchantOfRecordEntitySettings = io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
23275
23298
|
export declare type MerchantOfRecordEntitySettingsForm = io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm;
|
|
23299
|
+
export declare type MerchantOverride = io.flow.internal.v0.models.MerchantOverride;
|
|
23300
|
+
export declare type MerchantOverrideDecisionForm = io.flow.internal.v0.models.MerchantOverrideDecisionForm;
|
|
23301
|
+
export declare type MerchantOverrideStatus = io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
23276
23302
|
export declare type MerchantSearchResult = io.flow.internal.v0.models.MerchantSearchResult;
|
|
23277
23303
|
export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
23278
23304
|
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
@@ -23343,7 +23369,6 @@ export declare type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecyc
|
|
|
23343
23369
|
export declare type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
23344
23370
|
export declare type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
23345
23371
|
export declare type OrderPaymentAuthorization = io.flow.internal.v0.models.OrderPaymentAuthorization;
|
|
23346
|
-
export declare type OrderPlaced = io.flow.internal.v0.models.OrderPlaced;
|
|
23347
23372
|
export declare type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
23348
23373
|
export declare type OrderRatesPublishedV3 = io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
23349
23374
|
export declare type OrderReference = io.flow.internal.v0.models.OrderReference;
|
|
@@ -23352,7 +23377,6 @@ export declare type OrderRevenueRegionDataPoint = io.flow.internal.v0.models.Ord
|
|
|
23352
23377
|
export declare type OrderRevenueTimelineChart = io.flow.internal.v0.models.OrderRevenueTimelineChart;
|
|
23353
23378
|
export declare type OrderRevenueTimelineDataPoint = io.flow.internal.v0.models.OrderRevenueTimelineDataPoint;
|
|
23354
23379
|
export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
23355
|
-
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
23356
23380
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
23357
23381
|
export declare type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
23358
23382
|
export declare type OrderTaxAndDutyInclusivitySetting = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
@@ -23634,7 +23658,6 @@ export declare type RatecardStandardConfigurationUpserted = io.flow.internal.v0.
|
|
|
23634
23658
|
export declare type RatecardStandardSettings = io.flow.internal.v0.models.RatecardStandardSettings;
|
|
23635
23659
|
export declare type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
23636
23660
|
export declare type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
23637
|
-
export declare type ReadyToFulfill = io.flow.internal.v0.models.ReadyToFulfill;
|
|
23638
23661
|
export declare type ReboundConfiguration = io.flow.internal.v0.models.ReboundConfiguration;
|
|
23639
23662
|
export declare type ReboundConfigurationForm = io.flow.internal.v0.models.ReboundConfigurationForm;
|
|
23640
23663
|
export declare type ReboundConfigurationStatus = io.flow.internal.v0.enums.ReboundConfigurationStatus;
|
|
@@ -23650,6 +23673,9 @@ export declare type Report = io.flow.internal.v0.models.Report;
|
|
|
23650
23673
|
export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
23651
23674
|
export declare type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
23652
23675
|
export declare type ReportBankAccountCleartext = io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
23676
|
+
export declare type ReportFile = io.flow.internal.v0.models.ReportFile;
|
|
23677
|
+
export declare type ReportFileStatus = io.flow.internal.v0.enums.ReportFileStatus;
|
|
23678
|
+
export declare type ReportFileType = io.flow.internal.v0.enums.ReportFileType;
|
|
23653
23679
|
export declare type ReportFilter = io.flow.internal.v0.models.ReportFilter;
|
|
23654
23680
|
export declare type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
23655
23681
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
@@ -23659,6 +23685,8 @@ export declare type ReportOrganizationReference = io.flow.internal.v0.models.Rep
|
|
|
23659
23685
|
export declare type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
23660
23686
|
export declare type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
23661
23687
|
export declare type ReportPaymentType = io.flow.internal.v0.enums.ReportPaymentType;
|
|
23688
|
+
export declare type ReportRecordError = io.flow.internal.v0.models.ReportRecordError;
|
|
23689
|
+
export declare type ReportRecordRetryQueue = io.flow.internal.v0.models.ReportRecordRetryQueue;
|
|
23662
23690
|
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
23663
23691
|
export declare type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
23664
23692
|
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
@@ -23785,9 +23813,6 @@ export declare type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
|
23785
23813
|
export declare type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
23786
23814
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
23787
23815
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
23788
|
-
export declare type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
23789
|
-
export declare type ShippingEstimateDeleted = io.flow.internal.v0.models.ShippingEstimateDeleted;
|
|
23790
|
-
export declare type ShippingEstimateUpserted = io.flow.internal.v0.models.ShippingEstimateUpserted;
|
|
23791
23816
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
23792
23817
|
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
23793
23818
|
export declare type Shop = io.flow.internal.v0.models.Shop;
|
|
@@ -23856,6 +23881,8 @@ export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.mode
|
|
|
23856
23881
|
export declare type ShopifyMarketsWebhookRegistrationDeleted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
23857
23882
|
export declare type ShopifyMarketsWebhookRegistrationUpserted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
23858
23883
|
export declare type ShopifyMerchantPlan = io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
23884
|
+
export declare type ShopifyMerchantPlanDeleted = io.flow.internal.v0.models.ShopifyMerchantPlanDeleted;
|
|
23885
|
+
export declare type ShopifyMerchantPlanUpserted = io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
|
|
23859
23886
|
export declare type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
23860
23887
|
export declare type ShopifyMonitoringCarrierService = io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
23861
23888
|
export declare type ShopifyMonitoringFulfillmentExternal = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal;
|
|
@@ -23987,6 +24014,9 @@ export declare type StripeAuthorizationDeleted = io.flow.internal.v0.models.Stri
|
|
|
23987
24014
|
export declare type StripeAuthorizationUpserted = io.flow.internal.v0.models.StripeAuthorizationUpserted;
|
|
23988
24015
|
export declare type StripeCaptureDeleted = io.flow.internal.v0.models.StripeCaptureDeleted;
|
|
23989
24016
|
export declare type StripeCaptureUpserted = io.flow.internal.v0.models.StripeCaptureUpserted;
|
|
24017
|
+
export declare type StripeConnectReportRecord = io.flow.internal.v0.models.StripeConnectReportRecord;
|
|
24018
|
+
export declare type StripeConnectReportRecordDeleted = io.flow.internal.v0.models.StripeConnectReportRecordDeleted;
|
|
24019
|
+
export declare type StripeConnectReportRecordUpserted = io.flow.internal.v0.models.StripeConnectReportRecordUpserted;
|
|
23990
24020
|
export declare type StripeDisputeDeleted = io.flow.internal.v0.models.StripeDisputeDeleted;
|
|
23991
24021
|
export declare type StripeDisputeUpserted = io.flow.internal.v0.models.StripeDisputeUpserted;
|
|
23992
24022
|
export declare type StripeInternalAuthorization = io.flow.internal.v0.models.StripeInternalAuthorization;
|
|
@@ -24031,11 +24061,6 @@ export declare type TaxCalculationErrorCode = io.flow.internal.v0.enums.TaxCalcu
|
|
|
24031
24061
|
export declare type TaxCalculationForm = io.flow.internal.v0.models.TaxCalculationForm;
|
|
24032
24062
|
export declare type TaxCalculationLineItem = io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
24033
24063
|
export declare type TaxCalculationLineItemForm = io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
24034
|
-
export declare type TaxDutyDeltaMetadataActual = io.flow.internal.v0.models.TaxDutyDeltaMetadataActual;
|
|
24035
|
-
export declare type TaxDutyDeltaMetadataActualProcessing = io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
24036
|
-
export declare type TaxDutyDeltaMetadataExpected = io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected;
|
|
24037
|
-
export declare type TaxDutyDeltaMetadataExpectedProcessing = io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
24038
|
-
export declare type TaxDutyDeltaTransaction = io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
24039
24064
|
export declare type TaxParty = io.flow.internal.v0.enums.TaxParty;
|
|
24040
24065
|
export declare type TaxRemittanceTransaction = io.flow.internal.v0.models.TaxRemittanceTransaction;
|
|
24041
24066
|
export declare type TaxRemittanceTransactionDeleted = io.flow.internal.v0.models.TaxRemittanceTransactionDeleted;
|