@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 +98 -4
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +98 -4
- package/src/api.js +128 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-prop-types",
|
|
3
|
-
"version": "10.16.
|
|
3
|
+
"version": "10.16.52",
|
|
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": "
|
|
32
|
+
"gitHead": "7f6565913d82602abcf6cfcf8280e9220d20cb30"
|
|
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
|
|
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
|
|
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
|
|
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>;
|
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,6 +4168,21 @@ 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,
|
|
@@ -4335,6 +4340,7 @@ T['io.flow.v0.unions.onboarding_state'] = PropTypes.oneOfType([
|
|
|
4335
4340
|
]);
|
|
4336
4341
|
|
|
4337
4342
|
T['io.flow.v0.models.onboarding_state_transition'] = PropTypes.exact({
|
|
4343
|
+
id: PropTypes.string.isRequired,
|
|
4338
4344
|
state: T['io.flow.v0.unions.onboarding_state'].isRequired,
|
|
4339
4345
|
started_at: PropTypes.string.isRequired,
|
|
4340
4346
|
});
|
|
@@ -4524,6 +4530,23 @@ T['io.flow.v0.models.shipping_label_document'] = PropTypes.exact({
|
|
|
4524
4530
|
|
|
4525
4531
|
T['io.flow.v0.enums.cost_estimate_source'] = PropTypes.oneOf(['flow', 'channel']);
|
|
4526
4532
|
|
|
4533
|
+
T['io.flow.v0.models.individual'] = PropTypes.exact({
|
|
4534
|
+
discriminator: PropTypes.oneOf(['individual']).isRequired,
|
|
4535
|
+
legal_name: PropTypes.string.isRequired,
|
|
4536
|
+
tax_registration_number: PropTypes.string,
|
|
4537
|
+
date_of_birth: PropTypes.string.isRequired,
|
|
4538
|
+
});
|
|
4539
|
+
|
|
4540
|
+
T['io.flow.v0.models.company'] = PropTypes.exact({
|
|
4541
|
+
discriminator: PropTypes.oneOf(['company']).isRequired,
|
|
4542
|
+
legal_name: PropTypes.string.isRequired,
|
|
4543
|
+
incorporation_country: PropTypes.string.isRequired,
|
|
4544
|
+
incorporation_jurisdiction: PropTypes.string.isRequired,
|
|
4545
|
+
tax_registration_number: PropTypes.string.isRequired,
|
|
4546
|
+
});
|
|
4547
|
+
|
|
4548
|
+
T['io.flow.v0.unions.entity'] = PropTypes.oneOfType([T['io.flow.v0.models.company'], T['io.flow.v0.models.individual']]);
|
|
4549
|
+
|
|
4527
4550
|
T['io.flow.v0.models.klarna_payment_method_category'] = PropTypes.exact({
|
|
4528
4551
|
id: PropTypes.string.isRequired,
|
|
4529
4552
|
name: PropTypes.string,
|
|
@@ -6089,6 +6112,8 @@ T['io.flow.v0.models.card_payment_source_form'] = PropTypes.exact({
|
|
|
6089
6112
|
card_id: PropTypes.string.isRequired,
|
|
6090
6113
|
});
|
|
6091
6114
|
|
|
6115
|
+
T['io.flow.v0.unions.device_details'] = PropTypes.oneOfType([T['io.flow.v0.models.device_details_browser']]);
|
|
6116
|
+
|
|
6092
6117
|
T['io.flow.v0.models.order_options'] = PropTypes.exact({
|
|
6093
6118
|
storage: T['io.flow.v0.enums.order_storage'].isRequired,
|
|
6094
6119
|
});
|
|
@@ -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([
|
|
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.
|
|
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({
|
|
@@ -12044,6 +12135,7 @@ T['io.flow.v0.models.order_put_form'] = PropTypes.exact({
|
|
|
12044
12135
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12045
12136
|
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
12046
12137
|
options: T['io.flow.v0.models.order_options'],
|
|
12138
|
+
device_details: T['io.flow.v0.unions.device_details'],
|
|
12047
12139
|
});
|
|
12048
12140
|
|
|
12049
12141
|
T['io.flow.v0.models.order_estimate_form'] = PropTypes.exact({
|
|
@@ -12075,6 +12167,7 @@ T['io.flow.v0.models.order_form'] = PropTypes.exact({
|
|
|
12075
12167
|
attributes: PropTypes.objectOf(PropTypes.string),
|
|
12076
12168
|
authorization_keys: PropTypes.arrayOf(PropTypes.string),
|
|
12077
12169
|
options: T['io.flow.v0.models.order_options'],
|
|
12170
|
+
device_details: T['io.flow.v0.unions.device_details'],
|
|
12078
12171
|
});
|
|
12079
12172
|
|
|
12080
12173
|
T['io.flow.v0.models.order_with_discounts_form'] = PropTypes.exact({
|
|
@@ -12119,6 +12212,7 @@ T['io.flow.v0.models.shipping_notification'] = PropTypes.exact({
|
|
|
12119
12212
|
order_identifier: PropTypes.string,
|
|
12120
12213
|
fulfillment_key: PropTypes.string,
|
|
12121
12214
|
shipment_recipient: T['io.flow.v0.enums.shipment_recipient'],
|
|
12215
|
+
created_at: PropTypes.string,
|
|
12122
12216
|
updated_at: PropTypes.string,
|
|
12123
12217
|
});
|
|
12124
12218
|
|
|
@@ -13858,8 +13952,14 @@ export const b2BInvoiceDeleted = T['io.flow.v0.models.b2b_invoice_deleted'];
|
|
|
13858
13952
|
export const b2BInvoiceReference = T['io.flow.v0.models.b2b_invoice_reference'];
|
|
13859
13953
|
export const b2BInvoiceType = T['io.flow.v0.enums.b2b_invoice_type'];
|
|
13860
13954
|
export const b2BInvoiceUpserted = T['io.flow.v0.models.b2b_invoice_upserted'];
|
|
13861
|
-
export const bankAccountForm = T['io.flow.v0.
|
|
13955
|
+
export const bankAccountForm = T['io.flow.v0.unions.bank_account_form'];
|
|
13956
|
+
export const bankAccountFormInfo = T['io.flow.v0.models.bank_account_form_info'];
|
|
13957
|
+
export const bankAccountFormSimple = T['io.flow.v0.models.bank_account_form_simple'];
|
|
13862
13958
|
export const bankAccountInfo = T['io.flow.v0.unions.bank_account_info'];
|
|
13959
|
+
export const bankAccountInfoCan = T['io.flow.v0.models.bank_account_info_can'];
|
|
13960
|
+
export const bankAccountInfoFra = T['io.flow.v0.models.bank_account_info_fra'];
|
|
13961
|
+
export const bankAccountInfoGbr = T['io.flow.v0.models.bank_account_info_gbr'];
|
|
13962
|
+
export const bankAccountInfoIta = T['io.flow.v0.models.bank_account_info_ita'];
|
|
13863
13963
|
export const bankAccountInfoUsa = T['io.flow.v0.models.bank_account_info_usa'];
|
|
13864
13964
|
export const bankAccountReference = T['io.flow.v0.models.bank_account_reference'];
|
|
13865
13965
|
export const bankAccountSummary = T['io.flow.v0.models.bank_account_summary'];
|
|
@@ -14003,6 +14103,7 @@ export const checkoutUrls = T['io.flow.v0.models.checkout_urls'];
|
|
|
14003
14103
|
export const checkoutUrlsForm = T['io.flow.v0.models.checkout_urls_form'];
|
|
14004
14104
|
export const cleartext = T['io.flow.v0.models.cleartext'];
|
|
14005
14105
|
export const commercialInvoiceFee = T['io.flow.v0.models.commercial_invoice_fee'];
|
|
14106
|
+
export const company = T['io.flow.v0.models.company'];
|
|
14006
14107
|
export const confirmationDetails = T['io.flow.v0.unions.confirmation_details'];
|
|
14007
14108
|
export const consumerInvoice = T['io.flow.v0.models.consumer_invoice'];
|
|
14008
14109
|
export const consumerInvoiceCenterReference = T['io.flow.v0.models.consumer_invoice_center_reference'];
|
|
@@ -14185,6 +14286,7 @@ export const emailRecipient = T['io.flow.v0.models.email_recipient'];
|
|
|
14185
14286
|
export const emailVerification = T['io.flow.v0.models.email_verification'];
|
|
14186
14287
|
export const emergencySituationSurchargeRatecardFee = T['io.flow.v0.models.emergency_situation_surcharge_ratecard_fee'];
|
|
14187
14288
|
export const emergencySituationSurchargeServiceFee = T['io.flow.v0.models.emergency_situation_surcharge_service_fee'];
|
|
14289
|
+
export const entity = T['io.flow.v0.unions.entity'];
|
|
14188
14290
|
export const entityIdentifier = T['io.flow.v0.models.entity_identifier'];
|
|
14189
14291
|
export const entityIdentifierType = T['io.flow.v0.enums.entity_identifier_type'];
|
|
14190
14292
|
export const environment = T['io.flow.v0.enums.environment'];
|
|
@@ -14380,6 +14482,7 @@ export const includedLevies = T['io.flow.v0.models.included_levies'];
|
|
|
14380
14482
|
export const includedLevyKey = T['io.flow.v0.enums.included_levy_key'];
|
|
14381
14483
|
export const incoterm = T['io.flow.v0.enums.incoterm'];
|
|
14382
14484
|
export const indirectTax = T['io.flow.v0.models.indirect_tax'];
|
|
14485
|
+
export const individual = T['io.flow.v0.models.individual'];
|
|
14383
14486
|
export const inlineActionConfiguration = T['io.flow.v0.unions.inline_action_configuration'];
|
|
14384
14487
|
export const inlineAuthorizationDetails = T['io.flow.v0.models.inline_authorization_details'];
|
|
14385
14488
|
export const inlineAuthorizationForm = T['io.flow.v0.models.inline_authorization_form'];
|
|
@@ -14453,6 +14556,10 @@ export const klarnaSdkAuthorizationResultActionDetails = T['io.flow.v0.models.kl
|
|
|
14453
14556
|
export const klaviyoLineItem = T['io.flow.v0.models.klaviyo_line_item'];
|
|
14454
14557
|
export const klaviyoOrderContent = T['io.flow.v0.models.klaviyo_order_content'];
|
|
14455
14558
|
export const klaviyoOrderPrices = T['io.flow.v0.models.klaviyo_order_prices'];
|
|
14559
|
+
export const knowYourBusiness = T['io.flow.v0.unions.know_your_business'];
|
|
14560
|
+
export const knowYourBusinessForm = T['io.flow.v0.unions.know_your_business_form'];
|
|
14561
|
+
export const knowYourBusinessUsa = T['io.flow.v0.models.know_your_business_usa'];
|
|
14562
|
+
export const knowYourBusinessUsaForm = T['io.flow.v0.models.know_your_business_usa_form'];
|
|
14456
14563
|
export const kubeHealthcheck = T['io.flow.v0.models.kube-healthcheck'];
|
|
14457
14564
|
export const labelDeletedV2 = T['io.flow.v0.models.label_deleted_v2'];
|
|
14458
14565
|
export const labelFormatDeleted = T['io.flow.v0.models.label_format_deleted'];
|