@flowio/types 11.24.69 → 11.24.71
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 +228 -192
- package/dist/api.d.ts +156 -15
- package/package.json +2 -2
- package/src/api-internal.ts +294 -226
- package/src/api.ts +206 -15
package/dist/api-internal.d.ts
CHANGED
|
@@ -1739,7 +1739,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
1739
1739
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
1740
1740
|
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_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';
|
|
1741
1741
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
1742
|
-
type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.
|
|
1742
|
+
type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
|
|
1743
1743
|
type KlarnaPaymentMethodCategoryType = 'direct_bank_transfer' | 'direct_debit' | 'pay_later' | 'pay_now' | 'pay_over_time';
|
|
1744
1744
|
type KlarnaProduct = 'payment';
|
|
1745
1745
|
type NetworkStatus = 'approved_by_network' | 'declined_by_network' | 'not_sent_to_network' | 'reversed_after_approval';
|
|
@@ -1761,6 +1761,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
1761
1761
|
type SourceStatus = 'canceled' | 'chargeable' | 'consumed' | 'failed' | 'pending';
|
|
1762
1762
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
1763
1763
|
type SourceUsageType = 'reusable' | 'single_use';
|
|
1764
|
+
type StoredCredentialTransactionType = 'setup_on_session' | 'setup_off_session_recurring' | 'setup_off_session_unscheduled' | 'stored_on_session' | 'stored_on_session_recurring' | 'stored_on_session_unscheduled';
|
|
1764
1765
|
type ThreeDSecureSupport = 'required' | 'recommended' | 'optional' | 'not_supported';
|
|
1765
1766
|
type ThreeDsAuthenticationFlow = 'challenge' | 'frictionless';
|
|
1766
1767
|
type ThreeDsResult = 'authenticated' | 'attempt_acknowledged' | 'exempted' | 'not_supported' | 'failed' | 'processing_error';
|
|
@@ -1847,6 +1848,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1847
1848
|
readonly address_postal_code_check?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
1848
1849
|
readonly cvc_check?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
1849
1850
|
}
|
|
1851
|
+
interface CardNetworks {
|
|
1852
|
+
readonly available?: string[];
|
|
1853
|
+
readonly preferred?: string;
|
|
1854
|
+
}
|
|
1850
1855
|
interface CardRequest {
|
|
1851
1856
|
readonly object: string;
|
|
1852
1857
|
readonly exp_month: string;
|
|
@@ -1866,6 +1871,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1866
1871
|
readonly id: string;
|
|
1867
1872
|
readonly amount: number;
|
|
1868
1873
|
readonly amount_refunded: number;
|
|
1874
|
+
readonly authorization_code?: string;
|
|
1869
1875
|
readonly captured: boolean;
|
|
1870
1876
|
readonly created: number;
|
|
1871
1877
|
readonly currency: string;
|
|
@@ -1913,6 +1919,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1913
1919
|
readonly id: string;
|
|
1914
1920
|
readonly amount: number;
|
|
1915
1921
|
readonly amount_refunded: number;
|
|
1922
|
+
readonly authorization_code?: string;
|
|
1916
1923
|
readonly captured: boolean;
|
|
1917
1924
|
readonly created: number;
|
|
1918
1925
|
readonly currency: string;
|
|
@@ -1998,6 +2005,8 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1998
2005
|
readonly order_number?: string;
|
|
1999
2006
|
readonly authorization_id?: string;
|
|
2000
2007
|
readonly organization_id?: string;
|
|
2008
|
+
readonly payment_request_id?: string;
|
|
2009
|
+
readonly payment_request_order_reference?: string;
|
|
2001
2010
|
}
|
|
2002
2011
|
interface NetworkTokenUsed {
|
|
2003
2012
|
readonly used?: boolean;
|
|
@@ -2106,6 +2115,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2106
2115
|
interface PaymentIntentConfirmationForm {
|
|
2107
2116
|
readonly off_session?: boolean;
|
|
2108
2117
|
readonly payment_method?: string;
|
|
2118
|
+
readonly payment_method_data?: io.flow.stripe.v0.unions.PaymentMethodData;
|
|
2109
2119
|
readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
2110
2120
|
readonly payment_method_types?: string[];
|
|
2111
2121
|
readonly receipt_email?: string;
|
|
@@ -2125,6 +2135,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2125
2135
|
readonly metadata?: io.flow.stripe.v0.models.Metadata;
|
|
2126
2136
|
readonly on_behalf_of?: string;
|
|
2127
2137
|
readonly payment_method?: string;
|
|
2138
|
+
readonly payment_method_data?: io.flow.stripe.v0.unions.PaymentMethodData;
|
|
2128
2139
|
readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
2129
2140
|
readonly payment_method_types?: string[];
|
|
2130
2141
|
readonly receipt_email?: string;
|
|
@@ -2155,7 +2166,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2155
2166
|
readonly id: string;
|
|
2156
2167
|
readonly object: string;
|
|
2157
2168
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2158
|
-
readonly card?: io.flow.stripe.v0.models.
|
|
2169
|
+
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
2159
2170
|
readonly card_present?: any;
|
|
2160
2171
|
readonly created: number;
|
|
2161
2172
|
readonly customer?: string;
|
|
@@ -2168,6 +2179,30 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2168
2179
|
readonly name?: string;
|
|
2169
2180
|
readonly phone?: string;
|
|
2170
2181
|
}
|
|
2182
|
+
interface PaymentMethodCardDetails {
|
|
2183
|
+
readonly brand?: io.flow.stripe.v0.enums.CardBrand;
|
|
2184
|
+
readonly checks?: io.flow.stripe.v0.models.CardChecks;
|
|
2185
|
+
readonly country?: string;
|
|
2186
|
+
readonly exp_month?: number;
|
|
2187
|
+
readonly exp_year?: number;
|
|
2188
|
+
readonly fingerprint?: string;
|
|
2189
|
+
readonly funding?: io.flow.stripe.v0.enums.CardFundingType;
|
|
2190
|
+
readonly last4?: string;
|
|
2191
|
+
readonly networks?: io.flow.stripe.v0.models.CardNetworks;
|
|
2192
|
+
readonly three_d_secure_usage?: io.flow.stripe.v0.models.ThreeDSecureUsage;
|
|
2193
|
+
}
|
|
2194
|
+
interface PaymentMethodCardForm {
|
|
2195
|
+
readonly exp_month: string;
|
|
2196
|
+
readonly exp_year: string;
|
|
2197
|
+
readonly number: string;
|
|
2198
|
+
readonly cvc?: string;
|
|
2199
|
+
}
|
|
2200
|
+
interface PaymentMethodDataCard {
|
|
2201
|
+
readonly type: 'card';
|
|
2202
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2203
|
+
readonly metadata?: any;
|
|
2204
|
+
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2205
|
+
}
|
|
2171
2206
|
interface PaymentMethodDetailsCard {
|
|
2172
2207
|
readonly type: 'card';
|
|
2173
2208
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -2201,16 +2236,19 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2201
2236
|
readonly payment_method_category?: io.flow.stripe.v0.enums.PaymentMethodCategoryKlarna;
|
|
2202
2237
|
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
2203
2238
|
}
|
|
2204
|
-
interface
|
|
2205
|
-
readonly type:
|
|
2239
|
+
interface PaymentMethodFormCard {
|
|
2240
|
+
readonly type: 'card';
|
|
2206
2241
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2207
|
-
readonly
|
|
2242
|
+
readonly metadata?: any;
|
|
2243
|
+
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2208
2244
|
}
|
|
2209
2245
|
interface PaymentMethodOptions {
|
|
2210
2246
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
2211
2247
|
}
|
|
2212
2248
|
interface PaymentMethodOptionsCard {
|
|
2249
|
+
readonly network?: string;
|
|
2213
2250
|
readonly request_three_d_secure?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
|
|
2251
|
+
readonly stored_credential_transaction_type?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
|
|
2214
2252
|
}
|
|
2215
2253
|
interface PaymentOutcome {
|
|
2216
2254
|
readonly network_status: io.flow.stripe.v0.enums.NetworkStatus;
|
|
@@ -2436,6 +2474,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2436
2474
|
readonly type: io.flow.stripe.v0.enums.UseStripeSdkType;
|
|
2437
2475
|
readonly stripe_js: string;
|
|
2438
2476
|
}
|
|
2477
|
+
interface ThreeDSecureUsage {
|
|
2478
|
+
readonly supported?: boolean;
|
|
2479
|
+
}
|
|
2439
2480
|
interface Token {
|
|
2440
2481
|
readonly id: string;
|
|
2441
2482
|
readonly object: string;
|
|
@@ -2469,7 +2510,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2469
2510
|
}
|
|
2470
2511
|
declare namespace io.flow.stripe.v0.unions {
|
|
2471
2512
|
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
2513
|
+
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard;
|
|
2472
2514
|
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
2515
|
+
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard;
|
|
2473
2516
|
}
|
|
2474
2517
|
declare namespace io.flow.customer.v0.enums {
|
|
2475
2518
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
@@ -5114,7 +5157,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5114
5157
|
readonly key: string;
|
|
5115
5158
|
readonly namespace: string;
|
|
5116
5159
|
readonly value: string;
|
|
5117
|
-
readonly
|
|
5160
|
+
readonly type: io.flow.shopify.markets.v0.enums.ShopifyOrderValueType;
|
|
5118
5161
|
readonly description?: string;
|
|
5119
5162
|
}
|
|
5120
5163
|
interface ShopifyOrderMoney {
|
|
@@ -5258,6 +5301,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5258
5301
|
readonly id: number;
|
|
5259
5302
|
readonly shipping_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5260
5303
|
readonly note_attributes?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
5304
|
+
readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafieldForm[];
|
|
5261
5305
|
}
|
|
5262
5306
|
interface ShopifyWebhookCustomersDataRequest {
|
|
5263
5307
|
readonly shop_id: number;
|
|
@@ -6630,7 +6674,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
6630
6674
|
type ExperiencePaymentMethodTag = 'display';
|
|
6631
6675
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
6632
6676
|
type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
|
|
6633
|
-
type OrderPaymentType = 'card' | 'online' | 'credit' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
6677
|
+
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
6634
6678
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
6635
6679
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
6636
6680
|
type OrderStatus = 'open' | 'submitted';
|
|
@@ -8141,8 +8185,7 @@ declare namespace io.flow.error.v0.models {
|
|
|
8141
8185
|
}
|
|
8142
8186
|
}
|
|
8143
8187
|
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
8144
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
8145
|
-
type WeightSelection = 'dead' | 'dimensional';
|
|
8188
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
8146
8189
|
}
|
|
8147
8190
|
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
8148
8191
|
interface LabelBase {
|
|
@@ -8162,10 +8205,38 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
8162
8205
|
readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
8163
8206
|
readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
8164
8207
|
}
|
|
8208
|
+
interface LabelInvoiceResponseFile {
|
|
8209
|
+
readonly id: string;
|
|
8210
|
+
readonly url: string;
|
|
8211
|
+
readonly created_at: string;
|
|
8212
|
+
readonly result?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelInvoiceResponseFileResult;
|
|
8213
|
+
}
|
|
8214
|
+
interface LabelInvoiceResponseFileForm {
|
|
8215
|
+
readonly url: string;
|
|
8216
|
+
}
|
|
8217
|
+
interface LabelInvoiceResponseFileResult {
|
|
8218
|
+
readonly processed_at: string;
|
|
8219
|
+
readonly number_lines_successful: number;
|
|
8220
|
+
readonly number_lines_with_errors: number;
|
|
8221
|
+
readonly errors_url?: string;
|
|
8222
|
+
}
|
|
8223
|
+
interface LabelInvoiceResponseForm {
|
|
8224
|
+
readonly id: string;
|
|
8225
|
+
readonly label_invoice_request_id: string;
|
|
8226
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelResponseUnits;
|
|
8227
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
8228
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
8229
|
+
readonly total: number;
|
|
8230
|
+
}
|
|
8165
8231
|
interface LabelMetadata {
|
|
8166
8232
|
readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
8167
8233
|
readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
8168
8234
|
}
|
|
8235
|
+
interface LabelResponseUnits {
|
|
8236
|
+
readonly currency: string;
|
|
8237
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
8238
|
+
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
8239
|
+
}
|
|
8169
8240
|
interface LabelSurcharge {
|
|
8170
8241
|
readonly amount: number;
|
|
8171
8242
|
readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
@@ -8183,6 +8254,20 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
8183
8254
|
readonly discriminator: 'percentage';
|
|
8184
8255
|
readonly percentage: number;
|
|
8185
8256
|
}
|
|
8257
|
+
interface LabelSurchargeForm {
|
|
8258
|
+
readonly fuel?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8259
|
+
readonly remote_area?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8260
|
+
readonly oversize?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8261
|
+
readonly duties_paid?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8262
|
+
readonly emergency?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8263
|
+
readonly peak?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8264
|
+
readonly address_correction?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8265
|
+
}
|
|
8266
|
+
interface LabelSurchargeSingleForm {
|
|
8267
|
+
readonly amount: number;
|
|
8268
|
+
readonly percentage?: number;
|
|
8269
|
+
readonly fee_per_weight_unit?: number;
|
|
8270
|
+
}
|
|
8186
8271
|
interface LabelUnits {
|
|
8187
8272
|
readonly currency: string;
|
|
8188
8273
|
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
@@ -8197,7 +8282,6 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
8197
8282
|
readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
8198
8283
|
}
|
|
8199
8284
|
interface MetadataWeights {
|
|
8200
|
-
readonly selected: io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
8201
8285
|
readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
8202
8286
|
readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
8203
8287
|
}
|
|
@@ -9220,7 +9304,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
9220
9304
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
9221
9305
|
type StatementAttachmentType = 'csv';
|
|
9222
9306
|
type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
|
|
9223
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
9307
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
9308
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
9309
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
9224
9310
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
9225
9311
|
}
|
|
9226
9312
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -9389,6 +9475,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9389
9475
|
readonly created_at: string;
|
|
9390
9476
|
readonly updated_at: string;
|
|
9391
9477
|
}
|
|
9478
|
+
interface PendingTransaction {
|
|
9479
|
+
readonly id: string;
|
|
9480
|
+
readonly reason: io.flow.billing.v0.enums.TransactionPayoutPendingReason;
|
|
9481
|
+
readonly reason_set_at: string;
|
|
9482
|
+
}
|
|
9392
9483
|
interface SettlementNoPayout {
|
|
9393
9484
|
readonly discriminator: 'no_payout';
|
|
9394
9485
|
readonly placeholder?: string;
|
|
@@ -9429,9 +9520,35 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9429
9520
|
readonly discriminator: 'shipping_label';
|
|
9430
9521
|
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
9431
9522
|
}
|
|
9523
|
+
interface TransactionMetadataTrueup {
|
|
9524
|
+
readonly discriminator: 'trueup';
|
|
9525
|
+
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
9526
|
+
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
9527
|
+
}
|
|
9528
|
+
interface TransactionMetadataTrueupData {
|
|
9529
|
+
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
9530
|
+
readonly units: io.flow.billing.v0.models.TrueupLabelUnits;
|
|
9531
|
+
readonly base: io.flow.billing.v0.models.TrueupLabelBase;
|
|
9532
|
+
readonly surcharges: io.flow.billing.v0.models.TrueupLabelSurcharge[];
|
|
9533
|
+
readonly total: number;
|
|
9534
|
+
}
|
|
9432
9535
|
interface TransactionReference {
|
|
9433
9536
|
readonly id: string;
|
|
9434
9537
|
}
|
|
9538
|
+
interface TrueupLabelBase {
|
|
9539
|
+
readonly amount: number;
|
|
9540
|
+
readonly weight: number;
|
|
9541
|
+
}
|
|
9542
|
+
interface TrueupLabelSurcharge {
|
|
9543
|
+
readonly amount: number;
|
|
9544
|
+
readonly type: io.flow.billing.v0.enums.TrueupSurchargeType;
|
|
9545
|
+
readonly percentage?: number;
|
|
9546
|
+
readonly per_weight_unit?: number;
|
|
9547
|
+
}
|
|
9548
|
+
interface TrueupLabelUnits {
|
|
9549
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
9550
|
+
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
9551
|
+
}
|
|
9435
9552
|
interface WithholdingDeduction {
|
|
9436
9553
|
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
9437
9554
|
readonly amount: number;
|
|
@@ -9442,7 +9559,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
9442
9559
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
9443
9560
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
9444
9561
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
9445
|
-
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel;
|
|
9562
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataTrueup;
|
|
9446
9563
|
}
|
|
9447
9564
|
declare namespace io.flow.harmonization.v0.enums {
|
|
9448
9565
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -10390,17 +10507,17 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
|
|
|
10390
10507
|
}
|
|
10391
10508
|
}
|
|
10392
10509
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
10393
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
10510
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postal_address' | 'phonetic_name';
|
|
10394
10511
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
10395
10512
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
10396
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
10513
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
10397
10514
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
10398
10515
|
}
|
|
10399
10516
|
declare namespace io.flow.apple.pay.v0.models {
|
|
10400
10517
|
interface ApplePayLineItem {
|
|
10401
10518
|
readonly label: string;
|
|
10402
10519
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
10403
|
-
readonly amount:
|
|
10520
|
+
readonly amount: number;
|
|
10404
10521
|
}
|
|
10405
10522
|
interface ApplePayPaymentContact {
|
|
10406
10523
|
readonly email_address?: string;
|
|
@@ -10447,7 +10564,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
10447
10564
|
interface ApplePayShippingMethod {
|
|
10448
10565
|
readonly label: string;
|
|
10449
10566
|
readonly detail: string;
|
|
10450
|
-
readonly amount:
|
|
10567
|
+
readonly amount: number;
|
|
10451
10568
|
readonly identifier: string;
|
|
10452
10569
|
}
|
|
10453
10570
|
}
|
|
@@ -10536,6 +10653,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10536
10653
|
readonly current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
10537
10654
|
readonly started_at?: string;
|
|
10538
10655
|
readonly time_blocked?: number;
|
|
10656
|
+
readonly time_in_setup?: number;
|
|
10539
10657
|
readonly blocked_since?: string;
|
|
10540
10658
|
readonly completed_at?: string;
|
|
10541
10659
|
readonly onboarding_started_at?: string;
|
|
@@ -10865,11 +10983,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10865
10983
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
10866
10984
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
10867
10985
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
10868
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_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_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_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_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_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_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_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_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | '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';
|
|
10986
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_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_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_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_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_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_transactions_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_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_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_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | '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';
|
|
10869
10987
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
10870
10988
|
type BillingStatementBatchFileKey = 'summary';
|
|
10871
10989
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
10872
|
-
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';
|
|
10990
|
+
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';
|
|
10873
10991
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
10874
10992
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
10875
10993
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
@@ -10987,7 +11105,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10987
11105
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10988
11106
|
type EmptyAttribute = 'irrelevant';
|
|
10989
11107
|
type ErpFileType = 'vendor';
|
|
10990
|
-
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' | 'index_assignment_upserted' | 'index_assignment_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_deleted' | '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' | 'label_invoice_request_upserted' | 'label_invoice_request_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' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_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' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_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' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_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' | '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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
11108
|
+
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' | 'index_assignment_upserted' | 'index_assignment_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_deleted' | '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' | 'label_invoice_request_upserted' | 'label_invoice_request_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' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_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' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_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' | '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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
10991
11109
|
type ExperienceImportType = 'experience_with_settings';
|
|
10992
11110
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10993
11111
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -11020,7 +11138,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11020
11138
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
11021
11139
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
11022
11140
|
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
11023
|
-
type LabelInputSource = 'estimate';
|
|
11024
11141
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
11025
11142
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
11026
11143
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
@@ -11076,7 +11193,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11076
11193
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
11077
11194
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
11078
11195
|
type PromptTarget = 'browse' | 'checkout';
|
|
11079
|
-
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | '
|
|
11196
|
+
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'label_tracking_summary' | 'label_invoice_request' | 'label_invoice_response' | 'label_invoice_response_file' | 'label_origin' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'refund' | 'refund_deletion' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email';
|
|
11080
11197
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
11081
11198
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
11082
11199
|
type RateSource = 'calculated' | 'market';
|
|
@@ -11119,7 +11236,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11119
11236
|
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
11120
11237
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
11121
11238
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
11122
|
-
type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
|
|
11123
11239
|
type TariffEligibilityType = 'rex';
|
|
11124
11240
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
11125
11241
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
@@ -11129,9 +11245,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11129
11245
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
11130
11246
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
11131
11247
|
type TransferMethod = 'ach';
|
|
11132
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
11248
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
11249
|
+
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
11133
11250
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
11134
|
-
type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
|
|
11135
11251
|
}
|
|
11136
11252
|
declare namespace io.flow.internal.v0.models {
|
|
11137
11253
|
interface Acceptance {
|
|
@@ -11178,14 +11294,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11178
11294
|
readonly target: number;
|
|
11179
11295
|
readonly rate: number;
|
|
11180
11296
|
}
|
|
11181
|
-
interface AccountForm {
|
|
11182
|
-
readonly timezone: string;
|
|
11183
|
-
readonly payment_schedule: io.flow.common.v0.unions.RepeatSchedule;
|
|
11184
|
-
readonly payment_conditions?: string;
|
|
11185
|
-
readonly deposit_rule?: io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
11186
|
-
readonly center_key?: string;
|
|
11187
|
-
readonly bank_account_id?: string;
|
|
11188
|
-
}
|
|
11189
11297
|
interface AccountOrdersExportRequest {
|
|
11190
11298
|
readonly discriminator: 'account_orders_export_request';
|
|
11191
11299
|
readonly event_id: string;
|
|
@@ -11209,6 +11317,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11209
11317
|
readonly transaction_created_on_or_before?: string;
|
|
11210
11318
|
readonly transaction_created_before?: string;
|
|
11211
11319
|
}
|
|
11320
|
+
interface AccountOrigin {
|
|
11321
|
+
readonly country: string;
|
|
11322
|
+
}
|
|
11212
11323
|
interface AccountProcessingRateForm {
|
|
11213
11324
|
readonly query: string;
|
|
11214
11325
|
readonly capture: number;
|
|
@@ -12022,6 +12133,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12022
12133
|
readonly channel_billed: io.flow.common.v0.models.Price;
|
|
12023
12134
|
readonly tax: io.flow.common.v0.models.Price;
|
|
12024
12135
|
readonly duty: io.flow.common.v0.models.Price;
|
|
12136
|
+
readonly trueup: io.flow.common.v0.models.Price;
|
|
12025
12137
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
12026
12138
|
}
|
|
12027
12139
|
interface BillingStatementUpserted {
|
|
@@ -12471,6 +12583,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12471
12583
|
interface ChannelAccount {
|
|
12472
12584
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
12473
12585
|
readonly id: string;
|
|
12586
|
+
readonly key?: string;
|
|
12587
|
+
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
12474
12588
|
readonly currency: string;
|
|
12475
12589
|
readonly updated_at: string;
|
|
12476
12590
|
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
@@ -14730,116 +14844,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14730
14844
|
readonly secret_key: string;
|
|
14731
14845
|
readonly signature_secret: string;
|
|
14732
14846
|
}
|
|
14733
|
-
interface CsvActual {
|
|
14734
|
-
readonly id: string;
|
|
14735
|
-
readonly currency: string;
|
|
14736
|
-
readonly base_amount: number;
|
|
14737
|
-
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14738
|
-
readonly total: number;
|
|
14739
|
-
readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14740
|
-
readonly weight: number;
|
|
14741
|
-
readonly ratecard: io.flow.internal.v0.models.CsvActualRatecard;
|
|
14742
|
-
}
|
|
14743
|
-
interface CsvActualRatecard {
|
|
14744
|
-
readonly base_amount?: number;
|
|
14745
|
-
}
|
|
14746
|
-
interface CsvDimensions {
|
|
14747
|
-
readonly unit: io.flow.units.v0.enums.UnitOfLength;
|
|
14748
|
-
readonly length: number;
|
|
14749
|
-
readonly width: number;
|
|
14750
|
-
readonly depth: number;
|
|
14751
|
-
}
|
|
14752
|
-
interface CsvFlowRatecard {
|
|
14753
|
-
readonly id: string;
|
|
14754
|
-
readonly number: string;
|
|
14755
|
-
readonly owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
14756
|
-
readonly lane: io.flow.internal.v0.models.LaneReference;
|
|
14757
|
-
readonly dim_factor: number;
|
|
14758
|
-
readonly surcharges: io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
14759
|
-
readonly base_amount?: number;
|
|
14760
|
-
}
|
|
14761
|
-
interface CsvFlowRatecardSurcharges {
|
|
14762
|
-
readonly fuel?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14763
|
-
readonly remote_area?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14764
|
-
readonly oversize?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14765
|
-
readonly duties_paid?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14766
|
-
}
|
|
14767
|
-
interface CsvGlobalEProposition {
|
|
14768
|
-
readonly name: string;
|
|
14769
|
-
}
|
|
14770
|
-
interface CsvGlobalEShippingMethod {
|
|
14771
|
-
readonly id: string;
|
|
14772
|
-
readonly proposition: io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
14773
|
-
}
|
|
14774
|
-
interface CsvInput {
|
|
14775
|
-
readonly id: string;
|
|
14776
|
-
readonly source: io.flow.internal.v0.enums.LabelInputSource;
|
|
14777
|
-
readonly currency: string;
|
|
14778
|
-
readonly base_amount: number;
|
|
14779
|
-
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14780
|
-
readonly total: number;
|
|
14781
|
-
readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14782
|
-
readonly weight: number;
|
|
14783
|
-
readonly variance: number;
|
|
14784
|
-
}
|
|
14785
|
-
interface CsvLabel {
|
|
14786
|
-
readonly id: string;
|
|
14787
|
-
readonly cost: io.flow.internal.v0.models.CsvLabelCost;
|
|
14788
|
-
readonly created_at: string;
|
|
14789
|
-
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
14790
|
-
readonly trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
14791
|
-
}
|
|
14792
|
-
interface CsvLabelCost {
|
|
14793
|
-
readonly amount: number;
|
|
14794
|
-
readonly currency: string;
|
|
14795
|
-
readonly source: io.flow.label.v0.enums.CostEstimateSource;
|
|
14796
|
-
}
|
|
14797
|
-
interface CsvOrder {
|
|
14798
|
-
readonly organization: io.flow.internal.v0.models.OrganizationReference;
|
|
14799
|
-
readonly number: string;
|
|
14800
|
-
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
14801
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
14802
|
-
readonly tax: io.flow.common.v0.models.Money;
|
|
14803
|
-
readonly duty: io.flow.common.v0.models.Money;
|
|
14804
|
-
readonly total: io.flow.common.v0.models.Money;
|
|
14805
|
-
readonly number_items: number;
|
|
14806
|
-
}
|
|
14807
|
-
interface CsvRecord {
|
|
14808
|
-
readonly label: io.flow.internal.v0.models.CsvLabel;
|
|
14809
|
-
readonly carrier_service_id: string;
|
|
14810
|
-
readonly carrier_tracking_number: string;
|
|
14811
|
-
readonly order: io.flow.internal.v0.models.CsvOrder;
|
|
14812
|
-
readonly flow_ratecard: io.flow.internal.v0.models.CsvFlowRatecard;
|
|
14813
|
-
readonly global_e_shipping_method?: io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
14814
|
-
readonly weight: io.flow.internal.v0.models.CsvWeight;
|
|
14815
|
-
readonly dimensions: io.flow.internal.v0.models.CsvDimensions;
|
|
14816
|
-
readonly input?: io.flow.internal.v0.models.CsvInput;
|
|
14817
|
-
readonly actual?: io.flow.internal.v0.models.CsvActual;
|
|
14818
|
-
readonly variance?: number;
|
|
14819
|
-
readonly deltas: string[];
|
|
14820
|
-
readonly outliers: string[];
|
|
14821
|
-
}
|
|
14822
|
-
interface CsvServiceFee {
|
|
14823
|
-
readonly amount?: number;
|
|
14824
|
-
readonly currency?: string;
|
|
14825
|
-
readonly percentage?: number;
|
|
14826
|
-
}
|
|
14827
|
-
interface CsvSurchargePercentage {
|
|
14828
|
-
readonly percentage: number;
|
|
14829
|
-
readonly amount: number;
|
|
14830
|
-
}
|
|
14831
|
-
interface CsvSurcharges {
|
|
14832
|
-
readonly fuel: io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
14833
|
-
readonly remote_area: number;
|
|
14834
|
-
readonly oversize: number;
|
|
14835
|
-
readonly duties_paid: number;
|
|
14836
|
-
}
|
|
14837
|
-
interface CsvWeight {
|
|
14838
|
-
readonly unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14839
|
-
readonly provided: number;
|
|
14840
|
-
readonly dimensional: number;
|
|
14841
|
-
readonly lookup: number;
|
|
14842
|
-
}
|
|
14843
14847
|
interface CurrencyInternalRate {
|
|
14844
14848
|
readonly id: string;
|
|
14845
14849
|
readonly organization_id: string;
|
|
@@ -15032,6 +15036,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15032
15036
|
readonly authorization_id?: string;
|
|
15033
15037
|
readonly posting_proof_id?: string;
|
|
15034
15038
|
readonly label_tracking_summary_id?: string;
|
|
15039
|
+
readonly shipping_notification_id?: string;
|
|
15040
|
+
readonly external_fulfillment_proof_id?: string;
|
|
15035
15041
|
}
|
|
15036
15042
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
15037
15043
|
readonly key?: string;
|
|
@@ -16183,6 +16189,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16183
16189
|
interface FlowAccount {
|
|
16184
16190
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
16185
16191
|
readonly id: string;
|
|
16192
|
+
readonly key?: string;
|
|
16193
|
+
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
16186
16194
|
readonly currency: string;
|
|
16187
16195
|
readonly updated_at: string;
|
|
16188
16196
|
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
@@ -16424,6 +16432,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16424
16432
|
readonly shipping: io.flow.internal.v0.models.FulfillmentShipping;
|
|
16425
16433
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
16426
16434
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
16435
|
+
readonly proof: io.flow.internal.v0.unions.FulfillmentProof;
|
|
16436
|
+
readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
|
|
16427
16437
|
readonly completes_order: boolean;
|
|
16428
16438
|
readonly sequence_number: number;
|
|
16429
16439
|
readonly business?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
@@ -17918,6 +17928,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17918
17928
|
readonly organization: string;
|
|
17919
17929
|
readonly label_invoice_request: io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
17920
17930
|
}
|
|
17931
|
+
interface LabelInvoiceResponseFile {
|
|
17932
|
+
readonly id: string;
|
|
17933
|
+
readonly url: string;
|
|
17934
|
+
readonly created_at: string;
|
|
17935
|
+
readonly result?: io.flow.internal.v0.models.LabelInvoiceResponseFileResult;
|
|
17936
|
+
}
|
|
17937
|
+
interface LabelInvoiceResponseFileForm {
|
|
17938
|
+
readonly url: string;
|
|
17939
|
+
}
|
|
17940
|
+
interface LabelInvoiceResponseFileResult {
|
|
17941
|
+
readonly processed_at: string;
|
|
17942
|
+
readonly number_lines_successful: number;
|
|
17943
|
+
readonly number_lines_with_errors: number;
|
|
17944
|
+
readonly errors_url?: string;
|
|
17945
|
+
}
|
|
17921
17946
|
interface LabelInvoiceResponseForm {
|
|
17922
17947
|
readonly id: string;
|
|
17923
17948
|
readonly label_invoice_request_id: string;
|
|
@@ -17999,6 +18024,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17999
18024
|
readonly duties_paid?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18000
18025
|
readonly emergency?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18001
18026
|
readonly peak?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18027
|
+
readonly address_correction?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18002
18028
|
}
|
|
18003
18029
|
interface LabelSurchargeSingleForm {
|
|
18004
18030
|
readonly amount: number;
|
|
@@ -18082,9 +18108,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18082
18108
|
readonly client_id: string;
|
|
18083
18109
|
readonly region: string;
|
|
18084
18110
|
}
|
|
18085
|
-
interface LaneReference {
|
|
18086
|
-
readonly id: string;
|
|
18087
|
-
}
|
|
18088
18111
|
interface LevyRateSummary {
|
|
18089
18112
|
readonly id: string;
|
|
18090
18113
|
readonly number: string;
|
|
@@ -18790,6 +18813,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18790
18813
|
}
|
|
18791
18814
|
interface OnboardingOrganization {
|
|
18792
18815
|
readonly age: number;
|
|
18816
|
+
readonly setup_time: number;
|
|
18793
18817
|
readonly compliance_approved: boolean;
|
|
18794
18818
|
readonly compliance_full_review_required: boolean;
|
|
18795
18819
|
readonly application_received: string;
|
|
@@ -18924,6 +18948,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18924
18948
|
interface OrderCancellationForm {
|
|
18925
18949
|
readonly evidence: io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
18926
18950
|
}
|
|
18951
|
+
interface OrderCombinedShipment {
|
|
18952
|
+
readonly id: string;
|
|
18953
|
+
readonly label_id: string;
|
|
18954
|
+
readonly carrier_id: string;
|
|
18955
|
+
readonly service_id: string;
|
|
18956
|
+
readonly order_number: string;
|
|
18957
|
+
readonly provided_carrier_name?: string;
|
|
18958
|
+
readonly carrier_tracking_number: string;
|
|
18959
|
+
}
|
|
18960
|
+
interface OrderCombinedShipmentDeleted {
|
|
18961
|
+
readonly discriminator: 'order_combined_shipment_deleted';
|
|
18962
|
+
readonly event_id: string;
|
|
18963
|
+
readonly timestamp: string;
|
|
18964
|
+
readonly organization: string;
|
|
18965
|
+
readonly id: string;
|
|
18966
|
+
}
|
|
18967
|
+
interface OrderCombinedShipmentForm {
|
|
18968
|
+
readonly order_number: string;
|
|
18969
|
+
readonly provided_carrier_name?: string;
|
|
18970
|
+
readonly carrier_tracking_number: string;
|
|
18971
|
+
}
|
|
18972
|
+
interface OrderCombinedShipmentUpserted {
|
|
18973
|
+
readonly discriminator: 'order_combined_shipment_upserted';
|
|
18974
|
+
readonly event_id: string;
|
|
18975
|
+
readonly timestamp: string;
|
|
18976
|
+
readonly organization: string;
|
|
18977
|
+
readonly order_combined_shipment: io.flow.internal.v0.models.OrderCombinedShipment;
|
|
18978
|
+
}
|
|
18927
18979
|
interface OrderDetail {
|
|
18928
18980
|
readonly order: io.flow.experience.v0.models.Order;
|
|
18929
18981
|
readonly status: io.flow.experience.v0.enums.OrderStatus;
|
|
@@ -19072,6 +19124,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19072
19124
|
interface OrganizationAccount {
|
|
19073
19125
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
19074
19126
|
readonly id: string;
|
|
19127
|
+
readonly key?: string;
|
|
19128
|
+
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
19075
19129
|
readonly currency: string;
|
|
19076
19130
|
readonly updated_at: string;
|
|
19077
19131
|
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
@@ -19275,9 +19329,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19275
19329
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
19276
19330
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
19277
19331
|
}
|
|
19278
|
-
interface OrganizationReference {
|
|
19279
|
-
readonly id: string;
|
|
19280
|
-
}
|
|
19281
19332
|
interface OrganizationRestrictionNoteForm {
|
|
19282
19333
|
readonly note: string;
|
|
19283
19334
|
readonly note_type: io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -20493,6 +20544,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20493
20544
|
readonly hs_code?: string;
|
|
20494
20545
|
readonly merchant_category_code?: string;
|
|
20495
20546
|
readonly notes: io.flow.internal.v0.models.OrganizationRestrictionStatusNote[];
|
|
20547
|
+
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
20548
|
+
readonly last_year_domestic_gmv?: io.flow.common.v0.models.Money;
|
|
20496
20549
|
}
|
|
20497
20550
|
interface RestrictionOrganizationDecisionSummary {
|
|
20498
20551
|
readonly organization: io.flow.internal.v0.models.RestrictionOrganization;
|
|
@@ -21024,6 +21077,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21024
21077
|
readonly shopify_tracking_number: io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
21025
21078
|
readonly shopify_carrier_service?: io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
21026
21079
|
readonly fulfillment_created_at?: string;
|
|
21080
|
+
readonly flow_label_id?: string;
|
|
21027
21081
|
}
|
|
21028
21082
|
interface ShopifyMonitoringFulfillmentMissingDetails {
|
|
21029
21083
|
readonly discriminator: 'fulfillment_missing_details';
|
|
@@ -21264,6 +21318,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21264
21318
|
readonly remote_area: number;
|
|
21265
21319
|
readonly oversize: number;
|
|
21266
21320
|
readonly ccf: number;
|
|
21321
|
+
readonly emergency: number;
|
|
21322
|
+
readonly peak: number;
|
|
21267
21323
|
readonly total: number;
|
|
21268
21324
|
}
|
|
21269
21325
|
interface ShopperSummary {
|
|
@@ -21632,11 +21688,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21632
21688
|
readonly discriminator: 'supported_labels';
|
|
21633
21689
|
readonly values: io.flow.internal.v0.models.LabelAliases[];
|
|
21634
21690
|
}
|
|
21635
|
-
interface Surcharge {
|
|
21636
|
-
readonly amount?: number;
|
|
21637
|
-
readonly percentage?: number;
|
|
21638
|
-
readonly type: io.flow.internal.v0.enums.SurchargeType;
|
|
21639
|
-
}
|
|
21640
21691
|
interface SvbVirtualCardClearing {
|
|
21641
21692
|
readonly id: string;
|
|
21642
21693
|
readonly virtual_card_id: string;
|
|
@@ -22039,6 +22090,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22039
22090
|
readonly flow_tracking_number: string;
|
|
22040
22091
|
readonly created_at: string;
|
|
22041
22092
|
}
|
|
22093
|
+
interface TrueupTransaction {
|
|
22094
|
+
readonly discriminator: 'trueup_transaction';
|
|
22095
|
+
readonly label_transaction: io.flow.internal.v0.models.TransactionReference;
|
|
22096
|
+
readonly id: string;
|
|
22097
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22098
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
22099
|
+
readonly posted_at?: string;
|
|
22100
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
22101
|
+
readonly description: string;
|
|
22102
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22103
|
+
readonly created_at: string;
|
|
22104
|
+
}
|
|
22042
22105
|
interface UnassignedMerchantGuid {
|
|
22043
22106
|
readonly id: string;
|
|
22044
22107
|
readonly merchant_guid: string;
|
|
@@ -22247,17 +22310,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22247
22310
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22248
22311
|
readonly created_at: string;
|
|
22249
22312
|
}
|
|
22250
|
-
interface WashCarrierActualFile {
|
|
22251
|
-
readonly id: string;
|
|
22252
|
-
readonly url: string;
|
|
22253
|
-
readonly status: io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
22254
|
-
}
|
|
22255
|
-
interface WashCarrierActualFileForm {
|
|
22256
|
-
readonly url: string;
|
|
22257
|
-
}
|
|
22258
|
-
interface WashExportRequest {
|
|
22259
|
-
readonly url: string;
|
|
22260
|
-
}
|
|
22261
22313
|
interface WasteElectricalAndElectronicEquipmentComplianceData {
|
|
22262
22314
|
readonly discriminator: 'weee';
|
|
22263
22315
|
readonly label: string;
|
|
@@ -22386,7 +22438,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22386
22438
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22387
22439
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
22388
22440
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22389
|
-
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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | 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.BankPaymentDeleted | 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.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | 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.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | 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.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.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.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.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.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | 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.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.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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22441
|
+
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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | 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.BankPaymentDeleted | 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.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | 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.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | 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.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.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.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | 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.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.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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22390
22442
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
22391
22443
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22392
22444
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22441,7 +22493,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22441
22493
|
type TaskData = io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport;
|
|
22442
22494
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
22443
22495
|
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;
|
|
22444
|
-
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;
|
|
22496
|
+
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;
|
|
22445
22497
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
22446
22498
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
22447
22499
|
type Variant = io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant;
|
|
@@ -22455,8 +22507,8 @@ export declare type AccountContactUpserted = io.flow.internal.v0.models.AccountC
|
|
|
22455
22507
|
export declare type AccountDeletedV2 = io.flow.internal.v0.models.AccountDeletedV2;
|
|
22456
22508
|
export declare type AccountDepositRule = io.flow.internal.v0.models.AccountDepositRule;
|
|
22457
22509
|
export declare type AccountDepositRuleForm = io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
22458
|
-
export declare type AccountForm = io.flow.internal.v0.models.AccountForm;
|
|
22459
22510
|
export declare type AccountOrdersExportRequest = io.flow.internal.v0.models.AccountOrdersExportRequest;
|
|
22511
|
+
export declare type AccountOrigin = io.flow.internal.v0.models.AccountOrigin;
|
|
22460
22512
|
export declare type AccountProcessingRateForm = io.flow.internal.v0.models.AccountProcessingRateForm;
|
|
22461
22513
|
export declare type AccountProcessingRates = io.flow.internal.v0.models.AccountProcessingRates;
|
|
22462
22514
|
export declare type AccountProcessingRatesDeleted = io.flow.internal.v0.models.AccountProcessingRatesDeleted;
|
|
@@ -23330,22 +23382,6 @@ export declare type CryptoAccountModificationForm = io.flow.internal.v0.models.C
|
|
|
23330
23382
|
export declare type CryptoAccountPutForm = io.flow.internal.v0.models.CryptoAccountPutForm;
|
|
23331
23383
|
export declare type CryptoAuthentication = io.flow.internal.v0.models.CryptoAuthentication;
|
|
23332
23384
|
export declare type CryptoAuthenticationForm = io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
23333
|
-
export declare type CsvActual = io.flow.internal.v0.models.CsvActual;
|
|
23334
|
-
export declare type CsvActualRatecard = io.flow.internal.v0.models.CsvActualRatecard;
|
|
23335
|
-
export declare type CsvDimensions = io.flow.internal.v0.models.CsvDimensions;
|
|
23336
|
-
export declare type CsvFlowRatecard = io.flow.internal.v0.models.CsvFlowRatecard;
|
|
23337
|
-
export declare type CsvFlowRatecardSurcharges = io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
23338
|
-
export declare type CsvGlobalEProposition = io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
23339
|
-
export declare type CsvGlobalEShippingMethod = io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
23340
|
-
export declare type CsvInput = io.flow.internal.v0.models.CsvInput;
|
|
23341
|
-
export declare type CsvLabel = io.flow.internal.v0.models.CsvLabel;
|
|
23342
|
-
export declare type CsvLabelCost = io.flow.internal.v0.models.CsvLabelCost;
|
|
23343
|
-
export declare type CsvOrder = io.flow.internal.v0.models.CsvOrder;
|
|
23344
|
-
export declare type CsvRecord = io.flow.internal.v0.models.CsvRecord;
|
|
23345
|
-
export declare type CsvServiceFee = io.flow.internal.v0.models.CsvServiceFee;
|
|
23346
|
-
export declare type CsvSurchargePercentage = io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
23347
|
-
export declare type CsvSurcharges = io.flow.internal.v0.models.CsvSurcharges;
|
|
23348
|
-
export declare type CsvWeight = io.flow.internal.v0.models.CsvWeight;
|
|
23349
23385
|
export declare type CurrencyInternalRate = io.flow.internal.v0.models.CurrencyInternalRate;
|
|
23350
23386
|
export declare type CustomerPurgeUpserted = io.flow.internal.v0.models.CustomerPurgeUpserted;
|
|
23351
23387
|
export declare type CustomerSecret = io.flow.internal.v0.models.CustomerSecret;
|
|
@@ -23848,10 +23884,12 @@ export declare type LabelGenerationSettings = io.flow.internal.v0.models.LabelGe
|
|
|
23848
23884
|
export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
|
|
23849
23885
|
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
23850
23886
|
export declare type LabelGenerationSettingsUpserted = io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
|
|
23851
|
-
export declare type LabelInputSource = io.flow.internal.v0.enums.LabelInputSource;
|
|
23852
23887
|
export declare type LabelInvoiceRequest = io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
23853
23888
|
export declare type LabelInvoiceRequestDeleted = io.flow.internal.v0.models.LabelInvoiceRequestDeleted;
|
|
23854
23889
|
export declare type LabelInvoiceRequestUpserted = io.flow.internal.v0.models.LabelInvoiceRequestUpserted;
|
|
23890
|
+
export declare type LabelInvoiceResponseFile = io.flow.internal.v0.models.LabelInvoiceResponseFile;
|
|
23891
|
+
export declare type LabelInvoiceResponseFileForm = io.flow.internal.v0.models.LabelInvoiceResponseFileForm;
|
|
23892
|
+
export declare type LabelInvoiceResponseFileResult = io.flow.internal.v0.models.LabelInvoiceResponseFileResult;
|
|
23855
23893
|
export declare type LabelInvoiceResponseForm = io.flow.internal.v0.models.LabelInvoiceResponseForm;
|
|
23856
23894
|
export declare type LabelMetadata = io.flow.internal.v0.models.LabelMetadata;
|
|
23857
23895
|
export declare type LabelRequestError = io.flow.internal.v0.models.LabelRequestError;
|
|
@@ -23879,7 +23917,6 @@ export declare type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
|
23879
23917
|
export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
23880
23918
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
23881
23919
|
export declare type Landmark = io.flow.internal.v0.models.Landmark;
|
|
23882
|
-
export declare type LaneReference = io.flow.internal.v0.models.LaneReference;
|
|
23883
23920
|
export declare type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
|
|
23884
23921
|
export declare type LevyRateSummaryUpserted = io.flow.internal.v0.models.LevyRateSummaryUpserted;
|
|
23885
23922
|
export declare type Liability = io.flow.internal.v0.models.Liability;
|
|
@@ -24050,6 +24087,10 @@ export declare type OrderCancellationEvidenceReturnToSender = io.flow.internal.v
|
|
|
24050
24087
|
export declare type OrderCancellationForm = io.flow.internal.v0.models.OrderCancellationForm;
|
|
24051
24088
|
export declare type OrderCancellationInitiatedBy = io.flow.internal.v0.enums.OrderCancellationInitiatedBy;
|
|
24052
24089
|
export declare type OrderChargeTrigger = io.flow.internal.v0.enums.OrderChargeTrigger;
|
|
24090
|
+
export declare type OrderCombinedShipment = io.flow.internal.v0.models.OrderCombinedShipment;
|
|
24091
|
+
export declare type OrderCombinedShipmentDeleted = io.flow.internal.v0.models.OrderCombinedShipmentDeleted;
|
|
24092
|
+
export declare type OrderCombinedShipmentForm = io.flow.internal.v0.models.OrderCombinedShipmentForm;
|
|
24093
|
+
export declare type OrderCombinedShipmentUpserted = io.flow.internal.v0.models.OrderCombinedShipmentUpserted;
|
|
24053
24094
|
export declare type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
24054
24095
|
export declare type OrderFulfillmentDeleted = io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
24055
24096
|
export declare type OrderFulfillmentUpserted = io.flow.internal.v0.models.OrderFulfillmentUpserted;
|
|
@@ -24109,7 +24150,6 @@ export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.
|
|
|
24109
24150
|
export declare type OrganizationPaymentSettingUpserted = io.flow.internal.v0.models.OrganizationPaymentSettingUpserted;
|
|
24110
24151
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
24111
24152
|
export declare type OrganizationPaymentStatus = io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
24112
|
-
export declare type OrganizationReference = io.flow.internal.v0.models.OrganizationReference;
|
|
24113
24153
|
export declare type OrganizationRestrictionApprovalStatus = io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
24114
24154
|
export declare type OrganizationRestrictionNoteForm = io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
24115
24155
|
export declare type OrganizationRestrictionNoteType = io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -24567,8 +24607,6 @@ export declare type SubscriptionFrequency = io.flow.internal.v0.enums.Subscripti
|
|
|
24567
24607
|
export declare type SubscriptionTransaction = io.flow.internal.v0.models.SubscriptionTransaction;
|
|
24568
24608
|
export declare type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
24569
24609
|
export declare type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
24570
|
-
export declare type Surcharge = io.flow.internal.v0.models.Surcharge;
|
|
24571
|
-
export declare type SurchargeType = io.flow.internal.v0.enums.SurchargeType;
|
|
24572
24610
|
export declare type SvbVirtualCardClearing = io.flow.internal.v0.models.SvbVirtualCardClearing;
|
|
24573
24611
|
export declare type SvbVirtualCardClearingDeleted = io.flow.internal.v0.models.SvbVirtualCardClearingDeleted;
|
|
24574
24612
|
export declare type SvbVirtualCardClearingUpserted = io.flow.internal.v0.models.SvbVirtualCardClearingUpserted;
|
|
@@ -24647,6 +24685,8 @@ export declare type TransferTransactionUpsertedV2 = io.flow.internal.v0.models.T
|
|
|
24647
24685
|
export declare type Tribe = io.flow.internal.v0.models.Tribe;
|
|
24648
24686
|
export declare type TrueUpLabelSummary = io.flow.internal.v0.models.TrueUpLabelSummary;
|
|
24649
24687
|
export declare type TrueUpSurchargeType = io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
24688
|
+
export declare type TrueupTransaction = io.flow.internal.v0.models.TrueupTransaction;
|
|
24689
|
+
export declare type TrueupTransactionType = io.flow.internal.v0.enums.TrueupTransactionType;
|
|
24650
24690
|
export declare type UnassignedMerchantGuid = io.flow.internal.v0.models.UnassignedMerchantGuid;
|
|
24651
24691
|
export declare type UnassignedMerchantGuidDeleted = io.flow.internal.v0.models.UnassignedMerchantGuidDeleted;
|
|
24652
24692
|
export declare type UnassignedMerchantGuidUpserted = io.flow.internal.v0.models.UnassignedMerchantGuidUpserted;
|
|
@@ -24684,10 +24724,6 @@ export declare type VirtualCardProvider = io.flow.internal.v0.models.VirtualCard
|
|
|
24684
24724
|
export declare type VirtualCardProviderDeleted = io.flow.internal.v0.models.VirtualCardProviderDeleted;
|
|
24685
24725
|
export declare type VirtualCardProviderUpserted = io.flow.internal.v0.models.VirtualCardProviderUpserted;
|
|
24686
24726
|
export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualCardTransaction;
|
|
24687
|
-
export declare type WashCarrierActualFile = io.flow.internal.v0.models.WashCarrierActualFile;
|
|
24688
|
-
export declare type WashCarrierActualFileForm = io.flow.internal.v0.models.WashCarrierActualFileForm;
|
|
24689
|
-
export declare type WashCarrierActualFileStatus = io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
24690
|
-
export declare type WashExportRequest = io.flow.internal.v0.models.WashExportRequest;
|
|
24691
24727
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
24692
24728
|
export declare type WasteElectricalAndElectronicEquipmentComplianceForm = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
24693
24729
|
export declare type Webhook = io.flow.internal.v0.models.Webhook;
|