@flowio/api-prop-types 10.16.50 → 10.16.51

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 {
@@ -7842,6 +7912,10 @@ declare namespace io.flow.v0.models {
7842
7912
  readonly 'organization': io.flow.v0.models.OrganizationReference;
7843
7913
  readonly 'transitions': io.flow.v0.models.OnboardingStateTransition[];
7844
7914
  readonly 'current_state': io.flow.v0.unions.OnboardingState;
7915
+ readonly 'started_at'?: string;
7916
+ readonly 'time_blocked'?: number;
7917
+ readonly 'blocked_since'?: string;
7918
+ readonly 'completed_at'?: string;
7845
7919
  }
7846
7920
 
7847
7921
  interface OrganizationOnboardingStateDeleted {
@@ -11853,7 +11927,8 @@ declare namespace io.flow.v0.unions {
11853
11927
  type AuthorizationResultAction = (io.flow.v0.models.AuthorizationResultActionGet | io.flow.v0.models.AuthorizationResultActionPost | io.flow.v0.models.AuthorizationResultActionWait | io.flow.v0.models.AuthorizationResultActionNative);
11854
11928
  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
11929
  type AvailableFilter = (io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured);
11856
- type BankAccountInfo = (io.flow.v0.models.BankAccountInfoUsa);
11930
+ type BankAccountForm = (io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple);
11931
+ 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
11932
  type BrowserActionConfiguration = (io.flow.v0.models.CardBrowserActionConfiguration);
11858
11933
  type CardAuthorizationActionResult = (io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4);
11859
11934
  type CardNumber = (io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher);
@@ -11869,6 +11944,7 @@ declare namespace io.flow.v0.unions {
11869
11944
  type DiscountRuleEntitlement = (io.flow.v0.models.DiscountRuleSubsidyEntitlement);
11870
11945
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
11871
11946
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
11947
+ type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
11872
11948
  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
11949
  type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
11874
11950
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
@@ -11887,6 +11963,8 @@ declare namespace io.flow.v0.unions {
11887
11963
  type InlineActionConfiguration = (io.flow.v0.models.BrowserInlineActionConfiguration);
11888
11964
  type InputSpecificationLimitation = (io.flow.v0.models.InputSpecificationLimitationMax);
11889
11965
  type InventoryStrategy = (io.flow.v0.models.InventoryBackorder | io.flow.v0.models.InventoryStock | io.flow.v0.models.InventoryUnlimited | io.flow.v0.models.InventoryFollowEcommercePlatform);
11966
+ type KnowYourBusiness = (io.flow.v0.models.KnowYourBusinessUsa);
11967
+ type KnowYourBusinessForm = (io.flow.v0.models.KnowYourBusinessUsaForm);
11890
11968
  type LocalizedPrice = (io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal);
11891
11969
  type LogoImage = (io.flow.v0.models.LogoImageSvg | io.flow.v0.models.LogoImageSetStatic);
11892
11970
  type MerchantApplication = (io.flow.v0.models.ShopifyMerchantApplication);
@@ -12267,7 +12345,12 @@ export const b2BInvoice: PropTypes.Requireable<io.flow.v0.models.B2BInvoice>;
12267
12345
  export const b2BInvoiceDeleted: PropTypes.Requireable<io.flow.v0.models.B2BInvoiceDeleted>;
12268
12346
  export const b2BInvoiceReference: PropTypes.Requireable<io.flow.v0.models.B2BInvoiceReference>;
12269
12347
  export const b2BInvoiceUpserted: PropTypes.Requireable<io.flow.v0.models.B2BInvoiceUpserted>;
12270
- export const bankAccountForm: PropTypes.Requireable<io.flow.v0.models.BankAccountForm>;
12348
+ export const bankAccountFormInfo: PropTypes.Requireable<io.flow.v0.models.BankAccountFormInfo>;
12349
+ export const bankAccountFormSimple: PropTypes.Requireable<io.flow.v0.models.BankAccountFormSimple>;
12350
+ export const bankAccountInfoCan: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoCan>;
12351
+ export const bankAccountInfoFra: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoFra>;
12352
+ export const bankAccountInfoGbr: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoGbr>;
12353
+ export const bankAccountInfoIta: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoIta>;
12271
12354
  export const bankAccountInfoUsa: PropTypes.Requireable<io.flow.v0.models.BankAccountInfoUsa>;
12272
12355
  export const bankAccountReference: PropTypes.Requireable<io.flow.v0.models.BankAccountReference>;
12273
12356
  export const bankAccountSummary: PropTypes.Requireable<io.flow.v0.models.BankAccountSummary>;
@@ -12397,6 +12480,7 @@ export const checkoutUrls: PropTypes.Requireable<io.flow.v0.models.CheckoutUrls>
12397
12480
  export const checkoutUrlsForm: PropTypes.Requireable<io.flow.v0.models.CheckoutUrlsForm>;
12398
12481
  export const cleartext: PropTypes.Requireable<io.flow.v0.models.Cleartext>;
12399
12482
  export const commercialInvoiceFee: PropTypes.Requireable<io.flow.v0.models.CommercialInvoiceFee>;
12483
+ export const company: PropTypes.Requireable<io.flow.v0.models.Company>;
12400
12484
  export const consumerInvoice: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoice>;
12401
12485
  export const consumerInvoiceCenterReference: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceCenterReference>;
12402
12486
  export const consumerInvoiceDeleted: PropTypes.Requireable<io.flow.v0.models.ConsumerInvoiceDeleted>;
@@ -12693,6 +12777,7 @@ export const inComplianceReview: PropTypes.Requireable<io.flow.v0.models.InCompl
12693
12777
  export const inboundCartonFee: PropTypes.Requireable<io.flow.v0.models.InboundCartonFee>;
12694
12778
  export const includedLevies: PropTypes.Requireable<io.flow.v0.models.IncludedLevies>;
12695
12779
  export const indirectTax: PropTypes.Requireable<io.flow.v0.models.IndirectTax>;
12780
+ export const individual: PropTypes.Requireable<io.flow.v0.models.Individual>;
12696
12781
  export const inlineAuthorizationDetails: PropTypes.Requireable<io.flow.v0.models.InlineAuthorizationDetails>;
12697
12782
  export const inlineAuthorizationForm: PropTypes.Requireable<io.flow.v0.models.InlineAuthorizationForm>;
12698
12783
  export const inputForm: PropTypes.Requireable<io.flow.v0.models.InputForm>;
@@ -12757,6 +12842,8 @@ export const klarnaSdkAuthorizationResultActionDetails: PropTypes.Requireable<io
12757
12842
  export const klaviyoLineItem: PropTypes.Requireable<io.flow.v0.models.KlaviyoLineItem>;
12758
12843
  export const klaviyoOrderContent: PropTypes.Requireable<io.flow.v0.models.KlaviyoOrderContent>;
12759
12844
  export const klaviyoOrderPrices: PropTypes.Requireable<io.flow.v0.models.KlaviyoOrderPrices>;
12845
+ export const knowYourBusinessUsa: PropTypes.Requireable<io.flow.v0.models.KnowYourBusinessUsa>;
12846
+ export const knowYourBusinessUsaForm: PropTypes.Requireable<io.flow.v0.models.KnowYourBusinessUsaForm>;
12760
12847
  export const kubeHealthcheck: PropTypes.Requireable<io.flow.v0.models.KubeHealthcheck>;
12761
12848
  export const labelDeletedV2: PropTypes.Requireable<io.flow.v0.models.LabelDeletedV2>;
12762
12849
  export const labelFormatDeleted: PropTypes.Requireable<io.flow.v0.models.LabelFormatDeleted>;
@@ -13538,6 +13625,7 @@ export const authorizationPayloadParameters: PropTypes.Requireable<io.flow.v0.un
13538
13625
  export const authorizationResultAction: PropTypes.Requireable<io.flow.v0.unions.AuthorizationResultAction>;
13539
13626
  export const authorizationResultActionDetails: PropTypes.Requireable<io.flow.v0.unions.AuthorizationResultActionDetails>;
13540
13627
  export const availableFilter: PropTypes.Requireable<io.flow.v0.unions.AvailableFilter>;
13628
+ export const bankAccountForm: PropTypes.Requireable<io.flow.v0.unions.BankAccountForm>;
13541
13629
  export const bankAccountInfo: PropTypes.Requireable<io.flow.v0.unions.BankAccountInfo>;
13542
13630
  export const browserActionConfiguration: PropTypes.Requireable<io.flow.v0.unions.BrowserActionConfiguration>;
13543
13631
  export const cardAuthorizationActionResult: PropTypes.Requireable<io.flow.v0.unions.CardAuthorizationActionResult>;
@@ -13554,6 +13642,7 @@ export const discountOffer: PropTypes.Requireable<io.flow.v0.unions.DiscountOffe
13554
13642
  export const discountRuleEntitlement: PropTypes.Requireable<io.flow.v0.unions.DiscountRuleEntitlement>;
13555
13643
  export const document: PropTypes.Requireable<io.flow.v0.unions.Document>;
13556
13644
  export const emailNotificationData: PropTypes.Requireable<io.flow.v0.unions.EmailNotificationData>;
13645
+ export const entity: PropTypes.Requireable<io.flow.v0.unions.Entity>;
13557
13646
  export const event: PropTypes.Requireable<io.flow.v0.unions.Event>;
13558
13647
  export const expandableCard: PropTypes.Requireable<io.flow.v0.unions.ExpandableCard>;
13559
13648
  export const expandableCenter: PropTypes.Requireable<io.flow.v0.unions.ExpandableCenter>;
@@ -13572,6 +13661,8 @@ export const gatewayAuthenticationDataForm: PropTypes.Requireable<io.flow.v0.uni
13572
13661
  export const inlineActionConfiguration: PropTypes.Requireable<io.flow.v0.unions.InlineActionConfiguration>;
13573
13662
  export const inputSpecificationLimitation: PropTypes.Requireable<io.flow.v0.unions.InputSpecificationLimitation>;
13574
13663
  export const inventoryStrategy: PropTypes.Requireable<io.flow.v0.unions.InventoryStrategy>;
13664
+ export const knowYourBusiness: PropTypes.Requireable<io.flow.v0.unions.KnowYourBusiness>;
13665
+ export const knowYourBusinessForm: PropTypes.Requireable<io.flow.v0.unions.KnowYourBusinessForm>;
13575
13666
  export const localizedPrice: PropTypes.Requireable<io.flow.v0.unions.LocalizedPrice>;
13576
13667
  export const logoImage: PropTypes.Requireable<io.flow.v0.unions.LogoImage>;
13577
13668
  export const merchantApplication: PropTypes.Requireable<io.flow.v0.unions.MerchantApplication>;
@@ -13630,4 +13721,4 @@ export const tierRuleOutcome: PropTypes.Requireable<io.flow.v0.unions.TierRuleOu
13630
13721
  export const tierRuleOutcomeForm: PropTypes.Requireable<io.flow.v0.unions.TierRuleOutcomeForm>;
13631
13722
  export const token: PropTypes.Requireable<io.flow.v0.unions.Token>;
13632
13723
  export const tokenReference: PropTypes.Requireable<io.flow.v0.unions.TokenReference>;
13633
- export const transactionDetails: PropTypes.Requireable<io.flow.v0.unions.TransactionDetails>;
13724
+ export const transactionDetails: PropTypes.Requireable<io.flow.v0.unions.TransactionDetails>;