@flowio/types 11.24.112 → 11.24.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +282 -169
- package/dist/api.d.ts +216 -50
- package/package.json +2 -2
- package/src/api-internal.ts +421 -215
- package/src/api.ts +319 -56
package/dist/api-internal.d.ts
CHANGED
|
@@ -1107,6 +1107,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1107
1107
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1108
1108
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1109
1109
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1110
|
+
type PaymentFeeType = 'fx' | 'mor';
|
|
1110
1111
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1111
1112
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1112
1113
|
type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
|
|
@@ -1117,6 +1118,8 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1117
1118
|
type ThreeDSecureCode = 'verified' | 'not_verified' | 'failed';
|
|
1118
1119
|
type ThreedsTwoChallengeViewport = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen';
|
|
1119
1120
|
type TokenType = 'permanent' | 'one_time';
|
|
1121
|
+
type TransferStatus = 'succeeded' | 'canceled';
|
|
1122
|
+
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';
|
|
1120
1123
|
}
|
|
1121
1124
|
declare namespace io.flow.payment.v0.models {
|
|
1122
1125
|
interface AchAuthorizationForm {
|
|
@@ -1279,6 +1282,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1279
1282
|
readonly attributes?: Record<string, string>;
|
|
1280
1283
|
readonly status?: io.flow.payment.v0.enums.CaptureStatus;
|
|
1281
1284
|
readonly base?: io.flow.common.v0.models.Money;
|
|
1285
|
+
readonly fees?: io.flow.payment.v0.models.PaymentFee[];
|
|
1282
1286
|
}
|
|
1283
1287
|
interface CaptureError {
|
|
1284
1288
|
readonly code: io.flow.error.v0.enums.GenericErrorCode;
|
|
@@ -1300,6 +1304,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1300
1304
|
readonly primary: boolean;
|
|
1301
1305
|
}
|
|
1302
1306
|
interface CaptureReference {
|
|
1307
|
+
readonly discriminator: 'capture_reference';
|
|
1303
1308
|
readonly id: string;
|
|
1304
1309
|
readonly key: string;
|
|
1305
1310
|
}
|
|
@@ -1490,10 +1495,24 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1490
1495
|
readonly last4?: string;
|
|
1491
1496
|
readonly account_holder_name?: string;
|
|
1492
1497
|
}
|
|
1498
|
+
interface DisputeReference {
|
|
1499
|
+
readonly discriminator: 'dispute_reference';
|
|
1500
|
+
readonly id: string;
|
|
1501
|
+
readonly key: string;
|
|
1502
|
+
}
|
|
1503
|
+
interface ExchangedMoney {
|
|
1504
|
+
readonly fx_rate: number;
|
|
1505
|
+
readonly money: io.flow.common.v0.models.Money;
|
|
1506
|
+
}
|
|
1493
1507
|
interface Expiration {
|
|
1494
1508
|
readonly month: number;
|
|
1495
1509
|
readonly year: number;
|
|
1496
1510
|
}
|
|
1511
|
+
interface ExternalCard {
|
|
1512
|
+
readonly discriminator: 'external_card';
|
|
1513
|
+
readonly id: string;
|
|
1514
|
+
readonly type?: io.flow.payment.v0.enums.CardType;
|
|
1515
|
+
}
|
|
1497
1516
|
interface GooglePayAuthorizationPayload {
|
|
1498
1517
|
readonly discriminator: 'google_pay_authorization_payload';
|
|
1499
1518
|
readonly payload: any;
|
|
@@ -1615,6 +1634,11 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1615
1634
|
readonly messages: string[];
|
|
1616
1635
|
readonly codes: io.flow.payment.v0.enums.PaymentErrorCode[];
|
|
1617
1636
|
}
|
|
1637
|
+
interface PaymentFee {
|
|
1638
|
+
readonly type: io.flow.payment.v0.enums.PaymentFeeType;
|
|
1639
|
+
readonly money: io.flow.common.v0.models.Money;
|
|
1640
|
+
readonly base?: io.flow.common.v0.models.Money;
|
|
1641
|
+
}
|
|
1618
1642
|
interface PaymentPaymentRequestReference {
|
|
1619
1643
|
readonly discriminator: 'payment_request';
|
|
1620
1644
|
readonly payment_request_id: string;
|
|
@@ -1789,6 +1813,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1789
1813
|
readonly shipping?: number;
|
|
1790
1814
|
}
|
|
1791
1815
|
interface RefundReference {
|
|
1816
|
+
readonly discriminator: 'refund_reference';
|
|
1792
1817
|
readonly id: string;
|
|
1793
1818
|
readonly key: string;
|
|
1794
1819
|
}
|
|
@@ -1896,6 +1921,16 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1896
1921
|
readonly network_transaction_id?: string;
|
|
1897
1922
|
readonly network?: io.flow.payment.v0.enums.CardType;
|
|
1898
1923
|
}
|
|
1924
|
+
interface Transfer {
|
|
1925
|
+
readonly id: string;
|
|
1926
|
+
readonly type: io.flow.payment.v0.enums.TransferType;
|
|
1927
|
+
readonly money: io.flow.common.v0.models.Money;
|
|
1928
|
+
readonly transferred_money: io.flow.payment.v0.models.ExchangedMoney;
|
|
1929
|
+
readonly status: io.flow.payment.v0.enums.TransferStatus;
|
|
1930
|
+
readonly created_at: string;
|
|
1931
|
+
readonly reference: io.flow.payment.v0.unions.TransferReference;
|
|
1932
|
+
readonly transferred_at: string;
|
|
1933
|
+
}
|
|
1899
1934
|
interface VirtualCard {
|
|
1900
1935
|
readonly id: string;
|
|
1901
1936
|
readonly key: string;
|
|
@@ -1959,7 +1994,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
1959
1994
|
type BrowserActionConfiguration = io.flow.payment.v0.models.CardBrowserActionConfiguration;
|
|
1960
1995
|
type ConfirmationDetails = io.flow.payment.v0.models.DirectDebit | io.flow.payment.v0.models.CardConfirmationSummary;
|
|
1961
1996
|
type DeviceDetails = io.flow.payment.v0.models.DeviceDetailsBrowser;
|
|
1962
|
-
type ExpandableCard = io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary;
|
|
1997
|
+
type ExpandableCard = io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary | io.flow.payment.v0.models.ExternalCard;
|
|
1963
1998
|
type ExpandablePaymentProcessor = io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference;
|
|
1964
1999
|
type GatewayAuthenticationData = io.flow.payment.v0.models.StripeAuthenticationData;
|
|
1965
2000
|
type GatewayAuthenticationDataForm = io.flow.payment.v0.models.StripeAuthenticationDataForm;
|
|
@@ -1974,6 +2009,7 @@ declare namespace io.flow.payment.v0.unions {
|
|
|
1974
2009
|
type ThreedsChallengeAction = io.flow.payment.v0.models.ThreedsTwoChallengeRequest;
|
|
1975
2010
|
type ThreedsIdentifyAction = io.flow.payment.v0.models.ThreedsTwoMethod;
|
|
1976
2011
|
type TransactionDetails = io.flow.payment.v0.models.TransactionDetailsCard;
|
|
2012
|
+
type TransferReference = io.flow.payment.v0.models.CaptureReference | io.flow.payment.v0.models.RefundReference | io.flow.payment.v0.models.DisputeReference;
|
|
1977
2013
|
}
|
|
1978
2014
|
declare namespace io.flow.field.validation.v0.models {
|
|
1979
2015
|
interface FieldValidationMax {
|
|
@@ -2015,6 +2051,10 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2015
2051
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
2016
2052
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
2017
2053
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
2054
|
+
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';
|
|
2055
|
+
type ConnectReportConnectReportingCategory = 'advance' | 'advance_funding' | 'connect_collection_transfer' | 'connect_reserved_funds' | 'platform_earning' | 'platform_earning_refund' | 'transfer' | 'transfer_reversal';
|
|
2056
|
+
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';
|
|
2057
|
+
type ConnectReportPaymentReportingCategory = 'charge' | 'charge_failure' | 'dispute' | 'dispute_reversal' | 'partial_capture_reversal' | 'refund' | 'refund_failure';
|
|
2018
2058
|
type DeclineCode = 'approve_with_id' | 'call_issuer' | 'card_not_supported' | 'card_velocity_exceeded' | 'currency_not_supported' | 'do_not_honor' | 'do_not_try_again' | 'duplicate_transaction' | 'expired_card' | 'fraudulent' | 'generic_decline' | 'incorrect_number' | 'incorrect_cvc' | 'incorrect_pin' | 'incorrect_zip' | 'insufficient_funds' | 'invalid_account' | 'invalid_amount' | 'invalid_cvc' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_number' | 'invalid_pin' | 'issuer_not_available' | 'lost_card' | 'new_account_information_available' | 'no_action_taken' | 'not_permitted' | 'pickup_card' | 'pin_try_exceeded' | 'processing_error' | 'reenter_transaction' | 'restricted_card' | 'revocation_of_all_authorizations' | 'revocation_of_authorization' | 'security_violation' | 'service_not_allowed' | 'stolen_card' | 'stop_payment_order' | 'testmode_decline' | 'transaction_not_allowed' | 'try_again_later' | 'withdrawal_count_limit_exceeded' | 'previously_declined_do_not_retry' | 'highest_risk_level' | 'requested_block_on_incorrect_cvc';
|
|
2019
2059
|
type DisputeEventType = 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated';
|
|
2020
2060
|
type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
|
|
@@ -3143,6 +3183,19 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3143
3183
|
}
|
|
3144
3184
|
declare namespace io.flow.stripe.v0.unions {
|
|
3145
3185
|
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
3186
|
+
type ConnectReportReportingCategory = {
|
|
3187
|
+
discriminator: 'connect_report_payment_reporting_category';
|
|
3188
|
+
value: io.flow.stripe.v0.enums.ConnectReportPaymentReportingCategory;
|
|
3189
|
+
} | {
|
|
3190
|
+
discriminator: 'connect_report_balance_reporting_category';
|
|
3191
|
+
value: io.flow.stripe.v0.enums.ConnectReportBalanceReportingCategory;
|
|
3192
|
+
} | {
|
|
3193
|
+
discriminator: 'connect_report_issuing_reporting_category';
|
|
3194
|
+
value: io.flow.stripe.v0.enums.ConnectReportIssuingReportingCategory;
|
|
3195
|
+
} | {
|
|
3196
|
+
discriminator: 'connect_report_connect_reporting_category';
|
|
3197
|
+
value: io.flow.stripe.v0.enums.ConnectReportConnectReportingCategory;
|
|
3198
|
+
};
|
|
3146
3199
|
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;
|
|
3147
3200
|
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;
|
|
3148
3201
|
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;
|
|
@@ -3227,8 +3280,6 @@ declare namespace io.flow.customer.v0.models {
|
|
|
3227
3280
|
declare namespace io.flow.label.v0.enums {
|
|
3228
3281
|
type CostEstimateSource = 'flow' | 'channel';
|
|
3229
3282
|
type Direction = 'outbound' | 'return';
|
|
3230
|
-
type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
|
|
3231
|
-
type EstimateType = 'Estimated' | 'Final';
|
|
3232
3283
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
3233
3284
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3234
3285
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
@@ -3296,14 +3347,6 @@ declare namespace io.flow.label.v0.models {
|
|
|
3296
3347
|
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3297
3348
|
readonly shipment_recipient?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3298
3349
|
}
|
|
3299
|
-
interface Estimate {
|
|
3300
|
-
readonly id: string;
|
|
3301
|
-
readonly organization_id: string;
|
|
3302
|
-
readonly label_id: string;
|
|
3303
|
-
readonly estimate: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
3304
|
-
readonly type: io.flow.label.v0.enums.EstimateType;
|
|
3305
|
-
readonly origin?: io.flow.label.v0.enums.EstimateOrigin;
|
|
3306
|
-
}
|
|
3307
3350
|
interface LabelOrderSummary {
|
|
3308
3351
|
readonly id: string;
|
|
3309
3352
|
readonly number: string;
|
|
@@ -4249,7 +4292,7 @@ declare namespace io.flow.brickftp.v0.unions {
|
|
|
4249
4292
|
}
|
|
4250
4293
|
declare namespace io.flow.units.v0.enums {
|
|
4251
4294
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
4252
|
-
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
4295
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter';
|
|
4253
4296
|
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
4254
4297
|
}
|
|
4255
4298
|
declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
@@ -6711,7 +6754,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
6711
6754
|
type RoundingType = 'pattern' | 'multiple';
|
|
6712
6755
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
6713
6756
|
type SortDirection = 'ascending' | 'descending';
|
|
6714
|
-
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
6757
|
+
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
6715
6758
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
6716
6759
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
6717
6760
|
type ValueAddedService = 'Hazardous Material';
|
|
@@ -7351,7 +7394,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
7351
7394
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
7352
7395
|
type OrderStatus = 'open' | 'submitted';
|
|
7353
7396
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
7354
|
-
type OrderType = 'standard' | 'replacement';
|
|
7397
|
+
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
7355
7398
|
type OrganizationPaymentMethodTag = 'deny';
|
|
7356
7399
|
type PaymentMethodRuleContentKey = 'description';
|
|
7357
7400
|
type PriceFacetBoundary = 'min' | 'max';
|
|
@@ -8333,6 +8376,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
8333
8376
|
interface DutiesTaxesPaidSurchargeServiceFee {
|
|
8334
8377
|
readonly discriminator: 'duties_taxes_paid_surcharge_service_fee';
|
|
8335
8378
|
readonly amount: io.flow.common.v0.models.Money;
|
|
8379
|
+
readonly destination_countries?: string[];
|
|
8336
8380
|
readonly starts_at?: string;
|
|
8337
8381
|
readonly ends_at?: string;
|
|
8338
8382
|
}
|
|
@@ -8565,6 +8609,8 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
8565
8609
|
readonly discriminator: 'ratecard_estimate_v4';
|
|
8566
8610
|
readonly hops: io.flow.ratecard.v0.models.HopV2[];
|
|
8567
8611
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
8612
|
+
readonly distance_unit_of_measurement?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
8613
|
+
readonly weight_unit_of_measurement?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
8568
8614
|
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
8569
8615
|
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
8570
8616
|
readonly ratecard_id?: string;
|
|
@@ -10099,7 +10145,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
10099
10145
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
10100
10146
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
10101
10147
|
type StatementAttachmentType = 'csv';
|
|
10102
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | '
|
|
10148
|
+
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';
|
|
10103
10149
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
10104
10150
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
10105
10151
|
}
|
|
@@ -11905,7 +11951,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11905
11951
|
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
|
|
11906
11952
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
11907
11953
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
11908
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share'
|
|
11954
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share';
|
|
11909
11955
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
11910
11956
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
11911
11957
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -11934,10 +11980,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11934
11980
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
11935
11981
|
type ClassificationErrorCode = 'generic_error';
|
|
11936
11982
|
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
11937
|
-
type ClassificationType = 'None' | 'Manual' | 'ML';
|
|
11983
|
+
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
11938
11984
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
11939
11985
|
type Company = 'globale' | 'flow';
|
|
11940
11986
|
type ComplianceType = 'weee';
|
|
11987
|
+
type ConnectReportTransferType = 'ManagedMarketsRefundDebit' | 'ManagedMarketsDutiesAndTaxesAdjustmentDebit' | 'ManagedMarketsDisputedAmountDebit' | 'ManagedMarketsChargeCredit' | 'ManagedMarketsDisputeWonAmountCredit' | 'ManagedMarketsDutiesAndTaxesAdjustmentCredit';
|
|
11941
11988
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
11942
11989
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
11943
11990
|
type ContentType = 'text' | 'html';
|
|
@@ -11965,10 +12012,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11965
12012
|
type DutyRateUnitOfMeasure = 'kg' | 'sq m' | 'item' | 'pair';
|
|
11966
12013
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
11967
12014
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
11968
|
-
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
12015
|
+
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty' | 'refund';
|
|
11969
12016
|
type EmptyAttribute = 'irrelevant';
|
|
11970
12017
|
type ErpFileType = 'vendor';
|
|
11971
|
-
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'shipping_estimate_upserted' | 'shipping_estimate_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12018
|
+
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';
|
|
11972
12019
|
type ExperienceImportType = 'experience_with_settings';
|
|
11973
12020
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
11974
12021
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -11987,8 +12034,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11987
12034
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
11988
12035
|
type GoogleAnalyticsPlugin = 'ec';
|
|
11989
12036
|
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
11990
|
-
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
12037
|
+
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
11991
12038
|
type HttpMethod = 'get' | 'post';
|
|
12039
|
+
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
11992
12040
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
11993
12041
|
type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
|
|
11994
12042
|
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt';
|
|
@@ -12009,12 +12057,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12009
12057
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
12010
12058
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
12011
12059
|
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';
|
|
12060
|
+
type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands';
|
|
12061
|
+
type MerchantOverrideStatus = 'in_review' | 'accepted' | 'rejected';
|
|
12012
12062
|
type MixedBagWeight = '0' | '1' | '2';
|
|
12013
12063
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
12014
12064
|
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';
|
|
12015
12065
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
12016
12066
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
12017
|
-
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | '
|
|
12067
|
+
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
12018
12068
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
12019
12069
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
12020
12070
|
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';
|
|
@@ -12055,6 +12105,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12055
12105
|
type ReboundConfigurationStatus = 'active' | 'inactive';
|
|
12056
12106
|
type RedirectReason = 'three_d_secure';
|
|
12057
12107
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
12108
|
+
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
12109
|
+
type ReportFileType = 'stripe_connect_report';
|
|
12058
12110
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
12059
12111
|
type ReportPaymentType = 'credit' | 'debit';
|
|
12060
12112
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
@@ -12339,26 +12391,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12339
12391
|
interface AddressConfigurationSettingForm {
|
|
12340
12392
|
readonly province_code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
12341
12393
|
}
|
|
12342
|
-
interface AdjustedEstimates {
|
|
12343
|
-
readonly id: string;
|
|
12344
|
-
readonly organization_id: string;
|
|
12345
|
-
readonly label_id: string;
|
|
12346
|
-
readonly estimates: io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
12347
|
-
}
|
|
12348
|
-
interface AdjustedEstimatesDeleted {
|
|
12349
|
-
readonly discriminator: 'adjusted_estimates_deleted';
|
|
12350
|
-
readonly event_id: string;
|
|
12351
|
-
readonly timestamp: string;
|
|
12352
|
-
readonly organization: string;
|
|
12353
|
-
readonly id: string;
|
|
12354
|
-
}
|
|
12355
|
-
interface AdjustedEstimatesUpserted {
|
|
12356
|
-
readonly discriminator: 'adjusted_estimates_upserted';
|
|
12357
|
-
readonly event_id: string;
|
|
12358
|
-
readonly timestamp: string;
|
|
12359
|
-
readonly organization: string;
|
|
12360
|
-
readonly adjusted_estimates: io.flow.internal.v0.models.AdjustedEstimates;
|
|
12361
|
-
}
|
|
12362
12394
|
interface AdjustmentAmountFixed {
|
|
12363
12395
|
readonly discriminator: 'fixed';
|
|
12364
12396
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -15973,18 +16005,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15973
16005
|
interface FulfillmentBusiness {
|
|
15974
16006
|
readonly vat_registration_number: string;
|
|
15975
16007
|
}
|
|
15976
|
-
interface FulfillmentCancel {
|
|
15977
|
-
readonly discriminator: 'fulfillment_cancel';
|
|
15978
|
-
readonly event_id: string;
|
|
15979
|
-
readonly timestamp: string;
|
|
15980
|
-
readonly organization: string;
|
|
15981
|
-
readonly order_number: string;
|
|
15982
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
15983
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
15984
|
-
readonly change_source: io.flow.order.management.v0.enums.OrderChangeSource;
|
|
15985
|
-
readonly reason: io.flow.order.management.v0.enums.CancelReason;
|
|
15986
|
-
readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
15987
|
-
}
|
|
15988
16008
|
interface FulfillmentCarrier {
|
|
15989
16009
|
readonly id: string;
|
|
15990
16010
|
readonly service_id?: string;
|
|
@@ -16060,13 +16080,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16060
16080
|
interface FulfillmentReference {
|
|
16061
16081
|
readonly id: string;
|
|
16062
16082
|
}
|
|
16063
|
-
interface FulfillmentShipmentTracking {
|
|
16064
|
-
readonly fulfillment_key: string;
|
|
16065
|
-
readonly flow_tracking_number: string;
|
|
16066
|
-
readonly carrier_tracking_number?: string;
|
|
16067
|
-
readonly carrier_tracking_url?: string;
|
|
16068
|
-
readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
|
|
16069
|
-
}
|
|
16070
16083
|
interface FulfillmentShopperBreakdown {
|
|
16071
16084
|
readonly shipping: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
16072
16085
|
readonly fees: io.flow.internal.v0.models.ReportingShopperFees;
|
|
@@ -16711,17 +16724,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16711
16724
|
interface ItemValuesForm {
|
|
16712
16725
|
readonly values: string[];
|
|
16713
16726
|
}
|
|
16714
|
-
interface ItemsShipped {
|
|
16715
|
-
readonly discriminator: 'items_shipped';
|
|
16716
|
-
readonly event_id: string;
|
|
16717
|
-
readonly timestamp: string;
|
|
16718
|
-
readonly organization: string;
|
|
16719
|
-
readonly order_number: string;
|
|
16720
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
16721
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
16722
|
-
readonly flow_tracking_number: string;
|
|
16723
|
-
readonly shipped_item_values: io.flow.internal.v0.models.ShippedItemValue[];
|
|
16724
|
-
}
|
|
16725
16727
|
interface JeanDemoItem {
|
|
16726
16728
|
readonly id: string;
|
|
16727
16729
|
readonly name: string;
|
|
@@ -16778,12 +16780,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16778
16780
|
readonly service_id?: string;
|
|
16779
16781
|
readonly carrier_tracking_number?: string;
|
|
16780
16782
|
readonly flow_tracking_number?: string;
|
|
16783
|
+
readonly label_id?: string;
|
|
16781
16784
|
readonly errors: string[];
|
|
16782
16785
|
}
|
|
16786
|
+
interface LabelCreationJobDeleted {
|
|
16787
|
+
readonly discriminator: 'label_creation_job_deleted';
|
|
16788
|
+
readonly event_id: string;
|
|
16789
|
+
readonly timestamp: string;
|
|
16790
|
+
readonly organization: string;
|
|
16791
|
+
readonly id: string;
|
|
16792
|
+
}
|
|
16783
16793
|
interface LabelCreationJobSummary {
|
|
16784
16794
|
readonly reference_id: string;
|
|
16785
16795
|
readonly status: io.flow.internal.v0.enums.LabelCreationStatus;
|
|
16786
16796
|
}
|
|
16797
|
+
interface LabelCreationJobUpserted {
|
|
16798
|
+
readonly discriminator: 'label_creation_job_upserted';
|
|
16799
|
+
readonly event_id: string;
|
|
16800
|
+
readonly timestamp: string;
|
|
16801
|
+
readonly organization: string;
|
|
16802
|
+
readonly label_creation_job: io.flow.internal.v0.models.LabelCreationJob;
|
|
16803
|
+
}
|
|
16787
16804
|
interface LabelCreationRequestForm {
|
|
16788
16805
|
readonly organization: string;
|
|
16789
16806
|
readonly shipping_label_form: io.flow.label.v0.unions.ShippingLabelForm;
|
|
@@ -16893,6 +16910,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16893
16910
|
readonly destination_country?: string;
|
|
16894
16911
|
readonly reference_id?: string;
|
|
16895
16912
|
readonly logistics_integration_provider?: string;
|
|
16913
|
+
readonly tax_lrp_liabilities?: io.flow.internal.v0.models.Liability[];
|
|
16896
16914
|
}
|
|
16897
16915
|
interface LabelSummary {
|
|
16898
16916
|
readonly id: string;
|
|
@@ -17260,6 +17278,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17260
17278
|
readonly paid_at?: string;
|
|
17261
17279
|
readonly posted_at?: string;
|
|
17262
17280
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17281
|
+
readonly channel_statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17263
17282
|
readonly created_at: string;
|
|
17264
17283
|
readonly original_at?: string;
|
|
17265
17284
|
}
|
|
@@ -17439,6 +17458,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17439
17458
|
readonly center?: string;
|
|
17440
17459
|
readonly currency?: string;
|
|
17441
17460
|
}
|
|
17461
|
+
interface MerchantOverride {
|
|
17462
|
+
readonly id: string;
|
|
17463
|
+
readonly organization_id: string;
|
|
17464
|
+
readonly item_number: string;
|
|
17465
|
+
readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
17466
|
+
readonly hs6_code: string;
|
|
17467
|
+
readonly merchant_hs6_code: string;
|
|
17468
|
+
readonly created_at: string;
|
|
17469
|
+
readonly updated_at: string;
|
|
17470
|
+
readonly updated_by_user_id: string;
|
|
17471
|
+
}
|
|
17472
|
+
interface MerchantOverrideDecisionForm {
|
|
17473
|
+
readonly id: string;
|
|
17474
|
+
readonly status: io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
17475
|
+
}
|
|
17442
17476
|
interface MerchantSearchResult {
|
|
17443
17477
|
readonly organization_id: string;
|
|
17444
17478
|
readonly shop_name?: string;
|
|
@@ -17765,15 +17799,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17765
17799
|
interface OrderPaymentAuthorization {
|
|
17766
17800
|
readonly placeholder: string;
|
|
17767
17801
|
}
|
|
17768
|
-
interface OrderPlaced {
|
|
17769
|
-
readonly discriminator: 'order_placed';
|
|
17770
|
-
readonly event_id: string;
|
|
17771
|
-
readonly timestamp: string;
|
|
17772
|
-
readonly organization: string;
|
|
17773
|
-
readonly order_number: string;
|
|
17774
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
17775
|
-
readonly allocation: io.flow.experience.v0.models.AllocationV2;
|
|
17776
|
-
}
|
|
17777
17802
|
interface OrderRatesDataV3 {
|
|
17778
17803
|
readonly organization: string;
|
|
17779
17804
|
readonly order_id: string;
|
|
@@ -17818,16 +17843,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17818
17843
|
readonly from_service_id: string;
|
|
17819
17844
|
readonly to_service_id: string;
|
|
17820
17845
|
}
|
|
17821
|
-
interface OrderShipped {
|
|
17822
|
-
readonly discriminator: 'order_shipped';
|
|
17823
|
-
readonly event_id: string;
|
|
17824
|
-
readonly timestamp: string;
|
|
17825
|
-
readonly organization: string;
|
|
17826
|
-
readonly order_number: string;
|
|
17827
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
17828
|
-
readonly fulfillments: io.flow.order.management.v0.models.Fulfillment[];
|
|
17829
|
-
readonly shipment_trackings: io.flow.internal.v0.models.FulfillmentShipmentTracking[];
|
|
17830
|
-
}
|
|
17831
17846
|
interface OrderSubmissionForm {
|
|
17832
17847
|
readonly authorization?: io.flow.payment.v0.unions.AuthorizationForm;
|
|
17833
17848
|
}
|
|
@@ -18134,6 +18149,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18134
18149
|
readonly last_order_submitted_at?: string;
|
|
18135
18150
|
readonly matching_positive_keywords: string[];
|
|
18136
18151
|
readonly product_categories: string[];
|
|
18152
|
+
readonly matching_negative_keywords: string[];
|
|
18153
|
+
readonly decisions_user_ids: string[];
|
|
18154
|
+
readonly restriction_rule_ids: string[];
|
|
18137
18155
|
}
|
|
18138
18156
|
interface OrganizationMetadataDeleted {
|
|
18139
18157
|
readonly discriminator: 'organization_metadata_deleted';
|
|
@@ -18485,6 +18503,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18485
18503
|
readonly organization: string;
|
|
18486
18504
|
readonly partner_organization_settings: io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
18487
18505
|
}
|
|
18506
|
+
interface PartnerRequest {
|
|
18507
|
+
readonly id: string;
|
|
18508
|
+
readonly partner_id: string;
|
|
18509
|
+
readonly organization_id: string;
|
|
18510
|
+
readonly method: string;
|
|
18511
|
+
readonly path: string;
|
|
18512
|
+
readonly request_id: string;
|
|
18513
|
+
readonly parameters?: Record<string, string>;
|
|
18514
|
+
readonly request_body?: any;
|
|
18515
|
+
readonly response_body?: any;
|
|
18516
|
+
readonly reference_id?: string;
|
|
18517
|
+
}
|
|
18518
|
+
interface PartnerRequestDeleted {
|
|
18519
|
+
readonly discriminator: 'partner_request_deleted';
|
|
18520
|
+
readonly event_id: string;
|
|
18521
|
+
readonly timestamp: string;
|
|
18522
|
+
readonly id: string;
|
|
18523
|
+
}
|
|
18524
|
+
interface PartnerRequestUpserted {
|
|
18525
|
+
readonly discriminator: 'partner_request_upserted';
|
|
18526
|
+
readonly event_id: string;
|
|
18527
|
+
readonly timestamp: string;
|
|
18528
|
+
readonly partner_request: io.flow.internal.v0.models.PartnerRequest;
|
|
18529
|
+
}
|
|
18488
18530
|
interface PartnerTrackingSubscriptionDeleted {
|
|
18489
18531
|
readonly discriminator: 'partner_tracking_subscription_deleted';
|
|
18490
18532
|
readonly event_id: string;
|
|
@@ -19473,16 +19515,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19473
19515
|
readonly destination: io.flow.reference.v0.models.Country;
|
|
19474
19516
|
readonly summaries: io.flow.internal.v0.models.RateNameSummary[];
|
|
19475
19517
|
}
|
|
19476
|
-
interface ReadyToFulfill {
|
|
19477
|
-
readonly discriminator: 'ready_to_fulfill';
|
|
19478
|
-
readonly event_id: string;
|
|
19479
|
-
readonly timestamp: string;
|
|
19480
|
-
readonly organization: string;
|
|
19481
|
-
readonly order_number: string;
|
|
19482
|
-
readonly order: io.flow.experience.v0.models.Order;
|
|
19483
|
-
readonly fulfillments?: io.flow.order.management.v0.models.Fulfillment[];
|
|
19484
|
-
readonly fulfillment_item_allocation_details?: io.flow.order.management.event.v0.models.FulfillmentItemAllocationDetails[];
|
|
19485
|
-
}
|
|
19486
19518
|
interface ReboundConfiguration {
|
|
19487
19519
|
readonly id: string;
|
|
19488
19520
|
readonly login: string;
|
|
@@ -19549,6 +19581,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19549
19581
|
readonly routing_number: string;
|
|
19550
19582
|
readonly account_number: string;
|
|
19551
19583
|
}
|
|
19584
|
+
interface ReportFile {
|
|
19585
|
+
readonly id: string;
|
|
19586
|
+
readonly processor: string;
|
|
19587
|
+
readonly report_file_type: io.flow.internal.v0.enums.ReportFileType;
|
|
19588
|
+
readonly merchant_of_record_identifier: io.flow.internal.v0.enums.MerchantOfRecord;
|
|
19589
|
+
readonly file_name: string;
|
|
19590
|
+
readonly status: io.flow.internal.v0.enums.ReportFileStatus;
|
|
19591
|
+
readonly failure_reason?: string;
|
|
19592
|
+
}
|
|
19552
19593
|
interface ReportFilter {
|
|
19553
19594
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
19554
19595
|
}
|
|
@@ -19580,6 +19621,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19580
19621
|
readonly amount: number;
|
|
19581
19622
|
readonly created_at: string;
|
|
19582
19623
|
}
|
|
19624
|
+
interface ReportRecordError {
|
|
19625
|
+
readonly id: string;
|
|
19626
|
+
readonly file_id: string;
|
|
19627
|
+
readonly line_number: number;
|
|
19628
|
+
readonly failure_reason: string;
|
|
19629
|
+
}
|
|
19630
|
+
interface ReportRecordRetryQueue {
|
|
19631
|
+
readonly id: string;
|
|
19632
|
+
readonly report_file_type: io.flow.internal.v0.enums.ReportFileType;
|
|
19633
|
+
readonly type: io.flow.internal.v0.enums.InternalPaymentEntityType;
|
|
19634
|
+
readonly report_record_id: string;
|
|
19635
|
+
readonly dependent_source_id: string;
|
|
19636
|
+
}
|
|
19583
19637
|
interface ReportRuleDecision {
|
|
19584
19638
|
readonly rule_id: string;
|
|
19585
19639
|
readonly rule_name: string;
|
|
@@ -19813,8 +19867,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19813
19867
|
readonly organization_id: string;
|
|
19814
19868
|
readonly restriction_product_id: string;
|
|
19815
19869
|
readonly product_id: string;
|
|
19870
|
+
readonly item_numbers: string[];
|
|
19871
|
+
readonly primary_item_number?: string;
|
|
19816
19872
|
readonly name: string;
|
|
19817
19873
|
readonly price: io.flow.common.v0.models.Price;
|
|
19874
|
+
readonly hs_code?: string;
|
|
19818
19875
|
readonly description: string;
|
|
19819
19876
|
readonly categories: string[];
|
|
19820
19877
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
@@ -19831,6 +19888,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19831
19888
|
readonly user_ids?: string[];
|
|
19832
19889
|
readonly categories?: string[];
|
|
19833
19890
|
readonly product_name_query?: string;
|
|
19891
|
+
readonly hs6?: string;
|
|
19834
19892
|
readonly positive_keywords?: string[];
|
|
19835
19893
|
readonly negative_keywords?: string[];
|
|
19836
19894
|
readonly product_id?: string;
|
|
@@ -19945,6 +20003,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19945
20003
|
readonly user_ids?: string[];
|
|
19946
20004
|
readonly categories?: string[];
|
|
19947
20005
|
readonly product_name_query?: string;
|
|
20006
|
+
readonly hs6?: string;
|
|
19948
20007
|
readonly product_id?: string;
|
|
19949
20008
|
}
|
|
19950
20009
|
interface RestrictionProductSummary {
|
|
@@ -20050,7 +20109,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20050
20109
|
readonly num_products_transacting_prs: number;
|
|
20051
20110
|
readonly oldest_pr_product_date_setup_complete: string;
|
|
20052
20111
|
readonly oldest_pr_date_transacting: string;
|
|
20053
|
-
readonly percent_products_reviewed_transacting
|
|
20112
|
+
readonly percent_products_reviewed_transacting?: number;
|
|
20054
20113
|
readonly num_pv_inflow_net_new: number;
|
|
20055
20114
|
readonly num_pv_outflow_human_decisions: number;
|
|
20056
20115
|
readonly num_pv_outflow_auto_review_decisions: number;
|
|
@@ -20060,6 +20119,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20060
20119
|
readonly num_pr_outflow_auto_review_decisions: number;
|
|
20061
20120
|
readonly num_pr_outflow_side_effect_decisions: number;
|
|
20062
20121
|
readonly num_pending_decisions_transacting: number;
|
|
20122
|
+
readonly oldest_insufficient_details_pv_onboarding?: string;
|
|
20123
|
+
readonly oldest_insufficient_details_pv_active?: string;
|
|
20124
|
+
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
20063
20125
|
}
|
|
20064
20126
|
interface RestrictionsDailyopsDeleted {
|
|
20065
20127
|
readonly discriminator: 'restrictions_dailyops_deleted';
|
|
@@ -20314,26 +20376,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20314
20376
|
readonly product_code: string;
|
|
20315
20377
|
readonly customer_id: string;
|
|
20316
20378
|
}
|
|
20317
|
-
interface ShippedItemValue {
|
|
20318
|
-
readonly item: io.flow.common.v0.models.CatalogItemReference;
|
|
20319
|
-
readonly taxes: io.flow.common.v0.models.PriceWithBase;
|
|
20320
|
-
readonly duties: io.flow.common.v0.models.PriceWithBase;
|
|
20321
|
-
readonly total: io.flow.common.v0.models.PriceWithBase;
|
|
20322
|
-
}
|
|
20323
|
-
interface ShippingEstimateDeleted {
|
|
20324
|
-
readonly discriminator: 'shipping_estimate_deleted';
|
|
20325
|
-
readonly event_id: string;
|
|
20326
|
-
readonly timestamp: string;
|
|
20327
|
-
readonly organization: string;
|
|
20328
|
-
readonly id: string;
|
|
20329
|
-
}
|
|
20330
|
-
interface ShippingEstimateUpserted {
|
|
20331
|
-
readonly discriminator: 'shipping_estimate_upserted';
|
|
20332
|
-
readonly event_id: string;
|
|
20333
|
-
readonly timestamp: string;
|
|
20334
|
-
readonly organization: string;
|
|
20335
|
-
readonly estimate: io.flow.label.v0.models.Estimate;
|
|
20336
|
-
}
|
|
20337
20379
|
interface ShippingLane {
|
|
20338
20380
|
readonly origin: string;
|
|
20339
20381
|
readonly destination: string;
|
|
@@ -20372,6 +20414,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20372
20414
|
interface ShopifyCodeForm {
|
|
20373
20415
|
readonly code: string;
|
|
20374
20416
|
}
|
|
20417
|
+
interface ShopifyDispute {
|
|
20418
|
+
readonly id: string;
|
|
20419
|
+
readonly organization_id: string;
|
|
20420
|
+
readonly authorization_id: string;
|
|
20421
|
+
readonly amount: number;
|
|
20422
|
+
readonly currency: string;
|
|
20423
|
+
readonly status: string;
|
|
20424
|
+
readonly category: string;
|
|
20425
|
+
readonly attributes?: Record<string, string>;
|
|
20426
|
+
readonly external_reference_id: string;
|
|
20427
|
+
readonly issued_at: string;
|
|
20428
|
+
readonly updated_at: string;
|
|
20429
|
+
}
|
|
20430
|
+
interface ShopifyDisputeDeleted {
|
|
20431
|
+
readonly discriminator: 'shopify_dispute_deleted';
|
|
20432
|
+
readonly event_id: string;
|
|
20433
|
+
readonly timestamp: string;
|
|
20434
|
+
readonly organization: string;
|
|
20435
|
+
readonly id: string;
|
|
20436
|
+
}
|
|
20437
|
+
interface ShopifyDisputeUpserted {
|
|
20438
|
+
readonly discriminator: 'shopify_dispute_upserted';
|
|
20439
|
+
readonly event_id: string;
|
|
20440
|
+
readonly timestamp: string;
|
|
20441
|
+
readonly organization: string;
|
|
20442
|
+
readonly dispute: io.flow.internal.v0.models.ShopifyDispute;
|
|
20443
|
+
}
|
|
20375
20444
|
interface ShopifyExperienceShortId {
|
|
20376
20445
|
readonly id: string;
|
|
20377
20446
|
readonly experience: io.flow.experience.v0.models.ExperienceReference;
|
|
@@ -20684,6 +20753,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20684
20753
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
20685
20754
|
readonly plan: io.flow.internal.v0.enums.ShopifyPlanType;
|
|
20686
20755
|
}
|
|
20756
|
+
interface ShopifyMerchantPlanDeleted {
|
|
20757
|
+
readonly discriminator: 'shopify_merchant_plan_deleted';
|
|
20758
|
+
readonly event_id: string;
|
|
20759
|
+
readonly timestamp: string;
|
|
20760
|
+
readonly id: string;
|
|
20761
|
+
}
|
|
20762
|
+
interface ShopifyMerchantPlanUpserted {
|
|
20763
|
+
readonly discriminator: 'shopify_merchant_plan_upserted';
|
|
20764
|
+
readonly event_id: string;
|
|
20765
|
+
readonly timestamp: string;
|
|
20766
|
+
readonly shopify_merchant_plan: io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
20767
|
+
}
|
|
20687
20768
|
interface ShopifyMetadata {
|
|
20688
20769
|
readonly domain: string;
|
|
20689
20770
|
readonly myshopify_domain: string;
|
|
@@ -21316,6 +21397,59 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21316
21397
|
readonly timestamp: string;
|
|
21317
21398
|
readonly capture: io.flow.internal.v0.models.StripeInternalCapture;
|
|
21318
21399
|
}
|
|
21400
|
+
interface StripeConnectReportRecord {
|
|
21401
|
+
readonly id: string;
|
|
21402
|
+
readonly file_id: string;
|
|
21403
|
+
readonly line_number: number;
|
|
21404
|
+
readonly created_utc: string;
|
|
21405
|
+
readonly charge_id?: string;
|
|
21406
|
+
readonly payment_intent_id?: string;
|
|
21407
|
+
readonly gross: number;
|
|
21408
|
+
readonly fee: number;
|
|
21409
|
+
readonly net: number;
|
|
21410
|
+
readonly currency: string;
|
|
21411
|
+
readonly connected_account: string;
|
|
21412
|
+
readonly reporting_category: io.flow.stripe.v0.unions.ConnectReportReportingCategory;
|
|
21413
|
+
readonly dispute_reason?: string;
|
|
21414
|
+
readonly available_on_utc: string;
|
|
21415
|
+
readonly automatic_payout_effective_at_utc?: string;
|
|
21416
|
+
readonly source_id?: string;
|
|
21417
|
+
readonly customer_facing_amount?: number;
|
|
21418
|
+
readonly customer_facing_currency?: string;
|
|
21419
|
+
readonly payment_method_type?: string;
|
|
21420
|
+
readonly card_brand?: string;
|
|
21421
|
+
readonly statement_descriptor?: string;
|
|
21422
|
+
readonly payment_metadata?: io.flow.internal.v0.models.StripeConnectReportRecordPaymentMetadata;
|
|
21423
|
+
readonly transfer_metadata?: any;
|
|
21424
|
+
}
|
|
21425
|
+
interface StripeConnectReportRecordDeleted {
|
|
21426
|
+
readonly discriminator: 'stripe_connect_report_record_deleted';
|
|
21427
|
+
readonly event_id: string;
|
|
21428
|
+
readonly timestamp: string;
|
|
21429
|
+
readonly id: string;
|
|
21430
|
+
}
|
|
21431
|
+
interface StripeConnectReportRecordPaymentMetadata {
|
|
21432
|
+
readonly shop_id?: number;
|
|
21433
|
+
readonly shop_plan?: io.flow.internal.v0.enums.ShopifyPlanType;
|
|
21434
|
+
readonly checkout_id?: string;
|
|
21435
|
+
readonly order_id?: number;
|
|
21436
|
+
readonly order_transaction_id?: number;
|
|
21437
|
+
readonly transfer_type?: io.flow.internal.v0.enums.ConnectReportTransferType;
|
|
21438
|
+
readonly transfer_exchange_rate?: number;
|
|
21439
|
+
readonly charge_total?: number;
|
|
21440
|
+
readonly charge_currency?: string;
|
|
21441
|
+
readonly charge_exchange_rate?: number;
|
|
21442
|
+
readonly duties?: number;
|
|
21443
|
+
readonly import_taxes?: number;
|
|
21444
|
+
readonly mor_fee?: number;
|
|
21445
|
+
readonly fx_fee?: number;
|
|
21446
|
+
}
|
|
21447
|
+
interface StripeConnectReportRecordUpserted {
|
|
21448
|
+
readonly discriminator: 'stripe_connect_report_record_upserted';
|
|
21449
|
+
readonly event_id: string;
|
|
21450
|
+
readonly timestamp: string;
|
|
21451
|
+
readonly record: io.flow.internal.v0.models.StripeConnectReportRecord;
|
|
21452
|
+
}
|
|
21319
21453
|
interface StripeDisputeDeleted {
|
|
21320
21454
|
readonly discriminator: 'stripe_dispute_deleted';
|
|
21321
21455
|
readonly event_id: string;
|
|
@@ -21584,35 +21718,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21584
21718
|
readonly description?: string;
|
|
21585
21719
|
readonly category_code?: string;
|
|
21586
21720
|
}
|
|
21587
|
-
interface TaxDutyDeltaMetadataActual {
|
|
21588
|
-
readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
21589
|
-
}
|
|
21590
|
-
interface TaxDutyDeltaMetadataActualProcessing {
|
|
21591
|
-
readonly capture: io.flow.common.v0.models.Money;
|
|
21592
|
-
readonly fees: io.flow.common.v0.models.Money;
|
|
21593
|
-
readonly transfer: io.flow.common.v0.models.Money;
|
|
21594
|
-
readonly total: io.flow.common.v0.models.Money;
|
|
21595
|
-
}
|
|
21596
|
-
interface TaxDutyDeltaMetadataExpected {
|
|
21597
|
-
readonly processing: io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
21598
|
-
}
|
|
21599
|
-
interface TaxDutyDeltaMetadataExpectedProcessing {
|
|
21600
|
-
readonly tax: io.flow.common.v0.models.Money;
|
|
21601
|
-
readonly duty: io.flow.common.v0.models.Money;
|
|
21602
|
-
readonly total: io.flow.common.v0.models.Money;
|
|
21603
|
-
}
|
|
21604
|
-
interface TaxDutyDeltaTransaction {
|
|
21605
|
-
readonly discriminator: 'tax_duty_delta_transaction';
|
|
21606
|
-
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
21607
|
-
readonly id: string;
|
|
21608
|
-
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
21609
|
-
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
21610
|
-
readonly posted_at?: string;
|
|
21611
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
21612
|
-
readonly description: string;
|
|
21613
|
-
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
21614
|
-
readonly created_at: string;
|
|
21615
|
-
}
|
|
21616
21721
|
interface TaxRemittanceTransaction {
|
|
21617
21722
|
readonly discriminator: 'tax_remittance_transaction';
|
|
21618
21723
|
readonly order: io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -22259,7 +22364,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22259
22364
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22260
22365
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22261
22366
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22262
|
-
type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.ShippingEstimateUpserted | io.flow.internal.v0.models.ShippingEstimateDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22367
|
+
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;
|
|
22263
22368
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22264
22369
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22265
22370
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22310,7 +22415,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22310
22415
|
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
22311
22416
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
22312
22417
|
type Tracker = io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel;
|
|
22313
|
-
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction
|
|
22418
|
+
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.NonL4LTaxDutyFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
22314
22419
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
22315
22420
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
22316
22421
|
}
|
|
@@ -22353,9 +22458,6 @@ export declare type AddressConfigurationProvinceSetting = io.flow.internal.v0.mo
|
|
|
22353
22458
|
export declare type AddressConfigurationSetting = io.flow.internal.v0.models.AddressConfigurationSetting;
|
|
22354
22459
|
export declare type AddressConfigurationSettingForm = io.flow.internal.v0.models.AddressConfigurationSettingForm;
|
|
22355
22460
|
export declare type AddressConfigurationSettingProvinceCode = io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
22356
|
-
export declare type AdjustedEstimates = io.flow.internal.v0.models.AdjustedEstimates;
|
|
22357
|
-
export declare type AdjustedEstimatesDeleted = io.flow.internal.v0.models.AdjustedEstimatesDeleted;
|
|
22358
|
-
export declare type AdjustedEstimatesUpserted = io.flow.internal.v0.models.AdjustedEstimatesUpserted;
|
|
22359
22461
|
export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
22360
22462
|
export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
22361
22463
|
export declare type AdjustmentAmountPercentage = io.flow.internal.v0.models.AdjustmentAmountPercentage;
|
|
@@ -22717,6 +22819,7 @@ export declare type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
|
22717
22819
|
export declare type ComplianceForm = io.flow.internal.v0.unions.ComplianceForm;
|
|
22718
22820
|
export declare type ComplianceType = io.flow.internal.v0.enums.ComplianceType;
|
|
22719
22821
|
export declare type Components = io.flow.internal.v0.models.Components;
|
|
22822
|
+
export declare type ConnectReportTransferType = io.flow.internal.v0.enums.ConnectReportTransferType;
|
|
22720
22823
|
export declare type ConsoleLabelRequestForm = io.flow.internal.v0.models.ConsoleLabelRequestForm;
|
|
22721
22824
|
export declare type ConsoleLabelValidationForm = io.flow.internal.v0.unions.ConsoleLabelValidationForm;
|
|
22722
22825
|
export declare type ConsoleMarkUnresolvableForm = io.flow.internal.v0.models.ConsoleMarkUnresolvableForm;
|
|
@@ -23015,7 +23118,6 @@ export declare type FuelSurchargeServiceFeePutForm = io.flow.internal.v0.unions.
|
|
|
23015
23118
|
export declare type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
23016
23119
|
export declare type FulfillmentActionForm = io.flow.internal.v0.models.FulfillmentActionForm;
|
|
23017
23120
|
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
23018
|
-
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
23019
23121
|
export declare type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
23020
23122
|
export declare type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
23021
23123
|
export declare type FulfillmentFallbacks = io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
@@ -23028,7 +23130,6 @@ export declare type FulfillmentProofLabelTrackingReference = io.flow.internal.v0
|
|
|
23028
23130
|
export declare type FulfillmentProofOrderCombinedShipmentReference = io.flow.internal.v0.models.FulfillmentProofOrderCombinedShipmentReference;
|
|
23029
23131
|
export declare type FulfillmentProofShippingNotificationReference = io.flow.internal.v0.models.FulfillmentProofShippingNotificationReference;
|
|
23030
23132
|
export declare type FulfillmentReference = io.flow.internal.v0.models.FulfillmentReference;
|
|
23031
|
-
export declare type FulfillmentShipmentTracking = io.flow.internal.v0.models.FulfillmentShipmentTracking;
|
|
23032
23133
|
export declare type FulfillmentShopperBreakdown = io.flow.internal.v0.models.FulfillmentShopperBreakdown;
|
|
23033
23134
|
export declare type FulfillmentSnapshot = io.flow.internal.v0.models.FulfillmentSnapshot;
|
|
23034
23135
|
export declare type FulfillmentSubsidyBreakdown = io.flow.internal.v0.models.FulfillmentSubsidyBreakdown;
|
|
@@ -23101,6 +23202,7 @@ export declare type InternalFiservAuthorizationDetails = io.flow.internal.v0.mod
|
|
|
23101
23202
|
export declare type InternalHarmonizationStatistic = io.flow.internal.v0.unions.InternalHarmonizationStatistic;
|
|
23102
23203
|
export declare type InternalItemForm = io.flow.internal.v0.models.InternalItemForm;
|
|
23103
23204
|
export declare type InternalOrder = io.flow.internal.v0.models.InternalOrder;
|
|
23205
|
+
export declare type InternalPaymentEntityType = io.flow.internal.v0.enums.InternalPaymentEntityType;
|
|
23104
23206
|
export declare type InternalPaymentRequest = io.flow.internal.v0.models.InternalPaymentRequest;
|
|
23105
23207
|
export declare type InternalPaymentRequestVerification = io.flow.internal.v0.models.InternalPaymentRequestVerification;
|
|
23106
23208
|
export declare type InternalPaypalAuthorizationDetails = io.flow.internal.v0.models.InternalPaypalAuthorizationDetails;
|
|
@@ -23149,7 +23251,6 @@ export declare type ItemSalesMarginVersion = io.flow.internal.v0.models.ItemSale
|
|
|
23149
23251
|
export declare type ItemSummary = io.flow.internal.v0.models.ItemSummary;
|
|
23150
23252
|
export declare type ItemType = io.flow.internal.v0.enums.ItemType;
|
|
23151
23253
|
export declare type ItemValuesForm = io.flow.internal.v0.models.ItemValuesForm;
|
|
23152
|
-
export declare type ItemsShipped = io.flow.internal.v0.models.ItemsShipped;
|
|
23153
23254
|
export declare type JeanDemoItem = io.flow.internal.v0.models.JeanDemoItem;
|
|
23154
23255
|
export declare type Key = io.flow.internal.v0.models.Key;
|
|
23155
23256
|
export declare type KeyReference = io.flow.internal.v0.models.KeyReference;
|
|
@@ -23165,7 +23266,9 @@ export declare type LabelBillingStrategy = io.flow.internal.v0.enums.LabelBillin
|
|
|
23165
23266
|
export declare type LabelCancellationError = io.flow.internal.v0.models.LabelCancellationError;
|
|
23166
23267
|
export declare type LabelCancellationErrorCode = io.flow.internal.v0.enums.LabelCancellationErrorCode;
|
|
23167
23268
|
export declare type LabelCreationJob = io.flow.internal.v0.models.LabelCreationJob;
|
|
23269
|
+
export declare type LabelCreationJobDeleted = io.flow.internal.v0.models.LabelCreationJobDeleted;
|
|
23168
23270
|
export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCreationJobSummary;
|
|
23271
|
+
export declare type LabelCreationJobUpserted = io.flow.internal.v0.models.LabelCreationJobUpserted;
|
|
23169
23272
|
export declare type LabelCreationRequestForm = io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
23170
23273
|
export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
23171
23274
|
export declare type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
@@ -23271,8 +23374,12 @@ export declare type MerchantGuidAssignmentDeleted = io.flow.internal.v0.models.M
|
|
|
23271
23374
|
export declare type MerchantGuidAssignmentUpserted = io.flow.internal.v0.models.MerchantGuidAssignmentUpserted;
|
|
23272
23375
|
export declare type MerchantHubOverride = io.flow.internal.v0.models.MerchantHubOverride;
|
|
23273
23376
|
export declare type MerchantHubOverrideForm = io.flow.internal.v0.models.MerchantHubOverrideForm;
|
|
23377
|
+
export declare type MerchantOfRecord = io.flow.internal.v0.enums.MerchantOfRecord;
|
|
23274
23378
|
export declare type MerchantOfRecordEntitySettings = io.flow.internal.v0.models.MerchantOfRecordEntitySettings;
|
|
23275
23379
|
export declare type MerchantOfRecordEntitySettingsForm = io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm;
|
|
23380
|
+
export declare type MerchantOverride = io.flow.internal.v0.models.MerchantOverride;
|
|
23381
|
+
export declare type MerchantOverrideDecisionForm = io.flow.internal.v0.models.MerchantOverrideDecisionForm;
|
|
23382
|
+
export declare type MerchantOverrideStatus = io.flow.internal.v0.enums.MerchantOverrideStatus;
|
|
23276
23383
|
export declare type MerchantSearchResult = io.flow.internal.v0.models.MerchantSearchResult;
|
|
23277
23384
|
export declare type MerchantSubsidies = io.flow.internal.v0.models.MerchantSubsidies;
|
|
23278
23385
|
export declare type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
@@ -23343,7 +23450,6 @@ export declare type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecyc
|
|
|
23343
23450
|
export declare type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
23344
23451
|
export declare type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
23345
23452
|
export declare type OrderPaymentAuthorization = io.flow.internal.v0.models.OrderPaymentAuthorization;
|
|
23346
|
-
export declare type OrderPlaced = io.flow.internal.v0.models.OrderPlaced;
|
|
23347
23453
|
export declare type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
23348
23454
|
export declare type OrderRatesPublishedV3 = io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
23349
23455
|
export declare type OrderReference = io.flow.internal.v0.models.OrderReference;
|
|
@@ -23352,7 +23458,6 @@ export declare type OrderRevenueRegionDataPoint = io.flow.internal.v0.models.Ord
|
|
|
23352
23458
|
export declare type OrderRevenueTimelineChart = io.flow.internal.v0.models.OrderRevenueTimelineChart;
|
|
23353
23459
|
export declare type OrderRevenueTimelineDataPoint = io.flow.internal.v0.models.OrderRevenueTimelineDataPoint;
|
|
23354
23460
|
export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
23355
|
-
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
23356
23461
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
23357
23462
|
export declare type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
23358
23463
|
export declare type OrderTaxAndDutyInclusivitySetting = io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
@@ -23464,6 +23569,9 @@ export declare type PartnerOrganizationSettings = io.flow.internal.v0.models.Par
|
|
|
23464
23569
|
export declare type PartnerOrganizationSettingsDeleted = io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted;
|
|
23465
23570
|
export declare type PartnerOrganizationSettingsForm = io.flow.internal.v0.models.PartnerOrganizationSettingsForm;
|
|
23466
23571
|
export declare type PartnerOrganizationSettingsUpserted = io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted;
|
|
23572
|
+
export declare type PartnerRequest = io.flow.internal.v0.models.PartnerRequest;
|
|
23573
|
+
export declare type PartnerRequestDeleted = io.flow.internal.v0.models.PartnerRequestDeleted;
|
|
23574
|
+
export declare type PartnerRequestUpserted = io.flow.internal.v0.models.PartnerRequestUpserted;
|
|
23467
23575
|
export declare type PartnerTrackingSubscriptionDeleted = io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted;
|
|
23468
23576
|
export declare type PartnerTrackingSubscriptionUpserted = io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted;
|
|
23469
23577
|
export declare type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
@@ -23634,7 +23742,6 @@ export declare type RatecardStandardConfigurationUpserted = io.flow.internal.v0.
|
|
|
23634
23742
|
export declare type RatecardStandardSettings = io.flow.internal.v0.models.RatecardStandardSettings;
|
|
23635
23743
|
export declare type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
23636
23744
|
export declare type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
23637
|
-
export declare type ReadyToFulfill = io.flow.internal.v0.models.ReadyToFulfill;
|
|
23638
23745
|
export declare type ReboundConfiguration = io.flow.internal.v0.models.ReboundConfiguration;
|
|
23639
23746
|
export declare type ReboundConfigurationForm = io.flow.internal.v0.models.ReboundConfigurationForm;
|
|
23640
23747
|
export declare type ReboundConfigurationStatus = io.flow.internal.v0.enums.ReboundConfigurationStatus;
|
|
@@ -23650,6 +23757,9 @@ export declare type Report = io.flow.internal.v0.models.Report;
|
|
|
23650
23757
|
export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
23651
23758
|
export declare type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
23652
23759
|
export declare type ReportBankAccountCleartext = io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
23760
|
+
export declare type ReportFile = io.flow.internal.v0.models.ReportFile;
|
|
23761
|
+
export declare type ReportFileStatus = io.flow.internal.v0.enums.ReportFileStatus;
|
|
23762
|
+
export declare type ReportFileType = io.flow.internal.v0.enums.ReportFileType;
|
|
23653
23763
|
export declare type ReportFilter = io.flow.internal.v0.models.ReportFilter;
|
|
23654
23764
|
export declare type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
23655
23765
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
@@ -23659,6 +23769,8 @@ export declare type ReportOrganizationReference = io.flow.internal.v0.models.Rep
|
|
|
23659
23769
|
export declare type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
23660
23770
|
export declare type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
23661
23771
|
export declare type ReportPaymentType = io.flow.internal.v0.enums.ReportPaymentType;
|
|
23772
|
+
export declare type ReportRecordError = io.flow.internal.v0.models.ReportRecordError;
|
|
23773
|
+
export declare type ReportRecordRetryQueue = io.flow.internal.v0.models.ReportRecordRetryQueue;
|
|
23662
23774
|
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
23663
23775
|
export declare type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
23664
23776
|
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
@@ -23785,9 +23897,6 @@ export declare type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
|
23785
23897
|
export declare type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
23786
23898
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
23787
23899
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
23788
|
-
export declare type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
23789
|
-
export declare type ShippingEstimateDeleted = io.flow.internal.v0.models.ShippingEstimateDeleted;
|
|
23790
|
-
export declare type ShippingEstimateUpserted = io.flow.internal.v0.models.ShippingEstimateUpserted;
|
|
23791
23900
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
23792
23901
|
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
23793
23902
|
export declare type Shop = io.flow.internal.v0.models.Shop;
|
|
@@ -23798,6 +23907,9 @@ export declare type ShopifyChannelOrganizationTokens = io.flow.internal.v0.model
|
|
|
23798
23907
|
export declare type ShopifyCheckInventoryError = io.flow.internal.v0.models.ShopifyCheckInventoryError;
|
|
23799
23908
|
export declare type ShopifyCheckInventoryErrorCode = io.flow.internal.v0.enums.ShopifyCheckInventoryErrorCode;
|
|
23800
23909
|
export declare type ShopifyCodeForm = io.flow.internal.v0.models.ShopifyCodeForm;
|
|
23910
|
+
export declare type ShopifyDispute = io.flow.internal.v0.models.ShopifyDispute;
|
|
23911
|
+
export declare type ShopifyDisputeDeleted = io.flow.internal.v0.models.ShopifyDisputeDeleted;
|
|
23912
|
+
export declare type ShopifyDisputeUpserted = io.flow.internal.v0.models.ShopifyDisputeUpserted;
|
|
23801
23913
|
export declare type ShopifyExperienceShortId = io.flow.internal.v0.models.ShopifyExperienceShortId;
|
|
23802
23914
|
export declare type ShopifyExperienceShortIdDeleted = io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted;
|
|
23803
23915
|
export declare type ShopifyExperienceShortIdUpserted = io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted;
|
|
@@ -23856,6 +23968,8 @@ export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.mode
|
|
|
23856
23968
|
export declare type ShopifyMarketsWebhookRegistrationDeleted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted;
|
|
23857
23969
|
export declare type ShopifyMarketsWebhookRegistrationUpserted = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
23858
23970
|
export declare type ShopifyMerchantPlan = io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
23971
|
+
export declare type ShopifyMerchantPlanDeleted = io.flow.internal.v0.models.ShopifyMerchantPlanDeleted;
|
|
23972
|
+
export declare type ShopifyMerchantPlanUpserted = io.flow.internal.v0.models.ShopifyMerchantPlanUpserted;
|
|
23859
23973
|
export declare type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
23860
23974
|
export declare type ShopifyMonitoringCarrierService = io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
23861
23975
|
export declare type ShopifyMonitoringFulfillmentExternal = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal;
|
|
@@ -23987,6 +24101,10 @@ export declare type StripeAuthorizationDeleted = io.flow.internal.v0.models.Stri
|
|
|
23987
24101
|
export declare type StripeAuthorizationUpserted = io.flow.internal.v0.models.StripeAuthorizationUpserted;
|
|
23988
24102
|
export declare type StripeCaptureDeleted = io.flow.internal.v0.models.StripeCaptureDeleted;
|
|
23989
24103
|
export declare type StripeCaptureUpserted = io.flow.internal.v0.models.StripeCaptureUpserted;
|
|
24104
|
+
export declare type StripeConnectReportRecord = io.flow.internal.v0.models.StripeConnectReportRecord;
|
|
24105
|
+
export declare type StripeConnectReportRecordDeleted = io.flow.internal.v0.models.StripeConnectReportRecordDeleted;
|
|
24106
|
+
export declare type StripeConnectReportRecordPaymentMetadata = io.flow.internal.v0.models.StripeConnectReportRecordPaymentMetadata;
|
|
24107
|
+
export declare type StripeConnectReportRecordUpserted = io.flow.internal.v0.models.StripeConnectReportRecordUpserted;
|
|
23990
24108
|
export declare type StripeDisputeDeleted = io.flow.internal.v0.models.StripeDisputeDeleted;
|
|
23991
24109
|
export declare type StripeDisputeUpserted = io.flow.internal.v0.models.StripeDisputeUpserted;
|
|
23992
24110
|
export declare type StripeInternalAuthorization = io.flow.internal.v0.models.StripeInternalAuthorization;
|
|
@@ -24031,11 +24149,6 @@ export declare type TaxCalculationErrorCode = io.flow.internal.v0.enums.TaxCalcu
|
|
|
24031
24149
|
export declare type TaxCalculationForm = io.flow.internal.v0.models.TaxCalculationForm;
|
|
24032
24150
|
export declare type TaxCalculationLineItem = io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
24033
24151
|
export declare type TaxCalculationLineItemForm = io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
24034
|
-
export declare type TaxDutyDeltaMetadataActual = io.flow.internal.v0.models.TaxDutyDeltaMetadataActual;
|
|
24035
|
-
export declare type TaxDutyDeltaMetadataActualProcessing = io.flow.internal.v0.models.TaxDutyDeltaMetadataActualProcessing;
|
|
24036
|
-
export declare type TaxDutyDeltaMetadataExpected = io.flow.internal.v0.models.TaxDutyDeltaMetadataExpected;
|
|
24037
|
-
export declare type TaxDutyDeltaMetadataExpectedProcessing = io.flow.internal.v0.models.TaxDutyDeltaMetadataExpectedProcessing;
|
|
24038
|
-
export declare type TaxDutyDeltaTransaction = io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
24039
24152
|
export declare type TaxParty = io.flow.internal.v0.enums.TaxParty;
|
|
24040
24153
|
export declare type TaxRemittanceTransaction = io.flow.internal.v0.models.TaxRemittanceTransaction;
|
|
24041
24154
|
export declare type TaxRemittanceTransactionDeleted = io.flow.internal.v0.models.TaxRemittanceTransactionDeleted;
|