@flowio/types 11.24.63 → 11.24.65
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/dist/api-internal.d.ts +233 -75
- package/dist/api.d.ts +90 -8
- package/package.json +2 -2
- package/src/api-internal.ts +377 -81
- package/src/api.ts +111 -10
package/dist/api.d.ts
CHANGED
|
@@ -919,6 +919,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
919
919
|
readonly vendor?: string;
|
|
920
920
|
readonly body_html?: string;
|
|
921
921
|
readonly product_type?: string;
|
|
922
|
+
readonly status?: string;
|
|
922
923
|
readonly options: io.flow.shopify.external.v0.models.Option[];
|
|
923
924
|
readonly tags?: string;
|
|
924
925
|
readonly template_suffix?: string;
|
|
@@ -1580,17 +1581,17 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1580
1581
|
}
|
|
1581
1582
|
}
|
|
1582
1583
|
declare namespace io.flow.apple.pay.v0.enums {
|
|
1583
|
-
type ApplePayContactField = 'email' | 'name' | 'phone' | '
|
|
1584
|
+
type ApplePayContactField = 'email' | 'name' | 'phone' | 'postalAddress' | 'phoneticName';
|
|
1584
1585
|
type ApplePayLineItemType = 'final' | 'pending';
|
|
1585
1586
|
type ApplePayMerchantCapability = 'supports3DS' | 'supportsCredit' | 'supportsDebit' | 'supportsEMV';
|
|
1586
|
-
type ApplePayShippingType = 'shipping' | 'delivery' | '
|
|
1587
|
+
type ApplePayShippingType = 'shipping' | 'delivery' | 'storePickup' | 'servicePickup';
|
|
1587
1588
|
type ApplePaySupportedNetworks = 'amex' | 'chinaUnionPay' | 'discover' | 'jcb' | 'masterCard' | 'privateLabel' | 'visa';
|
|
1588
1589
|
}
|
|
1589
1590
|
declare namespace io.flow.apple.pay.v0.models {
|
|
1590
1591
|
interface ApplePayLineItem {
|
|
1591
1592
|
readonly label: string;
|
|
1592
1593
|
readonly type: io.flow.apple.pay.v0.enums.ApplePayLineItemType;
|
|
1593
|
-
readonly amount:
|
|
1594
|
+
readonly amount: string;
|
|
1594
1595
|
}
|
|
1595
1596
|
interface ApplePayPaymentContact {
|
|
1596
1597
|
readonly email_address?: string;
|
|
@@ -1637,7 +1638,7 @@ declare namespace io.flow.apple.pay.v0.models {
|
|
|
1637
1638
|
interface ApplePayShippingMethod {
|
|
1638
1639
|
readonly label: string;
|
|
1639
1640
|
readonly detail: string;
|
|
1640
|
-
readonly amount:
|
|
1641
|
+
readonly amount: string;
|
|
1641
1642
|
readonly identifier: string;
|
|
1642
1643
|
}
|
|
1643
1644
|
}
|
|
@@ -1781,7 +1782,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1781
1782
|
type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
|
|
1782
1783
|
type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
|
|
1783
1784
|
type PayoutAttachmentType = 'transactions';
|
|
1784
|
-
type PayoutStatusFailureCode = 'invalid_account_number' | 'could_not_process';
|
|
1785
|
+
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
1785
1786
|
type PermittedHttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
|
|
1786
1787
|
type PhysicalDeliverySpecialSerivce = 'cold_storage' | 'hazardous' | 'perishable';
|
|
1787
1788
|
type PostalType = 'eircode' | 'pin' | 'postal' | 'zip';
|
|
@@ -2520,9 +2521,35 @@ declare namespace io.flow.v0.models {
|
|
|
2520
2521
|
readonly organization: string;
|
|
2521
2522
|
readonly b2b_invoice: io.flow.v0.models.B2BInvoice;
|
|
2522
2523
|
}
|
|
2523
|
-
interface
|
|
2524
|
+
interface BankAccountFormInfo {
|
|
2525
|
+
readonly discriminator: 'info';
|
|
2524
2526
|
readonly info: io.flow.v0.unions.BankAccountInfo;
|
|
2525
2527
|
}
|
|
2528
|
+
interface BankAccountFormSimple {
|
|
2529
|
+
readonly discriminator: 'simple';
|
|
2530
|
+
readonly routing_number: string;
|
|
2531
|
+
readonly account_number: string;
|
|
2532
|
+
}
|
|
2533
|
+
interface BankAccountInfoCan {
|
|
2534
|
+
readonly discriminator: 'can';
|
|
2535
|
+
readonly routing_number: string;
|
|
2536
|
+
readonly account_number: string;
|
|
2537
|
+
}
|
|
2538
|
+
interface BankAccountInfoFra {
|
|
2539
|
+
readonly discriminator: 'fra';
|
|
2540
|
+
readonly swift_code: string;
|
|
2541
|
+
readonly iban: string;
|
|
2542
|
+
}
|
|
2543
|
+
interface BankAccountInfoGbr {
|
|
2544
|
+
readonly discriminator: 'gbr';
|
|
2545
|
+
readonly swift_code: string;
|
|
2546
|
+
readonly iban: string;
|
|
2547
|
+
}
|
|
2548
|
+
interface BankAccountInfoIta {
|
|
2549
|
+
readonly discriminator: 'ita';
|
|
2550
|
+
readonly swift_code: string;
|
|
2551
|
+
readonly iban: string;
|
|
2552
|
+
}
|
|
2526
2553
|
interface BankAccountInfoUsa {
|
|
2527
2554
|
readonly discriminator: 'usa';
|
|
2528
2555
|
readonly routing_number: string;
|
|
@@ -3353,6 +3380,13 @@ declare namespace io.flow.v0.models {
|
|
|
3353
3380
|
readonly discriminator: 'commercial_invoice_fee';
|
|
3354
3381
|
readonly amount: io.flow.v0.models.Money;
|
|
3355
3382
|
}
|
|
3383
|
+
interface Company {
|
|
3384
|
+
readonly discriminator: 'company';
|
|
3385
|
+
readonly legal_name: string;
|
|
3386
|
+
readonly incorporation_country: string;
|
|
3387
|
+
readonly incorporation_jurisdiction: string;
|
|
3388
|
+
readonly tax_registration_number: string;
|
|
3389
|
+
}
|
|
3356
3390
|
interface ConsumerInvoice {
|
|
3357
3391
|
readonly id: string;
|
|
3358
3392
|
readonly number: string;
|
|
@@ -5084,6 +5118,12 @@ declare namespace io.flow.v0.models {
|
|
|
5084
5118
|
readonly number?: string;
|
|
5085
5119
|
readonly id?: string;
|
|
5086
5120
|
}
|
|
5121
|
+
interface Individual {
|
|
5122
|
+
readonly discriminator: 'individual';
|
|
5123
|
+
readonly legal_name: string;
|
|
5124
|
+
readonly tax_registration_number?: string;
|
|
5125
|
+
readonly date_of_birth: string;
|
|
5126
|
+
}
|
|
5087
5127
|
interface InlineAuthorizationDetails {
|
|
5088
5128
|
readonly discriminator: 'inline_authorization_details';
|
|
5089
5129
|
readonly id: string;
|
|
@@ -5472,6 +5512,25 @@ declare namespace io.flow.v0.models {
|
|
|
5472
5512
|
readonly insurance?: io.flow.v0.models.PriceWithBase;
|
|
5473
5513
|
readonly total: io.flow.v0.models.PriceWithBase;
|
|
5474
5514
|
}
|
|
5515
|
+
interface KnowYourBusinessUsa {
|
|
5516
|
+
readonly discriminator: 'know_your_business_usa';
|
|
5517
|
+
readonly id: string;
|
|
5518
|
+
readonly primary_entity: io.flow.v0.unions.Entity;
|
|
5519
|
+
readonly parent_company?: io.flow.v0.models.Company;
|
|
5520
|
+
readonly ultimate_parent_company?: io.flow.v0.models.Company;
|
|
5521
|
+
readonly ultimate_beneficiary_owner: io.flow.v0.models.Individual;
|
|
5522
|
+
readonly business_url: string;
|
|
5523
|
+
readonly business_address: io.flow.v0.models.Address;
|
|
5524
|
+
}
|
|
5525
|
+
interface KnowYourBusinessUsaForm {
|
|
5526
|
+
readonly discriminator: 'know_your_business_usa_form';
|
|
5527
|
+
readonly primary_entity: io.flow.v0.unions.Entity;
|
|
5528
|
+
readonly parent_company?: io.flow.v0.models.Company;
|
|
5529
|
+
readonly ultimate_parent_company?: io.flow.v0.models.Company;
|
|
5530
|
+
readonly ultimate_beneficiary_owner: io.flow.v0.models.Individual;
|
|
5531
|
+
readonly business_url: string;
|
|
5532
|
+
readonly business_address: io.flow.v0.models.Address;
|
|
5533
|
+
}
|
|
5475
5534
|
interface KubeHealthcheck {
|
|
5476
5535
|
readonly status: string;
|
|
5477
5536
|
}
|
|
@@ -6034,6 +6093,7 @@ declare namespace io.flow.v0.models {
|
|
|
6034
6093
|
readonly status: io.flow.v0.enums.OrganizationStatus;
|
|
6035
6094
|
}
|
|
6036
6095
|
interface OnboardingStateTransition {
|
|
6096
|
+
readonly id: string;
|
|
6037
6097
|
readonly state: io.flow.v0.unions.OnboardingState;
|
|
6038
6098
|
readonly started_at: string;
|
|
6039
6099
|
}
|
|
@@ -6127,6 +6187,7 @@ declare namespace io.flow.v0.models {
|
|
|
6127
6187
|
readonly rules?: io.flow.v0.models.OrderRulesSummary;
|
|
6128
6188
|
readonly tax_registration?: io.flow.v0.models.TaxRegistration;
|
|
6129
6189
|
readonly geo?: io.flow.v0.models.OrderGeo;
|
|
6190
|
+
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
6130
6191
|
}
|
|
6131
6192
|
interface OrderAddress {
|
|
6132
6193
|
readonly text?: string;
|
|
@@ -6835,6 +6896,10 @@ declare namespace io.flow.v0.models {
|
|
|
6835
6896
|
readonly organization: io.flow.v0.models.OrganizationReference;
|
|
6836
6897
|
readonly transitions: io.flow.v0.models.OnboardingStateTransition[];
|
|
6837
6898
|
readonly current_state: io.flow.v0.unions.OnboardingState;
|
|
6899
|
+
readonly started_at?: string;
|
|
6900
|
+
readonly time_blocked?: number;
|
|
6901
|
+
readonly blocked_since?: string;
|
|
6902
|
+
readonly completed_at?: string;
|
|
6838
6903
|
}
|
|
6839
6904
|
interface OrganizationOnboardingStateDeleted {
|
|
6840
6905
|
readonly discriminator: 'organization_onboarding_state_deleted';
|
|
@@ -10294,7 +10359,8 @@ declare namespace io.flow.v0.unions {
|
|
|
10294
10359
|
type AuthorizationResultAction = io.flow.v0.models.AuthorizationResultActionGet | io.flow.v0.models.AuthorizationResultActionPost | io.flow.v0.models.AuthorizationResultActionWait | io.flow.v0.models.AuthorizationResultActionNative;
|
|
10295
10360
|
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;
|
|
10296
10361
|
type AvailableFilter = io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured;
|
|
10297
|
-
type
|
|
10362
|
+
type BankAccountForm = io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple;
|
|
10363
|
+
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;
|
|
10298
10364
|
type BrowserActionConfiguration = io.flow.v0.models.CardBrowserActionConfiguration;
|
|
10299
10365
|
type CardAuthorizationActionResult = io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4;
|
|
10300
10366
|
type CardNumber = io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher;
|
|
@@ -10310,6 +10376,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10310
10376
|
type DiscountRuleEntitlement = io.flow.v0.models.DiscountRuleSubsidyEntitlement;
|
|
10311
10377
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
10312
10378
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
10379
|
+
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
10313
10380
|
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;
|
|
10314
10381
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
10315
10382
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
@@ -10328,6 +10395,8 @@ declare namespace io.flow.v0.unions {
|
|
|
10328
10395
|
type InlineActionConfiguration = io.flow.v0.models.BrowserInlineActionConfiguration;
|
|
10329
10396
|
type InputSpecificationLimitation = io.flow.v0.models.InputSpecificationLimitationMax;
|
|
10330
10397
|
type InventoryStrategy = io.flow.v0.models.InventoryBackorder | io.flow.v0.models.InventoryStock | io.flow.v0.models.InventoryUnlimited | io.flow.v0.models.InventoryFollowEcommercePlatform;
|
|
10398
|
+
type KnowYourBusiness = io.flow.v0.models.KnowYourBusinessUsa;
|
|
10399
|
+
type KnowYourBusinessForm = io.flow.v0.models.KnowYourBusinessUsaForm;
|
|
10331
10400
|
type LocalizedPrice = io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal;
|
|
10332
10401
|
type LogoImage = io.flow.v0.models.LogoImageSvg | io.flow.v0.models.LogoImageSetStatic;
|
|
10333
10402
|
type MerchantApplication = io.flow.v0.models.ShopifyMerchantApplication;
|
|
@@ -10525,8 +10594,14 @@ export declare type B2BInvoiceDeleted = io.flow.v0.models.B2BInvoiceDeleted;
|
|
|
10525
10594
|
export declare type B2BInvoiceReference = io.flow.v0.models.B2BInvoiceReference;
|
|
10526
10595
|
export declare type B2BInvoiceType = io.flow.v0.enums.B2BInvoiceType;
|
|
10527
10596
|
export declare type B2BInvoiceUpserted = io.flow.v0.models.B2BInvoiceUpserted;
|
|
10528
|
-
export declare type BankAccountForm = io.flow.v0.
|
|
10597
|
+
export declare type BankAccountForm = io.flow.v0.unions.BankAccountForm;
|
|
10598
|
+
export declare type BankAccountFormInfo = io.flow.v0.models.BankAccountFormInfo;
|
|
10599
|
+
export declare type BankAccountFormSimple = io.flow.v0.models.BankAccountFormSimple;
|
|
10529
10600
|
export declare type BankAccountInfo = io.flow.v0.unions.BankAccountInfo;
|
|
10601
|
+
export declare type BankAccountInfoCan = io.flow.v0.models.BankAccountInfoCan;
|
|
10602
|
+
export declare type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
10603
|
+
export declare type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
10604
|
+
export declare type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
10530
10605
|
export declare type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
10531
10606
|
export declare type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
10532
10607
|
export declare type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -10670,6 +10745,7 @@ export declare type CheckoutUrls = io.flow.v0.models.CheckoutUrls;
|
|
|
10670
10745
|
export declare type CheckoutUrlsForm = io.flow.v0.models.CheckoutUrlsForm;
|
|
10671
10746
|
export declare type Cleartext = io.flow.v0.models.Cleartext;
|
|
10672
10747
|
export declare type CommercialInvoiceFee = io.flow.v0.models.CommercialInvoiceFee;
|
|
10748
|
+
export declare type Company = io.flow.v0.models.Company;
|
|
10673
10749
|
export declare type ConfirmationDetails = io.flow.v0.unions.ConfirmationDetails;
|
|
10674
10750
|
export declare type ConsumerInvoice = io.flow.v0.models.ConsumerInvoice;
|
|
10675
10751
|
export declare type ConsumerInvoiceCenterReference = io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
@@ -10852,6 +10928,7 @@ export declare type EmailRecipient = io.flow.v0.models.EmailRecipient;
|
|
|
10852
10928
|
export declare type EmailVerification = io.flow.v0.models.EmailVerification;
|
|
10853
10929
|
export declare type EmergencySituationSurchargeRatecardFee = io.flow.v0.models.EmergencySituationSurchargeRatecardFee;
|
|
10854
10930
|
export declare type EmergencySituationSurchargeServiceFee = io.flow.v0.models.EmergencySituationSurchargeServiceFee;
|
|
10931
|
+
export declare type Entity = io.flow.v0.unions.Entity;
|
|
10855
10932
|
export declare type EntityIdentifier = io.flow.v0.models.EntityIdentifier;
|
|
10856
10933
|
export declare type EntityIdentifierType = io.flow.v0.enums.EntityIdentifierType;
|
|
10857
10934
|
export declare type Environment = io.flow.v0.enums.Environment;
|
|
@@ -11047,6 +11124,7 @@ export declare type IncludedLevies = io.flow.v0.models.IncludedLevies;
|
|
|
11047
11124
|
export declare type IncludedLevyKey = io.flow.v0.enums.IncludedLevyKey;
|
|
11048
11125
|
export declare type Incoterm = io.flow.v0.enums.Incoterm;
|
|
11049
11126
|
export declare type IndirectTax = io.flow.v0.models.IndirectTax;
|
|
11127
|
+
export declare type Individual = io.flow.v0.models.Individual;
|
|
11050
11128
|
export declare type InlineActionConfiguration = io.flow.v0.unions.InlineActionConfiguration;
|
|
11051
11129
|
export declare type InlineAuthorizationDetails = io.flow.v0.models.InlineAuthorizationDetails;
|
|
11052
11130
|
export declare type InlineAuthorizationForm = io.flow.v0.models.InlineAuthorizationForm;
|
|
@@ -11120,6 +11198,10 @@ export declare type KlarnaSdkAuthorizationResultActionDetails = io.flow.v0.model
|
|
|
11120
11198
|
export declare type KlaviyoLineItem = io.flow.v0.models.KlaviyoLineItem;
|
|
11121
11199
|
export declare type KlaviyoOrderContent = io.flow.v0.models.KlaviyoOrderContent;
|
|
11122
11200
|
export declare type KlaviyoOrderPrices = io.flow.v0.models.KlaviyoOrderPrices;
|
|
11201
|
+
export declare type KnowYourBusiness = io.flow.v0.unions.KnowYourBusiness;
|
|
11202
|
+
export declare type KnowYourBusinessForm = io.flow.v0.unions.KnowYourBusinessForm;
|
|
11203
|
+
export declare type KnowYourBusinessUsa = io.flow.v0.models.KnowYourBusinessUsa;
|
|
11204
|
+
export declare type KnowYourBusinessUsaForm = io.flow.v0.models.KnowYourBusinessUsaForm;
|
|
11123
11205
|
export declare type KubeHealthcheck = io.flow.v0.models.KubeHealthcheck;
|
|
11124
11206
|
export declare type LabelDeletedV2 = io.flow.v0.models.LabelDeletedV2;
|
|
11125
11207
|
export declare type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.65",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "da7211cba1d8423ba244292d986d596a1a431354"
|
|
29
29
|
}
|