@flowio/types 11.24.64 → 11.24.66
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 +181 -63
- package/dist/api.d.ts +89 -4
- package/package.json +2 -2
- package/src/api-internal.ts +318 -70
- package/src/api.ts +108 -4
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;
|
|
@@ -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;
|
|
@@ -6249,6 +6310,7 @@ declare namespace io.flow.v0.models {
|
|
|
6249
6310
|
readonly attributes?: Record<string, string>;
|
|
6250
6311
|
readonly authorization_keys?: string[];
|
|
6251
6312
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
6313
|
+
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
6252
6314
|
}
|
|
6253
6315
|
interface OrderFraudStatus {
|
|
6254
6316
|
readonly order: io.flow.v0.models.OrderReference;
|
|
@@ -6438,6 +6500,7 @@ declare namespace io.flow.v0.models {
|
|
|
6438
6500
|
readonly attributes?: Record<string, string>;
|
|
6439
6501
|
readonly authorization_keys?: string[];
|
|
6440
6502
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
6503
|
+
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
6441
6504
|
}
|
|
6442
6505
|
interface OrderQuote {
|
|
6443
6506
|
readonly id: string;
|
|
@@ -6835,6 +6898,10 @@ declare namespace io.flow.v0.models {
|
|
|
6835
6898
|
readonly organization: io.flow.v0.models.OrganizationReference;
|
|
6836
6899
|
readonly transitions: io.flow.v0.models.OnboardingStateTransition[];
|
|
6837
6900
|
readonly current_state: io.flow.v0.unions.OnboardingState;
|
|
6901
|
+
readonly started_at?: string;
|
|
6902
|
+
readonly time_blocked?: number;
|
|
6903
|
+
readonly blocked_since?: string;
|
|
6904
|
+
readonly completed_at?: string;
|
|
6838
6905
|
}
|
|
6839
6906
|
interface OrganizationOnboardingStateDeleted {
|
|
6840
6907
|
readonly discriminator: 'organization_onboarding_state_deleted';
|
|
@@ -9085,6 +9152,7 @@ declare namespace io.flow.v0.models {
|
|
|
9085
9152
|
readonly order_identifier?: string;
|
|
9086
9153
|
readonly fulfillment_key?: string;
|
|
9087
9154
|
readonly shipment_recipient?: io.flow.v0.enums.ShipmentRecipient;
|
|
9155
|
+
readonly created_at?: string;
|
|
9088
9156
|
readonly updated_at?: string;
|
|
9089
9157
|
}
|
|
9090
9158
|
interface ShippingNotificationVersion {
|
|
@@ -10294,7 +10362,8 @@ declare namespace io.flow.v0.unions {
|
|
|
10294
10362
|
type AuthorizationResultAction = io.flow.v0.models.AuthorizationResultActionGet | io.flow.v0.models.AuthorizationResultActionPost | io.flow.v0.models.AuthorizationResultActionWait | io.flow.v0.models.AuthorizationResultActionNative;
|
|
10295
10363
|
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
10364
|
type AvailableFilter = io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured;
|
|
10297
|
-
type
|
|
10365
|
+
type BankAccountForm = io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple;
|
|
10366
|
+
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
10367
|
type BrowserActionConfiguration = io.flow.v0.models.CardBrowserActionConfiguration;
|
|
10299
10368
|
type CardAuthorizationActionResult = io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4;
|
|
10300
10369
|
type CardNumber = io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher;
|
|
@@ -10310,6 +10379,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10310
10379
|
type DiscountRuleEntitlement = io.flow.v0.models.DiscountRuleSubsidyEntitlement;
|
|
10311
10380
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
10312
10381
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
10382
|
+
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
10313
10383
|
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
10384
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
10315
10385
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
@@ -10328,6 +10398,8 @@ declare namespace io.flow.v0.unions {
|
|
|
10328
10398
|
type InlineActionConfiguration = io.flow.v0.models.BrowserInlineActionConfiguration;
|
|
10329
10399
|
type InputSpecificationLimitation = io.flow.v0.models.InputSpecificationLimitationMax;
|
|
10330
10400
|
type InventoryStrategy = io.flow.v0.models.InventoryBackorder | io.flow.v0.models.InventoryStock | io.flow.v0.models.InventoryUnlimited | io.flow.v0.models.InventoryFollowEcommercePlatform;
|
|
10401
|
+
type KnowYourBusiness = io.flow.v0.models.KnowYourBusinessUsa;
|
|
10402
|
+
type KnowYourBusinessForm = io.flow.v0.models.KnowYourBusinessUsaForm;
|
|
10331
10403
|
type LocalizedPrice = io.flow.v0.models.LocalizedItemPrice | io.flow.v0.models.LocalizedItemVat | io.flow.v0.models.LocalizedItemDuty | io.flow.v0.models.LocalizedTotal;
|
|
10332
10404
|
type LogoImage = io.flow.v0.models.LogoImageSvg | io.flow.v0.models.LogoImageSetStatic;
|
|
10333
10405
|
type MerchantApplication = io.flow.v0.models.ShopifyMerchantApplication;
|
|
@@ -10525,8 +10597,14 @@ export declare type B2BInvoiceDeleted = io.flow.v0.models.B2BInvoiceDeleted;
|
|
|
10525
10597
|
export declare type B2BInvoiceReference = io.flow.v0.models.B2BInvoiceReference;
|
|
10526
10598
|
export declare type B2BInvoiceType = io.flow.v0.enums.B2BInvoiceType;
|
|
10527
10599
|
export declare type B2BInvoiceUpserted = io.flow.v0.models.B2BInvoiceUpserted;
|
|
10528
|
-
export declare type BankAccountForm = io.flow.v0.
|
|
10600
|
+
export declare type BankAccountForm = io.flow.v0.unions.BankAccountForm;
|
|
10601
|
+
export declare type BankAccountFormInfo = io.flow.v0.models.BankAccountFormInfo;
|
|
10602
|
+
export declare type BankAccountFormSimple = io.flow.v0.models.BankAccountFormSimple;
|
|
10529
10603
|
export declare type BankAccountInfo = io.flow.v0.unions.BankAccountInfo;
|
|
10604
|
+
export declare type BankAccountInfoCan = io.flow.v0.models.BankAccountInfoCan;
|
|
10605
|
+
export declare type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
10606
|
+
export declare type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
10607
|
+
export declare type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
10530
10608
|
export declare type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
10531
10609
|
export declare type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
10532
10610
|
export declare type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -10670,6 +10748,7 @@ export declare type CheckoutUrls = io.flow.v0.models.CheckoutUrls;
|
|
|
10670
10748
|
export declare type CheckoutUrlsForm = io.flow.v0.models.CheckoutUrlsForm;
|
|
10671
10749
|
export declare type Cleartext = io.flow.v0.models.Cleartext;
|
|
10672
10750
|
export declare type CommercialInvoiceFee = io.flow.v0.models.CommercialInvoiceFee;
|
|
10751
|
+
export declare type Company = io.flow.v0.models.Company;
|
|
10673
10752
|
export declare type ConfirmationDetails = io.flow.v0.unions.ConfirmationDetails;
|
|
10674
10753
|
export declare type ConsumerInvoice = io.flow.v0.models.ConsumerInvoice;
|
|
10675
10754
|
export declare type ConsumerInvoiceCenterReference = io.flow.v0.models.ConsumerInvoiceCenterReference;
|
|
@@ -10852,6 +10931,7 @@ export declare type EmailRecipient = io.flow.v0.models.EmailRecipient;
|
|
|
10852
10931
|
export declare type EmailVerification = io.flow.v0.models.EmailVerification;
|
|
10853
10932
|
export declare type EmergencySituationSurchargeRatecardFee = io.flow.v0.models.EmergencySituationSurchargeRatecardFee;
|
|
10854
10933
|
export declare type EmergencySituationSurchargeServiceFee = io.flow.v0.models.EmergencySituationSurchargeServiceFee;
|
|
10934
|
+
export declare type Entity = io.flow.v0.unions.Entity;
|
|
10855
10935
|
export declare type EntityIdentifier = io.flow.v0.models.EntityIdentifier;
|
|
10856
10936
|
export declare type EntityIdentifierType = io.flow.v0.enums.EntityIdentifierType;
|
|
10857
10937
|
export declare type Environment = io.flow.v0.enums.Environment;
|
|
@@ -11047,6 +11127,7 @@ export declare type IncludedLevies = io.flow.v0.models.IncludedLevies;
|
|
|
11047
11127
|
export declare type IncludedLevyKey = io.flow.v0.enums.IncludedLevyKey;
|
|
11048
11128
|
export declare type Incoterm = io.flow.v0.enums.Incoterm;
|
|
11049
11129
|
export declare type IndirectTax = io.flow.v0.models.IndirectTax;
|
|
11130
|
+
export declare type Individual = io.flow.v0.models.Individual;
|
|
11050
11131
|
export declare type InlineActionConfiguration = io.flow.v0.unions.InlineActionConfiguration;
|
|
11051
11132
|
export declare type InlineAuthorizationDetails = io.flow.v0.models.InlineAuthorizationDetails;
|
|
11052
11133
|
export declare type InlineAuthorizationForm = io.flow.v0.models.InlineAuthorizationForm;
|
|
@@ -11120,6 +11201,10 @@ export declare type KlarnaSdkAuthorizationResultActionDetails = io.flow.v0.model
|
|
|
11120
11201
|
export declare type KlaviyoLineItem = io.flow.v0.models.KlaviyoLineItem;
|
|
11121
11202
|
export declare type KlaviyoOrderContent = io.flow.v0.models.KlaviyoOrderContent;
|
|
11122
11203
|
export declare type KlaviyoOrderPrices = io.flow.v0.models.KlaviyoOrderPrices;
|
|
11204
|
+
export declare type KnowYourBusiness = io.flow.v0.unions.KnowYourBusiness;
|
|
11205
|
+
export declare type KnowYourBusinessForm = io.flow.v0.unions.KnowYourBusinessForm;
|
|
11206
|
+
export declare type KnowYourBusinessUsa = io.flow.v0.models.KnowYourBusinessUsa;
|
|
11207
|
+
export declare type KnowYourBusinessUsaForm = io.flow.v0.models.KnowYourBusinessUsaForm;
|
|
11123
11208
|
export declare type KubeHealthcheck = io.flow.v0.models.KubeHealthcheck;
|
|
11124
11209
|
export declare type LabelDeletedV2 = io.flow.v0.models.LabelDeletedV2;
|
|
11125
11210
|
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.66",
|
|
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": "7f6565913d82602abcf6cfcf8280e9220d20cb30"
|
|
29
29
|
}
|