@flowio/api-prop-types 10.16.50 → 10.16.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -1021,6 +1021,7 @@ declare namespace io.flow.shopify.external.v0.models {
1021
1021
  readonly 'vendor'?: string;
1022
1022
  readonly 'body_html'?: string;
1023
1023
  readonly 'product_type'?: string;
1024
+ readonly 'status'?: string;
1024
1025
  readonly 'options': io.flow.shopify.external.v0.models.Option[];
1025
1026
  readonly 'tags'?: string;
1026
1027
  readonly 'template_suffix'?: string;
@@ -1976,7 +1977,7 @@ declare namespace io.flow.v0.enums {
1976
1977
  type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
1977
1978
  type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
1978
1979
  type PayoutAttachmentType = 'transactions';
1979
- type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
1980
+ type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
1980
1981
  type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
1981
1982
  type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
1982
1983
  type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
@@ -2819,10 +2820,41 @@ declare namespace io.flow.v0.models {
2819
2820
  readonly 'b2b_invoice': io.flow.v0.models.B2BInvoice;
2820
2821
  }
2821
2822
 
2822
- interface BankAccountForm {
2823
+ interface BankAccountFormInfo {
2824
+ readonly 'discriminator': 'info';
2823
2825
  readonly 'info': io.flow.v0.unions.BankAccountInfo;
2824
2826
  }
2825
2827
 
2828
+ interface BankAccountFormSimple {
2829
+ readonly 'discriminator': 'simple';
2830
+ readonly 'routing_number': string;
2831
+ readonly 'account_number': string;
2832
+ }
2833
+
2834
+ interface BankAccountInfoCan {
2835
+ readonly 'discriminator': 'can';
2836
+ readonly 'routing_number': string;
2837
+ readonly 'account_number': string;
2838
+ }
2839
+
2840
+ interface BankAccountInfoFra {
2841
+ readonly 'discriminator': 'fra';
2842
+ readonly 'swift_code': string;
2843
+ readonly 'iban': string;
2844
+ }
2845
+
2846
+ interface BankAccountInfoGbr {
2847
+ readonly 'discriminator': 'gbr';
2848
+ readonly 'swift_code': string;
2849
+ readonly 'iban': string;
2850
+ }
2851
+
2852
+ interface BankAccountInfoIta {
2853
+ readonly 'discriminator': 'ita';
2854
+ readonly 'swift_code': string;
2855
+ readonly 'iban': string;
2856
+ }
2857
+
2826
2858
  interface BankAccountInfoUsa {
2827
2859
  readonly 'discriminator': 'usa';
2828
2860
  readonly 'routing_number': string;
@@ -3782,6 +3814,14 @@ declare namespace io.flow.v0.models {
3782
3814
  readonly 'amount': io.flow.v0.models.Money;
3783
3815
  }
3784
3816
 
3817
+ interface Company {
3818
+ readonly 'discriminator': 'company';
3819
+ readonly 'legal_name': string;
3820
+ readonly 'incorporation_country': string;
3821
+ readonly 'incorporation_jurisdiction': string;
3822
+ readonly 'tax_registration_number': string;
3823
+ }
3824
+
3785
3825
  interface ConsumerInvoice {
3786
3826
  readonly 'id': string;
3787
3827
  readonly 'number': string;
@@ -5809,6 +5849,13 @@ declare namespace io.flow.v0.models {
5809
5849
  readonly 'id'?: string;
5810
5850
  }
5811
5851
 
5852
+ interface Individual {
5853
+ readonly 'discriminator': 'individual';
5854
+ readonly 'legal_name': string;
5855
+ readonly 'tax_registration_number'?: string;
5856
+ readonly 'date_of_birth': string;
5857
+ }
5858
+
5812
5859
  interface InlineAuthorizationDetails {
5813
5860
  readonly 'discriminator': 'inline_authorization_details';
5814
5861
  readonly 'id': string;
@@ -6261,6 +6308,27 @@ declare namespace io.flow.v0.models {
6261
6308
  readonly 'total': io.flow.v0.models.PriceWithBase;
6262
6309
  }
6263
6310
 
6311
+ interface KnowYourBusinessUsa {
6312
+ readonly 'discriminator': 'know_your_business_usa';
6313
+ readonly 'id': string;
6314
+ readonly 'primary_entity': io.flow.v0.unions.Entity;
6315
+ readonly 'parent_company'?: io.flow.v0.models.Company;
6316
+ readonly 'ultimate_parent_company'?: io.flow.v0.models.Company;
6317
+ readonly 'ultimate_beneficiary_owner': io.flow.v0.models.Individual;
6318
+ readonly 'business_url': string;
6319
+ readonly 'business_address': io.flow.v0.models.Address;
6320
+ }
6321
+
6322
+ interface KnowYourBusinessUsaForm {
6323
+ readonly 'discriminator': 'know_your_business_usa_form';
6324
+ readonly 'primary_entity': io.flow.v0.unions.Entity;
6325
+ readonly 'parent_company'?: io.flow.v0.models.Company;
6326
+ readonly 'ultimate_parent_company'?: io.flow.v0.models.Company;
6327
+ readonly 'ultimate_beneficiary_owner': io.flow.v0.models.Individual;
6328
+ readonly 'business_url': string;
6329
+ readonly 'business_address': io.flow.v0.models.Address;
6330
+ }
6331
+
6264
6332
  interface KubeHealthcheck {
6265
6333
  readonly 'status': string;
6266
6334
  }
@@ -6915,6 +6983,7 @@ declare namespace io.flow.v0.models {
6915
6983
  }
6916
6984
 
6917
6985
  interface OnboardingStateTransition {
6986
+ readonly 'id': string;
6918
6987
  readonly 'state': io.flow.v0.unions.OnboardingState;
6919
6988
  readonly 'started_at': string;
6920
6989
  }
@@ -7017,6 +7086,7 @@ declare namespace io.flow.v0.models {
7017
7086
  readonly 'rules'?: io.flow.v0.models.OrderRulesSummary;
7018
7087
  readonly 'tax_registration'?: io.flow.v0.models.TaxRegistration;
7019
7088
  readonly 'geo'?: io.flow.v0.models.OrderGeo;
7089
+ readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
7020
7090
  }
7021
7091
 
7022
7092
  interface OrderAddress {
@@ -7159,6 +7229,7 @@ declare namespace io.flow.v0.models {
7159
7229
  readonly 'attributes'?: Record<string, string>;
7160
7230
  readonly 'authorization_keys'?: string[];
7161
7231
  readonly 'options'?: io.flow.v0.models.OrderOptions;
7232
+ readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
7162
7233
  }
7163
7234
 
7164
7235
  interface OrderFraudStatus {
@@ -7377,6 +7448,7 @@ declare namespace io.flow.v0.models {
7377
7448
  readonly 'attributes'?: Record<string, string>;
7378
7449
  readonly 'authorization_keys'?: string[];
7379
7450
  readonly 'options'?: io.flow.v0.models.OrderOptions;
7451
+ readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
7380
7452
  }
7381
7453
 
7382
7454
  interface OrderQuote {
@@ -7842,6 +7914,10 @@ declare namespace io.flow.v0.models {
7842
7914
  readonly 'organization': io.flow.v0.models.OrganizationReference;
7843
7915
  readonly 'transitions': io.flow.v0.models.OnboardingStateTransition[];
7844
7916
  readonly 'current_state': io.flow.v0.unions.OnboardingState;
7917
+ readonly 'started_at'?: string;
7918
+ readonly 'time_blocked'?: number;
7919
+ readonly 'blocked_since'?: string;
7920
+ readonly 'completed_at'?: string;
7845
7921
  }
7846
7922
 
7847
7923
  interface OrganizationOnboardingStateDeleted {
@@ -10463,6 +10539,7 @@ declare namespace io.flow.v0.models {
10463
10539
  readonly 'order_identifier'?: string;
10464
10540
  readonly 'fulfillment_key'?: string;
10465
10541
  readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
10542
+ readonly 'created_at'?: string;
10466
10543
  readonly 'updated_at'?: string;
10467
10544
  }
10468
10545
 
@@ -11853,7 +11930,8 @@ declare namespace io.flow.v0.unions {
11853
11930
  type AuthorizationResultAction = (io.flow.v0.models.AuthorizationResultActionGet | io.flow.v0.models.AuthorizationResultActionPost | io.flow.v0.models.AuthorizationResultActionWait | io.flow.v0.models.AuthorizationResultActionNative);
11854
11931
  type AuthorizationResultActionDetails = (io.flow.v0.models.AdyenNativeActionDetails | io.flow.v0.models.StripeAuthorizationResultActionDetails | io.flow.v0.models.ThreedsIdentifyActionDetails | io.flow.v0.models.ThreedsChallengeActionDetails | io.flow.v0.models.ApplepaySdkCreateResultActionDetails | io.flow.v0.models.ApplepaySdkValidateResultActionDetails | io.flow.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.v0.models.SelectIssuerOptionActionDetails);
11855
11932
  type AvailableFilter = (io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured);
11856
- type BankAccountInfo = (io.flow.v0.models.BankAccountInfoUsa);
11933
+ type BankAccountForm = (io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple);
11934
+ type BankAccountInfo = (io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta);
11857
11935
  type BrowserActionConfiguration = (io.flow.v0.models.CardBrowserActionConfiguration);
11858
11936
  type CardAuthorizationActionResult = (io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4);
11859
11937
  type CardNumber = (io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher);
@@ -11869,6 +11947,7 @@ declare namespace io.flow.v0.unions {
11869
11947
  type DiscountRuleEntitlement = (io.flow.v0.models.DiscountRuleSubsidyEntitlement);
11870
11948
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
11871
11949
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
11950
+ type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
11872
11951
  type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.RuleUpserted | io.flow.v0.models.RuleDeleted | io.flow.v0.models.SnapshotUpserted | io.flow.v0.models.SnapshotDeleted | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
11873
11952
  type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
11874
11953
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
@@ -11887,6 +11966,8 @@ declare namespace io.flow.v0.unions {
11887
11966
  type InlineActionConfiguration = (io.flow.v0.models.BrowserInlineActionConfiguration);
11888
11967
  type InputSpecificationLimitation = (io.flow.v0.models.InputSpecificationLimitationMax);
11889
11968
  type InventoryStrategy = (io.flow.v0.models.InventoryBackorder | io.flow.v0.models.InventoryStock | io.flow.v0.models.InventoryUnlimited | io.flow.v0.models.InventoryFollowEcommercePlatform);
11969
+ type KnowYourBusiness = (io.flow.v0.models.KnowYourBusinessUsa);
11970
+ type KnowYourBusinessForm = (io.flow.v0.models.KnowYourBusinessUsaForm);
11890
11971
  type LocalizedPrice = (io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal);
11891
11972
  type LogoImage = (io.flow.v0.models.LogoImageSvg | io.flow.v0.models.LogoImageSetStatic);
11892
11973
  type MerchantApplication = (io.flow.v0.models.ShopifyMerchantApplication);
@@ -12267,7 +12348,12 @@ export const b2BInvoice: PropTypes.Requireable<io.flow.v0.models.B2BInvoice>;
12267
12348
  export const b2BInvoiceDeleted: PropTypes.Requireable<io.flow.v0.models.B2BInvoiceDeleted>;
12268
12349
  export const b2BInvoiceReference: PropTypes.Requireable<io.flow.v0.models.B2BInvoiceReference>;
12269
12350
  export const b2BInvoiceUpserted: PropTypes.Requireable<io.flow.v0.models.B2BInvoiceUpserted>;
12270
- export const bankAccountForm: PropTypes.Requireable<io.flow.v0.models.BankAccountForm>;
12351
+ export const bankAccountFormInfo: PropTypes.Requireable<io.flow.v0.models.BankAccountFormInfo>;
12352
+ export const bankAccountFormSimple: PropTypes.Requireable<io.flow.v0.models.BankAccountFormSimple>;
12353
+ export const bankAccountInfoCan: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoCan>;
12354
+ export const bankAccountInfoFra: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoFra>;
12355
+ export const bankAccountInfoGbr: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoGbr>;
12356
+ export const bankAccountInfoIta: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoIta>;
12271
12357
  export const bankAccountInfoUsa: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoUsa>;
12272
12358
  export const bankAccountReference: PropTypes.Requireable<io.flow.v0.models.BankAccountReference>;
12273
12359
  export const bankAccountSummary: PropTypes.Requireable<io.flow.v0.models.BankAccountSummary>;
@@ -12397,6 +12483,7 @@ export const checkoutUrls: PropTypes.Requireable<io.flow.v0.models.CheckoutUrls>
12397
12483
  export const checkoutUrlsForm: PropTypes.Requireable<io.flow.v0.models.CheckoutUrlsForm>;
12398
12484
  export const cleartext: PropTypes.Requireable<io.flow.v0.models.Cleartext>;
12399
12485
  export const commercialInvoiceFee: PropTypes.Requireable<io.flow.v0.models.CommercialInvoiceFee>;
12486
+ export const company: PropTypes.Requireable<io.flow.v0.models.Company>;
12400
12487
  export const consumerInvoice: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoice>;
12401
12488
  export const consumerInvoiceCenterReference: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceCenterReference>;
12402
12489
  export const consumerInvoiceDeleted: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceDeleted>;
@@ -12693,6 +12780,7 @@ export const inComplianceReview: PropTypes.Requireable<io.flow.v0.models.InCompl
12693
12780
  export const inboundCartonFee: PropTypes.Requireable<io.flow.v0.models.InboundCartonFee>;
12694
12781
  export const includedLevies: PropTypes.Requireable<io.flow.v0.models.IncludedLevies>;
12695
12782
  export const indirectTax: PropTypes.Requireable<io.flow.v0.models.IndirectTax>;
12783
+ export const individual: PropTypes.Requireable<io.flow.v0.models.Individual>;
12696
12784
  export const inlineAuthorizationDetails: PropTypes.Requireable<io.flow.v0.models.InlineAuthorizationDetails>;
12697
12785
  export const inlineAuthorizationForm: PropTypes.Requireable<io.flow.v0.models.InlineAuthorizationForm>;
12698
12786
  export const inputForm: PropTypes.Requireable<io.flow.v0.models.InputForm>;
@@ -12757,6 +12845,8 @@ export const klarnaSdkAuthorizationResultActionDetails: PropTypes.Requireable<io
12757
12845
  export const klaviyoLineItem: PropTypes.Requireable<io.flow.v0.models.KlaviyoLineItem>;
12758
12846
  export const klaviyoOrderContent: PropTypes.Requireable<io.flow.v0.models.KlaviyoOrderContent>;
12759
12847
  export const klaviyoOrderPrices: PropTypes.Requireable<io.flow.v0.models.KlaviyoOrderPrices>;
12848
+ export const knowYourBusinessUsa: PropTypes.Requireable<io.flow.v0.models.KnowYourBusinessUsa>;
12849
+ export const knowYourBusinessUsaForm: PropTypes.Requireable<io.flow.v0.models.KnowYourBusinessUsaForm>;
12760
12850
  export const kubeHealthcheck: PropTypes.Requireable<io.flow.v0.models.KubeHealthcheck>;
12761
12851
  export const labelDeletedV2: PropTypes.Requireable<io.flow.v0.models.LabelDeletedV2>;
12762
12852
  export const labelFormatDeleted: PropTypes.Requireable<io.flow.v0.models.LabelFormatDeleted>;
@@ -13538,6 +13628,7 @@ export const authorizationPayloadParameters: PropTypes.Requireable<io.flow.v0.un
13538
13628
  export const authorizationResultAction: PropTypes.Requireable<io.flow.v0.unions.AuthorizationResultAction>;
13539
13629
  export const authorizationResultActionDetails: PropTypes.Requireable<io.flow.v0.unions.AuthorizationResultActionDetails>;
13540
13630
  export const availableFilter: PropTypes.Requireable<io.flow.v0.unions.AvailableFilter>;
13631
+ export const bankAccountForm: PropTypes.Requireable<io.flow.v0.unions.BankAccountForm>;
13541
13632
  export const bankAccountInfo: PropTypes.Requireable<io.flow.v0.unions.BankAccountInfo>;
13542
13633
  export const browserActionConfiguration: PropTypes.Requireable<io.flow.v0.unions.BrowserActionConfiguration>;
13543
13634
  export const cardAuthorizationActionResult: PropTypes.Requireable<io.flow.v0.unions.CardAuthorizationActionResult>;
@@ -13554,6 +13645,7 @@ export const discountOffer: PropTypes.Requireable<io.flow.v0.unions.DiscountOffe
13554
13645
  export const discountRuleEntitlement: PropTypes.Requireable<io.flow.v0.unions.DiscountRuleEntitlement>;
13555
13646
  export const document: PropTypes.Requireable<io.flow.v0.unions.Document>;
13556
13647
  export const emailNotificationData: PropTypes.Requireable<io.flow.v0.unions.EmailNotificationData>;
13648
+ export const entity: PropTypes.Requireable<io.flow.v0.unions.Entity>;
13557
13649
  export const event: PropTypes.Requireable<io.flow.v0.unions.Event>;
13558
13650
  export const expandableCard: PropTypes.Requireable<io.flow.v0.unions.ExpandableCard>;
13559
13651
  export const expandableCenter: PropTypes.Requireable<io.flow.v0.unions.ExpandableCenter>;
@@ -13572,6 +13664,8 @@ export const gatewayAuthenticationDataForm: PropTypes.Requireable<io.flow.v0.uni
13572
13664
  export const inlineActionConfiguration: PropTypes.Requireable<io.flow.v0.unions.InlineActionConfiguration>;
13573
13665
  export const inputSpecificationLimitation: PropTypes.Requireable<io.flow.v0.unions.InputSpecificationLimitation>;
13574
13666
  export const inventoryStrategy: PropTypes.Requireable<io.flow.v0.unions.InventoryStrategy>;
13667
+ export const knowYourBusiness: PropTypes.Requireable<io.flow.v0.unions.KnowYourBusiness>;
13668
+ export const knowYourBusinessForm: PropTypes.Requireable<io.flow.v0.unions.KnowYourBusinessForm>;
13575
13669
  export const localizedPrice: PropTypes.Requireable<io.flow.v0.unions.LocalizedPrice>;
13576
13670
  export const logoImage: PropTypes.Requireable<io.flow.v0.unions.LogoImage>;
13577
13671
  export const merchantApplication: PropTypes.Requireable<io.flow.v0.unions.MerchantApplication>;