@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-prop-types",
3
- "version": "10.16.50",
3
+ "version": "10.16.51",
4
4
  "description": "PropType validators that work with Flow API",
5
5
  "keywords": [
6
6
  "flow",
@@ -29,5 +29,5 @@
29
29
  "peerDependencies": {
30
30
  "prop-types": "^15.7.0"
31
31
  },
32
- "gitHead": "304f46c2533d37256ff6dc855066e33408d43adc"
32
+ "gitHead": "da7211cba1d8423ba244292d986d596a1a431354"
33
33
  }
package/src/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>;
package/src/api.js CHANGED
@@ -761,6 +761,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
761
761
  vendor: PropTypes.string,
762
762
  body_html: PropTypes.string,
763
763
  product_type: PropTypes.string,
764
+ status: PropTypes.string,
764
765
  options: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.option']).isRequired,
765
766
  tags: PropTypes.string,
766
767
  template_suffix: PropTypes.string,
@@ -2405,6 +2406,12 @@ T['io.flow.v0.models.organization_transaction_deleted'] = PropTypes.exact({
2405
2406
  id: PropTypes.string.isRequired,
2406
2407
  });
2407
2408
 
2409
+ T['io.flow.v0.models.bank_account_form_simple'] = PropTypes.exact({
2410
+ discriminator: PropTypes.oneOf(['simple']).isRequired,
2411
+ routing_number: PropTypes.string.isRequired,
2412
+ account_number: PropTypes.string.isRequired,
2413
+ });
2414
+
2408
2415
  T['io.flow.v0.models.online_payment_authorization_form'] = PropTypes.exact({
2409
2416
  discriminator: PropTypes.oneOf(['online_payment_authorization_form']).isRequired,
2410
2417
  payment_id: PropTypes.string.isRequired,
@@ -3374,7 +3381,7 @@ T['io.flow.v0.models.permitted_route'] = PropTypes.exact({
3374
3381
  path: PropTypes.string.isRequired,
3375
3382
  });
3376
3383
 
3377
- T['io.flow.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'could_not_process']);
3384
+ T['io.flow.v0.enums.payout_status_failure_code'] = PropTypes.oneOf(['invalid_account_number', 'account_closed', 'could_not_process']);
3378
3385
 
3379
3386
  T['io.flow.v0.enums.reversal_error_code'] = PropTypes.oneOf([
3380
3387
  'amount_exceeds_balance',
@@ -3497,21 +3504,6 @@ T['io.flow.v0.models.payment_capture_option_automatic_immediate'] = PropTypes.ex
3497
3504
  placeholder: PropTypes.string,
3498
3505
  });
3499
3506
 
3500
- T['io.flow.v0.models.device_details_browser'] = PropTypes.exact({
3501
- type: PropTypes.oneOf(['browser']).isRequired,
3502
- user_agent: PropTypes.string.isRequired,
3503
- origin: PropTypes.string.isRequired,
3504
- accept_language: PropTypes.string,
3505
- ip: PropTypes.string,
3506
- time_zone_offset: PropTypes.number,
3507
- date_string: PropTypes.string,
3508
- navigator_language: PropTypes.string,
3509
- navigator_hardware_concurrency: PropTypes.number,
3510
- cookie_created_at: PropTypes.number,
3511
- session_duration: PropTypes.number,
3512
- fingerprint: PropTypes.string,
3513
- });
3514
-
3515
3507
  T['io.flow.v0.models.action_wait'] = PropTypes.exact({
3516
3508
  type: PropTypes.oneOf(['wait']).isRequired,
3517
3509
  expires_at: PropTypes.string,
@@ -3567,8 +3559,6 @@ T['io.flow.v0.unions.payment_capture_option'] = PropTypes.oneOfType([
3567
3559
  T['io.flow.v0.models.payment_capture_option_manual'],
3568
3560
  ]);
3569
3561
 
3570
- T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
3571
-
3572
3562
  T['io.flow.v0.enums.payment_status'] = PropTypes.oneOf([
3573
3563
  'requires_payment_method',
3574
3564
  'requires_action',
@@ -4178,11 +4168,28 @@ T['io.flow.v0.enums.order_error_code'] = PropTypes.oneOf([
4178
4168
  'total_changed',
4179
4169
  ]);
4180
4170
 
4171
+ T['io.flow.v0.models.device_details_browser'] = PropTypes.exact({
4172
+ type: PropTypes.oneOf(['browser']).isRequired,
4173
+ user_agent: PropTypes.string.isRequired,
4174
+ origin: PropTypes.string.isRequired,
4175
+ accept_language: PropTypes.string,
4176
+ ip: PropTypes.string,
4177
+ time_zone_offset: PropTypes.number,
4178
+ date_string: PropTypes.string,
4179
+ navigator_language: PropTypes.string,
4180
+ navigator_hardware_concurrency: PropTypes.number,
4181
+ cookie_created_at: PropTypes.number,
4182
+ session_duration: PropTypes.number,
4183
+ fingerprint: PropTypes.string,
4184
+ });
4185
+
4181
4186
  T['io.flow.v0.models.order_rule_reference'] = PropTypes.exact({
4182
4187
  id: PropTypes.string.isRequired,
4183
4188
  key: PropTypes.string.isRequired,
4184
4189
  });
4185
4190
 
4191
+ T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
4192
+
4186
4193
  T['io.flow.v0.models.order_geo'] = PropTypes.exact({
4187
4194
  ip: PropTypes.string,
4188
4195
  country: PropTypes.string.isRequired,
@@ -4335,6 +4342,7 @@ T['io.flow.v0.unions.onboarding_state'] = PropTypes.oneOfType([
4335
4342
  ]);
4336
4343
 
4337
4344
  T['io.flow.v0.models.onboarding_state_transition'] = PropTypes.exact({
4345
+ id: PropTypes.string.isRequired,
4338
4346
  state: T['io.flow.v0.unions.onboarding_state'].isRequired,
4339
4347
  started_at: PropTypes.string.isRequired,
4340
4348
  });
@@ -4524,6 +4532,23 @@ T['io.flow.v0.models.shipping_label_document'] = PropTypes.exact({
4524
4532
 
4525
4533
  T['io.flow.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
4526
4534
 
4535
+ T['io.flow.v0.models.individual'] = PropTypes.exact({
4536
+ discriminator: PropTypes.oneOf(['individual']).isRequired,
4537
+ legal_name: PropTypes.string.isRequired,
4538
+ tax_registration_number: PropTypes.string,
4539
+ date_of_birth: PropTypes.string.isRequired,
4540
+ });
4541
+
4542
+ T['io.flow.v0.models.company'] = PropTypes.exact({
4543
+ discriminator: PropTypes.oneOf(['company']).isRequired,
4544
+ legal_name: PropTypes.string.isRequired,
4545
+ incorporation_country: PropTypes.string.isRequired,
4546
+ incorporation_jurisdiction: PropTypes.string.isRequired,
4547
+ tax_registration_number: PropTypes.string.isRequired,
4548
+ });
4549
+
4550
+ T['io.flow.v0.unions.entity'] = PropTypes.oneOfType([T['io.flow.v0.models.company'], T['io.flow.v0.models.individual']]);
4551
+
4527
4552
  T['io.flow.v0.models.klarna_payment_method_category'] = PropTypes.exact({
4528
4553
  id: PropTypes.string.isRequired,
4529
4554
  name: PropTypes.string,
@@ -7504,18 +7529,54 @@ T['io.flow.v0.models.permission_audit'] = PropTypes.exact({
7504
7529
  behaviors: PropTypes.arrayOf(T['io.flow.v0.models.behavior_audit']).isRequired,
7505
7530
  });
7506
7531
 
7532
+ T['io.flow.v0.models.bank_account_info_ita'] = PropTypes.exact({
7533
+ discriminator: PropTypes.oneOf(['ita']).isRequired,
7534
+ swift_code: PropTypes.string.isRequired,
7535
+ iban: PropTypes.string.isRequired,
7536
+ });
7537
+
7538
+ T['io.flow.v0.models.bank_account_info_fra'] = PropTypes.exact({
7539
+ discriminator: PropTypes.oneOf(['fra']).isRequired,
7540
+ swift_code: PropTypes.string.isRequired,
7541
+ iban: PropTypes.string.isRequired,
7542
+ });
7543
+
7544
+ T['io.flow.v0.models.bank_account_info_gbr'] = PropTypes.exact({
7545
+ discriminator: PropTypes.oneOf(['gbr']).isRequired,
7546
+ swift_code: PropTypes.string.isRequired,
7547
+ iban: PropTypes.string.isRequired,
7548
+ });
7549
+
7550
+ T['io.flow.v0.models.bank_account_info_can'] = PropTypes.exact({
7551
+ discriminator: PropTypes.oneOf(['can']).isRequired,
7552
+ routing_number: PropTypes.string.isRequired,
7553
+ account_number: PropTypes.string.isRequired,
7554
+ });
7555
+
7507
7556
  T['io.flow.v0.models.bank_account_info_usa'] = PropTypes.exact({
7508
7557
  discriminator: PropTypes.oneOf(['usa']).isRequired,
7509
7558
  routing_number: PropTypes.string.isRequired,
7510
7559
  account_number: PropTypes.string.isRequired,
7511
7560
  });
7512
7561
 
7513
- T['io.flow.v0.unions.bank_account_info'] = PropTypes.oneOfType([T['io.flow.v0.models.bank_account_info_usa']]);
7562
+ T['io.flow.v0.unions.bank_account_info'] = PropTypes.oneOfType([
7563
+ T['io.flow.v0.models.bank_account_info_usa'],
7564
+ T['io.flow.v0.models.bank_account_info_can'],
7565
+ T['io.flow.v0.models.bank_account_info_gbr'],
7566
+ T['io.flow.v0.models.bank_account_info_fra'],
7567
+ T['io.flow.v0.models.bank_account_info_ita'],
7568
+ ]);
7514
7569
 
7515
- T['io.flow.v0.models.bank_account_form'] = PropTypes.exact({
7570
+ T['io.flow.v0.models.bank_account_form_info'] = PropTypes.exact({
7571
+ discriminator: PropTypes.oneOf(['info']).isRequired,
7516
7572
  info: T['io.flow.v0.unions.bank_account_info'].isRequired,
7517
7573
  });
7518
7574
 
7575
+ T['io.flow.v0.unions.bank_account_form'] = PropTypes.oneOfType([
7576
+ T['io.flow.v0.models.bank_account_form_info'],
7577
+ T['io.flow.v0.models.bank_account_form_simple'],
7578
+ ]);
7579
+
7519
7580
  T['io.flow.v0.enums.economic_title_location'] = PropTypes.oneOf(['high_seas', 'origination', 'destination']);
7520
7581
 
7521
7582
  T['io.flow.v0.models.consumer_invoice_order_summary'] = PropTypes.exact({
@@ -7605,6 +7666,10 @@ T['io.flow.v0.models.organization_onboarding_state'] = PropTypes.exact({
7605
7666
  organization: T['io.flow.v0.models.organization_reference'].isRequired,
7606
7667
  transitions: PropTypes.arrayOf(T['io.flow.v0.models.onboarding_state_transition']).isRequired,
7607
7668
  current_state: T['io.flow.v0.unions.onboarding_state'].isRequired,
7669
+ started_at: PropTypes.string,
7670
+ time_blocked: PropTypes.number,
7671
+ blocked_since: PropTypes.string,
7672
+ completed_at: PropTypes.string,
7608
7673
  });
7609
7674
 
7610
7675
  T['io.flow.v0.models.organization_onboarding_state_upserted'] = PropTypes.exact({
@@ -10221,6 +10286,31 @@ T['io.flow.v0.models.merchant_application_deleted'] = PropTypes.exact({
10221
10286
  merchant_application: T['io.flow.v0.unions.merchant_application'].isRequired,
10222
10287
  });
10223
10288
 
10289
+ T['io.flow.v0.models.know_your_business_usa_form'] = PropTypes.exact({
10290
+ discriminator: PropTypes.oneOf(['know_your_business_usa_form']).isRequired,
10291
+ primary_entity: T['io.flow.v0.unions.entity'].isRequired,
10292
+ parent_company: T['io.flow.v0.models.company'],
10293
+ ultimate_parent_company: T['io.flow.v0.models.company'],
10294
+ ultimate_beneficiary_owner: T['io.flow.v0.models.individual'].isRequired,
10295
+ business_url: PropTypes.string.isRequired,
10296
+ business_address: T['io.flow.v0.models.address'].isRequired,
10297
+ });
10298
+
10299
+ T['io.flow.v0.unions.know_your_business_form'] = PropTypes.oneOfType([T['io.flow.v0.models.know_your_business_usa_form']]);
10300
+
10301
+ T['io.flow.v0.models.know_your_business_usa'] = PropTypes.exact({
10302
+ discriminator: PropTypes.oneOf(['know_your_business_usa']).isRequired,
10303
+ id: PropTypes.string.isRequired,
10304
+ primary_entity: T['io.flow.v0.unions.entity'].isRequired,
10305
+ parent_company: T['io.flow.v0.models.company'],
10306
+ ultimate_parent_company: T['io.flow.v0.models.company'],
10307
+ ultimate_beneficiary_owner: T['io.flow.v0.models.individual'].isRequired,
10308
+ business_url: PropTypes.string.isRequired,
10309
+ business_address: T['io.flow.v0.models.address'].isRequired,
10310
+ });
10311
+
10312
+ T['io.flow.v0.unions.know_your_business'] = PropTypes.oneOfType([T['io.flow.v0.models.know_your_business_usa']]);
10313
+
10224
10314
  T['io.flow.v0.models.harmonized_landed_cost_item'] = PropTypes.exact({
10225
10315
  item: T['io.flow.v0.models.harmonized_item_reference'].isRequired,
10226
10316
  duty: T['io.flow.v0.models.duty'].isRequired,
@@ -11496,6 +11586,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
11496
11586
  rules: T['io.flow.v0.models.order_rules_summary'],
11497
11587
  tax_registration: T['io.flow.v0.models.tax_registration'],
11498
11588
  geo: T['io.flow.v0.models.order_geo'],
11589
+ device_details: T['io.flow.v0.unions.device_details'],
11499
11590
  });
11500
11591
 
11501
11592
  T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
@@ -13858,8 +13949,14 @@ export const b2BInvoiceDeleted = T['io.flow.v0.models.b2b_invoice_deleted'];
13858
13949
  export const b2BInvoiceReference = T['io.flow.v0.models.b2b_invoice_reference'];
13859
13950
  export const b2BInvoiceType = T['io.flow.v0.enums.b2b_invoice_type'];
13860
13951
  export const b2BInvoiceUpserted = T['io.flow.v0.models.b2b_invoice_upserted'];
13861
- export const bankAccountForm = T['io.flow.v0.models.bank_account_form'];
13952
+ export const bankAccountForm = T['io.flow.v0.unions.bank_account_form'];
13953
+ export const bankAccountFormInfo = T['io.flow.v0.models.bank_account_form_info'];
13954
+ export const bankAccountFormSimple = T['io.flow.v0.models.bank_account_form_simple'];
13862
13955
  export const bankAccountInfo = T['io.flow.v0.unions.bank_account_info'];
13956
+ export const bankAccountInfoCan = T['io.flow.v0.models.bank_account_info_can'];
13957
+ export const bankAccountInfoFra = T['io.flow.v0.models.bank_account_info_fra'];
13958
+ export const bankAccountInfoGbr = T['io.flow.v0.models.bank_account_info_gbr'];
13959
+ export const bankAccountInfoIta = T['io.flow.v0.models.bank_account_info_ita'];
13863
13960
  export const bankAccountInfoUsa = T['io.flow.v0.models.bank_account_info_usa'];
13864
13961
  export const bankAccountReference = T['io.flow.v0.models.bank_account_reference'];
13865
13962
  export const bankAccountSummary = T['io.flow.v0.models.bank_account_summary'];
@@ -14003,6 +14100,7 @@ export const checkoutUrls = T['io.flow.v0.models.checkout_urls'];
14003
14100
  export const checkoutUrlsForm = T['io.flow.v0.models.checkout_urls_form'];
14004
14101
  export const cleartext = T['io.flow.v0.models.cleartext'];
14005
14102
  export const commercialInvoiceFee = T['io.flow.v0.models.commercial_invoice_fee'];
14103
+ export const company = T['io.flow.v0.models.company'];
14006
14104
  export const confirmationDetails = T['io.flow.v0.unions.confirmation_details'];
14007
14105
  export const consumerInvoice = T['io.flow.v0.models.consumer_invoice'];
14008
14106
  export const consumerInvoiceCenterReference = T['io.flow.v0.models.consumer_invoice_center_reference'];
@@ -14185,6 +14283,7 @@ export const emailRecipient = T['io.flow.v0.models.email_recipient'];
14185
14283
  export const emailVerification = T['io.flow.v0.models.email_verification'];
14186
14284
  export const emergencySituationSurchargeRatecardFee = T['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'];
14187
14285
  export const emergencySituationSurchargeServiceFee = T['io.flow.v0.models.emergency_situation_surcharge_service_fee'];
14286
+ export const entity = T['io.flow.v0.unions.entity'];
14188
14287
  export const entityIdentifier = T['io.flow.v0.models.entity_identifier'];
14189
14288
  export const entityIdentifierType = T['io.flow.v0.enums.entity_identifier_type'];
14190
14289
  export const environment = T['io.flow.v0.enums.environment'];
@@ -14380,6 +14479,7 @@ export const includedLevies = T['io.flow.v0.models.included_levies'];
14380
14479
  export const includedLevyKey = T['io.flow.v0.enums.included_levy_key'];
14381
14480
  export const incoterm = T['io.flow.v0.enums.incoterm'];
14382
14481
  export const indirectTax = T['io.flow.v0.models.indirect_tax'];
14482
+ export const individual = T['io.flow.v0.models.individual'];
14383
14483
  export const inlineActionConfiguration = T['io.flow.v0.unions.inline_action_configuration'];
14384
14484
  export const inlineAuthorizationDetails = T['io.flow.v0.models.inline_authorization_details'];
14385
14485
  export const inlineAuthorizationForm = T['io.flow.v0.models.inline_authorization_form'];
@@ -14453,6 +14553,10 @@ export const klarnaSdkAuthorizationResultActionDetails = T['io.flow.v0.models.kl
14453
14553
  export const klaviyoLineItem = T['io.flow.v0.models.klaviyo_line_item'];
14454
14554
  export const klaviyoOrderContent = T['io.flow.v0.models.klaviyo_order_content'];
14455
14555
  export const klaviyoOrderPrices = T['io.flow.v0.models.klaviyo_order_prices'];
14556
+ export const knowYourBusiness = T['io.flow.v0.unions.know_your_business'];
14557
+ export const knowYourBusinessForm = T['io.flow.v0.unions.know_your_business_form'];
14558
+ export const knowYourBusinessUsa = T['io.flow.v0.models.know_your_business_usa'];
14559
+ export const knowYourBusinessUsaForm = T['io.flow.v0.models.know_your_business_usa_form'];
14456
14560
  export const kubeHealthcheck = T['io.flow.v0.models.kube-healthcheck'];
14457
14561
  export const labelDeletedV2 = T['io.flow.v0.models.label_deleted_v2'];
14458
14562
  export const labelFormatDeleted = T['io.flow.v0.models.label_format_deleted'];
@@ -15401,4 +15505,4 @@ export const withholdingDeduction = T['io.flow.v0.models.withholding_deduction']
15401
15505
  export const withholdingDeductionType = T['io.flow.v0.enums.withholding_deduction_type'];
15402
15506
  export const zeroAmountIndicator = T['io.flow.v0.enums.zero_amount_indicator'];
15403
15507
  export const zeroLevyReasonCode = T['io.flow.v0.enums.zero_levy_reason_code'];
15404
- export const zone = T['io.flow.v0.models.zone'];
15508
+ export const zone = T['io.flow.v0.models.zone'];