@flowio/api-internal-prop-types 9.24.111 → 9.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/lib/api-internal.d.ts +308 -187
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +308 -187
- package/src/api-internal.js +661 -451
package/lib/api-internal.d.ts
CHANGED
|
@@ -1296,6 +1296,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1296
1296
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1297
1297
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1298
1298
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1299
|
+
type PaymentFeeType = 'fx' | 'mor';
|
|
1299
1300
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1300
1301
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1301
1302
|
type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
|
|
@@ -1306,6 +1307,8 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1306
1307
|
type ThreeDSecureCode = 'verified' | 'not_verified' | 'failed';
|
|
1307
1308
|
type ThreedsTwoChallengeViewport = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen';
|
|
1308
1309
|
type TokenType = 'permanent' | 'one_time';
|
|
1310
|
+
type TransferStatus = 'succeeded' | 'canceled';
|
|
1311
|
+
type TransferType = 'payout_to_merchant' | 'disputed_amount_to_merchant' | 'duties_and_taxes_adjustment_to_merchant' | 'disputed_amount_from_merchant' | 'duties_and_taxes_adjustment_from_merchant' | 'refund_from_merchant';
|
|
1309
1312
|
}
|
|
1310
1313
|
|
|
1311
1314
|
declare namespace io.flow.payment.v0.models {
|
|
@@ -1494,6 +1497,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1494
1497
|
readonly 'attributes'?: Record<string, string>;
|
|
1495
1498
|
readonly 'status'?: io.flow.payment.v0.enums.CaptureStatus;
|
|
1496
1499
|
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
1500
|
+
readonly 'fees'?: io.flow.payment.v0.models.PaymentFee[];
|
|
1497
1501
|
}
|
|
1498
1502
|
|
|
1499
1503
|
interface CaptureError {
|
|
@@ -1519,6 +1523,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1519
1523
|
}
|
|
1520
1524
|
|
|
1521
1525
|
interface CaptureReference {
|
|
1526
|
+
readonly 'discriminator': 'capture_reference';
|
|
1522
1527
|
readonly 'id': string;
|
|
1523
1528
|
readonly 'key': string;
|
|
1524
1529
|
}
|
|
@@ -1733,11 +1738,28 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1733
1738
|
readonly 'account_holder_name'?: string;
|
|
1734
1739
|
}
|
|
1735
1740
|
|
|
1741
|
+
interface DisputeReference {
|
|
1742
|
+
readonly 'discriminator': 'dispute_reference';
|
|
1743
|
+
readonly 'id': string;
|
|
1744
|
+
readonly 'key': string;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
interface ExchangedMoney {
|
|
1748
|
+
readonly 'fx_rate': number;
|
|
1749
|
+
readonly 'money': io.flow.common.v0.models.Money;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1736
1752
|
interface Expiration {
|
|
1737
1753
|
readonly 'month': number;
|
|
1738
1754
|
readonly 'year': number;
|
|
1739
1755
|
}
|
|
1740
1756
|
|
|
1757
|
+
interface ExternalCard {
|
|
1758
|
+
readonly 'discriminator': 'external_card';
|
|
1759
|
+
readonly 'id': string;
|
|
1760
|
+
readonly 'type'?: io.flow.payment.v0.enums.CardType;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1741
1763
|
interface GooglePayAuthorizationPayload {
|
|
1742
1764
|
readonly 'discriminator': 'google_pay_authorization_payload';
|
|
1743
1765
|
readonly 'payload': any/*object*/;
|
|
@@ -1874,6 +1896,12 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1874
1896
|
readonly 'codes': io.flow.payment.v0.enums.PaymentErrorCode[];
|
|
1875
1897
|
}
|
|
1876
1898
|
|
|
1899
|
+
interface PaymentFee {
|
|
1900
|
+
readonly 'type': io.flow.payment.v0.enums.PaymentFeeType;
|
|
1901
|
+
readonly 'money': io.flow.common.v0.models.Money;
|
|
1902
|
+
readonly 'base'?: io.flow.common.v0.models.Money;
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1877
1905
|
interface PaymentPaymentRequestReference {
|
|
1878
1906
|
readonly 'discriminator': 'payment_request';
|
|
1879
1907
|
readonly 'payment_request_id': string;
|
|
@@ -2074,6 +2102,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2074
2102
|
}
|
|
2075
2103
|
|
|
2076
2104
|
interface RefundReference {
|
|
2105
|
+
readonly 'discriminator': 'refund_reference';
|
|
2077
2106
|
readonly 'id': string;
|
|
2078
2107
|
readonly 'key': string;
|
|
2079
2108
|
}
|
|
@@ -2199,6 +2228,17 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2199
2228
|
readonly 'network'?: io.flow.payment.v0.enums.CardType;
|
|
2200
2229
|
}
|
|
2201
2230
|
|
|
2231
|
+
interface Transfer {
|
|
2232
|
+
readonly 'id': string;
|
|
2233
|
+
readonly 'type': io.flow.payment.v0.enums.TransferType;
|
|
2234
|
+
readonly 'money': io.flow.common.v0.models.Money;
|
|
2235
|
+
readonly 'transferred_money': io.flow.payment.v0.models.ExchangedMoney;
|
|
2236
|
+
readonly 'status': io.flow.payment.v0.enums.TransferStatus;
|
|
2237
|
+
readonly 'created_at': string;
|
|
2238
|
+
readonly 'reference': io.flow.payment.v0.unions.TransferReference;
|
|
2239
|
+
readonly 'transferred_at': string;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2202
2242
|
interface VirtualCard {
|
|
2203
2243
|
readonly 'id': string;
|
|
2204
2244
|
readonly 'key': string;
|
|
@@ -2269,7 +2309,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2269
2309
|
type BrowserActionConfiguration = (io.flow.payment.v0.models.CardBrowserActionConfiguration);
|
|
2270
2310
|
type ConfirmationDetails = (io.flow.payment.v0.models.DirectDebit | io.flow.payment.v0.models.CardConfirmationSummary);
|
|
2271
2311
|
type DeviceDetails = (io.flow.payment.v0.models.DeviceDetailsBrowser);
|
|
2272
|
-
type ExpandableCard = (io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary);
|
|
2312
|
+
type ExpandableCard = (io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary | io.flow.payment.v0.models.ExternalCard);
|
|
2273
2313
|
type ExpandablePaymentProcessor = (io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference);
|
|
2274
2314
|
type GatewayAuthenticationData = (io.flow.payment.v0.models.StripeAuthenticationData);
|
|
2275
2315
|
type GatewayAuthenticationDataForm = (io.flow.payment.v0.models.StripeAuthenticationDataForm);
|
|
@@ -2284,6 +2324,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
2284
2324
|
type ThreedsChallengeAction = (io.flow.payment.v0.models.ThreedsTwoChallengeRequest);
|
|
2285
2325
|
type ThreedsIdentifyAction = (io.flow.payment.v0.models.ThreedsTwoMethod);
|
|
2286
2326
|
type TransactionDetails = (io.flow.payment.v0.models.TransactionDetailsCard);
|
|
2327
|
+
type TransferReference = (io.flow.payment.v0.models.CaptureReference | io.flow.payment.v0.models.RefundReference | io.flow.payment.v0.models.DisputeReference);
|
|
2287
2328
|
}
|
|
2288
2329
|
|
|
2289
2330
|
declare namespace io.flow.field.validation.v0.models {
|
|
@@ -2332,6 +2373,10 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2332
2373
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
2333
2374
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
2334
2375
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
2376
|
+
type ConnectReportBalanceReportingCategory = 'anticipation_repayment' | 'climate_order_purchase' | 'climate_order_refund' | 'contribution' | 'currency_conversion' | 'fee' | 'other_adjustment' | 'payment_network_reserve_hold' | 'payment_network_reserve_release' | 'payout' | 'payout_minimum_balance_hold' | 'payout_minimum_balance_release' | 'payout_reversal' | 'risk_reserved_funds' | 'stripe_balance_payment_debit' | 'stripe_balance_payment_debit_reversal' | 'topup' | 'topup_reversal' | 'unreconciled_customer_funds';
|
|
2377
|
+
type ConnectReportConnectReportingCategory = 'advance' | 'advance_funding' | 'connect_collection_transfer' | 'connect_reserved_funds' | 'platform_earning' | 'platform_earning_refund' | 'transfer' | 'transfer_reversal';
|
|
2378
|
+
type ConnectReportIssuingReportingCategory = 'issuing_authorization_hold' | 'issuing_authorization_release' | 'issuing_disbursement' | 'issuing_dispute' | 'issuing_dispute_fraud_liability_debit' | 'issuing_dispute_provisional_credit' | 'issuing_dispute_provisional_credit_reversal' | 'issuing_transaction';
|
|
2379
|
+
type ConnectReportPaymentReportingCategory = 'charge' | 'charge_failure' | 'dispute' | 'dispute_reversal' | 'partial_capture_reversal' | 'refund' | 'refund_failure';
|
|
2335
2380
|
type DeclineCode = 'approve_with_id' | 'call_issuer' | 'card_not_supported' | 'card_velocity_exceeded' | 'currency_not_supported' | 'do_not_honor' | 'do_not_try_again' | 'duplicate_transaction' | 'expired_card' | 'fraudulent' | 'generic_decline' | 'incorrect_number' | 'incorrect_cvc' | 'incorrect_pin' | 'incorrect_zip' | 'insufficient_funds' | 'invalid_account' | 'invalid_amount' | 'invalid_cvc' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_number' | 'invalid_pin' | 'issuer_not_available' | 'lost_card' | 'new_account_information_available' | 'no_action_taken' | 'not_permitted' | 'pickup_card' | 'pin_try_exceeded' | 'processing_error' | 'reenter_transaction' | 'restricted_card' | 'revocation_of_all_authorizations' | 'revocation_of_authorization' | 'security_violation' | 'service_not_allowed' | 'stolen_card' | 'stop_payment_order' | 'testmode_decline' | 'transaction_not_allowed' | 'try_again_later' | 'withdrawal_count_limit_exceeded' | 'previously_declined_do_not_retry' | 'highest_risk_level' | 'requested_block_on_incorrect_cvc';
|
|
2336
2381
|
type DisputeEventType = 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated';
|
|
2337
2382
|
type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
|
|
@@ -3591,6 +3636,21 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3591
3636
|
|
|
3592
3637
|
declare namespace io.flow.stripe.v0.unions {
|
|
3593
3638
|
type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
|
|
3639
|
+
|
|
3640
|
+
type ConnectReportReportingCategory = ({
|
|
3641
|
+
discriminator: 'connect_report_payment_reporting_category',
|
|
3642
|
+
value: io.flow.stripe.v0.enums.ConnectReportPaymentReportingCategory
|
|
3643
|
+
} | {
|
|
3644
|
+
discriminator: 'connect_report_balance_reporting_category',
|
|
3645
|
+
value: io.flow.stripe.v0.enums.ConnectReportBalanceReportingCategory
|
|
3646
|
+
} | {
|
|
3647
|
+
discriminator: 'connect_report_issuing_reporting_category',
|
|
3648
|
+
value: io.flow.stripe.v0.enums.ConnectReportIssuingReportingCategory
|
|
3649
|
+
} | {
|
|
3650
|
+
discriminator: 'connect_report_connect_reporting_category',
|
|
3651
|
+
value: io.flow.stripe.v0.enums.ConnectReportConnectReportingCategory
|
|
3652
|
+
});
|
|
3653
|
+
|
|
3594
3654
|
type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataIdeal | io.flow.stripe.v0.models.PaymentMethodDataKlarna | io.flow.stripe.v0.models.PaymentMethodDataBancontact);
|
|
3595
3655
|
type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsIdeal | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna | io.flow.stripe.v0.models.PaymentMethodDetailsBancontact);
|
|
3596
3656
|
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormIdeal | io.flow.stripe.v0.models.PaymentMethodFormKlarna | io.flow.stripe.v0.models.PaymentMethodFormBancontact);
|
|
@@ -3693,8 +3753,6 @@ declare namespace io.flow.customer.v0.models {
|
|
|
3693
3753
|
declare namespace io.flow.label.v0.enums {
|
|
3694
3754
|
type CostEstimateSource = 'flow' | 'channel';
|
|
3695
3755
|
type Direction = 'outbound' | 'return';
|
|
3696
|
-
type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
|
|
3697
|
-
type EstimateType = 'Estimated' | 'Final';
|
|
3698
3756
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
3699
3757
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3700
3758
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
@@ -3770,15 +3828,6 @@ declare namespace io.flow.label.v0.models {
|
|
|
3770
3828
|
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3771
3829
|
}
|
|
3772
3830
|
|
|
3773
|
-
interface Estimate {
|
|
3774
|
-
readonly 'id': string;
|
|
3775
|
-
readonly 'organization_id': string;
|
|
3776
|
-
readonly 'label_id': string;
|
|
3777
|
-
readonly 'estimate': io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
3778
|
-
readonly 'type': io.flow.label.v0.enums.EstimateType;
|
|
3779
|
-
readonly 'origin'?: io.flow.label.v0.enums.EstimateOrigin;
|
|
3780
|
-
}
|
|
3781
|
-
|
|
3782
3831
|
interface LabelOrderSummary {
|
|
3783
3832
|
readonly 'id': string;
|
|
3784
3833
|
readonly 'number': string;
|
|
@@ -4849,7 +4898,7 @@ declare namespace io.flow.brickftp.v0.unions {
|
|
|
4849
4898
|
|
|
4850
4899
|
declare namespace io.flow.units.v0.enums {
|
|
4851
4900
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
4852
|
-
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
4901
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter';
|
|
4853
4902
|
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
4854
4903
|
}
|
|
4855
4904
|
|
|
@@ -7636,7 +7685,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
7636
7685
|
type RoundingType = 'pattern' | 'multiple';
|
|
7637
7686
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
7638
7687
|
type SortDirection = 'ascending' | 'descending';
|
|
7639
|
-
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
7688
|
+
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
7640
7689
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
7641
7690
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
7642
7691
|
type ValueAddedService = 'Hazardous Material';
|
|
@@ -8387,7 +8436,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
8387
8436
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
8388
8437
|
type OrderStatus = 'open' | 'submitted';
|
|
8389
8438
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
8390
|
-
type OrderType = 'standard' | 'replacement';
|
|
8439
|
+
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
8391
8440
|
type OrganizationPaymentMethodTag = 'deny';
|
|
8392
8441
|
type PaymentMethodRuleContentKey = 'description';
|
|
8393
8442
|
type PriceFacetBoundary = 'min' | 'max';
|
|
@@ -9534,6 +9583,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9534
9583
|
interface DutiesTaxesPaidSurchargeServiceFee {
|
|
9535
9584
|
readonly 'discriminator': 'duties_taxes_paid_surcharge_service_fee';
|
|
9536
9585
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
9586
|
+
readonly 'destination_countries'?: string[];
|
|
9537
9587
|
readonly 'starts_at'?: string;
|
|
9538
9588
|
readonly 'ends_at'?: string;
|
|
9539
9589
|
}
|
|
@@ -9801,6 +9851,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9801
9851
|
readonly 'discriminator': 'ratecard_estimate_v4';
|
|
9802
9852
|
readonly 'hops': io.flow.ratecard.v0.models.HopV2[];
|
|
9803
9853
|
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
9854
|
+
readonly 'distance_unit_of_measurement'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9855
|
+
readonly 'weight_unit_of_measurement'?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9804
9856
|
readonly 'dimensional_weight'?: io.flow.common.v0.models.Measurement;
|
|
9805
9857
|
readonly 'gravitational_weight'?: io.flow.common.v0.models.Measurement;
|
|
9806
9858
|
readonly 'ratecard_id'?: string;
|
|
@@ -11582,7 +11634,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11582
11634
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11583
11635
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
11584
11636
|
type StatementAttachmentType = 'csv';
|
|
11585
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | '
|
|
11637
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share';
|
|
11586
11638
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
11587
11639
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
11588
11640
|
}
|
|
@@ -13688,7 +13740,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13688
13740
|
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
|
|
13689
13741
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
13690
13742
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13691
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share'
|
|
13743
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share';
|
|
13692
13744
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
13693
13745
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
13694
13746
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -13717,10 +13769,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13717
13769
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
13718
13770
|
type ClassificationErrorCode = 'generic_error';
|
|
13719
13771
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
13720
|
-
type ClassificationType = 'None' | 'Manual' | 'ML';
|
|
13772
|
+
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
13721
13773
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
13722
13774
|
type Company = 'globale' | 'flow';
|
|
13723
13775
|
type ComplianceType = 'weee';
|
|
13776
|
+
type ConnectReportTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit' | 'ManagedMarketsChargeCredit' | 'ManagedMarketsDisputeWonAmountCredit' | 'ManagedMarketsDutiesAndTaxesAdjustmentCredit';
|
|
13724
13777
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
13725
13778
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
13726
13779
|
type ContentType = 'text' | 'html';
|
|
@@ -13748,10 +13801,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13748
13801
|
type DutyRateUnitOfMeasure = 'kg' | 'sq m' | 'item' | 'pair';
|
|
13749
13802
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
13750
13803
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
13751
|
-
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
13804
|
+
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
|
|
13752
13805
|
type EmptyAttribute = 'irrelevant';
|
|
13753
13806
|
type ErpFileType = 'vendor';
|
|
13754
|
-
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'shipping_estimate_upserted' | 'shipping_estimate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13807
|
+
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' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | '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' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13755
13808
|
type ExperienceImportType = 'experience_with_settings';
|
|
13756
13809
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13757
13810
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13770,8 +13823,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13770
13823
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
13771
13824
|
type GoogleAnalyticsPlugin = 'ec';
|
|
13772
13825
|
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
13773
|
-
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
13826
|
+
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
13774
13827
|
type HttpMethod = 'get' | 'post';
|
|
13828
|
+
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
13775
13829
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
13776
13830
|
type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
|
|
13777
13831
|
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt';
|
|
@@ -13792,12 +13846,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13792
13846
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
13793
13847
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
13794
13848
|
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';
|
|
13849
|
+
type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands';
|
|
13850
|
+
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
13795
13851
|
type MixedBagWeight = '0' | '1' | '2';
|
|
13796
13852
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
13797
13853
|
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';
|
|
13798
13854
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
13799
13855
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
13800
|
-
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | '
|
|
13856
|
+
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
13801
13857
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13802
13858
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
13803
13859
|
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_reject' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
@@ -13838,6 +13894,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13838
13894
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
13839
13895
|
type RedirectReason = 'three_d_secure';
|
|
13840
13896
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
13897
|
+
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
13898
|
+
type ReportFileType = 'stripe_connect_report';
|
|
13841
13899
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
13842
13900
|
type ReportPaymentType = 'credit' | 'debit';
|
|
13843
13901
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
@@ -14158,29 +14216,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14158
14216
|
readonly 'province_code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
14159
14217
|
}
|
|
14160
14218
|
|
|
14161
|
-
interface AdjustedEstimates {
|
|
14162
|
-
readonly 'id': string;
|
|
14163
|
-
readonly 'organization_id': string;
|
|
14164
|
-
readonly 'label_id': string;
|
|
14165
|
-
readonly 'estimates': io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
14166
|
-
}
|
|
14167
|
-
|
|
14168
|
-
interface AdjustedEstimatesDeleted {
|
|
14169
|
-
readonly 'discriminator': 'adjusted_estimates_deleted';
|
|
14170
|
-
readonly 'event_id': string;
|
|
14171
|
-
readonly 'timestamp': string;
|
|
14172
|
-
readonly 'organization': string;
|
|
14173
|
-
readonly 'id': string;
|
|
14174
|
-
}
|
|
14175
|
-
|
|
14176
|
-
interface AdjustedEstimatesUpserted {
|
|
14177
|
-
readonly 'discriminator': 'adjusted_estimates_upserted';
|
|
14178
|
-
readonly 'event_id': string;
|
|
14179
|
-
readonly 'timestamp': string;
|
|
14180
|
-
readonly 'organization': string;
|
|
14181
|
-
readonly 'adjusted_estimates': io.flow.internal.v0.models.AdjustedEstimates;
|
|
14182
|
-
}
|
|
14183
|
-
|
|
14184
14219
|
interface AdjustmentAmountFixed {
|
|
14185
14220
|
readonly 'discriminator': 'fixed';
|
|
14186
14221
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -18326,19 +18361,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18326
18361
|
readonly 'vat_registration_number': string;
|
|
18327
18362
|
}
|
|
18328
18363
|
|
|
18329
|
-
interface FulfillmentCancel {
|
|
18330
|
-
readonly 'discriminator': 'fulfillment_cancel';
|
|
18331
|
-
readonly 'event_id': string;
|
|
18332
|
-
readonly 'timestamp': string;
|
|
18333
|
-
readonly 'organization': string;
|
|
18334
|
-
readonly 'order_number': string;
|
|
18335
|
-
readonly 'order': io.flow.experience.v0.models.Order;
|
|
18336
|
-
readonly 'fulfillments': io.flow.order.management.v0.models.Fulfillment[];
|
|
18337
|
-
readonly 'change_source': io.flow.order.management.v0.enums.OrderChangeSource;
|
|
18338
|
-
readonly 'reason': io.flow.order.management.v0.enums.CancelReason;
|
|
18339
|
-
readonly 'cancelled_lines': io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
18340
|
-
}
|
|
18341
|
-
|
|
18342
18364
|
interface FulfillmentCarrier {
|
|
18343
18365
|
readonly 'id': string;
|
|
18344
18366
|
readonly 'service_id'?: string;
|
|
@@ -18425,14 +18447,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18425
18447
|
readonly 'id': string;
|
|
18426
18448
|
}
|
|
18427
18449
|
|
|
18428
|
-
interface FulfillmentShipmentTracking {
|
|
18429
|
-
readonly 'fulfillment_key': string;
|
|
18430
|
-
readonly 'flow_tracking_number': string;
|
|
18431
|
-
readonly 'carrier_tracking_number'?: string;
|
|
18432
|
-
readonly 'carrier_tracking_url'?: string;
|
|
18433
|
-
readonly 'items': io.flow.order.management.v0.models.FulfillmentItem[];
|
|
18434
|
-
}
|
|
18435
|
-
|
|
18436
18450
|
interface FulfillmentShopperBreakdown {
|
|
18437
18451
|
readonly 'shipping': io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
18438
18452
|
readonly 'fees': io.flow.internal.v0.models.ReportingShopperFees;
|
|
@@ -19179,18 +19193,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19179
19193
|
readonly 'values': string[];
|
|
19180
19194
|
}
|
|
19181
19195
|
|
|
19182
|
-
interface ItemsShipped {
|
|
19183
|
-
readonly 'discriminator': 'items_shipped';
|
|
19184
|
-
readonly 'event_id': string;
|
|
19185
|
-
readonly 'timestamp': string;
|
|
19186
|
-
readonly 'organization': string;
|
|
19187
|
-
readonly 'order_number': string;
|
|
19188
|
-
readonly 'order': io.flow.experience.v0.models.Order;
|
|
19189
|
-
readonly 'fulfillments': io.flow.order.management.v0.models.Fulfillment[];
|
|
19190
|
-
readonly 'flow_tracking_number': string;
|
|
19191
|
-
readonly 'shipped_item_values': io.flow.internal.v0.models.ShippedItemValue[];
|
|
19192
|
-
}
|
|
19193
|
-
|
|
19194
19196
|
interface JeanDemoItem {
|
|
19195
19197
|
readonly 'id': string;
|
|
19196
19198
|
readonly 'name': string;
|
|
@@ -19258,14 +19260,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19258
19260
|
readonly 'service_id'?: string;
|
|
19259
19261
|
readonly 'carrier_tracking_number'?: string;
|
|
19260
19262
|
readonly 'flow_tracking_number'?: string;
|
|
19263
|
+
readonly 'label_id'?: string;
|
|
19261
19264
|
readonly 'errors': string[];
|
|
19262
19265
|
}
|
|
19263
19266
|
|
|
19267
|
+
interface LabelCreationJobDeleted {
|
|
19268
|
+
readonly 'discriminator': 'label_creation_job_deleted';
|
|
19269
|
+
readonly 'event_id': string;
|
|
19270
|
+
readonly 'timestamp': string;
|
|
19271
|
+
readonly 'organization': string;
|
|
19272
|
+
readonly 'id': string;
|
|
19273
|
+
}
|
|
19274
|
+
|
|
19264
19275
|
interface LabelCreationJobSummary {
|
|
19265
19276
|
readonly 'reference_id': string;
|
|
19266
19277
|
readonly 'status': io.flow.internal.v0.enums.LabelCreationStatus;
|
|
19267
19278
|
}
|
|
19268
19279
|
|
|
19280
|
+
interface LabelCreationJobUpserted {
|
|
19281
|
+
readonly 'discriminator': 'label_creation_job_upserted';
|
|
19282
|
+
readonly 'event_id': string;
|
|
19283
|
+
readonly 'timestamp': string;
|
|
19284
|
+
readonly 'organization': string;
|
|
19285
|
+
readonly 'label_creation_job': io.flow.internal.v0.models.LabelCreationJob;
|
|
19286
|
+
}
|
|
19287
|
+
|
|
19269
19288
|
interface LabelCreationRequestForm {
|
|
19270
19289
|
readonly 'organization': string;
|
|
19271
19290
|
readonly 'shipping_label_form': io.flow.label.v0.unions.ShippingLabelForm;
|
|
@@ -19388,6 +19407,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19388
19407
|
readonly 'destination_country'?: string;
|
|
19389
19408
|
readonly 'reference_id'?: string;
|
|
19390
19409
|
readonly 'logistics_integration_provider'?: string;
|
|
19410
|
+
readonly 'tax_lrp_liabilities'?: io.flow.internal.v0.models.Liability[];
|
|
19391
19411
|
}
|
|
19392
19412
|
|
|
19393
19413
|
interface LabelSummary {
|
|
@@ -19808,6 +19828,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19808
19828
|
readonly 'paid_at'?: string;
|
|
19809
19829
|
readonly 'posted_at'?: string;
|
|
19810
19830
|
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
19831
|
+
readonly 'channel_statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
19811
19832
|
readonly 'created_at': string;
|
|
19812
19833
|
readonly 'original_at'?: string;
|
|
19813
19834
|
}
|
|
@@ -20015,6 +20036,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20015
20036
|
readonly 'currency'?: string;
|
|
20016
20037
|
}
|
|
20017
20038
|
|
|
20039
|
+
interface MerchantOverride {
|
|
20040
|
+
readonly 'id': string;
|
|
20041
|
+
readonly 'organization_id': string;
|
|
20042
|
+
readonly 'item_number': string;
|
|
20043
|
+
readonly 'status': io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
20044
|
+
readonly 'hs6_code': string;
|
|
20045
|
+
readonly 'merchant_hs6_code': string;
|
|
20046
|
+
readonly 'created_at': string;
|
|
20047
|
+
readonly 'updated_at': string;
|
|
20048
|
+
readonly 'updated_by_user_id': string;
|
|
20049
|
+
}
|
|
20050
|
+
|
|
20051
|
+
interface MerchantOverrideDecisionForm {
|
|
20052
|
+
readonly 'id': string;
|
|
20053
|
+
readonly 'status': io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
20054
|
+
}
|
|
20055
|
+
|
|
20018
20056
|
interface MerchantSearchResult {
|
|
20019
20057
|
readonly 'organization_id': string;
|
|
20020
20058
|
readonly 'shop_name'?: string;
|
|
@@ -20393,16 +20431,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20393
20431
|
readonly 'placeholder': string;
|
|
20394
20432
|
}
|
|
20395
20433
|
|
|
20396
|
-
interface OrderPlaced {
|
|
20397
|
-
readonly 'discriminator': 'order_placed';
|
|
20398
|
-
readonly 'event_id': string;
|
|
20399
|
-
readonly 'timestamp': string;
|
|
20400
|
-
readonly 'organization': string;
|
|
20401
|
-
readonly 'order_number': string;
|
|
20402
|
-
readonly 'order': io.flow.experience.v0.models.Order;
|
|
20403
|
-
readonly 'allocation': io.flow.experience.v0.models.AllocationV2;
|
|
20404
|
-
}
|
|
20405
|
-
|
|
20406
20434
|
interface OrderRatesDataV3 {
|
|
20407
20435
|
readonly 'organization': string;
|
|
20408
20436
|
readonly 'order_id': string;
|
|
@@ -20455,17 +20483,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20455
20483
|
readonly 'to_service_id': string;
|
|
20456
20484
|
}
|
|
20457
20485
|
|
|
20458
|
-
interface OrderShipped {
|
|
20459
|
-
readonly 'discriminator': 'order_shipped';
|
|
20460
|
-
readonly 'event_id': string;
|
|
20461
|
-
readonly 'timestamp': string;
|
|
20462
|
-
readonly 'organization': string;
|
|
20463
|
-
readonly 'order_number': string;
|
|
20464
|
-
readonly 'order': io.flow.experience.v0.models.Order;
|
|
20465
|
-
readonly 'fulfillments': io.flow.order.management.v0.models.Fulfillment[];
|
|
20466
|
-
readonly 'shipment_trackings': io.flow.internal.v0.models.FulfillmentShipmentTracking[];
|
|
20467
|
-
}
|
|
20468
|
-
|
|
20469
20486
|
interface OrderSubmissionForm {
|
|
20470
20487
|
readonly 'authorization'?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
20471
20488
|
}
|
|
@@ -20813,6 +20830,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20813
20830
|
readonly 'last_order_submitted_at'?: string;
|
|
20814
20831
|
readonly 'matching_positive_keywords': string[];
|
|
20815
20832
|
readonly 'product_categories': string[];
|
|
20833
|
+
readonly 'matching_negative_keywords': string[];
|
|
20834
|
+
readonly 'decisions_user_ids': string[];
|
|
20835
|
+
readonly 'restriction_rule_ids': string[];
|
|
20816
20836
|
}
|
|
20817
20837
|
|
|
20818
20838
|
interface OrganizationMetadataDeleted {
|
|
@@ -21222,6 +21242,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21222
21242
|
readonly 'partner_organization_settings': io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
21223
21243
|
}
|
|
21224
21244
|
|
|
21245
|
+
interface PartnerRequest {
|
|
21246
|
+
readonly 'id': string;
|
|
21247
|
+
readonly 'partner_id': string;
|
|
21248
|
+
readonly 'organization_id': string;
|
|
21249
|
+
readonly 'method': string;
|
|
21250
|
+
readonly 'path': string;
|
|
21251
|
+
readonly 'request_id': string;
|
|
21252
|
+
readonly 'parameters'?: Record<string, string>;
|
|
21253
|
+
readonly 'request_body'?: any/*object*/;
|
|
21254
|
+
readonly 'response_body'?: any/*object*/;
|
|
21255
|
+
readonly 'reference_id'?: string;
|
|
21256
|
+
}
|
|
21257
|
+
|
|
21258
|
+
interface PartnerRequestDeleted {
|
|
21259
|
+
readonly 'discriminator': 'partner_request_deleted';
|
|
21260
|
+
readonly 'event_id': string;
|
|
21261
|
+
readonly 'timestamp': string;
|
|
21262
|
+
readonly 'id': string;
|
|
21263
|
+
}
|
|
21264
|
+
|
|
21265
|
+
interface PartnerRequestUpserted {
|
|
21266
|
+
readonly 'discriminator': 'partner_request_upserted';
|
|
21267
|
+
readonly 'event_id': string;
|
|
21268
|
+
readonly 'timestamp': string;
|
|
21269
|
+
readonly 'partner_request': io.flow.internal.v0.models.PartnerRequest;
|
|
21270
|
+
}
|
|
21271
|
+
|
|
21225
21272
|
interface PartnerTrackingSubscriptionDeleted {
|
|
21226
21273
|
readonly 'discriminator': 'partner_tracking_subscription_deleted';
|
|
21227
21274
|
readonly 'event_id': string;
|
|
@@ -22353,17 +22400,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22353
22400
|
readonly 'summaries': io.flow.internal.v0.models.RateNameSummary[];
|
|
22354
22401
|
}
|
|
22355
22402
|
|
|
22356
|
-
interface ReadyToFulfill {
|
|
22357
|
-
readonly 'discriminator': 'ready_to_fulfill';
|
|
22358
|
-
readonly 'event_id': string;
|
|
22359
|
-
readonly 'timestamp': string;
|
|
22360
|
-
readonly 'organization': string;
|
|
22361
|
-
readonly 'order_number': string;
|
|
22362
|
-
readonly 'order': io.flow.experience.v0.models.Order;
|
|
22363
|
-
readonly 'fulfillments'?: io.flow.order.management.v0.models.Fulfillment[];
|
|
22364
|
-
readonly 'fulfillment_item_allocation_details'?: io.flow.order.management.event.v0.models.FulfillmentItemAllocationDetails[];
|
|
22365
|
-
}
|
|
22366
|
-
|
|
22367
22403
|
interface ReboundConfiguration {
|
|
22368
22404
|
readonly 'id': string;
|
|
22369
22405
|
readonly 'login': string;
|
|
@@ -22442,6 +22478,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22442
22478
|
readonly 'account_number': string;
|
|
22443
22479
|
}
|
|
22444
22480
|
|
|
22481
|
+
interface ReportFile {
|
|
22482
|
+
readonly 'id': string;
|
|
22483
|
+
readonly 'processor': string;
|
|
22484
|
+
readonly 'report_file_type': io.flow.internal.v0.enums.ReportFileType;
|
|
22485
|
+
readonly 'merchant_of_record_identifier': io.flow.internal.v0.enums.MerchantOfRecord;
|
|
22486
|
+
readonly 'file_name': string;
|
|
22487
|
+
readonly 'status': io.flow.internal.v0.enums.ReportFileStatus;
|
|
22488
|
+
readonly 'failure_reason'?: string;
|
|
22489
|
+
}
|
|
22490
|
+
|
|
22445
22491
|
interface ReportFilter {
|
|
22446
22492
|
readonly 'source_type'?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
22447
22493
|
}
|
|
@@ -22480,6 +22526,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22480
22526
|
readonly 'created_at': string;
|
|
22481
22527
|
}
|
|
22482
22528
|
|
|
22529
|
+
interface ReportRecordError {
|
|
22530
|
+
readonly 'id': string;
|
|
22531
|
+
readonly 'file_id': string;
|
|
22532
|
+
readonly 'line_number': number;
|
|
22533
|
+
readonly 'failure_reason': string;
|
|
22534
|
+
}
|
|
22535
|
+
|
|
22536
|
+
interface ReportRecordRetryQueue {
|
|
22537
|
+
readonly 'id': string;
|
|
22538
|
+
readonly 'report_file_type': io.flow.internal.v0.enums.ReportFileType;
|
|
22539
|
+
readonly 'type': io.flow.internal.v0.enums.InternalPaymentEntityType;
|
|
22540
|
+
readonly 'report_record_id': string;
|
|
22541
|
+
readonly 'dependent_source_id': string;
|
|
22542
|
+
}
|
|
22543
|
+
|
|
22483
22544
|
interface ReportRuleDecision {
|
|
22484
22545
|
readonly 'rule_id': string;
|
|
22485
22546
|
readonly 'rule_name': string;
|
|
@@ -22750,8 +22811,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22750
22811
|
readonly 'organization_id': string;
|
|
22751
22812
|
readonly 'restriction_product_id': string;
|
|
22752
22813
|
readonly 'product_id': string;
|
|
22814
|
+
readonly 'item_numbers': string[];
|
|
22815
|
+
readonly 'primary_item_number'?: string;
|
|
22753
22816
|
readonly 'name': string;
|
|
22754
22817
|
readonly 'price': io.flow.common.v0.models.Price;
|
|
22818
|
+
readonly 'hs_code'?: string;
|
|
22755
22819
|
readonly 'description': string;
|
|
22756
22820
|
readonly 'categories': string[];
|
|
22757
22821
|
readonly 'images': io.flow.catalog.v0.models.Image[];
|
|
@@ -22769,6 +22833,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22769
22833
|
readonly 'user_ids'?: string[];
|
|
22770
22834
|
readonly 'categories'?: string[];
|
|
22771
22835
|
readonly 'product_name_query'?: string;
|
|
22836
|
+
readonly 'hs6'?: string;
|
|
22772
22837
|
readonly 'positive_keywords'?: string[];
|
|
22773
22838
|
readonly 'negative_keywords'?: string[];
|
|
22774
22839
|
readonly 'product_id'?: string;
|
|
@@ -22897,6 +22962,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22897
22962
|
readonly 'user_ids'?: string[];
|
|
22898
22963
|
readonly 'categories'?: string[];
|
|
22899
22964
|
readonly 'product_name_query'?: string;
|
|
22965
|
+
readonly 'hs6'?: string;
|
|
22900
22966
|
readonly 'product_id'?: string;
|
|
22901
22967
|
}
|
|
22902
22968
|
|
|
@@ -23017,7 +23083,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23017
23083
|
readonly 'num_products_transacting_prs': number;
|
|
23018
23084
|
readonly 'oldest_pr_product_date_setup_complete': string;
|
|
23019
23085
|
readonly 'oldest_pr_date_transacting': string;
|
|
23020
|
-
readonly 'percent_products_reviewed_transacting'
|
|
23086
|
+
readonly 'percent_products_reviewed_transacting'?: number;
|
|
23021
23087
|
readonly 'num_pv_inflow_net_new': number;
|
|
23022
23088
|
readonly 'num_pv_outflow_human_decisions': number;
|
|
23023
23089
|
readonly 'num_pv_outflow_auto_review_decisions': number;
|
|
@@ -23027,6 +23093,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23027
23093
|
readonly 'num_pr_outflow_auto_review_decisions': number;
|
|
23028
23094
|
readonly 'num_pr_outflow_side_effect_decisions': number;
|
|
23029
23095
|
readonly 'num_pending_decisions_transacting': number;
|
|
23096
|
+
readonly 'oldest_insufficient_details_pv_onboarding'?: string;
|
|
23097
|
+
readonly 'oldest_insufficient_details_pv_active'?: string;
|
|
23098
|
+
readonly 'oldest_insufficient_details_pv_transacting'?: string;
|
|
23030
23099
|
}
|
|
23031
23100
|
|
|
23032
23101
|
interface RestrictionsDailyopsDeleted {
|
|
@@ -23326,29 +23395,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23326
23395
|
readonly 'customer_id': string;
|
|
23327
23396
|
}
|
|
23328
23397
|
|
|
23329
|
-
interface ShippedItemValue {
|
|
23330
|
-
readonly 'item': io.flow.common.v0.models.CatalogItemReference;
|
|
23331
|
-
readonly 'taxes': io.flow.common.v0.models.PriceWithBase;
|
|
23332
|
-
readonly 'duties': io.flow.common.v0.models.PriceWithBase;
|
|
23333
|
-
readonly 'total': io.flow.common.v0.models.PriceWithBase;
|
|
23334
|
-
}
|
|
23335
|
-
|
|
23336
|
-
interface ShippingEstimateDeleted {
|
|
23337
|
-
readonly 'discriminator': 'shipping_estimate_deleted';
|
|
23338
|
-
readonly 'event_id': string;
|
|
23339
|
-
readonly 'timestamp': string;
|
|
23340
|
-
readonly 'organization': string;
|
|
23341
|
-
readonly 'id': string;
|
|
23342
|
-
}
|
|
23343
|
-
|
|
23344
|
-
interface ShippingEstimateUpserted {
|
|
23345
|
-
readonly 'discriminator': 'shipping_estimate_upserted';
|
|
23346
|
-
readonly 'event_id': string;
|
|
23347
|
-
readonly 'timestamp': string;
|
|
23348
|
-
readonly 'organization': string;
|
|
23349
|
-
readonly 'estimate': io.flow.label.v0.models.Estimate;
|
|
23350
|
-
}
|
|
23351
|
-
|
|
23352
23398
|
interface ShippingLane {
|
|
23353
23399
|
readonly 'origin': string;
|
|
23354
23400
|
readonly 'destination': string;
|
|
@@ -23396,6 +23442,36 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23396
23442
|
readonly 'code': string;
|
|
23397
23443
|
}
|
|
23398
23444
|
|
|
23445
|
+
interface ShopifyDispute {
|
|
23446
|
+
readonly 'id': string;
|
|
23447
|
+
readonly 'organization_id': string;
|
|
23448
|
+
readonly 'authorization_id': string;
|
|
23449
|
+
readonly 'amount': number;
|
|
23450
|
+
readonly 'currency': string;
|
|
23451
|
+
readonly 'status': string;
|
|
23452
|
+
readonly 'category': string;
|
|
23453
|
+
readonly 'attributes'?: Record<string, string>;
|
|
23454
|
+
readonly 'external_reference_id': string;
|
|
23455
|
+
readonly 'issued_at': string;
|
|
23456
|
+
readonly 'updated_at': string;
|
|
23457
|
+
}
|
|
23458
|
+
|
|
23459
|
+
interface ShopifyDisputeDeleted {
|
|
23460
|
+
readonly 'discriminator': 'shopify_dispute_deleted';
|
|
23461
|
+
readonly 'event_id': string;
|
|
23462
|
+
readonly 'timestamp': string;
|
|
23463
|
+
readonly 'organization': string;
|
|
23464
|
+
readonly 'id': string;
|
|
23465
|
+
}
|
|
23466
|
+
|
|
23467
|
+
interface ShopifyDisputeUpserted {
|
|
23468
|
+
readonly 'discriminator': 'shopify_dispute_upserted';
|
|
23469
|
+
readonly 'event_id': string;
|
|
23470
|
+
readonly 'timestamp': string;
|
|
23471
|
+
readonly 'organization': string;
|
|
23472
|
+
readonly 'dispute': io.flow.internal.v0.models.ShopifyDispute;
|
|
23473
|
+
}
|
|
23474
|
+
|
|
23399
23475
|
interface ShopifyExperienceShortId {
|
|
23400
23476
|
readonly 'id': string;
|
|
23401
23477
|
readonly 'experience': io.flow.experience.v0.models.ExperienceReference;
|
|
@@ -23760,6 +23836,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23760
23836
|
readonly 'plan': io.flow.internal.v0.enums.ShopifyPlanType;
|
|
23761
23837
|
}
|
|
23762
23838
|
|
|
23839
|
+
interface ShopifyMerchantPlanDeleted {
|
|
23840
|
+
readonly 'discriminator': 'shopify_merchant_plan_deleted';
|
|
23841
|
+
readonly 'event_id': string;
|
|
23842
|
+
readonly 'timestamp': string;
|
|
23843
|
+
readonly 'id': string;
|
|
23844
|
+
}
|
|
23845
|
+
|
|
23846
|
+
interface ShopifyMerchantPlanUpserted {
|
|
23847
|
+
readonly 'discriminator': 'shopify_merchant_plan_upserted';
|
|
23848
|
+
readonly 'event_id': string;
|
|
23849
|
+
readonly 'timestamp': string;
|
|
23850
|
+
readonly 'shopify_merchant_plan': io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
23851
|
+
}
|
|
23852
|
+
|
|
23763
23853
|
interface ShopifyMetadata {
|
|
23764
23854
|
readonly 'domain': string;
|
|
23765
23855
|
readonly 'myshopify_domain': string;
|
|
@@ -24501,6 +24591,63 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24501
24591
|
readonly 'capture': io.flow.internal.v0.models.StripeInternalCapture;
|
|
24502
24592
|
}
|
|
24503
24593
|
|
|
24594
|
+
interface StripeConnectReportRecord {
|
|
24595
|
+
readonly 'id': string;
|
|
24596
|
+
readonly 'file_id': string;
|
|
24597
|
+
readonly 'line_number': number;
|
|
24598
|
+
readonly 'created_utc': string;
|
|
24599
|
+
readonly 'charge_id'?: string;
|
|
24600
|
+
readonly 'payment_intent_id'?: string;
|
|
24601
|
+
readonly 'gross': number;
|
|
24602
|
+
readonly 'fee': number;
|
|
24603
|
+
readonly 'net': number;
|
|
24604
|
+
readonly 'currency': string;
|
|
24605
|
+
readonly 'connected_account': string;
|
|
24606
|
+
readonly 'reporting_category': io.flow.stripe.v0.unions.ConnectReportReportingCategory;
|
|
24607
|
+
readonly 'dispute_reason'?: string;
|
|
24608
|
+
readonly 'available_on_utc': string;
|
|
24609
|
+
readonly 'automatic_payout_effective_at_utc'?: string;
|
|
24610
|
+
readonly 'source_id'?: string;
|
|
24611
|
+
readonly 'customer_facing_amount'?: number;
|
|
24612
|
+
readonly 'customer_facing_currency'?: string;
|
|
24613
|
+
readonly 'payment_method_type'?: string;
|
|
24614
|
+
readonly 'card_brand'?: string;
|
|
24615
|
+
readonly 'statement_descriptor'?: string;
|
|
24616
|
+
readonly 'payment_metadata'?: io.flow.internal.v0.models.StripeConnectReportRecordPaymentMetadata;
|
|
24617
|
+
readonly 'transfer_metadata'?: any/*object*/;
|
|
24618
|
+
}
|
|
24619
|
+
|
|
24620
|
+
interface StripeConnectReportRecordDeleted {
|
|
24621
|
+
readonly 'discriminator': 'stripe_connect_report_record_deleted';
|
|
24622
|
+
readonly 'event_id': string;
|
|
24623
|
+
readonly 'timestamp': string;
|
|
24624
|
+
readonly 'id': string;
|
|
24625
|
+
}
|
|
24626
|
+
|
|
24627
|
+
interface StripeConnectReportRecordPaymentMetadata {
|
|
24628
|
+
readonly 'shop_id'?: number;
|
|
24629
|
+
readonly 'shop_plan'?: io.flow.internal.v0.enums.ShopifyPlanType;
|
|
24630
|
+
readonly 'checkout_id'?: string;
|
|
24631
|
+
readonly 'order_id'?: number;
|
|
24632
|
+
readonly 'order_transaction_id'?: number;
|
|
24633
|
+
readonly 'transfer_type'?: io.flow.internal.v0.enums.ConnectReportTransferType;
|
|
24634
|
+
readonly 'transfer_exchange_rate'?: number;
|
|
24635
|
+
readonly 'charge_total'?: number;
|
|
24636
|
+
readonly 'charge_currency'?: string;
|
|
24637
|
+
readonly 'charge_exchange_rate'?: number;
|
|
24638
|
+
readonly 'duties'?: number;
|
|
24639
|
+
readonly 'import_taxes'?: number;
|
|
24640
|
+
readonly 'mor_fee'?: number;
|
|
24641
|
+
readonly 'fx_fee'?: number;
|
|
24642
|
+
}
|
|
24643
|
+
|
|
24644
|
+
interface StripeConnectReportRecordUpserted {
|
|
24645
|
+
readonly 'discriminator': 'stripe_connect_report_record_upserted';
|
|
24646
|
+
readonly 'event_id': string;
|
|
24647
|
+
readonly 'timestamp': string;
|
|
24648
|
+
readonly 'record': io.flow.internal.v0.models.StripeConnectReportRecord;
|
|
24649
|
+
}
|
|
24650
|
+
|
|
24504
24651
|
interface StripeDisputeDeleted {
|
|
24505
24652
|
readonly 'discriminator': 'stripe_dispute_deleted';
|
|
24506
24653
|
readonly 'event_id': string;
|
|
@@ -24802,40 +24949,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24802
24949
|
readonly 'category_code'?: string;
|
|
24803
24950
|
}
|
|
24804
24951
|
|
|
24805
|
-
interface TaxDutyDeltaMetadataActual {
|
|
24806
|
-
readonly 'processing': io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
24807
|
-
}
|
|
24808
|
-
|
|
24809
|
-
interface TaxDutyDeltaMetadataActualProcessing {
|
|
24810
|
-
readonly 'capture': io.flow.common.v0.models.Money;
|
|
24811
|
-
readonly 'fees': io.flow.common.v0.models.Money;
|
|
24812
|
-
readonly 'transfer': io.flow.common.v0.models.Money;
|
|
24813
|
-
readonly 'total': io.flow.common.v0.models.Money;
|
|
24814
|
-
}
|
|
24815
|
-
|
|
24816
|
-
interface TaxDutyDeltaMetadataExpected {
|
|
24817
|
-
readonly 'processing': io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
24818
|
-
}
|
|
24819
|
-
|
|
24820
|
-
interface TaxDutyDeltaMetadataExpectedProcessing {
|
|
24821
|
-
readonly 'tax': io.flow.common.v0.models.Money;
|
|
24822
|
-
readonly 'duty': io.flow.common.v0.models.Money;
|
|
24823
|
-
readonly 'total': io.flow.common.v0.models.Money;
|
|
24824
|
-
}
|
|
24825
|
-
|
|
24826
|
-
interface TaxDutyDeltaTransaction {
|
|
24827
|
-
readonly 'discriminator': 'tax_duty_delta_transaction';
|
|
24828
|
-
readonly 'order': io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
24829
|
-
readonly 'id': string;
|
|
24830
|
-
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
24831
|
-
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
24832
|
-
readonly 'posted_at'?: string;
|
|
24833
|
-
readonly 'value': io.flow.common.v0.models.Price;
|
|
24834
|
-
readonly 'description': string;
|
|
24835
|
-
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
24836
|
-
readonly 'created_at': string;
|
|
24837
|
-
}
|
|
24838
|
-
|
|
24839
24952
|
interface TaxRemittanceTransaction {
|
|
24840
24953
|
readonly 'discriminator': 'tax_remittance_transaction';
|
|
24841
24954
|
readonly 'order': io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -25581,7 +25694,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25581
25694
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25582
25695
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
25583
25696
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25584
|
-
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.ShippingEstimateUpserted | io.flow.internal.v0.models.ShippingEstimateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
25697
|
+
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.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.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.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
25585
25698
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
25586
25699
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25587
25700
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -25632,7 +25745,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25632
25745
|
type TaskMetadata = (io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata);
|
|
25633
25746
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
25634
25747
|
type Tracker = (io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel);
|
|
25635
|
-
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction
|
|
25748
|
+
type Transaction = (io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction);
|
|
25636
25749
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
25637
25750
|
type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
|
|
25638
25751
|
}
|
|
@@ -25688,6 +25801,7 @@ export const classificationType: PropTypes.Requireable<io.flow.internal.v0.enums
|
|
|
25688
25801
|
export const clothingAgeClassification: PropTypes.Requireable<io.flow.internal.v0.enums.ClothingAgeClassification>;
|
|
25689
25802
|
export const company: PropTypes.Requireable<io.flow.internal.v0.enums.Company>;
|
|
25690
25803
|
export const complianceType: PropTypes.Requireable<io.flow.internal.v0.enums.ComplianceType>;
|
|
25804
|
+
export const connectReportTransferType: PropTypes.Requireable<io.flow.internal.v0.enums.ConnectReportTransferType>;
|
|
25691
25805
|
export const contentElementType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentElementType>;
|
|
25692
25806
|
export const contentStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ContentStatus>;
|
|
25693
25807
|
export const contentType: PropTypes.Requireable<io.flow.internal.v0.enums.ContentType>;
|
|
@@ -25739,6 +25853,7 @@ export const googleAnalyticsPlugin: PropTypes.Requireable<io.flow.internal.v0.en
|
|
|
25739
25853
|
export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enums.GraphqlServiceTypes>;
|
|
25740
25854
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
25741
25855
|
export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
|
|
25856
|
+
export const internalPaymentEntityType: PropTypes.Requireable<io.flow.internal.v0.enums.InternalPaymentEntityType>;
|
|
25742
25857
|
export const itemClassificationAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationAction>;
|
|
25743
25858
|
export const itemClassificationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationStatus>;
|
|
25744
25859
|
export const itemHarmonizationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ItemHarmonizationStatus>;
|
|
@@ -25759,6 +25874,8 @@ export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enum
|
|
|
25759
25874
|
export const logisticsPayoutResolutionMethod: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsPayoutResolutionMethod>;
|
|
25760
25875
|
export const manualReviewRuleStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ManualReviewRuleStatus>;
|
|
25761
25876
|
export const manualTransactionCategory: PropTypes.Requireable<io.flow.internal.v0.enums.ManualTransactionCategory>;
|
|
25877
|
+
export const merchantOfRecord: PropTypes.Requireable<io.flow.internal.v0.enums.MerchantOfRecord>;
|
|
25878
|
+
export const merchantOverrideStatus: PropTypes.Requireable<io.flow.internal.v0.enums.MerchantOverrideStatus>;
|
|
25762
25879
|
export const mixedBagWeight: PropTypes.Requireable<io.flow.internal.v0.enums.MixedBagWeight>;
|
|
25763
25880
|
export const natureOfSale: PropTypes.Requireable<io.flow.internal.v0.enums.NatureOfSale>;
|
|
25764
25881
|
export const noLiabilityReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.NoLiabilityReasonCode>;
|
|
@@ -25805,6 +25922,8 @@ export const rateSource: PropTypes.Requireable<io.flow.internal.v0.enums.RateSou
|
|
|
25805
25922
|
export const reboundConfigurationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReboundConfigurationStatus>;
|
|
25806
25923
|
export const redirectReason: PropTypes.Requireable<io.flow.internal.v0.enums.RedirectReason>;
|
|
25807
25924
|
export const rejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.RejectionReason>;
|
|
25925
|
+
export const reportFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileStatus>;
|
|
25926
|
+
export const reportFileType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportFileType>;
|
|
25808
25927
|
export const reportInterval: PropTypes.Requireable<io.flow.internal.v0.enums.ReportInterval>;
|
|
25809
25928
|
export const reportPaymentType: PropTypes.Requireable<io.flow.internal.v0.enums.ReportPaymentType>;
|
|
25810
25929
|
export const reportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ReportStatus>;
|
|
@@ -25891,9 +26010,6 @@ export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
25891
26010
|
export const addressConfigurationProvinceSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationProvinceSetting>;
|
|
25892
26011
|
export const addressConfigurationSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSetting>;
|
|
25893
26012
|
export const addressConfigurationSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSettingForm>;
|
|
25894
|
-
export const adjustedEstimates: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimates>;
|
|
25895
|
-
export const adjustedEstimatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesDeleted>;
|
|
25896
|
-
export const adjustedEstimatesUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesUpserted>;
|
|
25897
26013
|
export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
|
|
25898
26014
|
export const adjustmentAmountPercentage: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountPercentage>;
|
|
25899
26015
|
export const adjustmentDetailsAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentDetailsAmountFixed>;
|
|
@@ -26425,7 +26541,6 @@ export const fuelSurchargeServiceFeePercentPutForm: PropTypes.Requireable<io.flo
|
|
|
26425
26541
|
export const fulfillment: PropTypes.Requireable<io.flow.internal.v0.models.Fulfillment>;
|
|
26426
26542
|
export const fulfillmentActionForm: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentActionForm>;
|
|
26427
26543
|
export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentBusiness>;
|
|
26428
|
-
export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
|
|
26429
26544
|
export const fulfillmentCarrier: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCarrier>;
|
|
26430
26545
|
export const fulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentDeleted>;
|
|
26431
26546
|
export const fulfillmentFallbacks: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacks>;
|
|
@@ -26437,7 +26552,6 @@ export const fulfillmentProofLabelTrackingReference: PropTypes.Requireable<io.fl
|
|
|
26437
26552
|
export const fulfillmentProofOrderCombinedShipmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference>;
|
|
26438
26553
|
export const fulfillmentProofShippingNotificationReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference>;
|
|
26439
26554
|
export const fulfillmentReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentReference>;
|
|
26440
|
-
export const fulfillmentShipmentTracking: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShipmentTracking>;
|
|
26441
26555
|
export const fulfillmentShopperBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentShopperBreakdown>;
|
|
26442
26556
|
export const fulfillmentSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSnapshot>;
|
|
26443
26557
|
export const fulfillmentSubsidyBreakdown: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentSubsidyBreakdown>;
|
|
@@ -26540,7 +26654,6 @@ export const itemSalesMarginUpserted: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26540
26654
|
export const itemSalesMarginVersion: PropTypes.Requireable<io.flow.internal.v0.models.ItemSalesMarginVersion>;
|
|
26541
26655
|
export const itemSummary: PropTypes.Requireable<io.flow.internal.v0.models.ItemSummary>;
|
|
26542
26656
|
export const itemValuesForm: PropTypes.Requireable<io.flow.internal.v0.models.ItemValuesForm>;
|
|
26543
|
-
export const itemsShipped: PropTypes.Requireable<io.flow.internal.v0.models.ItemsShipped>;
|
|
26544
26657
|
export const jeanDemoItem: PropTypes.Requireable<io.flow.internal.v0.models.JeanDemoItem>;
|
|
26545
26658
|
export const key: PropTypes.Requireable<io.flow.internal.v0.models.Key>;
|
|
26546
26659
|
export const keyReference: PropTypes.Requireable<io.flow.internal.v0.models.KeyReference>;
|
|
@@ -26553,7 +26666,9 @@ export const labelAliases: PropTypes.Requireable<io.flow.internal.v0.models.Labe
|
|
|
26553
26666
|
export const labelAssociation: PropTypes.Requireable<io.flow.internal.v0.models.LabelAssociation>;
|
|
26554
26667
|
export const labelCancellationError: PropTypes.Requireable<io.flow.internal.v0.models.LabelCancellationError>;
|
|
26555
26668
|
export const labelCreationJob: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJob>;
|
|
26669
|
+
export const labelCreationJobDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobDeleted>;
|
|
26556
26670
|
export const labelCreationJobSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobSummary>;
|
|
26671
|
+
export const labelCreationJobUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationJobUpserted>;
|
|
26557
26672
|
export const labelCreationRequestForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelCreationRequestForm>;
|
|
26558
26673
|
export const labelDestination: PropTypes.Requireable<io.flow.internal.v0.models.LabelDestination>;
|
|
26559
26674
|
export const labelGenerationSettings: PropTypes.Requireable<io.flow.internal.v0.models.LabelGenerationSettings>;
|
|
@@ -26648,6 +26763,8 @@ export const merchantHubOverride: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26648
26763
|
export const merchantHubOverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantHubOverrideForm>;
|
|
26649
26764
|
export const merchantOfRecordEntitySettings: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettings>;
|
|
26650
26765
|
export const merchantOfRecordEntitySettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm>;
|
|
26766
|
+
export const merchantOverride: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverride>;
|
|
26767
|
+
export const merchantOverrideDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOverrideDecisionForm>;
|
|
26651
26768
|
export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
|
|
26652
26769
|
export const merchantSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSubsidies>;
|
|
26653
26770
|
export const merchantSummary: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSummary>;
|
|
@@ -26700,7 +26817,6 @@ export const orderFulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26700
26817
|
export const orderNote: PropTypes.Requireable<io.flow.internal.v0.models.OrderNote>;
|
|
26701
26818
|
export const orderNoteForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderNoteForm>;
|
|
26702
26819
|
export const orderPaymentAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.OrderPaymentAuthorization>;
|
|
26703
|
-
export const orderPlaced: PropTypes.Requireable<io.flow.internal.v0.models.OrderPlaced>;
|
|
26704
26820
|
export const orderRatesDataV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesDataV3>;
|
|
26705
26821
|
export const orderRatesPublishedV3: PropTypes.Requireable<io.flow.internal.v0.models.OrderRatesPublishedV3>;
|
|
26706
26822
|
export const orderReference: PropTypes.Requireable<io.flow.internal.v0.models.OrderReference>;
|
|
@@ -26709,7 +26825,6 @@ export const orderRevenueRegionDataPoint: PropTypes.Requireable<io.flow.internal
|
|
|
26709
26825
|
export const orderRevenueTimelineChart: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineChart>;
|
|
26710
26826
|
export const orderRevenueTimelineDataPoint: PropTypes.Requireable<io.flow.internal.v0.models.OrderRevenueTimelineDataPoint>;
|
|
26711
26827
|
export const orderServiceChangeCsvForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderServiceChangeCsvForm>;
|
|
26712
|
-
export const orderShipped: PropTypes.Requireable<io.flow.internal.v0.models.OrderShipped>;
|
|
26713
26828
|
export const orderSubmissionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderSubmissionForm>;
|
|
26714
26829
|
export const orderSummary: PropTypes.Requireable<io.flow.internal.v0.models.OrderSummary>;
|
|
26715
26830
|
export const orderTaxAndDutyInclusivitySetting: PropTypes.Requireable<io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting>;
|
|
@@ -26809,6 +26924,9 @@ export const partnerOrganizationSettings: PropTypes.Requireable<io.flow.internal
|
|
|
26809
26924
|
export const partnerOrganizationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted>;
|
|
26810
26925
|
export const partnerOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsForm>;
|
|
26811
26926
|
export const partnerOrganizationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted>;
|
|
26927
|
+
export const partnerRequest: PropTypes.Requireable<io.flow.internal.v0.models.PartnerRequest>;
|
|
26928
|
+
export const partnerRequestDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerRequestDeleted>;
|
|
26929
|
+
export const partnerRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerRequestUpserted>;
|
|
26812
26930
|
export const partnerTrackingSubscriptionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted>;
|
|
26813
26931
|
export const partnerTrackingSubscriptionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted>;
|
|
26814
26932
|
export const passphrase: PropTypes.Requireable<io.flow.internal.v0.models.Passphrase>;
|
|
@@ -26952,7 +27070,6 @@ export const ratecardStandardConfigurationUpserted: PropTypes.Requireable<io.flo
|
|
|
26952
27070
|
export const ratecardStandardSettings: PropTypes.Requireable<io.flow.internal.v0.models.RatecardStandardSettings>;
|
|
26953
27071
|
export const ratesChanged: PropTypes.Requireable<io.flow.internal.v0.models.RatesChanged>;
|
|
26954
27072
|
export const ratesNamesSummary: PropTypes.Requireable<io.flow.internal.v0.models.RatesNamesSummary>;
|
|
26955
|
-
export const readyToFulfill: PropTypes.Requireable<io.flow.internal.v0.models.ReadyToFulfill>;
|
|
26956
27073
|
export const reboundConfiguration: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfiguration>;
|
|
26957
27074
|
export const reboundConfigurationForm: PropTypes.Requireable<io.flow.internal.v0.models.ReboundConfigurationForm>;
|
|
26958
27075
|
export const recordReference: PropTypes.Requireable<io.flow.internal.v0.models.RecordReference>;
|
|
@@ -26965,6 +27082,7 @@ export const report: PropTypes.Requireable<io.flow.internal.v0.models.Report>;
|
|
|
26965
27082
|
export const reportAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportAccount>;
|
|
26966
27083
|
export const reportBankAccount: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccount>;
|
|
26967
27084
|
export const reportBankAccountCleartext: PropTypes.Requireable<io.flow.internal.v0.models.ReportBankAccountCleartext>;
|
|
27085
|
+
export const reportFile: PropTypes.Requireable<io.flow.internal.v0.models.ReportFile>;
|
|
26968
27086
|
export const reportFilter: PropTypes.Requireable<io.flow.internal.v0.models.ReportFilter>;
|
|
26969
27087
|
export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.ReportForm>;
|
|
26970
27088
|
export const reportMerchant: PropTypes.Requireable<io.flow.internal.v0.models.ReportMerchant>;
|
|
@@ -26972,6 +27090,8 @@ export const reportOrderReference: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
26972
27090
|
export const reportOrganizationReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportOrganizationReference>;
|
|
26973
27091
|
export const reportOwner: PropTypes.Requireable<io.flow.internal.v0.models.ReportOwner>;
|
|
26974
27092
|
export const reportPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportPayment>;
|
|
27093
|
+
export const reportRecordError: PropTypes.Requireable<io.flow.internal.v0.models.ReportRecordError>;
|
|
27094
|
+
export const reportRecordRetryQueue: PropTypes.Requireable<io.flow.internal.v0.models.ReportRecordRetryQueue>;
|
|
26975
27095
|
export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
|
|
26976
27096
|
export const reportSummary: PropTypes.Requireable<io.flow.internal.v0.models.ReportSummary>;
|
|
26977
27097
|
export const reportingAuthorizationReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportingAuthorizationReference>;
|
|
@@ -27084,9 +27204,6 @@ export const sessionRollout: PropTypes.Requireable<io.flow.internal.v0.models.Se
|
|
|
27084
27204
|
export const sessionRolloutForm: PropTypes.Requireable<io.flow.internal.v0.models.SessionRolloutForm>;
|
|
27085
27205
|
export const setupBlockPutForm: PropTypes.Requireable<io.flow.internal.v0.models.SetupBlockPutForm>;
|
|
27086
27206
|
export const sfExpress: PropTypes.Requireable<io.flow.internal.v0.models.SfExpress>;
|
|
27087
|
-
export const shippedItemValue: PropTypes.Requireable<io.flow.internal.v0.models.ShippedItemValue>;
|
|
27088
|
-
export const shippingEstimateDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShippingEstimateDeleted>;
|
|
27089
|
-
export const shippingEstimateUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShippingEstimateUpserted>;
|
|
27090
27207
|
export const shippingLane: PropTypes.Requireable<io.flow.internal.v0.models.ShippingLane>;
|
|
27091
27208
|
export const shippingMethodReference: PropTypes.Requireable<io.flow.internal.v0.models.ShippingMethodReference>;
|
|
27092
27209
|
export const shop: PropTypes.Requireable<io.flow.internal.v0.models.Shop>;
|
|
@@ -27096,6 +27213,9 @@ export const shopifyChannelOrganizationToken: PropTypes.Requireable<io.flow.inte
|
|
|
27096
27213
|
export const shopifyChannelOrganizationTokens: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyChannelOrganizationTokens>;
|
|
27097
27214
|
export const shopifyCheckInventoryError: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCheckInventoryError>;
|
|
27098
27215
|
export const shopifyCodeForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyCodeForm>;
|
|
27216
|
+
export const shopifyDispute: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDispute>;
|
|
27217
|
+
export const shopifyDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDisputeDeleted>;
|
|
27218
|
+
export const shopifyDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyDisputeUpserted>;
|
|
27099
27219
|
export const shopifyExperienceShortId: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyExperienceShortId>;
|
|
27100
27220
|
export const shopifyExperienceShortIdDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted>;
|
|
27101
27221
|
export const shopifyExperienceShortIdUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted>;
|
|
@@ -27148,6 +27268,8 @@ export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.in
|
|
|
27148
27268
|
export const shopifyMarketsWebhookRegistrationDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted>;
|
|
27149
27269
|
export const shopifyMarketsWebhookRegistrationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted>;
|
|
27150
27270
|
export const shopifyMerchantPlan: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlan>;
|
|
27271
|
+
export const shopifyMerchantPlanDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlanDeleted>;
|
|
27272
|
+
export const shopifyMerchantPlanUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMerchantPlanUpserted>;
|
|
27151
27273
|
export const shopifyMetadata: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMetadata>;
|
|
27152
27274
|
export const shopifyMonitoringCarrierService: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringCarrierService>;
|
|
27153
27275
|
export const shopifyMonitoringFulfillmentExternal: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal>;
|
|
@@ -27257,6 +27379,10 @@ export const stripeAuthorizationDeleted: PropTypes.Requireable<io.flow.internal.
|
|
|
27257
27379
|
export const stripeAuthorizationUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeAuthorizationUpserted>;
|
|
27258
27380
|
export const stripeCaptureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeCaptureDeleted>;
|
|
27259
27381
|
export const stripeCaptureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeCaptureUpserted>;
|
|
27382
|
+
export const stripeConnectReportRecord: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecord>;
|
|
27383
|
+
export const stripeConnectReportRecordDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordDeleted>;
|
|
27384
|
+
export const stripeConnectReportRecordPaymentMetadata: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordPaymentMetadata>;
|
|
27385
|
+
export const stripeConnectReportRecordUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeConnectReportRecordUpserted>;
|
|
27260
27386
|
export const stripeDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.StripeDisputeDeleted>;
|
|
27261
27387
|
export const stripeDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.StripeDisputeUpserted>;
|
|
27262
27388
|
export const stripeInternalAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.StripeInternalAuthorization>;
|
|
@@ -27290,11 +27416,6 @@ export const taxCalculationError: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27290
27416
|
export const taxCalculationForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationForm>;
|
|
27291
27417
|
export const taxCalculationLineItem: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItem>;
|
|
27292
27418
|
export const taxCalculationLineItemForm: PropTypes.Requireable<io.flow.internal.v0.models.TaxCalculationLineItemForm>;
|
|
27293
|
-
export const taxDutyDeltaMetadataActual: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataActual>;
|
|
27294
|
-
export const taxDutyDeltaMetadataActualProcessing: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing>;
|
|
27295
|
-
export const taxDutyDeltaMetadataExpected: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected>;
|
|
27296
|
-
export const taxDutyDeltaMetadataExpectedProcessing: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing>;
|
|
27297
|
-
export const taxDutyDeltaTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxDutyDeltaTransaction>;
|
|
27298
27419
|
export const taxRemittanceTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransaction>;
|
|
27299
27420
|
export const taxRemittanceTransactionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionDeleted>;
|
|
27300
27421
|
export const taxRemittanceTransactionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TaxRemittanceTransactionUpserted>;
|