@flowio/api-internal-prop-types 9.24.68 → 9.24.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +255 -215
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +255 -215
- package/src/api-internal.js +689 -598
package/src/api-internal.d.ts
CHANGED
|
@@ -2004,7 +2004,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2004
2004
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
2005
2005
|
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';
|
|
2006
2006
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
2007
|
-
type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.
|
|
2007
|
+
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';
|
|
2008
2008
|
type KlarnaPaymentMethodCategoryType = 'direct_bank_transfer' | 'direct_debit' | 'pay_later' | 'pay_now' | 'pay_over_time';
|
|
2009
2009
|
type KlarnaProduct = 'payment';
|
|
2010
2010
|
type NetworkStatus = 'approved_by_network' | 'declined_by_network' | 'not_sent_to_network' | 'reversed_after_approval';
|
|
@@ -2026,6 +2026,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2026
2026
|
type SourceStatus = 'canceled' | 'chargeable' | 'consumed' | 'failed' | 'pending';
|
|
2027
2027
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
2028
2028
|
type SourceUsageType = 'reusable' | 'single_use';
|
|
2029
|
+
type StoredCredentialTransactionType = 'setup_on_session' | 'setup_off_session_recurring' | 'setup_off_session_unscheduled' | 'stored_on_session' | 'stored_on_session_recurring' | 'stored_on_session_unscheduled';
|
|
2029
2030
|
type ThreeDSecureSupport = 'required' | 'recommended' | 'optional' | 'not_supported';
|
|
2030
2031
|
type ThreeDsAuthenticationFlow = 'challenge' | 'frictionless';
|
|
2031
2032
|
type ThreeDsResult = 'authenticated' | 'attempt_acknowledged' | 'exempted' | 'not_supported' | 'failed' | 'processing_error';
|
|
@@ -2120,6 +2121,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2120
2121
|
readonly 'cvc_check'?: io.flow.stripe.v0.enums.CheckOutcome;
|
|
2121
2122
|
}
|
|
2122
2123
|
|
|
2124
|
+
interface CardNetworks {
|
|
2125
|
+
readonly 'available'?: string[];
|
|
2126
|
+
readonly 'preferred'?: string;
|
|
2127
|
+
}
|
|
2128
|
+
|
|
2123
2129
|
interface CardRequest {
|
|
2124
2130
|
readonly 'object': string;
|
|
2125
2131
|
readonly 'exp_month': string;
|
|
@@ -2140,6 +2146,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2140
2146
|
readonly 'id': string;
|
|
2141
2147
|
readonly 'amount': number;
|
|
2142
2148
|
readonly 'amount_refunded': number;
|
|
2149
|
+
readonly 'authorization_code'?: string;
|
|
2143
2150
|
readonly 'captured': boolean;
|
|
2144
2151
|
readonly 'created': number;
|
|
2145
2152
|
readonly 'currency': string;
|
|
@@ -2190,6 +2197,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2190
2197
|
readonly 'id': string;
|
|
2191
2198
|
readonly 'amount': number;
|
|
2192
2199
|
readonly 'amount_refunded': number;
|
|
2200
|
+
readonly 'authorization_code'?: string;
|
|
2193
2201
|
readonly 'captured': boolean;
|
|
2194
2202
|
readonly 'created': number;
|
|
2195
2203
|
readonly 'currency': string;
|
|
@@ -2287,6 +2295,8 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2287
2295
|
readonly 'order_number'?: string;
|
|
2288
2296
|
readonly 'authorization_id'?: string;
|
|
2289
2297
|
readonly 'organization_id'?: string;
|
|
2298
|
+
readonly 'payment_request_id'?: string;
|
|
2299
|
+
readonly 'payment_request_order_reference'?: string;
|
|
2290
2300
|
}
|
|
2291
2301
|
|
|
2292
2302
|
interface NetworkTokenUsed {
|
|
@@ -2407,6 +2417,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2407
2417
|
interface PaymentIntentConfirmationForm {
|
|
2408
2418
|
readonly 'off_session'?: boolean;
|
|
2409
2419
|
readonly 'payment_method'?: string;
|
|
2420
|
+
readonly 'payment_method_data'?: io.flow.stripe.v0.unions.PaymentMethodData;
|
|
2410
2421
|
readonly 'payment_method_options'?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
2411
2422
|
readonly 'payment_method_types'?: string[];
|
|
2412
2423
|
readonly 'receipt_email'?: string;
|
|
@@ -2427,6 +2438,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2427
2438
|
readonly 'metadata'?: io.flow.stripe.v0.models.Metadata;
|
|
2428
2439
|
readonly 'on_behalf_of'?: string;
|
|
2429
2440
|
readonly 'payment_method'?: string;
|
|
2441
|
+
readonly 'payment_method_data'?: io.flow.stripe.v0.unions.PaymentMethodData;
|
|
2430
2442
|
readonly 'payment_method_options'?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
2431
2443
|
readonly 'payment_method_types'?: string[];
|
|
2432
2444
|
readonly 'receipt_email'?: string;
|
|
@@ -2459,7 +2471,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2459
2471
|
readonly 'id': string;
|
|
2460
2472
|
readonly 'object': string;
|
|
2461
2473
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2462
|
-
readonly 'card'?: io.flow.stripe.v0.models.
|
|
2474
|
+
readonly 'card'?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
2463
2475
|
readonly 'card_present'?: any/*object*/;
|
|
2464
2476
|
readonly 'created': number;
|
|
2465
2477
|
readonly 'customer'?: string;
|
|
@@ -2474,6 +2486,33 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2474
2486
|
readonly 'phone'?: string;
|
|
2475
2487
|
}
|
|
2476
2488
|
|
|
2489
|
+
interface PaymentMethodCardDetails {
|
|
2490
|
+
readonly 'brand'?: io.flow.stripe.v0.enums.CardBrand;
|
|
2491
|
+
readonly 'checks'?: io.flow.stripe.v0.models.CardChecks;
|
|
2492
|
+
readonly 'country'?: string;
|
|
2493
|
+
readonly 'exp_month'?: number;
|
|
2494
|
+
readonly 'exp_year'?: number;
|
|
2495
|
+
readonly 'fingerprint'?: string;
|
|
2496
|
+
readonly 'funding'?: io.flow.stripe.v0.enums.CardFundingType;
|
|
2497
|
+
readonly 'last4'?: string;
|
|
2498
|
+
readonly 'networks'?: io.flow.stripe.v0.models.CardNetworks;
|
|
2499
|
+
readonly 'three_d_secure_usage'?: io.flow.stripe.v0.models.ThreeDSecureUsage;
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2502
|
+
interface PaymentMethodCardForm {
|
|
2503
|
+
readonly 'exp_month': string;
|
|
2504
|
+
readonly 'exp_year': string;
|
|
2505
|
+
readonly 'number': string;
|
|
2506
|
+
readonly 'cvc'?: string;
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
interface PaymentMethodDataCard {
|
|
2510
|
+
readonly 'type': 'card';
|
|
2511
|
+
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2512
|
+
readonly 'metadata'?: any/*object*/;
|
|
2513
|
+
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2477
2516
|
interface PaymentMethodDetailsCard {
|
|
2478
2517
|
readonly 'type': 'card';
|
|
2479
2518
|
readonly 'card': io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -2511,10 +2550,11 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2511
2550
|
readonly 'preferred_locale'?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
2512
2551
|
}
|
|
2513
2552
|
|
|
2514
|
-
interface
|
|
2515
|
-
readonly 'type':
|
|
2553
|
+
interface PaymentMethodFormCard {
|
|
2554
|
+
readonly 'type': 'card';
|
|
2516
2555
|
readonly 'billing_details'?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
2517
|
-
readonly '
|
|
2556
|
+
readonly 'metadata'?: any/*object*/;
|
|
2557
|
+
readonly 'card': io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
2518
2558
|
}
|
|
2519
2559
|
|
|
2520
2560
|
interface PaymentMethodOptions {
|
|
@@ -2522,7 +2562,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2522
2562
|
}
|
|
2523
2563
|
|
|
2524
2564
|
interface PaymentMethodOptionsCard {
|
|
2565
|
+
readonly 'network'?: string;
|
|
2525
2566
|
readonly 'request_three_d_secure'?: io.flow.stripe.v0.enums.RequestThreeDSecureType;
|
|
2567
|
+
readonly 'stored_credential_transaction_type'?: io.flow.stripe.v0.enums.StoredCredentialTransactionType;
|
|
2526
2568
|
}
|
|
2527
2569
|
|
|
2528
2570
|
interface PaymentOutcome {
|
|
@@ -2774,6 +2816,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2774
2816
|
readonly 'stripe_js': string;
|
|
2775
2817
|
}
|
|
2776
2818
|
|
|
2819
|
+
interface ThreeDSecureUsage {
|
|
2820
|
+
readonly 'supported'?: boolean;
|
|
2821
|
+
}
|
|
2822
|
+
|
|
2777
2823
|
interface Token {
|
|
2778
2824
|
readonly 'id': string;
|
|
2779
2825
|
readonly 'object': string;
|
|
@@ -2812,7 +2858,9 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2812
2858
|
|
|
2813
2859
|
declare namespace io.flow.stripe.v0.unions {
|
|
2814
2860
|
type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
|
|
2861
|
+
type PaymentMethodData = (io.flow.stripe.v0.models.PaymentMethodDataCard);
|
|
2815
2862
|
type PaymentMethodDetails = (io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna);
|
|
2863
|
+
type PaymentMethodForm = (io.flow.stripe.v0.models.PaymentMethodFormCard);
|
|
2816
2864
|
}
|
|
2817
2865
|
|
|
2818
2866
|
declare namespace io.flow.customer.v0.enums {
|
|
@@ -5797,7 +5845,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5797
5845
|
readonly 'key': string;
|
|
5798
5846
|
readonly 'namespace': string;
|
|
5799
5847
|
readonly 'value': string;
|
|
5800
|
-
readonly '
|
|
5848
|
+
readonly 'type': io.flow.shopify.markets.v0.enums.ShopifyOrderValueType;
|
|
5801
5849
|
readonly 'description'?: string;
|
|
5802
5850
|
}
|
|
5803
5851
|
|
|
@@ -5961,6 +6009,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5961
6009
|
readonly 'id': number;
|
|
5962
6010
|
readonly 'shipping_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5963
6011
|
readonly 'note_attributes'?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
6012
|
+
readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafieldForm[];
|
|
5964
6013
|
}
|
|
5965
6014
|
|
|
5966
6015
|
interface ShopifyWebhookCustomersDataRequest {
|
|
@@ -7566,7 +7615,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
7566
7615
|
type ExperiencePaymentMethodTag = 'display';
|
|
7567
7616
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
7568
7617
|
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';
|
|
7569
|
-
type OrderPaymentType = 'card' | 'online' | 'credit' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
7618
|
+
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
7570
7619
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
7571
7620
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
7572
7621
|
type OrderStatus = 'open' | 'submitted';
|
|
@@ -9324,8 +9373,7 @@ declare namespace io.flow.error.v0.models {
|
|
|
9324
9373
|
}
|
|
9325
9374
|
|
|
9326
9375
|
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
9327
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
9328
|
-
type WeightSelection = 'dead' | 'dimensional';
|
|
9376
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
9329
9377
|
}
|
|
9330
9378
|
|
|
9331
9379
|
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
@@ -9349,11 +9397,44 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
9349
9397
|
readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
9350
9398
|
}
|
|
9351
9399
|
|
|
9400
|
+
interface LabelInvoiceResponseFile {
|
|
9401
|
+
readonly 'id': string;
|
|
9402
|
+
readonly 'url': string;
|
|
9403
|
+
readonly 'created_at': string;
|
|
9404
|
+
readonly 'result'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelInvoiceResponseFileResult;
|
|
9405
|
+
}
|
|
9406
|
+
|
|
9407
|
+
interface LabelInvoiceResponseFileForm {
|
|
9408
|
+
readonly 'url': string;
|
|
9409
|
+
}
|
|
9410
|
+
|
|
9411
|
+
interface LabelInvoiceResponseFileResult {
|
|
9412
|
+
readonly 'processed_at': string;
|
|
9413
|
+
readonly 'number_lines_successful': number;
|
|
9414
|
+
readonly 'number_lines_with_errors': number;
|
|
9415
|
+
readonly 'errors_url'?: string;
|
|
9416
|
+
}
|
|
9417
|
+
|
|
9418
|
+
interface LabelInvoiceResponseForm {
|
|
9419
|
+
readonly 'id': string;
|
|
9420
|
+
readonly 'label_invoice_request_id': string;
|
|
9421
|
+
readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelResponseUnits;
|
|
9422
|
+
readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
9423
|
+
readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
9424
|
+
readonly 'total': number;
|
|
9425
|
+
}
|
|
9426
|
+
|
|
9352
9427
|
interface LabelMetadata {
|
|
9353
9428
|
readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
9354
9429
|
readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
9355
9430
|
}
|
|
9356
9431
|
|
|
9432
|
+
interface LabelResponseUnits {
|
|
9433
|
+
readonly 'currency': string;
|
|
9434
|
+
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
9435
|
+
readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
|
|
9436
|
+
}
|
|
9437
|
+
|
|
9357
9438
|
interface LabelSurcharge {
|
|
9358
9439
|
readonly 'amount': number;
|
|
9359
9440
|
readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
@@ -9375,6 +9456,22 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
9375
9456
|
readonly 'percentage': number;
|
|
9376
9457
|
}
|
|
9377
9458
|
|
|
9459
|
+
interface LabelSurchargeForm {
|
|
9460
|
+
readonly 'fuel'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9461
|
+
readonly 'remote_area'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9462
|
+
readonly 'oversize'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9463
|
+
readonly 'duties_paid'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9464
|
+
readonly 'emergency'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9465
|
+
readonly 'peak'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9466
|
+
readonly 'address_correction'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
9467
|
+
}
|
|
9468
|
+
|
|
9469
|
+
interface LabelSurchargeSingleForm {
|
|
9470
|
+
readonly 'amount': number;
|
|
9471
|
+
readonly 'percentage'?: number;
|
|
9472
|
+
readonly 'fee_per_weight_unit'?: number;
|
|
9473
|
+
}
|
|
9474
|
+
|
|
9378
9475
|
interface LabelUnits {
|
|
9379
9476
|
readonly 'currency': string;
|
|
9380
9477
|
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
@@ -9392,7 +9489,6 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
9392
9489
|
}
|
|
9393
9490
|
|
|
9394
9491
|
interface MetadataWeights {
|
|
9395
|
-
readonly 'selected': io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
9396
9492
|
readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
9397
9493
|
readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
9398
9494
|
}
|
|
@@ -10581,7 +10677,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
10581
10677
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
10582
10678
|
type StatementAttachmentType = 'csv';
|
|
10583
10679
|
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';
|
|
10584
|
-
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';
|
|
10680
|
+
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';
|
|
10681
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
10682
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
10585
10683
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
10586
10684
|
}
|
|
10587
10685
|
|
|
@@ -10781,6 +10879,12 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10781
10879
|
readonly 'updated_at': string;
|
|
10782
10880
|
}
|
|
10783
10881
|
|
|
10882
|
+
interface PendingTransaction {
|
|
10883
|
+
readonly 'id': string;
|
|
10884
|
+
readonly 'reason': io.flow.billing.v0.enums.TransactionPayoutPendingReason;
|
|
10885
|
+
readonly 'reason_set_at': string;
|
|
10886
|
+
}
|
|
10887
|
+
|
|
10784
10888
|
interface SettlementNoPayout {
|
|
10785
10889
|
readonly 'discriminator': 'no_payout';
|
|
10786
10890
|
readonly 'placeholder'?: string;
|
|
@@ -10826,10 +10930,41 @@ declare namespace io.flow.billing.v0.models {
|
|
|
10826
10930
|
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
10827
10931
|
}
|
|
10828
10932
|
|
|
10933
|
+
interface TransactionMetadataTrueup {
|
|
10934
|
+
readonly 'discriminator': 'trueup';
|
|
10935
|
+
readonly 'estimate': io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
10936
|
+
readonly 'actual': io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
10937
|
+
}
|
|
10938
|
+
|
|
10939
|
+
interface TransactionMetadataTrueupData {
|
|
10940
|
+
readonly 'source': io.flow.billing.v0.enums.TrueupSource;
|
|
10941
|
+
readonly 'units': io.flow.billing.v0.models.TrueupLabelUnits;
|
|
10942
|
+
readonly 'base': io.flow.billing.v0.models.TrueupLabelBase;
|
|
10943
|
+
readonly 'surcharges': io.flow.billing.v0.models.TrueupLabelSurcharge[];
|
|
10944
|
+
readonly 'total': number;
|
|
10945
|
+
}
|
|
10946
|
+
|
|
10829
10947
|
interface TransactionReference {
|
|
10830
10948
|
readonly 'id': string;
|
|
10831
10949
|
}
|
|
10832
10950
|
|
|
10951
|
+
interface TrueupLabelBase {
|
|
10952
|
+
readonly 'amount': number;
|
|
10953
|
+
readonly 'weight': number;
|
|
10954
|
+
}
|
|
10955
|
+
|
|
10956
|
+
interface TrueupLabelSurcharge {
|
|
10957
|
+
readonly 'amount': number;
|
|
10958
|
+
readonly 'type': io.flow.billing.v0.enums.TrueupSurchargeType;
|
|
10959
|
+
readonly 'percentage'?: number;
|
|
10960
|
+
readonly 'per_weight_unit'?: number;
|
|
10961
|
+
}
|
|
10962
|
+
|
|
10963
|
+
interface TrueupLabelUnits {
|
|
10964
|
+
readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
|
|
10965
|
+
readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
|
|
10966
|
+
}
|
|
10967
|
+
|
|
10833
10968
|
interface WithholdingDeduction {
|
|
10834
10969
|
readonly 'type': io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
10835
10970
|
readonly 'amount': number;
|
|
@@ -10841,7 +10976,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
10841
10976
|
type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
|
|
10842
10977
|
type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
|
|
10843
10978
|
type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
|
|
10844
|
-
type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel);
|
|
10979
|
+
type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataTrueup);
|
|
10845
10980
|
}
|
|
10846
10981
|
|
|
10847
10982
|
declare namespace io.flow.harmonization.v0.enums {
|
|
@@ -11941,10 +12076,10 @@ declare namespace io.flow.catalog.RESERVED_WORD_return.v0.models {
|
|
|
11941
12076
|
}
|
|
11942
12077
|
|
|
11943
12078
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
11944
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
12079
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postal_address' | 'phonetic_name';
|
|
11945
12080
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
11946
12081
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
11947
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
12082
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'store_pickup' | 'service_pickup';
|
|
11948
12083
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
11949
12084
|
}
|
|
11950
12085
|
|
|
@@ -11952,7 +12087,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
11952
12087
|
interface ApplePayLineItem {
|
|
11953
12088
|
readonly 'label': string;
|
|
11954
12089
|
readonly 'type': io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
11955
|
-
readonly 'amount':
|
|
12090
|
+
readonly 'amount': number;
|
|
11956
12091
|
}
|
|
11957
12092
|
|
|
11958
12093
|
interface ApplePayPaymentContact {
|
|
@@ -12003,7 +12138,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
12003
12138
|
interface ApplePayShippingMethod {
|
|
12004
12139
|
readonly 'label': string;
|
|
12005
12140
|
readonly 'detail': string;
|
|
12006
|
-
readonly 'amount':
|
|
12141
|
+
readonly 'amount': number;
|
|
12007
12142
|
readonly 'identifier': string;
|
|
12008
12143
|
}
|
|
12009
12144
|
}
|
|
@@ -12108,6 +12243,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
12108
12243
|
readonly 'current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
12109
12244
|
readonly 'started_at'?: string;
|
|
12110
12245
|
readonly 'time_blocked'?: number;
|
|
12246
|
+
readonly 'time_in_setup'?: number;
|
|
12111
12247
|
readonly 'blocked_since'?: string;
|
|
12112
12248
|
readonly 'completed_at'?: string;
|
|
12113
12249
|
readonly 'onboarding_started_at'?: string;
|
|
@@ -12499,11 +12635,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12499
12635
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
12500
12636
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
12501
12637
|
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';
|
|
12502
|
-
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';
|
|
12638
|
+
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';
|
|
12503
12639
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
12504
12640
|
type BillingStatementBatchFileKey = 'summary';
|
|
12505
12641
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
12506
|
-
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';
|
|
12642
|
+
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';
|
|
12507
12643
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
12508
12644
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
12509
12645
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
@@ -12621,7 +12757,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12621
12757
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
12622
12758
|
type EmptyAttribute = 'irrelevant';
|
|
12623
12759
|
type ErpFileType = 'vendor';
|
|
12624
|
-
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';
|
|
12760
|
+
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';
|
|
12625
12761
|
type ExperienceImportType = 'experience_with_settings';
|
|
12626
12762
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12627
12763
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -12654,7 +12790,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12654
12790
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
12655
12791
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
12656
12792
|
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
12657
|
-
type LabelInputSource = 'estimate';
|
|
12658
12793
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
12659
12794
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12660
12795
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
@@ -12710,7 +12845,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12710
12845
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
12711
12846
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
12712
12847
|
type PromptTarget = 'browse' | 'checkout';
|
|
12713
|
-
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | '
|
|
12848
|
+
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';
|
|
12714
12849
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
12715
12850
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
12716
12851
|
type RateSource = 'calculated' | 'market';
|
|
@@ -12753,7 +12888,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12753
12888
|
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
12754
12889
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
12755
12890
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
12756
|
-
type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
|
|
12757
12891
|
type TariffEligibilityType = 'rex';
|
|
12758
12892
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
12759
12893
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
@@ -12763,9 +12897,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12763
12897
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
12764
12898
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
12765
12899
|
type TransferMethod = 'ach';
|
|
12766
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
12900
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
12901
|
+
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
12767
12902
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
12768
|
-
type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
|
|
12769
12903
|
}
|
|
12770
12904
|
|
|
12771
12905
|
declare namespace io.flow.internal.v0.models {
|
|
@@ -12821,15 +12955,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12821
12955
|
readonly 'rate': number;
|
|
12822
12956
|
}
|
|
12823
12957
|
|
|
12824
|
-
interface AccountForm {
|
|
12825
|
-
readonly 'timezone': string;
|
|
12826
|
-
readonly 'payment_schedule': io.flow.common.v0.unions.RepeatSchedule;
|
|
12827
|
-
readonly 'payment_conditions'?: string;
|
|
12828
|
-
readonly 'deposit_rule'?: io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
12829
|
-
readonly 'center_key'?: string;
|
|
12830
|
-
readonly 'bank_account_id'?: string;
|
|
12831
|
-
}
|
|
12832
|
-
|
|
12833
12958
|
interface AccountOrdersExportRequest {
|
|
12834
12959
|
readonly 'discriminator': 'account_orders_export_request';
|
|
12835
12960
|
readonly 'event_id': string;
|
|
@@ -12854,6 +12979,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12854
12979
|
readonly 'transaction_created_before'?: string;
|
|
12855
12980
|
}
|
|
12856
12981
|
|
|
12982
|
+
interface AccountOrigin {
|
|
12983
|
+
readonly 'country': string;
|
|
12984
|
+
}
|
|
12985
|
+
|
|
12857
12986
|
interface AccountProcessingRateForm {
|
|
12858
12987
|
readonly 'query': string;
|
|
12859
12988
|
readonly 'capture': number;
|
|
@@ -13792,6 +13921,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13792
13921
|
readonly 'channel_billed': io.flow.common.v0.models.Price;
|
|
13793
13922
|
readonly 'tax': io.flow.common.v0.models.Price;
|
|
13794
13923
|
readonly 'duty': io.flow.common.v0.models.Price;
|
|
13924
|
+
readonly 'trueup': io.flow.common.v0.models.Price;
|
|
13795
13925
|
readonly 'ending_balance': io.flow.common.v0.models.Price;
|
|
13796
13926
|
}
|
|
13797
13927
|
|
|
@@ -14322,6 +14452,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14322
14452
|
interface ChannelAccount {
|
|
14323
14453
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
14324
14454
|
readonly 'id': string;
|
|
14455
|
+
readonly 'key'?: string;
|
|
14456
|
+
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
14325
14457
|
readonly 'currency': string;
|
|
14326
14458
|
readonly 'updated_at': string;
|
|
14327
14459
|
readonly 'timezone': io.flow.reference.v0.models.Timezone;
|
|
@@ -17045,132 +17177,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17045
17177
|
readonly 'signature_secret': string;
|
|
17046
17178
|
}
|
|
17047
17179
|
|
|
17048
|
-
interface CsvActual {
|
|
17049
|
-
readonly 'id': string;
|
|
17050
|
-
readonly 'currency': string;
|
|
17051
|
-
readonly 'base_amount': number;
|
|
17052
|
-
readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
|
|
17053
|
-
readonly 'total': number;
|
|
17054
|
-
readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
|
|
17055
|
-
readonly 'weight': number;
|
|
17056
|
-
readonly 'ratecard': io.flow.internal.v0.models.CsvActualRatecard;
|
|
17057
|
-
}
|
|
17058
|
-
|
|
17059
|
-
interface CsvActualRatecard {
|
|
17060
|
-
readonly 'base_amount'?: number;
|
|
17061
|
-
}
|
|
17062
|
-
|
|
17063
|
-
interface CsvDimensions {
|
|
17064
|
-
readonly 'unit': io.flow.units.v0.enums.UnitOfLength;
|
|
17065
|
-
readonly 'length': number;
|
|
17066
|
-
readonly 'width': number;
|
|
17067
|
-
readonly 'depth': number;
|
|
17068
|
-
}
|
|
17069
|
-
|
|
17070
|
-
interface CsvFlowRatecard {
|
|
17071
|
-
readonly 'id': string;
|
|
17072
|
-
readonly 'number': string;
|
|
17073
|
-
readonly 'owner': io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
17074
|
-
readonly 'lane': io.flow.internal.v0.models.LaneReference;
|
|
17075
|
-
readonly 'dim_factor': number;
|
|
17076
|
-
readonly 'surcharges': io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
17077
|
-
readonly 'base_amount'?: number;
|
|
17078
|
-
}
|
|
17079
|
-
|
|
17080
|
-
interface CsvFlowRatecardSurcharges {
|
|
17081
|
-
readonly 'fuel'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
17082
|
-
readonly 'remote_area'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
17083
|
-
readonly 'oversize'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
17084
|
-
readonly 'duties_paid'?: io.flow.internal.v0.models.CsvServiceFee;
|
|
17085
|
-
}
|
|
17086
|
-
|
|
17087
|
-
interface CsvGlobalEProposition {
|
|
17088
|
-
readonly 'name': string;
|
|
17089
|
-
}
|
|
17090
|
-
|
|
17091
|
-
interface CsvGlobalEShippingMethod {
|
|
17092
|
-
readonly 'id': string;
|
|
17093
|
-
readonly 'proposition': io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
17094
|
-
}
|
|
17095
|
-
|
|
17096
|
-
interface CsvInput {
|
|
17097
|
-
readonly 'id': string;
|
|
17098
|
-
readonly 'source': io.flow.internal.v0.enums.LabelInputSource;
|
|
17099
|
-
readonly 'currency': string;
|
|
17100
|
-
readonly 'base_amount': number;
|
|
17101
|
-
readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
|
|
17102
|
-
readonly 'total': number;
|
|
17103
|
-
readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
|
|
17104
|
-
readonly 'weight': number;
|
|
17105
|
-
readonly 'variance': number;
|
|
17106
|
-
}
|
|
17107
|
-
|
|
17108
|
-
interface CsvLabel {
|
|
17109
|
-
readonly 'id': string;
|
|
17110
|
-
readonly 'cost': io.flow.internal.v0.models.CsvLabelCost;
|
|
17111
|
-
readonly 'created_at': string;
|
|
17112
|
-
readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
17113
|
-
readonly 'trigger_method'?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
17114
|
-
}
|
|
17115
|
-
|
|
17116
|
-
interface CsvLabelCost {
|
|
17117
|
-
readonly 'amount': number;
|
|
17118
|
-
readonly 'currency': string;
|
|
17119
|
-
readonly 'source': io.flow.label.v0.enums.CostEstimateSource;
|
|
17120
|
-
}
|
|
17121
|
-
|
|
17122
|
-
interface CsvOrder {
|
|
17123
|
-
readonly 'organization': io.flow.internal.v0.models.OrganizationReference;
|
|
17124
|
-
readonly 'number': string;
|
|
17125
|
-
readonly 'destination': io.flow.experience.v0.models.OrderAddress;
|
|
17126
|
-
readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
|
|
17127
|
-
readonly 'tax': io.flow.common.v0.models.Money;
|
|
17128
|
-
readonly 'duty': io.flow.common.v0.models.Money;
|
|
17129
|
-
readonly 'total': io.flow.common.v0.models.Money;
|
|
17130
|
-
readonly 'number_items': number;
|
|
17131
|
-
}
|
|
17132
|
-
|
|
17133
|
-
interface CsvRecord {
|
|
17134
|
-
readonly 'label': io.flow.internal.v0.models.CsvLabel;
|
|
17135
|
-
readonly 'carrier_service_id': string;
|
|
17136
|
-
readonly 'carrier_tracking_number': string;
|
|
17137
|
-
readonly 'order': io.flow.internal.v0.models.CsvOrder;
|
|
17138
|
-
readonly 'flow_ratecard': io.flow.internal.v0.models.CsvFlowRatecard;
|
|
17139
|
-
readonly 'global_e_shipping_method'?: io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
17140
|
-
readonly 'weight': io.flow.internal.v0.models.CsvWeight;
|
|
17141
|
-
readonly 'dimensions': io.flow.internal.v0.models.CsvDimensions;
|
|
17142
|
-
readonly 'input'?: io.flow.internal.v0.models.CsvInput;
|
|
17143
|
-
readonly 'actual'?: io.flow.internal.v0.models.CsvActual;
|
|
17144
|
-
readonly 'variance'?: number;
|
|
17145
|
-
readonly 'deltas': string[];
|
|
17146
|
-
readonly 'outliers': string[];
|
|
17147
|
-
}
|
|
17148
|
-
|
|
17149
|
-
interface CsvServiceFee {
|
|
17150
|
-
readonly 'amount'?: number;
|
|
17151
|
-
readonly 'currency'?: string;
|
|
17152
|
-
readonly 'percentage'?: number;
|
|
17153
|
-
}
|
|
17154
|
-
|
|
17155
|
-
interface CsvSurchargePercentage {
|
|
17156
|
-
readonly 'percentage': number;
|
|
17157
|
-
readonly 'amount': number;
|
|
17158
|
-
}
|
|
17159
|
-
|
|
17160
|
-
interface CsvSurcharges {
|
|
17161
|
-
readonly 'fuel': io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
17162
|
-
readonly 'remote_area': number;
|
|
17163
|
-
readonly 'oversize': number;
|
|
17164
|
-
readonly 'duties_paid': number;
|
|
17165
|
-
}
|
|
17166
|
-
|
|
17167
|
-
interface CsvWeight {
|
|
17168
|
-
readonly 'unit': io.flow.units.v0.enums.UnitOfWeight;
|
|
17169
|
-
readonly 'provided': number;
|
|
17170
|
-
readonly 'dimensional': number;
|
|
17171
|
-
readonly 'lookup': number;
|
|
17172
|
-
}
|
|
17173
|
-
|
|
17174
17180
|
interface CurrencyInternalRate {
|
|
17175
17181
|
readonly 'id': string;
|
|
17176
17182
|
readonly 'organization_id': string;
|
|
@@ -17388,6 +17394,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17388
17394
|
readonly 'authorization_id'?: string;
|
|
17389
17395
|
readonly 'posting_proof_id'?: string;
|
|
17390
17396
|
readonly 'label_tracking_summary_id'?: string;
|
|
17397
|
+
readonly 'shipping_notification_id'?: string;
|
|
17398
|
+
readonly 'external_fulfillment_proof_id'?: string;
|
|
17391
17399
|
}
|
|
17392
17400
|
|
|
17393
17401
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
@@ -18709,6 +18717,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18709
18717
|
interface FlowAccount {
|
|
18710
18718
|
readonly 'source': io.flow.internal.v0.models.AccountSource;
|
|
18711
18719
|
readonly 'id': string;
|
|
18720
|
+
readonly 'key'?: string;
|
|
18721
|
+
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
18712
18722
|
readonly 'currency': string;
|
|
18713
18723
|
readonly 'updated_at': string;
|
|
18714
18724
|
readonly 'timezone': io.flow.reference.v0.models.Timezone;
|
|
@@ -18984,6 +18994,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18984
18994
|
readonly 'shipping': io.flow.internal.v0.models.FulfillmentShipping;
|
|
18985
18995
|
readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
|
|
18986
18996
|
readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
|
|
18997
|
+
readonly 'proof': io.flow.internal.v0.unions.FulfillmentProof;
|
|
18998
|
+
readonly 'responsible_party': io.flow.internal.v0.enums.ResponsibleParty;
|
|
18987
18999
|
readonly 'completes_order': boolean;
|
|
18988
19000
|
readonly 'sequence_number': number;
|
|
18989
19001
|
readonly 'business'?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
@@ -20674,6 +20686,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20674
20686
|
readonly 'label_invoice_request': io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
20675
20687
|
}
|
|
20676
20688
|
|
|
20689
|
+
interface LabelInvoiceResponseFile {
|
|
20690
|
+
readonly 'id': string;
|
|
20691
|
+
readonly 'url': string;
|
|
20692
|
+
readonly 'created_at': string;
|
|
20693
|
+
readonly 'result'?: io.flow.internal.v0.models.LabelInvoiceResponseFileResult;
|
|
20694
|
+
}
|
|
20695
|
+
|
|
20696
|
+
interface LabelInvoiceResponseFileForm {
|
|
20697
|
+
readonly 'url': string;
|
|
20698
|
+
}
|
|
20699
|
+
|
|
20700
|
+
interface LabelInvoiceResponseFileResult {
|
|
20701
|
+
readonly 'processed_at': string;
|
|
20702
|
+
readonly 'number_lines_successful': number;
|
|
20703
|
+
readonly 'number_lines_with_errors': number;
|
|
20704
|
+
readonly 'errors_url'?: string;
|
|
20705
|
+
}
|
|
20706
|
+
|
|
20677
20707
|
interface LabelInvoiceResponseForm {
|
|
20678
20708
|
readonly 'id': string;
|
|
20679
20709
|
readonly 'label_invoice_request_id': string;
|
|
@@ -20766,6 +20796,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20766
20796
|
readonly 'duties_paid'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
20767
20797
|
readonly 'emergency'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
20768
20798
|
readonly 'peak'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
20799
|
+
readonly 'address_correction'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
20769
20800
|
}
|
|
20770
20801
|
|
|
20771
20802
|
interface LabelSurchargeSingleForm {
|
|
@@ -20862,10 +20893,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20862
20893
|
readonly 'region': string;
|
|
20863
20894
|
}
|
|
20864
20895
|
|
|
20865
|
-
interface LaneReference {
|
|
20866
|
-
readonly 'id': string;
|
|
20867
|
-
}
|
|
20868
|
-
|
|
20869
20896
|
interface LevyRateSummary {
|
|
20870
20897
|
readonly 'id': string;
|
|
20871
20898
|
readonly 'number': string;
|
|
@@ -21683,6 +21710,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21683
21710
|
|
|
21684
21711
|
interface OnboardingOrganization {
|
|
21685
21712
|
readonly 'age': number;
|
|
21713
|
+
readonly 'setup_time': number;
|
|
21686
21714
|
readonly 'compliance_approved': boolean;
|
|
21687
21715
|
readonly 'compliance_full_review_required': boolean;
|
|
21688
21716
|
readonly 'application_received': string;
|
|
@@ -21839,6 +21867,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21839
21867
|
readonly 'evidence': io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
21840
21868
|
}
|
|
21841
21869
|
|
|
21870
|
+
interface OrderCombinedShipment {
|
|
21871
|
+
readonly 'id': string;
|
|
21872
|
+
readonly 'label_id': string;
|
|
21873
|
+
readonly 'carrier_id': string;
|
|
21874
|
+
readonly 'service_id': string;
|
|
21875
|
+
readonly 'order_number': string;
|
|
21876
|
+
readonly 'provided_carrier_name'?: string;
|
|
21877
|
+
readonly 'carrier_tracking_number': string;
|
|
21878
|
+
}
|
|
21879
|
+
|
|
21880
|
+
interface OrderCombinedShipmentDeleted {
|
|
21881
|
+
readonly 'discriminator': 'order_combined_shipment_deleted';
|
|
21882
|
+
readonly 'event_id': string;
|
|
21883
|
+
readonly 'timestamp': string;
|
|
21884
|
+
readonly 'organization': string;
|
|
21885
|
+
readonly 'id': string;
|
|
21886
|
+
}
|
|
21887
|
+
|
|
21888
|
+
interface OrderCombinedShipmentForm {
|
|
21889
|
+
readonly 'order_number': string;
|
|
21890
|
+
readonly 'provided_carrier_name'?: string;
|
|
21891
|
+
readonly 'carrier_tracking_number': string;
|
|
21892
|
+
}
|
|
21893
|
+
|
|
21894
|
+
interface OrderCombinedShipmentUpserted {
|
|
21895
|
+
readonly 'discriminator': 'order_combined_shipment_upserted';
|
|
21896
|
+
readonly 'event_id': string;
|
|
21897
|
+
readonly 'timestamp': string;
|
|
21898
|
+
readonly 'organization': string;
|
|
21899
|
+
readonly 'order_combined_shipment': io.flow.internal.v0.models.OrderCombinedShipment;
|
|
21900
|
+
}
|
|
21901
|
+
|
|
21842
21902
|
interface OrderDetail {
|
|
21843
21903
|
readonly 'order': io.flow.experience.v0.models.Order;
|
|
21844
21904
|
readonly 'status': io.flow.experience.v0.enums.OrderStatus;
|
|
@@ -22009,6 +22069,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22009
22069
|
interface OrganizationAccount {
|
|
22010
22070
|
readonly 'organization': io.flow.common.v0.models.OrganizationReference;
|
|
22011
22071
|
readonly 'id': string;
|
|
22072
|
+
readonly 'key'?: string;
|
|
22073
|
+
readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
|
|
22012
22074
|
readonly 'currency': string;
|
|
22013
22075
|
readonly 'updated_at': string;
|
|
22014
22076
|
readonly 'timezone': io.flow.reference.v0.models.Timezone;
|
|
@@ -22244,10 +22306,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22244
22306
|
readonly 'organization_payment_setting': io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
22245
22307
|
}
|
|
22246
22308
|
|
|
22247
|
-
interface OrganizationReference {
|
|
22248
|
-
readonly 'id': string;
|
|
22249
|
-
}
|
|
22250
|
-
|
|
22251
22309
|
interface OrganizationRestrictionNoteForm {
|
|
22252
22310
|
readonly 'note': string;
|
|
22253
22311
|
readonly 'note_type': io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -23642,6 +23700,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23642
23700
|
readonly 'hs_code'?: string;
|
|
23643
23701
|
readonly 'merchant_category_code'?: string;
|
|
23644
23702
|
readonly 'notes': io.flow.internal.v0.models.OrganizationRestrictionStatusNote[];
|
|
23703
|
+
readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
|
|
23704
|
+
readonly 'last_year_domestic_gmv'?: io.flow.common.v0.models.Money;
|
|
23645
23705
|
}
|
|
23646
23706
|
|
|
23647
23707
|
interface RestrictionOrganizationDecisionSummary {
|
|
@@ -24268,6 +24328,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24268
24328
|
readonly 'shopify_tracking_number': io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
24269
24329
|
readonly 'shopify_carrier_service'?: io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
24270
24330
|
readonly 'fulfillment_created_at'?: string;
|
|
24331
|
+
readonly 'flow_label_id'?: string;
|
|
24271
24332
|
}
|
|
24272
24333
|
|
|
24273
24334
|
interface ShopifyMonitoringFulfillmentMissingDetails {
|
|
@@ -24553,6 +24614,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24553
24614
|
readonly 'remote_area': number;
|
|
24554
24615
|
readonly 'oversize': number;
|
|
24555
24616
|
readonly 'ccf': number;
|
|
24617
|
+
readonly 'emergency': number;
|
|
24618
|
+
readonly 'peak': number;
|
|
24556
24619
|
readonly 'total': number;
|
|
24557
24620
|
}
|
|
24558
24621
|
|
|
@@ -24976,12 +25039,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24976
25039
|
readonly 'values': io.flow.internal.v0.models.LabelAliases[];
|
|
24977
25040
|
}
|
|
24978
25041
|
|
|
24979
|
-
interface Surcharge {
|
|
24980
|
-
readonly 'amount'?: number;
|
|
24981
|
-
readonly 'percentage'?: number;
|
|
24982
|
-
readonly 'type': io.flow.internal.v0.enums.SurchargeType;
|
|
24983
|
-
}
|
|
24984
|
-
|
|
24985
25042
|
interface SvbVirtualCardClearing {
|
|
24986
25043
|
readonly 'id': string;
|
|
24987
25044
|
readonly 'virtual_card_id': string;
|
|
@@ -25445,6 +25502,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25445
25502
|
readonly 'created_at': string;
|
|
25446
25503
|
}
|
|
25447
25504
|
|
|
25505
|
+
interface TrueupTransaction {
|
|
25506
|
+
readonly 'discriminator': 'trueup_transaction';
|
|
25507
|
+
readonly 'label_transaction': io.flow.internal.v0.models.TransactionReference;
|
|
25508
|
+
readonly 'id': string;
|
|
25509
|
+
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
25510
|
+
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
25511
|
+
readonly 'posted_at'?: string;
|
|
25512
|
+
readonly 'value': io.flow.common.v0.models.Price;
|
|
25513
|
+
readonly 'description': string;
|
|
25514
|
+
readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
|
|
25515
|
+
readonly 'created_at': string;
|
|
25516
|
+
}
|
|
25517
|
+
|
|
25448
25518
|
interface UnassignedMerchantGuid {
|
|
25449
25519
|
readonly 'id': string;
|
|
25450
25520
|
readonly 'merchant_guid': string;
|
|
@@ -25686,20 +25756,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25686
25756
|
readonly 'created_at': string;
|
|
25687
25757
|
}
|
|
25688
25758
|
|
|
25689
|
-
interface WashCarrierActualFile {
|
|
25690
|
-
readonly 'id': string;
|
|
25691
|
-
readonly 'url': string;
|
|
25692
|
-
readonly 'status': io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
25693
|
-
}
|
|
25694
|
-
|
|
25695
|
-
interface WashCarrierActualFileForm {
|
|
25696
|
-
readonly 'url': string;
|
|
25697
|
-
}
|
|
25698
|
-
|
|
25699
|
-
interface WashExportRequest {
|
|
25700
|
-
readonly 'url': string;
|
|
25701
|
-
}
|
|
25702
|
-
|
|
25703
25759
|
interface WasteElectricalAndElectronicEquipmentComplianceData {
|
|
25704
25760
|
readonly 'discriminator': 'weee';
|
|
25705
25761
|
readonly 'label': string;
|
|
@@ -25836,7 +25892,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25836
25892
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
25837
25893
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
25838
25894
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
25839
|
-
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);
|
|
25895
|
+
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);
|
|
25840
25896
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
25841
25897
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
25842
25898
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -25891,7 +25947,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25891
25947
|
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);
|
|
25892
25948
|
type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
|
|
25893
25949
|
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);
|
|
25894
|
-
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);
|
|
25950
|
+
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);
|
|
25895
25951
|
type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
|
|
25896
25952
|
type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
|
|
25897
25953
|
type Variant = (io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant);
|
|
@@ -26063,7 +26119,6 @@ export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enu
|
|
|
26063
26119
|
export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
|
|
26064
26120
|
export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
|
|
26065
26121
|
export const labelGenerationAddressFailureStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelGenerationAddressFailureStatus>;
|
|
26066
|
-
export const labelInputSource: PropTypes.Requireable<io.flow.internal.v0.enums.LabelInputSource>;
|
|
26067
26122
|
export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
|
|
26068
26123
|
export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
|
|
26069
26124
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
@@ -26162,7 +26217,6 @@ export const statisticType: PropTypes.Requireable<io.flow.internal.v0.enums.Stat
|
|
|
26162
26217
|
export const status: PropTypes.Requireable<io.flow.internal.v0.enums.Status>;
|
|
26163
26218
|
export const subscriptionFrequency: PropTypes.Requireable<io.flow.internal.v0.enums.SubscriptionFrequency>;
|
|
26164
26219
|
export const suggestionAction: PropTypes.Requireable<io.flow.internal.v0.enums.SuggestionAction>;
|
|
26165
|
-
export const surchargeType: PropTypes.Requireable<io.flow.internal.v0.enums.SurchargeType>;
|
|
26166
26220
|
export const tariffEligibilityType: PropTypes.Requireable<io.flow.internal.v0.enums.TariffEligibilityType>;
|
|
26167
26221
|
export const taskProcessorKey: PropTypes.Requireable<io.flow.internal.v0.enums.TaskProcessorKey>;
|
|
26168
26222
|
export const taxCalculationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.TaxCalculationErrorCode>;
|
|
@@ -26173,8 +26227,8 @@ export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26173
26227
|
export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
|
|
26174
26228
|
export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
|
|
26175
26229
|
export const trueUpSurchargeType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueUpSurchargeType>;
|
|
26230
|
+
export const trueupTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TrueupTransactionType>;
|
|
26176
26231
|
export const unclassifiedProductStatus: PropTypes.Requireable<io.flow.internal.v0.enums.UnclassifiedProductStatus>;
|
|
26177
|
-
export const washCarrierActualFileStatus: PropTypes.Requireable<io.flow.internal.v0.enums.WashCarrierActualFileStatus>;
|
|
26178
26232
|
export const acceptance: PropTypes.Requireable<io.flow.internal.v0.models.Acceptance>;
|
|
26179
26233
|
export const accountContact: PropTypes.Requireable<io.flow.internal.v0.models.AccountContact>;
|
|
26180
26234
|
export const accountContactDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountContactDeleted>;
|
|
@@ -26183,8 +26237,8 @@ export const accountContactUpserted: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
26183
26237
|
export const accountDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.AccountDeletedV2>;
|
|
26184
26238
|
export const accountDepositRule: PropTypes.Requireable<io.flow.internal.v0.models.AccountDepositRule>;
|
|
26185
26239
|
export const accountDepositRuleForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountDepositRuleForm>;
|
|
26186
|
-
export const accountForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountForm>;
|
|
26187
26240
|
export const accountOrdersExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.AccountOrdersExportRequest>;
|
|
26241
|
+
export const accountOrigin: PropTypes.Requireable<io.flow.internal.v0.models.AccountOrigin>;
|
|
26188
26242
|
export const accountProcessingRateForm: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRateForm>;
|
|
26189
26243
|
export const accountProcessingRates: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRates>;
|
|
26190
26244
|
export const accountProcessingRatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AccountProcessingRatesDeleted>;
|
|
@@ -26855,22 +26909,6 @@ export const cryptoAccountModificationForm: PropTypes.Requireable<io.flow.intern
|
|
|
26855
26909
|
export const cryptoAccountPutForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAccountPutForm>;
|
|
26856
26910
|
export const cryptoAuthentication: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAuthentication>;
|
|
26857
26911
|
export const cryptoAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.CryptoAuthenticationForm>;
|
|
26858
|
-
export const csvActual: PropTypes.Requireable<io.flow.internal.v0.models.CsvActual>;
|
|
26859
|
-
export const csvActualRatecard: PropTypes.Requireable<io.flow.internal.v0.models.CsvActualRatecard>;
|
|
26860
|
-
export const csvDimensions: PropTypes.Requireable<io.flow.internal.v0.models.CsvDimensions>;
|
|
26861
|
-
export const csvFlowRatecard: PropTypes.Requireable<io.flow.internal.v0.models.CsvFlowRatecard>;
|
|
26862
|
-
export const csvFlowRatecardSurcharges: PropTypes.Requireable<io.flow.internal.v0.models.CsvFlowRatecardSurcharges>;
|
|
26863
|
-
export const csvGlobalEProposition: PropTypes.Requireable<io.flow.internal.v0.models.CsvGlobalEProposition>;
|
|
26864
|
-
export const csvGlobalEShippingMethod: PropTypes.Requireable<io.flow.internal.v0.models.CsvGlobalEShippingMethod>;
|
|
26865
|
-
export const csvInput: PropTypes.Requireable<io.flow.internal.v0.models.CsvInput>;
|
|
26866
|
-
export const csvLabel: PropTypes.Requireable<io.flow.internal.v0.models.CsvLabel>;
|
|
26867
|
-
export const csvLabelCost: PropTypes.Requireable<io.flow.internal.v0.models.CsvLabelCost>;
|
|
26868
|
-
export const csvOrder: PropTypes.Requireable<io.flow.internal.v0.models.CsvOrder>;
|
|
26869
|
-
export const csvRecord: PropTypes.Requireable<io.flow.internal.v0.models.CsvRecord>;
|
|
26870
|
-
export const csvServiceFee: PropTypes.Requireable<io.flow.internal.v0.models.CsvServiceFee>;
|
|
26871
|
-
export const csvSurchargePercentage: PropTypes.Requireable<io.flow.internal.v0.models.CsvSurchargePercentage>;
|
|
26872
|
-
export const csvSurcharges: PropTypes.Requireable<io.flow.internal.v0.models.CsvSurcharges>;
|
|
26873
|
-
export const csvWeight: PropTypes.Requireable<io.flow.internal.v0.models.CsvWeight>;
|
|
26874
26912
|
export const currencyInternalRate: PropTypes.Requireable<io.flow.internal.v0.models.CurrencyInternalRate>;
|
|
26875
26913
|
export const customerPurgeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.CustomerPurgeUpserted>;
|
|
26876
26914
|
export const customerSecret: PropTypes.Requireable<io.flow.internal.v0.models.CustomerSecret>;
|
|
@@ -27296,6 +27334,9 @@ export const labelGenerationSettingsUpserted: PropTypes.Requireable<io.flow.inte
|
|
|
27296
27334
|
export const labelInvoiceRequest: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequest>;
|
|
27297
27335
|
export const labelInvoiceRequestDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequestDeleted>;
|
|
27298
27336
|
export const labelInvoiceRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceRequestUpserted>;
|
|
27337
|
+
export const labelInvoiceResponseFile: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceResponseFile>;
|
|
27338
|
+
export const labelInvoiceResponseFileForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceResponseFileForm>;
|
|
27339
|
+
export const labelInvoiceResponseFileResult: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceResponseFileResult>;
|
|
27299
27340
|
export const labelInvoiceResponseForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelInvoiceResponseForm>;
|
|
27300
27341
|
export const labelMetadata: PropTypes.Requireable<io.flow.internal.v0.models.LabelMetadata>;
|
|
27301
27342
|
export const labelRequestError: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestError>;
|
|
@@ -27320,7 +27361,6 @@ export const labeledContent: PropTypes.Requireable<io.flow.internal.v0.models.La
|
|
|
27320
27361
|
export const labelsPrediction: PropTypes.Requireable<io.flow.internal.v0.models.LabelsPrediction>;
|
|
27321
27362
|
export const landedCostItem: PropTypes.Requireable<io.flow.internal.v0.models.LandedCostItem>;
|
|
27322
27363
|
export const landmark: PropTypes.Requireable<io.flow.internal.v0.models.Landmark>;
|
|
27323
|
-
export const laneReference: PropTypes.Requireable<io.flow.internal.v0.models.LaneReference>;
|
|
27324
27364
|
export const levyRateSummary: PropTypes.Requireable<io.flow.internal.v0.models.LevyRateSummary>;
|
|
27325
27365
|
export const levyRateSummaryUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LevyRateSummaryUpserted>;
|
|
27326
27366
|
export const liability: PropTypes.Requireable<io.flow.internal.v0.models.Liability>;
|
|
@@ -27455,6 +27495,10 @@ export const orderCancellationEvidenceFullyRefundedNotFulfilled: PropTypes.Requi
|
|
|
27455
27495
|
export const orderCancellationEvidenceManual: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceManual>;
|
|
27456
27496
|
export const orderCancellationEvidenceReturnToSender: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationEvidenceReturnToSender>;
|
|
27457
27497
|
export const orderCancellationForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderCancellationForm>;
|
|
27498
|
+
export const orderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.OrderCombinedShipment>;
|
|
27499
|
+
export const orderCombinedShipmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderCombinedShipmentDeleted>;
|
|
27500
|
+
export const orderCombinedShipmentForm: PropTypes.Requireable<io.flow.internal.v0.models.OrderCombinedShipmentForm>;
|
|
27501
|
+
export const orderCombinedShipmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderCombinedShipmentUpserted>;
|
|
27458
27502
|
export const orderDetail: PropTypes.Requireable<io.flow.internal.v0.models.OrderDetail>;
|
|
27459
27503
|
export const orderFulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentDeleted>;
|
|
27460
27504
|
export const orderFulfillmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrderFulfillmentUpserted>;
|
|
@@ -27509,7 +27553,6 @@ export const organizationPaymentSettingDeleted: PropTypes.Requireable<io.flow.in
|
|
|
27509
27553
|
export const organizationPaymentSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingForm>;
|
|
27510
27554
|
export const organizationPaymentSettingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingUpserted>;
|
|
27511
27555
|
export const organizationPaymentSettingVersion: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationPaymentSettingVersion>;
|
|
27512
|
-
export const organizationReference: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationReference>;
|
|
27513
27556
|
export const organizationRestrictionNoteForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionNoteForm>;
|
|
27514
27557
|
export const organizationRestrictionScreeningDecisionForm: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionScreeningDecisionForm>;
|
|
27515
27558
|
export const organizationRestrictionSnapshot: PropTypes.Requireable<io.flow.internal.v0.models.OrganizationRestrictionSnapshot>;
|
|
@@ -27884,7 +27927,6 @@ export const submittedOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
27884
27927
|
export const subscription: PropTypes.Requireable<io.flow.internal.v0.models.Subscription>;
|
|
27885
27928
|
export const subscriptionTransaction: PropTypes.Requireable<io.flow.internal.v0.models.SubscriptionTransaction>;
|
|
27886
27929
|
export const supportedLabels: PropTypes.Requireable<io.flow.internal.v0.models.SupportedLabels>;
|
|
27887
|
-
export const surcharge: PropTypes.Requireable<io.flow.internal.v0.models.Surcharge>;
|
|
27888
27930
|
export const svbVirtualCardClearing: PropTypes.Requireable<io.flow.internal.v0.models.SvbVirtualCardClearing>;
|
|
27889
27931
|
export const svbVirtualCardClearingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SvbVirtualCardClearingDeleted>;
|
|
27890
27932
|
export const svbVirtualCardClearingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SvbVirtualCardClearingUpserted>;
|
|
@@ -27946,6 +27988,7 @@ export const transferTransactionUpserted: PropTypes.Requireable<io.flow.internal
|
|
|
27946
27988
|
export const transferTransactionUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TransferTransactionUpsertedV2>;
|
|
27947
27989
|
export const tribe: PropTypes.Requireable<io.flow.internal.v0.models.Tribe>;
|
|
27948
27990
|
export const trueUpLabelSummary: PropTypes.Requireable<io.flow.internal.v0.models.TrueUpLabelSummary>;
|
|
27991
|
+
export const trueupTransaction: PropTypes.Requireable<io.flow.internal.v0.models.TrueupTransaction>;
|
|
27949
27992
|
export const unassignedMerchantGuid: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuid>;
|
|
27950
27993
|
export const unassignedMerchantGuidDeleted: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuidDeleted>;
|
|
27951
27994
|
export const unassignedMerchantGuidUpserted: PropTypes.Requireable<io.flow.internal.v0.models.UnassignedMerchantGuidUpserted>;
|
|
@@ -27979,9 +28022,6 @@ export const virtualCardProvider: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27979
28022
|
export const virtualCardProviderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardProviderDeleted>;
|
|
27980
28023
|
export const virtualCardProviderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardProviderUpserted>;
|
|
27981
28024
|
export const virtualCardTransaction: PropTypes.Requireable<io.flow.internal.v0.models.VirtualCardTransaction>;
|
|
27982
|
-
export const washCarrierActualFile: PropTypes.Requireable<io.flow.internal.v0.models.WashCarrierActualFile>;
|
|
27983
|
-
export const washCarrierActualFileForm: PropTypes.Requireable<io.flow.internal.v0.models.WashCarrierActualFileForm>;
|
|
27984
|
-
export const washExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.WashExportRequest>;
|
|
27985
28025
|
export const wasteElectricalAndElectronicEquipmentComplianceData: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData>;
|
|
27986
28026
|
export const wasteElectricalAndElectronicEquipmentComplianceForm: PropTypes.Requireable<io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm>;
|
|
27987
28027
|
export const webhook: PropTypes.Requireable<io.flow.internal.v0.models.Webhook>;
|