@flowio/types 11.24.61 → 11.24.63

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/src/api.ts CHANGED
@@ -549,6 +549,7 @@ declare namespace io.flow.stripe.v0.models {
549
549
  interface Metadata {
550
550
  readonly order_number?: string;
551
551
  readonly authorization_id?: string;
552
+ readonly organization_id?: string;
552
553
  }
553
554
 
554
555
  interface NextAction {
@@ -925,6 +926,7 @@ declare namespace io.flow.stripe.v0.models {
925
926
  readonly token?: string;
926
927
  readonly usage: io.flow.stripe.v0.enums.SourceUsageType;
927
928
  readonly source_order?: io.flow.stripe.v0.models.SourceOrderRequest;
929
+ readonly metadata?: io.flow.stripe.v0.models.Metadata;
928
930
  }
929
931
 
930
932
  interface Stripe3Ds2Fingerprint {
@@ -2003,8 +2005,8 @@ declare namespace io.flow.apple.pay.v0.enums {
2003
2005
  | 'email'
2004
2006
  | 'name'
2005
2007
  | 'phone'
2006
- | 'postalAddress'
2007
- | 'phoneticName';
2008
+ | 'postal_address'
2009
+ | 'phonetic_name';
2008
2010
  type ApplePayLineItemType = 'final' | 'pending';
2009
2011
  type ApplePayMerchantCapability =
2010
2012
  | 'supports3DS'
@@ -2014,8 +2016,8 @@ declare namespace io.flow.apple.pay.v0.enums {
2014
2016
  type ApplePayShippingType =
2015
2017
  | 'shipping'
2016
2018
  | 'delivery'
2017
- | 'storePickup'
2018
- | 'servicePickup';
2019
+ | 'store_pickup'
2020
+ | 'service_pickup';
2019
2021
  type ApplePaySupportedNetworks =
2020
2022
  | 'amex'
2021
2023
  | 'chinaUnionPay'
@@ -2030,7 +2032,7 @@ declare namespace io.flow.apple.pay.v0.models {
2030
2032
  interface ApplePayLineItem {
2031
2033
  readonly label: string;
2032
2034
  readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
2033
- readonly amount: string;
2035
+ readonly amount: number;
2034
2036
  }
2035
2037
 
2036
2038
  interface ApplePayPaymentContact {
@@ -2081,7 +2083,7 @@ declare namespace io.flow.apple.pay.v0.models {
2081
2083
  interface ApplePayShippingMethod {
2082
2084
  readonly label: string;
2083
2085
  readonly detail: string;
2084
- readonly amount: string;
2086
+ readonly amount: number;
2085
2087
  readonly identifier: string;
2086
2088
  }
2087
2089
  }
@@ -2328,6 +2330,8 @@ declare namespace io.flow.v0.enums {
2328
2330
  | 'catalog_item_deleted_v2'
2329
2331
  | 'subcatalog_item_upserted'
2330
2332
  | 'subcatalog_item_deleted'
2333
+ | 'catalog_statistics_upserted'
2334
+ | 'catalog_statistics_deleted'
2331
2335
  | 'channel_upserted'
2332
2336
  | 'channel_deleted'
2333
2337
  | 'channel_currency_upserted'
@@ -2475,6 +2479,7 @@ declare namespace io.flow.v0.enums {
2475
2479
  | 'virtual_card_refund_upserted'
2476
2480
  | 'virtual_card_refund_deleted'
2477
2481
  | 'payment_request_upserted'
2482
+ | 'payment_request_deleted'
2478
2483
  | 'price_book_upserted'
2479
2484
  | 'price_book_deleted'
2480
2485
  | 'price_book_item_upserted'
@@ -3040,6 +3045,7 @@ declare namespace io.flow.v0.enums {
3040
3045
  | 'platform_fee'
3041
3046
  | 'tax'
3042
3047
  | 'duty'
3048
+ | 'withholding'
3043
3049
  | 'other_adjustment'
3044
3050
  | 'tax_adjustment'
3045
3051
  | 'channel'
@@ -3922,6 +3928,14 @@ declare namespace io.flow.v0.models {
3922
3928
  readonly order_numbers: string[];
3923
3929
  }
3924
3930
 
3931
+ interface BridgeShippingLabelForm {
3932
+ readonly discriminator: 'bridge_shipping_label_form';
3933
+ readonly order_number: string;
3934
+ readonly items?: io.flow.v0.models.LineItemForm[];
3935
+ readonly package?: io.flow.v0.models.ShippingLabelPackage;
3936
+ readonly origin?: io.flow.v0.models.ShippingAddress;
3937
+ }
3938
+
3925
3939
  interface BrowseOptinResponses {
3926
3940
  readonly id: string;
3927
3941
  readonly session_id: string;
@@ -4348,6 +4362,22 @@ declare namespace io.flow.v0.models {
4348
4362
  readonly categories: number;
4349
4363
  }
4350
4364
 
4365
+ interface CatalogStatisticsDeleted {
4366
+ readonly discriminator: 'catalog_statistics_deleted';
4367
+ readonly event_id: string;
4368
+ readonly timestamp: string;
4369
+ readonly organization: string;
4370
+ readonly id: string;
4371
+ }
4372
+
4373
+ interface CatalogStatisticsUpserted {
4374
+ readonly discriminator: 'catalog_statistics_upserted';
4375
+ readonly event_id: string;
4376
+ readonly timestamp: string;
4377
+ readonly organization: string;
4378
+ readonly statistics: io.flow.v0.models.CatalogStatistics;
4379
+ }
4380
+
4351
4381
  interface CatalogUpserted {
4352
4382
  readonly discriminator: 'catalog_upserted';
4353
4383
  readonly event_id: string;
@@ -5462,7 +5492,7 @@ declare namespace io.flow.v0.models {
5462
5492
  readonly attributes?: Record<string, string>;
5463
5493
  readonly delivered_duty?: io.flow.v0.enums.DeliveredDuty;
5464
5494
  readonly direction?: io.flow.v0.enums.Direction;
5465
- readonly order_number?: string;
5495
+ readonly order_number: string;
5466
5496
  readonly service?: string;
5467
5497
  readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
5468
5498
  }
@@ -8865,6 +8895,7 @@ declare namespace io.flow.v0.models {
8865
8895
  readonly event_id: string;
8866
8896
  readonly timestamp: string;
8867
8897
  readonly organization: string;
8898
+ readonly id: string;
8868
8899
  readonly organization_onboarding_state: io.flow.v0.models.OrganizationOnboardingState;
8869
8900
  }
8870
8901
 
@@ -9648,6 +9679,14 @@ declare namespace io.flow.v0.models {
9648
9679
  readonly billing: io.flow.v0.models.PaymentRequestBilling;
9649
9680
  }
9650
9681
 
9682
+ interface PaymentRequestDeleted {
9683
+ readonly discriminator: 'payment_request_deleted';
9684
+ readonly event_id: string;
9685
+ readonly timestamp: string;
9686
+ readonly organization: string;
9687
+ readonly id: string;
9688
+ }
9689
+
9651
9690
  interface PaymentRequestForm {
9652
9691
  readonly amount: number;
9653
9692
  readonly currency: string;
@@ -12852,7 +12891,8 @@ declare namespace io.flow.v0.models {
12852
12891
  }
12853
12892
 
12854
12893
  declare namespace io.flow.v0.unions {
12855
- type AbandonedOrderPromotionDetails = io.flow.v0.models.AbandonedOrderPromotionDiscountDetails;
12894
+ type AbandonedOrderPromotionDetails =
12895
+ io.flow.v0.models.AbandonedOrderPromotionDiscountDetails;
12856
12896
  type Action =
12857
12897
  | io.flow.v0.models.ActionRedirect
12858
12898
  | io.flow.v0.models.ActionUseSdkKlarnaV1
@@ -12910,7 +12950,8 @@ declare namespace io.flow.v0.unions {
12910
12950
  | io.flow.v0.models.AvailableFilterStructured
12911
12951
  | io.flow.v0.models.AvailableFilterUnstructured;
12912
12952
  type BankAccountInfo = io.flow.v0.models.BankAccountInfoUsa;
12913
- type BrowserActionConfiguration = io.flow.v0.models.CardBrowserActionConfiguration;
12953
+ type BrowserActionConfiguration =
12954
+ io.flow.v0.models.CardBrowserActionConfiguration;
12914
12955
  type CardAuthorizationActionResult =
12915
12956
  | io.flow.v0.models.AuthorizationActionResultAdyenV3
12916
12957
  | io.flow.v0.models.AuthorizationActionResultAdyenV4;
@@ -12938,11 +12979,13 @@ declare namespace io.flow.v0.unions {
12938
12979
  | io.flow.v0.models.DeminimisSimple
12939
12980
  | io.flow.v0.models.DeminimisPerItem;
12940
12981
  type DeviceDetails = io.flow.v0.models.DeviceDetailsBrowser;
12941
- type DeviceFingerprintDetails = io.flow.v0.models.DeviceFingerprintDetailsBrowser;
12982
+ type DeviceFingerprintDetails =
12983
+ io.flow.v0.models.DeviceFingerprintDetailsBrowser;
12942
12984
  type DiscountOffer =
12943
12985
  | io.flow.v0.models.DiscountOfferFixed
12944
12986
  | io.flow.v0.models.DiscountOfferPercent;
12945
- type DiscountRuleEntitlement = io.flow.v0.models.DiscountRuleSubsidyEntitlement;
12987
+ type DiscountRuleEntitlement =
12988
+ io.flow.v0.models.DiscountRuleSubsidyEntitlement;
12946
12989
  type Document =
12947
12990
  | io.flow.v0.models.CatalogItemDocument
12948
12991
  | io.flow.v0.models.HarmonizationDocument;
@@ -12979,6 +13022,8 @@ declare namespace io.flow.v0.unions {
12979
13022
  | io.flow.v0.models.CatalogItemDeletedV2
12980
13023
  | io.flow.v0.models.SubcatalogItemUpserted
12981
13024
  | io.flow.v0.models.SubcatalogItemDeleted
13025
+ | io.flow.v0.models.CatalogStatisticsUpserted
13026
+ | io.flow.v0.models.CatalogStatisticsDeleted
12982
13027
  | io.flow.v0.models.ChannelUpserted
12983
13028
  | io.flow.v0.models.ChannelDeleted
12984
13029
  | io.flow.v0.models.ChannelCurrencyUpserted
@@ -13126,6 +13171,7 @@ declare namespace io.flow.v0.unions {
13126
13171
  | io.flow.v0.models.VirtualCardRefundUpserted
13127
13172
  | io.flow.v0.models.VirtualCardRefundDeleted
13128
13173
  | io.flow.v0.models.PaymentRequestUpserted
13174
+ | io.flow.v0.models.PaymentRequestDeleted
13129
13175
  | io.flow.v0.models.PriceBookUpserted
13130
13176
  | io.flow.v0.models.PriceBookDeleted
13131
13177
  | io.flow.v0.models.PriceBookItemUpserted
@@ -13198,9 +13244,12 @@ declare namespace io.flow.v0.unions {
13198
13244
  | io.flow.v0.models.FraudFlowOrderReference
13199
13245
  | io.flow.v0.models.FraudPaymentRequestReference;
13200
13246
  type GatewayAuthenticationData = io.flow.v0.models.StripeAuthenticationData;
13201
- type GatewayAuthenticationDataForm = io.flow.v0.models.StripeAuthenticationDataForm;
13202
- type InlineActionConfiguration = io.flow.v0.models.BrowserInlineActionConfiguration;
13203
- type InputSpecificationLimitation = io.flow.v0.models.InputSpecificationLimitationMax;
13247
+ type GatewayAuthenticationDataForm =
13248
+ io.flow.v0.models.StripeAuthenticationDataForm;
13249
+ type InlineActionConfiguration =
13250
+ io.flow.v0.models.BrowserInlineActionConfiguration;
13251
+ type InputSpecificationLimitation =
13252
+ io.flow.v0.models.InputSpecificationLimitationMax;
13204
13253
  type InventoryStrategy =
13205
13254
  | io.flow.v0.models.InventoryBackorder
13206
13255
  | io.flow.v0.models.InventoryStock
@@ -13215,9 +13264,12 @@ declare namespace io.flow.v0.unions {
13215
13264
  | io.flow.v0.models.LogoImageSvg
13216
13265
  | io.flow.v0.models.LogoImageSetStatic;
13217
13266
  type MerchantApplication = io.flow.v0.models.ShopifyMerchantApplication;
13218
- type MerchantApplicationForm = io.flow.v0.models.ShopifyMerchantApplicationForm;
13219
- type MerchantApplicationPutForm = io.flow.v0.models.ShopifyMerchantApplicationPutForm;
13220
- type MerchantApplicationsSummary = io.flow.v0.models.ShopifyMerchantApplicationsSummary;
13267
+ type MerchantApplicationForm =
13268
+ io.flow.v0.models.ShopifyMerchantApplicationForm;
13269
+ type MerchantApplicationPutForm =
13270
+ io.flow.v0.models.ShopifyMerchantApplicationPutForm;
13271
+ type MerchantApplicationsSummary =
13272
+ io.flow.v0.models.ShopifyMerchantApplicationsSummary;
13221
13273
  type OnboardingState =
13222
13274
  | io.flow.v0.models.InComplianceReview
13223
13275
  | io.flow.v0.models.SetupInProgress
@@ -13285,7 +13337,8 @@ declare namespace io.flow.v0.unions {
13285
13337
  type PaymentMethodDataAuthorizeKlarnaResult =
13286
13338
  | io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess
13287
13339
  | io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
13288
- type PaymentMethodDataOptionLogo = io.flow.v0.models.PaymentMethodDataOptionLogoSvg;
13340
+ type PaymentMethodDataOptionLogo =
13341
+ io.flow.v0.models.PaymentMethodDataOptionLogoSvg;
13289
13342
  type PaymentMethodStoredDetailsCard =
13290
13343
  | io.flow.v0.models.PaymentMethodStoredDetailsCardInitial
13291
13344
  | io.flow.v0.models.PaymentMethodStoredDetailsCardSubsequent;
@@ -13375,13 +13428,15 @@ declare namespace io.flow.v0.unions {
13375
13428
  | io.flow.v0.models.PeakSurchargeByWeightServiceFee
13376
13429
  | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee;
13377
13430
  type Session = io.flow.v0.models.OrganizationSession;
13378
- type SessionAuthorization = io.flow.v0.models.OrganizationSessionAuthorization;
13431
+ type SessionAuthorization =
13432
+ io.flow.v0.models.OrganizationSessionAuthorization;
13379
13433
  type Settlement =
13380
13434
  | io.flow.v0.models.SettlementNoPayout
13381
13435
  | io.flow.v0.models.SettlementPayout;
13382
13436
  type ShippingLabelForm =
13383
13437
  | io.flow.v0.models.DetailedShippingLabelForm
13384
- | io.flow.v0.models.SummaryShippingLabelForm;
13438
+ | io.flow.v0.models.SummaryShippingLabelForm
13439
+ | io.flow.v0.models.BridgeShippingLabelForm;
13385
13440
  type ShippingNotificationForm =
13386
13441
  | io.flow.v0.models.DetailedShippingNotificationForm
13387
13442
  | io.flow.v0.models.SinglePackageShippingNotificationForm
@@ -13419,27 +13474,38 @@ declare namespace io.flow.v0.unions {
13419
13474
  type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
13420
13475
  }
13421
13476
 
13422
- export type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
13477
+ export type AbandonedOrderEmailSettings =
13478
+ io.flow.v0.models.AbandonedOrderEmailSettings;
13423
13479
  export type AbandonedOrderPromotion = io.flow.v0.models.AbandonedOrderPromotion;
13424
- export type AbandonedOrderPromotionDetails = io.flow.v0.unions.AbandonedOrderPromotionDetails;
13425
- export type AbandonedOrderPromotionDiscountDetails = io.flow.v0.models.AbandonedOrderPromotionDiscountDetails;
13426
- export type AbandonedOrderPromotionForm = io.flow.v0.models.AbandonedOrderPromotionForm;
13427
- export type AbandonedOrderPromotionStatus = io.flow.v0.enums.AbandonedOrderPromotionStatus;
13428
- export type AbandonedOrderSettingStatus = io.flow.v0.enums.AbandonedOrderSettingStatus;
13480
+ export type AbandonedOrderPromotionDetails =
13481
+ io.flow.v0.unions.AbandonedOrderPromotionDetails;
13482
+ export type AbandonedOrderPromotionDiscountDetails =
13483
+ io.flow.v0.models.AbandonedOrderPromotionDiscountDetails;
13484
+ export type AbandonedOrderPromotionForm =
13485
+ io.flow.v0.models.AbandonedOrderPromotionForm;
13486
+ export type AbandonedOrderPromotionStatus =
13487
+ io.flow.v0.enums.AbandonedOrderPromotionStatus;
13488
+ export type AbandonedOrderSettingStatus =
13489
+ io.flow.v0.enums.AbandonedOrderSettingStatus;
13429
13490
  export type AbandonedOrderSettings = io.flow.v0.models.AbandonedOrderSettings;
13430
13491
  export type AccountOrdersExportType = io.flow.v0.models.AccountOrdersExportType;
13431
13492
  export type AccountReference = io.flow.v0.models.AccountReference;
13432
- export type AccountTransactionsExportType = io.flow.v0.models.AccountTransactionsExportType;
13493
+ export type AccountTransactionsExportType =
13494
+ io.flow.v0.models.AccountTransactionsExportType;
13433
13495
  export type AchAuthorizationForm = io.flow.v0.models.AchAuthorizationForm;
13434
13496
  export type Action = io.flow.v0.unions.Action;
13435
- export type ActionDisplayInlineWindow = io.flow.v0.models.ActionDisplayInlineWindow;
13497
+ export type ActionDisplayInlineWindow =
13498
+ io.flow.v0.models.ActionDisplayInlineWindow;
13436
13499
  export type ActionExecuteScript = io.flow.v0.models.ActionExecuteScript;
13437
13500
  export type ActionRedirect = io.flow.v0.models.ActionRedirect;
13438
- export type ActionSelectPaymentOption = io.flow.v0.models.ActionSelectPaymentOption;
13501
+ export type ActionSelectPaymentOption =
13502
+ io.flow.v0.models.ActionSelectPaymentOption;
13439
13503
  export type ActionUseSdkAdyenV3 = io.flow.v0.models.ActionUseSdkAdyenV3;
13440
13504
  export type ActionUseSdkAdyenV4 = io.flow.v0.models.ActionUseSdkAdyenV4;
13441
- export type ActionUseSdkApplepayJsCompleteValidation = io.flow.v0.models.ActionUseSdkApplepayJsCompleteValidation;
13442
- export type ActionUseSdkApplepayJsCreateSession = io.flow.v0.models.ActionUseSdkApplepayJsCreateSession;
13505
+ export type ActionUseSdkApplepayJsCompleteValidation =
13506
+ io.flow.v0.models.ActionUseSdkApplepayJsCompleteValidation;
13507
+ export type ActionUseSdkApplepayJsCreateSession =
13508
+ io.flow.v0.models.ActionUseSdkApplepayJsCreateSession;
13443
13509
  export type ActionUseSdkGooglepay = io.flow.v0.models.ActionUseSdkGooglepay;
13444
13510
  export type ActionUseSdkKlarnaV1 = io.flow.v0.models.ActionUseSdkKlarnaV1;
13445
13511
  export type ActionUseSdkPaypal = io.flow.v0.models.ActionUseSdkPaypal;
@@ -13448,22 +13514,32 @@ export type ActionWait = io.flow.v0.models.ActionWait;
13448
13514
  export type ActivationPutForm = io.flow.v0.models.ActivationPutForm;
13449
13515
  export type Address = io.flow.v0.models.Address;
13450
13516
  export type AddressConfiguration = io.flow.v0.models.AddressConfiguration;
13451
- export type AddressConfigurationFieldPlacement = io.flow.v0.models.AddressConfigurationFieldPlacement;
13452
- export type AddressConfigurationFormat = io.flow.v0.models.AddressConfigurationFormat;
13453
- export type AddressConfigurationProvince = io.flow.v0.models.AddressConfigurationProvince;
13454
- export type AddressConfigurationProvinceTranslation = io.flow.v0.models.AddressConfigurationProvinceTranslation;
13455
- export type AddressConfigurationProvinceTranslationLocale = io.flow.v0.models.AddressConfigurationProvinceTranslationLocale;
13517
+ export type AddressConfigurationFieldPlacement =
13518
+ io.flow.v0.models.AddressConfigurationFieldPlacement;
13519
+ export type AddressConfigurationFormat =
13520
+ io.flow.v0.models.AddressConfigurationFormat;
13521
+ export type AddressConfigurationProvince =
13522
+ io.flow.v0.models.AddressConfigurationProvince;
13523
+ export type AddressConfigurationProvinceTranslation =
13524
+ io.flow.v0.models.AddressConfigurationProvinceTranslation;
13525
+ export type AddressConfigurationProvinceTranslationLocale =
13526
+ io.flow.v0.models.AddressConfigurationProvinceTranslationLocale;
13456
13527
  export type AddressFieldName = io.flow.v0.enums.AddressFieldName;
13457
13528
  export type AddressFieldValidation = io.flow.v0.models.AddressFieldValidation;
13458
13529
  export type AddressSuggestion = io.flow.v0.models.AddressSuggestion;
13459
13530
  export type AddressVerification = io.flow.v0.models.AddressVerification;
13460
- export type AddressVerificationResult = io.flow.v0.models.AddressVerificationResult;
13461
- export type AddressVerificationResultFieldCode = io.flow.v0.enums.AddressVerificationResultFieldCode;
13531
+ export type AddressVerificationResult =
13532
+ io.flow.v0.models.AddressVerificationResult;
13533
+ export type AddressVerificationResultFieldCode =
13534
+ io.flow.v0.enums.AddressVerificationResultFieldCode;
13462
13535
  export type AdjustmentReason = io.flow.v0.models.AdjustmentReason;
13463
13536
  export type AdjustmentReasonKey = io.flow.v0.enums.AdjustmentReasonKey;
13464
- export type AdyenChallengeShopperData = io.flow.v0.models.AdyenChallengeShopperData;
13465
- export type AdyenIdentifyShopperData = io.flow.v0.models.AdyenIdentifyShopperData;
13466
- export type AdyenNativeActionDetails = io.flow.v0.models.AdyenNativeActionDetails;
13537
+ export type AdyenChallengeShopperData =
13538
+ io.flow.v0.models.AdyenChallengeShopperData;
13539
+ export type AdyenIdentifyShopperData =
13540
+ io.flow.v0.models.AdyenIdentifyShopperData;
13541
+ export type AdyenNativeActionDetails =
13542
+ io.flow.v0.models.AdyenNativeActionDetails;
13467
13543
  export type AdyenNativeData = io.flow.v0.unions.AdyenNativeData;
13468
13544
  export type AdyenV3ChallengeToken = io.flow.v0.models.AdyenV3ChallengeToken;
13469
13545
  export type AdyenV3FingerprintToken = io.flow.v0.models.AdyenV3FingerprintToken;
@@ -13472,12 +13548,15 @@ export type Allocation = io.flow.v0.models.Allocation;
13472
13548
  export type AllocationComponent = io.flow.v0.unions.AllocationComponent;
13473
13549
  export type AllocationDeletedV2 = io.flow.v0.models.AllocationDeletedV2;
13474
13550
  export type AllocationDetail = io.flow.v0.unions.AllocationDetail;
13475
- export type AllocationDetailComponent = io.flow.v0.models.AllocationDetailComponent;
13551
+ export type AllocationDetailComponent =
13552
+ io.flow.v0.models.AllocationDetailComponent;
13476
13553
  export type AllocationLevyComponent = io.flow.v0.models.AllocationLevyComponent;
13477
13554
  export type AllocationLineDetail = io.flow.v0.models.AllocationLineDetail;
13478
13555
  export type AllocationLineSummary = io.flow.v0.models.AllocationLineSummary;
13479
- export type AllocationLineSummaryLineItem = io.flow.v0.models.AllocationLineSummaryLineItem;
13480
- export type AllocationLineSummaryShipping = io.flow.v0.models.AllocationLineSummaryShipping;
13556
+ export type AllocationLineSummaryLineItem =
13557
+ io.flow.v0.models.AllocationLineSummaryLineItem;
13558
+ export type AllocationLineSummaryShipping =
13559
+ io.flow.v0.models.AllocationLineSummaryShipping;
13481
13560
  export type AllocationOrderDetail = io.flow.v0.models.AllocationOrderDetail;
13482
13561
  export type AllocationOrderSummary = io.flow.v0.models.AllocationOrderSummary;
13483
13562
  export type AllocationUpsertedV2 = io.flow.v0.models.AllocationUpsertedV2;
@@ -13485,9 +13564,12 @@ export type AllocationV2 = io.flow.v0.models.AllocationV2;
13485
13564
  export type AmountMargin = io.flow.v0.models.AmountMargin;
13486
13565
  export type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
13487
13566
  export type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
13488
- export type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
13489
- export type ApplepaySdkCreateResultActionDetails = io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
13490
- export type ApplepaySdkValidateResultActionDetails = io.flow.v0.models.ApplepaySdkValidateResultActionDetails;
13567
+ export type ApplePayMerchantValidationPayload =
13568
+ io.flow.v0.models.ApplePayMerchantValidationPayload;
13569
+ export type ApplepaySdkCreateResultActionDetails =
13570
+ io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
13571
+ export type ApplepaySdkValidateResultActionDetails =
13572
+ io.flow.v0.models.ApplepaySdkValidateResultActionDetails;
13491
13573
  export type AtCost = io.flow.v0.models.AtCost;
13492
13574
  export type Attachment = io.flow.v0.models.Attachment;
13493
13575
  export type Attribute = io.flow.v0.models.Attribute;
@@ -13502,41 +13584,61 @@ export type AttributeVersion = io.flow.v0.models.AttributeVersion;
13502
13584
  export type AuthenticationForm = io.flow.v0.models.AuthenticationForm;
13503
13585
  export type AuthenticationTechnique = io.flow.v0.enums.AuthenticationTechnique;
13504
13586
  export type Authorization = io.flow.v0.unions.Authorization;
13505
- export type AuthorizationActionResultAdyenV3 = io.flow.v0.models.AuthorizationActionResultAdyenV3;
13506
- export type AuthorizationActionResultAdyenV4 = io.flow.v0.models.AuthorizationActionResultAdyenV4;
13587
+ export type AuthorizationActionResultAdyenV3 =
13588
+ io.flow.v0.models.AuthorizationActionResultAdyenV3;
13589
+ export type AuthorizationActionResultAdyenV4 =
13590
+ io.flow.v0.models.AuthorizationActionResultAdyenV4;
13507
13591
  export type AuthorizationCode = io.flow.v0.models.AuthorizationCode;
13508
13592
  export type AuthorizationCopyForm = io.flow.v0.models.AuthorizationCopyForm;
13509
- export type AuthorizationDeclineCode = io.flow.v0.enums.AuthorizationDeclineCode;
13593
+ export type AuthorizationDeclineCode =
13594
+ io.flow.v0.enums.AuthorizationDeclineCode;
13510
13595
  export type AuthorizationDeletedV2 = io.flow.v0.models.AuthorizationDeletedV2;
13511
13596
  export type AuthorizationError = io.flow.v0.models.AuthorizationError;
13512
13597
  export type AuthorizationForm = io.flow.v0.unions.AuthorizationForm;
13513
13598
  export type AuthorizationOption = io.flow.v0.enums.AuthorizationOption;
13514
- export type AuthorizationOrderReference = io.flow.v0.models.AuthorizationOrderReference;
13599
+ export type AuthorizationOrderReference =
13600
+ io.flow.v0.models.AuthorizationOrderReference;
13515
13601
  export type AuthorizationPayload = io.flow.v0.models.AuthorizationPayload;
13516
- export type AuthorizationPayloadParameters = io.flow.v0.unions.AuthorizationPayloadParameters;
13602
+ export type AuthorizationPayloadParameters =
13603
+ io.flow.v0.unions.AuthorizationPayloadParameters;
13517
13604
  export type AuthorizationReference = io.flow.v0.models.AuthorizationReference;
13518
13605
  export type AuthorizationResult = io.flow.v0.models.AuthorizationResult;
13519
- export type AuthorizationResultAction = io.flow.v0.unions.AuthorizationResultAction;
13520
- export type AuthorizationResultActionDetails = io.flow.v0.unions.AuthorizationResultActionDetails;
13521
- export type AuthorizationResultActionGet = io.flow.v0.models.AuthorizationResultActionGet;
13522
- export type AuthorizationResultActionNative = io.flow.v0.models.AuthorizationResultActionNative;
13523
- export type AuthorizationResultActionPost = io.flow.v0.models.AuthorizationResultActionPost;
13524
- export type AuthorizationResultActionType = io.flow.v0.enums.AuthorizationResultActionType;
13525
- export type AuthorizationResultActionWait = io.flow.v0.models.AuthorizationResultActionWait;
13526
- export type AuthorizationResultDescription = io.flow.v0.models.AuthorizationResultDescription;
13606
+ export type AuthorizationResultAction =
13607
+ io.flow.v0.unions.AuthorizationResultAction;
13608
+ export type AuthorizationResultActionDetails =
13609
+ io.flow.v0.unions.AuthorizationResultActionDetails;
13610
+ export type AuthorizationResultActionGet =
13611
+ io.flow.v0.models.AuthorizationResultActionGet;
13612
+ export type AuthorizationResultActionNative =
13613
+ io.flow.v0.models.AuthorizationResultActionNative;
13614
+ export type AuthorizationResultActionPost =
13615
+ io.flow.v0.models.AuthorizationResultActionPost;
13616
+ export type AuthorizationResultActionType =
13617
+ io.flow.v0.enums.AuthorizationResultActionType;
13618
+ export type AuthorizationResultActionWait =
13619
+ io.flow.v0.models.AuthorizationResultActionWait;
13620
+ export type AuthorizationResultDescription =
13621
+ io.flow.v0.models.AuthorizationResultDescription;
13527
13622
  export type AuthorizationStatus = io.flow.v0.enums.AuthorizationStatus;
13528
- export type AuthorizationStatusChanged = io.flow.v0.models.AuthorizationStatusChanged;
13623
+ export type AuthorizationStatusChanged =
13624
+ io.flow.v0.models.AuthorizationStatusChanged;
13529
13625
  export type AuthorizationVersion = io.flow.v0.models.AuthorizationVersion;
13530
13626
  export type AvailabilityStatus = io.flow.v0.enums.AvailabilityStatus;
13531
13627
  export type AvailableFilter = io.flow.v0.unions.AvailableFilter;
13532
13628
  export type AvailableFilterFormat = io.flow.v0.enums.AvailableFilterFormat;
13533
- export type AvailableFilterStructured = io.flow.v0.models.AvailableFilterStructured;
13534
- export type AvailableFilterUnstructured = io.flow.v0.models.AvailableFilterUnstructured;
13629
+ export type AvailableFilterStructured =
13630
+ io.flow.v0.models.AvailableFilterStructured;
13631
+ export type AvailableFilterUnstructured =
13632
+ io.flow.v0.models.AvailableFilterUnstructured;
13535
13633
  export type AvailablePromotion = io.flow.v0.models.AvailablePromotion;
13536
- export type AvailablePromotionsDeleted = io.flow.v0.models.AvailablePromotionsDeleted;
13537
- export type AvailablePromotionsDeletedV2 = io.flow.v0.models.AvailablePromotionsDeletedV2;
13538
- export type AvailablePromotionsUpserted = io.flow.v0.models.AvailablePromotionsUpserted;
13539
- export type AvailablePromotionsUpsertedV2 = io.flow.v0.models.AvailablePromotionsUpsertedV2;
13634
+ export type AvailablePromotionsDeleted =
13635
+ io.flow.v0.models.AvailablePromotionsDeleted;
13636
+ export type AvailablePromotionsDeletedV2 =
13637
+ io.flow.v0.models.AvailablePromotionsDeletedV2;
13638
+ export type AvailablePromotionsUpserted =
13639
+ io.flow.v0.models.AvailablePromotionsUpserted;
13640
+ export type AvailablePromotionsUpsertedV2 =
13641
+ io.flow.v0.models.AvailablePromotionsUpsertedV2;
13540
13642
  export type AvailableService = io.flow.v0.models.AvailableService;
13541
13643
  export type AvalaraTaxCsvSetting = io.flow.v0.models.AvalaraTaxCsvSetting;
13542
13644
  export type AvalaraTaxSetting = io.flow.v0.models.AvalaraTaxSetting;
@@ -13557,19 +13659,28 @@ export type BankAccountReference = io.flow.v0.models.BankAccountReference;
13557
13659
  export type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
13558
13660
  export type BehaviorAudit = io.flow.v0.models.BehaviorAudit;
13559
13661
  export type BillingAddress = io.flow.v0.models.BillingAddress;
13560
- export type BillingChannelOrderSummary = io.flow.v0.models.BillingChannelOrderSummary;
13561
- export type BillingChannelOrganizationSummary = io.flow.v0.models.BillingChannelOrganizationSummary;
13562
- export type BillingChannelPaymentRequestReference = io.flow.v0.models.BillingChannelPaymentRequestReference;
13563
- export type BillingChannelStatementReference = io.flow.v0.models.BillingChannelStatementReference;
13662
+ export type BillingChannelOrderSummary =
13663
+ io.flow.v0.models.BillingChannelOrderSummary;
13664
+ export type BillingChannelOrganizationSummary =
13665
+ io.flow.v0.models.BillingChannelOrganizationSummary;
13666
+ export type BillingChannelPaymentRequestReference =
13667
+ io.flow.v0.models.BillingChannelPaymentRequestReference;
13668
+ export type BillingChannelStatementReference =
13669
+ io.flow.v0.models.BillingChannelStatementReference;
13564
13670
  export type BillingDiscount = io.flow.v0.models.BillingDiscount;
13565
13671
  export type BridgeManifest = io.flow.v0.models.BridgeManifest;
13566
13672
  export type BridgeManifestForm = io.flow.v0.models.BridgeManifestForm;
13673
+ export type BridgeShippingLabelForm = io.flow.v0.models.BridgeShippingLabelForm;
13567
13674
  export type BrowseOptinResponses = io.flow.v0.models.BrowseOptinResponses;
13568
- export type BrowseOptinResponsesDeleted = io.flow.v0.models.BrowseOptinResponsesDeleted;
13569
- export type BrowseOptinResponsesUpserted = io.flow.v0.models.BrowseOptinResponsesUpserted;
13570
- export type BrowserActionConfiguration = io.flow.v0.unions.BrowserActionConfiguration;
13675
+ export type BrowseOptinResponsesDeleted =
13676
+ io.flow.v0.models.BrowseOptinResponsesDeleted;
13677
+ export type BrowseOptinResponsesUpserted =
13678
+ io.flow.v0.models.BrowseOptinResponsesUpserted;
13679
+ export type BrowserActionConfiguration =
13680
+ io.flow.v0.unions.BrowserActionConfiguration;
13571
13681
  export type BrowserInfo = io.flow.v0.models.BrowserInfo;
13572
- export type BrowserInlineActionConfiguration = io.flow.v0.models.BrowserInlineActionConfiguration;
13682
+ export type BrowserInlineActionConfiguration =
13683
+ io.flow.v0.models.BrowserInlineActionConfiguration;
13573
13684
  export type Calendar = io.flow.v0.enums.Calendar;
13574
13685
  export type CancelReason = io.flow.v0.enums.CancelReason;
13575
13686
  export type Capability = io.flow.v0.enums.Capability;
@@ -13579,18 +13690,24 @@ export type CaptureDeleted = io.flow.v0.models.CaptureDeleted;
13579
13690
  export type CaptureError = io.flow.v0.models.CaptureError;
13580
13691
  export type CaptureForm = io.flow.v0.models.CaptureForm;
13581
13692
  export type CaptureIdentifier = io.flow.v0.models.CaptureIdentifier;
13582
- export type CaptureIdentifierDeleted = io.flow.v0.models.CaptureIdentifierDeleted;
13583
- export type CaptureIdentifierUpserted = io.flow.v0.models.CaptureIdentifierUpserted;
13693
+ export type CaptureIdentifierDeleted =
13694
+ io.flow.v0.models.CaptureIdentifierDeleted;
13695
+ export type CaptureIdentifierUpserted =
13696
+ io.flow.v0.models.CaptureIdentifierUpserted;
13584
13697
  export type CaptureReference = io.flow.v0.models.CaptureReference;
13585
13698
  export type CaptureStatus = io.flow.v0.enums.CaptureStatus;
13586
13699
  export type CaptureUpsertedV2 = io.flow.v0.models.CaptureUpsertedV2;
13587
13700
  export type CaptureVersion = io.flow.v0.models.CaptureVersion;
13588
13701
  export type Card = io.flow.v0.models.Card;
13589
13702
  export type CardAuthorization = io.flow.v0.models.CardAuthorization;
13590
- export type CardAuthorizationActionResult = io.flow.v0.unions.CardAuthorizationActionResult;
13591
- export type CardAuthorizationDeletedV2 = io.flow.v0.models.CardAuthorizationDeletedV2;
13592
- export type CardAuthorizationUpsertedV2 = io.flow.v0.models.CardAuthorizationUpsertedV2;
13593
- export type CardBrowserActionConfiguration = io.flow.v0.models.CardBrowserActionConfiguration;
13703
+ export type CardAuthorizationActionResult =
13704
+ io.flow.v0.unions.CardAuthorizationActionResult;
13705
+ export type CardAuthorizationDeletedV2 =
13706
+ io.flow.v0.models.CardAuthorizationDeletedV2;
13707
+ export type CardAuthorizationUpsertedV2 =
13708
+ io.flow.v0.models.CardAuthorizationUpsertedV2;
13709
+ export type CardBrowserActionConfiguration =
13710
+ io.flow.v0.models.CardBrowserActionConfiguration;
13594
13711
  export type CardConfirmationSummary = io.flow.v0.models.CardConfirmationSummary;
13595
13712
  export type CardDeleted = io.flow.v0.models.CardDeleted;
13596
13713
  export type CardDeletedV2 = io.flow.v0.models.CardDeletedV2;
@@ -13601,9 +13718,11 @@ export type CardMetadata = io.flow.v0.models.CardMetadata;
13601
13718
  export type CardNonceForm = io.flow.v0.models.CardNonceForm;
13602
13719
  export type CardNumber = io.flow.v0.unions.CardNumber;
13603
13720
  export type CardPaymentSource = io.flow.v0.models.CardPaymentSource;
13604
- export type CardPaymentSourceAuthorizationForm = io.flow.v0.models.CardPaymentSourceAuthorizationForm;
13721
+ export type CardPaymentSourceAuthorizationForm =
13722
+ io.flow.v0.models.CardPaymentSourceAuthorizationForm;
13605
13723
  export type CardPaymentSourceForm = io.flow.v0.models.CardPaymentSourceForm;
13606
- export type CardPaymentSourceSummary = io.flow.v0.models.CardPaymentSourceSummary;
13724
+ export type CardPaymentSourceSummary =
13725
+ io.flow.v0.models.CardPaymentSourceSummary;
13607
13726
  export type CardReference = io.flow.v0.models.CardReference;
13608
13727
  export type CardSummary = io.flow.v0.models.CardSummary;
13609
13728
  export type CardTokenForm = io.flow.v0.models.CardTokenForm;
@@ -13619,15 +13738,21 @@ export type CatalogDeleted = io.flow.v0.models.CatalogDeleted;
13619
13738
  export type CatalogItemDeleted = io.flow.v0.models.CatalogItemDeleted;
13620
13739
  export type CatalogItemDeletedV2 = io.flow.v0.models.CatalogItemDeletedV2;
13621
13740
  export type CatalogItemDocument = io.flow.v0.models.CatalogItemDocument;
13622
- export type CatalogItemDocumentImages = io.flow.v0.models.CatalogItemDocumentImages;
13741
+ export type CatalogItemDocumentImages =
13742
+ io.flow.v0.models.CatalogItemDocumentImages;
13623
13743
  export type CatalogItemExportType = io.flow.v0.models.CatalogItemExportType;
13624
13744
  export type CatalogItemReference = io.flow.v0.models.CatalogItemReference;
13625
13745
  export type CatalogItemSummary = io.flow.v0.models.CatalogItemSummary;
13626
13746
  export type CatalogItemUpserted = io.flow.v0.models.CatalogItemUpserted;
13627
13747
  export type CatalogItemUpsertedV2 = io.flow.v0.models.CatalogItemUpsertedV2;
13628
- export type CatalogPriceBookItemDocument = io.flow.v0.models.CatalogPriceBookItemDocument;
13748
+ export type CatalogPriceBookItemDocument =
13749
+ io.flow.v0.models.CatalogPriceBookItemDocument;
13629
13750
  export type CatalogReference = io.flow.v0.models.CatalogReference;
13630
13751
  export type CatalogStatistics = io.flow.v0.models.CatalogStatistics;
13752
+ export type CatalogStatisticsDeleted =
13753
+ io.flow.v0.models.CatalogStatisticsDeleted;
13754
+ export type CatalogStatisticsUpserted =
13755
+ io.flow.v0.models.CatalogStatisticsUpserted;
13631
13756
  export type CatalogUpserted = io.flow.v0.models.CatalogUpserted;
13632
13757
  export type CatalogVersion = io.flow.v0.models.CatalogVersion;
13633
13758
  export type CategorySummary = io.flow.v0.models.CategorySummary;
@@ -13643,21 +13768,29 @@ export type CenterVersion = io.flow.v0.models.CenterVersion;
13643
13768
  export type ChangeType = io.flow.v0.enums.ChangeType;
13644
13769
  export type Channel = io.flow.v0.models.Channel;
13645
13770
  export type ChannelAuthorization = io.flow.v0.models.ChannelAuthorization;
13646
- export type ChannelAuthorizationForm = io.flow.v0.models.ChannelAuthorizationForm;
13771
+ export type ChannelAuthorizationForm =
13772
+ io.flow.v0.models.ChannelAuthorizationForm;
13647
13773
  export type ChannelBankAccount = io.flow.v0.models.ChannelBankAccount;
13648
13774
  export type ChannelCurrency = io.flow.v0.models.ChannelCurrency;
13649
- export type ChannelCurrencyCapability = io.flow.v0.enums.ChannelCurrencyCapability;
13775
+ export type ChannelCurrencyCapability =
13776
+ io.flow.v0.enums.ChannelCurrencyCapability;
13650
13777
  export type ChannelCurrencyDeleted = io.flow.v0.models.ChannelCurrencyDeleted;
13651
13778
  export type ChannelCurrencyUpserted = io.flow.v0.models.ChannelCurrencyUpserted;
13652
- export type ChannelDefaultBankAccount = io.flow.v0.models.ChannelDefaultBankAccount;
13779
+ export type ChannelDefaultBankAccount =
13780
+ io.flow.v0.models.ChannelDefaultBankAccount;
13653
13781
  export type ChannelDeleted = io.flow.v0.models.ChannelDeleted;
13654
13782
  export type ChannelOrganization = io.flow.v0.models.ChannelOrganization;
13655
- export type ChannelOrganizationAuthorization = io.flow.v0.models.ChannelOrganizationAuthorization;
13656
- export type ChannelOrganizationAuthorizationForm = io.flow.v0.models.ChannelOrganizationAuthorizationForm;
13657
- export type ChannelOrganizationDeleted = io.flow.v0.models.ChannelOrganizationDeleted;
13783
+ export type ChannelOrganizationAuthorization =
13784
+ io.flow.v0.models.ChannelOrganizationAuthorization;
13785
+ export type ChannelOrganizationAuthorizationForm =
13786
+ io.flow.v0.models.ChannelOrganizationAuthorizationForm;
13787
+ export type ChannelOrganizationDeleted =
13788
+ io.flow.v0.models.ChannelOrganizationDeleted;
13658
13789
  export type ChannelOrganizationForm = io.flow.v0.models.ChannelOrganizationForm;
13659
- export type ChannelOrganizationPutForm = io.flow.v0.models.ChannelOrganizationPutForm;
13660
- export type ChannelOrganizationUpserted = io.flow.v0.models.ChannelOrganizationUpserted;
13790
+ export type ChannelOrganizationPutForm =
13791
+ io.flow.v0.models.ChannelOrganizationPutForm;
13792
+ export type ChannelOrganizationUpserted =
13793
+ io.flow.v0.models.ChannelOrganizationUpserted;
13661
13794
  export type ChannelPayout = io.flow.v0.models.ChannelPayout;
13662
13795
  export type ChannelPayoutDeleted = io.flow.v0.models.ChannelPayoutDeleted;
13663
13796
  export type ChannelPayoutUpserted = io.flow.v0.models.ChannelPayoutUpserted;
@@ -13665,55 +13798,75 @@ export type ChannelRate = io.flow.v0.models.ChannelRate;
13665
13798
  export type ChannelReference = io.flow.v0.models.ChannelReference;
13666
13799
  export type ChannelStatement = io.flow.v0.models.ChannelStatement;
13667
13800
  export type ChannelStatementDeleted = io.flow.v0.models.ChannelStatementDeleted;
13668
- export type ChannelStatementUpserted = io.flow.v0.models.ChannelStatementUpserted;
13801
+ export type ChannelStatementUpserted =
13802
+ io.flow.v0.models.ChannelStatementUpserted;
13669
13803
  export type ChannelToken = io.flow.v0.models.ChannelToken;
13670
13804
  export type ChannelTokenForm = io.flow.v0.models.ChannelTokenForm;
13671
13805
  export type ChannelTokenReference = io.flow.v0.models.ChannelTokenReference;
13672
13806
  export type ChannelTransaction = io.flow.v0.models.ChannelTransaction;
13673
- export type ChannelTransactionDeleted = io.flow.v0.models.ChannelTransactionDeleted;
13674
- export type ChannelTransactionDeletedV2 = io.flow.v0.models.ChannelTransactionDeletedV2;
13675
- export type ChannelTransactionUpserted = io.flow.v0.models.ChannelTransactionUpserted;
13807
+ export type ChannelTransactionDeleted =
13808
+ io.flow.v0.models.ChannelTransactionDeleted;
13809
+ export type ChannelTransactionDeletedV2 =
13810
+ io.flow.v0.models.ChannelTransactionDeletedV2;
13811
+ export type ChannelTransactionUpserted =
13812
+ io.flow.v0.models.ChannelTransactionUpserted;
13676
13813
  export type ChannelUpserted = io.flow.v0.models.ChannelUpserted;
13677
13814
  export type ChannelViesRegistration = io.flow.v0.models.ChannelViesRegistration;
13678
- export type ChannelViesRegistrationForm = io.flow.v0.models.ChannelViesRegistrationForm;
13815
+ export type ChannelViesRegistrationForm =
13816
+ io.flow.v0.models.ChannelViesRegistrationForm;
13679
13817
  export type CheckoutAttribute = io.flow.v0.models.CheckoutAttribute;
13680
13818
  export type CheckoutAttributeForm = io.flow.v0.models.CheckoutAttributeForm;
13681
13819
  export type CheckoutItemContent = io.flow.v0.models.CheckoutItemContent;
13682
- export type CheckoutItemContentAttribute = io.flow.v0.models.CheckoutItemContentAttribute;
13820
+ export type CheckoutItemContentAttribute =
13821
+ io.flow.v0.models.CheckoutItemContentAttribute;
13683
13822
  export type CheckoutOptinResponses = io.flow.v0.models.CheckoutOptinResponses;
13684
- export type CheckoutOptinResponsesDeleted = io.flow.v0.models.CheckoutOptinResponsesDeleted;
13685
- export type CheckoutOptinResponsesUpserted = io.flow.v0.models.CheckoutOptinResponsesUpserted;
13823
+ export type CheckoutOptinResponsesDeleted =
13824
+ io.flow.v0.models.CheckoutOptinResponsesDeleted;
13825
+ export type CheckoutOptinResponsesUpserted =
13826
+ io.flow.v0.models.CheckoutOptinResponsesUpserted;
13686
13827
  export type CheckoutReference = io.flow.v0.models.CheckoutReference;
13687
13828
  export type CheckoutToken = io.flow.v0.models.CheckoutToken;
13688
13829
  export type CheckoutTokenForm = io.flow.v0.unions.CheckoutTokenForm;
13689
13830
  export type CheckoutTokenOrderForm = io.flow.v0.models.CheckoutTokenOrderForm;
13690
- export type CheckoutTokenReferenceForm = io.flow.v0.models.CheckoutTokenReferenceForm;
13831
+ export type CheckoutTokenReferenceForm =
13832
+ io.flow.v0.models.CheckoutTokenReferenceForm;
13691
13833
  export type CheckoutUrls = io.flow.v0.models.CheckoutUrls;
13692
13834
  export type CheckoutUrlsForm = io.flow.v0.models.CheckoutUrlsForm;
13693
13835
  export type Cleartext = io.flow.v0.models.Cleartext;
13694
13836
  export type CommercialInvoiceFee = io.flow.v0.models.CommercialInvoiceFee;
13695
13837
  export type ConfirmationDetails = io.flow.v0.unions.ConfirmationDetails;
13696
13838
  export type ConsumerInvoice = io.flow.v0.models.ConsumerInvoice;
13697
- export type ConsumerInvoiceCenterReference = io.flow.v0.models.ConsumerInvoiceCenterReference;
13698
- export type ConsumerInvoiceCustomerType = io.flow.v0.enums.ConsumerInvoiceCustomerType;
13839
+ export type ConsumerInvoiceCenterReference =
13840
+ io.flow.v0.models.ConsumerInvoiceCenterReference;
13841
+ export type ConsumerInvoiceCustomerType =
13842
+ io.flow.v0.enums.ConsumerInvoiceCustomerType;
13699
13843
  export type ConsumerInvoiceDeleted = io.flow.v0.models.ConsumerInvoiceDeleted;
13700
13844
  export type ConsumerInvoiceDocument = io.flow.v0.models.ConsumerInvoiceDocument;
13701
- export type ConsumerInvoiceDocumentType = io.flow.v0.enums.ConsumerInvoiceDocumentType;
13845
+ export type ConsumerInvoiceDocumentType =
13846
+ io.flow.v0.enums.ConsumerInvoiceDocumentType;
13702
13847
  export type ConsumerInvoiceForm = io.flow.v0.models.ConsumerInvoiceForm;
13703
- export type ConsumerInvoiceFormByOrder = io.flow.v0.models.ConsumerInvoiceFormByOrder;
13848
+ export type ConsumerInvoiceFormByOrder =
13849
+ io.flow.v0.models.ConsumerInvoiceFormByOrder;
13704
13850
  export type ConsumerInvoiceLevy = io.flow.v0.models.ConsumerInvoiceLevy;
13705
13851
  export type ConsumerInvoiceLevyForm = io.flow.v0.models.ConsumerInvoiceLevyForm;
13706
13852
  export type ConsumerInvoiceLine = io.flow.v0.unions.ConsumerInvoiceLine;
13707
- export type ConsumerInvoiceLineDiscount = io.flow.v0.models.ConsumerInvoiceLineDiscount;
13708
- export type ConsumerInvoiceLineDiscountForm = io.flow.v0.models.ConsumerInvoiceLineDiscountForm;
13853
+ export type ConsumerInvoiceLineDiscount =
13854
+ io.flow.v0.models.ConsumerInvoiceLineDiscount;
13855
+ export type ConsumerInvoiceLineDiscountForm =
13856
+ io.flow.v0.models.ConsumerInvoiceLineDiscountForm;
13709
13857
  export type ConsumerInvoiceLineForm = io.flow.v0.unions.ConsumerInvoiceLineForm;
13710
13858
  export type ConsumerInvoiceLineItem = io.flow.v0.models.ConsumerInvoiceLineItem;
13711
- export type ConsumerInvoiceLineItemForm = io.flow.v0.models.ConsumerInvoiceLineItemForm;
13712
- export type ConsumerInvoiceLineShipping = io.flow.v0.models.ConsumerInvoiceLineShipping;
13713
- export type ConsumerInvoiceLineShippingForm = io.flow.v0.models.ConsumerInvoiceLineShippingForm;
13714
- export type ConsumerInvoiceOrderSummary = io.flow.v0.models.ConsumerInvoiceOrderSummary;
13859
+ export type ConsumerInvoiceLineItemForm =
13860
+ io.flow.v0.models.ConsumerInvoiceLineItemForm;
13861
+ export type ConsumerInvoiceLineShipping =
13862
+ io.flow.v0.models.ConsumerInvoiceLineShipping;
13863
+ export type ConsumerInvoiceLineShippingForm =
13864
+ io.flow.v0.models.ConsumerInvoiceLineShippingForm;
13865
+ export type ConsumerInvoiceOrderSummary =
13866
+ io.flow.v0.models.ConsumerInvoiceOrderSummary;
13715
13867
  export type ConsumerInvoicePayment = io.flow.v0.models.ConsumerInvoicePayment;
13716
- export type ConsumerInvoiceReference = io.flow.v0.models.ConsumerInvoiceReference;
13868
+ export type ConsumerInvoiceReference =
13869
+ io.flow.v0.models.ConsumerInvoiceReference;
13717
13870
  export type ConsumerInvoiceStatus = io.flow.v0.enums.ConsumerInvoiceStatus;
13718
13871
  export type ConsumerInvoiceUpserted = io.flow.v0.models.ConsumerInvoiceUpserted;
13719
13872
  export type Contact = io.flow.v0.models.Contact;
@@ -13743,10 +13896,14 @@ export type CreditPaymentForm = io.flow.v0.models.CreditPaymentForm;
13743
13896
  export type CreditPaymentVersion = io.flow.v0.models.CreditPaymentVersion;
13744
13897
  export type CrossdockRatecardFee = io.flow.v0.models.CrossdockRatecardFee;
13745
13898
  export type CrossdockShipment = io.flow.v0.models.CrossdockShipment;
13746
- export type CrossdockShipmentUpserted = io.flow.v0.models.CrossdockShipmentUpserted;
13747
- export type CryptopayAuthorizationDetails = io.flow.v0.models.CryptopayAuthorizationDetails;
13748
- export type CsvPriceBookItemExportRowByItemNumber = io.flow.v0.models.CsvPriceBookItemExportRowByItemNumber;
13749
- export type CsvPriceBookItemExportRowBySku = io.flow.v0.models.CsvPriceBookItemExportRowBySku;
13899
+ export type CrossdockShipmentUpserted =
13900
+ io.flow.v0.models.CrossdockShipmentUpserted;
13901
+ export type CryptopayAuthorizationDetails =
13902
+ io.flow.v0.models.CryptopayAuthorizationDetails;
13903
+ export type CsvPriceBookItemExportRowByItemNumber =
13904
+ io.flow.v0.models.CsvPriceBookItemExportRowByItemNumber;
13905
+ export type CsvPriceBookItemExportRowBySku =
13906
+ io.flow.v0.models.CsvPriceBookItemExportRowBySku;
13750
13907
  export type Currency = io.flow.v0.models.Currency;
13751
13908
  export type CurrencyFormat = io.flow.v0.models.CurrencyFormat;
13752
13909
  export type CurrencyFormatDeleted = io.flow.v0.models.CurrencyFormatDeleted;
@@ -13756,12 +13913,17 @@ export type CurrencySymbolFormat = io.flow.v0.enums.CurrencySymbolFormat;
13756
13913
  export type CurrencySymbols = io.flow.v0.models.CurrencySymbols;
13757
13914
  export type Customer = io.flow.v0.models.Customer;
13758
13915
  export type CustomerAddressBook = io.flow.v0.models.CustomerAddressBook;
13759
- export type CustomerAddressBookContact = io.flow.v0.models.CustomerAddressBookContact;
13760
- export type CustomerAddressBookContactDeleted = io.flow.v0.models.CustomerAddressBookContactDeleted;
13761
- export type CustomerAddressBookContactForm = io.flow.v0.models.CustomerAddressBookContactForm;
13762
- export type CustomerAddressBookContactUpserted = io.flow.v0.models.CustomerAddressBookContactUpserted;
13916
+ export type CustomerAddressBookContact =
13917
+ io.flow.v0.models.CustomerAddressBookContact;
13918
+ export type CustomerAddressBookContactDeleted =
13919
+ io.flow.v0.models.CustomerAddressBookContactDeleted;
13920
+ export type CustomerAddressBookContactForm =
13921
+ io.flow.v0.models.CustomerAddressBookContactForm;
13922
+ export type CustomerAddressBookContactUpserted =
13923
+ io.flow.v0.models.CustomerAddressBookContactUpserted;
13763
13924
  export type CustomerAddressBookForm = io.flow.v0.models.CustomerAddressBookForm;
13764
- export type CustomerAddressPreference = io.flow.v0.models.CustomerAddressPreference;
13925
+ export type CustomerAddressPreference =
13926
+ io.flow.v0.models.CustomerAddressPreference;
13765
13927
  export type CustomerAddressType = io.flow.v0.enums.CustomerAddressType;
13766
13928
  export type CustomerBundle = io.flow.v0.models.CustomerBundle;
13767
13929
  export type CustomerClientToken = io.flow.v0.models.CustomerClientToken;
@@ -13772,7 +13934,8 @@ export type CustomerLastUsed = io.flow.v0.models.CustomerLastUsed;
13772
13934
  export type CustomerOrder = io.flow.v0.models.CustomerOrder;
13773
13935
  export type CustomerPayment = io.flow.v0.models.CustomerPayment;
13774
13936
  export type CustomerPurgeSettings = io.flow.v0.models.CustomerPurgeSettings;
13775
- export type CustomerPurgeSettingsForm = io.flow.v0.models.CustomerPurgeSettingsForm;
13937
+ export type CustomerPurgeSettingsForm =
13938
+ io.flow.v0.models.CustomerPurgeSettingsForm;
13776
13939
  export type CustomerPutForm = io.flow.v0.models.CustomerPutForm;
13777
13940
  export type CustomerReference = io.flow.v0.models.CustomerReference;
13778
13941
  export type CustomerToken = io.flow.v0.models.CustomerToken;
@@ -13787,15 +13950,20 @@ export type DayOfWeek = io.flow.v0.enums.DayOfWeek;
13787
13950
  export type DdpRatecardFee = io.flow.v0.models.DdpRatecardFee;
13788
13951
  export type DefaultBankAccountForm = io.flow.v0.models.DefaultBankAccountForm;
13789
13952
  export type DeliveredDuty = io.flow.v0.enums.DeliveredDuty;
13790
- export type DeliveredDutyDisplayType = io.flow.v0.enums.DeliveredDutyDisplayType;
13953
+ export type DeliveredDutyDisplayType =
13954
+ io.flow.v0.enums.DeliveredDutyDisplayType;
13791
13955
  export type DeliveredDutySetting = io.flow.v0.models.DeliveredDutySetting;
13792
13956
  export type Delivery = io.flow.v0.unions.Delivery;
13793
13957
  export type DeliveryItem = io.flow.v0.models.DeliveryItem;
13794
13958
  export type DeliveryOption = io.flow.v0.models.DeliveryOption;
13795
- export type DeliveryOptionCostComponent = io.flow.v0.models.DeliveryOptionCostComponent;
13796
- export type DeliveryOptionCostDetail = io.flow.v0.models.DeliveryOptionCostDetail;
13797
- export type DeliveryOptionCostDetailComponentKey = io.flow.v0.enums.DeliveryOptionCostDetailComponentKey;
13798
- export type DeliveryOptionCostDetailSource = io.flow.v0.enums.DeliveryOptionCostDetailSource;
13959
+ export type DeliveryOptionCostComponent =
13960
+ io.flow.v0.models.DeliveryOptionCostComponent;
13961
+ export type DeliveryOptionCostDetail =
13962
+ io.flow.v0.models.DeliveryOptionCostDetail;
13963
+ export type DeliveryOptionCostDetailComponentKey =
13964
+ io.flow.v0.enums.DeliveryOptionCostDetailComponentKey;
13965
+ export type DeliveryOptionCostDetailSource =
13966
+ io.flow.v0.enums.DeliveryOptionCostDetailSource;
13799
13967
  export type DeliveryOptionForm = io.flow.v0.models.DeliveryOptionForm;
13800
13968
  export type DeliveryOptionReference = io.flow.v0.models.DeliveryOptionReference;
13801
13969
  export type DeliveryOptionSummary = io.flow.v0.models.DeliveryOptionSummary;
@@ -13804,26 +13972,34 @@ export type DeliverySummary = io.flow.v0.models.DeliverySummary;
13804
13972
  export type DeliveryVersion = io.flow.v0.models.DeliveryVersion;
13805
13973
  export type DeliveryWindow = io.flow.v0.models.DeliveryWindow;
13806
13974
  export type DeliveryWindowComponent = io.flow.v0.models.DeliveryWindowComponent;
13807
- export type DeliveryWindowComponentSource = io.flow.v0.enums.DeliveryWindowComponentSource;
13808
- export type DeliveryWindowComponents = io.flow.v0.models.DeliveryWindowComponents;
13809
- export type DeliveryWindowComponentsV2 = io.flow.v0.models.DeliveryWindowComponentsV2;
13975
+ export type DeliveryWindowComponentSource =
13976
+ io.flow.v0.enums.DeliveryWindowComponentSource;
13977
+ export type DeliveryWindowComponents =
13978
+ io.flow.v0.models.DeliveryWindowComponents;
13979
+ export type DeliveryWindowComponentsV2 =
13980
+ io.flow.v0.models.DeliveryWindowComponentsV2;
13810
13981
  export type DeliveryWindowLocation = io.flow.v0.enums.DeliveryWindowLocation;
13811
13982
  export type DeliveryWindowSummary = io.flow.v0.models.DeliveryWindowSummary;
13812
13983
  export type Deminimis = io.flow.v0.unions.Deminimis;
13813
13984
  export type DeminimisPerItem = io.flow.v0.models.DeminimisPerItem;
13814
13985
  export type DeminimisSimple = io.flow.v0.models.DeminimisSimple;
13815
- export type DetailedShippingLabelForm = io.flow.v0.models.DetailedShippingLabelForm;
13816
- export type DetailedShippingNotificationForm = io.flow.v0.models.DetailedShippingNotificationForm;
13986
+ export type DetailedShippingLabelForm =
13987
+ io.flow.v0.models.DetailedShippingLabelForm;
13988
+ export type DetailedShippingNotificationForm =
13989
+ io.flow.v0.models.DetailedShippingNotificationForm;
13817
13990
  export type DetailedTaxRegistration = io.flow.v0.models.DetailedTaxRegistration;
13818
13991
  export type DeviceDetails = io.flow.v0.unions.DeviceDetails;
13819
13992
  export type DeviceDetailsBrowser = io.flow.v0.models.DeviceDetailsBrowser;
13820
- export type DeviceFingerprintDetails = io.flow.v0.unions.DeviceFingerprintDetails;
13821
- export type DeviceFingerprintDetailsBrowser = io.flow.v0.models.DeviceFingerprintDetailsBrowser;
13993
+ export type DeviceFingerprintDetails =
13994
+ io.flow.v0.unions.DeviceFingerprintDetails;
13995
+ export type DeviceFingerprintDetailsBrowser =
13996
+ io.flow.v0.models.DeviceFingerprintDetailsBrowser;
13822
13997
  export type DigitalDelivery = io.flow.v0.models.DigitalDelivery;
13823
13998
  export type Dimension = io.flow.v0.models.Dimension;
13824
13999
  export type DimensionEstimate = io.flow.v0.models.DimensionEstimate;
13825
14000
  export type DimensionEstimateForm = io.flow.v0.models.DimensionEstimateForm;
13826
- export type DimensionEstimateVersion = io.flow.v0.models.DimensionEstimateVersion;
14001
+ export type DimensionEstimateVersion =
14002
+ io.flow.v0.models.DimensionEstimateVersion;
13827
14003
  export type Dimensions = io.flow.v0.models.Dimensions;
13828
14004
  export type DirectAuthorizationForm = io.flow.v0.models.DirectAuthorizationForm;
13829
14005
  export type DirectDebit = io.flow.v0.models.DirectDebit;
@@ -13837,16 +14013,21 @@ export type DiscountRule = io.flow.v0.models.DiscountRule;
13837
14013
  export type DiscountRuleEntitlement = io.flow.v0.unions.DiscountRuleEntitlement;
13838
14014
  export type DiscountRuleOffer = io.flow.v0.models.DiscountRuleOffer;
13839
14015
  export type DiscountRuleSettings = io.flow.v0.models.DiscountRuleSettings;
13840
- export type DiscountRuleSettingsForm = io.flow.v0.models.DiscountRuleSettingsForm;
14016
+ export type DiscountRuleSettingsForm =
14017
+ io.flow.v0.models.DiscountRuleSettingsForm;
13841
14018
  export type DiscountRuleStatus = io.flow.v0.enums.DiscountRuleStatus;
13842
- export type DiscountRuleSubsidyEntitlement = io.flow.v0.models.DiscountRuleSubsidyEntitlement;
13843
- export type DiscountRuleSubsidyTarget = io.flow.v0.enums.DiscountRuleSubsidyTarget;
14019
+ export type DiscountRuleSubsidyEntitlement =
14020
+ io.flow.v0.models.DiscountRuleSubsidyEntitlement;
14021
+ export type DiscountRuleSubsidyTarget =
14022
+ io.flow.v0.enums.DiscountRuleSubsidyTarget;
13844
14023
  export type DiscountTarget = io.flow.v0.enums.DiscountTarget;
13845
14024
  export type DiscountsForm = io.flow.v0.models.DiscountsForm;
13846
14025
  export type Document = io.flow.v0.unions.Document;
13847
14026
  export type Duration = io.flow.v0.models.Duration;
13848
- export type DutiesTaxesPaidSurchargeRatecardFee = io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee;
13849
- export type DutiesTaxesPaidSurchargeServiceFee = io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee;
14027
+ export type DutiesTaxesPaidSurchargeRatecardFee =
14028
+ io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee;
14029
+ export type DutiesTaxesPaidSurchargeServiceFee =
14030
+ io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee;
13850
14031
  export type Duty = io.flow.v0.models.Duty;
13851
14032
  export type DutyItem = io.flow.v0.models.DutyItem;
13852
14033
  export type DutyItemApproval = io.flow.v0.models.DutyItemApproval;
@@ -13855,25 +14036,34 @@ export type DutyItemApprovalStatus = io.flow.v0.enums.DutyItemApprovalStatus;
13855
14036
  export type DutyItemForm = io.flow.v0.models.DutyItemForm;
13856
14037
  export type DutyItemProducer = io.flow.v0.models.DutyItemProducer;
13857
14038
  export type EcommercePlatform = io.flow.v0.models.EcommercePlatform;
13858
- export type EcommercePlatformDeleted = io.flow.v0.models.EcommercePlatformDeleted;
14039
+ export type EcommercePlatformDeleted =
14040
+ io.flow.v0.models.EcommercePlatformDeleted;
13859
14041
  export type EcommercePlatformForm = io.flow.v0.models.EcommercePlatformForm;
13860
14042
  export type EcommercePlatformType = io.flow.v0.enums.EcommercePlatformType;
13861
- export type EcommercePlatformUpserted = io.flow.v0.models.EcommercePlatformUpserted;
14043
+ export type EcommercePlatformUpserted =
14044
+ io.flow.v0.models.EcommercePlatformUpserted;
13862
14045
  export type EconomicTitleLocation = io.flow.v0.enums.EconomicTitleLocation;
13863
- export type EmailAbandonedOrderPromotion = io.flow.v0.models.EmailAbandonedOrderPromotion;
14046
+ export type EmailAbandonedOrderPromotion =
14047
+ io.flow.v0.models.EmailAbandonedOrderPromotion;
13864
14048
  export type EmailAbandonedOrderUrls = io.flow.v0.models.EmailAbandonedOrderUrls;
13865
14049
  export type EmailNotification = io.flow.v0.models.EmailNotification;
13866
- export type EmailNotificationAbandonedOrder = io.flow.v0.models.EmailNotificationAbandonedOrder;
14050
+ export type EmailNotificationAbandonedOrder =
14051
+ io.flow.v0.models.EmailNotificationAbandonedOrder;
13867
14052
  export type EmailNotificationData = io.flow.v0.unions.EmailNotificationData;
13868
- export type EmailNotificationDataRefund = io.flow.v0.models.EmailNotificationDataRefund;
13869
- export type EmailNotificationDeleted = io.flow.v0.models.EmailNotificationDeleted;
14053
+ export type EmailNotificationDataRefund =
14054
+ io.flow.v0.models.EmailNotificationDataRefund;
14055
+ export type EmailNotificationDeleted =
14056
+ io.flow.v0.models.EmailNotificationDeleted;
13870
14057
  export type EmailNotificationForm = io.flow.v0.models.EmailNotificationForm;
13871
- export type EmailNotificationUpserted = io.flow.v0.models.EmailNotificationUpserted;
14058
+ export type EmailNotificationUpserted =
14059
+ io.flow.v0.models.EmailNotificationUpserted;
13872
14060
  export type EmailPaymentSummary = io.flow.v0.models.EmailPaymentSummary;
13873
14061
  export type EmailRecipient = io.flow.v0.models.EmailRecipient;
13874
14062
  export type EmailVerification = io.flow.v0.models.EmailVerification;
13875
- export type EmergencySituationSurchargeRatecardFee = io.flow.v0.models.EmergencySituationSurchargeRatecardFee;
13876
- export type EmergencySituationSurchargeServiceFee = io.flow.v0.models.EmergencySituationSurchargeServiceFee;
14063
+ export type EmergencySituationSurchargeRatecardFee =
14064
+ io.flow.v0.models.EmergencySituationSurchargeRatecardFee;
14065
+ export type EmergencySituationSurchargeServiceFee =
14066
+ io.flow.v0.models.EmergencySituationSurchargeServiceFee;
13877
14067
  export type EntityIdentifier = io.flow.v0.models.EntityIdentifier;
13878
14068
  export type EntityIdentifierType = io.flow.v0.enums.EntityIdentifierType;
13879
14069
  export type Environment = io.flow.v0.enums.Environment;
@@ -13888,54 +14078,83 @@ export type ExclusionRuleForm = io.flow.v0.models.ExclusionRuleForm;
13888
14078
  export type ExclusionRuleState = io.flow.v0.enums.ExclusionRuleState;
13889
14079
  export type ExclusionRuleStatistic = io.flow.v0.models.ExclusionRuleStatistic;
13890
14080
  export type ExclusionRuleVersion = io.flow.v0.models.ExclusionRuleVersion;
13891
- export type ExclusionRulesExportType = io.flow.v0.models.ExclusionRulesExportType;
14081
+ export type ExclusionRulesExportType =
14082
+ io.flow.v0.models.ExclusionRulesExportType;
13892
14083
  export type ExpandableCard = io.flow.v0.unions.ExpandableCard;
13893
14084
  export type ExpandableCenter = io.flow.v0.unions.ExpandableCenter;
13894
14085
  export type ExpandableExperience = io.flow.v0.unions.ExpandableExperience;
13895
14086
  export type ExpandableOrder = io.flow.v0.unions.ExpandableOrder;
13896
14087
  export type ExpandableOrganization = io.flow.v0.unions.ExpandableOrganization;
13897
- export type ExpandablePaymentProcessor = io.flow.v0.unions.ExpandablePaymentProcessor;
14088
+ export type ExpandablePaymentProcessor =
14089
+ io.flow.v0.unions.ExpandablePaymentProcessor;
13898
14090
  export type ExpandableSubcatalog = io.flow.v0.unions.ExpandableSubcatalog;
13899
14091
  export type ExpandableUser = io.flow.v0.unions.ExpandableUser;
13900
14092
  export type Experience = io.flow.v0.models.Experience;
13901
- export type ExperienceCheckoutConfigurationSettings = io.flow.v0.models.ExperienceCheckoutConfigurationSettings;
13902
- export type ExperienceCheckoutSettings = io.flow.v0.models.ExperienceCheckoutSettings;
13903
- export type ExperienceCheckoutSettingsForm = io.flow.v0.models.ExperienceCheckoutSettingsForm;
14093
+ export type ExperienceCheckoutConfigurationSettings =
14094
+ io.flow.v0.models.ExperienceCheckoutConfigurationSettings;
14095
+ export type ExperienceCheckoutSettings =
14096
+ io.flow.v0.models.ExperienceCheckoutSettings;
14097
+ export type ExperienceCheckoutSettingsForm =
14098
+ io.flow.v0.models.ExperienceCheckoutSettingsForm;
13904
14099
  export type ExperienceClone = io.flow.v0.models.ExperienceClone;
13905
14100
  export type ExperienceCloneForm = io.flow.v0.models.ExperienceCloneForm;
13906
14101
  export type ExperienceCloneStatus = io.flow.v0.enums.ExperienceCloneStatus;
13907
- export type ExperienceConfigurationReference = io.flow.v0.models.ExperienceConfigurationReference;
14102
+ export type ExperienceConfigurationReference =
14103
+ io.flow.v0.models.ExperienceConfigurationReference;
13908
14104
  export type ExperienceCountryStatus = io.flow.v0.enums.ExperienceCountryStatus;
13909
- export type ExperienceCurrencyFormat = io.flow.v0.models.ExperienceCurrencyFormat;
13910
- export type ExperienceCurrencyFormatForm = io.flow.v0.models.ExperienceCurrencyFormatForm;
14105
+ export type ExperienceCurrencyFormat =
14106
+ io.flow.v0.models.ExperienceCurrencyFormat;
14107
+ export type ExperienceCurrencyFormatForm =
14108
+ io.flow.v0.models.ExperienceCurrencyFormatForm;
13911
14109
  export type ExperienceDefaults = io.flow.v0.models.ExperienceDefaults;
13912
14110
  export type ExperienceDeleted = io.flow.v0.models.ExperienceDeleted;
13913
14111
  export type ExperienceDeletedV2 = io.flow.v0.models.ExperienceDeletedV2;
13914
14112
  export type ExperienceExportType = io.flow.v0.models.ExperienceExportType;
13915
14113
  export type ExperienceForm = io.flow.v0.models.ExperienceForm;
13916
14114
  export type ExperienceGeo = io.flow.v0.models.ExperienceGeo;
13917
- export type ExperienceLogisticsSettings = io.flow.v0.models.ExperienceLogisticsSettings;
13918
- export type ExperienceLogisticsSettingsDeleted = io.flow.v0.models.ExperienceLogisticsSettingsDeleted;
13919
- export type ExperienceLogisticsSettingsPutForm = io.flow.v0.models.ExperienceLogisticsSettingsPutForm;
13920
- export type ExperienceLogisticsSettingsUpserted = io.flow.v0.models.ExperienceLogisticsSettingsUpserted;
13921
- export type ExperienceLogisticsSummary = io.flow.v0.models.ExperienceLogisticsSummary;
13922
- export type ExperienceLogisticsTierSummary = io.flow.v0.models.ExperienceLogisticsTierSummary;
13923
- export type ExperienceLogisticsTierSummaryPrices = io.flow.v0.models.ExperienceLogisticsTierSummaryPrices;
14115
+ export type ExperienceLogisticsSettings =
14116
+ io.flow.v0.models.ExperienceLogisticsSettings;
14117
+ export type ExperienceLogisticsSettingsDeleted =
14118
+ io.flow.v0.models.ExperienceLogisticsSettingsDeleted;
14119
+ export type ExperienceLogisticsSettingsPutForm =
14120
+ io.flow.v0.models.ExperienceLogisticsSettingsPutForm;
14121
+ export type ExperienceLogisticsSettingsUpserted =
14122
+ io.flow.v0.models.ExperienceLogisticsSettingsUpserted;
14123
+ export type ExperienceLogisticsSummary =
14124
+ io.flow.v0.models.ExperienceLogisticsSummary;
14125
+ export type ExperienceLogisticsTierSummary =
14126
+ io.flow.v0.models.ExperienceLogisticsTierSummary;
14127
+ export type ExperienceLogisticsTierSummaryPrices =
14128
+ io.flow.v0.models.ExperienceLogisticsTierSummaryPrices;
13924
14129
  export type ExperienceOverview = io.flow.v0.models.ExperienceOverview;
13925
- export type ExperiencePaymentMethodRule = io.flow.v0.models.ExperiencePaymentMethodRule;
13926
- export type ExperiencePaymentMethodRuleForm = io.flow.v0.models.ExperiencePaymentMethodRuleForm;
13927
- export type ExperiencePaymentMethodTag = io.flow.v0.enums.ExperiencePaymentMethodTag;
13928
- export type ExperiencePriceBookMapping = io.flow.v0.models.ExperiencePriceBookMapping;
13929
- export type ExperiencePriceBookMappingDeleted = io.flow.v0.models.ExperiencePriceBookMappingDeleted;
13930
- export type ExperiencePriceBookMappingForm = io.flow.v0.models.ExperiencePriceBookMappingForm;
13931
- export type ExperiencePriceBookMappingPutForm = io.flow.v0.models.ExperiencePriceBookMappingPutForm;
13932
- export type ExperiencePriceBookMappingUpserted = io.flow.v0.models.ExperiencePriceBookMappingUpserted;
13933
- export type ExperiencePriceConversion = io.flow.v0.models.ExperiencePriceConversion;
13934
- export type ExperiencePriceConversionRequest = io.flow.v0.models.ExperiencePriceConversionRequest;
13935
- export type ExperiencePriceConversionResponse = io.flow.v0.models.ExperiencePriceConversionResponse;
13936
- export type ExperiencePriceFacetConversion = io.flow.v0.models.ExperiencePriceFacetConversion;
13937
- export type ExperiencePriceFacetConversionRequest = io.flow.v0.models.ExperiencePriceFacetConversionRequest;
13938
- export type ExperiencePriceFacetConversionResponse = io.flow.v0.models.ExperiencePriceFacetConversionResponse;
14130
+ export type ExperiencePaymentMethodRule =
14131
+ io.flow.v0.models.ExperiencePaymentMethodRule;
14132
+ export type ExperiencePaymentMethodRuleForm =
14133
+ io.flow.v0.models.ExperiencePaymentMethodRuleForm;
14134
+ export type ExperiencePaymentMethodTag =
14135
+ io.flow.v0.enums.ExperiencePaymentMethodTag;
14136
+ export type ExperiencePriceBookMapping =
14137
+ io.flow.v0.models.ExperiencePriceBookMapping;
14138
+ export type ExperiencePriceBookMappingDeleted =
14139
+ io.flow.v0.models.ExperiencePriceBookMappingDeleted;
14140
+ export type ExperiencePriceBookMappingForm =
14141
+ io.flow.v0.models.ExperiencePriceBookMappingForm;
14142
+ export type ExperiencePriceBookMappingPutForm =
14143
+ io.flow.v0.models.ExperiencePriceBookMappingPutForm;
14144
+ export type ExperiencePriceBookMappingUpserted =
14145
+ io.flow.v0.models.ExperiencePriceBookMappingUpserted;
14146
+ export type ExperiencePriceConversion =
14147
+ io.flow.v0.models.ExperiencePriceConversion;
14148
+ export type ExperiencePriceConversionRequest =
14149
+ io.flow.v0.models.ExperiencePriceConversionRequest;
14150
+ export type ExperiencePriceConversionResponse =
14151
+ io.flow.v0.models.ExperiencePriceConversionResponse;
14152
+ export type ExperiencePriceFacetConversion =
14153
+ io.flow.v0.models.ExperiencePriceFacetConversion;
14154
+ export type ExperiencePriceFacetConversionRequest =
14155
+ io.flow.v0.models.ExperiencePriceFacetConversionRequest;
14156
+ export type ExperiencePriceFacetConversionResponse =
14157
+ io.flow.v0.models.ExperiencePriceFacetConversionResponse;
13939
14158
  export type ExperienceReference = io.flow.v0.models.ExperienceReference;
13940
14159
  export type ExperienceSettings = io.flow.v0.models.ExperienceSettings;
13941
14160
  export type ExperienceStatus = io.flow.v0.enums.ExperienceStatus;
@@ -13950,13 +14169,16 @@ export type Export = io.flow.v0.models.Export;
13950
14169
  export type ExportDelivery = io.flow.v0.unions.ExportDelivery;
13951
14170
  export type ExportDeliveryEmail = io.flow.v0.models.ExportDeliveryEmail;
13952
14171
  export type ExportForm = io.flow.v0.models.ExportForm;
13953
- export type ExportLocalizedItemPrices = io.flow.v0.models.ExportLocalizedItemPrices;
13954
- export type ExportLocalizedItemPricesDetail = io.flow.v0.models.ExportLocalizedItemPricesDetail;
14172
+ export type ExportLocalizedItemPrices =
14173
+ io.flow.v0.models.ExportLocalizedItemPrices;
14174
+ export type ExportLocalizedItemPricesDetail =
14175
+ io.flow.v0.models.ExportLocalizedItemPricesDetail;
13955
14176
  export type ExportStatus = io.flow.v0.enums.ExportStatus;
13956
14177
  export type ExportType = io.flow.v0.unions.ExportType;
13957
14178
  export type ExportVersion = io.flow.v0.models.ExportVersion;
13958
14179
  export type ExporterOfRecord = io.flow.v0.enums.ExporterOfRecord;
13959
- export type ExternalApiTimeoutReservationError = io.flow.v0.models.ExternalApiTimeoutReservationError;
14180
+ export type ExternalApiTimeoutReservationError =
14181
+ io.flow.v0.models.ExternalApiTimeoutReservationError;
13960
14182
  export type FeeDeduction = io.flow.v0.models.FeeDeduction;
13961
14183
  export type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
13962
14184
  export type FeeWeight = io.flow.v0.models.FeeWeight;
@@ -13964,7 +14186,8 @@ export type FieldValidationMax = io.flow.v0.models.FieldValidationMax;
13964
14186
  export type FieldValidationMin = io.flow.v0.models.FieldValidationMin;
13965
14187
  export type FieldValidationPattern = io.flow.v0.models.FieldValidationPattern;
13966
14188
  export type FieldValidationRequired = io.flow.v0.models.FieldValidationRequired;
13967
- export type FieldValidationRequiredIfPresent = io.flow.v0.models.FieldValidationRequiredIfPresent;
14189
+ export type FieldValidationRequiredIfPresent =
14190
+ io.flow.v0.models.FieldValidationRequiredIfPresent;
13968
14191
  export type FieldValidationRule = io.flow.v0.unions.FieldValidationRule;
13969
14192
  export type FlatRate = io.flow.v0.models.FlatRate;
13970
14193
  export type FlatRateForm = io.flow.v0.models.FlatRateForm;
@@ -13979,12 +14202,15 @@ export type FraudEmailRuleForm = io.flow.v0.models.FraudEmailRuleForm;
13979
14202
  export type FraudFlowOrderReference = io.flow.v0.models.FraudFlowOrderReference;
13980
14203
  export type FraudLiability = io.flow.v0.enums.FraudLiability;
13981
14204
  export type FraudOrderReference = io.flow.v0.unions.FraudOrderReference;
13982
- export type FraudPaymentRequestReference = io.flow.v0.models.FraudPaymentRequestReference;
14205
+ export type FraudPaymentRequestReference =
14206
+ io.flow.v0.models.FraudPaymentRequestReference;
13983
14207
  export type FraudStatus = io.flow.v0.enums.FraudStatus;
13984
14208
  export type FraudStatusChanged = io.flow.v0.models.FraudStatusChanged;
13985
14209
  export type FreeShipping = io.flow.v0.models.FreeShipping;
13986
- export type FreeShippingOrderPromotion = io.flow.v0.models.FreeShippingOrderPromotion;
13987
- export type FreeShippingOrderPromotionForm = io.flow.v0.models.FreeShippingOrderPromotionForm;
14210
+ export type FreeShippingOrderPromotion =
14211
+ io.flow.v0.models.FreeShippingOrderPromotion;
14212
+ export type FreeShippingOrderPromotionForm =
14213
+ io.flow.v0.models.FreeShippingOrderPromotionForm;
13988
14214
  export type FtpAccount = io.flow.v0.models.FtpAccount;
13989
14215
  export type FtpFile = io.flow.v0.models.FtpFile;
13990
14216
  export type FtpFileForm = io.flow.v0.models.FtpFileForm;
@@ -13992,49 +14218,70 @@ export type FtpFileSource = io.flow.v0.enums.FtpFileSource;
13992
14218
  export type FtpFolder = io.flow.v0.models.FtpFolder;
13993
14219
  export type FtpFolderForm = io.flow.v0.models.FtpFolderForm;
13994
14220
  export type FtpOrganizationSettings = io.flow.v0.models.FtpOrganizationSettings;
13995
- export type FtpOrganizationSettingsForm = io.flow.v0.models.FtpOrganizationSettingsForm;
14221
+ export type FtpOrganizationSettingsForm =
14222
+ io.flow.v0.models.FtpOrganizationSettingsForm;
13996
14223
  export type FtpServer = io.flow.v0.models.FtpServer;
13997
14224
  export type FtpUser = io.flow.v0.models.FtpUser;
13998
- export type FuelSurchargeAmountByWeightServiceFee = io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee;
13999
- export type FuelSurchargeRatecardFee = io.flow.v0.models.FuelSurchargeRatecardFee;
14225
+ export type FuelSurchargeAmountByWeightServiceFee =
14226
+ io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee;
14227
+ export type FuelSurchargeRatecardFee =
14228
+ io.flow.v0.models.FuelSurchargeRatecardFee;
14000
14229
  export type FuelSurchargeServiceFee = io.flow.v0.models.FuelSurchargeServiceFee;
14001
14230
  export type Fulfillment = io.flow.v0.models.Fulfillment;
14002
- export type FulfillmentCancellationForm = io.flow.v0.models.FulfillmentCancellationForm;
14003
- export type FulfillmentCompleteCancellationForm = io.flow.v0.models.FulfillmentCompleteCancellationForm;
14004
- export type FulfillmentExperienceReference = io.flow.v0.models.FulfillmentExperienceReference;
14231
+ export type FulfillmentCancellationForm =
14232
+ io.flow.v0.models.FulfillmentCancellationForm;
14233
+ export type FulfillmentCompleteCancellationForm =
14234
+ io.flow.v0.models.FulfillmentCompleteCancellationForm;
14235
+ export type FulfillmentExperienceReference =
14236
+ io.flow.v0.models.FulfillmentExperienceReference;
14005
14237
  export type FulfillmentItem = io.flow.v0.models.FulfillmentItem;
14006
- export type FulfillmentItemAllocationDetails = io.flow.v0.models.FulfillmentItemAllocationDetails;
14238
+ export type FulfillmentItemAllocationDetails =
14239
+ io.flow.v0.models.FulfillmentItemAllocationDetails;
14007
14240
  export type FulfillmentItemQuantity = io.flow.v0.models.FulfillmentItemQuantity;
14008
- export type FulfillmentItemQuantityStatus = io.flow.v0.enums.FulfillmentItemQuantityStatus;
14009
- export type FulfillmentLineCancelForm = io.flow.v0.models.FulfillmentLineCancelForm;
14241
+ export type FulfillmentItemQuantityStatus =
14242
+ io.flow.v0.enums.FulfillmentItemQuantityStatus;
14243
+ export type FulfillmentLineCancelForm =
14244
+ io.flow.v0.models.FulfillmentLineCancelForm;
14010
14245
  export type FulfillmentMethodType = io.flow.v0.enums.FulfillmentMethodType;
14011
14246
  export type FulfillmentMethodValue = io.flow.v0.enums.FulfillmentMethodValue;
14012
14247
  export type FulfillmentRouting = io.flow.v0.enums.FulfillmentRouting;
14013
- export type FullyHarmonizedItemUpserted = io.flow.v0.models.FullyHarmonizedItemUpserted;
14014
- export type GatewayAuthenticationData = io.flow.v0.unions.GatewayAuthenticationData;
14015
- export type GatewayAuthenticationDataForm = io.flow.v0.unions.GatewayAuthenticationDataForm;
14248
+ export type FullyHarmonizedItemUpserted =
14249
+ io.flow.v0.models.FullyHarmonizedItemUpserted;
14250
+ export type GatewayAuthenticationData =
14251
+ io.flow.v0.unions.GatewayAuthenticationData;
14252
+ export type GatewayAuthenticationDataForm =
14253
+ io.flow.v0.unions.GatewayAuthenticationDataForm;
14016
14254
  export type GenericError = io.flow.v0.models.GenericError;
14017
14255
  export type GenericErrorCode = io.flow.v0.enums.GenericErrorCode;
14018
14256
  export type GenericReservationError = io.flow.v0.models.GenericReservationError;
14019
14257
  export type GeoForm = io.flow.v0.models.GeoForm;
14020
14258
  export type GoodsSupply = io.flow.v0.enums.GoodsSupply;
14021
- export type GooglePayAuthorizationPayload = io.flow.v0.models.GooglePayAuthorizationPayload;
14259
+ export type GooglePayAuthorizationPayload =
14260
+ io.flow.v0.models.GooglePayAuthorizationPayload;
14022
14261
  export type GraphqlRequest = io.flow.v0.models.GraphqlRequest;
14023
14262
  export type GraphqlResponse = io.flow.v0.models.GraphqlResponse;
14024
14263
  export type HarmonizationDocument = io.flow.v0.models.HarmonizationDocument;
14025
- export type HarmonizationHs10ExportType = io.flow.v0.models.HarmonizationHs10ExportType;
14026
- export type HarmonizationHs6ExportType = io.flow.v0.models.HarmonizationHs6ExportType;
14027
- export type HarmonizationOverviewExportType = io.flow.v0.models.HarmonizationOverviewExportType;
14028
- export type HarmonizationTariffCodesExportType = io.flow.v0.models.HarmonizationTariffCodesExportType;
14029
- export type HarmonizedCategoryReference = io.flow.v0.models.HarmonizedCategoryReference;
14264
+ export type HarmonizationHs10ExportType =
14265
+ io.flow.v0.models.HarmonizationHs10ExportType;
14266
+ export type HarmonizationHs6ExportType =
14267
+ io.flow.v0.models.HarmonizationHs6ExportType;
14268
+ export type HarmonizationOverviewExportType =
14269
+ io.flow.v0.models.HarmonizationOverviewExportType;
14270
+ export type HarmonizationTariffCodesExportType =
14271
+ io.flow.v0.models.HarmonizationTariffCodesExportType;
14272
+ export type HarmonizedCategoryReference =
14273
+ io.flow.v0.models.HarmonizedCategoryReference;
14030
14274
  export type HarmonizedItem = io.flow.v0.models.HarmonizedItem;
14031
14275
  export type HarmonizedItemForm = io.flow.v0.models.HarmonizedItemForm;
14032
14276
  export type HarmonizedItemPutForm = io.flow.v0.models.HarmonizedItemPutForm;
14033
14277
  export type HarmonizedItemReference = io.flow.v0.models.HarmonizedItemReference;
14034
14278
  export type HarmonizedLandedCost = io.flow.v0.models.HarmonizedLandedCost;
14035
- export type HarmonizedLandedCostForm = io.flow.v0.models.HarmonizedLandedCostForm;
14036
- export type HarmonizedLandedCostItem = io.flow.v0.models.HarmonizedLandedCostItem;
14037
- export type HarmonizedLandedCostUpserted = io.flow.v0.models.HarmonizedLandedCostUpserted;
14279
+ export type HarmonizedLandedCostForm =
14280
+ io.flow.v0.models.HarmonizedLandedCostForm;
14281
+ export type HarmonizedLandedCostItem =
14282
+ io.flow.v0.models.HarmonizedLandedCostItem;
14283
+ export type HarmonizedLandedCostUpserted =
14284
+ io.flow.v0.models.HarmonizedLandedCostUpserted;
14038
14285
  export type Header = io.flow.v0.models.Header;
14039
14286
  export type Healthcheck = io.flow.v0.models.Healthcheck;
14040
14287
  export type HolidayCalendar = io.flow.v0.enums.HolidayCalendar;
@@ -14069,23 +14316,33 @@ export type IncludedLevies = io.flow.v0.models.IncludedLevies;
14069
14316
  export type IncludedLevyKey = io.flow.v0.enums.IncludedLevyKey;
14070
14317
  export type Incoterm = io.flow.v0.enums.Incoterm;
14071
14318
  export type IndirectTax = io.flow.v0.models.IndirectTax;
14072
- export type InlineActionConfiguration = io.flow.v0.unions.InlineActionConfiguration;
14073
- export type InlineAuthorizationDetails = io.flow.v0.models.InlineAuthorizationDetails;
14319
+ export type InlineActionConfiguration =
14320
+ io.flow.v0.unions.InlineActionConfiguration;
14321
+ export type InlineAuthorizationDetails =
14322
+ io.flow.v0.models.InlineAuthorizationDetails;
14074
14323
  export type InlineAuthorizationForm = io.flow.v0.models.InlineAuthorizationForm;
14075
- export type InlineWindowViewportSize = io.flow.v0.enums.InlineWindowViewportSize;
14324
+ export type InlineWindowViewportSize =
14325
+ io.flow.v0.enums.InlineWindowViewportSize;
14076
14326
  export type InputForm = io.flow.v0.models.InputForm;
14077
14327
  export type InputFormSpecification = io.flow.v0.models.InputFormSpecification;
14078
14328
  export type InputSpecification = io.flow.v0.models.InputSpecification;
14079
- export type InputSpecificationLimitation = io.flow.v0.unions.InputSpecificationLimitation;
14080
- export type InputSpecificationLimitationMax = io.flow.v0.models.InputSpecificationLimitationMax;
14081
- export type InputSpecificationLimitations = io.flow.v0.models.InputSpecificationLimitations;
14329
+ export type InputSpecificationLimitation =
14330
+ io.flow.v0.unions.InputSpecificationLimitation;
14331
+ export type InputSpecificationLimitationMax =
14332
+ io.flow.v0.models.InputSpecificationLimitationMax;
14333
+ export type InputSpecificationLimitations =
14334
+ io.flow.v0.models.InputSpecificationLimitations;
14082
14335
  export type InputSpecificationType = io.flow.v0.enums.InputSpecificationType;
14083
14336
  export type InventoryBackorder = io.flow.v0.models.InventoryBackorder;
14084
- export type InventoryCenterReference = io.flow.v0.models.InventoryCenterReference;
14337
+ export type InventoryCenterReference =
14338
+ io.flow.v0.models.InventoryCenterReference;
14085
14339
  export type InventoryCheckResponse = io.flow.v0.models.InventoryCheckResponse;
14086
- export type InventoryCheckResponseItem = io.flow.v0.models.InventoryCheckResponseItem;
14087
- export type InventoryExperienceReference = io.flow.v0.models.InventoryExperienceReference;
14088
- export type InventoryFollowEcommercePlatform = io.flow.v0.models.InventoryFollowEcommercePlatform;
14340
+ export type InventoryCheckResponseItem =
14341
+ io.flow.v0.models.InventoryCheckResponseItem;
14342
+ export type InventoryExperienceReference =
14343
+ io.flow.v0.models.InventoryExperienceReference;
14344
+ export type InventoryFollowEcommercePlatform =
14345
+ io.flow.v0.models.InventoryFollowEcommercePlatform;
14089
14346
  export type InventoryItemReference = io.flow.v0.models.InventoryItemReference;
14090
14347
  export type InventoryRequest = io.flow.v0.models.InventoryRequest;
14091
14348
  export type InventoryRequestItem = io.flow.v0.models.InventoryRequestItem;
@@ -14093,7 +14350,8 @@ export type InventoryRule = io.flow.v0.models.InventoryRule;
14093
14350
  export type InventoryRuleForm = io.flow.v0.models.InventoryRuleForm;
14094
14351
  export type InventoryRuleVersion = io.flow.v0.models.InventoryRuleVersion;
14095
14352
  export type InventorySnapshot = io.flow.v0.models.InventorySnapshot;
14096
- export type InventorySnapshotVersion = io.flow.v0.models.InventorySnapshotVersion;
14353
+ export type InventorySnapshotVersion =
14354
+ io.flow.v0.models.InventorySnapshotVersion;
14097
14355
  export type InventoryStatus = io.flow.v0.enums.InventoryStatus;
14098
14356
  export type InventoryStock = io.flow.v0.models.InventoryStock;
14099
14357
  export type InventoryStrategy = io.flow.v0.unions.InventoryStrategy;
@@ -14137,8 +14395,10 @@ export type ItemStatistics = io.flow.v0.models.ItemStatistics;
14137
14395
  export type ItemVersion = io.flow.v0.models.ItemVersion;
14138
14396
  export type JsonpResponse = io.flow.v0.models.JsonpResponse;
14139
14397
  export type KlarnaPaymentCategory = io.flow.v0.models.KlarnaPaymentCategory;
14140
- export type KlarnaPaymentMethodCategory = io.flow.v0.models.KlarnaPaymentMethodCategory;
14141
- export type KlarnaSdkAuthorizationResultActionDetails = io.flow.v0.models.KlarnaSdkAuthorizationResultActionDetails;
14398
+ export type KlarnaPaymentMethodCategory =
14399
+ io.flow.v0.models.KlarnaPaymentMethodCategory;
14400
+ export type KlarnaSdkAuthorizationResultActionDetails =
14401
+ io.flow.v0.models.KlarnaSdkAuthorizationResultActionDetails;
14142
14402
  export type KlaviyoLineItem = io.flow.v0.models.KlaviyoLineItem;
14143
14403
  export type KlaviyoOrderContent = io.flow.v0.models.KlaviyoOrderContent;
14144
14404
  export type KlaviyoOrderPrices = io.flow.v0.models.KlaviyoOrderPrices;
@@ -14149,9 +14409,11 @@ export type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
14149
14409
  export type LabelOrderSummary = io.flow.v0.models.LabelOrderSummary;
14150
14410
  export type LabelReference = io.flow.v0.models.LabelReference;
14151
14411
  export type LabelRequestMethod = io.flow.v0.enums.LabelRequestMethod;
14152
- export type LabelTrackingCarrierService = io.flow.v0.models.LabelTrackingCarrierService;
14412
+ export type LabelTrackingCarrierService =
14413
+ io.flow.v0.models.LabelTrackingCarrierService;
14153
14414
  export type LabelTrackingSummary = io.flow.v0.models.LabelTrackingSummary;
14154
- export type LabelTrackingSummaryUpdate = io.flow.v0.models.LabelTrackingSummaryUpdate;
14415
+ export type LabelTrackingSummaryUpdate =
14416
+ io.flow.v0.models.LabelTrackingSummaryUpdate;
14155
14417
  export type LabelTriggerMethod = io.flow.v0.enums.LabelTriggerMethod;
14156
14418
  export type LabelUpserted = io.flow.v0.models.LabelUpserted;
14157
14419
  export type LabelUpsertedV2 = io.flow.v0.models.LabelUpsertedV2;
@@ -14173,7 +14435,8 @@ export type LineItemQuantityForm = io.flow.v0.models.LineItemQuantityForm;
14173
14435
  export type Link = io.flow.v0.models.Link;
14174
14436
  export type Local = io.flow.v0.models.Local;
14175
14437
  export type LocalItem = io.flow.v0.models.LocalItem;
14176
- export type LocalItemAttributePricing = io.flow.v0.models.LocalItemAttributePricing;
14438
+ export type LocalItemAttributePricing =
14439
+ io.flow.v0.models.LocalItemAttributePricing;
14177
14440
  export type LocalItemDeleted = io.flow.v0.models.LocalItemDeleted;
14178
14441
  export type LocalItemPricing = io.flow.v0.models.LocalItemPricing;
14179
14442
  export type LocalItemUpserted = io.flow.v0.models.LocalItemUpserted;
@@ -14184,17 +14447,20 @@ export type LocaleNumbers = io.flow.v0.models.LocaleNumbers;
14184
14447
  export type LocalizedAdjustment = io.flow.v0.models.LocalizedAdjustment;
14185
14448
  export type LocalizedItemDuty = io.flow.v0.models.LocalizedItemDuty;
14186
14449
  export type LocalizedItemPrice = io.flow.v0.models.LocalizedItemPrice;
14187
- export type LocalizedItemPricesExportType = io.flow.v0.models.LocalizedItemPricesExportType;
14450
+ export type LocalizedItemPricesExportType =
14451
+ io.flow.v0.models.LocalizedItemPricesExportType;
14188
14452
  export type LocalizedItemVat = io.flow.v0.models.LocalizedItemVat;
14189
14453
  export type LocalizedLineItem = io.flow.v0.models.LocalizedLineItem;
14190
- export type LocalizedLineItemDiscount = io.flow.v0.models.LocalizedLineItemDiscount;
14454
+ export type LocalizedLineItemDiscount =
14455
+ io.flow.v0.models.LocalizedLineItemDiscount;
14191
14456
  export type LocalizedPrice = io.flow.v0.unions.LocalizedPrice;
14192
14457
  export type LocalizedTotal = io.flow.v0.models.LocalizedTotal;
14193
14458
  export type LocalizedTranslation = io.flow.v0.models.LocalizedTranslation;
14194
14459
  export type LocationError = io.flow.v0.models.LocationError;
14195
14460
  export type LocationErrorCode = io.flow.v0.enums.LocationErrorCode;
14196
14461
  export type LogisticsFormat = io.flow.v0.models.LogisticsFormat;
14197
- export type LogisticsFormatPreference = io.flow.v0.enums.LogisticsFormatPreference;
14462
+ export type LogisticsFormatPreference =
14463
+ io.flow.v0.enums.LogisticsFormatPreference;
14198
14464
  export type LogisticsSettings = io.flow.v0.models.LogisticsSettings;
14199
14465
  export type LogoImage = io.flow.v0.unions.LogoImage;
14200
14466
  export type LogoImageSetStatic = io.flow.v0.models.LogoImageSetStatic;
@@ -14206,7 +14472,8 @@ export type ManifestedLabelDeleted = io.flow.v0.models.ManifestedLabelDeleted;
14206
14472
  export type ManifestedLabelUpserted = io.flow.v0.models.ManifestedLabelUpserted;
14207
14473
  export type Margin = io.flow.v0.models.Margin;
14208
14474
  export type MarginType = io.flow.v0.enums.MarginType;
14209
- export type MarketingFeedsExportType = io.flow.v0.models.MarketingFeedsExportType;
14475
+ export type MarketingFeedsExportType =
14476
+ io.flow.v0.models.MarketingFeedsExportType;
14210
14477
  export type Measurement = io.flow.v0.models.Measurement;
14211
14478
  export type MeasurementSystem = io.flow.v0.enums.MeasurementSystem;
14212
14479
  export type Membership = io.flow.v0.models.Membership;
@@ -14217,26 +14484,40 @@ export type MembershipUpsertedV2 = io.flow.v0.models.MembershipUpsertedV2;
14217
14484
  export type MembershipVersion = io.flow.v0.models.MembershipVersion;
14218
14485
  export type MerchantActivated = io.flow.v0.models.MerchantActivated;
14219
14486
  export type MerchantApplication = io.flow.v0.unions.MerchantApplication;
14220
- export type MerchantApplicationDeleted = io.flow.v0.models.MerchantApplicationDeleted;
14487
+ export type MerchantApplicationDeleted =
14488
+ io.flow.v0.models.MerchantApplicationDeleted;
14221
14489
  export type MerchantApplicationForm = io.flow.v0.unions.MerchantApplicationForm;
14222
- export type MerchantApplicationPutForm = io.flow.v0.unions.MerchantApplicationPutForm;
14223
- export type MerchantApplicationUpserted = io.flow.v0.models.MerchantApplicationUpserted;
14224
- export type MerchantApplicationsSummary = io.flow.v0.unions.MerchantApplicationsSummary;
14490
+ export type MerchantApplicationPutForm =
14491
+ io.flow.v0.unions.MerchantApplicationPutForm;
14492
+ export type MerchantApplicationUpserted =
14493
+ io.flow.v0.models.MerchantApplicationUpserted;
14494
+ export type MerchantApplicationsSummary =
14495
+ io.flow.v0.unions.MerchantApplicationsSummary;
14225
14496
  export type MerchantGiftCardBalance = io.flow.v0.models.MerchantGiftCardBalance;
14226
- export type MerchantGiftCardBalanceForm = io.flow.v0.models.MerchantGiftCardBalanceForm;
14497
+ export type MerchantGiftCardBalanceForm =
14498
+ io.flow.v0.models.MerchantGiftCardBalanceForm;
14227
14499
  export type MerchantGiftCardError = io.flow.v0.models.MerchantGiftCardError;
14228
- export type MerchantGiftCardErrorCode = io.flow.v0.enums.MerchantGiftCardErrorCode;
14229
- export type MerchantGiftCardRedemption = io.flow.v0.models.MerchantGiftCardRedemption;
14230
- export type MerchantGiftCardRedemptionForm = io.flow.v0.models.MerchantGiftCardRedemptionForm;
14231
- export type MerchantGiftCardReversal = io.flow.v0.models.MerchantGiftCardReversal;
14232
- export type MerchantGiftCardReversalForm = io.flow.v0.models.MerchantGiftCardReversalForm;
14500
+ export type MerchantGiftCardErrorCode =
14501
+ io.flow.v0.enums.MerchantGiftCardErrorCode;
14502
+ export type MerchantGiftCardRedemption =
14503
+ io.flow.v0.models.MerchantGiftCardRedemption;
14504
+ export type MerchantGiftCardRedemptionForm =
14505
+ io.flow.v0.models.MerchantGiftCardRedemptionForm;
14506
+ export type MerchantGiftCardReversal =
14507
+ io.flow.v0.models.MerchantGiftCardReversal;
14508
+ export type MerchantGiftCardReversalForm =
14509
+ io.flow.v0.models.MerchantGiftCardReversalForm;
14233
14510
  export type MerchantInfo = io.flow.v0.models.MerchantInfo;
14234
14511
  export type MerchantOfRecord = io.flow.v0.enums.MerchantOfRecord;
14235
- export type MerchantOfRecordAuthorizationForm = io.flow.v0.models.MerchantOfRecordAuthorizationForm;
14512
+ export type MerchantOfRecordAuthorizationForm =
14513
+ io.flow.v0.models.MerchantOfRecordAuthorizationForm;
14236
14514
  export type MerchantOfRecordEntity = io.flow.v0.models.MerchantOfRecordEntity;
14237
- export type MerchantOfRecordEntityRegistration = io.flow.v0.models.MerchantOfRecordEntityRegistration;
14238
- export type MerchantOfRecordPaymentForm = io.flow.v0.models.MerchantOfRecordPaymentForm;
14239
- export type MerchantOnboardingAddress = io.flow.v0.models.MerchantOnboardingAddress;
14515
+ export type MerchantOfRecordEntityRegistration =
14516
+ io.flow.v0.models.MerchantOfRecordEntityRegistration;
14517
+ export type MerchantOfRecordPaymentForm =
14518
+ io.flow.v0.models.MerchantOfRecordPaymentForm;
14519
+ export type MerchantOnboardingAddress =
14520
+ io.flow.v0.models.MerchantOnboardingAddress;
14240
14521
  export type MerchantRejected = io.flow.v0.models.MerchantRejected;
14241
14522
  export type MerchantRejectedReason = io.flow.v0.enums.MerchantRejectedReason;
14242
14523
  export type Method = io.flow.v0.enums.Method;
@@ -14247,25 +14528,36 @@ export type MonthlyAverage = io.flow.v0.models.MonthlyAverage;
14247
14528
  export type MonthlyAverageVolume = io.flow.v0.models.MonthlyAverageVolume;
14248
14529
  export type Name = io.flow.v0.models.Name;
14249
14530
  export type NameForm = io.flow.v0.models.NameForm;
14250
- export type NoInventoryReservationError = io.flow.v0.models.NoInventoryReservationError;
14251
- export type NoInventoryReservationErrorItem = io.flow.v0.models.NoInventoryReservationErrorItem;
14531
+ export type NoInventoryReservationError =
14532
+ io.flow.v0.models.NoInventoryReservationError;
14533
+ export type NoInventoryReservationErrorItem =
14534
+ io.flow.v0.models.NoInventoryReservationErrorItem;
14252
14535
  export type NotificationDeletedV2 = io.flow.v0.models.NotificationDeletedV2;
14253
14536
  export type NotificationUpsertedV2 = io.flow.v0.models.NotificationUpsertedV2;
14254
14537
  export type NumberRange = io.flow.v0.models.NumberRange;
14255
- export type OnboardingApplicationStatus = io.flow.v0.enums.OnboardingApplicationStatus;
14538
+ export type OnboardingApplicationStatus =
14539
+ io.flow.v0.enums.OnboardingApplicationStatus;
14256
14540
  export type OnboardingBlockedReason = io.flow.v0.enums.OnboardingBlockedReason;
14257
- export type OnboardingMerchantPickupWindow = io.flow.v0.models.OnboardingMerchantPickupWindow;
14258
- export type OnboardingMerchantScheduledPickup = io.flow.v0.models.OnboardingMerchantScheduledPickup;
14541
+ export type OnboardingMerchantPickupWindow =
14542
+ io.flow.v0.models.OnboardingMerchantPickupWindow;
14543
+ export type OnboardingMerchantScheduledPickup =
14544
+ io.flow.v0.models.OnboardingMerchantScheduledPickup;
14259
14545
  export type OnboardingMerchantTime = io.flow.v0.models.OnboardingMerchantTime;
14260
- export type OnboardingOrganizationReference = io.flow.v0.models.OnboardingOrganizationReference;
14546
+ export type OnboardingOrganizationReference =
14547
+ io.flow.v0.models.OnboardingOrganizationReference;
14261
14548
  export type OnboardingState = io.flow.v0.unions.OnboardingState;
14262
- export type OnboardingStateTransition = io.flow.v0.models.OnboardingStateTransition;
14549
+ export type OnboardingStateTransition =
14550
+ io.flow.v0.models.OnboardingStateTransition;
14263
14551
  export type OnboardingTradeSector = io.flow.v0.enums.OnboardingTradeSector;
14264
14552
  export type OnlineAuthorization = io.flow.v0.models.OnlineAuthorization;
14265
- export type OnlineAuthorizationDeletedV2 = io.flow.v0.models.OnlineAuthorizationDeletedV2;
14266
- export type OnlineAuthorizationDetails = io.flow.v0.unions.OnlineAuthorizationDetails;
14267
- export type OnlineAuthorizationUpsertedV2 = io.flow.v0.models.OnlineAuthorizationUpsertedV2;
14268
- export type OnlinePaymentAuthorizationForm = io.flow.v0.models.OnlinePaymentAuthorizationForm;
14553
+ export type OnlineAuthorizationDeletedV2 =
14554
+ io.flow.v0.models.OnlineAuthorizationDeletedV2;
14555
+ export type OnlineAuthorizationDetails =
14556
+ io.flow.v0.unions.OnlineAuthorizationDetails;
14557
+ export type OnlineAuthorizationUpsertedV2 =
14558
+ io.flow.v0.models.OnlineAuthorizationUpsertedV2;
14559
+ export type OnlinePaymentAuthorizationForm =
14560
+ io.flow.v0.models.OnlinePaymentAuthorizationForm;
14269
14561
  export type OperationsContact = io.flow.v0.models.OperationsContact;
14270
14562
  export type OptinResponse = io.flow.v0.models.OptinResponse;
14271
14563
  export type OptinResponseType = io.flow.v0.enums.OptinResponseType;
@@ -14274,13 +14566,20 @@ export type Options = io.flow.v0.models.Options;
14274
14566
  export type Order = io.flow.v0.models.Order;
14275
14567
  export type OrderAddress = io.flow.v0.models.OrderAddress;
14276
14568
  export type OrderBuilder = io.flow.v0.models.OrderBuilder;
14277
- export type OrderBuilderAttributesForm = io.flow.v0.models.OrderBuilderAttributesForm;
14278
- export type OrderBuilderCustomerForm = io.flow.v0.models.OrderBuilderCustomerForm;
14279
- export type OrderBuilderCustomerInvoiceAddressForm = io.flow.v0.models.OrderBuilderCustomerInvoiceAddressForm;
14280
- export type OrderBuilderDeliveredDutyForm = io.flow.v0.models.OrderBuilderDeliveredDutyForm;
14281
- export type OrderBuilderDestinationCountryForm = io.flow.v0.models.OrderBuilderDestinationCountryForm;
14282
- export type OrderBuilderDestinationForm = io.flow.v0.models.OrderBuilderDestinationForm;
14283
- export type OrderBuilderSelectionsForm = io.flow.v0.models.OrderBuilderSelectionsForm;
14569
+ export type OrderBuilderAttributesForm =
14570
+ io.flow.v0.models.OrderBuilderAttributesForm;
14571
+ export type OrderBuilderCustomerForm =
14572
+ io.flow.v0.models.OrderBuilderCustomerForm;
14573
+ export type OrderBuilderCustomerInvoiceAddressForm =
14574
+ io.flow.v0.models.OrderBuilderCustomerInvoiceAddressForm;
14575
+ export type OrderBuilderDeliveredDutyForm =
14576
+ io.flow.v0.models.OrderBuilderDeliveredDutyForm;
14577
+ export type OrderBuilderDestinationCountryForm =
14578
+ io.flow.v0.models.OrderBuilderDestinationCountryForm;
14579
+ export type OrderBuilderDestinationForm =
14580
+ io.flow.v0.models.OrderBuilderDestinationForm;
14581
+ export type OrderBuilderSelectionsForm =
14582
+ io.flow.v0.models.OrderBuilderSelectionsForm;
14284
14583
  export type OrderChangeSource = io.flow.v0.enums.OrderChangeSource;
14285
14584
  export type OrderCustomer = io.flow.v0.models.OrderCustomer;
14286
14585
  export type OrderCustomerForm = io.flow.v0.models.OrderCustomerForm;
@@ -14298,24 +14597,33 @@ export type OrderFraudStatus = io.flow.v0.models.OrderFraudStatus;
14298
14597
  export type OrderGeo = io.flow.v0.models.OrderGeo;
14299
14598
  export type OrderIdentifier = io.flow.v0.models.OrderIdentifier;
14300
14599
  export type OrderIdentifierDeleted = io.flow.v0.models.OrderIdentifierDeleted;
14301
- export type OrderIdentifierDeletedV2 = io.flow.v0.models.OrderIdentifierDeletedV2;
14600
+ export type OrderIdentifierDeletedV2 =
14601
+ io.flow.v0.models.OrderIdentifierDeletedV2;
14302
14602
  export type OrderIdentifierForm = io.flow.v0.models.OrderIdentifierForm;
14303
14603
  export type OrderIdentifierPutForm = io.flow.v0.models.OrderIdentifierPutForm;
14304
14604
  export type OrderIdentifierUpserted = io.flow.v0.models.OrderIdentifierUpserted;
14305
- export type OrderIdentifierUpsertedV2 = io.flow.v0.models.OrderIdentifierUpsertedV2;
14306
- export type OrderIdentifierUpsertedV3 = io.flow.v0.models.OrderIdentifierUpsertedV3;
14605
+ export type OrderIdentifierUpsertedV2 =
14606
+ io.flow.v0.models.OrderIdentifierUpsertedV2;
14607
+ export type OrderIdentifierUpsertedV3 =
14608
+ io.flow.v0.models.OrderIdentifierUpsertedV3;
14307
14609
  export type OrderIdentifierVersion = io.flow.v0.models.OrderIdentifierVersion;
14308
14610
  export type OrderInformation = io.flow.v0.unions.OrderInformation;
14309
14611
  export type OrderInformationDetails = io.flow.v0.models.OrderInformationDetails;
14310
14612
  export type OrderInformationFlow = io.flow.v0.models.OrderInformationFlow;
14311
14613
  export type OrderMerchantOfRecord = io.flow.v0.enums.OrderMerchantOfRecord;
14312
14614
  export type OrderNumberGenerator = io.flow.v0.unions.OrderNumberGenerator;
14313
- export type OrderNumberGeneratorDefaults = io.flow.v0.models.OrderNumberGeneratorDefaults;
14314
- export type OrderNumberGeneratorFixedLength = io.flow.v0.models.OrderNumberGeneratorFixedLength;
14315
- export type OrderNumberGeneratorGeneratedNumber = io.flow.v0.models.OrderNumberGeneratorGeneratedNumber;
14316
- export type OrderNumberGeneratorHexadecimal = io.flow.v0.models.OrderNumberGeneratorHexadecimal;
14317
- export type OrderNumberGeneratorPrefixSuffix = io.flow.v0.models.OrderNumberGeneratorPrefixSuffix;
14318
- export type OrderNumberGeneratorUuid = io.flow.v0.models.OrderNumberGeneratorUuid;
14615
+ export type OrderNumberGeneratorDefaults =
14616
+ io.flow.v0.models.OrderNumberGeneratorDefaults;
14617
+ export type OrderNumberGeneratorFixedLength =
14618
+ io.flow.v0.models.OrderNumberGeneratorFixedLength;
14619
+ export type OrderNumberGeneratorGeneratedNumber =
14620
+ io.flow.v0.models.OrderNumberGeneratorGeneratedNumber;
14621
+ export type OrderNumberGeneratorHexadecimal =
14622
+ io.flow.v0.models.OrderNumberGeneratorHexadecimal;
14623
+ export type OrderNumberGeneratorPrefixSuffix =
14624
+ io.flow.v0.models.OrderNumberGeneratorPrefixSuffix;
14625
+ export type OrderNumberGeneratorUuid =
14626
+ io.flow.v0.models.OrderNumberGeneratorUuid;
14319
14627
  export type OrderNumberReference = io.flow.v0.models.OrderNumberReference;
14320
14628
  export type OrderOptions = io.flow.v0.models.OrderOptions;
14321
14629
  export type OrderPayment = io.flow.v0.models.OrderPayment;
@@ -14324,8 +14632,10 @@ export type OrderPlaced = io.flow.v0.models.OrderPlaced;
14324
14632
  export type OrderPlacedDetails = io.flow.v0.models.OrderPlacedDetails;
14325
14633
  export type OrderPlacedV2 = io.flow.v0.models.OrderPlacedV2;
14326
14634
  export type OrderPriceDetail = io.flow.v0.models.OrderPriceDetail;
14327
- export type OrderPriceDetailComponent = io.flow.v0.models.OrderPriceDetailComponent;
14328
- export type OrderPriceDetailComponentKey = io.flow.v0.enums.OrderPriceDetailComponentKey;
14635
+ export type OrderPriceDetailComponent =
14636
+ io.flow.v0.models.OrderPriceDetailComponent;
14637
+ export type OrderPriceDetailComponentKey =
14638
+ io.flow.v0.enums.OrderPriceDetailComponentKey;
14329
14639
  export type OrderPriceDetailKey = io.flow.v0.enums.OrderPriceDetailKey;
14330
14640
  export type OrderPromotion = io.flow.v0.unions.OrderPromotion;
14331
14641
  export type OrderPromotionForm = io.flow.v0.unions.OrderPromotionForm;
@@ -14344,45 +14654,60 @@ export type OrderQuoteLineDiscount = io.flow.v0.models.OrderQuoteLineDiscount;
14344
14654
  export type OrderQuoteLineError = io.flow.v0.models.OrderQuoteLineError;
14345
14655
  export type OrderQuoteLineErrorCode = io.flow.v0.enums.OrderQuoteLineErrorCode;
14346
14656
  export type OrderQuotePrice = io.flow.v0.unions.OrderQuotePrice;
14347
- export type OrderQuotePriceEstimated = io.flow.v0.models.OrderQuotePriceEstimated;
14657
+ export type OrderQuotePriceEstimated =
14658
+ io.flow.v0.models.OrderQuotePriceEstimated;
14348
14659
  export type OrderQuotePriceFree = io.flow.v0.models.OrderQuotePriceFree;
14349
14660
  export type OrderQuotePriceIncluded = io.flow.v0.models.OrderQuotePriceIncluded;
14350
- export type OrderQuotePriceNotYetKnown = io.flow.v0.models.OrderQuotePriceNotYetKnown;
14661
+ export type OrderQuotePriceNotYetKnown =
14662
+ io.flow.v0.models.OrderQuotePriceNotYetKnown;
14351
14663
  export type OrderQuotePriceStandard = io.flow.v0.models.OrderQuotePriceStandard;
14352
14664
  export type OrderQuotePutForm = io.flow.v0.models.OrderQuotePutForm;
14353
14665
  export type OrderQuoteReference = io.flow.v0.models.OrderQuoteReference;
14354
14666
  export type OrderQuoteSummary = io.flow.v0.models.OrderQuoteSummary;
14355
14667
  export type OrderQuoteSummaryDuty = io.flow.v0.models.OrderQuoteSummaryDuty;
14356
14668
  export type OrderQuoteSummaryItems = io.flow.v0.models.OrderQuoteSummaryItems;
14357
- export type OrderQuoteSummaryShipping = io.flow.v0.models.OrderQuoteSummaryShipping;
14358
- export type OrderQuoteSummaryShippingFreight = io.flow.v0.models.OrderQuoteSummaryShippingFreight;
14359
- export type OrderQuoteSummaryShippingSurcharges = io.flow.v0.models.OrderQuoteSummaryShippingSurcharges;
14669
+ export type OrderQuoteSummaryShipping =
14670
+ io.flow.v0.models.OrderQuoteSummaryShipping;
14671
+ export type OrderQuoteSummaryShippingFreight =
14672
+ io.flow.v0.models.OrderQuoteSummaryShippingFreight;
14673
+ export type OrderQuoteSummaryShippingSurcharges =
14674
+ io.flow.v0.models.OrderQuoteSummaryShippingSurcharges;
14360
14675
  export type OrderQuoteSummaryTax = io.flow.v0.models.OrderQuoteSummaryTax;
14361
14676
  export type OrderQuoteSummaryTotal = io.flow.v0.models.OrderQuoteSummaryTotal;
14362
14677
  export type OrderReference = io.flow.v0.models.OrderReference;
14363
14678
  export type OrderRefundSummary = io.flow.v0.models.OrderRefundSummary;
14364
- export type OrderRefundSummaryAmounts = io.flow.v0.models.OrderRefundSummaryAmounts;
14679
+ export type OrderRefundSummaryAmounts =
14680
+ io.flow.v0.models.OrderRefundSummaryAmounts;
14365
14681
  export type OrderRefundSummaryForm = io.flow.v0.unions.OrderRefundSummaryForm;
14366
- export type OrderRefundSummaryFullForm = io.flow.v0.models.OrderRefundSummaryFullForm;
14367
- export type OrderRefundSummaryIncludes = io.flow.v0.enums.OrderRefundSummaryIncludes;
14682
+ export type OrderRefundSummaryFullForm =
14683
+ io.flow.v0.models.OrderRefundSummaryFullForm;
14684
+ export type OrderRefundSummaryIncludes =
14685
+ io.flow.v0.enums.OrderRefundSummaryIncludes;
14368
14686
  export type OrderRefundSummaryItem = io.flow.v0.models.OrderRefundSummaryItem;
14369
- export type OrderRefundSummaryPartialCharged = io.flow.v0.enums.OrderRefundSummaryPartialCharged;
14370
- export type OrderRefundSummaryPartialForm = io.flow.v0.models.OrderRefundSummaryPartialForm;
14371
- export type OrderRefundSummaryPartialIncludes = io.flow.v0.models.OrderRefundSummaryPartialIncludes;
14687
+ export type OrderRefundSummaryPartialCharged =
14688
+ io.flow.v0.enums.OrderRefundSummaryPartialCharged;
14689
+ export type OrderRefundSummaryPartialForm =
14690
+ io.flow.v0.models.OrderRefundSummaryPartialForm;
14691
+ export type OrderRefundSummaryPartialIncludes =
14692
+ io.flow.v0.models.OrderRefundSummaryPartialIncludes;
14372
14693
  export type OrderReplacement = io.flow.v0.models.OrderReplacement;
14373
14694
  export type OrderReplacementDeleted = io.flow.v0.models.OrderReplacementDeleted;
14374
14695
  export type OrderReplacementForm = io.flow.v0.models.OrderReplacementForm;
14375
- export type OrderReplacementUpserted = io.flow.v0.models.OrderReplacementUpserted;
14696
+ export type OrderReplacementUpserted =
14697
+ io.flow.v0.models.OrderReplacementUpserted;
14376
14698
  export type OrderRuleReference = io.flow.v0.models.OrderRuleReference;
14377
14699
  export type OrderRulesSummary = io.flow.v0.models.OrderRulesSummary;
14378
14700
  export type OrderServiceChange = io.flow.v0.models.OrderServiceChange;
14379
14701
  export type OrderServiceChangeForm = io.flow.v0.models.OrderServiceChangeForm;
14380
- export type OrderServiceChangeRequest = io.flow.v0.models.OrderServiceChangeRequest;
14381
- export type OrderServiceChangeRequestData = io.flow.v0.models.OrderServiceChangeRequestData;
14702
+ export type OrderServiceChangeRequest =
14703
+ io.flow.v0.models.OrderServiceChangeRequest;
14704
+ export type OrderServiceChangeRequestData =
14705
+ io.flow.v0.models.OrderServiceChangeRequestData;
14382
14706
  export type OrderStatus = io.flow.v0.enums.OrderStatus;
14383
14707
  export type OrderStorage = io.flow.v0.enums.OrderStorage;
14384
14708
  export type OrderSubmissionForm = io.flow.v0.models.OrderSubmissionForm;
14385
- export type OrderSubmissionIdentifierForm = io.flow.v0.models.OrderSubmissionIdentifierForm;
14709
+ export type OrderSubmissionIdentifierForm =
14710
+ io.flow.v0.models.OrderSubmissionIdentifierForm;
14386
14711
  export type OrderSummary = io.flow.v0.models.OrderSummary;
14387
14712
  export type OrderSummaryImage = io.flow.v0.models.OrderSummaryImage;
14388
14713
  export type OrderSummaryItem = io.flow.v0.models.OrderSummaryItem;
@@ -14395,51 +14720,73 @@ export type OrderUpsertedV2 = io.flow.v0.models.OrderUpsertedV2;
14395
14720
  export type OrderVersion = io.flow.v0.models.OrderVersion;
14396
14721
  export type OrderWithDiscountsForm = io.flow.v0.models.OrderWithDiscountsForm;
14397
14722
  export type Organization = io.flow.v0.models.Organization;
14398
- export type OrganizationAuthorization = io.flow.v0.models.OrganizationAuthorization;
14399
- export type OrganizationAuthorizationForm = io.flow.v0.models.OrganizationAuthorizationForm;
14723
+ export type OrganizationAuthorization =
14724
+ io.flow.v0.models.OrganizationAuthorization;
14725
+ export type OrganizationAuthorizationForm =
14726
+ io.flow.v0.models.OrganizationAuthorizationForm;
14400
14727
  export type OrganizationBankAccount = io.flow.v0.models.OrganizationBankAccount;
14401
- export type OrganizationConfigurationReference = io.flow.v0.models.OrganizationConfigurationReference;
14402
- export type OrganizationDefaultBankAccount = io.flow.v0.models.OrganizationDefaultBankAccount;
14403
- export type OrganizationDefaultConfigurations = io.flow.v0.models.OrganizationDefaultConfigurations;
14404
- export type OrganizationDefaultConfigurationsDeleted = io.flow.v0.models.OrganizationDefaultConfigurationsDeleted;
14405
- export type OrganizationDefaultConfigurationsForm = io.flow.v0.models.OrganizationDefaultConfigurationsForm;
14406
- export type OrganizationDefaultConfigurationsUpserted = io.flow.v0.models.OrganizationDefaultConfigurationsUpserted;
14728
+ export type OrganizationConfigurationReference =
14729
+ io.flow.v0.models.OrganizationConfigurationReference;
14730
+ export type OrganizationDefaultBankAccount =
14731
+ io.flow.v0.models.OrganizationDefaultBankAccount;
14732
+ export type OrganizationDefaultConfigurations =
14733
+ io.flow.v0.models.OrganizationDefaultConfigurations;
14734
+ export type OrganizationDefaultConfigurationsDeleted =
14735
+ io.flow.v0.models.OrganizationDefaultConfigurationsDeleted;
14736
+ export type OrganizationDefaultConfigurationsForm =
14737
+ io.flow.v0.models.OrganizationDefaultConfigurationsForm;
14738
+ export type OrganizationDefaultConfigurationsUpserted =
14739
+ io.flow.v0.models.OrganizationDefaultConfigurationsUpserted;
14407
14740
  export type OrganizationDefaults = io.flow.v0.models.OrganizationDefaults;
14408
14741
  export type OrganizationDeleted = io.flow.v0.models.OrganizationDeleted;
14409
14742
  export type OrganizationDeletedV2 = io.flow.v0.models.OrganizationDeletedV2;
14410
14743
  export type OrganizationForm = io.flow.v0.models.OrganizationForm;
14411
- export type OrganizationOnboardingState = io.flow.v0.models.OrganizationOnboardingState;
14412
- export type OrganizationOnboardingStateDeleted = io.flow.v0.models.OrganizationOnboardingStateDeleted;
14413
- export type OrganizationOnboardingStateUpserted = io.flow.v0.models.OrganizationOnboardingStateUpserted;
14414
- export type OrganizationPaymentMethodTag = io.flow.v0.enums.OrganizationPaymentMethodTag;
14744
+ export type OrganizationOnboardingState =
14745
+ io.flow.v0.models.OrganizationOnboardingState;
14746
+ export type OrganizationOnboardingStateDeleted =
14747
+ io.flow.v0.models.OrganizationOnboardingStateDeleted;
14748
+ export type OrganizationOnboardingStateUpserted =
14749
+ io.flow.v0.models.OrganizationOnboardingStateUpserted;
14750
+ export type OrganizationPaymentMethodTag =
14751
+ io.flow.v0.enums.OrganizationPaymentMethodTag;
14415
14752
  export type OrganizationPayout = io.flow.v0.models.OrganizationPayout;
14416
- export type OrganizationPayoutDeleted = io.flow.v0.models.OrganizationPayoutDeleted;
14417
- export type OrganizationPayoutUpserted = io.flow.v0.models.OrganizationPayoutUpserted;
14753
+ export type OrganizationPayoutDeleted =
14754
+ io.flow.v0.models.OrganizationPayoutDeleted;
14755
+ export type OrganizationPayoutUpserted =
14756
+ io.flow.v0.models.OrganizationPayoutUpserted;
14418
14757
  export type OrganizationPutForm = io.flow.v0.models.OrganizationPutForm;
14419
14758
  export type OrganizationRatesData = io.flow.v0.models.OrganizationRatesData;
14420
- export type OrganizationRatesPublished = io.flow.v0.models.OrganizationRatesPublished;
14759
+ export type OrganizationRatesPublished =
14760
+ io.flow.v0.models.OrganizationRatesPublished;
14421
14761
  export type OrganizationReference = io.flow.v0.models.OrganizationReference;
14422
14762
  export type OrganizationSession = io.flow.v0.models.OrganizationSession;
14423
- export type OrganizationSessionAuthorization = io.flow.v0.models.OrganizationSessionAuthorization;
14763
+ export type OrganizationSessionAuthorization =
14764
+ io.flow.v0.models.OrganizationSessionAuthorization;
14424
14765
  export type OrganizationStatus = io.flow.v0.enums.OrganizationStatus;
14425
14766
  export type OrganizationSummary = io.flow.v0.models.OrganizationSummary;
14426
14767
  export type OrganizationToken = io.flow.v0.models.OrganizationToken;
14427
14768
  export type OrganizationTokenForm = io.flow.v0.models.OrganizationTokenForm;
14428
14769
  export type OrganizationTokenFormV2 = io.flow.v0.models.OrganizationTokenFormV2;
14429
- export type OrganizationTokenReference = io.flow.v0.models.OrganizationTokenReference;
14770
+ export type OrganizationTokenReference =
14771
+ io.flow.v0.models.OrganizationTokenReference;
14430
14772
  export type OrganizationTokenV2 = io.flow.v0.models.OrganizationTokenV2;
14431
- export type OrganizationTokenV2Reference = io.flow.v0.models.OrganizationTokenV2Reference;
14432
- export type OrganizationTransactionDeleted = io.flow.v0.models.OrganizationTransactionDeleted;
14433
- export type OrganizationTransactionUpserted = io.flow.v0.models.OrganizationTransactionUpserted;
14773
+ export type OrganizationTokenV2Reference =
14774
+ io.flow.v0.models.OrganizationTokenV2Reference;
14775
+ export type OrganizationTransactionDeleted =
14776
+ io.flow.v0.models.OrganizationTransactionDeleted;
14777
+ export type OrganizationTransactionUpserted =
14778
+ io.flow.v0.models.OrganizationTransactionUpserted;
14434
14779
  export type OrganizationType = io.flow.v0.enums.OrganizationType;
14435
14780
  export type OrganizationUpserted = io.flow.v0.models.OrganizationUpserted;
14436
14781
  export type OrganizationUpsertedV2 = io.flow.v0.models.OrganizationUpsertedV2;
14437
14782
  export type OrganizationVersion = io.flow.v0.models.OrganizationVersion;
14438
14783
  export type OriginalPrices = io.flow.v0.models.OriginalPrices;
14439
14784
  export type OutboundCartonFee = io.flow.v0.models.OutboundCartonFee;
14440
- export type OversizedShipmentRatecardFee = io.flow.v0.models.OversizedShipmentRatecardFee;
14785
+ export type OversizedShipmentRatecardFee =
14786
+ io.flow.v0.models.OversizedShipmentRatecardFee;
14441
14787
  export type Packaging = io.flow.v0.models.Packaging;
14442
- export type ParentTransactionSummary = io.flow.v0.models.ParentTransactionSummary;
14788
+ export type ParentTransactionSummary =
14789
+ io.flow.v0.models.ParentTransactionSummary;
14443
14790
  export type PartnerCenter = io.flow.v0.models.PartnerCenter;
14444
14791
  export type PartnerCenterFee = io.flow.v0.unions.PartnerCenterFee;
14445
14792
  export type PartnerCenterForm = io.flow.v0.models.PartnerCenterForm;
@@ -14449,19 +14796,23 @@ export type PartnerTokenForm = io.flow.v0.models.PartnerTokenForm;
14449
14796
  export type PartnerTokenReference = io.flow.v0.models.PartnerTokenReference;
14450
14797
  export type PasswordChangeForm = io.flow.v0.models.PasswordChangeForm;
14451
14798
  export type PasswordResetForm = io.flow.v0.models.PasswordResetForm;
14452
- export type PasswordResetRequestForm = io.flow.v0.models.PasswordResetRequestForm;
14799
+ export type PasswordResetRequestForm =
14800
+ io.flow.v0.models.PasswordResetRequestForm;
14453
14801
  export type Payment = io.flow.v0.unions.Payment;
14454
14802
  export type PaymentActionType = io.flow.v0.enums.PaymentActionType;
14455
14803
  export type PaymentAddress = io.flow.v0.models.PaymentAddress;
14456
14804
  export type PaymentAddressBilling = io.flow.v0.models.PaymentAddressBilling;
14457
14805
  export type PaymentAddressShipping = io.flow.v0.models.PaymentAddressShipping;
14458
14806
  export type PaymentAuthorization = io.flow.v0.models.PaymentAuthorization;
14459
- export type PaymentAuthorizationStatus = io.flow.v0.models.PaymentAuthorizationStatus;
14807
+ export type PaymentAuthorizationStatus =
14808
+ io.flow.v0.models.PaymentAuthorizationStatus;
14460
14809
  export type PaymentCapture = io.flow.v0.models.PaymentCapture;
14461
14810
  export type PaymentCaptureForm = io.flow.v0.models.PaymentCaptureForm;
14462
14811
  export type PaymentCaptureOption = io.flow.v0.unions.PaymentCaptureOption;
14463
- export type PaymentCaptureOptionAutomaticImmediate = io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate;
14464
- export type PaymentCaptureOptionManual = io.flow.v0.models.PaymentCaptureOptionManual;
14812
+ export type PaymentCaptureOptionAutomaticImmediate =
14813
+ io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate;
14814
+ export type PaymentCaptureOptionManual =
14815
+ io.flow.v0.models.PaymentCaptureOptionManual;
14465
14816
  export type PaymentCaptureStatus = io.flow.v0.models.PaymentCaptureStatus;
14466
14817
  export type PaymentContactBilling = io.flow.v0.models.PaymentContactBilling;
14467
14818
  export type PaymentContactShipping = io.flow.v0.models.PaymentContactShipping;
@@ -14476,95 +14827,153 @@ export type PaymentFailureCode = io.flow.v0.enums.PaymentFailureCode;
14476
14827
  export type PaymentForm = io.flow.v0.unions.PaymentForm;
14477
14828
  export type PaymentInformation = io.flow.v0.models.PaymentInformation;
14478
14829
  export type PaymentMethod = io.flow.v0.models.PaymentMethod;
14479
- export type PaymentMethodActionCancellation = io.flow.v0.models.PaymentMethodActionCancellation;
14830
+ export type PaymentMethodActionCancellation =
14831
+ io.flow.v0.models.PaymentMethodActionCancellation;
14480
14832
  export type PaymentMethodBrand = io.flow.v0.models.PaymentMethodBrand;
14481
14833
  export type PaymentMethodCapability = io.flow.v0.enums.PaymentMethodCapability;
14482
14834
  export type PaymentMethodCard = io.flow.v0.unions.PaymentMethodCard;
14483
- export type PaymentMethodCardNumberCipher = io.flow.v0.models.PaymentMethodCardNumberCipher;
14484
- export type PaymentMethodCardNumberCleartext = io.flow.v0.models.PaymentMethodCardNumberCleartext;
14485
- export type PaymentMethodCardPciDetails = io.flow.v0.models.PaymentMethodCardPciDetails;
14835
+ export type PaymentMethodCardNumberCipher =
14836
+ io.flow.v0.models.PaymentMethodCardNumberCipher;
14837
+ export type PaymentMethodCardNumberCleartext =
14838
+ io.flow.v0.models.PaymentMethodCardNumberCleartext;
14839
+ export type PaymentMethodCardPciDetails =
14840
+ io.flow.v0.models.PaymentMethodCardPciDetails;
14486
14841
  export type PaymentMethodCardToken = io.flow.v0.models.PaymentMethodCardToken;
14487
14842
  export type PaymentMethodData = io.flow.v0.unions.PaymentMethodData;
14488
- export type PaymentMethodDataAuthorizeApplepay = io.flow.v0.models.PaymentMethodDataAuthorizeApplepay;
14489
- export type PaymentMethodDataAuthorizeApplepayResult = io.flow.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
14490
- export type PaymentMethodDataAuthorizeApplepayResultFailure = io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
14491
- export type PaymentMethodDataAuthorizeApplepayResultSuccess = io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess;
14492
- export type PaymentMethodDataAuthorizeCard = io.flow.v0.models.PaymentMethodDataAuthorizeCard;
14493
- export type PaymentMethodDataAuthorizeGooglepay = io.flow.v0.models.PaymentMethodDataAuthorizeGooglepay;
14494
- export type PaymentMethodDataAuthorizeKlarna = io.flow.v0.models.PaymentMethodDataAuthorizeKlarna;
14495
- export type PaymentMethodDataAuthorizeKlarnaResult = io.flow.v0.unions.PaymentMethodDataAuthorizeKlarnaResult;
14496
- export type PaymentMethodDataAuthorizeKlarnaResultFailure = io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
14497
- export type PaymentMethodDataAuthorizeKlarnaResultSuccess = io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess;
14498
- export type PaymentMethodDataAuthorizePaypal = io.flow.v0.models.PaymentMethodDataAuthorizePaypal;
14499
- export type PaymentMethodDataCompleteAuthorizationCard = io.flow.v0.models.PaymentMethodDataCompleteAuthorizationCard;
14500
- export type PaymentMethodDataInitAfterpay = io.flow.v0.models.PaymentMethodDataInitAfterpay;
14501
- export type PaymentMethodDataInitApplepay = io.flow.v0.models.PaymentMethodDataInitApplepay;
14502
- export type PaymentMethodDataInitBancontact = io.flow.v0.models.PaymentMethodDataInitBancontact;
14503
- export type PaymentMethodDataInitGooglepay = io.flow.v0.models.PaymentMethodDataInitGooglepay;
14504
- export type PaymentMethodDataInitIdeal = io.flow.v0.models.PaymentMethodDataInitIdeal;
14505
- export type PaymentMethodDataInitKlarna = io.flow.v0.models.PaymentMethodDataInitKlarna;
14506
- export type PaymentMethodDataInitPaypal = io.flow.v0.models.PaymentMethodDataInitPaypal;
14507
- export type PaymentMethodDataInitSofort = io.flow.v0.models.PaymentMethodDataInitSofort;
14508
- export type PaymentMethodDataOptionLogo = io.flow.v0.unions.PaymentMethodDataOptionLogo;
14509
- export type PaymentMethodDataOptionLogoSvg = io.flow.v0.models.PaymentMethodDataOptionLogoSvg;
14510
- export type PaymentMethodDataOptionType = io.flow.v0.enums.PaymentMethodDataOptionType;
14511
- export type PaymentMethodDataPaymentOption = io.flow.v0.models.PaymentMethodDataPaymentOption;
14512
- export type PaymentMethodDataSelectedPaymentOption = io.flow.v0.models.PaymentMethodDataSelectedPaymentOption;
14513
- export type PaymentMethodDataValidateApplepay = io.flow.v0.models.PaymentMethodDataValidateApplepay;
14843
+ export type PaymentMethodDataAuthorizeApplepay =
14844
+ io.flow.v0.models.PaymentMethodDataAuthorizeApplepay;
14845
+ export type PaymentMethodDataAuthorizeApplepayResult =
14846
+ io.flow.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
14847
+ export type PaymentMethodDataAuthorizeApplepayResultFailure =
14848
+ io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure;
14849
+ export type PaymentMethodDataAuthorizeApplepayResultSuccess =
14850
+ io.flow.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess;
14851
+ export type PaymentMethodDataAuthorizeCard =
14852
+ io.flow.v0.models.PaymentMethodDataAuthorizeCard;
14853
+ export type PaymentMethodDataAuthorizeGooglepay =
14854
+ io.flow.v0.models.PaymentMethodDataAuthorizeGooglepay;
14855
+ export type PaymentMethodDataAuthorizeKlarna =
14856
+ io.flow.v0.models.PaymentMethodDataAuthorizeKlarna;
14857
+ export type PaymentMethodDataAuthorizeKlarnaResult =
14858
+ io.flow.v0.unions.PaymentMethodDataAuthorizeKlarnaResult;
14859
+ export type PaymentMethodDataAuthorizeKlarnaResultFailure =
14860
+ io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure;
14861
+ export type PaymentMethodDataAuthorizeKlarnaResultSuccess =
14862
+ io.flow.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess;
14863
+ export type PaymentMethodDataAuthorizePaypal =
14864
+ io.flow.v0.models.PaymentMethodDataAuthorizePaypal;
14865
+ export type PaymentMethodDataCompleteAuthorizationCard =
14866
+ io.flow.v0.models.PaymentMethodDataCompleteAuthorizationCard;
14867
+ export type PaymentMethodDataInitAfterpay =
14868
+ io.flow.v0.models.PaymentMethodDataInitAfterpay;
14869
+ export type PaymentMethodDataInitApplepay =
14870
+ io.flow.v0.models.PaymentMethodDataInitApplepay;
14871
+ export type PaymentMethodDataInitBancontact =
14872
+ io.flow.v0.models.PaymentMethodDataInitBancontact;
14873
+ export type PaymentMethodDataInitGooglepay =
14874
+ io.flow.v0.models.PaymentMethodDataInitGooglepay;
14875
+ export type PaymentMethodDataInitIdeal =
14876
+ io.flow.v0.models.PaymentMethodDataInitIdeal;
14877
+ export type PaymentMethodDataInitKlarna =
14878
+ io.flow.v0.models.PaymentMethodDataInitKlarna;
14879
+ export type PaymentMethodDataInitPaypal =
14880
+ io.flow.v0.models.PaymentMethodDataInitPaypal;
14881
+ export type PaymentMethodDataInitSofort =
14882
+ io.flow.v0.models.PaymentMethodDataInitSofort;
14883
+ export type PaymentMethodDataOptionLogo =
14884
+ io.flow.v0.unions.PaymentMethodDataOptionLogo;
14885
+ export type PaymentMethodDataOptionLogoSvg =
14886
+ io.flow.v0.models.PaymentMethodDataOptionLogoSvg;
14887
+ export type PaymentMethodDataOptionType =
14888
+ io.flow.v0.enums.PaymentMethodDataOptionType;
14889
+ export type PaymentMethodDataPaymentOption =
14890
+ io.flow.v0.models.PaymentMethodDataPaymentOption;
14891
+ export type PaymentMethodDataSelectedPaymentOption =
14892
+ io.flow.v0.models.PaymentMethodDataSelectedPaymentOption;
14893
+ export type PaymentMethodDataValidateApplepay =
14894
+ io.flow.v0.models.PaymentMethodDataValidateApplepay;
14514
14895
  export type PaymentMethodImage = io.flow.v0.models.PaymentMethodImage;
14515
14896
  export type PaymentMethodImages = io.flow.v0.models.PaymentMethodImages;
14516
14897
  export type PaymentMethodIssuer = io.flow.v0.models.PaymentMethodIssuer;
14517
14898
  export type PaymentMethodRule = io.flow.v0.models.PaymentMethodRule;
14518
- export type PaymentMethodRuleContent = io.flow.v0.models.PaymentMethodRuleContent;
14519
- export type PaymentMethodRuleContentKey = io.flow.v0.enums.PaymentMethodRuleContentKey;
14520
- export type PaymentMethodStoredDetailsCard = io.flow.v0.unions.PaymentMethodStoredDetailsCard;
14521
- export type PaymentMethodStoredDetailsCardInitial = io.flow.v0.models.PaymentMethodStoredDetailsCardInitial;
14522
- export type PaymentMethodStoredDetailsCardSubsequent = io.flow.v0.models.PaymentMethodStoredDetailsCardSubsequent;
14899
+ export type PaymentMethodRuleContent =
14900
+ io.flow.v0.models.PaymentMethodRuleContent;
14901
+ export type PaymentMethodRuleContentKey =
14902
+ io.flow.v0.enums.PaymentMethodRuleContentKey;
14903
+ export type PaymentMethodStoredDetailsCard =
14904
+ io.flow.v0.unions.PaymentMethodStoredDetailsCard;
14905
+ export type PaymentMethodStoredDetailsCardInitial =
14906
+ io.flow.v0.models.PaymentMethodStoredDetailsCardInitial;
14907
+ export type PaymentMethodStoredDetailsCardSubsequent =
14908
+ io.flow.v0.models.PaymentMethodStoredDetailsCardSubsequent;
14523
14909
  export type PaymentMethodSummary = io.flow.v0.unions.PaymentMethodSummary;
14524
- export type PaymentMethodSummaryAfterpay = io.flow.v0.models.PaymentMethodSummaryAfterpay;
14525
- export type PaymentMethodSummaryApplepay = io.flow.v0.models.PaymentMethodSummaryApplepay;
14526
- export type PaymentMethodSummaryBancontact = io.flow.v0.models.PaymentMethodSummaryBancontact;
14527
- export type PaymentMethodSummaryCard = io.flow.v0.models.PaymentMethodSummaryCard;
14528
- export type PaymentMethodSummaryGooglepay = io.flow.v0.models.PaymentMethodSummaryGooglepay;
14529
- export type PaymentMethodSummaryIdeal = io.flow.v0.models.PaymentMethodSummaryIdeal;
14530
- export type PaymentMethodSummaryKlarna = io.flow.v0.models.PaymentMethodSummaryKlarna;
14531
- export type PaymentMethodSummaryPaypal = io.flow.v0.models.PaymentMethodSummaryPaypal;
14532
- export type PaymentMethodSummarySofort = io.flow.v0.models.PaymentMethodSummarySofort;
14910
+ export type PaymentMethodSummaryAfterpay =
14911
+ io.flow.v0.models.PaymentMethodSummaryAfterpay;
14912
+ export type PaymentMethodSummaryApplepay =
14913
+ io.flow.v0.models.PaymentMethodSummaryApplepay;
14914
+ export type PaymentMethodSummaryBancontact =
14915
+ io.flow.v0.models.PaymentMethodSummaryBancontact;
14916
+ export type PaymentMethodSummaryCard =
14917
+ io.flow.v0.models.PaymentMethodSummaryCard;
14918
+ export type PaymentMethodSummaryGooglepay =
14919
+ io.flow.v0.models.PaymentMethodSummaryGooglepay;
14920
+ export type PaymentMethodSummaryIdeal =
14921
+ io.flow.v0.models.PaymentMethodSummaryIdeal;
14922
+ export type PaymentMethodSummaryKlarna =
14923
+ io.flow.v0.models.PaymentMethodSummaryKlarna;
14924
+ export type PaymentMethodSummaryPaypal =
14925
+ io.flow.v0.models.PaymentMethodSummaryPaypal;
14926
+ export type PaymentMethodSummarySofort =
14927
+ io.flow.v0.models.PaymentMethodSummarySofort;
14533
14928
  export type PaymentMethodTag = io.flow.v0.unions.PaymentMethodTag;
14534
14929
  export type PaymentMethodType = io.flow.v0.enums.PaymentMethodType;
14535
- export type PaymentOrderDetailsLineItem = io.flow.v0.models.PaymentOrderDetailsLineItem;
14930
+ export type PaymentOrderDetailsLineItem =
14931
+ io.flow.v0.models.PaymentOrderDetailsLineItem;
14536
14932
  export type PaymentOrderReference = io.flow.v0.unions.PaymentOrderReference;
14537
14933
  export type PaymentPaymentMethod = io.flow.v0.models.PaymentPaymentMethod;
14538
- export type PaymentPaymentRequestReference = io.flow.v0.models.PaymentPaymentRequestReference;
14934
+ export type PaymentPaymentRequestReference =
14935
+ io.flow.v0.models.PaymentPaymentRequestReference;
14539
14936
  export type PaymentPaypal = io.flow.v0.models.PaymentPaypal;
14540
14937
  export type PaymentProcessor = io.flow.v0.models.PaymentProcessor;
14541
14938
  export type PaymentProcessorAccount = io.flow.v0.models.PaymentProcessorAccount;
14542
- export type PaymentProcessorAccountReference = io.flow.v0.models.PaymentProcessorAccountReference;
14543
- export type PaymentProcessorIdentifier = io.flow.v0.models.PaymentProcessorIdentifier;
14544
- export type PaymentProcessorReference = io.flow.v0.models.PaymentProcessorReference;
14939
+ export type PaymentProcessorAccountReference =
14940
+ io.flow.v0.models.PaymentProcessorAccountReference;
14941
+ export type PaymentProcessorIdentifier =
14942
+ io.flow.v0.models.PaymentProcessorIdentifier;
14943
+ export type PaymentProcessorReference =
14944
+ io.flow.v0.models.PaymentProcessorReference;
14545
14945
  export type PaymentReference = io.flow.v0.models.PaymentReference;
14546
14946
  export type PaymentRefund = io.flow.v0.models.PaymentRefund;
14547
14947
  export type PaymentRefundForm = io.flow.v0.models.PaymentRefundForm;
14548
14948
  export type PaymentRefundStatus = io.flow.v0.models.PaymentRefundStatus;
14549
14949
  export type PaymentRequest = io.flow.v0.models.PaymentRequest;
14550
14950
  export type PaymentRequestBilling = io.flow.v0.models.PaymentRequestBilling;
14551
- export type PaymentRequestBillingFees = io.flow.v0.models.PaymentRequestBillingFees;
14951
+ export type PaymentRequestBillingFees =
14952
+ io.flow.v0.models.PaymentRequestBillingFees;
14552
14953
  export type PaymentRequestBundle = io.flow.v0.models.PaymentRequestBundle;
14553
- export type PaymentRequestBundleForm = io.flow.v0.models.PaymentRequestBundleForm;
14954
+ export type PaymentRequestBundleForm =
14955
+ io.flow.v0.models.PaymentRequestBundleForm;
14956
+ export type PaymentRequestDeleted = io.flow.v0.models.PaymentRequestDeleted;
14554
14957
  export type PaymentRequestForm = io.flow.v0.models.PaymentRequestForm;
14555
14958
  export type PaymentRequestReference = io.flow.v0.models.PaymentRequestReference;
14556
14959
  export type PaymentRequestReview = io.flow.v0.models.PaymentRequestReview;
14557
- export type PaymentRequestReviewCheck = io.flow.v0.models.PaymentRequestReviewCheck;
14558
- export type PaymentRequestReviewCheckStatus = io.flow.v0.enums.PaymentRequestReviewCheckStatus;
14559
- export type PaymentRequestReviewCheckType = io.flow.v0.enums.PaymentRequestReviewCheckType;
14560
- export type PaymentRequestReviewStatus = io.flow.v0.enums.PaymentRequestReviewStatus;
14960
+ export type PaymentRequestReviewCheck =
14961
+ io.flow.v0.models.PaymentRequestReviewCheck;
14962
+ export type PaymentRequestReviewCheckStatus =
14963
+ io.flow.v0.enums.PaymentRequestReviewCheckStatus;
14964
+ export type PaymentRequestReviewCheckType =
14965
+ io.flow.v0.enums.PaymentRequestReviewCheckType;
14966
+ export type PaymentRequestReviewStatus =
14967
+ io.flow.v0.enums.PaymentRequestReviewStatus;
14561
14968
  export type PaymentRequestUpserted = io.flow.v0.models.PaymentRequestUpserted;
14562
14969
  export type PaymentReversal = io.flow.v0.models.PaymentReversal;
14563
14970
  export type PaymentReversalForm = io.flow.v0.models.PaymentReversalForm;
14564
14971
  export type PaymentReversalStatus = io.flow.v0.models.PaymentReversalStatus;
14565
14972
  export type PaymentSource = io.flow.v0.unions.PaymentSource;
14566
- export type PaymentSourceConfirmationAction = io.flow.v0.models.PaymentSourceConfirmationAction;
14567
- export type PaymentSourceConfirmationActionType = io.flow.v0.enums.PaymentSourceConfirmationActionType;
14973
+ export type PaymentSourceConfirmationAction =
14974
+ io.flow.v0.models.PaymentSourceConfirmationAction;
14975
+ export type PaymentSourceConfirmationActionType =
14976
+ io.flow.v0.enums.PaymentSourceConfirmationActionType;
14568
14977
  export type PaymentSourceForm = io.flow.v0.unions.PaymentSourceForm;
14569
14978
  export type PaymentStatus = io.flow.v0.enums.PaymentStatus;
14570
14979
  export type PaymentTax = io.flow.v0.models.PaymentTax;
@@ -14579,21 +14988,27 @@ export type PayoutStatusFailureCode = io.flow.v0.enums.PayoutStatusFailureCode;
14579
14988
  export type PayoutStatusScheduled = io.flow.v0.models.PayoutStatusScheduled;
14580
14989
  export type PayoutStatusSent = io.flow.v0.models.PayoutStatusSent;
14581
14990
  export type PayoutTransaction = io.flow.v0.models.PayoutTransaction;
14582
- export type PaypalAuthorizationDetails = io.flow.v0.models.PaypalAuthorizationDetails;
14991
+ export type PaypalAuthorizationDetails =
14992
+ io.flow.v0.models.PaypalAuthorizationDetails;
14583
14993
  export type PaypalAuthorizationForm = io.flow.v0.models.PaypalAuthorizationForm;
14584
- export type PeakSurchargeByWeightServiceFee = io.flow.v0.models.PeakSurchargeByWeightServiceFee;
14585
- export type PeakSurchargeRatecardFee = io.flow.v0.models.PeakSurchargeRatecardFee;
14994
+ export type PeakSurchargeByWeightServiceFee =
14995
+ io.flow.v0.models.PeakSurchargeByWeightServiceFee;
14996
+ export type PeakSurchargeRatecardFee =
14997
+ io.flow.v0.models.PeakSurchargeRatecardFee;
14586
14998
  export type PeakSurchargeServiceFee = io.flow.v0.models.PeakSurchargeServiceFee;
14587
14999
  export type PercentMargin = io.flow.v0.models.PercentMargin;
14588
15000
  export type PermissionAudit = io.flow.v0.models.PermissionAudit;
14589
15001
  export type PermissionCheck = io.flow.v0.models.PermissionCheck;
14590
15002
  export type PermittedHttpMethod = io.flow.v0.enums.PermittedHttpMethod;
14591
15003
  export type PermittedRoute = io.flow.v0.models.PermittedRoute;
14592
- export type PfsInventoryCheckResponse = io.flow.v0.models.PfsInventoryCheckResponse;
14593
- export type PfsInventoryCheckResponseItem = io.flow.v0.models.PfsInventoryCheckResponseItem;
15004
+ export type PfsInventoryCheckResponse =
15005
+ io.flow.v0.models.PfsInventoryCheckResponse;
15006
+ export type PfsInventoryCheckResponseItem =
15007
+ io.flow.v0.models.PfsInventoryCheckResponseItem;
14594
15008
  export type PfsInventoryStatus = io.flow.v0.models.PfsInventoryStatus;
14595
15009
  export type PhysicalDelivery = io.flow.v0.models.PhysicalDelivery;
14596
- export type PhysicalDeliverySpecialSerivce = io.flow.v0.enums.PhysicalDeliverySpecialSerivce;
15010
+ export type PhysicalDeliverySpecialSerivce =
15011
+ io.flow.v0.enums.PhysicalDeliverySpecialSerivce;
14597
15012
  export type PostPaymentRedirectUrls = io.flow.v0.models.PostPaymentRedirectUrls;
14598
15013
  export type PostalType = io.flow.v0.enums.PostalType;
14599
15014
  export type Price = io.flow.v0.models.Price;
@@ -14603,7 +15018,8 @@ export type PriceBookDeleted = io.flow.v0.models.PriceBookDeleted;
14603
15018
  export type PriceBookForm = io.flow.v0.models.PriceBookForm;
14604
15019
  export type PriceBookItem = io.flow.v0.models.PriceBookItem;
14605
15020
  export type PriceBookItemDeleted = io.flow.v0.models.PriceBookItemDeleted;
14606
- export type PriceBookItemExportOptions = io.flow.v0.models.PriceBookItemExportOptions;
15021
+ export type PriceBookItemExportOptions =
15022
+ io.flow.v0.models.PriceBookItemExportOptions;
14607
15023
  export type PriceBookItemExportType = io.flow.v0.models.PriceBookItemExportType;
14608
15024
  export type PriceBookItemForm = io.flow.v0.models.PriceBookItemForm;
14609
15025
  export type PriceBookItemQueryForm = io.flow.v0.models.PriceBookItemQueryForm;
@@ -14624,7 +15040,8 @@ export type PriceForm = io.flow.v0.models.PriceForm;
14624
15040
  export type PriceSource = io.flow.v0.unions.PriceSource;
14625
15041
  export type PriceSourceCatalog = io.flow.v0.models.PriceSourceCatalog;
14626
15042
  export type PriceSourcePriceBook = io.flow.v0.models.PriceSourcePriceBook;
14627
- export type PriceSourcePriceBookReference = io.flow.v0.models.PriceSourcePriceBookReference;
15043
+ export type PriceSourcePriceBookReference =
15044
+ io.flow.v0.models.PriceSourcePriceBookReference;
14628
15045
  export type PriceSourceProvided = io.flow.v0.models.PriceSourceProvided;
14629
15046
  export type PriceWithBase = io.flow.v0.models.PriceWithBase;
14630
15047
  export type PriceWithBaseAndDetails = io.flow.v0.models.PriceWithBaseAndDetails;
@@ -14635,9 +15052,12 @@ export type PricingSettings = io.flow.v0.models.PricingSettings;
14635
15052
  export type PricingUpserted = io.flow.v0.models.PricingUpserted;
14636
15053
  export type PricingVersion = io.flow.v0.models.PricingVersion;
14637
15054
  export type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
14638
- export type ProductRestrictionResult = io.flow.v0.models.ProductRestrictionResult;
14639
- export type ProductRestrictionResultDeleted = io.flow.v0.models.ProductRestrictionResultDeleted;
14640
- export type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
15055
+ export type ProductRestrictionResult =
15056
+ io.flow.v0.models.ProductRestrictionResult;
15057
+ export type ProductRestrictionResultDeleted =
15058
+ io.flow.v0.models.ProductRestrictionResultDeleted;
15059
+ export type ProductRestrictionResultUpserted =
15060
+ io.flow.v0.models.ProductRestrictionResultUpserted;
14641
15061
  export type Promotion = io.flow.v0.unions.Promotion;
14642
15062
  export type PromotionTrigger = io.flow.v0.models.PromotionTrigger;
14643
15063
  export type PromotionTriggerForm = io.flow.v0.models.PromotionTriggerForm;
@@ -14654,9 +15074,11 @@ export type QueryBuilderQueryForm = io.flow.v0.models.QueryBuilderQueryForm;
14654
15074
  export type QueryFilter = io.flow.v0.unions.QueryFilter;
14655
15075
  export type QueryFilterForm = io.flow.v0.unions.QueryFilterForm;
14656
15076
  export type QueryFilterStructured = io.flow.v0.models.QueryFilterStructured;
14657
- export type QueryFilterStructuredForm = io.flow.v0.models.QueryFilterStructuredForm;
15077
+ export type QueryFilterStructuredForm =
15078
+ io.flow.v0.models.QueryFilterStructuredForm;
14658
15079
  export type QueryFilterUnstructured = io.flow.v0.models.QueryFilterUnstructured;
14659
- export type QueryFilterUnstructuredForm = io.flow.v0.models.QueryFilterUnstructuredForm;
15080
+ export type QueryFilterUnstructuredForm =
15081
+ io.flow.v0.models.QueryFilterUnstructuredForm;
14660
15082
  export type Quote = io.flow.v0.models.Quote;
14661
15083
  export type QuoteError = io.flow.v0.models.QuoteError;
14662
15084
  export type QuoteErrorCode = io.flow.v0.enums.QuoteErrorCode;
@@ -14676,7 +15098,8 @@ export type RatecardCarrierSummary = io.flow.v0.models.RatecardCarrierSummary;
14676
15098
  export type RatecardDeleted = io.flow.v0.models.RatecardDeleted;
14677
15099
  export type RatecardEstimate = io.flow.v0.unions.RatecardEstimate;
14678
15100
  export type RatecardEstimateForm = io.flow.v0.models.RatecardEstimateForm;
14679
- export type RatecardEstimateSummaryForm = io.flow.v0.models.RatecardEstimateSummaryForm;
15101
+ export type RatecardEstimateSummaryForm =
15102
+ io.flow.v0.models.RatecardEstimateSummaryForm;
14680
15103
  export type RatecardEstimateV1 = io.flow.v0.models.RatecardEstimateV1;
14681
15104
  export type RatecardEstimateV2 = io.flow.v0.models.RatecardEstimateV2;
14682
15105
  export type RatecardEstimateV3 = io.flow.v0.models.RatecardEstimateV3;
@@ -14689,7 +15112,8 @@ export type RatecardLaneForm = io.flow.v0.models.RatecardLaneForm;
14689
15112
  export type RatecardLaneImportForm = io.flow.v0.models.RatecardLaneImportForm;
14690
15113
  export type RatecardLaneUpserted = io.flow.v0.models.RatecardLaneUpserted;
14691
15114
  export type RatecardLaneVersion = io.flow.v0.models.RatecardLaneVersion;
14692
- export type RatecardLanesImportRequestData = io.flow.v0.models.RatecardLanesImportRequestData;
15115
+ export type RatecardLanesImportRequestData =
15116
+ io.flow.v0.models.RatecardLanesImportRequestData;
14693
15117
  export type RatecardOwner = io.flow.v0.enums.RatecardOwner;
14694
15118
  export type RatecardRate = io.flow.v0.models.RatecardRate;
14695
15119
  export type RatecardRateForm = io.flow.v0.models.RatecardRateForm;
@@ -14703,8 +15127,10 @@ export type RatecardVersion = io.flow.v0.models.RatecardVersion;
14703
15127
  export type ReadyToFulfill = io.flow.v0.models.ReadyToFulfill;
14704
15128
  export type ReadyToFulfillDetails = io.flow.v0.models.ReadyToFulfillDetails;
14705
15129
  export type ReadyToFulfillV2 = io.flow.v0.models.ReadyToFulfillV2;
14706
- export type RedirectAuthorizationDetails = io.flow.v0.models.RedirectAuthorizationDetails;
14707
- export type RedirectAuthorizationForm = io.flow.v0.models.RedirectAuthorizationForm;
15130
+ export type RedirectAuthorizationDetails =
15131
+ io.flow.v0.models.RedirectAuthorizationDetails;
15132
+ export type RedirectAuthorizationForm =
15133
+ io.flow.v0.models.RedirectAuthorizationForm;
14708
15134
  export type Refund = io.flow.v0.models.Refund;
14709
15135
  export type RefundCapture = io.flow.v0.models.RefundCapture;
14710
15136
  export type RefundCaptureSummary = io.flow.v0.models.RefundCaptureSummary;
@@ -14715,9 +15141,11 @@ export type RefundError = io.flow.v0.models.RefundError;
14715
15141
  export type RefundForm = io.flow.v0.models.RefundForm;
14716
15142
  export type RefundIdentifier = io.flow.v0.models.RefundIdentifier;
14717
15143
  export type RefundIdentifierDeleted = io.flow.v0.models.RefundIdentifierDeleted;
14718
- export type RefundIdentifierUpserted = io.flow.v0.models.RefundIdentifierUpserted;
15144
+ export type RefundIdentifierUpserted =
15145
+ io.flow.v0.models.RefundIdentifierUpserted;
14719
15146
  export type RefundOrderSummary = io.flow.v0.models.RefundOrderSummary;
14720
- export type RefundOrderSummaryAmounts = io.flow.v0.models.RefundOrderSummaryAmounts;
15147
+ export type RefundOrderSummaryAmounts =
15148
+ io.flow.v0.models.RefundOrderSummaryAmounts;
14721
15149
  export type RefundReference = io.flow.v0.models.RefundReference;
14722
15150
  export type RefundStatus = io.flow.v0.enums.RefundStatus;
14723
15151
  export type RefundUpsertedV2 = io.flow.v0.models.RefundUpsertedV2;
@@ -14739,8 +15167,10 @@ export type ReservationError = io.flow.v0.unions.ReservationError;
14739
15167
  export type ReservationForm = io.flow.v0.models.ReservationForm;
14740
15168
  export type ReservationItem = io.flow.v0.models.ReservationItem;
14741
15169
  export type ReservationItemForm = io.flow.v0.models.ReservationItemForm;
14742
- export type ReservationItemReference = io.flow.v0.models.ReservationItemReference;
14743
- export type ReservationOrderReference = io.flow.v0.models.ReservationOrderReference;
15170
+ export type ReservationItemReference =
15171
+ io.flow.v0.models.ReservationItemReference;
15172
+ export type ReservationOrderReference =
15173
+ io.flow.v0.models.ReservationOrderReference;
14744
15174
  export type Return = io.flow.v0.models.Return;
14745
15175
  export type ReturnDeleted = io.flow.v0.models.ReturnDeleted;
14746
15176
  export type ReturnDeletedV2 = io.flow.v0.models.ReturnDeletedV2;
@@ -14749,7 +15179,8 @@ export type ReturnItemReference = io.flow.v0.models.ReturnItemReference;
14749
15179
  export type ReturnItemStatus = io.flow.v0.enums.ReturnItemStatus;
14750
15180
  export type ReturnLineItem = io.flow.v0.models.ReturnLineItem;
14751
15181
  export type ReturnOrderReference = io.flow.v0.models.ReturnOrderReference;
14752
- export type ReturnPackageRatecardFee = io.flow.v0.models.ReturnPackageRatecardFee;
15182
+ export type ReturnPackageRatecardFee =
15183
+ io.flow.v0.models.ReturnPackageRatecardFee;
14753
15184
  export type ReturnPolicy = io.flow.v0.models.ReturnPolicy;
14754
15185
  export type ReturnPolicyForm = io.flow.v0.models.ReturnPolicyForm;
14755
15186
  export type ReturnPolicyItemResult = io.flow.v0.models.ReturnPolicyItemResult;
@@ -14760,7 +15191,8 @@ export type ReturnReason = io.flow.v0.models.ReturnReason;
14760
15191
  export type ReturnReasonForm = io.flow.v0.models.ReturnReasonForm;
14761
15192
  export type ReturnReasonPutForm = io.flow.v0.models.ReturnReasonPutForm;
14762
15193
  export type ReturnSource = io.flow.v0.unions.ReturnSource;
14763
- export type ReturnSourceExternalVendor = io.flow.v0.models.ReturnSourceExternalVendor;
15194
+ export type ReturnSourceExternalVendor =
15195
+ io.flow.v0.models.ReturnSourceExternalVendor;
14764
15196
  export type ReturnSourceFlow = io.flow.v0.models.ReturnSourceFlow;
14765
15197
  export type ReturnStatus = io.flow.v0.enums.ReturnStatus;
14766
15198
  export type ReturnTrackingStatus = io.flow.v0.enums.ReturnTrackingStatus;
@@ -14790,8 +15222,10 @@ export type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
14790
15222
  export type ScheduledExport = io.flow.v0.models.ScheduledExport;
14791
15223
  export type ScheduledExportForm = io.flow.v0.models.ScheduledExportForm;
14792
15224
  export type ScheduledPickup = io.flow.v0.models.ScheduledPickup;
14793
- export type SdkAdyenV3AuthenticationToken = io.flow.v0.unions.SdkAdyenV3AuthenticationToken;
14794
- export type SelectIssuerOptionActionDetails = io.flow.v0.models.SelectIssuerOptionActionDetails;
15225
+ export type SdkAdyenV3AuthenticationToken =
15226
+ io.flow.v0.unions.SdkAdyenV3AuthenticationToken;
15227
+ export type SelectIssuerOptionActionDetails =
15228
+ io.flow.v0.models.SelectIssuerOptionActionDetails;
14795
15229
  export type ServiceDescription = io.flow.v0.unions.ServiceDescription;
14796
15230
  export type ServiceFee = io.flow.v0.unions.ServiceFee;
14797
15231
  export type ServiceReference = io.flow.v0.models.ServiceReference;
@@ -14799,13 +15233,17 @@ export type ServiceSummary = io.flow.v0.models.ServiceSummary;
14799
15233
  export type ServiceUnknown = io.flow.v0.models.ServiceUnknown;
14800
15234
  export type Session = io.flow.v0.unions.Session;
14801
15235
  export type SessionAuthorization = io.flow.v0.unions.SessionAuthorization;
14802
- export type SessionAuthorizationForm = io.flow.v0.models.SessionAuthorizationForm;
14803
- export type SessionContextExperiment = io.flow.v0.models.SessionContextExperiment;
15236
+ export type SessionAuthorizationForm =
15237
+ io.flow.v0.models.SessionAuthorizationForm;
15238
+ export type SessionContextExperiment =
15239
+ io.flow.v0.models.SessionContextExperiment;
14804
15240
  export type SessionCurrencyFormat = io.flow.v0.models.SessionCurrencyFormat;
14805
15241
  export type SessionExperiment = io.flow.v0.models.SessionExperiment;
14806
15242
  export type SessionExperimentForm = io.flow.v0.models.SessionExperimentForm;
14807
- export type SessionExperimentVariant = io.flow.v0.models.SessionExperimentVariant;
14808
- export type SessionExperimentVariantForm = io.flow.v0.models.SessionExperimentVariantForm;
15243
+ export type SessionExperimentVariant =
15244
+ io.flow.v0.models.SessionExperimentVariant;
15245
+ export type SessionExperimentVariantForm =
15246
+ io.flow.v0.models.SessionExperimentVariantForm;
14809
15247
  export type SessionExpirationConfig = io.flow.v0.models.SessionExpirationConfig;
14810
15248
  export type SessionForm = io.flow.v0.models.SessionForm;
14811
15249
  export type SessionFormat = io.flow.v0.models.SessionFormat;
@@ -14826,93 +15264,144 @@ export type ShipmentWindow = io.flow.v0.models.ShipmentWindow;
14826
15264
  export type Shipping = io.flow.v0.models.Shipping;
14827
15265
  export type ShippingAddress = io.flow.v0.models.ShippingAddress;
14828
15266
  export type ShippingConfiguration = io.flow.v0.models.ShippingConfiguration;
14829
- export type ShippingConfigurationCopy = io.flow.v0.models.ShippingConfigurationCopy;
14830
- export type ShippingConfigurationCopyForm = io.flow.v0.models.ShippingConfigurationCopyForm;
14831
- export type ShippingConfigurationDeleted = io.flow.v0.models.ShippingConfigurationDeleted;
14832
- export type ShippingConfigurationForm = io.flow.v0.models.ShippingConfigurationForm;
14833
- export type ShippingConfigurationItemAvailability = io.flow.v0.models.ShippingConfigurationItemAvailability;
14834
- export type ShippingConfigurationItemAvailabilityDeleted = io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted;
14835
- export type ShippingConfigurationItemAvailabilityUpserted = io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted;
14836
- export type ShippingConfigurationItemShippingPricing = io.flow.v0.models.ShippingConfigurationItemShippingPricing;
14837
- export type ShippingConfigurationItemShippingPricingDeleted = io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted;
14838
- export type ShippingConfigurationItemShippingPricingUpserted = io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted;
14839
- export type ShippingConfigurationReference = io.flow.v0.models.ShippingConfigurationReference;
14840
- export type ShippingConfigurationSummary = io.flow.v0.models.ShippingConfigurationSummary;
14841
- export type ShippingConfigurationType = io.flow.v0.enums.ShippingConfigurationType;
14842
- export type ShippingConfigurationUpserted = io.flow.v0.models.ShippingConfigurationUpserted;
14843
- export type ShippingConfigurationVersion = io.flow.v0.models.ShippingConfigurationVersion;
15267
+ export type ShippingConfigurationCopy =
15268
+ io.flow.v0.models.ShippingConfigurationCopy;
15269
+ export type ShippingConfigurationCopyForm =
15270
+ io.flow.v0.models.ShippingConfigurationCopyForm;
15271
+ export type ShippingConfigurationDeleted =
15272
+ io.flow.v0.models.ShippingConfigurationDeleted;
15273
+ export type ShippingConfigurationForm =
15274
+ io.flow.v0.models.ShippingConfigurationForm;
15275
+ export type ShippingConfigurationItemAvailability =
15276
+ io.flow.v0.models.ShippingConfigurationItemAvailability;
15277
+ export type ShippingConfigurationItemAvailabilityDeleted =
15278
+ io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted;
15279
+ export type ShippingConfigurationItemAvailabilityUpserted =
15280
+ io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted;
15281
+ export type ShippingConfigurationItemShippingPricing =
15282
+ io.flow.v0.models.ShippingConfigurationItemShippingPricing;
15283
+ export type ShippingConfigurationItemShippingPricingDeleted =
15284
+ io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted;
15285
+ export type ShippingConfigurationItemShippingPricingUpserted =
15286
+ io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted;
15287
+ export type ShippingConfigurationReference =
15288
+ io.flow.v0.models.ShippingConfigurationReference;
15289
+ export type ShippingConfigurationSummary =
15290
+ io.flow.v0.models.ShippingConfigurationSummary;
15291
+ export type ShippingConfigurationType =
15292
+ io.flow.v0.enums.ShippingConfigurationType;
15293
+ export type ShippingConfigurationUpserted =
15294
+ io.flow.v0.models.ShippingConfigurationUpserted;
15295
+ export type ShippingConfigurationVersion =
15296
+ io.flow.v0.models.ShippingConfigurationVersion;
14844
15297
  export type ShippingLabel = io.flow.v0.models.ShippingLabel;
14845
15298
  export type ShippingLabelDocument = io.flow.v0.models.ShippingLabelDocument;
14846
15299
  export type ShippingLabelForm = io.flow.v0.unions.ShippingLabelForm;
14847
15300
  export type ShippingLabelHopSummary = io.flow.v0.models.ShippingLabelHopSummary;
14848
- export type ShippingLabelLaneSummary = io.flow.v0.models.ShippingLabelLaneSummary;
15301
+ export type ShippingLabelLaneSummary =
15302
+ io.flow.v0.models.ShippingLabelLaneSummary;
14849
15303
  export type ShippingLabelPackage = io.flow.v0.models.ShippingLabelPackage;
14850
- export type ShippingLabelRatecardSummary = io.flow.v0.models.ShippingLabelRatecardSummary;
15304
+ export type ShippingLabelRatecardSummary =
15305
+ io.flow.v0.models.ShippingLabelRatecardSummary;
14851
15306
  export type ShippingLabelSummary = io.flow.v0.models.ShippingLabelSummary;
14852
15307
  export type ShippingLabelVersion = io.flow.v0.models.ShippingLabelVersion;
14853
15308
  export type ShippingLane = io.flow.v0.models.ShippingLane;
14854
15309
  export type ShippingLaneDefaultTier = io.flow.v0.models.ShippingLaneDefaultTier;
14855
- export type ShippingLaneDefaultTierForm = io.flow.v0.models.ShippingLaneDefaultTierForm;
15310
+ export type ShippingLaneDefaultTierForm =
15311
+ io.flow.v0.models.ShippingLaneDefaultTierForm;
14856
15312
  export type ShippingLaneDeleted = io.flow.v0.models.ShippingLaneDeleted;
14857
15313
  export type ShippingLaneForm = io.flow.v0.models.ShippingLaneForm;
14858
15314
  export type ShippingLaneSummary = io.flow.v0.models.ShippingLaneSummary;
14859
15315
  export type ShippingLaneUpserted = io.flow.v0.models.ShippingLaneUpserted;
14860
15316
  export type ShippingLaneVersion = io.flow.v0.models.ShippingLaneVersion;
14861
15317
  export type ShippingNotification = io.flow.v0.models.ShippingNotification;
14862
- export type ShippingNotificationForm = io.flow.v0.unions.ShippingNotificationForm;
14863
- export type ShippingNotificationVersion = io.flow.v0.models.ShippingNotificationVersion;
15318
+ export type ShippingNotificationForm =
15319
+ io.flow.v0.unions.ShippingNotificationForm;
15320
+ export type ShippingNotificationVersion =
15321
+ io.flow.v0.models.ShippingNotificationVersion;
14864
15322
  export type Shop = io.flow.v0.models.Shop;
14865
15323
  export type ShopifyCart = io.flow.v0.models.ShopifyCart;
14866
15324
  export type ShopifyCartAddForm = io.flow.v0.unions.ShopifyCartAddForm;
14867
- export type ShopifyCartAddMultipleForm = io.flow.v0.models.ShopifyCartAddMultipleForm;
14868
- export type ShopifyCartAddSingleForm = io.flow.v0.models.ShopifyCartAddSingleForm;
15325
+ export type ShopifyCartAddMultipleForm =
15326
+ io.flow.v0.models.ShopifyCartAddMultipleForm;
15327
+ export type ShopifyCartAddSingleForm =
15328
+ io.flow.v0.models.ShopifyCartAddSingleForm;
14869
15329
  export type ShopifyCartChangeForm = io.flow.v0.models.ShopifyCartChangeForm;
14870
15330
  export type ShopifyCartConversion = io.flow.v0.models.ShopifyCartConversion;
14871
- export type ShopifyCartConversionFlowOrder = io.flow.v0.models.ShopifyCartConversionFlowOrder;
14872
- export type ShopifyCartConversionShopifyCart = io.flow.v0.models.ShopifyCartConversionShopifyCart;
15331
+ export type ShopifyCartConversionFlowOrder =
15332
+ io.flow.v0.models.ShopifyCartConversionFlowOrder;
15333
+ export type ShopifyCartConversionShopifyCart =
15334
+ io.flow.v0.models.ShopifyCartConversionShopifyCart;
14873
15335
  export type ShopifyCartItem = io.flow.v0.models.ShopifyCartItem;
14874
- export type ShopifyCustomerMetafieldValue = io.flow.v0.models.ShopifyCustomerMetafieldValue;
15336
+ export type ShopifyCustomerMetafieldValue =
15337
+ io.flow.v0.models.ShopifyCustomerMetafieldValue;
14875
15338
  export type ShopifyEventBucket = io.flow.v0.unions.ShopifyEventBucket;
14876
15339
  export type ShopifyGrant = io.flow.v0.enums.ShopifyGrant;
14877
15340
  export type ShopifyItemEventBucket = io.flow.v0.models.ShopifyItemEventBucket;
14878
15341
  export type ShopifyItemEventData = io.flow.v0.models.ShopifyItemEventData;
14879
15342
  export type ShopifyLine = io.flow.v0.models.ShopifyLine;
14880
- export type ShopifyLocalCartItemMetadata = io.flow.v0.models.ShopifyLocalCartItemMetadata;
14881
- export type ShopifyLocalCartMetadata = io.flow.v0.models.ShopifyLocalCartMetadata;
14882
- export type ShopifyLocalPriceMetadata = io.flow.v0.models.ShopifyLocalPriceMetadata;
14883
- export type ShopifyLocalizationMethod = io.flow.v0.enums.ShopifyLocalizationMethod;
14884
- export type ShopifyLocalizationSetting = io.flow.v0.models.ShopifyLocalizationSetting;
14885
- export type ShopifyLocalizationSettingDeleted = io.flow.v0.models.ShopifyLocalizationSettingDeleted;
14886
- export type ShopifyLocalizationSettingForm = io.flow.v0.models.ShopifyLocalizationSettingForm;
14887
- export type ShopifyLocalizationSettingUpserted = io.flow.v0.models.ShopifyLocalizationSettingUpserted;
15343
+ export type ShopifyLocalCartItemMetadata =
15344
+ io.flow.v0.models.ShopifyLocalCartItemMetadata;
15345
+ export type ShopifyLocalCartMetadata =
15346
+ io.flow.v0.models.ShopifyLocalCartMetadata;
15347
+ export type ShopifyLocalPriceMetadata =
15348
+ io.flow.v0.models.ShopifyLocalPriceMetadata;
15349
+ export type ShopifyLocalizationMethod =
15350
+ io.flow.v0.enums.ShopifyLocalizationMethod;
15351
+ export type ShopifyLocalizationSetting =
15352
+ io.flow.v0.models.ShopifyLocalizationSetting;
15353
+ export type ShopifyLocalizationSettingDeleted =
15354
+ io.flow.v0.models.ShopifyLocalizationSettingDeleted;
15355
+ export type ShopifyLocalizationSettingForm =
15356
+ io.flow.v0.models.ShopifyLocalizationSettingForm;
15357
+ export type ShopifyLocalizationSettingUpserted =
15358
+ io.flow.v0.models.ShopifyLocalizationSettingUpserted;
14888
15359
  export type ShopifyLocalizedOrder = io.flow.v0.models.ShopifyLocalizedOrder;
14889
15360
  export type ShopifyLocalizedVariant = io.flow.v0.models.ShopifyLocalizedVariant;
14890
- export type ShopifyLocalizedVariantPrices = io.flow.v0.models.ShopifyLocalizedVariantPrices;
14891
- export type ShopifyLocationFlowCenterMapping = io.flow.v0.models.ShopifyLocationFlowCenterMapping;
14892
- export type ShopifyLocationFlowCenterMappingForm = io.flow.v0.models.ShopifyLocationFlowCenterMappingForm;
14893
- export type ShopifyLocationReference = io.flow.v0.models.ShopifyLocationReference;
14894
- export type ShopifyMerchantApplication = io.flow.v0.models.ShopifyMerchantApplication;
14895
- export type ShopifyMerchantApplicationForm = io.flow.v0.models.ShopifyMerchantApplicationForm;
14896
- export type ShopifyMerchantApplicationPutForm = io.flow.v0.models.ShopifyMerchantApplicationPutForm;
14897
- export type ShopifyMerchantApplicationsSummary = io.flow.v0.models.ShopifyMerchantApplicationsSummary;
14898
- export type ShopifyOrderAttributesForm = io.flow.v0.models.ShopifyOrderAttributesForm;
14899
- export type ShopifyOrderDeliveryMetafield = io.flow.v0.models.ShopifyOrderDeliveryMetafield;
14900
- export type ShopifyOrderDeliveryMetafieldItem = io.flow.v0.models.ShopifyOrderDeliveryMetafieldItem;
14901
- export type ShopifyOrderPriceAttributesMetafield = io.flow.v0.models.ShopifyOrderPriceAttributesMetafield;
14902
- export type ShopifyOrderRomanizationMetafield = io.flow.v0.models.ShopifyOrderRomanizationMetafield;
15361
+ export type ShopifyLocalizedVariantPrices =
15362
+ io.flow.v0.models.ShopifyLocalizedVariantPrices;
15363
+ export type ShopifyLocationFlowCenterMapping =
15364
+ io.flow.v0.models.ShopifyLocationFlowCenterMapping;
15365
+ export type ShopifyLocationFlowCenterMappingForm =
15366
+ io.flow.v0.models.ShopifyLocationFlowCenterMappingForm;
15367
+ export type ShopifyLocationReference =
15368
+ io.flow.v0.models.ShopifyLocationReference;
15369
+ export type ShopifyMerchantApplication =
15370
+ io.flow.v0.models.ShopifyMerchantApplication;
15371
+ export type ShopifyMerchantApplicationForm =
15372
+ io.flow.v0.models.ShopifyMerchantApplicationForm;
15373
+ export type ShopifyMerchantApplicationPutForm =
15374
+ io.flow.v0.models.ShopifyMerchantApplicationPutForm;
15375
+ export type ShopifyMerchantApplicationsSummary =
15376
+ io.flow.v0.models.ShopifyMerchantApplicationsSummary;
15377
+ export type ShopifyOrderAttributesForm =
15378
+ io.flow.v0.models.ShopifyOrderAttributesForm;
15379
+ export type ShopifyOrderDeliveryMetafield =
15380
+ io.flow.v0.models.ShopifyOrderDeliveryMetafield;
15381
+ export type ShopifyOrderDeliveryMetafieldItem =
15382
+ io.flow.v0.models.ShopifyOrderDeliveryMetafieldItem;
15383
+ export type ShopifyOrderPriceAttributesMetafield =
15384
+ io.flow.v0.models.ShopifyOrderPriceAttributesMetafield;
15385
+ export type ShopifyOrderRomanizationMetafield =
15386
+ io.flow.v0.models.ShopifyOrderRomanizationMetafield;
14903
15387
  export type ShopifyPrice = io.flow.v0.models.ShopifyPrice;
14904
15388
  export type ShopifyPrivateApp = io.flow.v0.models.ShopifyPrivateApp;
14905
15389
  export type ShopifyPrivateAppForm = io.flow.v0.models.ShopifyPrivateAppForm;
14906
15390
  export type ShopifySyncCheck = io.flow.v0.enums.ShopifySyncCheck;
14907
15391
  export type ShopifySyncStatus = io.flow.v0.models.ShopifySyncStatus;
14908
- export type ShopifyVariantFlowMetafield = io.flow.v0.models.ShopifyVariantFlowMetafield;
14909
- export type ShopifyVariantInventoryMetafield = io.flow.v0.models.ShopifyVariantInventoryMetafield;
15392
+ export type ShopifyVariantFlowMetafield =
15393
+ io.flow.v0.models.ShopifyVariantFlowMetafield;
15394
+ export type ShopifyVariantInventoryMetafield =
15395
+ io.flow.v0.models.ShopifyVariantInventoryMetafield;
14910
15396
  export type SimplePermissionCheck = io.flow.v0.models.SimplePermissionCheck;
14911
- export type SinglePackageShippingNotificationForm = io.flow.v0.models.SinglePackageShippingNotificationForm;
15397
+ export type SinglePackageShippingNotificationForm =
15398
+ io.flow.v0.models.SinglePackageShippingNotificationForm;
14912
15399
  export type SnapshotDeleted = io.flow.v0.models.SnapshotDeleted;
14913
15400
  export type SnapshotUpserted = io.flow.v0.models.SnapshotUpserted;
14914
- export type SolidusProductExportType = io.flow.v0.models.SolidusProductExportType;
14915
- export type SolidusVariantExportType = io.flow.v0.models.SolidusVariantExportType;
15401
+ export type SolidusProductExportType =
15402
+ io.flow.v0.models.SolidusProductExportType;
15403
+ export type SolidusVariantExportType =
15404
+ io.flow.v0.models.SolidusVariantExportType;
14916
15405
  export type SortDirection = io.flow.v0.enums.SortDirection;
14917
15406
  export type Statement = io.flow.v0.models.Statement;
14918
15407
  export type StatementAttachmentType = io.flow.v0.enums.StatementAttachmentType;
@@ -14920,9 +15409,12 @@ export type StatementDeleted = io.flow.v0.models.StatementDeleted;
14920
15409
  export type StatementUpserted = io.flow.v0.models.StatementUpserted;
14921
15410
  export type Strategy = io.flow.v0.enums.Strategy;
14922
15411
  export type StreetAddress = io.flow.v0.models.StreetAddress;
14923
- export type StripeAuthenticationData = io.flow.v0.models.StripeAuthenticationData;
14924
- export type StripeAuthenticationDataForm = io.flow.v0.models.StripeAuthenticationDataForm;
14925
- export type StripeAuthorizationResultActionDetails = io.flow.v0.models.StripeAuthorizationResultActionDetails;
15412
+ export type StripeAuthenticationData =
15413
+ io.flow.v0.models.StripeAuthenticationData;
15414
+ export type StripeAuthenticationDataForm =
15415
+ io.flow.v0.models.StripeAuthenticationDataForm;
15416
+ export type StripeAuthorizationResultActionDetails =
15417
+ io.flow.v0.models.StripeAuthorizationResultActionDetails;
14926
15418
  export type Subcatalog = io.flow.v0.models.Subcatalog;
14927
15419
  export type SubcatalogDeleted = io.flow.v0.models.SubcatalogDeleted;
14928
15420
  export type SubcatalogForm = io.flow.v0.models.SubcatalogForm;
@@ -14938,10 +15430,14 @@ export type SubcatalogStatistics = io.flow.v0.models.SubcatalogStatistics;
14938
15430
  export type SubcatalogUpserted = io.flow.v0.models.SubcatalogUpserted;
14939
15431
  export type SubcatalogVersion = io.flow.v0.models.SubcatalogVersion;
14940
15432
  export type Suggestion = io.flow.v0.models.Suggestion;
14941
- export type SummaryShippingLabelForm = io.flow.v0.models.SummaryShippingLabelForm;
14942
- export type SummaryShippingNotificationForm = io.flow.v0.models.SummaryShippingNotificationForm;
14943
- export type SurchargeResponsibleParty = io.flow.v0.enums.SurchargeResponsibleParty;
14944
- export type SurchargeResponsiblePartyDisplay = io.flow.v0.models.SurchargeResponsiblePartyDisplay;
15433
+ export type SummaryShippingLabelForm =
15434
+ io.flow.v0.models.SummaryShippingLabelForm;
15435
+ export type SummaryShippingNotificationForm =
15436
+ io.flow.v0.models.SummaryShippingNotificationForm;
15437
+ export type SurchargeResponsibleParty =
15438
+ io.flow.v0.enums.SurchargeResponsibleParty;
15439
+ export type SurchargeResponsiblePartyDisplay =
15440
+ io.flow.v0.models.SurchargeResponsiblePartyDisplay;
14945
15441
  export type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
14946
15442
  export type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
14947
15443
  export type SyncDuration = io.flow.v0.models.SyncDuration;
@@ -14960,17 +15456,23 @@ export type SyncStreamType = io.flow.v0.enums.SyncStreamType;
14960
15456
  export type SyncUnitOfTime = io.flow.v0.enums.SyncUnitOfTime;
14961
15457
  export type Tax = io.flow.v0.models.Tax;
14962
15458
  export type TaxApplicability = io.flow.v0.enums.TaxApplicability;
14963
- export type TaxDutyCalculatorValidationError = io.flow.v0.models.TaxDutyCalculatorValidationError;
14964
- export type TaxDutyCalculatorValidationErrorCode = io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
15459
+ export type TaxDutyCalculatorValidationError =
15460
+ io.flow.v0.models.TaxDutyCalculatorValidationError;
15461
+ export type TaxDutyCalculatorValidationErrorCode =
15462
+ io.flow.v0.enums.TaxDutyCalculatorValidationErrorCode;
14965
15463
  export type TaxDutyQuote = io.flow.v0.models.TaxDutyQuote;
14966
15464
  export type TaxDutyQuoteFeeValue = io.flow.v0.models.TaxDutyQuoteFeeValue;
14967
15465
  export type TaxDutyQuoteForm = io.flow.v0.models.TaxDutyQuoteForm;
14968
15466
  export type TaxDutyQuoteLevyValue = io.flow.v0.unions.TaxDutyQuoteLevyValue;
14969
15467
  export type TaxDutyQuoteLineItem = io.flow.v0.models.TaxDutyQuoteLineItem;
14970
- export type TaxDutyQuoteLineItemForm = io.flow.v0.models.TaxDutyQuoteLineItemForm;
14971
- export type TaxDutyQuoteSimpleLevyValue = io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
14972
- export type TaxDutyQuoteSimpleShipping = io.flow.v0.models.TaxDutyQuoteSimpleShipping;
14973
- export type TaxDutyQuoteSimpleShippingForm = io.flow.v0.models.TaxDutyQuoteSimpleShippingForm;
15468
+ export type TaxDutyQuoteLineItemForm =
15469
+ io.flow.v0.models.TaxDutyQuoteLineItemForm;
15470
+ export type TaxDutyQuoteSimpleLevyValue =
15471
+ io.flow.v0.models.TaxDutyQuoteSimpleLevyValue;
15472
+ export type TaxDutyQuoteSimpleShipping =
15473
+ io.flow.v0.models.TaxDutyQuoteSimpleShipping;
15474
+ export type TaxDutyQuoteSimpleShippingForm =
15475
+ io.flow.v0.models.TaxDutyQuoteSimpleShippingForm;
14974
15476
  export type TaxDutyQuoteValues = io.flow.v0.models.TaxDutyQuoteValues;
14975
15477
  export type TaxRegistration = io.flow.v0.models.TaxRegistration;
14976
15478
  export type TaxRegistrationForm = io.flow.v0.models.TaxRegistrationForm;
@@ -14982,15 +15484,20 @@ export type TaxabilityType = io.flow.v0.enums.TaxabilityType;
14982
15484
  export type TaxabilityValue = io.flow.v0.enums.TaxabilityValue;
14983
15485
  export type Test = io.flow.v0.models.Test;
14984
15486
  export type TestUpserted = io.flow.v0.models.TestUpserted;
14985
- export type ThirdPartyLogisticsPartner = io.flow.v0.models.ThirdPartyLogisticsPartner;
15487
+ export type ThirdPartyLogisticsPartner =
15488
+ io.flow.v0.models.ThirdPartyLogisticsPartner;
14986
15489
  export type ThreeDSecure = io.flow.v0.models.ThreeDSecure;
14987
15490
  export type ThreeDSecureCode = io.flow.v0.enums.ThreeDSecureCode;
14988
15491
  export type ThreedsChallengeAction = io.flow.v0.unions.ThreedsChallengeAction;
14989
- export type ThreedsChallengeActionDetails = io.flow.v0.models.ThreedsChallengeActionDetails;
15492
+ export type ThreedsChallengeActionDetails =
15493
+ io.flow.v0.models.ThreedsChallengeActionDetails;
14990
15494
  export type ThreedsIdentifyAction = io.flow.v0.unions.ThreedsIdentifyAction;
14991
- export type ThreedsIdentifyActionDetails = io.flow.v0.models.ThreedsIdentifyActionDetails;
14992
- export type ThreedsTwoChallengeRequest = io.flow.v0.models.ThreedsTwoChallengeRequest;
14993
- export type ThreedsTwoChallengeViewport = io.flow.v0.enums.ThreedsTwoChallengeViewport;
15495
+ export type ThreedsIdentifyActionDetails =
15496
+ io.flow.v0.models.ThreedsIdentifyActionDetails;
15497
+ export type ThreedsTwoChallengeRequest =
15498
+ io.flow.v0.models.ThreedsTwoChallengeRequest;
15499
+ export type ThreedsTwoChallengeViewport =
15500
+ io.flow.v0.enums.ThreedsTwoChallengeViewport;
14994
15501
  export type ThreedsTwoMethod = io.flow.v0.models.ThreedsTwoMethod;
14995
15502
  export type Tier = io.flow.v0.models.Tier;
14996
15503
  export type TierAvailability = io.flow.v0.enums.TierAvailability;
@@ -15015,7 +15522,8 @@ export type Timezone = io.flow.v0.models.Timezone;
15015
15522
  export type Token = io.flow.v0.unions.Token;
15016
15523
  export type TokenAuthenticationForm = io.flow.v0.models.TokenAuthenticationForm;
15017
15524
  export type TokenPartnerReference = io.flow.v0.models.TokenPartnerReference;
15018
- export type TokenRbacAuthenticationForm = io.flow.v0.models.TokenRbacAuthenticationForm;
15525
+ export type TokenRbacAuthenticationForm =
15526
+ io.flow.v0.models.TokenRbacAuthenticationForm;
15019
15527
  export type TokenReference = io.flow.v0.unions.TokenReference;
15020
15528
  export type TokenType = io.flow.v0.enums.TokenType;
15021
15529
  export type TokenValidation = io.flow.v0.models.TokenValidation;
@@ -15027,7 +15535,8 @@ export type TrackingEventSummary = io.flow.v0.models.TrackingEventSummary;
15027
15535
  export type TrackingEventVersion = io.flow.v0.models.TrackingEventVersion;
15028
15536
  export type TrackingForm = io.flow.v0.models.TrackingForm;
15029
15537
  export type TrackingLabel = io.flow.v0.models.TrackingLabel;
15030
- export type TrackingLabelEventUpserted = io.flow.v0.models.TrackingLabelEventUpserted;
15538
+ export type TrackingLabelEventUpserted =
15539
+ io.flow.v0.models.TrackingLabelEventUpserted;
15031
15540
  export type TrackingLabelForm = io.flow.v0.models.TrackingLabelForm;
15032
15541
  export type TrackingLabelSummary = io.flow.v0.models.TrackingLabelSummary;
15033
15542
  export type TrackingLabelVersion = io.flow.v0.models.TrackingLabelVersion;
@@ -15043,13 +15552,16 @@ export type TradeAgreementStatus = io.flow.v0.enums.TradeAgreementStatus;
15043
15552
  export type Transaction = io.flow.v0.models.Transaction;
15044
15553
  export type TransactionDetails = io.flow.v0.unions.TransactionDetails;
15045
15554
  export type TransactionDetailsCard = io.flow.v0.models.TransactionDetailsCard;
15046
- export type TransactionNetworkDetailsCard = io.flow.v0.models.TransactionNetworkDetailsCard;
15555
+ export type TransactionNetworkDetailsCard =
15556
+ io.flow.v0.models.TransactionNetworkDetailsCard;
15047
15557
  export type TransactionSource = io.flow.v0.enums.TransactionSource;
15048
15558
  export type TransactionUpserted = io.flow.v0.models.TransactionUpserted;
15049
15559
  export type TransitEstimate = io.flow.v0.models.TransitEstimate;
15050
15560
  export type TransitWindow = io.flow.v0.models.TransitWindow;
15051
- export type UltimateBeneficiaryOwner = io.flow.v0.models.UltimateBeneficiaryOwner;
15052
- export type UnharmonizedItemExportType = io.flow.v0.models.UnharmonizedItemExportType;
15561
+ export type UltimateBeneficiaryOwner =
15562
+ io.flow.v0.models.UltimateBeneficiaryOwner;
15563
+ export type UnharmonizedItemExportType =
15564
+ io.flow.v0.models.UnharmonizedItemExportType;
15053
15565
  export type UnitOfMeasurement = io.flow.v0.enums.UnitOfMeasurement;
15054
15566
  export type UnitOfTime = io.flow.v0.enums.UnitOfTime;
15055
15567
  export type UpdatePolicy = io.flow.v0.enums.UpdatePolicy;
@@ -15062,18 +15574,25 @@ export type UserReference = io.flow.v0.models.UserReference;
15062
15574
  export type UserStatus = io.flow.v0.enums.UserStatus;
15063
15575
  export type UserVersion = io.flow.v0.models.UserVersion;
15064
15576
  export type ValueAddedService = io.flow.v0.enums.ValueAddedService;
15065
- export type ValueThresholdExceededDetails = io.flow.v0.models.ValueThresholdExceededDetails;
15577
+ export type ValueThresholdExceededDetails =
15578
+ io.flow.v0.models.ValueThresholdExceededDetails;
15066
15579
  export type VirtualCard = io.flow.v0.models.VirtualCard;
15067
15580
  export type VirtualCardCapture = io.flow.v0.models.VirtualCardCapture;
15068
- export type VirtualCardCaptureDeleted = io.flow.v0.models.VirtualCardCaptureDeleted;
15069
- export type VirtualCardCaptureUpserted = io.flow.v0.models.VirtualCardCaptureUpserted;
15070
- export type VirtualCardCaptureVersion = io.flow.v0.models.VirtualCardCaptureVersion;
15581
+ export type VirtualCardCaptureDeleted =
15582
+ io.flow.v0.models.VirtualCardCaptureDeleted;
15583
+ export type VirtualCardCaptureUpserted =
15584
+ io.flow.v0.models.VirtualCardCaptureUpserted;
15585
+ export type VirtualCardCaptureVersion =
15586
+ io.flow.v0.models.VirtualCardCaptureVersion;
15071
15587
  export type VirtualCardForm = io.flow.v0.models.VirtualCardForm;
15072
15588
  export type VirtualCardReference = io.flow.v0.models.VirtualCardReference;
15073
15589
  export type VirtualCardRefund = io.flow.v0.models.VirtualCardRefund;
15074
- export type VirtualCardRefundDeleted = io.flow.v0.models.VirtualCardRefundDeleted;
15075
- export type VirtualCardRefundUpserted = io.flow.v0.models.VirtualCardRefundUpserted;
15076
- export type VirtualCardRefundVersion = io.flow.v0.models.VirtualCardRefundVersion;
15590
+ export type VirtualCardRefundDeleted =
15591
+ io.flow.v0.models.VirtualCardRefundDeleted;
15592
+ export type VirtualCardRefundUpserted =
15593
+ io.flow.v0.models.VirtualCardRefundUpserted;
15594
+ export type VirtualCardRefundVersion =
15595
+ io.flow.v0.models.VirtualCardRefundVersion;
15077
15596
  export type VirtualCardVersion = io.flow.v0.models.VirtualCardVersion;
15078
15597
  export type Visibility = io.flow.v0.enums.Visibility;
15079
15598
  export type Webhook = io.flow.v0.models.Webhook;
@@ -15086,7 +15605,8 @@ export type WebhookResponse = io.flow.v0.models.WebhookResponse;
15086
15605
  export type WebhookSettings = io.flow.v0.models.WebhookSettings;
15087
15606
  export type WebhookStatus = io.flow.v0.enums.WebhookStatus;
15088
15607
  export type WithholdingDeduction = io.flow.v0.models.WithholdingDeduction;
15089
- export type WithholdingDeductionType = io.flow.v0.enums.WithholdingDeductionType;
15608
+ export type WithholdingDeductionType =
15609
+ io.flow.v0.enums.WithholdingDeductionType;
15090
15610
  export type ZeroAmountIndicator = io.flow.v0.enums.ZeroAmountIndicator;
15091
15611
  export type ZeroLevyReasonCode = io.flow.v0.enums.ZeroLevyReasonCode;
15092
15612
  export type Zone = io.flow.v0.models.Zone;