@flowio/types 11.24.89 → 11.24.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +422 -92
- package/dist/api.d.ts +133 -10
- package/package.json +2 -2
- package/src/api-internal.ts +565 -118
- package/src/api.ts +183 -9
package/src/api-internal.ts
CHANGED
|
@@ -293,6 +293,7 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
293
293
|
readonly number: string;
|
|
294
294
|
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
295
295
|
readonly country_of_origin?: string;
|
|
296
|
+
readonly tarriff_code?: string;
|
|
296
297
|
readonly inferred?: boolean;
|
|
297
298
|
}
|
|
298
299
|
|
|
@@ -330,6 +331,11 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
330
331
|
readonly total: number;
|
|
331
332
|
}
|
|
332
333
|
|
|
334
|
+
interface OrderReference {
|
|
335
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
336
|
+
readonly number: string;
|
|
337
|
+
}
|
|
338
|
+
|
|
333
339
|
interface OrderSummary {
|
|
334
340
|
readonly id: string;
|
|
335
341
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -340,6 +346,16 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
340
346
|
readonly currency: string;
|
|
341
347
|
}
|
|
342
348
|
|
|
349
|
+
interface PendingOrder {
|
|
350
|
+
readonly id: string;
|
|
351
|
+
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
352
|
+
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
353
|
+
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
354
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
355
|
+
readonly sequence_number: number;
|
|
356
|
+
readonly posting_cutoff: string;
|
|
357
|
+
}
|
|
358
|
+
|
|
343
359
|
interface RemittanceResponsibility {
|
|
344
360
|
readonly tax: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
345
361
|
readonly duty: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
@@ -349,8 +365,8 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
349
365
|
readonly id: string;
|
|
350
366
|
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
351
367
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
352
|
-
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
353
368
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
369
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
354
370
|
readonly sequence_number: number;
|
|
355
371
|
readonly posting_cutoff: string;
|
|
356
372
|
readonly trigger: io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
@@ -2533,6 +2549,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2533
2549
|
readonly fx_fee_description?: string;
|
|
2534
2550
|
readonly duty_guarantee_fee?: number;
|
|
2535
2551
|
readonly duty_guarantee_fee_description?: string;
|
|
2552
|
+
readonly negative_balance_fee?: number;
|
|
2553
|
+
readonly negative_balance_fee_description?: string;
|
|
2536
2554
|
}
|
|
2537
2555
|
|
|
2538
2556
|
interface BillingCsvProcessingTransactionDelivery {
|
|
@@ -2608,6 +2626,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2608
2626
|
readonly processing: number;
|
|
2609
2627
|
readonly rate_lock: number;
|
|
2610
2628
|
readonly transfer: number;
|
|
2629
|
+
readonly negative_balance: number;
|
|
2611
2630
|
}
|
|
2612
2631
|
|
|
2613
2632
|
interface BillingCsvTransactionIdentifiers {
|
|
@@ -2628,6 +2647,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2628
2647
|
readonly label_created_at: string;
|
|
2629
2648
|
readonly carrier_id: string;
|
|
2630
2649
|
readonly carrier_tracking_number: string;
|
|
2650
|
+
readonly revenue_share_percentage: number;
|
|
2631
2651
|
readonly outbound_transaction_id?: string;
|
|
2632
2652
|
}
|
|
2633
2653
|
|
|
@@ -2944,7 +2964,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
2944
2964
|
| 'pay_now'
|
|
2945
2965
|
| 'pay_with_financing'
|
|
2946
2966
|
| 'pay_in_installments';
|
|
2947
|
-
type PaymentMethodType = 'card' | 'card_present';
|
|
2967
|
+
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
2948
2968
|
type PaymentOutcomeType =
|
|
2949
2969
|
| 'authorized'
|
|
2950
2970
|
| 'manual_review'
|
|
@@ -3300,6 +3320,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3300
3320
|
readonly marketplace_seller_info?: io.flow.stripe.v0.models.KlarnaMarketplaceSellerInfo[];
|
|
3301
3321
|
}
|
|
3302
3322
|
|
|
3323
|
+
interface KlarnaDobForm {
|
|
3324
|
+
readonly day: number;
|
|
3325
|
+
readonly month: number;
|
|
3326
|
+
readonly year: number;
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3303
3329
|
interface KlarnaMarketplaceSellerInfo {
|
|
3304
3330
|
readonly sub_merchant_id?: string;
|
|
3305
3331
|
readonly product_category?: string;
|
|
@@ -3309,6 +3335,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3309
3335
|
readonly additional_owners?: io.flow.stripe.v0.models.Owner[];
|
|
3310
3336
|
}
|
|
3311
3337
|
|
|
3338
|
+
interface MarketplaceSellerInfo {
|
|
3339
|
+
readonly name: string;
|
|
3340
|
+
readonly id?: string;
|
|
3341
|
+
readonly product_category?: string;
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3312
3344
|
interface Masterpass {
|
|
3313
3345
|
readonly type: 'masterpass';
|
|
3314
3346
|
readonly masterpass: io.flow.stripe.v0.models.MasterpassInformation;
|
|
@@ -3397,6 +3429,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3397
3429
|
readonly verified_phone?: string;
|
|
3398
3430
|
}
|
|
3399
3431
|
|
|
3432
|
+
interface PaymentDetails {
|
|
3433
|
+
readonly marketplace_seller_info?: io.flow.stripe.v0.models.MarketplaceSellerInfo;
|
|
3434
|
+
}
|
|
3435
|
+
|
|
3400
3436
|
interface PaymentIntent {
|
|
3401
3437
|
readonly id: string;
|
|
3402
3438
|
readonly object: string;
|
|
@@ -3521,6 +3557,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3521
3557
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3522
3558
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
3523
3559
|
readonly card_present?: any /*object*/;
|
|
3560
|
+
readonly klarna?: any /*object*/;
|
|
3524
3561
|
readonly created: number;
|
|
3525
3562
|
readonly customer?: string;
|
|
3526
3563
|
readonly livemode: boolean;
|
|
@@ -3561,6 +3598,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3561
3598
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
3562
3599
|
}
|
|
3563
3600
|
|
|
3601
|
+
interface PaymentMethodDataKlarna {
|
|
3602
|
+
readonly type: 'klarna';
|
|
3603
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3604
|
+
readonly metadata?: any /*object*/;
|
|
3605
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3606
|
+
}
|
|
3607
|
+
|
|
3564
3608
|
interface PaymentMethodDetailsCard {
|
|
3565
3609
|
readonly type: 'card';
|
|
3566
3610
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -3609,8 +3653,20 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3609
3653
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
3610
3654
|
}
|
|
3611
3655
|
|
|
3656
|
+
interface PaymentMethodFormKlarna {
|
|
3657
|
+
readonly type: 'klarna';
|
|
3658
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
3659
|
+
readonly metadata?: any /*object*/;
|
|
3660
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
3661
|
+
}
|
|
3662
|
+
|
|
3663
|
+
interface PaymentMethodKlarnaForm {
|
|
3664
|
+
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
3665
|
+
}
|
|
3666
|
+
|
|
3612
3667
|
interface PaymentMethodOptions {
|
|
3613
3668
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
3669
|
+
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
3614
3670
|
}
|
|
3615
3671
|
|
|
3616
3672
|
interface PaymentMethodOptionsCard {
|
|
@@ -3630,6 +3686,21 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3630
3686
|
|
|
3631
3687
|
interface PaymentMethodOptionsForm {
|
|
3632
3688
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
3689
|
+
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
interface PaymentMethodOptionsKlarna {
|
|
3693
|
+
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
3694
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
3695
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3696
|
+
readonly payment_details?: io.flow.stripe.v0.models.PaymentDetails;
|
|
3697
|
+
}
|
|
3698
|
+
|
|
3699
|
+
interface PaymentMethodOptionsKlarnaForm {
|
|
3700
|
+
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
3701
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
3702
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3703
|
+
readonly payment_details?: io.flow.stripe.v0.models.PaymentDetails;
|
|
3633
3704
|
}
|
|
3634
3705
|
|
|
3635
3706
|
interface PaymentOutcome {
|
|
@@ -3930,11 +4001,15 @@ declare namespace io.flow.stripe.v0.unions {
|
|
|
3930
4001
|
| io.flow.stripe.v0.models.Masterpass
|
|
3931
4002
|
| io.flow.stripe.v0.models.ApplePay
|
|
3932
4003
|
| io.flow.stripe.v0.models.VisaCheckout;
|
|
3933
|
-
type PaymentMethodData =
|
|
4004
|
+
type PaymentMethodData =
|
|
4005
|
+
| io.flow.stripe.v0.models.PaymentMethodDataCard
|
|
4006
|
+
| io.flow.stripe.v0.models.PaymentMethodDataKlarna;
|
|
3934
4007
|
type PaymentMethodDetails =
|
|
3935
4008
|
| io.flow.stripe.v0.models.PaymentMethodDetailsCard
|
|
3936
4009
|
| io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
3937
|
-
type PaymentMethodForm =
|
|
4010
|
+
type PaymentMethodForm =
|
|
4011
|
+
| io.flow.stripe.v0.models.PaymentMethodFormCard
|
|
4012
|
+
| io.flow.stripe.v0.models.PaymentMethodFormKlarna;
|
|
3938
4013
|
}
|
|
3939
4014
|
|
|
3940
4015
|
declare namespace io.flow.customer.v0.enums {
|
|
@@ -4045,7 +4120,11 @@ declare namespace io.flow.label.v0.enums {
|
|
|
4045
4120
|
| 'flow_simulation_sync'
|
|
4046
4121
|
| 'autogenerated';
|
|
4047
4122
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
4048
|
-
type PackageDimensionsSource =
|
|
4123
|
+
type PackageDimensionsSource =
|
|
4124
|
+
| 'provided'
|
|
4125
|
+
| 'item_dimensions_estimated'
|
|
4126
|
+
| 'dimensions_estimated'
|
|
4127
|
+
| 'default_item_dimensions_estimated';
|
|
4049
4128
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
4050
4129
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
4051
4130
|
}
|
|
@@ -9476,6 +9555,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9476
9555
|
readonly channel_id: string;
|
|
9477
9556
|
readonly external_order_reference: string;
|
|
9478
9557
|
readonly payment_request_id?: string;
|
|
9558
|
+
readonly order_edit_payment_request_ids?: string[];
|
|
9479
9559
|
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
9480
9560
|
readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
9481
9561
|
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -10173,7 +10253,7 @@ declare namespace io.flow.billing.reporting.v0.enums {
|
|
|
10173
10253
|
| 'non_channel_payment_bank_account'
|
|
10174
10254
|
| 'scheduled_payment';
|
|
10175
10255
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
10176
|
-
type RevenueRecordType = 'sales' | 'refund';
|
|
10256
|
+
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
10177
10257
|
}
|
|
10178
10258
|
|
|
10179
10259
|
declare namespace io.flow.billing.reporting.v0.models {
|
|
@@ -12829,6 +12909,17 @@ declare namespace io.flow.payment.request.bundle.v0.models {
|
|
|
12829
12909
|
}
|
|
12830
12910
|
|
|
12831
12911
|
declare namespace io.flow.ratecard.v0.models {
|
|
12912
|
+
interface AdditionalHandlingServiceFee {
|
|
12913
|
+
readonly discriminator: 'additional_handling_service_fee';
|
|
12914
|
+
readonly length_girth_threshold?: number;
|
|
12915
|
+
readonly length_threshold?: number;
|
|
12916
|
+
readonly width_threshold?: number;
|
|
12917
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
12918
|
+
readonly weight_threshold?: number;
|
|
12919
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
12920
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
12921
|
+
}
|
|
12922
|
+
|
|
12832
12923
|
interface CrossdockRatecardFee {
|
|
12833
12924
|
readonly discriminator: 'crossdock_ratecard_fee';
|
|
12834
12925
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -12873,6 +12964,17 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12873
12964
|
readonly ends_at?: string;
|
|
12874
12965
|
}
|
|
12875
12966
|
|
|
12967
|
+
interface EeiFilingRatecardFee {
|
|
12968
|
+
readonly discriminator: 'eei_filing_ratecard_fee';
|
|
12969
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
12970
|
+
}
|
|
12971
|
+
|
|
12972
|
+
interface EeiFilingServiceFee {
|
|
12973
|
+
readonly discriminator: 'eei_filing_service_fee';
|
|
12974
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
12975
|
+
readonly value_threshold: io.flow.common.v0.models.Money;
|
|
12976
|
+
}
|
|
12977
|
+
|
|
12876
12978
|
interface EmergencySituationSurchargeRatecardFee {
|
|
12877
12979
|
readonly discriminator: 'emergency_situation_surcharge_ratecard_fee';
|
|
12878
12980
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -12898,6 +13000,31 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12898
13000
|
readonly unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
12899
13001
|
}
|
|
12900
13002
|
|
|
13003
|
+
interface FixedCurrencyConversionRatecardFee {
|
|
13004
|
+
readonly discriminator: 'fixed_currency_conversion_ratecard_fee';
|
|
13005
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
13006
|
+
}
|
|
13007
|
+
|
|
13008
|
+
interface FixedCurrencyConversionServiceFee {
|
|
13009
|
+
readonly discriminator: 'fixed_currency_conversion_service_fee';
|
|
13010
|
+
readonly conditions: io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
13011
|
+
}
|
|
13012
|
+
|
|
13013
|
+
interface FixedDdpRatecardFee {
|
|
13014
|
+
readonly discriminator: 'fixed_ddp_ratecard_fee';
|
|
13015
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
13016
|
+
}
|
|
13017
|
+
|
|
13018
|
+
interface FixedDdpServiceFee {
|
|
13019
|
+
readonly discriminator: 'fixed_ddp_service_fee';
|
|
13020
|
+
readonly conditions: io.flow.ratecard.v0.models.FixedFeeCondition[];
|
|
13021
|
+
}
|
|
13022
|
+
|
|
13023
|
+
interface FixedFeeCondition {
|
|
13024
|
+
readonly countries: string[];
|
|
13025
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
13026
|
+
}
|
|
13027
|
+
|
|
12901
13028
|
interface FuelSurchargeAmountByWeightServiceFee {
|
|
12902
13029
|
readonly discriminator: 'fuel_surcharge_amount_by_weight_service_fee';
|
|
12903
13030
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -12968,6 +13095,15 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12968
13095
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
12969
13096
|
}
|
|
12970
13097
|
|
|
13098
|
+
interface LargePackageServiceFee {
|
|
13099
|
+
readonly discriminator: 'large_package_service_fee';
|
|
13100
|
+
readonly length_girth_threshold?: number;
|
|
13101
|
+
readonly dimensional_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13102
|
+
readonly weight_threshold?: number;
|
|
13103
|
+
readonly weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13104
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
13105
|
+
}
|
|
13106
|
+
|
|
12971
13107
|
interface OversizePieceSurchargeRatecardFee {
|
|
12972
13108
|
readonly discriminator: 'oversize_piece_surcharge_ratecard_fee';
|
|
12973
13109
|
readonly dimensional_threshold?: number;
|
|
@@ -13219,6 +13355,12 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13219
13355
|
readonly ratecard: io.flow.ratecard.v0.models.Ratecard;
|
|
13220
13356
|
}
|
|
13221
13357
|
|
|
13358
|
+
interface RemoteAreaByWeightServiceFee {
|
|
13359
|
+
readonly discriminator: 'remote_area_by_weight_service_fee';
|
|
13360
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
13361
|
+
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13362
|
+
}
|
|
13363
|
+
|
|
13222
13364
|
interface RemoteAreaRatecardFee {
|
|
13223
13365
|
readonly discriminator: 'remote_area_ratecard_fee';
|
|
13224
13366
|
readonly amount: io.flow.common.v0.models.Money;
|
|
@@ -13234,6 +13376,17 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13234
13376
|
readonly amount: number;
|
|
13235
13377
|
}
|
|
13236
13378
|
|
|
13379
|
+
interface SecurityRatecardFee {
|
|
13380
|
+
readonly discriminator: 'security_ratecard_fee';
|
|
13381
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
13382
|
+
}
|
|
13383
|
+
|
|
13384
|
+
interface SecurityServiceFee {
|
|
13385
|
+
readonly discriminator: 'security_service_fee';
|
|
13386
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
13387
|
+
readonly countries: string[];
|
|
13388
|
+
}
|
|
13389
|
+
|
|
13237
13390
|
interface ShipmentWindow {
|
|
13238
13391
|
readonly from: number;
|
|
13239
13392
|
readonly to: number;
|
|
@@ -13258,7 +13411,11 @@ declare namespace io.flow.ratecard.v0.unions {
|
|
|
13258
13411
|
| io.flow.ratecard.v0.models.RemoteAreaRatecardFee
|
|
13259
13412
|
| io.flow.ratecard.v0.models.EmergencySituationSurchargeRatecardFee
|
|
13260
13413
|
| io.flow.ratecard.v0.models.PeakSurchargeRatecardFee
|
|
13261
|
-
| io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee
|
|
13414
|
+
| io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeRatecardFee
|
|
13415
|
+
| io.flow.ratecard.v0.models.SecurityRatecardFee
|
|
13416
|
+
| io.flow.ratecard.v0.models.EeiFilingRatecardFee
|
|
13417
|
+
| io.flow.ratecard.v0.models.FixedDdpRatecardFee
|
|
13418
|
+
| io.flow.ratecard.v0.models.FixedCurrencyConversionRatecardFee;
|
|
13262
13419
|
type ServiceFee =
|
|
13263
13420
|
| io.flow.ratecard.v0.models.FuelSurchargeServiceFee
|
|
13264
13421
|
| io.flow.ratecard.v0.models.FuelSurchargeAmountByWeightServiceFee
|
|
@@ -13267,7 +13424,14 @@ declare namespace io.flow.ratecard.v0.unions {
|
|
|
13267
13424
|
| io.flow.ratecard.v0.models.PeakSurchargeServiceFee
|
|
13268
13425
|
| io.flow.ratecard.v0.models.PeakSurchargeByWeightServiceFee
|
|
13269
13426
|
| io.flow.ratecard.v0.models.DutiesTaxesPaidSurchargeServiceFee
|
|
13270
|
-
| io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee
|
|
13427
|
+
| io.flow.ratecard.v0.models.OversizePieceSurchargeServiceFee
|
|
13428
|
+
| io.flow.ratecard.v0.models.RemoteAreaByWeightServiceFee
|
|
13429
|
+
| io.flow.ratecard.v0.models.AdditionalHandlingServiceFee
|
|
13430
|
+
| io.flow.ratecard.v0.models.LargePackageServiceFee
|
|
13431
|
+
| io.flow.ratecard.v0.models.SecurityServiceFee
|
|
13432
|
+
| io.flow.ratecard.v0.models.FixedDdpServiceFee
|
|
13433
|
+
| io.flow.ratecard.v0.models.FixedCurrencyConversionServiceFee
|
|
13434
|
+
| io.flow.ratecard.v0.models.EeiFilingServiceFee;
|
|
13271
13435
|
}
|
|
13272
13436
|
|
|
13273
13437
|
declare namespace io.flow.token.v0.models {
|
|
@@ -13827,7 +13991,11 @@ declare namespace io.flow.trueup.v0.enums {
|
|
|
13827
13991
|
| 'duties_paid'
|
|
13828
13992
|
| 'emergency'
|
|
13829
13993
|
| 'peak'
|
|
13830
|
-
| 'address_correction'
|
|
13994
|
+
| 'address_correction'
|
|
13995
|
+
| 'security'
|
|
13996
|
+
| 'eei_filing'
|
|
13997
|
+
| 'fixed_ddp'
|
|
13998
|
+
| 'fixed_currency_conversion';
|
|
13831
13999
|
}
|
|
13832
14000
|
|
|
13833
14001
|
declare namespace io.flow.trueup.v0.models {
|
|
@@ -14905,6 +15073,7 @@ declare namespace io.flow.permission.v0.enums {
|
|
|
14905
15073
|
| 'organization_fulfillment'
|
|
14906
15074
|
| 'organization_marketing'
|
|
14907
15075
|
| 'organization_finance'
|
|
15076
|
+
| 'organization_classification'
|
|
14908
15077
|
| 'flow_operations'
|
|
14909
15078
|
| 'channel_admin'
|
|
14910
15079
|
| 'channel_organization_admin';
|
|
@@ -15068,6 +15237,7 @@ declare namespace io.flow.item.v0.models {
|
|
|
15068
15237
|
}
|
|
15069
15238
|
|
|
15070
15239
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
15240
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
15071
15241
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
15072
15242
|
type AccountType = 'channel' | 'organization';
|
|
15073
15243
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -15118,7 +15288,6 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
15118
15288
|
| 'trueup'
|
|
15119
15289
|
| 'carrier_charge'
|
|
15120
15290
|
| 'all';
|
|
15121
|
-
type BillingStatementBatchFileKey = 'summary';
|
|
15122
15291
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
15123
15292
|
type BillingTransactionType =
|
|
15124
15293
|
| 'manual'
|
|
@@ -15143,7 +15312,11 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
15143
15312
|
| 'duty'
|
|
15144
15313
|
| 'trueup'
|
|
15145
15314
|
| 'carrier_charge';
|
|
15146
|
-
type CarrierChargeTransactionType =
|
|
15315
|
+
type CarrierChargeTransactionType =
|
|
15316
|
+
| 'adjustment'
|
|
15317
|
+
| 'reversal'
|
|
15318
|
+
| 'charge'
|
|
15319
|
+
| 'revenue_share';
|
|
15147
15320
|
type ChannelBilledTransactionType =
|
|
15148
15321
|
| 'adjustment'
|
|
15149
15322
|
| 'reversal'
|
|
@@ -15221,6 +15394,17 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15221
15394
|
readonly country: string;
|
|
15222
15395
|
}
|
|
15223
15396
|
|
|
15397
|
+
interface AccountPaymentHold {
|
|
15398
|
+
readonly id: string;
|
|
15399
|
+
readonly account: io.flow.billing.internal.v0.models.SimpleAccountReference;
|
|
15400
|
+
readonly reason: io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
|
|
15401
|
+
}
|
|
15402
|
+
|
|
15403
|
+
interface AccountPaymentHoldForm {
|
|
15404
|
+
readonly account_id: string;
|
|
15405
|
+
readonly reason: io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
|
|
15406
|
+
}
|
|
15407
|
+
|
|
15224
15408
|
interface AccountProcessingRateForm {
|
|
15225
15409
|
readonly query: string;
|
|
15226
15410
|
readonly capture: number;
|
|
@@ -15259,7 +15443,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15259
15443
|
readonly merchant_of_record_fee?: number;
|
|
15260
15444
|
readonly duty_guarantee_fee?: number;
|
|
15261
15445
|
readonly transfer_fee?: number;
|
|
15262
|
-
readonly
|
|
15446
|
+
readonly negative_balance_fee?: number;
|
|
15263
15447
|
readonly order_service_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
15264
15448
|
readonly label_fees?: io.flow.billing.internal.v0.models.AccountSettingLabelFees;
|
|
15265
15449
|
readonly charge_label_cost_directly: boolean;
|
|
@@ -15444,6 +15628,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15444
15628
|
readonly b2b_tax_remittance_days?: number;
|
|
15445
15629
|
readonly mor_fee?: number;
|
|
15446
15630
|
readonly duty_guarantee_fee?: number;
|
|
15631
|
+
readonly negative_balance_fee?: number;
|
|
15447
15632
|
readonly order_service_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
15448
15633
|
readonly label_fee?: io.flow.billing.internal.v0.models.TieredFee;
|
|
15449
15634
|
}
|
|
@@ -15454,20 +15639,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15454
15639
|
readonly url: string;
|
|
15455
15640
|
}
|
|
15456
15641
|
|
|
15457
|
-
interface BillingStatementBatch {
|
|
15458
|
-
readonly id: string;
|
|
15459
|
-
}
|
|
15460
|
-
|
|
15461
|
-
interface BillingStatementBatchReference {
|
|
15462
|
-
readonly id: string;
|
|
15463
|
-
}
|
|
15464
|
-
|
|
15465
|
-
interface BillingStatementBatchStatement {
|
|
15466
|
-
readonly id: string;
|
|
15467
|
-
readonly batch: io.flow.billing.internal.v0.models.BillingStatementBatchReference;
|
|
15468
|
-
readonly statement: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
15469
|
-
}
|
|
15470
|
-
|
|
15471
15642
|
interface BillingStatementReference {
|
|
15472
15643
|
readonly id: string;
|
|
15473
15644
|
}
|
|
@@ -15731,6 +15902,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15731
15902
|
readonly fx?: io.flow.billing.internal.v0.models.Fee;
|
|
15732
15903
|
readonly duty_guarantee?: io.flow.billing.internal.v0.models.Fee;
|
|
15733
15904
|
readonly transfer?: io.flow.billing.internal.v0.models.Fee;
|
|
15905
|
+
readonly negative_balance?: io.flow.billing.internal.v0.models.Fee;
|
|
15734
15906
|
}
|
|
15735
15907
|
|
|
15736
15908
|
interface FinanceBankAccount {
|
|
@@ -15771,6 +15943,14 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
15771
15943
|
readonly created_at: string;
|
|
15772
15944
|
}
|
|
15773
15945
|
|
|
15946
|
+
interface FlowBillingStatement {
|
|
15947
|
+
readonly id: string;
|
|
15948
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
15949
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
15950
|
+
readonly totals: io.flow.billing.internal.v0.models.BillingStatementTotals;
|
|
15951
|
+
readonly attachments: io.flow.billing.internal.v0.models.BillingStatementAttachment[];
|
|
15952
|
+
}
|
|
15953
|
+
|
|
15774
15954
|
interface FxFee {
|
|
15775
15955
|
readonly base: io.flow.common.v0.models.Money;
|
|
15776
15956
|
readonly local: io.flow.common.v0.models.Money;
|
|
@@ -18023,6 +18203,7 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
18023
18203
|
}
|
|
18024
18204
|
|
|
18025
18205
|
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
18206
|
+
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
18026
18207
|
type MerchantRejectedReason =
|
|
18027
18208
|
| 'merchant_ubo_is_pep'
|
|
18028
18209
|
| 'merchant_catalog_is_unsupportable'
|
|
@@ -18032,7 +18213,8 @@ declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
|
18032
18213
|
| 'street_address_is_po_box_3pl'
|
|
18033
18214
|
| 'business_street_address_is_blank'
|
|
18034
18215
|
| 'business_street_address_is_po_box'
|
|
18035
|
-
| 'exception_merchant'
|
|
18216
|
+
| 'exception_merchant'
|
|
18217
|
+
| 'application_missing';
|
|
18036
18218
|
}
|
|
18037
18219
|
|
|
18038
18220
|
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
@@ -18059,6 +18241,11 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
18059
18241
|
readonly reason: string;
|
|
18060
18242
|
}
|
|
18061
18243
|
|
|
18244
|
+
interface MerchantDisabled {
|
|
18245
|
+
readonly discriminator: 'merchant_disabled';
|
|
18246
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantDisabledReason;
|
|
18247
|
+
}
|
|
18248
|
+
|
|
18062
18249
|
interface MerchantRejected {
|
|
18063
18250
|
readonly discriminator: 'merchant_rejected';
|
|
18064
18251
|
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
@@ -18109,7 +18296,8 @@ declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
|
18109
18296
|
| io.flow.organization.onboarding.state.v0.models.SetupBlocked
|
|
18110
18297
|
| io.flow.organization.onboarding.state.v0.models.SetupCompleted
|
|
18111
18298
|
| io.flow.organization.onboarding.state.v0.models.MerchantActivated
|
|
18112
|
-
| io.flow.organization.onboarding.state.v0.models.MerchantDeactivated
|
|
18299
|
+
| io.flow.organization.onboarding.state.v0.models.MerchantDeactivated
|
|
18300
|
+
| io.flow.organization.onboarding.state.v0.models.MerchantDisabled;
|
|
18113
18301
|
}
|
|
18114
18302
|
|
|
18115
18303
|
declare namespace io.flow.fraud.v0.enums {
|
|
@@ -18485,6 +18673,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
18485
18673
|
}
|
|
18486
18674
|
|
|
18487
18675
|
declare namespace io.flow.internal.v0.enums {
|
|
18676
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
18488
18677
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
18489
18678
|
type AccountType = 'channel' | 'organization';
|
|
18490
18679
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
@@ -18576,6 +18765,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18576
18765
|
| 'refund_transactions_ignored_previously_processed_count'
|
|
18577
18766
|
| 'refund_queued_count'
|
|
18578
18767
|
| 'refund_transactions_total'
|
|
18768
|
+
| 'refund_transactions_succeeded_then_failed_count'
|
|
18769
|
+
| 'refund_transactions_succeeded_then_failed_total'
|
|
18579
18770
|
| 'reversal_order_cancellations_transactions_count'
|
|
18580
18771
|
| 'reversal_order_cancellations_transactions_total'
|
|
18581
18772
|
| 'reversal_external_fulfillment_transactions_count'
|
|
@@ -18602,8 +18793,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18602
18793
|
| 'queued_refund_unprocessed_count'
|
|
18603
18794
|
| 'queued_label_invoice_request_unprocessed_count'
|
|
18604
18795
|
| 'queued_other_unprocessed_count'
|
|
18605
|
-
| '
|
|
18606
|
-
| '
|
|
18796
|
+
| 'task_snooze_count'
|
|
18797
|
+
| 'task_snooze_ending_in_48_hours_count'
|
|
18607
18798
|
| 'payouts_scheduled_count'
|
|
18608
18799
|
| 'payouts_scheduled_total'
|
|
18609
18800
|
| 'payouts_sent_count'
|
|
@@ -18627,7 +18818,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18627
18818
|
| 'negative_balance_total'
|
|
18628
18819
|
| 'negative_balance_total_with_order_in_past_30_days'
|
|
18629
18820
|
| 'negative_balance_total_without_order_in_past_30_days'
|
|
18630
|
-
| 'negative_balance_single_account_max'
|
|
18821
|
+
| 'negative_balance_single_account_max'
|
|
18822
|
+
| 'negative_balance_fee_total'
|
|
18823
|
+
| 'accounts_with_payment_holds_count'
|
|
18824
|
+
| 'accounts_with_payment_holds_pending_payment_promise_count'
|
|
18825
|
+
| 'accounts_with_payment_holds_pending_payment_promise_total'
|
|
18826
|
+
| 'accounts_with_final_statements_count'
|
|
18827
|
+
| 'accounts_with_final_statements_pending_transaction_count'
|
|
18828
|
+
| 'accounts_with_final_statements_pending_transaction_total';
|
|
18631
18829
|
type BillingStatementAttachmentKey =
|
|
18632
18830
|
| 'invoice'
|
|
18633
18831
|
| 'statement'
|
|
@@ -18646,7 +18844,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18646
18844
|
| 'trueup'
|
|
18647
18845
|
| 'carrier_charge'
|
|
18648
18846
|
| 'all';
|
|
18649
|
-
type BillingStatementBatchFileKey = 'summary';
|
|
18650
18847
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
18651
18848
|
type BillingTransactionType =
|
|
18652
18849
|
| 'manual'
|
|
@@ -18754,7 +18951,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18754
18951
|
| 'oversize_piece'
|
|
18755
18952
|
| 'incoterm_dap'
|
|
18756
18953
|
| 'emergency_situation'
|
|
18757
|
-
| 'remote_area_delivery'
|
|
18954
|
+
| 'remote_area_delivery'
|
|
18955
|
+
| 'customs_clearance_surcharge'
|
|
18956
|
+
| 'security_surcharge'
|
|
18957
|
+
| 'duties_fx_surcharge';
|
|
18758
18958
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
18759
18959
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
18760
18960
|
type CheckoutAddAuthorizationErrorCode =
|
|
@@ -19101,6 +19301,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19101
19301
|
| 'adyen_refund_upserted'
|
|
19102
19302
|
| 'index_assignment_upserted'
|
|
19103
19303
|
| 'index_assignment_deleted'
|
|
19304
|
+
| 'fulfillment_upserted'
|
|
19305
|
+
| 'fulfillment_deleted'
|
|
19104
19306
|
| 'merchant_upserted'
|
|
19105
19307
|
| 'merchant_deleted'
|
|
19106
19308
|
| 'account_upserted'
|
|
@@ -19235,10 +19437,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19235
19437
|
| 'billing_organization_processing_rates_deleted'
|
|
19236
19438
|
| 'billing_organization_settings_upserted'
|
|
19237
19439
|
| 'billing_organization_settings_deleted'
|
|
19238
|
-
| 'billing_statement_batch_upserted'
|
|
19239
|
-
| 'billing_statement_batch_deleted'
|
|
19240
|
-
| 'billing_statement_batch_statement_upserted'
|
|
19241
|
-
| 'billing_statement_batch_statement_deleted'
|
|
19242
19440
|
| 'standalone_attachment_upserted'
|
|
19243
19441
|
| 'standalone_attachment_deleted'
|
|
19244
19442
|
| 'platform_fee_change_upserted'
|
|
@@ -19299,6 +19497,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19299
19497
|
| 'item_form_import_request'
|
|
19300
19498
|
| 'label_request_error_upserted'
|
|
19301
19499
|
| 'label_request_error_deleted'
|
|
19500
|
+
| 'order_validation_failure_upserted'
|
|
19501
|
+
| 'order_validation_failure_deleted'
|
|
19502
|
+
| 'order_validation_upserted'
|
|
19503
|
+
| 'order_validation_deleted'
|
|
19302
19504
|
| 'label_tracking_summary_upserted'
|
|
19303
19505
|
| 'label_tracking_summary_deleted'
|
|
19304
19506
|
| 'localized_item_upserted_v2'
|
|
@@ -19425,10 +19627,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19425
19627
|
| 'svitlana_item_deleted'
|
|
19426
19628
|
| 'colm_item_upserted'
|
|
19427
19629
|
| 'colm_item_deleted'
|
|
19630
|
+
| 'matias_item_upserted'
|
|
19631
|
+
| 'matias_item_deleted'
|
|
19428
19632
|
| 'shruti_demo_item_upserted'
|
|
19429
19633
|
| 'shruti_demo_item_deleted'
|
|
19430
19634
|
| 'tam_item_upserted'
|
|
19431
19635
|
| 'tam_item_deleted'
|
|
19636
|
+
| 'tracking_processing_error_upserted'
|
|
19637
|
+
| 'tracking_processing_error_deleted'
|
|
19432
19638
|
| 'tracking_label_event_upserted_v2'
|
|
19433
19639
|
| 'tracking_label_event_deleted_v2'
|
|
19434
19640
|
| 'tracking_label_upserted'
|
|
@@ -19578,6 +19784,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19578
19784
|
| 'facebook_primary'
|
|
19579
19785
|
| 'facebook_country_override'
|
|
19580
19786
|
| 'supplemental';
|
|
19787
|
+
type MatiasItemType = 'physical' | 'digital';
|
|
19581
19788
|
type MixedBagWeight = '0' | '1' | '2';
|
|
19582
19789
|
type NatureOfSale =
|
|
19583
19790
|
| 'consumer'
|
|
@@ -19774,7 +19981,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19774
19981
|
| 'escalated'
|
|
19775
19982
|
| 'accepted'
|
|
19776
19983
|
| 'restricted';
|
|
19777
|
-
type RevenueRecordType = 'sales' | 'refund';
|
|
19984
|
+
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
19778
19985
|
type RiskCheck = 'three_d_secure';
|
|
19779
19986
|
type RiskEvaluation =
|
|
19780
19987
|
| 'Pending'
|
|
@@ -19857,7 +20064,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19857
20064
|
| 'do_nothing';
|
|
19858
20065
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
19859
20066
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
19860
|
-
type SnoozeSourceType = '
|
|
20067
|
+
type SnoozeSourceType = 'task';
|
|
19861
20068
|
type StatementStatus =
|
|
19862
20069
|
| 'created'
|
|
19863
20070
|
| 'no_transactions'
|
|
@@ -19890,6 +20097,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
19890
20097
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
19891
20098
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
19892
20099
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
20100
|
+
type TrackingProcessingFailureClassification =
|
|
20101
|
+
| 'tracking_expired'
|
|
20102
|
+
| 'expired_tracking_number_new_event'
|
|
20103
|
+
| 'new_tracking_number_expired_event'
|
|
20104
|
+
| 'origin_mismatch'
|
|
20105
|
+
| 'destination_mismatch'
|
|
20106
|
+
| 'other';
|
|
19893
20107
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
19894
20108
|
type TransferMethod = 'ach';
|
|
19895
20109
|
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
@@ -19983,6 +20197,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19983
20197
|
readonly country: string;
|
|
19984
20198
|
}
|
|
19985
20199
|
|
|
20200
|
+
interface AccountPaymentHold {
|
|
20201
|
+
readonly id: string;
|
|
20202
|
+
readonly account: io.flow.internal.v0.models.SimpleAccountReference;
|
|
20203
|
+
readonly reason: io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
20204
|
+
}
|
|
20205
|
+
|
|
20206
|
+
interface AccountPaymentHoldForm {
|
|
20207
|
+
readonly account_id: string;
|
|
20208
|
+
readonly reason: io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
20209
|
+
}
|
|
20210
|
+
|
|
19986
20211
|
interface AccountProcessingRateForm {
|
|
19987
20212
|
readonly query: string;
|
|
19988
20213
|
readonly capture: number;
|
|
@@ -20039,7 +20264,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20039
20264
|
readonly merchant_of_record_fee?: number;
|
|
20040
20265
|
readonly duty_guarantee_fee?: number;
|
|
20041
20266
|
readonly transfer_fee?: number;
|
|
20042
|
-
readonly
|
|
20267
|
+
readonly negative_balance_fee?: number;
|
|
20043
20268
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
20044
20269
|
readonly label_fees?: io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
20045
20270
|
readonly charge_label_cost_directly: boolean;
|
|
@@ -20122,11 +20347,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20122
20347
|
readonly account: io.flow.internal.v0.models.FlowAccount;
|
|
20123
20348
|
}
|
|
20124
20349
|
|
|
20350
|
+
interface AccountingFulfillmentMetadata {
|
|
20351
|
+
readonly discriminator: 'accounting_fulfillment_metadata';
|
|
20352
|
+
readonly order: io.flow.internal.v0.models.OrderReference;
|
|
20353
|
+
readonly proof: io.flow.internal.v0.unions.FulfillmentProof;
|
|
20354
|
+
}
|
|
20355
|
+
|
|
20125
20356
|
interface ActionQuantity {
|
|
20126
20357
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
20127
20358
|
readonly quantity: number;
|
|
20128
20359
|
}
|
|
20129
20360
|
|
|
20361
|
+
interface AdditionalImportTax {
|
|
20362
|
+
readonly name?: string;
|
|
20363
|
+
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
20364
|
+
readonly rate?: number;
|
|
20365
|
+
}
|
|
20366
|
+
|
|
20130
20367
|
interface AddressConfigurationProvinceSetting {
|
|
20131
20368
|
readonly code: io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
20132
20369
|
}
|
|
@@ -20856,6 +21093,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20856
21093
|
readonly b2b_tax_remittance_days?: number;
|
|
20857
21094
|
readonly mor_fee?: number;
|
|
20858
21095
|
readonly duty_guarantee_fee?: number;
|
|
21096
|
+
readonly negative_balance_fee?: number;
|
|
20859
21097
|
readonly order_service_fee?: io.flow.internal.v0.models.TieredFee;
|
|
20860
21098
|
readonly label_fee?: io.flow.internal.v0.models.TieredFee;
|
|
20861
21099
|
}
|
|
@@ -20882,48 +21120,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20882
21120
|
readonly url: string;
|
|
20883
21121
|
}
|
|
20884
21122
|
|
|
20885
|
-
interface BillingStatementBatch {
|
|
20886
|
-
readonly id: string;
|
|
20887
|
-
}
|
|
20888
|
-
|
|
20889
|
-
interface BillingStatementBatchDeleted {
|
|
20890
|
-
readonly discriminator: 'billing_statement_batch_deleted';
|
|
20891
|
-
readonly event_id: string;
|
|
20892
|
-
readonly timestamp: string;
|
|
20893
|
-
readonly id: string;
|
|
20894
|
-
}
|
|
20895
|
-
|
|
20896
|
-
interface BillingStatementBatchReference {
|
|
20897
|
-
readonly id: string;
|
|
20898
|
-
}
|
|
20899
|
-
|
|
20900
|
-
interface BillingStatementBatchStatement {
|
|
20901
|
-
readonly id: string;
|
|
20902
|
-
readonly batch: io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
20903
|
-
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
20904
|
-
}
|
|
20905
|
-
|
|
20906
|
-
interface BillingStatementBatchStatementDeleted {
|
|
20907
|
-
readonly discriminator: 'billing_statement_batch_statement_deleted';
|
|
20908
|
-
readonly event_id: string;
|
|
20909
|
-
readonly timestamp: string;
|
|
20910
|
-
readonly id: string;
|
|
20911
|
-
}
|
|
20912
|
-
|
|
20913
|
-
interface BillingStatementBatchStatementUpserted {
|
|
20914
|
-
readonly discriminator: 'billing_statement_batch_statement_upserted';
|
|
20915
|
-
readonly event_id: string;
|
|
20916
|
-
readonly timestamp: string;
|
|
20917
|
-
readonly billing_statement_batch_statement: io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
20918
|
-
}
|
|
20919
|
-
|
|
20920
|
-
interface BillingStatementBatchUpserted {
|
|
20921
|
-
readonly discriminator: 'billing_statement_batch_upserted';
|
|
20922
|
-
readonly event_id: string;
|
|
20923
|
-
readonly timestamp: string;
|
|
20924
|
-
readonly billing_statement_batch: io.flow.internal.v0.models.BillingStatementBatch;
|
|
20925
|
-
}
|
|
20926
|
-
|
|
20927
21123
|
interface BillingStatementDeleted {
|
|
20928
21124
|
readonly discriminator: 'billing_statement_deleted';
|
|
20929
21125
|
readonly event_id: string;
|
|
@@ -21285,6 +21481,51 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21285
21481
|
readonly name: string;
|
|
21286
21482
|
}
|
|
21287
21483
|
|
|
21484
|
+
interface CalculationStampingLineItem {
|
|
21485
|
+
readonly id?: string;
|
|
21486
|
+
readonly hs_code?: string;
|
|
21487
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
21488
|
+
readonly duty_rate: number;
|
|
21489
|
+
readonly sales_tax: io.flow.common.v0.models.Money;
|
|
21490
|
+
readonly sales_tax_rate: number;
|
|
21491
|
+
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
21492
|
+
readonly additional_tax_rate?: number;
|
|
21493
|
+
readonly total: io.flow.common.v0.models.Money;
|
|
21494
|
+
}
|
|
21495
|
+
|
|
21496
|
+
interface CalculationStampingShippingLine {
|
|
21497
|
+
readonly first_ship_from?: string;
|
|
21498
|
+
readonly duty?: number;
|
|
21499
|
+
readonly duty_rate?: number;
|
|
21500
|
+
readonly tax?: number;
|
|
21501
|
+
readonly tax_rate?: number;
|
|
21502
|
+
readonly price?: number;
|
|
21503
|
+
readonly duty_rate_on_shipping?: number;
|
|
21504
|
+
readonly tax_rate_on_shipping?: number;
|
|
21505
|
+
readonly import_fee?: number;
|
|
21506
|
+
}
|
|
21507
|
+
|
|
21508
|
+
interface CalculationStep {
|
|
21509
|
+
readonly discriminator: 'calculation_step';
|
|
21510
|
+
readonly primary_identifier: string;
|
|
21511
|
+
readonly line_item: io.flow.internal.v0.models.CalculationStampingLineItem[];
|
|
21512
|
+
readonly shipping_line_item: io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
21513
|
+
readonly total: io.flow.internal.v0.models.CalculationTotal;
|
|
21514
|
+
readonly explanation?: string;
|
|
21515
|
+
}
|
|
21516
|
+
|
|
21517
|
+
interface CalculationTotal {
|
|
21518
|
+
readonly customs_value_name: string;
|
|
21519
|
+
readonly customs_value_amount: io.flow.common.v0.models.Money;
|
|
21520
|
+
readonly additional_import_included?: boolean;
|
|
21521
|
+
readonly additional_import_value?: io.flow.common.v0.models.Money;
|
|
21522
|
+
readonly duty: io.flow.common.v0.models.Money;
|
|
21523
|
+
readonly sales_tax: io.flow.common.v0.models.Money;
|
|
21524
|
+
readonly additional_tax_import_included: boolean;
|
|
21525
|
+
readonly additional_tax?: io.flow.common.v0.models.Money;
|
|
21526
|
+
readonly additional_import_tax?: io.flow.internal.v0.models.AdditionalImportTax[];
|
|
21527
|
+
}
|
|
21528
|
+
|
|
21288
21529
|
interface CalculatorDtcePostBody {
|
|
21289
21530
|
readonly products: io.flow.internal.v0.models.CalculatorDtceProduct[];
|
|
21290
21531
|
readonly countryCodeFrom: string;
|
|
@@ -21439,6 +21680,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21439
21680
|
interface CarrierChargeFormOther {
|
|
21440
21681
|
readonly discriminator: 'other';
|
|
21441
21682
|
readonly id: string;
|
|
21683
|
+
readonly label_invoice_request_id?: string;
|
|
21442
21684
|
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
21443
21685
|
readonly organization_id: string;
|
|
21444
21686
|
readonly order_number: string;
|
|
@@ -21782,6 +22024,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21782
22024
|
readonly tracking_numbers?: string[];
|
|
21783
22025
|
readonly carrier?: io.flow.reference.v0.models.CarrierService;
|
|
21784
22026
|
readonly duty_paid: boolean;
|
|
22027
|
+
readonly shop_id?: string;
|
|
21785
22028
|
}
|
|
21786
22029
|
|
|
21787
22030
|
interface ChannelOrderAcceptance {
|
|
@@ -21791,6 +22034,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21791
22034
|
readonly channel_id: string;
|
|
21792
22035
|
readonly external_order_reference: string;
|
|
21793
22036
|
readonly payment_request_id?: string;
|
|
22037
|
+
readonly order_edit_payment_request_ids?: string[];
|
|
21794
22038
|
readonly status: io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
21795
22039
|
readonly reasons: io.flow.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
21796
22040
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
@@ -24345,6 +24589,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24345
24589
|
readonly invoice: io.flow.internal.v0.models.CommercialInvoiceInternal;
|
|
24346
24590
|
}
|
|
24347
24591
|
|
|
24592
|
+
interface CommercialInvoiceSummary {
|
|
24593
|
+
readonly id: string;
|
|
24594
|
+
readonly label_id: string;
|
|
24595
|
+
readonly line_items: io.flow.internal.v0.models.InvoiceLineItem[];
|
|
24596
|
+
}
|
|
24597
|
+
|
|
24348
24598
|
interface CompanyReference {
|
|
24349
24599
|
readonly id: string;
|
|
24350
24600
|
}
|
|
@@ -25272,6 +25522,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25272
25522
|
readonly bank_code: string;
|
|
25273
25523
|
readonly id: string;
|
|
25274
25524
|
readonly tax_code?: string;
|
|
25525
|
+
readonly tax_code_2?: string;
|
|
25526
|
+
readonly debit_entry_code?: string;
|
|
25527
|
+
readonly credit_entry_code?: string;
|
|
25275
25528
|
readonly vat_flag?: string;
|
|
25276
25529
|
readonly w_tax_percent?: string;
|
|
25277
25530
|
readonly iban?: string;
|
|
@@ -25319,6 +25572,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25319
25572
|
readonly id: string;
|
|
25320
25573
|
readonly acc_des?: string;
|
|
25321
25574
|
readonly tax_code?: string;
|
|
25575
|
+
readonly tax_code_2?: string;
|
|
25576
|
+
readonly debit_entry_code?: string;
|
|
25577
|
+
readonly credit_entry_code?: string;
|
|
25322
25578
|
readonly vat_flag?: string;
|
|
25323
25579
|
readonly country_name?: string;
|
|
25324
25580
|
readonly w_tax_percent?: string;
|
|
@@ -25935,6 +26191,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25935
26191
|
readonly fx?: io.flow.internal.v0.models.Fee;
|
|
25936
26192
|
readonly duty_guarantee?: io.flow.internal.v0.models.Fee;
|
|
25937
26193
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
26194
|
+
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
25938
26195
|
}
|
|
25939
26196
|
|
|
25940
26197
|
interface FinanceBankAccount {
|
|
@@ -26091,6 +26348,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26091
26348
|
readonly created_at: string;
|
|
26092
26349
|
}
|
|
26093
26350
|
|
|
26351
|
+
interface FlowBillingStatement {
|
|
26352
|
+
readonly id: string;
|
|
26353
|
+
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
26354
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
26355
|
+
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
26356
|
+
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
26357
|
+
}
|
|
26358
|
+
|
|
26094
26359
|
interface FlowChannelOrganization {
|
|
26095
26360
|
readonly placeholder?: string;
|
|
26096
26361
|
}
|
|
@@ -26383,6 +26648,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26383
26648
|
readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
26384
26649
|
}
|
|
26385
26650
|
|
|
26651
|
+
interface FulfillmentDeleted {
|
|
26652
|
+
readonly discriminator: 'fulfillment_deleted';
|
|
26653
|
+
readonly event_id: string;
|
|
26654
|
+
readonly timestamp: string;
|
|
26655
|
+
readonly organization: string;
|
|
26656
|
+
readonly id: string;
|
|
26657
|
+
}
|
|
26658
|
+
|
|
26386
26659
|
interface FulfillmentInternalExperienceReference {
|
|
26387
26660
|
readonly id: string;
|
|
26388
26661
|
readonly key: string;
|
|
@@ -26482,6 +26755,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26482
26755
|
readonly placeholder?: string;
|
|
26483
26756
|
}
|
|
26484
26757
|
|
|
26758
|
+
interface FulfillmentUpserted {
|
|
26759
|
+
readonly discriminator: 'fulfillment_upserted';
|
|
26760
|
+
readonly event_id: string;
|
|
26761
|
+
readonly timestamp: string;
|
|
26762
|
+
readonly organization: string;
|
|
26763
|
+
readonly fulfillment: io.flow.internal.v0.models.Fulfillment;
|
|
26764
|
+
}
|
|
26765
|
+
|
|
26485
26766
|
interface FxFee {
|
|
26486
26767
|
readonly base: io.flow.common.v0.models.Money;
|
|
26487
26768
|
readonly local: io.flow.common.v0.models.Money;
|
|
@@ -27919,6 +28200,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27919
28200
|
readonly number: string;
|
|
27920
28201
|
readonly fulfillment_method: io.flow.catalog.v0.enums.FulfillmentMethodValue;
|
|
27921
28202
|
readonly country_of_origin?: string;
|
|
28203
|
+
readonly tarriff_code?: string;
|
|
27922
28204
|
readonly inferred?: boolean;
|
|
27923
28205
|
}
|
|
27924
28206
|
|
|
@@ -28141,6 +28423,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28141
28423
|
readonly emergency?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
28142
28424
|
readonly peak?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
28143
28425
|
readonly address_correction?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
28426
|
+
readonly security?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
28427
|
+
readonly eei_filing?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
28428
|
+
readonly fixed_ddp?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
28429
|
+
readonly fixed_currency_conversion?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
28144
28430
|
}
|
|
28145
28431
|
|
|
28146
28432
|
interface LabelSurchargeSingleForm {
|
|
@@ -28896,6 +29182,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28896
29182
|
readonly flow_authorization?: io.flow.payment.v0.unions.Authorization;
|
|
28897
29183
|
}
|
|
28898
29184
|
|
|
29185
|
+
interface MatiasItem {
|
|
29186
|
+
readonly id: string;
|
|
29187
|
+
readonly number: string;
|
|
29188
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
29189
|
+
readonly description?: string;
|
|
29190
|
+
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
29191
|
+
readonly added_on: string;
|
|
29192
|
+
}
|
|
29193
|
+
|
|
29194
|
+
interface MatiasItemDeleted {
|
|
29195
|
+
readonly discriminator: 'matias_item_deleted';
|
|
29196
|
+
readonly event_id: string;
|
|
29197
|
+
readonly timestamp: string;
|
|
29198
|
+
readonly id: string;
|
|
29199
|
+
}
|
|
29200
|
+
|
|
29201
|
+
interface MatiasItemForm {
|
|
29202
|
+
readonly number: string;
|
|
29203
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
29204
|
+
readonly description?: string;
|
|
29205
|
+
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
29206
|
+
readonly added_on: string;
|
|
29207
|
+
}
|
|
29208
|
+
|
|
29209
|
+
interface MatiasItemUpserted {
|
|
29210
|
+
readonly discriminator: 'matias_item_upserted';
|
|
29211
|
+
readonly event_id: string;
|
|
29212
|
+
readonly timestamp: string;
|
|
29213
|
+
readonly item: io.flow.internal.v0.models.MatiasItem;
|
|
29214
|
+
}
|
|
29215
|
+
|
|
28899
29216
|
interface Merchant {
|
|
28900
29217
|
readonly id: string;
|
|
28901
29218
|
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
@@ -29015,6 +29332,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29015
29332
|
readonly merchant: io.flow.internal.v0.models.Merchant;
|
|
29016
29333
|
}
|
|
29017
29334
|
|
|
29335
|
+
interface MessageStamp {
|
|
29336
|
+
readonly discriminator: 'message_stamp';
|
|
29337
|
+
readonly message: string;
|
|
29338
|
+
}
|
|
29339
|
+
|
|
29018
29340
|
interface MetadataProposition {
|
|
29019
29341
|
readonly shipping_method: io.flow.internal.v0.models.ShippingMethodReference;
|
|
29020
29342
|
readonly name: string;
|
|
@@ -29372,6 +29694,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29372
29694
|
readonly data: io.flow.internal.v0.models.OrderRatesDataV3;
|
|
29373
29695
|
}
|
|
29374
29696
|
|
|
29697
|
+
interface OrderReference {
|
|
29698
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
29699
|
+
readonly number: string;
|
|
29700
|
+
}
|
|
29701
|
+
|
|
29375
29702
|
interface OrderRevenueRegionChart {
|
|
29376
29703
|
readonly total: io.flow.common.v0.models.Price;
|
|
29377
29704
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
@@ -29462,6 +29789,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29462
29789
|
readonly service_id: string;
|
|
29463
29790
|
readonly status: io.flow.internal.v0.enums.OrderValidationStatus;
|
|
29464
29791
|
readonly updated_by_user_id: string;
|
|
29792
|
+
readonly created_at: string;
|
|
29793
|
+
readonly resolved_at?: string;
|
|
29794
|
+
}
|
|
29795
|
+
|
|
29796
|
+
interface OrderValidationDeleted {
|
|
29797
|
+
readonly discriminator: 'order_validation_deleted';
|
|
29798
|
+
readonly event_id: string;
|
|
29799
|
+
readonly timestamp: string;
|
|
29800
|
+
readonly organization: string;
|
|
29801
|
+
readonly id: string;
|
|
29465
29802
|
}
|
|
29466
29803
|
|
|
29467
29804
|
interface OrderValidationError {
|
|
@@ -29484,6 +29821,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29484
29821
|
readonly errors: string[];
|
|
29485
29822
|
}
|
|
29486
29823
|
|
|
29824
|
+
interface OrderValidationFailureDeleted {
|
|
29825
|
+
readonly discriminator: 'order_validation_failure_deleted';
|
|
29826
|
+
readonly event_id: string;
|
|
29827
|
+
readonly timestamp: string;
|
|
29828
|
+
readonly organization: string;
|
|
29829
|
+
readonly id: string;
|
|
29830
|
+
}
|
|
29831
|
+
|
|
29487
29832
|
interface OrderValidationFailureSummary {
|
|
29488
29833
|
readonly organization_id: string;
|
|
29489
29834
|
readonly order_number: string;
|
|
@@ -29494,6 +29839,22 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29494
29839
|
readonly created_at: string;
|
|
29495
29840
|
}
|
|
29496
29841
|
|
|
29842
|
+
interface OrderValidationFailureUpserted {
|
|
29843
|
+
readonly discriminator: 'order_validation_failure_upserted';
|
|
29844
|
+
readonly event_id: string;
|
|
29845
|
+
readonly timestamp: string;
|
|
29846
|
+
readonly organization: string;
|
|
29847
|
+
readonly order_validation_failure: io.flow.internal.v0.models.OrderValidationFailure;
|
|
29848
|
+
}
|
|
29849
|
+
|
|
29850
|
+
interface OrderValidationUpserted {
|
|
29851
|
+
readonly discriminator: 'order_validation_upserted';
|
|
29852
|
+
readonly event_id: string;
|
|
29853
|
+
readonly timestamp: string;
|
|
29854
|
+
readonly organization: string;
|
|
29855
|
+
readonly order_validation: io.flow.internal.v0.models.OrderValidation;
|
|
29856
|
+
}
|
|
29857
|
+
|
|
29497
29858
|
interface OrganizationAccount {
|
|
29498
29859
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
29499
29860
|
readonly id: string;
|
|
@@ -30253,6 +30614,16 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30253
30614
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
30254
30615
|
}
|
|
30255
30616
|
|
|
30617
|
+
interface PendingOrder {
|
|
30618
|
+
readonly id: string;
|
|
30619
|
+
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
30620
|
+
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
30621
|
+
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
30622
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
30623
|
+
readonly sequence_number: number;
|
|
30624
|
+
readonly posting_cutoff: string;
|
|
30625
|
+
}
|
|
30626
|
+
|
|
30256
30627
|
interface PhraseClassified {
|
|
30257
30628
|
readonly event_id: string;
|
|
30258
30629
|
readonly timestamp: string;
|
|
@@ -30587,20 +30958,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30587
30958
|
readonly shipping_notification_id: string;
|
|
30588
30959
|
}
|
|
30589
30960
|
|
|
30590
|
-
interface QueuedRecord {
|
|
30591
|
-
readonly type: string;
|
|
30592
|
-
readonly type_id: string;
|
|
30593
|
-
readonly source_type?: string;
|
|
30594
|
-
readonly source_id?: string;
|
|
30595
|
-
readonly environment?: string;
|
|
30596
|
-
readonly created_at: string;
|
|
30597
|
-
readonly num_attempts: number;
|
|
30598
|
-
readonly next_attempt_at: string;
|
|
30599
|
-
readonly errors?: string[];
|
|
30600
|
-
readonly stacktrace?: string;
|
|
30601
|
-
readonly snooze_id?: string;
|
|
30602
|
-
}
|
|
30603
|
-
|
|
30604
30961
|
interface Quote {
|
|
30605
30962
|
readonly id: string;
|
|
30606
30963
|
readonly base: string;
|
|
@@ -31618,8 +31975,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
31618
31975
|
readonly id: string;
|
|
31619
31976
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
31620
31977
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
31621
|
-
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
31622
31978
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
31979
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
31623
31980
|
readonly sequence_number: number;
|
|
31624
31981
|
readonly posting_cutoff: string;
|
|
31625
31982
|
readonly trigger: io.flow.internal.v0.unions.ReturnTrigger;
|
|
@@ -32716,6 +33073,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
32716
33073
|
readonly attachment: io.flow.internal.v0.models.StandaloneAttachment;
|
|
32717
33074
|
}
|
|
32718
33075
|
|
|
33076
|
+
interface StatementCreationMetadata {
|
|
33077
|
+
readonly discriminator: 'statement_creation_metadata';
|
|
33078
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
33079
|
+
}
|
|
33080
|
+
|
|
32719
33081
|
interface StoreConnection {
|
|
32720
33082
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
32721
33083
|
readonly id: string;
|
|
@@ -33099,6 +33461,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
33099
33461
|
readonly data: io.flow.internal.v0.unions.TariffEligibilityData;
|
|
33100
33462
|
}
|
|
33101
33463
|
|
|
33464
|
+
interface Task {
|
|
33465
|
+
readonly type: string;
|
|
33466
|
+
readonly type_id: string;
|
|
33467
|
+
readonly source_type?: string;
|
|
33468
|
+
readonly source_id?: string;
|
|
33469
|
+
readonly environment?: string;
|
|
33470
|
+
readonly created_at: string;
|
|
33471
|
+
readonly num_attempts: number;
|
|
33472
|
+
readonly next_attempt_at: string;
|
|
33473
|
+
readonly errors?: string[];
|
|
33474
|
+
readonly stacktrace?: string;
|
|
33475
|
+
readonly snooze_id?: string;
|
|
33476
|
+
}
|
|
33477
|
+
|
|
33102
33478
|
interface TaskCount {
|
|
33103
33479
|
readonly discriminator: string;
|
|
33104
33480
|
readonly count: number;
|
|
@@ -33400,6 +33776,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
33400
33776
|
readonly tracking_label: io.flow.internal.v0.models.ExportTrackingLabel;
|
|
33401
33777
|
}
|
|
33402
33778
|
|
|
33779
|
+
interface TrackingProcessingError {
|
|
33780
|
+
readonly id: string;
|
|
33781
|
+
readonly aftership_webhook_id: string;
|
|
33782
|
+
readonly carrier_id: string;
|
|
33783
|
+
readonly carrier_tracking_number: string;
|
|
33784
|
+
readonly organization_id?: string;
|
|
33785
|
+
readonly tracking_label_id?: string;
|
|
33786
|
+
readonly errors: string[];
|
|
33787
|
+
readonly failure_classification: io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
33788
|
+
}
|
|
33789
|
+
|
|
33790
|
+
interface TrackingProcessingErrorDeleted {
|
|
33791
|
+
readonly discriminator: 'tracking_processing_error_deleted';
|
|
33792
|
+
readonly event_id: string;
|
|
33793
|
+
readonly timestamp: string;
|
|
33794
|
+
readonly id: string;
|
|
33795
|
+
}
|
|
33796
|
+
|
|
33797
|
+
interface TrackingProcessingErrorUpserted {
|
|
33798
|
+
readonly discriminator: 'tracking_processing_error_upserted';
|
|
33799
|
+
readonly event_id: string;
|
|
33800
|
+
readonly timestamp: string;
|
|
33801
|
+
readonly tracking_processing_error: io.flow.internal.v0.models.TrackingProcessingError;
|
|
33802
|
+
}
|
|
33803
|
+
|
|
33403
33804
|
interface TrackingRequest {
|
|
33404
33805
|
readonly carrier: string;
|
|
33405
33806
|
readonly carrier_tracking_number: string;
|
|
@@ -33814,6 +34215,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
33814
34215
|
| io.flow.internal.v0.models.BlazeApplepayAvailabilityRequest
|
|
33815
34216
|
| io.flow.internal.v0.models.BlazePaymentAuthStartMessage
|
|
33816
34217
|
| io.flow.internal.v0.models.BlazePaymentAuthCompleteMessage;
|
|
34218
|
+
type CalculatorStamp =
|
|
34219
|
+
| io.flow.internal.v0.models.MessageStamp
|
|
34220
|
+
| io.flow.internal.v0.models.CalculationStep;
|
|
33817
34221
|
type CarrierChargeForm =
|
|
33818
34222
|
| io.flow.internal.v0.models.CarrierChargeFormLabel
|
|
33819
34223
|
| io.flow.internal.v0.models.CarrierChargeFormOther;
|
|
@@ -34240,6 +34644,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
34240
34644
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
34241
34645
|
| io.flow.internal.v0.models.IndexAssignmentUpserted
|
|
34242
34646
|
| io.flow.internal.v0.models.IndexAssignmentDeleted
|
|
34647
|
+
| io.flow.internal.v0.models.FulfillmentUpserted
|
|
34648
|
+
| io.flow.internal.v0.models.FulfillmentDeleted
|
|
34243
34649
|
| io.flow.internal.v0.models.MerchantUpserted
|
|
34244
34650
|
| io.flow.internal.v0.models.MerchantDeleted
|
|
34245
34651
|
| io.flow.internal.v0.models.AccountUpserted
|
|
@@ -34374,10 +34780,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
34374
34780
|
| io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted
|
|
34375
34781
|
| io.flow.internal.v0.models.BillingOrganizationSettingsUpserted
|
|
34376
34782
|
| io.flow.internal.v0.models.BillingOrganizationSettingsDeleted
|
|
34377
|
-
| io.flow.internal.v0.models.BillingStatementBatchUpserted
|
|
34378
|
-
| io.flow.internal.v0.models.BillingStatementBatchDeleted
|
|
34379
|
-
| io.flow.internal.v0.models.BillingStatementBatchStatementUpserted
|
|
34380
|
-
| io.flow.internal.v0.models.BillingStatementBatchStatementDeleted
|
|
34381
34783
|
| io.flow.internal.v0.models.StandaloneAttachmentUpserted
|
|
34382
34784
|
| io.flow.internal.v0.models.StandaloneAttachmentDeleted
|
|
34383
34785
|
| io.flow.internal.v0.models.PlatformFeeChangeUpserted
|
|
@@ -34438,6 +34840,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
34438
34840
|
| io.flow.internal.v0.models.ItemFormImportRequest
|
|
34439
34841
|
| io.flow.internal.v0.models.LabelRequestErrorUpserted
|
|
34440
34842
|
| io.flow.internal.v0.models.LabelRequestErrorDeleted
|
|
34843
|
+
| io.flow.internal.v0.models.OrderValidationFailureUpserted
|
|
34844
|
+
| io.flow.internal.v0.models.OrderValidationFailureDeleted
|
|
34845
|
+
| io.flow.internal.v0.models.OrderValidationUpserted
|
|
34846
|
+
| io.flow.internal.v0.models.OrderValidationDeleted
|
|
34441
34847
|
| io.flow.internal.v0.models.LabelTrackingSummaryUpserted
|
|
34442
34848
|
| io.flow.internal.v0.models.LabelTrackingSummaryDeleted
|
|
34443
34849
|
| io.flow.internal.v0.models.LocalizedItemUpsertedV2
|
|
@@ -34564,10 +34970,14 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
34564
34970
|
| io.flow.internal.v0.models.SvitlanaItemDeleted
|
|
34565
34971
|
| io.flow.internal.v0.models.ColmItemUpserted
|
|
34566
34972
|
| io.flow.internal.v0.models.ColmItemDeleted
|
|
34973
|
+
| io.flow.internal.v0.models.MatiasItemUpserted
|
|
34974
|
+
| io.flow.internal.v0.models.MatiasItemDeleted
|
|
34567
34975
|
| io.flow.internal.v0.models.ShrutiDemoItemUpserted
|
|
34568
34976
|
| io.flow.internal.v0.models.ShrutiDemoItemDeleted
|
|
34569
34977
|
| io.flow.internal.v0.models.TamItemUpserted
|
|
34570
34978
|
| io.flow.internal.v0.models.TamItemDeleted
|
|
34979
|
+
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
34980
|
+
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
34571
34981
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
34572
34982
|
| io.flow.internal.v0.models.TrackingLabelEventDeletedV2
|
|
34573
34983
|
| io.flow.internal.v0.models.TrackingLabelUpserted
|
|
@@ -34817,6 +35227,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
34817
35227
|
| io.flow.internal.v0.models.TaskSummarizeCode
|
|
34818
35228
|
| io.flow.internal.v0.models.TaskItemUpserted
|
|
34819
35229
|
| io.flow.internal.v0.models.TaskImport;
|
|
35230
|
+
type TaskMetadata =
|
|
35231
|
+
| io.flow.internal.v0.models.StatementCreationMetadata
|
|
35232
|
+
| io.flow.internal.v0.models.AccountingFulfillmentMetadata;
|
|
34820
35233
|
type TaxAmount =
|
|
34821
35234
|
| io.flow.internal.v0.models.CalculatedTaxAmount
|
|
34822
35235
|
| io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
@@ -34869,6 +35282,11 @@ export type AccountDepositRuleForm =
|
|
|
34869
35282
|
export type AccountOrdersExportRequest =
|
|
34870
35283
|
io.flow.internal.v0.models.AccountOrdersExportRequest;
|
|
34871
35284
|
export type AccountOrigin = io.flow.internal.v0.models.AccountOrigin;
|
|
35285
|
+
export type AccountPaymentHold = io.flow.internal.v0.models.AccountPaymentHold;
|
|
35286
|
+
export type AccountPaymentHoldForm =
|
|
35287
|
+
io.flow.internal.v0.models.AccountPaymentHoldForm;
|
|
35288
|
+
export type AccountPaymentHoldReason =
|
|
35289
|
+
io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
34872
35290
|
export type AccountProcessingRateForm =
|
|
34873
35291
|
io.flow.internal.v0.models.AccountProcessingRateForm;
|
|
34874
35292
|
export type AccountProcessingRates =
|
|
@@ -34897,7 +35315,11 @@ export type AccountTransactionsExportRequest =
|
|
|
34897
35315
|
export type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
34898
35316
|
export type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
|
|
34899
35317
|
export type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
|
|
35318
|
+
export type AccountingFulfillmentMetadata =
|
|
35319
|
+
io.flow.internal.v0.models.AccountingFulfillmentMetadata;
|
|
34900
35320
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
35321
|
+
export type AdditionalImportTax =
|
|
35322
|
+
io.flow.internal.v0.models.AdditionalImportTax;
|
|
34901
35323
|
export type AddressConfigurationProvinceSetting =
|
|
34902
35324
|
io.flow.internal.v0.models.AddressConfigurationProvinceSetting;
|
|
34903
35325
|
export type AddressConfigurationSetting =
|
|
@@ -35113,22 +35535,6 @@ export type BillingStatementAttachment =
|
|
|
35113
35535
|
io.flow.internal.v0.models.BillingStatementAttachment;
|
|
35114
35536
|
export type BillingStatementAttachmentKey =
|
|
35115
35537
|
io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
35116
|
-
export type BillingStatementBatch =
|
|
35117
|
-
io.flow.internal.v0.models.BillingStatementBatch;
|
|
35118
|
-
export type BillingStatementBatchDeleted =
|
|
35119
|
-
io.flow.internal.v0.models.BillingStatementBatchDeleted;
|
|
35120
|
-
export type BillingStatementBatchFileKey =
|
|
35121
|
-
io.flow.internal.v0.enums.BillingStatementBatchFileKey;
|
|
35122
|
-
export type BillingStatementBatchReference =
|
|
35123
|
-
io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
35124
|
-
export type BillingStatementBatchStatement =
|
|
35125
|
-
io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
35126
|
-
export type BillingStatementBatchStatementDeleted =
|
|
35127
|
-
io.flow.internal.v0.models.BillingStatementBatchStatementDeleted;
|
|
35128
|
-
export type BillingStatementBatchStatementUpserted =
|
|
35129
|
-
io.flow.internal.v0.models.BillingStatementBatchStatementUpserted;
|
|
35130
|
-
export type BillingStatementBatchUpserted =
|
|
35131
|
-
io.flow.internal.v0.models.BillingStatementBatchUpserted;
|
|
35132
35538
|
export type BillingStatementDeleted =
|
|
35133
35539
|
io.flow.internal.v0.models.BillingStatementDeleted;
|
|
35134
35540
|
export type BillingStatementReference =
|
|
@@ -35239,6 +35645,12 @@ export type BulkClassificationAction =
|
|
|
35239
35645
|
export type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
35240
35646
|
export type CalculatedTaxAmount =
|
|
35241
35647
|
io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
35648
|
+
export type CalculationStampingLineItem =
|
|
35649
|
+
io.flow.internal.v0.models.CalculationStampingLineItem;
|
|
35650
|
+
export type CalculationStampingShippingLine =
|
|
35651
|
+
io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
35652
|
+
export type CalculationStep = io.flow.internal.v0.models.CalculationStep;
|
|
35653
|
+
export type CalculationTotal = io.flow.internal.v0.models.CalculationTotal;
|
|
35242
35654
|
export type CalculatorDtcePostBody =
|
|
35243
35655
|
io.flow.internal.v0.models.CalculatorDtcePostBody;
|
|
35244
35656
|
export type CalculatorDtceProduct =
|
|
@@ -35252,6 +35664,7 @@ export type CalculatorOrganizationSettingsForm =
|
|
|
35252
35664
|
io.flow.internal.v0.models.CalculatorOrganizationSettingsForm;
|
|
35253
35665
|
export type CalculatorOrganizationSettingsUpserted =
|
|
35254
35666
|
io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted;
|
|
35667
|
+
export type CalculatorStamp = io.flow.internal.v0.unions.CalculatorStamp;
|
|
35255
35668
|
export type CarrierAccount = io.flow.internal.v0.models.CarrierAccount;
|
|
35256
35669
|
export type CarrierAccountDeleted =
|
|
35257
35670
|
io.flow.internal.v0.models.CarrierAccountDeleted;
|
|
@@ -36517,6 +36930,8 @@ export type CommercialInvoiceInternalDeleted =
|
|
|
36517
36930
|
io.flow.internal.v0.models.CommercialInvoiceInternalDeleted;
|
|
36518
36931
|
export type CommercialInvoiceInternalUpserted =
|
|
36519
36932
|
io.flow.internal.v0.models.CommercialInvoiceInternalUpserted;
|
|
36933
|
+
export type CommercialInvoiceSummary =
|
|
36934
|
+
io.flow.internal.v0.models.CommercialInvoiceSummary;
|
|
36520
36935
|
export type CompanyReference = io.flow.internal.v0.models.CompanyReference;
|
|
36521
36936
|
export type Compliance = io.flow.internal.v0.models.Compliance;
|
|
36522
36937
|
export type ComplianceData = io.flow.internal.v0.unions.ComplianceData;
|
|
@@ -36938,6 +37353,8 @@ export type FiservMerchantPutForm =
|
|
|
36938
37353
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
36939
37354
|
export type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
36940
37355
|
export type FlowApp = io.flow.internal.v0.enums.FlowApp;
|
|
37356
|
+
export type FlowBillingStatement =
|
|
37357
|
+
io.flow.internal.v0.models.FlowBillingStatement;
|
|
36941
37358
|
export type FlowChannelOrganization =
|
|
36942
37359
|
io.flow.internal.v0.models.FlowChannelOrganization;
|
|
36943
37360
|
export type FlowLabProject = io.flow.internal.v0.models.FlowLabProject;
|
|
@@ -37010,6 +37427,7 @@ export type FulfillmentActionForm =
|
|
|
37010
37427
|
export type FulfillmentBusiness =
|
|
37011
37428
|
io.flow.internal.v0.models.FulfillmentBusiness;
|
|
37012
37429
|
export type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
37430
|
+
export type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
37013
37431
|
export type FulfillmentInternalExperienceReference =
|
|
37014
37432
|
io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
37015
37433
|
export type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
@@ -37037,6 +37455,8 @@ export type FulfillmentTriggerProof =
|
|
|
37037
37455
|
io.flow.internal.v0.models.FulfillmentTriggerProof;
|
|
37038
37456
|
export type FulfillmentTriggerTime =
|
|
37039
37457
|
io.flow.internal.v0.models.FulfillmentTriggerTime;
|
|
37458
|
+
export type FulfillmentUpserted =
|
|
37459
|
+
io.flow.internal.v0.models.FulfillmentUpserted;
|
|
37040
37460
|
export type FxFee = io.flow.internal.v0.models.FxFee;
|
|
37041
37461
|
export type FxRevenueRecognition =
|
|
37042
37462
|
io.flow.internal.v0.models.FxRevenueRecognition;
|
|
@@ -37593,6 +38013,11 @@ export type MarketingGatewaySourceSummary =
|
|
|
37593
38013
|
export type MarketingGatewaySupportedChannelDetails =
|
|
37594
38014
|
io.flow.internal.v0.models.MarketingGatewaySupportedChannelDetails;
|
|
37595
38015
|
export type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
38016
|
+
export type MatiasItem = io.flow.internal.v0.models.MatiasItem;
|
|
38017
|
+
export type MatiasItemDeleted = io.flow.internal.v0.models.MatiasItemDeleted;
|
|
38018
|
+
export type MatiasItemForm = io.flow.internal.v0.models.MatiasItemForm;
|
|
38019
|
+
export type MatiasItemType = io.flow.internal.v0.enums.MatiasItemType;
|
|
38020
|
+
export type MatiasItemUpserted = io.flow.internal.v0.models.MatiasItemUpserted;
|
|
37596
38021
|
export type Merchant = io.flow.internal.v0.models.Merchant;
|
|
37597
38022
|
export type MerchantApplicationSummaries =
|
|
37598
38023
|
io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
@@ -37617,6 +38042,7 @@ export type MerchantSummary = io.flow.internal.v0.models.MerchantSummary;
|
|
|
37617
38042
|
export type MerchantTransactions =
|
|
37618
38043
|
io.flow.internal.v0.models.MerchantTransactions;
|
|
37619
38044
|
export type MerchantUpserted = io.flow.internal.v0.models.MerchantUpserted;
|
|
38045
|
+
export type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
37620
38046
|
export type MetadataProposition =
|
|
37621
38047
|
io.flow.internal.v0.models.MetadataProposition;
|
|
37622
38048
|
export type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
@@ -37727,6 +38153,7 @@ export type OrderPlaced = io.flow.internal.v0.models.OrderPlaced;
|
|
|
37727
38153
|
export type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
37728
38154
|
export type OrderRatesPublishedV3 =
|
|
37729
38155
|
io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
38156
|
+
export type OrderReference = io.flow.internal.v0.models.OrderReference;
|
|
37730
38157
|
export type OrderRevenueRegionChart =
|
|
37731
38158
|
io.flow.internal.v0.models.OrderRevenueRegionChart;
|
|
37732
38159
|
export type OrderRevenueRegionDataPoint =
|
|
@@ -37749,14 +38176,22 @@ export type OrderTransactionType =
|
|
|
37749
38176
|
export type OrderTransactionUpserted =
|
|
37750
38177
|
io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
37751
38178
|
export type OrderValidation = io.flow.internal.v0.models.OrderValidation;
|
|
38179
|
+
export type OrderValidationDeleted =
|
|
38180
|
+
io.flow.internal.v0.models.OrderValidationDeleted;
|
|
37752
38181
|
export type OrderValidationError =
|
|
37753
38182
|
io.flow.internal.v0.models.OrderValidationError;
|
|
37754
38183
|
export type OrderValidationFailure =
|
|
37755
38184
|
io.flow.internal.v0.models.OrderValidationFailure;
|
|
38185
|
+
export type OrderValidationFailureDeleted =
|
|
38186
|
+
io.flow.internal.v0.models.OrderValidationFailureDeleted;
|
|
37756
38187
|
export type OrderValidationFailureSummary =
|
|
37757
38188
|
io.flow.internal.v0.models.OrderValidationFailureSummary;
|
|
38189
|
+
export type OrderValidationFailureUpserted =
|
|
38190
|
+
io.flow.internal.v0.models.OrderValidationFailureUpserted;
|
|
37758
38191
|
export type OrderValidationStatus =
|
|
37759
38192
|
io.flow.internal.v0.enums.OrderValidationStatus;
|
|
38193
|
+
export type OrderValidationUpserted =
|
|
38194
|
+
io.flow.internal.v0.models.OrderValidationUpserted;
|
|
37760
38195
|
export type OrganizationAccount =
|
|
37761
38196
|
io.flow.internal.v0.models.OrganizationAccount;
|
|
37762
38197
|
export type OrganizationAccountDeleted =
|
|
@@ -37963,6 +38398,7 @@ export type PaypalRefundUpserted =
|
|
|
37963
38398
|
export type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
37964
38399
|
export type PendingBankPaymentDetail =
|
|
37965
38400
|
io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
38401
|
+
export type PendingOrder = io.flow.internal.v0.models.PendingOrder;
|
|
37966
38402
|
export type PhraseClassified = io.flow.internal.v0.models.PhraseClassified;
|
|
37967
38403
|
export type PhrasePropagated = io.flow.internal.v0.models.PhrasePropagated;
|
|
37968
38404
|
export type PingRequestForm = io.flow.internal.v0.models.PingRequestForm;
|
|
@@ -38072,7 +38508,6 @@ export type ProofOfPostingOrderCombinedShipment =
|
|
|
38072
38508
|
io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
38073
38509
|
export type ProofOfPostingShippingNotification =
|
|
38074
38510
|
io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
38075
|
-
export type QueuedRecord = io.flow.internal.v0.models.QueuedRecord;
|
|
38076
38511
|
export type Quote = io.flow.internal.v0.models.Quote;
|
|
38077
38512
|
export type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
38078
38513
|
export type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
@@ -38642,6 +39077,8 @@ export type StandaloneAttachmentDeleted =
|
|
|
38642
39077
|
io.flow.internal.v0.models.StandaloneAttachmentDeleted;
|
|
38643
39078
|
export type StandaloneAttachmentUpserted =
|
|
38644
39079
|
io.flow.internal.v0.models.StandaloneAttachmentUpserted;
|
|
39080
|
+
export type StatementCreationMetadata =
|
|
39081
|
+
io.flow.internal.v0.models.StatementCreationMetadata;
|
|
38645
39082
|
export type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
38646
39083
|
export type StatementTransferTransactionLocation =
|
|
38647
39084
|
io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
@@ -38736,10 +39173,12 @@ export type TariffEligibilityForm =
|
|
|
38736
39173
|
io.flow.internal.v0.unions.TariffEligibilityForm;
|
|
38737
39174
|
export type TariffEligibilityType =
|
|
38738
39175
|
io.flow.internal.v0.enums.TariffEligibilityType;
|
|
39176
|
+
export type Task = io.flow.internal.v0.models.Task;
|
|
38739
39177
|
export type TaskCount = io.flow.internal.v0.models.TaskCount;
|
|
38740
39178
|
export type TaskData = io.flow.internal.v0.unions.TaskData;
|
|
38741
39179
|
export type TaskImport = io.flow.internal.v0.models.TaskImport;
|
|
38742
39180
|
export type TaskItemUpserted = io.flow.internal.v0.models.TaskItemUpserted;
|
|
39181
|
+
export type TaskMetadata = io.flow.internal.v0.unions.TaskMetadata;
|
|
38743
39182
|
export type TaskProcessQueuedEvent =
|
|
38744
39183
|
io.flow.internal.v0.models.TaskProcessQueuedEvent;
|
|
38745
39184
|
export type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
@@ -38811,6 +39250,14 @@ export type TrackingLabelEventUpsertedV2 =
|
|
|
38811
39250
|
io.flow.internal.v0.models.TrackingLabelEventUpsertedV2;
|
|
38812
39251
|
export type TrackingLabelUpserted =
|
|
38813
39252
|
io.flow.internal.v0.models.TrackingLabelUpserted;
|
|
39253
|
+
export type TrackingProcessingError =
|
|
39254
|
+
io.flow.internal.v0.models.TrackingProcessingError;
|
|
39255
|
+
export type TrackingProcessingErrorDeleted =
|
|
39256
|
+
io.flow.internal.v0.models.TrackingProcessingErrorDeleted;
|
|
39257
|
+
export type TrackingProcessingErrorUpserted =
|
|
39258
|
+
io.flow.internal.v0.models.TrackingProcessingErrorUpserted;
|
|
39259
|
+
export type TrackingProcessingFailureClassification =
|
|
39260
|
+
io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
38814
39261
|
export type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
38815
39262
|
export type TrackingRequestUpserted =
|
|
38816
39263
|
io.flow.internal.v0.models.TrackingRequestUpserted;
|