@flowio/types 11.24.88 → 11.24.90
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 +487 -29
- package/dist/api.d.ts +161 -10
- package/package.json +2 -2
- package/src/api-internal.ts +604 -29
- package/src/api.ts +210 -9
package/src/api.ts
CHANGED
|
@@ -361,7 +361,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
361
361
|
| 'pay_now'
|
|
362
362
|
| 'pay_with_financing'
|
|
363
363
|
| 'pay_in_installments';
|
|
364
|
-
type PaymentMethodType = 'card' | 'card_present';
|
|
364
|
+
type PaymentMethodType = 'card' | 'card_present' | 'klarna';
|
|
365
365
|
type PaymentOutcomeType =
|
|
366
366
|
| 'authorized'
|
|
367
367
|
| 'manual_review'
|
|
@@ -717,6 +717,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
717
717
|
readonly marketplace_seller_info?: io.flow.stripe.v0.models.KlarnaMarketplaceSellerInfo[];
|
|
718
718
|
}
|
|
719
719
|
|
|
720
|
+
interface KlarnaDobForm {
|
|
721
|
+
readonly day: number;
|
|
722
|
+
readonly month: number;
|
|
723
|
+
readonly year: number;
|
|
724
|
+
}
|
|
725
|
+
|
|
720
726
|
interface KlarnaMarketplaceSellerInfo {
|
|
721
727
|
readonly sub_merchant_id?: string;
|
|
722
728
|
readonly product_category?: string;
|
|
@@ -726,6 +732,12 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
726
732
|
readonly additional_owners?: io.flow.stripe.v0.models.Owner[];
|
|
727
733
|
}
|
|
728
734
|
|
|
735
|
+
interface MarketplaceSellerInfo {
|
|
736
|
+
readonly name: string;
|
|
737
|
+
readonly id?: string;
|
|
738
|
+
readonly product_category?: string;
|
|
739
|
+
}
|
|
740
|
+
|
|
729
741
|
interface Masterpass {
|
|
730
742
|
readonly type: 'masterpass';
|
|
731
743
|
readonly masterpass: io.flow.stripe.v0.models.MasterpassInformation;
|
|
@@ -814,6 +826,10 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
814
826
|
readonly verified_phone?: string;
|
|
815
827
|
}
|
|
816
828
|
|
|
829
|
+
interface PaymentDetails {
|
|
830
|
+
readonly marketplace_seller_info?: io.flow.stripe.v0.models.MarketplaceSellerInfo;
|
|
831
|
+
}
|
|
832
|
+
|
|
817
833
|
interface PaymentIntent {
|
|
818
834
|
readonly id: string;
|
|
819
835
|
readonly object: string;
|
|
@@ -938,6 +954,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
938
954
|
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
939
955
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodCardDetails;
|
|
940
956
|
readonly card_present?: any /*object*/;
|
|
957
|
+
readonly klarna?: any /*object*/;
|
|
941
958
|
readonly created: number;
|
|
942
959
|
readonly customer?: string;
|
|
943
960
|
readonly livemode: boolean;
|
|
@@ -978,6 +995,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
978
995
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
979
996
|
}
|
|
980
997
|
|
|
998
|
+
interface PaymentMethodDataKlarna {
|
|
999
|
+
readonly type: 'klarna';
|
|
1000
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
1001
|
+
readonly metadata?: any /*object*/;
|
|
1002
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
1003
|
+
}
|
|
1004
|
+
|
|
981
1005
|
interface PaymentMethodDetailsCard {
|
|
982
1006
|
readonly type: 'card';
|
|
983
1007
|
readonly card: io.flow.stripe.v0.models.PaymentMethodDetailsCardInformation;
|
|
@@ -1026,8 +1050,20 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1026
1050
|
readonly card: io.flow.stripe.v0.models.PaymentMethodCardForm;
|
|
1027
1051
|
}
|
|
1028
1052
|
|
|
1053
|
+
interface PaymentMethodFormKlarna {
|
|
1054
|
+
readonly type: 'klarna';
|
|
1055
|
+
readonly billing_details?: io.flow.stripe.v0.models.PaymentMethodBillingDetails;
|
|
1056
|
+
readonly metadata?: any /*object*/;
|
|
1057
|
+
readonly klarna: io.flow.stripe.v0.models.PaymentMethodKlarnaForm;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
interface PaymentMethodKlarnaForm {
|
|
1061
|
+
readonly dob?: io.flow.stripe.v0.models.KlarnaDobForm;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1029
1064
|
interface PaymentMethodOptions {
|
|
1030
1065
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCard;
|
|
1066
|
+
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarna;
|
|
1031
1067
|
}
|
|
1032
1068
|
|
|
1033
1069
|
interface PaymentMethodOptionsCard {
|
|
@@ -1047,6 +1083,21 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1047
1083
|
|
|
1048
1084
|
interface PaymentMethodOptionsForm {
|
|
1049
1085
|
readonly card?: io.flow.stripe.v0.models.PaymentMethodOptionsCardForm;
|
|
1086
|
+
readonly klarna?: io.flow.stripe.v0.models.PaymentMethodOptionsKlarnaForm;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
interface PaymentMethodOptionsKlarna {
|
|
1090
|
+
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
1091
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
1092
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
1093
|
+
readonly payment_details?: io.flow.stripe.v0.models.PaymentDetails;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
interface PaymentMethodOptionsKlarnaForm {
|
|
1097
|
+
readonly capture_method?: io.flow.stripe.v0.enums.CaptureMethod;
|
|
1098
|
+
readonly preferred_locale?: io.flow.stripe.v0.enums.PreferredLocaleKlarna;
|
|
1099
|
+
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
1100
|
+
readonly payment_details?: io.flow.stripe.v0.models.PaymentDetails;
|
|
1050
1101
|
}
|
|
1051
1102
|
|
|
1052
1103
|
interface PaymentOutcome {
|
|
@@ -1347,11 +1398,15 @@ declare namespace io.flow.stripe.v0.unions {
|
|
|
1347
1398
|
| io.flow.stripe.v0.models.Masterpass
|
|
1348
1399
|
| io.flow.stripe.v0.models.ApplePay
|
|
1349
1400
|
| io.flow.stripe.v0.models.VisaCheckout;
|
|
1350
|
-
type PaymentMethodData =
|
|
1401
|
+
type PaymentMethodData =
|
|
1402
|
+
| io.flow.stripe.v0.models.PaymentMethodDataCard
|
|
1403
|
+
| io.flow.stripe.v0.models.PaymentMethodDataKlarna;
|
|
1351
1404
|
type PaymentMethodDetails =
|
|
1352
1405
|
| io.flow.stripe.v0.models.PaymentMethodDetailsCard
|
|
1353
1406
|
| io.flow.stripe.v0.models.PaymentMethodDetailsKlarna;
|
|
1354
|
-
type PaymentMethodForm =
|
|
1407
|
+
type PaymentMethodForm =
|
|
1408
|
+
| io.flow.stripe.v0.models.PaymentMethodFormCard
|
|
1409
|
+
| io.flow.stripe.v0.models.PaymentMethodFormKlarna;
|
|
1355
1410
|
}
|
|
1356
1411
|
|
|
1357
1412
|
declare namespace io.flow.shopify.external.v0.enums {
|
|
@@ -2926,6 +2981,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2926
2981
|
| 'organization_fulfillment'
|
|
2927
2982
|
| 'organization_marketing'
|
|
2928
2983
|
| 'organization_finance'
|
|
2984
|
+
| 'organization_classification'
|
|
2929
2985
|
| 'flow_operations'
|
|
2930
2986
|
| 'channel_admin'
|
|
2931
2987
|
| 'channel_organization_admin';
|
|
@@ -3011,6 +3067,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3011
3067
|
| 'byo_integration';
|
|
3012
3068
|
type MarginType = 'fixed' | 'percent';
|
|
3013
3069
|
type MeasurementSystem = 'imperial' | 'metric';
|
|
3070
|
+
type MerchantDisabledReason = 'merchant_deactivated' | 'merchant_rejected';
|
|
3014
3071
|
type MerchantGiftCardErrorCode =
|
|
3015
3072
|
| 'invalid'
|
|
3016
3073
|
| 'expired'
|
|
@@ -3034,7 +3091,8 @@ declare namespace io.flow.v0.enums {
|
|
|
3034
3091
|
| 'street_address_is_po_box_3pl'
|
|
3035
3092
|
| 'business_street_address_is_blank'
|
|
3036
3093
|
| 'business_street_address_is_po_box'
|
|
3037
|
-
| 'exception_merchant'
|
|
3094
|
+
| 'exception_merchant'
|
|
3095
|
+
| 'application_missing';
|
|
3038
3096
|
type OnboardingTradeSector =
|
|
3039
3097
|
| 'accessories'
|
|
3040
3098
|
| 'animals_and_pet_supplies'
|
|
@@ -3497,9 +3555,10 @@ declare namespace io.flow.v0.enums {
|
|
|
3497
3555
|
| 'reversal'
|
|
3498
3556
|
| 'shipping_label'
|
|
3499
3557
|
| 'shipping_label_service'
|
|
3558
|
+
| 'shipping_label_revenue_share'
|
|
3500
3559
|
| 'trueup'
|
|
3501
3560
|
| 'carrier_charge'
|
|
3502
|
-
| '
|
|
3561
|
+
| 'carrier_charge_revenue_share'
|
|
3503
3562
|
| 'platform_fee'
|
|
3504
3563
|
| 'tax'
|
|
3505
3564
|
| 'duty'
|
|
@@ -3519,7 +3578,11 @@ declare namespace io.flow.v0.enums {
|
|
|
3519
3578
|
| 'duties_paid'
|
|
3520
3579
|
| 'emergency'
|
|
3521
3580
|
| 'peak'
|
|
3522
|
-
| 'address_correction'
|
|
3581
|
+
| 'address_correction'
|
|
3582
|
+
| 'security_ratecard_fee'
|
|
3583
|
+
| 'eei_filing_ratecard_fee'
|
|
3584
|
+
| 'fixed_ddp_ratecard_fee'
|
|
3585
|
+
| 'fixed_currency_conversion_ratecard_fee';
|
|
3523
3586
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
3524
3587
|
type UnitOfMeasurement =
|
|
3525
3588
|
| 'millimeter'
|
|
@@ -3591,6 +3654,10 @@ declare namespace io.flow.v0.models {
|
|
|
3591
3654
|
readonly status: io.flow.v0.enums.AbandonedOrderSettingStatus;
|
|
3592
3655
|
}
|
|
3593
3656
|
|
|
3657
|
+
interface AccountIdReference {
|
|
3658
|
+
readonly id: string;
|
|
3659
|
+
}
|
|
3660
|
+
|
|
3594
3661
|
interface AccountOrdersExportType {
|
|
3595
3662
|
readonly discriminator: 'account_orders_export_type';
|
|
3596
3663
|
readonly statement_id?: string;
|
|
@@ -3738,6 +3805,17 @@ declare namespace io.flow.v0.models {
|
|
|
3738
3805
|
readonly placeholder?: boolean;
|
|
3739
3806
|
}
|
|
3740
3807
|
|
|
3808
|
+
interface AdditionalHandlingServiceFee {
|
|
3809
|
+
readonly discriminator: 'additional_handling_service_fee';
|
|
3810
|
+
readonly length_girth_threshold?: number;
|
|
3811
|
+
readonly length_threshold?: number;
|
|
3812
|
+
readonly width_threshold?: number;
|
|
3813
|
+
readonly dimensional_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
3814
|
+
readonly weight_threshold?: number;
|
|
3815
|
+
readonly weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
3816
|
+
readonly amount: io.flow.v0.models.Money;
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3741
3819
|
interface AdditionalServicesRequested {
|
|
3742
3820
|
readonly name: string;
|
|
3743
3821
|
readonly description?: string;
|
|
@@ -5196,6 +5274,7 @@ declare namespace io.flow.v0.models {
|
|
|
5196
5274
|
interface ChannelTransaction {
|
|
5197
5275
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
5198
5276
|
readonly id: string;
|
|
5277
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
5199
5278
|
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
5200
5279
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
5201
5280
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -6356,6 +6435,17 @@ declare namespace io.flow.v0.models {
|
|
|
6356
6435
|
readonly ecommerce_platform: io.flow.v0.models.EcommercePlatform;
|
|
6357
6436
|
}
|
|
6358
6437
|
|
|
6438
|
+
interface EeiFilingRatecardFee {
|
|
6439
|
+
readonly discriminator: 'eei_filing_ratecard_fee';
|
|
6440
|
+
readonly amount: io.flow.v0.models.Money;
|
|
6441
|
+
}
|
|
6442
|
+
|
|
6443
|
+
interface EeiFilingServiceFee {
|
|
6444
|
+
readonly discriminator: 'eei_filing_service_fee';
|
|
6445
|
+
readonly amount: io.flow.v0.models.Money;
|
|
6446
|
+
readonly value_threshold: io.flow.v0.models.Money;
|
|
6447
|
+
}
|
|
6448
|
+
|
|
6359
6449
|
interface EmailAbandonedOrderPromotion {
|
|
6360
6450
|
readonly discount_form: io.flow.v0.models.DiscountForm;
|
|
6361
6451
|
readonly attributes: Record<string, string>;
|
|
@@ -6878,6 +6968,31 @@ declare namespace io.flow.v0.models {
|
|
|
6878
6968
|
readonly placeholder?: string;
|
|
6879
6969
|
}
|
|
6880
6970
|
|
|
6971
|
+
interface FixedCurrencyConversionRatecardFee {
|
|
6972
|
+
readonly discriminator: 'fixed_currency_conversion_ratecard_fee';
|
|
6973
|
+
readonly amount: io.flow.v0.models.Money;
|
|
6974
|
+
}
|
|
6975
|
+
|
|
6976
|
+
interface FixedCurrencyConversionServiceFee {
|
|
6977
|
+
readonly discriminator: 'fixed_currency_conversion_service_fee';
|
|
6978
|
+
readonly conditions: io.flow.v0.models.FixedFeeCondition[];
|
|
6979
|
+
}
|
|
6980
|
+
|
|
6981
|
+
interface FixedDdpRatecardFee {
|
|
6982
|
+
readonly discriminator: 'fixed_ddp_ratecard_fee';
|
|
6983
|
+
readonly amount: io.flow.v0.models.Money;
|
|
6984
|
+
}
|
|
6985
|
+
|
|
6986
|
+
interface FixedDdpServiceFee {
|
|
6987
|
+
readonly discriminator: 'fixed_ddp_service_fee';
|
|
6988
|
+
readonly conditions: io.flow.v0.models.FixedFeeCondition[];
|
|
6989
|
+
}
|
|
6990
|
+
|
|
6991
|
+
interface FixedFeeCondition {
|
|
6992
|
+
readonly countries: string[];
|
|
6993
|
+
readonly amount: io.flow.v0.models.Money;
|
|
6994
|
+
}
|
|
6995
|
+
|
|
6881
6996
|
interface FlatRate {
|
|
6882
6997
|
readonly discriminator: 'flat_rate';
|
|
6883
6998
|
readonly price: io.flow.v0.models.Price;
|
|
@@ -6898,6 +7013,26 @@ declare namespace io.flow.v0.models {
|
|
|
6898
7013
|
readonly status: io.flow.v0.enums.SubcatalogItemStatus;
|
|
6899
7014
|
}
|
|
6900
7015
|
|
|
7016
|
+
interface FlowTransaction {
|
|
7017
|
+
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
7018
|
+
readonly id: string;
|
|
7019
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
7020
|
+
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
7021
|
+
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
7022
|
+
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
7023
|
+
readonly currency: string;
|
|
7024
|
+
readonly source: io.flow.v0.enums.TransactionSource;
|
|
7025
|
+
readonly parent?: io.flow.v0.models.ParentTransactionSummary;
|
|
7026
|
+
readonly gross: number;
|
|
7027
|
+
readonly fees: io.flow.v0.models.FeeDeduction[];
|
|
7028
|
+
readonly withholdings: io.flow.v0.models.WithholdingDeduction[];
|
|
7029
|
+
readonly discounts: io.flow.v0.models.BillingDiscount[];
|
|
7030
|
+
readonly net: number;
|
|
7031
|
+
readonly identifiers: Record<string, string>;
|
|
7032
|
+
readonly created_at: string;
|
|
7033
|
+
readonly updated_at: string;
|
|
7034
|
+
}
|
|
7035
|
+
|
|
6901
7036
|
interface FraudEmailRule {
|
|
6902
7037
|
readonly id?: string;
|
|
6903
7038
|
readonly email: string;
|
|
@@ -8081,6 +8216,15 @@ declare namespace io.flow.v0.models {
|
|
|
8081
8216
|
readonly iso_639_2: string;
|
|
8082
8217
|
}
|
|
8083
8218
|
|
|
8219
|
+
interface LargePackageServiceFee {
|
|
8220
|
+
readonly discriminator: 'large_package_service_fee';
|
|
8221
|
+
readonly length_girth_threshold?: number;
|
|
8222
|
+
readonly dimensional_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8223
|
+
readonly weight_threshold?: number;
|
|
8224
|
+
readonly weight_unit?: io.flow.v0.enums.UnitOfMeasurement;
|
|
8225
|
+
readonly amount: io.flow.v0.models.Money;
|
|
8226
|
+
}
|
|
8227
|
+
|
|
8084
8228
|
interface Line {
|
|
8085
8229
|
readonly id?: string;
|
|
8086
8230
|
readonly item_number: string;
|
|
@@ -8435,6 +8579,11 @@ declare namespace io.flow.v0.models {
|
|
|
8435
8579
|
readonly reason: string;
|
|
8436
8580
|
}
|
|
8437
8581
|
|
|
8582
|
+
interface MerchantDisabled {
|
|
8583
|
+
readonly discriminator: 'merchant_disabled';
|
|
8584
|
+
readonly reason: io.flow.v0.enums.MerchantDisabledReason;
|
|
8585
|
+
}
|
|
8586
|
+
|
|
8438
8587
|
interface MerchantGiftCardBalance {
|
|
8439
8588
|
readonly amount: number;
|
|
8440
8589
|
readonly currency: string;
|
|
@@ -10547,6 +10696,7 @@ declare namespace io.flow.v0.models {
|
|
|
10547
10696
|
|
|
10548
10697
|
interface PayoutTransaction {
|
|
10549
10698
|
readonly id: string;
|
|
10699
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
10550
10700
|
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
10551
10701
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
10552
10702
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -11558,6 +11708,12 @@ declare namespace io.flow.v0.models {
|
|
|
11558
11708
|
readonly status: io.flow.v0.enums.AvailabilityStatus;
|
|
11559
11709
|
}
|
|
11560
11710
|
|
|
11711
|
+
interface RemoteAreaByWeightServiceFee {
|
|
11712
|
+
readonly discriminator: 'remote_area_by_weight_service_fee';
|
|
11713
|
+
readonly amount: io.flow.v0.models.Money;
|
|
11714
|
+
readonly weight_unit: io.flow.v0.enums.UnitOfMeasurement;
|
|
11715
|
+
}
|
|
11716
|
+
|
|
11561
11717
|
interface RemoteAreaRatecardFee {
|
|
11562
11718
|
readonly discriminator: 'remote_area_ratecard_fee';
|
|
11563
11719
|
readonly amount: io.flow.v0.models.Money;
|
|
@@ -11904,6 +12060,17 @@ declare namespace io.flow.v0.models {
|
|
|
11904
12060
|
readonly minute_of_hour: string;
|
|
11905
12061
|
}
|
|
11906
12062
|
|
|
12063
|
+
interface SecurityRatecardFee {
|
|
12064
|
+
readonly discriminator: 'security_ratecard_fee';
|
|
12065
|
+
readonly amount: io.flow.v0.models.Money;
|
|
12066
|
+
}
|
|
12067
|
+
|
|
12068
|
+
interface SecurityServiceFee {
|
|
12069
|
+
readonly discriminator: 'security_service_fee';
|
|
12070
|
+
readonly amount: io.flow.v0.models.Money;
|
|
12071
|
+
readonly countries: string[];
|
|
12072
|
+
}
|
|
12073
|
+
|
|
11907
12074
|
interface SelectIssuerOptionActionDetails {
|
|
11908
12075
|
readonly discriminator: 'select_issuer_option_action_details';
|
|
11909
12076
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
@@ -13422,6 +13589,7 @@ declare namespace io.flow.v0.models {
|
|
|
13422
13589
|
interface Transaction {
|
|
13423
13590
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
13424
13591
|
readonly id: string;
|
|
13592
|
+
readonly account: io.flow.v0.models.AccountIdReference;
|
|
13425
13593
|
readonly metadata?: io.flow.v0.unions.TransactionMetadata;
|
|
13426
13594
|
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
13427
13595
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
@@ -13451,6 +13619,7 @@ declare namespace io.flow.v0.models {
|
|
|
13451
13619
|
readonly label_created_at: string;
|
|
13452
13620
|
readonly carrier_id: string;
|
|
13453
13621
|
readonly carrier_tracking_number: string;
|
|
13622
|
+
readonly revenue_share_percentage: number;
|
|
13454
13623
|
readonly outbound?: io.flow.v0.models.TransactionMetadataCarrierChargeOutbound;
|
|
13455
13624
|
}
|
|
13456
13625
|
|
|
@@ -14194,7 +14363,8 @@ declare namespace io.flow.v0.unions {
|
|
|
14194
14363
|
| io.flow.v0.models.SetupBlocked
|
|
14195
14364
|
| io.flow.v0.models.SetupCompleted
|
|
14196
14365
|
| io.flow.v0.models.MerchantActivated
|
|
14197
|
-
| io.flow.v0.models.MerchantDeactivated
|
|
14366
|
+
| io.flow.v0.models.MerchantDeactivated
|
|
14367
|
+
| io.flow.v0.models.MerchantDisabled;
|
|
14198
14368
|
type OnlineAuthorizationDetails =
|
|
14199
14369
|
| io.flow.v0.models.CryptopayAuthorizationDetails
|
|
14200
14370
|
| io.flow.v0.models.PaypalAuthorizationDetails
|
|
@@ -14320,7 +14490,11 @@ declare namespace io.flow.v0.unions {
|
|
|
14320
14490
|
| io.flow.v0.models.RemoteAreaRatecardFee
|
|
14321
14491
|
| io.flow.v0.models.EmergencySituationSurchargeRatecardFee
|
|
14322
14492
|
| io.flow.v0.models.PeakSurchargeRatecardFee
|
|
14323
|
-
| io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee
|
|
14493
|
+
| io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee
|
|
14494
|
+
| io.flow.v0.models.SecurityRatecardFee
|
|
14495
|
+
| io.flow.v0.models.EeiFilingRatecardFee
|
|
14496
|
+
| io.flow.v0.models.FixedDdpRatecardFee
|
|
14497
|
+
| io.flow.v0.models.FixedCurrencyConversionRatecardFee;
|
|
14324
14498
|
type RepeatSchedule =
|
|
14325
14499
|
| io.flow.v0.models.RepeatHourly
|
|
14326
14500
|
| io.flow.v0.models.RepeatDaily
|
|
@@ -14347,7 +14521,14 @@ declare namespace io.flow.v0.unions {
|
|
|
14347
14521
|
| io.flow.v0.models.PeakSurchargeServiceFee
|
|
14348
14522
|
| io.flow.v0.models.PeakSurchargeByWeightServiceFee
|
|
14349
14523
|
| io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee
|
|
14350
|
-
| io.flow.v0.models.OversizePieceSurchargeServiceFee
|
|
14524
|
+
| io.flow.v0.models.OversizePieceSurchargeServiceFee
|
|
14525
|
+
| io.flow.v0.models.RemoteAreaByWeightServiceFee
|
|
14526
|
+
| io.flow.v0.models.AdditionalHandlingServiceFee
|
|
14527
|
+
| io.flow.v0.models.LargePackageServiceFee
|
|
14528
|
+
| io.flow.v0.models.SecurityServiceFee
|
|
14529
|
+
| io.flow.v0.models.FixedDdpServiceFee
|
|
14530
|
+
| io.flow.v0.models.FixedCurrencyConversionServiceFee
|
|
14531
|
+
| io.flow.v0.models.EeiFilingServiceFee;
|
|
14351
14532
|
type Session = io.flow.v0.models.OrganizationSession;
|
|
14352
14533
|
type SessionAuthorization =
|
|
14353
14534
|
io.flow.v0.models.OrganizationSessionAuthorization;
|
|
@@ -14415,6 +14596,7 @@ export type AbandonedOrderPromotionStatus =
|
|
|
14415
14596
|
export type AbandonedOrderSettingStatus =
|
|
14416
14597
|
io.flow.v0.enums.AbandonedOrderSettingStatus;
|
|
14417
14598
|
export type AbandonedOrderSettings = io.flow.v0.models.AbandonedOrderSettings;
|
|
14599
|
+
export type AccountIdReference = io.flow.v0.models.AccountIdReference;
|
|
14418
14600
|
export type AccountOrdersExportType = io.flow.v0.models.AccountOrdersExportType;
|
|
14419
14601
|
export type AccountReference = io.flow.v0.models.AccountReference;
|
|
14420
14602
|
export type AccountTransactionsExportType =
|
|
@@ -14439,6 +14621,8 @@ export type ActionUseSdkPaypal = io.flow.v0.models.ActionUseSdkPaypal;
|
|
|
14439
14621
|
export type ActionUseSdkStripeV3 = io.flow.v0.models.ActionUseSdkStripeV3;
|
|
14440
14622
|
export type ActionWait = io.flow.v0.models.ActionWait;
|
|
14441
14623
|
export type ActivationPutForm = io.flow.v0.models.ActivationPutForm;
|
|
14624
|
+
export type AdditionalHandlingServiceFee =
|
|
14625
|
+
io.flow.v0.models.AdditionalHandlingServiceFee;
|
|
14442
14626
|
export type AdditionalServicesRequested =
|
|
14443
14627
|
io.flow.v0.models.AdditionalServicesRequested;
|
|
14444
14628
|
export type Address = io.flow.v0.models.Address;
|
|
@@ -14993,6 +15177,8 @@ export type EcommercePlatformType = io.flow.v0.enums.EcommercePlatformType;
|
|
|
14993
15177
|
export type EcommercePlatformUpserted =
|
|
14994
15178
|
io.flow.v0.models.EcommercePlatformUpserted;
|
|
14995
15179
|
export type EconomicTitleLocation = io.flow.v0.enums.EconomicTitleLocation;
|
|
15180
|
+
export type EeiFilingRatecardFee = io.flow.v0.models.EeiFilingRatecardFee;
|
|
15181
|
+
export type EeiFilingServiceFee = io.flow.v0.models.EeiFilingServiceFee;
|
|
14996
15182
|
export type EmailAbandonedOrderPromotion =
|
|
14997
15183
|
io.flow.v0.models.EmailAbandonedOrderPromotion;
|
|
14998
15184
|
export type EmailAbandonedOrderUrls = io.flow.v0.models.EmailAbandonedOrderUrls;
|
|
@@ -15140,6 +15326,13 @@ export type FieldValidationRequired = io.flow.v0.models.FieldValidationRequired;
|
|
|
15140
15326
|
export type FieldValidationRequiredIfPresent =
|
|
15141
15327
|
io.flow.v0.models.FieldValidationRequiredIfPresent;
|
|
15142
15328
|
export type FieldValidationRule = io.flow.v0.unions.FieldValidationRule;
|
|
15329
|
+
export type FixedCurrencyConversionRatecardFee =
|
|
15330
|
+
io.flow.v0.models.FixedCurrencyConversionRatecardFee;
|
|
15331
|
+
export type FixedCurrencyConversionServiceFee =
|
|
15332
|
+
io.flow.v0.models.FixedCurrencyConversionServiceFee;
|
|
15333
|
+
export type FixedDdpRatecardFee = io.flow.v0.models.FixedDdpRatecardFee;
|
|
15334
|
+
export type FixedDdpServiceFee = io.flow.v0.models.FixedDdpServiceFee;
|
|
15335
|
+
export type FixedFeeCondition = io.flow.v0.models.FixedFeeCondition;
|
|
15143
15336
|
export type FlatRate = io.flow.v0.models.FlatRate;
|
|
15144
15337
|
export type FlatRateForm = io.flow.v0.models.FlatRateForm;
|
|
15145
15338
|
export type FlowBehavior = io.flow.v0.enums.FlowBehavior;
|
|
@@ -15147,6 +15340,7 @@ export type FlowCenterReference = io.flow.v0.models.FlowCenterReference;
|
|
|
15147
15340
|
export type FlowEntity = io.flow.v0.enums.FlowEntity;
|
|
15148
15341
|
export type FlowItemIndexMetadata = io.flow.v0.models.FlowItemIndexMetadata;
|
|
15149
15342
|
export type FlowRole = io.flow.v0.enums.FlowRole;
|
|
15343
|
+
export type FlowTransaction = io.flow.v0.models.FlowTransaction;
|
|
15150
15344
|
export type FraudEmailRule = io.flow.v0.models.FraudEmailRule;
|
|
15151
15345
|
export type FraudEmailRuleDecision = io.flow.v0.enums.FraudEmailRuleDecision;
|
|
15152
15346
|
export type FraudEmailRuleForm = io.flow.v0.models.FraudEmailRuleForm;
|
|
@@ -15394,6 +15588,7 @@ export type LanePreselectPreference = io.flow.v0.enums.LanePreselectPreference;
|
|
|
15394
15588
|
export type LaneStrategy = io.flow.v0.enums.LaneStrategy;
|
|
15395
15589
|
export type LaneSummary = io.flow.v0.models.LaneSummary;
|
|
15396
15590
|
export type Language = io.flow.v0.models.Language;
|
|
15591
|
+
export type LargePackageServiceFee = io.flow.v0.models.LargePackageServiceFee;
|
|
15397
15592
|
export type LevyComponent = io.flow.v0.enums.LevyComponent;
|
|
15398
15593
|
export type LevyInclusion = io.flow.v0.enums.LevyInclusion;
|
|
15399
15594
|
export type LevyStrategy = io.flow.v0.enums.LevyStrategy;
|
|
@@ -15464,6 +15659,8 @@ export type MerchantApplicationUpserted =
|
|
|
15464
15659
|
export type MerchantApplicationsSummary =
|
|
15465
15660
|
io.flow.v0.unions.MerchantApplicationsSummary;
|
|
15466
15661
|
export type MerchantDeactivated = io.flow.v0.models.MerchantDeactivated;
|
|
15662
|
+
export type MerchantDisabled = io.flow.v0.models.MerchantDisabled;
|
|
15663
|
+
export type MerchantDisabledReason = io.flow.v0.enums.MerchantDisabledReason;
|
|
15467
15664
|
export type MerchantGiftCardBalance = io.flow.v0.models.MerchantGiftCardBalance;
|
|
15468
15665
|
export type MerchantGiftCardBalanceForm =
|
|
15469
15666
|
io.flow.v0.models.MerchantGiftCardBalanceForm;
|
|
@@ -16155,6 +16352,8 @@ export type RegionReference = io.flow.v0.models.RegionReference;
|
|
|
16155
16352
|
export type RegionSetting = io.flow.v0.models.RegionSetting;
|
|
16156
16353
|
export type RegionSettingForm = io.flow.v0.models.RegionSettingForm;
|
|
16157
16354
|
export type RegionType = io.flow.v0.enums.RegionType;
|
|
16355
|
+
export type RemoteAreaByWeightServiceFee =
|
|
16356
|
+
io.flow.v0.models.RemoteAreaByWeightServiceFee;
|
|
16158
16357
|
export type RemoteAreaRatecardFee = io.flow.v0.models.RemoteAreaRatecardFee;
|
|
16159
16358
|
export type RemoteAreaServiceFee = io.flow.v0.models.RemoteAreaServiceFee;
|
|
16160
16359
|
export type RepeatDaily = io.flow.v0.models.RepeatDaily;
|
|
@@ -16225,6 +16424,8 @@ export type ScheduledExportForm = io.flow.v0.models.ScheduledExportForm;
|
|
|
16225
16424
|
export type ScheduledPickup = io.flow.v0.models.ScheduledPickup;
|
|
16226
16425
|
export type SdkAdyenV3AuthenticationToken =
|
|
16227
16426
|
io.flow.v0.unions.SdkAdyenV3AuthenticationToken;
|
|
16427
|
+
export type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
16428
|
+
export type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
16228
16429
|
export type SelectIssuerOptionActionDetails =
|
|
16229
16430
|
io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
16230
16431
|
export type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|