@flowio/types 11.24.30 → 11.24.32
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 +92 -38
- package/dist/api.d.ts +37 -22
- package/package.json +2 -2
- package/src/api-internal.ts +102 -38
- package/src/api.ts +42 -23
package/dist/api-internal.d.ts
CHANGED
|
@@ -1696,9 +1696,12 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1696
1696
|
}
|
|
1697
1697
|
interface DirectDebit {
|
|
1698
1698
|
readonly discriminator: 'direct_debit';
|
|
1699
|
-
readonly
|
|
1700
|
-
readonly
|
|
1701
|
-
readonly
|
|
1699
|
+
readonly bank_name?: string;
|
|
1700
|
+
readonly bic?: string;
|
|
1701
|
+
readonly iban?: string;
|
|
1702
|
+
readonly routing_number?: string;
|
|
1703
|
+
readonly last4?: string;
|
|
1704
|
+
readonly account_holder_name?: string;
|
|
1702
1705
|
}
|
|
1703
1706
|
interface Expiration {
|
|
1704
1707
|
readonly month: number;
|
|
@@ -1802,6 +1805,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1802
1805
|
readonly expires_at?: string;
|
|
1803
1806
|
readonly base?: io.flow.common.v0.models.Money;
|
|
1804
1807
|
readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
|
|
1808
|
+
readonly confirmation_details?: io.flow.payment.v0.unions.ConfirmationDetails;
|
|
1805
1809
|
}
|
|
1806
1810
|
interface OnlinePaymentAuthorizationForm {
|
|
1807
1811
|
readonly discriminator: 'online_payment_authorization_form';
|
|
@@ -1900,7 +1904,6 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1900
1904
|
readonly discriminator: 'redirect_authorization_details';
|
|
1901
1905
|
readonly id: string;
|
|
1902
1906
|
readonly payment_redirect_url: string;
|
|
1903
|
-
readonly confirmation_details?: io.flow.payment.v0.unions.ConfirmationDetails;
|
|
1904
1907
|
}
|
|
1905
1908
|
interface RedirectAuthorizationForm {
|
|
1906
1909
|
readonly discriminator: 'redirect_authorization_form';
|
|
@@ -2521,7 +2524,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2521
2524
|
readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
2522
2525
|
readonly payment_method_types?: string[];
|
|
2523
2526
|
readonly receipt_email?: string;
|
|
2524
|
-
readonly save_payment_method
|
|
2527
|
+
readonly save_payment_method: boolean;
|
|
2525
2528
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2526
2529
|
}
|
|
2527
2530
|
interface PaymentIntentForm {
|
|
@@ -2541,7 +2544,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2541
2544
|
readonly payment_method_types?: string[];
|
|
2542
2545
|
readonly receipt_email?: string;
|
|
2543
2546
|
readonly return_url?: string;
|
|
2544
|
-
readonly save_payment_method
|
|
2547
|
+
readonly save_payment_method: boolean;
|
|
2545
2548
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
2546
2549
|
readonly statement_descriptor?: string;
|
|
2547
2550
|
readonly statement_descriptor_suffix?: string;
|
|
@@ -2557,7 +2560,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
2557
2560
|
readonly payment_method?: string;
|
|
2558
2561
|
readonly payment_method_types?: string[];
|
|
2559
2562
|
readonly receipt_email?: string;
|
|
2560
|
-
readonly save_payment_method
|
|
2563
|
+
readonly save_payment_method: boolean;
|
|
2561
2564
|
readonly statement_descriptor?: string;
|
|
2562
2565
|
readonly statement_descriptor_suffix?: string;
|
|
2563
2566
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
@@ -3541,14 +3544,14 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
3541
3544
|
readonly currency: string;
|
|
3542
3545
|
readonly posData?: string;
|
|
3543
3546
|
readonly notificationURL?: string;
|
|
3544
|
-
readonly transactionSpeed
|
|
3547
|
+
readonly transactionSpeed: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
3545
3548
|
readonly fullNotifications?: boolean;
|
|
3546
3549
|
readonly notificationEmail?: string;
|
|
3547
3550
|
readonly redirectURL?: string;
|
|
3548
3551
|
readonly orderId?: string;
|
|
3549
3552
|
readonly itemDesc?: string;
|
|
3550
3553
|
readonly itemCode?: string;
|
|
3551
|
-
readonly physical
|
|
3554
|
+
readonly physical: boolean;
|
|
3552
3555
|
readonly buyerName?: string;
|
|
3553
3556
|
readonly buyerAddress1?: string;
|
|
3554
3557
|
readonly buyerAddress2?: string;
|
|
@@ -3599,12 +3602,12 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
3599
3602
|
readonly currency: string;
|
|
3600
3603
|
readonly posData?: string;
|
|
3601
3604
|
readonly notificationURL?: string;
|
|
3602
|
-
readonly transactionSpeed
|
|
3605
|
+
readonly transactionSpeed: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
3603
3606
|
readonly fullNotifications?: boolean;
|
|
3604
3607
|
readonly extendedNotifications?: boolean;
|
|
3605
3608
|
readonly redirectURL?: string;
|
|
3606
3609
|
readonly orderId?: string;
|
|
3607
|
-
readonly physical
|
|
3610
|
+
readonly physical: boolean;
|
|
3608
3611
|
readonly buyerName?: string;
|
|
3609
3612
|
readonly buyerAddress1?: string;
|
|
3610
3613
|
readonly buyerAddress2?: string;
|
|
@@ -4018,6 +4021,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4018
4021
|
readonly avsResult?: string;
|
|
4019
4022
|
readonly cvcResultRaw?: string;
|
|
4020
4023
|
readonly cvcResult?: string;
|
|
4024
|
+
readonly refusalReasonRaw?: string;
|
|
4021
4025
|
readonly liabilityShift?: string;
|
|
4022
4026
|
readonly threeDAuthenticated?: string;
|
|
4023
4027
|
readonly threeDAuthenticatedResponse?: string;
|
|
@@ -4045,6 +4049,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
4045
4049
|
readonly issuerCountry?: string;
|
|
4046
4050
|
readonly iban?: string;
|
|
4047
4051
|
readonly bic?: string;
|
|
4052
|
+
readonly iDealConsumerAccountNumber?: string;
|
|
4053
|
+
readonly iDealConsumerBIC?: string;
|
|
4054
|
+
readonly iDealConsumerCity?: string;
|
|
4055
|
+
readonly iDealConsumerIBAN?: string;
|
|
4056
|
+
readonly iDealConsumerName?: string;
|
|
4057
|
+
readonly iDealTransactionId?: string;
|
|
4048
4058
|
}
|
|
4049
4059
|
interface Recurring {
|
|
4050
4060
|
readonly contract: io.flow.adyen.v0.enums.Contract;
|
|
@@ -4285,7 +4295,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4285
4295
|
interface Product {
|
|
4286
4296
|
readonly id: number;
|
|
4287
4297
|
readonly handle: string;
|
|
4288
|
-
readonly variants
|
|
4298
|
+
readonly variants: io.flow.shopify.external.v0.models.ProductVariant[];
|
|
4289
4299
|
readonly images: io.flow.shopify.external.v0.models.ProductImage[];
|
|
4290
4300
|
readonly title: string;
|
|
4291
4301
|
readonly vendor?: string;
|
|
@@ -4440,7 +4450,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4440
4450
|
readonly title: string;
|
|
4441
4451
|
}
|
|
4442
4452
|
interface ShopifyClientDetail {
|
|
4443
|
-
readonly accept_language
|
|
4453
|
+
readonly accept_language: boolean;
|
|
4444
4454
|
readonly browser_height?: number;
|
|
4445
4455
|
readonly browser_ip?: string;
|
|
4446
4456
|
readonly browser_width?: number;
|
|
@@ -4455,7 +4465,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4455
4465
|
readonly tax_exempt: boolean;
|
|
4456
4466
|
readonly verified_email: boolean;
|
|
4457
4467
|
readonly state: io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
4458
|
-
readonly accepts_marketing
|
|
4468
|
+
readonly accepts_marketing: boolean;
|
|
4459
4469
|
readonly default_address?: any;
|
|
4460
4470
|
readonly email?: string;
|
|
4461
4471
|
readonly first_name?: string;
|
|
@@ -4527,7 +4537,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4527
4537
|
readonly requires_shipping: boolean;
|
|
4528
4538
|
readonly currency?: string;
|
|
4529
4539
|
readonly items: io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
4530
|
-
readonly cart_level_discount_applications
|
|
4540
|
+
readonly cart_level_discount_applications: io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
4531
4541
|
}
|
|
4532
4542
|
interface ShopifyExternalCartItem {
|
|
4533
4543
|
readonly id: number;
|
|
@@ -4541,7 +4551,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4541
4551
|
readonly original_line_price: number;
|
|
4542
4552
|
readonly total_discount: number;
|
|
4543
4553
|
readonly discounted_price: number;
|
|
4544
|
-
readonly discounts
|
|
4554
|
+
readonly discounts: io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
4545
4555
|
readonly taxable: boolean;
|
|
4546
4556
|
readonly quantity: number;
|
|
4547
4557
|
readonly sku?: string;
|
|
@@ -4559,8 +4569,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4559
4569
|
readonly product_description?: string;
|
|
4560
4570
|
readonly product_type: string;
|
|
4561
4571
|
readonly variant_title?: string;
|
|
4562
|
-
readonly variant_options
|
|
4563
|
-
readonly line_level_discount_allocations
|
|
4572
|
+
readonly variant_options: string[];
|
|
4573
|
+
readonly line_level_discount_allocations: io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
4564
4574
|
}
|
|
4565
4575
|
interface ShopifyFulfillment {
|
|
4566
4576
|
readonly location_id: number;
|
|
@@ -4780,11 +4790,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4780
4790
|
readonly updated_at?: string;
|
|
4781
4791
|
readonly user_id?: number;
|
|
4782
4792
|
readonly order_status_url?: string;
|
|
4783
|
-
readonly inventory_behaviour
|
|
4793
|
+
readonly inventory_behaviour: io.flow.shopify.external.v0.enums.InventoryBehaviour;
|
|
4784
4794
|
readonly gateway?: string;
|
|
4785
4795
|
readonly transactions?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
4786
4796
|
readonly send_receipt?: boolean;
|
|
4787
|
-
readonly metafields
|
|
4797
|
+
readonly metafields: io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
4788
4798
|
}
|
|
4789
4799
|
interface ShopifyOrderCount {
|
|
4790
4800
|
readonly count: number;
|
|
@@ -4905,7 +4915,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4905
4915
|
}
|
|
4906
4916
|
interface ShopifyWebhookOrder {
|
|
4907
4917
|
readonly id?: number;
|
|
4908
|
-
readonly line_items
|
|
4918
|
+
readonly line_items: io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
4909
4919
|
}
|
|
4910
4920
|
interface ShopifyWebhookOrderCancelled {
|
|
4911
4921
|
readonly id: number;
|
|
@@ -4992,10 +5002,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
4992
5002
|
readonly shop_id: number;
|
|
4993
5003
|
readonly fulfillment_order_id: number;
|
|
4994
5004
|
readonly line_item_id: number;
|
|
4995
|
-
readonly inventory_item_id
|
|
5005
|
+
readonly inventory_item_id?: number;
|
|
4996
5006
|
readonly quantity: number;
|
|
4997
5007
|
readonly fulfillable_quantity: number;
|
|
4998
|
-
readonly variant_id
|
|
5008
|
+
readonly variant_id?: number;
|
|
4999
5009
|
}
|
|
5000
5010
|
interface ResponseShopifyTransactions {
|
|
5001
5011
|
readonly transactions: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction[];
|
|
@@ -5174,7 +5184,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5174
5184
|
readonly updated_at?: string;
|
|
5175
5185
|
readonly user_id?: number;
|
|
5176
5186
|
readonly order_status_url?: string;
|
|
5177
|
-
readonly inventory_behaviour
|
|
5187
|
+
readonly inventory_behaviour: io.flow.shopify.markets.v0.enums.ShopifyOrderInventoryBehaviour;
|
|
5178
5188
|
readonly gateway?: string;
|
|
5179
5189
|
readonly transactions?: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction[];
|
|
5180
5190
|
readonly send_receipt?: boolean;
|
|
@@ -5208,7 +5218,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5208
5218
|
readonly refund: io.flow.shopify.markets.v0.models.ShopifyRefund;
|
|
5209
5219
|
}
|
|
5210
5220
|
interface ShopifyOrderClientDetail {
|
|
5211
|
-
readonly accept_language
|
|
5221
|
+
readonly accept_language: string;
|
|
5212
5222
|
readonly browser_height?: number;
|
|
5213
5223
|
readonly browser_ip?: string;
|
|
5214
5224
|
readonly browser_width?: number;
|
|
@@ -7715,7 +7725,7 @@ declare namespace io.flow.crypto.v0.enums {
|
|
|
7715
7725
|
type PaymentStatus = 'pending' | 'succeeded' | 'cancelled';
|
|
7716
7726
|
type ReasonType = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
7717
7727
|
type RefundStatus = 'pending' | 'succeeded';
|
|
7718
|
-
type WebhookEventName = 'payment.created' | 'payment.captured' | 'payment.refund_requested' | 'payment.refund_transferred';
|
|
7728
|
+
type WebhookEventName = 'payment.created' | 'payment.fulfilled' | 'payment.captured' | 'payment.refund_requested' | 'payment.refund_transferred';
|
|
7719
7729
|
type WebhookObjectType = 'event';
|
|
7720
7730
|
}
|
|
7721
7731
|
declare namespace io.flow.crypto.v0.models {
|
|
@@ -10032,6 +10042,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10032
10042
|
type OrderAttributeIntent = 'discount_code';
|
|
10033
10043
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
10034
10044
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
10045
|
+
type OrderTransactionType = 'adjustment' | 'order_service';
|
|
10035
10046
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
10036
10047
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
10037
10048
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
@@ -10085,7 +10096,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10085
10096
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
10086
10097
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
10087
10098
|
type TariffEligibilityType = 'rex';
|
|
10088
|
-
type TaskProcessorKey = 'billing_account';
|
|
10099
|
+
type TaskProcessorKey = 'billing_account' | 'carrier_account';
|
|
10089
10100
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
10090
10101
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
10091
10102
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
@@ -10845,6 +10856,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10845
10856
|
readonly number: string;
|
|
10846
10857
|
readonly submitted_at: string;
|
|
10847
10858
|
readonly primary_identifier?: string;
|
|
10859
|
+
readonly identifiers?: Record<string, string>;
|
|
10848
10860
|
readonly destination?: io.flow.internal.v0.models.BillingOrderDestination;
|
|
10849
10861
|
}
|
|
10850
10862
|
interface BillingOrderTransactionOrderReference {
|
|
@@ -10902,13 +10914,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10902
10914
|
readonly organization: string;
|
|
10903
10915
|
readonly settings: io.flow.internal.v0.models.BillingOrganizationSettings;
|
|
10904
10916
|
}
|
|
10905
|
-
interface BillingStatement {
|
|
10906
|
-
readonly id: string;
|
|
10907
|
-
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
10908
|
-
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
10909
|
-
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
10910
|
-
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
10911
|
-
}
|
|
10912
10917
|
interface BillingStatementAttachment {
|
|
10913
10918
|
readonly key: io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
10914
10919
|
readonly name: string;
|
|
@@ -10926,7 +10931,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10926
10931
|
}
|
|
10927
10932
|
interface BillingStatementPendingReview {
|
|
10928
10933
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
10929
|
-
readonly statement: io.flow.internal.v0.models.
|
|
10934
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementSummary;
|
|
10930
10935
|
}
|
|
10931
10936
|
interface BillingStatementReference {
|
|
10932
10937
|
readonly id: string;
|
|
@@ -10941,6 +10946,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10941
10946
|
readonly reviewed_by_id: string;
|
|
10942
10947
|
readonly reviewed_at: string;
|
|
10943
10948
|
}
|
|
10949
|
+
interface BillingStatementSummary {
|
|
10950
|
+
readonly id: string;
|
|
10951
|
+
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
10952
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
10953
|
+
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
10954
|
+
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
10955
|
+
}
|
|
10944
10956
|
interface BillingStatementTotals {
|
|
10945
10957
|
readonly starting_balance: io.flow.common.v0.models.Price;
|
|
10946
10958
|
readonly subscription: io.flow.common.v0.models.Price;
|
|
@@ -10965,7 +10977,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10965
10977
|
readonly discriminator: 'billing_statement_upserted';
|
|
10966
10978
|
readonly event_id: string;
|
|
10967
10979
|
readonly timestamp: string;
|
|
10968
|
-
readonly statement: io.flow.internal.v0.models.
|
|
10980
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementSummary;
|
|
10969
10981
|
}
|
|
10970
10982
|
interface BillingTransaction {
|
|
10971
10983
|
readonly id: string;
|
|
@@ -11209,6 +11221,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11209
11221
|
interface BrowserBundlePaymentMethods {
|
|
11210
11222
|
readonly displayed?: io.flow.internal.v0.models.BrowserBundlePaymentMethod[];
|
|
11211
11223
|
}
|
|
11224
|
+
interface ByRuleSnapshot {
|
|
11225
|
+
readonly id: string;
|
|
11226
|
+
readonly name: string;
|
|
11227
|
+
readonly open_decision_count: number;
|
|
11228
|
+
readonly restricted_product_count: number;
|
|
11229
|
+
}
|
|
11212
11230
|
interface CalculatedTaxAmount {
|
|
11213
11231
|
readonly discriminator: 'calculated_tax_amount';
|
|
11214
11232
|
readonly amount: number;
|
|
@@ -11341,6 +11359,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11341
11359
|
readonly timestamp: string;
|
|
11342
11360
|
readonly channel_account: io.flow.internal.v0.models.ChannelAccount;
|
|
11343
11361
|
}
|
|
11362
|
+
interface ChannelBillingStatement {
|
|
11363
|
+
readonly id: string;
|
|
11364
|
+
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
11365
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
11366
|
+
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
11367
|
+
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
11368
|
+
}
|
|
11344
11369
|
interface ChannelCurrencyForm {
|
|
11345
11370
|
readonly currency: string;
|
|
11346
11371
|
readonly channel_id: string;
|
|
@@ -16641,6 +16666,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16641
16666
|
readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
16642
16667
|
readonly messages: io.flow.internal.v0.models.OnboardingAuditMessage[];
|
|
16643
16668
|
}
|
|
16669
|
+
interface OnboardingAuditSnapshot {
|
|
16670
|
+
readonly id: string;
|
|
16671
|
+
readonly organization: io.flow.common.v0.models.Organization;
|
|
16672
|
+
readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
16673
|
+
readonly theme_reports: io.flow.internal.v0.models.OnboardingAuditThemeReport[];
|
|
16674
|
+
readonly requested_by: io.flow.common.v0.models.User;
|
|
16675
|
+
readonly requested_at: string;
|
|
16676
|
+
}
|
|
16644
16677
|
interface OnboardingAuditThemeReport {
|
|
16645
16678
|
readonly name: string;
|
|
16646
16679
|
readonly key: io.flow.internal.v0.enums.OnboardingAuditThemeKey;
|
|
@@ -16883,7 +16916,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16883
16916
|
readonly organization_account: io.flow.internal.v0.models.OrganizationAccount;
|
|
16884
16917
|
}
|
|
16885
16918
|
interface OrganizationBillingStatement {
|
|
16886
|
-
readonly
|
|
16919
|
+
readonly id: string;
|
|
16920
|
+
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
16921
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
16922
|
+
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
16923
|
+
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
16887
16924
|
}
|
|
16888
16925
|
interface OrganizationBooleanValue {
|
|
16889
16926
|
readonly id: string;
|
|
@@ -16970,6 +17007,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16970
17007
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
16971
17008
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
16972
17009
|
}
|
|
17010
|
+
interface OrganizationRestrictionSnapshot {
|
|
17011
|
+
readonly organization_id: string;
|
|
17012
|
+
readonly organization_channel_id: string;
|
|
17013
|
+
readonly organization_status: string;
|
|
17014
|
+
readonly product_count: number;
|
|
17015
|
+
readonly open_decision_count: number;
|
|
17016
|
+
readonly restricted_product_count: number;
|
|
17017
|
+
readonly count_by_rule: io.flow.internal.v0.models.ByRuleSnapshot[];
|
|
17018
|
+
readonly earliest_pending_decision_date: string;
|
|
17019
|
+
readonly earliest_product_receipt_date: string;
|
|
17020
|
+
readonly date: string;
|
|
17021
|
+
}
|
|
16973
17022
|
interface OrganizationRestrictionSummary {
|
|
16974
17023
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
16975
17024
|
readonly earliest_date: string;
|
|
@@ -19601,7 +19650,6 @@ export declare type BillingOrganizationProcessingRatesUpserted = io.flow.interna
|
|
|
19601
19650
|
export declare type BillingOrganizationSettings = io.flow.internal.v0.models.BillingOrganizationSettings;
|
|
19602
19651
|
export declare type BillingOrganizationSettingsDeleted = io.flow.internal.v0.models.BillingOrganizationSettingsDeleted;
|
|
19603
19652
|
export declare type BillingOrganizationSettingsUpserted = io.flow.internal.v0.models.BillingOrganizationSettingsUpserted;
|
|
19604
|
-
export declare type BillingStatement = io.flow.internal.v0.models.BillingStatement;
|
|
19605
19653
|
export declare type BillingStatementAttachment = io.flow.internal.v0.models.BillingStatementAttachment;
|
|
19606
19654
|
export declare type BillingStatementAttachmentKey = io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
19607
19655
|
export declare type BillingStatementBatch = io.flow.internal.v0.models.BillingStatementBatch;
|
|
@@ -19612,6 +19660,7 @@ export declare type BillingStatementReference = io.flow.internal.v0.models.Billi
|
|
|
19612
19660
|
export declare type BillingStatementReview = io.flow.internal.v0.models.BillingStatementReview;
|
|
19613
19661
|
export declare type BillingStatementReviewForm = io.flow.internal.v0.models.BillingStatementReviewForm;
|
|
19614
19662
|
export declare type BillingStatementReviewStatus = io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
19663
|
+
export declare type BillingStatementSummary = io.flow.internal.v0.models.BillingStatementSummary;
|
|
19615
19664
|
export declare type BillingStatementTotals = io.flow.internal.v0.models.BillingStatementTotals;
|
|
19616
19665
|
export declare type BillingStatementUpserted = io.flow.internal.v0.models.BillingStatementUpserted;
|
|
19617
19666
|
export declare type BillingTransaction = io.flow.internal.v0.models.BillingTransaction;
|
|
@@ -19667,6 +19716,7 @@ export declare type BrowserBundleOptinForm = io.flow.internal.v0.models.BrowserB
|
|
|
19667
19716
|
export declare type BrowserBundlePaymentMethod = io.flow.internal.v0.models.BrowserBundlePaymentMethod;
|
|
19668
19717
|
export declare type BrowserBundlePaymentMethodForm = io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
|
|
19669
19718
|
export declare type BrowserBundlePaymentMethods = io.flow.internal.v0.models.BrowserBundlePaymentMethods;
|
|
19719
|
+
export declare type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
19670
19720
|
export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
19671
19721
|
export declare type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
19672
19722
|
export declare type CalculatorOrganizationSettings = io.flow.internal.v0.models.CalculatorOrganizationSettings;
|
|
@@ -19695,6 +19745,7 @@ export declare type ChangeSettingsIndexTask = io.flow.internal.v0.models.ChangeS
|
|
|
19695
19745
|
export declare type ChannelAccount = io.flow.internal.v0.models.ChannelAccount;
|
|
19696
19746
|
export declare type ChannelAccountDeleted = io.flow.internal.v0.models.ChannelAccountDeleted;
|
|
19697
19747
|
export declare type ChannelAccountUpserted = io.flow.internal.v0.models.ChannelAccountUpserted;
|
|
19748
|
+
export declare type ChannelBillingStatement = io.flow.internal.v0.models.ChannelBillingStatement;
|
|
19698
19749
|
export declare type ChannelCurrencyForm = io.flow.internal.v0.models.ChannelCurrencyForm;
|
|
19699
19750
|
export declare type ChannelCurrencySetting = io.flow.internal.v0.models.ChannelCurrencySetting;
|
|
19700
19751
|
export declare type ChannelCurrencySettingDeleted = io.flow.internal.v0.models.ChannelCurrencySettingDeleted;
|
|
@@ -20856,6 +20907,7 @@ export declare type OnboardingAuditMessageLevel = io.flow.internal.v0.enums.Onbo
|
|
|
20856
20907
|
export declare type OnboardingAuditReport = io.flow.internal.v0.models.OnboardingAuditReport;
|
|
20857
20908
|
export declare type OnboardingAuditReportLine = io.flow.internal.v0.models.OnboardingAuditReportLine;
|
|
20858
20909
|
export declare type OnboardingAuditResult = io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
20910
|
+
export declare type OnboardingAuditSnapshot = io.flow.internal.v0.models.OnboardingAuditSnapshot;
|
|
20859
20911
|
export declare type OnboardingAuditThemeKey = io.flow.internal.v0.enums.OnboardingAuditThemeKey;
|
|
20860
20912
|
export declare type OnboardingAuditThemeReport = io.flow.internal.v0.models.OnboardingAuditThemeReport;
|
|
20861
20913
|
export declare type OnboardingAutomationProcessState = io.flow.internal.v0.enums.OnboardingAutomationProcessState;
|
|
@@ -20899,6 +20951,7 @@ export declare type OrderServiceChangeCsvForm = io.flow.internal.v0.models.Order
|
|
|
20899
20951
|
export declare type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
20900
20952
|
export declare type OrderSubmissionForm = io.flow.internal.v0.models.OrderSubmissionForm;
|
|
20901
20953
|
export declare type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
20954
|
+
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
20902
20955
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
20903
20956
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
20904
20957
|
export declare type OrganizationAccountUpserted = io.flow.internal.v0.models.OrganizationAccountUpserted;
|
|
@@ -20919,6 +20972,7 @@ export declare type OrganizationPaymentSetting = io.flow.internal.v0.models.Orga
|
|
|
20919
20972
|
export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.OrganizationPaymentSettingForm;
|
|
20920
20973
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
20921
20974
|
export declare type OrganizationPaymentStatus = io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
20975
|
+
export declare type OrganizationRestrictionSnapshot = io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
20922
20976
|
export declare type OrganizationRestrictionSummary = io.flow.internal.v0.models.OrganizationRestrictionSummary;
|
|
20923
20977
|
export declare type OrganizationSettings = io.flow.internal.v0.models.OrganizationSettings;
|
|
20924
20978
|
export declare type OrganizationSettingsForm = io.flow.internal.v0.models.OrganizationSettingsForm;
|
package/dist/api.d.ts
CHANGED
|
@@ -475,7 +475,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
475
475
|
readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
476
476
|
readonly payment_method_types?: string[];
|
|
477
477
|
readonly receipt_email?: string;
|
|
478
|
-
readonly save_payment_method
|
|
478
|
+
readonly save_payment_method: boolean;
|
|
479
479
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
480
480
|
}
|
|
481
481
|
interface PaymentIntentForm {
|
|
@@ -495,7 +495,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
495
495
|
readonly payment_method_types?: string[];
|
|
496
496
|
readonly receipt_email?: string;
|
|
497
497
|
readonly return_url?: string;
|
|
498
|
-
readonly save_payment_method
|
|
498
|
+
readonly save_payment_method: boolean;
|
|
499
499
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
500
500
|
readonly statement_descriptor?: string;
|
|
501
501
|
readonly statement_descriptor_suffix?: string;
|
|
@@ -511,7 +511,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
511
511
|
readonly payment_method?: string;
|
|
512
512
|
readonly payment_method_types?: string[];
|
|
513
513
|
readonly receipt_email?: string;
|
|
514
|
-
readonly save_payment_method
|
|
514
|
+
readonly save_payment_method: boolean;
|
|
515
515
|
readonly statement_descriptor?: string;
|
|
516
516
|
readonly statement_descriptor_suffix?: string;
|
|
517
517
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
@@ -912,7 +912,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
912
912
|
interface Product {
|
|
913
913
|
readonly id: number;
|
|
914
914
|
readonly handle: string;
|
|
915
|
-
readonly variants
|
|
915
|
+
readonly variants: io.flow.shopify.external.v0.models.ProductVariant[];
|
|
916
916
|
readonly images: io.flow.shopify.external.v0.models.ProductImage[];
|
|
917
917
|
readonly title: string;
|
|
918
918
|
readonly vendor?: string;
|
|
@@ -1067,7 +1067,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1067
1067
|
readonly title: string;
|
|
1068
1068
|
}
|
|
1069
1069
|
interface ShopifyClientDetail {
|
|
1070
|
-
readonly accept_language
|
|
1070
|
+
readonly accept_language: boolean;
|
|
1071
1071
|
readonly browser_height?: number;
|
|
1072
1072
|
readonly browser_ip?: string;
|
|
1073
1073
|
readonly browser_width?: number;
|
|
@@ -1082,7 +1082,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1082
1082
|
readonly tax_exempt: boolean;
|
|
1083
1083
|
readonly verified_email: boolean;
|
|
1084
1084
|
readonly state: io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
1085
|
-
readonly accepts_marketing
|
|
1085
|
+
readonly accepts_marketing: boolean;
|
|
1086
1086
|
readonly default_address?: any;
|
|
1087
1087
|
readonly email?: string;
|
|
1088
1088
|
readonly first_name?: string;
|
|
@@ -1154,7 +1154,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1154
1154
|
readonly requires_shipping: boolean;
|
|
1155
1155
|
readonly currency?: string;
|
|
1156
1156
|
readonly items: io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
1157
|
-
readonly cart_level_discount_applications
|
|
1157
|
+
readonly cart_level_discount_applications: io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
1158
1158
|
}
|
|
1159
1159
|
interface ShopifyExternalCartItem {
|
|
1160
1160
|
readonly id: number;
|
|
@@ -1168,7 +1168,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1168
1168
|
readonly original_line_price: number;
|
|
1169
1169
|
readonly total_discount: number;
|
|
1170
1170
|
readonly discounted_price: number;
|
|
1171
|
-
readonly discounts
|
|
1171
|
+
readonly discounts: io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
1172
1172
|
readonly taxable: boolean;
|
|
1173
1173
|
readonly quantity: number;
|
|
1174
1174
|
readonly sku?: string;
|
|
@@ -1186,8 +1186,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1186
1186
|
readonly product_description?: string;
|
|
1187
1187
|
readonly product_type: string;
|
|
1188
1188
|
readonly variant_title?: string;
|
|
1189
|
-
readonly variant_options
|
|
1190
|
-
readonly line_level_discount_allocations
|
|
1189
|
+
readonly variant_options: string[];
|
|
1190
|
+
readonly line_level_discount_allocations: io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
1191
1191
|
}
|
|
1192
1192
|
interface ShopifyFulfillment {
|
|
1193
1193
|
readonly location_id: number;
|
|
@@ -1407,11 +1407,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1407
1407
|
readonly updated_at?: string;
|
|
1408
1408
|
readonly user_id?: number;
|
|
1409
1409
|
readonly order_status_url?: string;
|
|
1410
|
-
readonly inventory_behaviour
|
|
1410
|
+
readonly inventory_behaviour: io.flow.shopify.external.v0.enums.InventoryBehaviour;
|
|
1411
1411
|
readonly gateway?: string;
|
|
1412
1412
|
readonly transactions?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
1413
1413
|
readonly send_receipt?: boolean;
|
|
1414
|
-
readonly metafields
|
|
1414
|
+
readonly metafields: io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
1415
1415
|
}
|
|
1416
1416
|
interface ShopifyOrderCount {
|
|
1417
1417
|
readonly count: number;
|
|
@@ -1532,7 +1532,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1532
1532
|
}
|
|
1533
1533
|
interface ShopifyWebhookOrder {
|
|
1534
1534
|
readonly id?: number;
|
|
1535
|
-
readonly line_items
|
|
1535
|
+
readonly line_items: io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
1536
1536
|
}
|
|
1537
1537
|
interface ShopifyWebhookOrderCancelled {
|
|
1538
1538
|
readonly id: number;
|
|
@@ -2504,8 +2504,9 @@ declare namespace io.flow.v0.models {
|
|
|
2504
2504
|
readonly country?: string;
|
|
2505
2505
|
readonly company?: string;
|
|
2506
2506
|
}
|
|
2507
|
-
interface
|
|
2507
|
+
interface BillingChannelOrderSummary {
|
|
2508
2508
|
readonly number: string;
|
|
2509
|
+
readonly identifiers?: Record<string, string>;
|
|
2509
2510
|
}
|
|
2510
2511
|
interface BillingChannelPaymentRequestReference {
|
|
2511
2512
|
readonly id: string;
|
|
@@ -3086,7 +3087,7 @@ declare namespace io.flow.v0.models {
|
|
|
3086
3087
|
}
|
|
3087
3088
|
interface ChannelTransaction {
|
|
3088
3089
|
readonly id: string;
|
|
3089
|
-
readonly order?: io.flow.v0.models.
|
|
3090
|
+
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
3090
3091
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
3091
3092
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
3092
3093
|
readonly currency: string;
|
|
@@ -3892,9 +3893,12 @@ declare namespace io.flow.v0.models {
|
|
|
3892
3893
|
}
|
|
3893
3894
|
interface DirectDebit {
|
|
3894
3895
|
readonly discriminator: 'direct_debit';
|
|
3895
|
-
readonly
|
|
3896
|
-
readonly
|
|
3897
|
-
readonly
|
|
3896
|
+
readonly bank_name?: string;
|
|
3897
|
+
readonly bic?: string;
|
|
3898
|
+
readonly iban?: string;
|
|
3899
|
+
readonly routing_number?: string;
|
|
3900
|
+
readonly last4?: string;
|
|
3901
|
+
readonly account_holder_name?: string;
|
|
3898
3902
|
}
|
|
3899
3903
|
interface Discount {
|
|
3900
3904
|
readonly discriminator: 'discount';
|
|
@@ -4972,6 +4976,12 @@ declare namespace io.flow.v0.models {
|
|
|
4972
4976
|
interface InputSpecificationLimitations {
|
|
4973
4977
|
readonly limitations?: io.flow.v0.unions.InputSpecificationLimitation[];
|
|
4974
4978
|
}
|
|
4979
|
+
interface Installment {
|
|
4980
|
+
readonly discriminator: 'installment';
|
|
4981
|
+
readonly first_name?: string;
|
|
4982
|
+
readonly last_name?: string;
|
|
4983
|
+
readonly response_code?: string;
|
|
4984
|
+
}
|
|
4975
4985
|
interface InventoryBackorder {
|
|
4976
4986
|
readonly discriminator: 'inventory_backorder';
|
|
4977
4987
|
readonly quantity: number;
|
|
@@ -5322,6 +5332,9 @@ declare namespace io.flow.v0.models {
|
|
|
5322
5332
|
readonly insurance?: io.flow.v0.models.PriceWithBase;
|
|
5323
5333
|
readonly total: io.flow.v0.models.PriceWithBase;
|
|
5324
5334
|
}
|
|
5335
|
+
interface KubeHealthcheck {
|
|
5336
|
+
readonly status: string;
|
|
5337
|
+
}
|
|
5325
5338
|
interface LabelDeletedV2 {
|
|
5326
5339
|
readonly discriminator: 'label_deleted_v2';
|
|
5327
5340
|
readonly event_id: string;
|
|
@@ -5859,6 +5872,7 @@ declare namespace io.flow.v0.models {
|
|
|
5859
5872
|
readonly expires_at?: string;
|
|
5860
5873
|
readonly base?: io.flow.v0.models.Money;
|
|
5861
5874
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
5875
|
+
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
5862
5876
|
}
|
|
5863
5877
|
interface OnlineAuthorizationDeletedV2 {
|
|
5864
5878
|
readonly discriminator: 'online_authorization_deleted_v2';
|
|
@@ -7965,7 +7979,6 @@ declare namespace io.flow.v0.models {
|
|
|
7965
7979
|
readonly discriminator: 'redirect_authorization_details';
|
|
7966
7980
|
readonly id: string;
|
|
7967
7981
|
readonly payment_redirect_url: string;
|
|
7968
|
-
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
7969
7982
|
}
|
|
7970
7983
|
interface RedirectAuthorizationForm {
|
|
7971
7984
|
readonly discriminator: 'redirect_authorization_form';
|
|
@@ -9647,7 +9660,7 @@ declare namespace io.flow.v0.models {
|
|
|
9647
9660
|
}
|
|
9648
9661
|
interface Transaction {
|
|
9649
9662
|
readonly id: string;
|
|
9650
|
-
readonly order?: io.flow.v0.models.
|
|
9663
|
+
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
9651
9664
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
9652
9665
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
9653
9666
|
readonly currency: string;
|
|
@@ -9891,7 +9904,7 @@ declare namespace io.flow.v0.unions {
|
|
|
9891
9904
|
type CardAuthorizationActionResult = io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4;
|
|
9892
9905
|
type CardNumber = io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher;
|
|
9893
9906
|
type CheckoutTokenForm = io.flow.v0.models.CheckoutTokenOrderForm | io.flow.v0.models.CheckoutTokenReferenceForm;
|
|
9894
|
-
type ConfirmationDetails = io.flow.v0.models.DirectDebit;
|
|
9907
|
+
type ConfirmationDetails = io.flow.v0.models.DirectDebit | io.flow.v0.models.Installment;
|
|
9895
9908
|
type ConsumerInvoiceLine = io.flow.v0.models.ConsumerInvoiceLineItem | io.flow.v0.models.ConsumerInvoiceLineDiscount | io.flow.v0.models.ConsumerInvoiceLineShipping;
|
|
9896
9909
|
type ConsumerInvoiceLineForm = io.flow.v0.models.ConsumerInvoiceLineItemForm | io.flow.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.v0.models.ConsumerInvoiceLineShippingForm;
|
|
9897
9910
|
type Delivery = io.flow.v0.models.DigitalDelivery | io.flow.v0.models.PhysicalDelivery;
|
|
@@ -10108,7 +10121,7 @@ export declare type B2BInvoiceType = io.flow.v0.enums.B2BInvoiceType;
|
|
|
10108
10121
|
export declare type B2BInvoiceUpserted = io.flow.v0.models.B2BInvoiceUpserted;
|
|
10109
10122
|
export declare type BehaviorAudit = io.flow.v0.models.BehaviorAudit;
|
|
10110
10123
|
export declare type BillingAddress = io.flow.v0.models.BillingAddress;
|
|
10111
|
-
export declare type
|
|
10124
|
+
export declare type BillingChannelOrderSummary = io.flow.v0.models.BillingChannelOrderSummary;
|
|
10112
10125
|
export declare type BillingChannelPaymentRequestReference = io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
10113
10126
|
export declare type BillingChannelStatementReference = io.flow.v0.models.BillingChannelStatementReference;
|
|
10114
10127
|
export declare type BridgeManifest = io.flow.v0.models.BridgeManifest;
|
|
@@ -10616,6 +10629,7 @@ export declare type InputSpecificationLimitation = io.flow.v0.unions.InputSpecif
|
|
|
10616
10629
|
export declare type InputSpecificationLimitationMax = io.flow.v0.models.InputSpecificationLimitationMax;
|
|
10617
10630
|
export declare type InputSpecificationLimitations = io.flow.v0.models.InputSpecificationLimitations;
|
|
10618
10631
|
export declare type InputSpecificationType = io.flow.v0.enums.InputSpecificationType;
|
|
10632
|
+
export declare type Installment = io.flow.v0.models.Installment;
|
|
10619
10633
|
export declare type InventoryBackorder = io.flow.v0.models.InventoryBackorder;
|
|
10620
10634
|
export declare type InventoryCenterReference = io.flow.v0.models.InventoryCenterReference;
|
|
10621
10635
|
export declare type InventoryCheckResponse = io.flow.v0.models.InventoryCheckResponse;
|
|
@@ -10678,6 +10692,7 @@ export declare type KlarnaSdkAuthorizationResultActionDetails = io.flow.v0.model
|
|
|
10678
10692
|
export declare type KlaviyoLineItem = io.flow.v0.models.KlaviyoLineItem;
|
|
10679
10693
|
export declare type KlaviyoOrderContent = io.flow.v0.models.KlaviyoOrderContent;
|
|
10680
10694
|
export declare type KlaviyoOrderPrices = io.flow.v0.models.KlaviyoOrderPrices;
|
|
10695
|
+
export declare type KubeHealthcheck = io.flow.v0.models.KubeHealthcheck;
|
|
10681
10696
|
export declare type LabelDeletedV2 = io.flow.v0.models.LabelDeletedV2;
|
|
10682
10697
|
export declare type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
|
|
10683
10698
|
export declare type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.32",
|
|
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": "0b59892becdb40eec69421102a36d36af1e0533c"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -2238,9 +2238,12 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2238
2238
|
|
|
2239
2239
|
interface DirectDebit {
|
|
2240
2240
|
readonly discriminator: 'direct_debit';
|
|
2241
|
-
readonly
|
|
2242
|
-
readonly
|
|
2243
|
-
readonly
|
|
2241
|
+
readonly bank_name?: string;
|
|
2242
|
+
readonly bic?: string;
|
|
2243
|
+
readonly iban?: string;
|
|
2244
|
+
readonly routing_number?: string;
|
|
2245
|
+
readonly last4?: string;
|
|
2246
|
+
readonly account_holder_name?: string;
|
|
2244
2247
|
}
|
|
2245
2248
|
|
|
2246
2249
|
interface Expiration {
|
|
@@ -2357,6 +2360,7 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2357
2360
|
readonly expires_at?: string;
|
|
2358
2361
|
readonly base?: io.flow.common.v0.models.Money;
|
|
2359
2362
|
readonly processor?: io.flow.payment.v0.unions.ExpandablePaymentProcessor;
|
|
2363
|
+
readonly confirmation_details?: io.flow.payment.v0.unions.ConfirmationDetails;
|
|
2360
2364
|
}
|
|
2361
2365
|
|
|
2362
2366
|
interface OnlinePaymentAuthorizationForm {
|
|
@@ -2473,7 +2477,6 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2473
2477
|
readonly discriminator: 'redirect_authorization_details';
|
|
2474
2478
|
readonly id: string;
|
|
2475
2479
|
readonly payment_redirect_url: string;
|
|
2476
|
-
readonly confirmation_details?: io.flow.payment.v0.unions.ConfirmationDetails;
|
|
2477
2480
|
}
|
|
2478
2481
|
|
|
2479
2482
|
interface RedirectAuthorizationForm {
|
|
@@ -3352,7 +3355,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3352
3355
|
readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
3353
3356
|
readonly payment_method_types?: string[];
|
|
3354
3357
|
readonly receipt_email?: string;
|
|
3355
|
-
readonly save_payment_method
|
|
3358
|
+
readonly save_payment_method: boolean;
|
|
3356
3359
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3357
3360
|
}
|
|
3358
3361
|
|
|
@@ -3373,7 +3376,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3373
3376
|
readonly payment_method_types?: string[];
|
|
3374
3377
|
readonly receipt_email?: string;
|
|
3375
3378
|
readonly return_url?: string;
|
|
3376
|
-
readonly save_payment_method
|
|
3379
|
+
readonly save_payment_method: boolean;
|
|
3377
3380
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
3378
3381
|
readonly statement_descriptor?: string;
|
|
3379
3382
|
readonly statement_descriptor_suffix?: string;
|
|
@@ -3390,7 +3393,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3390
3393
|
readonly payment_method?: string;
|
|
3391
3394
|
readonly payment_method_types?: string[];
|
|
3392
3395
|
readonly receipt_email?: string;
|
|
3393
|
-
readonly save_payment_method
|
|
3396
|
+
readonly save_payment_method: boolean;
|
|
3394
3397
|
readonly statement_descriptor?: string;
|
|
3395
3398
|
readonly statement_descriptor_suffix?: string;
|
|
3396
3399
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
@@ -4827,14 +4830,14 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
4827
4830
|
readonly currency: string;
|
|
4828
4831
|
readonly posData?: string;
|
|
4829
4832
|
readonly notificationURL?: string;
|
|
4830
|
-
readonly transactionSpeed
|
|
4833
|
+
readonly transactionSpeed: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
4831
4834
|
readonly fullNotifications?: boolean;
|
|
4832
4835
|
readonly notificationEmail?: string;
|
|
4833
4836
|
readonly redirectURL?: string;
|
|
4834
4837
|
readonly orderId?: string;
|
|
4835
4838
|
readonly itemDesc?: string;
|
|
4836
4839
|
readonly itemCode?: string;
|
|
4837
|
-
readonly physical
|
|
4840
|
+
readonly physical: boolean;
|
|
4838
4841
|
readonly buyerName?: string;
|
|
4839
4842
|
readonly buyerAddress1?: string;
|
|
4840
4843
|
readonly buyerAddress2?: string;
|
|
@@ -4891,12 +4894,12 @@ declare namespace io.flow.bitpay.v0.models {
|
|
|
4891
4894
|
readonly currency: string;
|
|
4892
4895
|
readonly posData?: string;
|
|
4893
4896
|
readonly notificationURL?: string;
|
|
4894
|
-
readonly transactionSpeed
|
|
4897
|
+
readonly transactionSpeed: io.flow.bitpay.v0.enums.TransactionSpeed;
|
|
4895
4898
|
readonly fullNotifications?: boolean;
|
|
4896
4899
|
readonly extendedNotifications?: boolean;
|
|
4897
4900
|
readonly redirectURL?: string;
|
|
4898
4901
|
readonly orderId?: string;
|
|
4899
|
-
readonly physical
|
|
4902
|
+
readonly physical: boolean;
|
|
4900
4903
|
readonly buyerName?: string;
|
|
4901
4904
|
readonly buyerAddress1?: string;
|
|
4902
4905
|
readonly buyerAddress2?: string;
|
|
@@ -5477,6 +5480,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5477
5480
|
readonly avsResult?: string;
|
|
5478
5481
|
readonly cvcResultRaw?: string;
|
|
5479
5482
|
readonly cvcResult?: string;
|
|
5483
|
+
readonly refusalReasonRaw?: string;
|
|
5480
5484
|
readonly liabilityShift?: string;
|
|
5481
5485
|
readonly threeDAuthenticated?: string;
|
|
5482
5486
|
readonly threeDAuthenticatedResponse?: string;
|
|
@@ -5504,6 +5508,12 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5504
5508
|
readonly issuerCountry?: string;
|
|
5505
5509
|
readonly iban?: string;
|
|
5506
5510
|
readonly bic?: string;
|
|
5511
|
+
readonly iDealConsumerAccountNumber?: string;
|
|
5512
|
+
readonly iDealConsumerBIC?: string;
|
|
5513
|
+
readonly iDealConsumerCity?: string;
|
|
5514
|
+
readonly iDealConsumerIBAN?: string;
|
|
5515
|
+
readonly iDealConsumerName?: string;
|
|
5516
|
+
readonly iDealTransactionId?: string;
|
|
5507
5517
|
}
|
|
5508
5518
|
|
|
5509
5519
|
interface Recurring {
|
|
@@ -5881,7 +5891,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
5881
5891
|
interface Product {
|
|
5882
5892
|
readonly id: number;
|
|
5883
5893
|
readonly handle: string;
|
|
5884
|
-
readonly variants
|
|
5894
|
+
readonly variants: io.flow.shopify.external.v0.models.ProductVariant[];
|
|
5885
5895
|
readonly images: io.flow.shopify.external.v0.models.ProductImage[];
|
|
5886
5896
|
readonly title: string;
|
|
5887
5897
|
readonly vendor?: string;
|
|
@@ -6066,7 +6076,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6066
6076
|
}
|
|
6067
6077
|
|
|
6068
6078
|
interface ShopifyClientDetail {
|
|
6069
|
-
readonly accept_language
|
|
6079
|
+
readonly accept_language: boolean;
|
|
6070
6080
|
readonly browser_height?: number;
|
|
6071
6081
|
readonly browser_ip?: string;
|
|
6072
6082
|
readonly browser_width?: number;
|
|
@@ -6082,7 +6092,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6082
6092
|
readonly tax_exempt: boolean;
|
|
6083
6093
|
readonly verified_email: boolean;
|
|
6084
6094
|
readonly state: io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
6085
|
-
readonly accepts_marketing
|
|
6095
|
+
readonly accepts_marketing: boolean;
|
|
6086
6096
|
readonly default_address?: any /*object*/;
|
|
6087
6097
|
readonly email?: string;
|
|
6088
6098
|
readonly first_name?: string;
|
|
@@ -6161,7 +6171,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6161
6171
|
readonly requires_shipping: boolean;
|
|
6162
6172
|
readonly currency?: string;
|
|
6163
6173
|
readonly items: io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
6164
|
-
readonly cart_level_discount_applications
|
|
6174
|
+
readonly cart_level_discount_applications: io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
6165
6175
|
}
|
|
6166
6176
|
|
|
6167
6177
|
interface ShopifyExternalCartItem {
|
|
@@ -6176,7 +6186,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6176
6186
|
readonly original_line_price: number;
|
|
6177
6187
|
readonly total_discount: number;
|
|
6178
6188
|
readonly discounted_price: number;
|
|
6179
|
-
readonly discounts
|
|
6189
|
+
readonly discounts: io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
6180
6190
|
readonly taxable: boolean;
|
|
6181
6191
|
readonly quantity: number;
|
|
6182
6192
|
readonly sku?: string;
|
|
@@ -6194,8 +6204,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6194
6204
|
readonly product_description?: string;
|
|
6195
6205
|
readonly product_type: string;
|
|
6196
6206
|
readonly variant_title?: string;
|
|
6197
|
-
readonly variant_options
|
|
6198
|
-
readonly line_level_discount_allocations
|
|
6207
|
+
readonly variant_options: string[];
|
|
6208
|
+
readonly line_level_discount_allocations: io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
6199
6209
|
}
|
|
6200
6210
|
|
|
6201
6211
|
interface ShopifyFulfillment {
|
|
@@ -6436,11 +6446,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6436
6446
|
readonly updated_at?: string;
|
|
6437
6447
|
readonly user_id?: number;
|
|
6438
6448
|
readonly order_status_url?: string;
|
|
6439
|
-
readonly inventory_behaviour
|
|
6449
|
+
readonly inventory_behaviour: io.flow.shopify.external.v0.enums.InventoryBehaviour;
|
|
6440
6450
|
readonly gateway?: string;
|
|
6441
6451
|
readonly transactions?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
6442
6452
|
readonly send_receipt?: boolean;
|
|
6443
|
-
readonly metafields
|
|
6453
|
+
readonly metafields: io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
6444
6454
|
}
|
|
6445
6455
|
|
|
6446
6456
|
interface ShopifyOrderCount {
|
|
@@ -6578,7 +6588,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
6578
6588
|
|
|
6579
6589
|
interface ShopifyWebhookOrder {
|
|
6580
6590
|
readonly id?: number;
|
|
6581
|
-
readonly line_items
|
|
6591
|
+
readonly line_items: io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
6582
6592
|
}
|
|
6583
6593
|
|
|
6584
6594
|
interface ShopifyWebhookOrderCancelled {
|
|
@@ -6788,10 +6798,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6788
6798
|
readonly shop_id: number;
|
|
6789
6799
|
readonly fulfillment_order_id: number;
|
|
6790
6800
|
readonly line_item_id: number;
|
|
6791
|
-
readonly inventory_item_id
|
|
6801
|
+
readonly inventory_item_id?: number;
|
|
6792
6802
|
readonly quantity: number;
|
|
6793
6803
|
readonly fulfillable_quantity: number;
|
|
6794
|
-
readonly variant_id
|
|
6804
|
+
readonly variant_id?: number;
|
|
6795
6805
|
}
|
|
6796
6806
|
|
|
6797
6807
|
interface ResponseShopifyTransactions {
|
|
@@ -6988,7 +6998,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6988
6998
|
readonly updated_at?: string;
|
|
6989
6999
|
readonly user_id?: number;
|
|
6990
7000
|
readonly order_status_url?: string;
|
|
6991
|
-
readonly inventory_behaviour
|
|
7001
|
+
readonly inventory_behaviour: io.flow.shopify.markets.v0.enums.ShopifyOrderInventoryBehaviour;
|
|
6992
7002
|
readonly gateway?: string;
|
|
6993
7003
|
readonly transactions?: io.flow.shopify.markets.v0.models.ShopifyOrderTransaction[];
|
|
6994
7004
|
readonly send_receipt?: boolean;
|
|
@@ -7026,7 +7036,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7026
7036
|
}
|
|
7027
7037
|
|
|
7028
7038
|
interface ShopifyOrderClientDetail {
|
|
7029
|
-
readonly accept_language
|
|
7039
|
+
readonly accept_language: string;
|
|
7030
7040
|
readonly browser_height?: number;
|
|
7031
7041
|
readonly browser_ip?: string;
|
|
7032
7042
|
readonly browser_width?: number;
|
|
@@ -10149,6 +10159,7 @@ declare namespace io.flow.crypto.v0.enums {
|
|
|
10149
10159
|
type RefundStatus = 'pending' | 'succeeded';
|
|
10150
10160
|
type WebhookEventName =
|
|
10151
10161
|
| 'payment.created'
|
|
10162
|
+
| 'payment.fulfilled'
|
|
10152
10163
|
| 'payment.captured'
|
|
10153
10164
|
| 'payment.refund_requested'
|
|
10154
10165
|
| 'payment.refund_transferred';
|
|
@@ -13699,6 +13710,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13699
13710
|
| 'last_shipment'
|
|
13700
13711
|
| 'shipment_exhausted';
|
|
13701
13712
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
13713
|
+
type OrderTransactionType = 'adjustment' | 'order_service';
|
|
13702
13714
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
13703
13715
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
13704
13716
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
@@ -13854,7 +13866,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13854
13866
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
13855
13867
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
13856
13868
|
type TariffEligibilityType = 'rex';
|
|
13857
|
-
type TaskProcessorKey = 'billing_account';
|
|
13869
|
+
type TaskProcessorKey = 'billing_account' | 'carrier_account';
|
|
13858
13870
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
13859
13871
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
13860
13872
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
@@ -14734,6 +14746,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14734
14746
|
readonly number: string;
|
|
14735
14747
|
readonly submitted_at: string;
|
|
14736
14748
|
readonly primary_identifier?: string;
|
|
14749
|
+
readonly identifiers?: Record<string, string>;
|
|
14737
14750
|
readonly destination?: io.flow.internal.v0.models.BillingOrderDestination;
|
|
14738
14751
|
}
|
|
14739
14752
|
|
|
@@ -14799,14 +14812,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14799
14812
|
readonly settings: io.flow.internal.v0.models.BillingOrganizationSettings;
|
|
14800
14813
|
}
|
|
14801
14814
|
|
|
14802
|
-
interface BillingStatement {
|
|
14803
|
-
readonly id: string;
|
|
14804
|
-
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
14805
|
-
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
14806
|
-
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
14807
|
-
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
14808
|
-
}
|
|
14809
|
-
|
|
14810
14815
|
interface BillingStatementAttachment {
|
|
14811
14816
|
readonly key: io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
14812
14817
|
readonly name: string;
|
|
@@ -14827,7 +14832,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14827
14832
|
|
|
14828
14833
|
interface BillingStatementPendingReview {
|
|
14829
14834
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
14830
|
-
readonly statement: io.flow.internal.v0.models.
|
|
14835
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementSummary;
|
|
14831
14836
|
}
|
|
14832
14837
|
|
|
14833
14838
|
interface BillingStatementReference {
|
|
@@ -14846,6 +14851,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14846
14851
|
readonly reviewed_at: string;
|
|
14847
14852
|
}
|
|
14848
14853
|
|
|
14854
|
+
interface BillingStatementSummary {
|
|
14855
|
+
readonly id: string;
|
|
14856
|
+
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
14857
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
14858
|
+
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
14859
|
+
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
14860
|
+
}
|
|
14861
|
+
|
|
14849
14862
|
interface BillingStatementTotals {
|
|
14850
14863
|
readonly starting_balance: io.flow.common.v0.models.Price;
|
|
14851
14864
|
readonly subscription: io.flow.common.v0.models.Price;
|
|
@@ -14871,7 +14884,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14871
14884
|
readonly discriminator: 'billing_statement_upserted';
|
|
14872
14885
|
readonly event_id: string;
|
|
14873
14886
|
readonly timestamp: string;
|
|
14874
|
-
readonly statement: io.flow.internal.v0.models.
|
|
14887
|
+
readonly statement: io.flow.internal.v0.models.BillingStatementSummary;
|
|
14875
14888
|
}
|
|
14876
14889
|
|
|
14877
14890
|
interface BillingTransaction {
|
|
@@ -15162,6 +15175,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15162
15175
|
readonly displayed?: io.flow.internal.v0.models.BrowserBundlePaymentMethod[];
|
|
15163
15176
|
}
|
|
15164
15177
|
|
|
15178
|
+
interface ByRuleSnapshot {
|
|
15179
|
+
readonly id: string;
|
|
15180
|
+
readonly name: string;
|
|
15181
|
+
readonly open_decision_count: number;
|
|
15182
|
+
readonly restricted_product_count: number;
|
|
15183
|
+
}
|
|
15184
|
+
|
|
15165
15185
|
interface CalculatedTaxAmount {
|
|
15166
15186
|
readonly discriminator: 'calculated_tax_amount';
|
|
15167
15187
|
readonly amount: number;
|
|
@@ -15318,6 +15338,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15318
15338
|
readonly channel_account: io.flow.internal.v0.models.ChannelAccount;
|
|
15319
15339
|
}
|
|
15320
15340
|
|
|
15341
|
+
interface ChannelBillingStatement {
|
|
15342
|
+
readonly id: string;
|
|
15343
|
+
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
15344
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
15345
|
+
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
15346
|
+
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
15347
|
+
}
|
|
15348
|
+
|
|
15321
15349
|
interface ChannelCurrencyForm {
|
|
15322
15350
|
readonly currency: string;
|
|
15323
15351
|
readonly channel_id: string;
|
|
@@ -21537,6 +21565,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21537
21565
|
readonly messages: io.flow.internal.v0.models.OnboardingAuditMessage[];
|
|
21538
21566
|
}
|
|
21539
21567
|
|
|
21568
|
+
interface OnboardingAuditSnapshot {
|
|
21569
|
+
readonly id: string;
|
|
21570
|
+
readonly organization: io.flow.common.v0.models.Organization;
|
|
21571
|
+
readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
21572
|
+
readonly theme_reports: io.flow.internal.v0.models.OnboardingAuditThemeReport[];
|
|
21573
|
+
readonly requested_by: io.flow.common.v0.models.User;
|
|
21574
|
+
readonly requested_at: string;
|
|
21575
|
+
}
|
|
21576
|
+
|
|
21540
21577
|
interface OnboardingAuditThemeReport {
|
|
21541
21578
|
readonly name: string;
|
|
21542
21579
|
readonly key: io.flow.internal.v0.enums.OnboardingAuditThemeKey;
|
|
@@ -21816,7 +21853,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21816
21853
|
}
|
|
21817
21854
|
|
|
21818
21855
|
interface OrganizationBillingStatement {
|
|
21819
|
-
readonly
|
|
21856
|
+
readonly id: string;
|
|
21857
|
+
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
21858
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
21859
|
+
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
21860
|
+
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
21820
21861
|
}
|
|
21821
21862
|
|
|
21822
21863
|
interface OrganizationBooleanValue {
|
|
@@ -21918,6 +21959,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21918
21959
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
21919
21960
|
}
|
|
21920
21961
|
|
|
21962
|
+
interface OrganizationRestrictionSnapshot {
|
|
21963
|
+
readonly organization_id: string;
|
|
21964
|
+
readonly organization_channel_id: string;
|
|
21965
|
+
readonly organization_status: string;
|
|
21966
|
+
readonly product_count: number;
|
|
21967
|
+
readonly open_decision_count: number;
|
|
21968
|
+
readonly restricted_product_count: number;
|
|
21969
|
+
readonly count_by_rule: io.flow.internal.v0.models.ByRuleSnapshot[];
|
|
21970
|
+
readonly earliest_pending_decision_date: string;
|
|
21971
|
+
readonly earliest_product_receipt_date: string;
|
|
21972
|
+
readonly date: string;
|
|
21973
|
+
}
|
|
21974
|
+
|
|
21921
21975
|
interface OrganizationRestrictionSummary {
|
|
21922
21976
|
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
21923
21977
|
readonly earliest_date: string;
|
|
@@ -25780,7 +25834,6 @@ export type BillingOrganizationSettingsDeleted =
|
|
|
25780
25834
|
io.flow.internal.v0.models.BillingOrganizationSettingsDeleted;
|
|
25781
25835
|
export type BillingOrganizationSettingsUpserted =
|
|
25782
25836
|
io.flow.internal.v0.models.BillingOrganizationSettingsUpserted;
|
|
25783
|
-
export type BillingStatement = io.flow.internal.v0.models.BillingStatement;
|
|
25784
25837
|
export type BillingStatementAttachment =
|
|
25785
25838
|
io.flow.internal.v0.models.BillingStatementAttachment;
|
|
25786
25839
|
export type BillingStatementAttachmentKey =
|
|
@@ -25801,6 +25854,8 @@ export type BillingStatementReviewForm =
|
|
|
25801
25854
|
io.flow.internal.v0.models.BillingStatementReviewForm;
|
|
25802
25855
|
export type BillingStatementReviewStatus =
|
|
25803
25856
|
io.flow.internal.v0.enums.BillingStatementReviewStatus;
|
|
25857
|
+
export type BillingStatementSummary =
|
|
25858
|
+
io.flow.internal.v0.models.BillingStatementSummary;
|
|
25804
25859
|
export type BillingStatementTotals =
|
|
25805
25860
|
io.flow.internal.v0.models.BillingStatementTotals;
|
|
25806
25861
|
export type BillingStatementUpserted =
|
|
@@ -25900,6 +25955,7 @@ export type BrowserBundlePaymentMethodForm =
|
|
|
25900
25955
|
io.flow.internal.v0.models.BrowserBundlePaymentMethodForm;
|
|
25901
25956
|
export type BrowserBundlePaymentMethods =
|
|
25902
25957
|
io.flow.internal.v0.models.BrowserBundlePaymentMethods;
|
|
25958
|
+
export type ByRuleSnapshot = io.flow.internal.v0.models.ByRuleSnapshot;
|
|
25903
25959
|
export type CalculatedTaxAmount =
|
|
25904
25960
|
io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
25905
25961
|
export type CalculatorEngine = io.flow.internal.v0.enums.CalculatorEngine;
|
|
@@ -25946,6 +26002,8 @@ export type ChannelAccountDeleted =
|
|
|
25946
26002
|
io.flow.internal.v0.models.ChannelAccountDeleted;
|
|
25947
26003
|
export type ChannelAccountUpserted =
|
|
25948
26004
|
io.flow.internal.v0.models.ChannelAccountUpserted;
|
|
26005
|
+
export type ChannelBillingStatement =
|
|
26006
|
+
io.flow.internal.v0.models.ChannelBillingStatement;
|
|
25949
26007
|
export type ChannelCurrencyForm =
|
|
25950
26008
|
io.flow.internal.v0.models.ChannelCurrencyForm;
|
|
25951
26009
|
export type ChannelCurrencySetting =
|
|
@@ -27991,6 +28049,8 @@ export type OnboardingAuditReportLine =
|
|
|
27991
28049
|
io.flow.internal.v0.models.OnboardingAuditReportLine;
|
|
27992
28050
|
export type OnboardingAuditResult =
|
|
27993
28051
|
io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
28052
|
+
export type OnboardingAuditSnapshot =
|
|
28053
|
+
io.flow.internal.v0.models.OnboardingAuditSnapshot;
|
|
27994
28054
|
export type OnboardingAuditThemeKey =
|
|
27995
28055
|
io.flow.internal.v0.enums.OnboardingAuditThemeKey;
|
|
27996
28056
|
export type OnboardingAuditThemeReport =
|
|
@@ -28056,6 +28116,8 @@ export type OrderShipped = io.flow.internal.v0.models.OrderShipped;
|
|
|
28056
28116
|
export type OrderSubmissionForm =
|
|
28057
28117
|
io.flow.internal.v0.models.OrderSubmissionForm;
|
|
28058
28118
|
export type OrderTransaction = io.flow.internal.v0.models.OrderTransaction;
|
|
28119
|
+
export type OrderTransactionType =
|
|
28120
|
+
io.flow.internal.v0.enums.OrderTransactionType;
|
|
28059
28121
|
export type OrganizationAccount =
|
|
28060
28122
|
io.flow.internal.v0.models.OrganizationAccount;
|
|
28061
28123
|
export type OrganizationAccountDeleted =
|
|
@@ -28096,6 +28158,8 @@ export type OrganizationPaymentSettingVersion =
|
|
|
28096
28158
|
io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
28097
28159
|
export type OrganizationPaymentStatus =
|
|
28098
28160
|
io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
28161
|
+
export type OrganizationRestrictionSnapshot =
|
|
28162
|
+
io.flow.internal.v0.models.OrganizationRestrictionSnapshot;
|
|
28099
28163
|
export type OrganizationRestrictionSummary =
|
|
28100
28164
|
io.flow.internal.v0.models.OrganizationRestrictionSummary;
|
|
28101
28165
|
export type OrganizationSettings =
|
package/src/api.ts
CHANGED
|
@@ -668,7 +668,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
668
668
|
readonly payment_method_options?: io.flow.stripe.v0.models.PaymentMethodOptions;
|
|
669
669
|
readonly payment_method_types?: string[];
|
|
670
670
|
readonly receipt_email?: string;
|
|
671
|
-
readonly save_payment_method
|
|
671
|
+
readonly save_payment_method: boolean;
|
|
672
672
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
673
673
|
}
|
|
674
674
|
|
|
@@ -689,7 +689,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
689
689
|
readonly payment_method_types?: string[];
|
|
690
690
|
readonly receipt_email?: string;
|
|
691
691
|
readonly return_url?: string;
|
|
692
|
-
readonly save_payment_method
|
|
692
|
+
readonly save_payment_method: boolean;
|
|
693
693
|
readonly setup_future_usage?: io.flow.stripe.v0.enums.SetupFutureUsage;
|
|
694
694
|
readonly statement_descriptor?: string;
|
|
695
695
|
readonly statement_descriptor_suffix?: string;
|
|
@@ -706,7 +706,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
706
706
|
readonly payment_method?: string;
|
|
707
707
|
readonly payment_method_types?: string[];
|
|
708
708
|
readonly receipt_email?: string;
|
|
709
|
-
readonly save_payment_method
|
|
709
|
+
readonly save_payment_method: boolean;
|
|
710
710
|
readonly statement_descriptor?: string;
|
|
711
711
|
readonly statement_descriptor_suffix?: string;
|
|
712
712
|
readonly transfer_data?: io.flow.stripe.v0.models.TransferData;
|
|
@@ -1246,7 +1246,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1246
1246
|
interface Product {
|
|
1247
1247
|
readonly id: number;
|
|
1248
1248
|
readonly handle: string;
|
|
1249
|
-
readonly variants
|
|
1249
|
+
readonly variants: io.flow.shopify.external.v0.models.ProductVariant[];
|
|
1250
1250
|
readonly images: io.flow.shopify.external.v0.models.ProductImage[];
|
|
1251
1251
|
readonly title: string;
|
|
1252
1252
|
readonly vendor?: string;
|
|
@@ -1431,7 +1431,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1431
1431
|
}
|
|
1432
1432
|
|
|
1433
1433
|
interface ShopifyClientDetail {
|
|
1434
|
-
readonly accept_language
|
|
1434
|
+
readonly accept_language: boolean;
|
|
1435
1435
|
readonly browser_height?: number;
|
|
1436
1436
|
readonly browser_ip?: string;
|
|
1437
1437
|
readonly browser_width?: number;
|
|
@@ -1447,7 +1447,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1447
1447
|
readonly tax_exempt: boolean;
|
|
1448
1448
|
readonly verified_email: boolean;
|
|
1449
1449
|
readonly state: io.flow.shopify.external.v0.enums.ShopifyCustomerState;
|
|
1450
|
-
readonly accepts_marketing
|
|
1450
|
+
readonly accepts_marketing: boolean;
|
|
1451
1451
|
readonly default_address?: any /*object*/;
|
|
1452
1452
|
readonly email?: string;
|
|
1453
1453
|
readonly first_name?: string;
|
|
@@ -1526,7 +1526,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1526
1526
|
readonly requires_shipping: boolean;
|
|
1527
1527
|
readonly currency?: string;
|
|
1528
1528
|
readonly items: io.flow.shopify.external.v0.models.ShopifyExternalCartItem[];
|
|
1529
|
-
readonly cart_level_discount_applications
|
|
1529
|
+
readonly cart_level_discount_applications: io.flow.shopify.external.v0.models.ShopifyDiscountApplication[];
|
|
1530
1530
|
}
|
|
1531
1531
|
|
|
1532
1532
|
interface ShopifyExternalCartItem {
|
|
@@ -1541,7 +1541,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1541
1541
|
readonly original_line_price: number;
|
|
1542
1542
|
readonly total_discount: number;
|
|
1543
1543
|
readonly discounted_price: number;
|
|
1544
|
-
readonly discounts
|
|
1544
|
+
readonly discounts: io.flow.shopify.external.v0.models.ShopifyCartItemDiscount[];
|
|
1545
1545
|
readonly taxable: boolean;
|
|
1546
1546
|
readonly quantity: number;
|
|
1547
1547
|
readonly sku?: string;
|
|
@@ -1559,8 +1559,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1559
1559
|
readonly product_description?: string;
|
|
1560
1560
|
readonly product_type: string;
|
|
1561
1561
|
readonly variant_title?: string;
|
|
1562
|
-
readonly variant_options
|
|
1563
|
-
readonly line_level_discount_allocations
|
|
1562
|
+
readonly variant_options: string[];
|
|
1563
|
+
readonly line_level_discount_allocations: io.flow.shopify.external.v0.models.ShopifyLineLevelDiscountAllocation[];
|
|
1564
1564
|
}
|
|
1565
1565
|
|
|
1566
1566
|
interface ShopifyFulfillment {
|
|
@@ -1801,11 +1801,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1801
1801
|
readonly updated_at?: string;
|
|
1802
1802
|
readonly user_id?: number;
|
|
1803
1803
|
readonly order_status_url?: string;
|
|
1804
|
-
readonly inventory_behaviour
|
|
1804
|
+
readonly inventory_behaviour: io.flow.shopify.external.v0.enums.InventoryBehaviour;
|
|
1805
1805
|
readonly gateway?: string;
|
|
1806
1806
|
readonly transactions?: io.flow.shopify.external.v0.models.ShopifyTransactionForm[];
|
|
1807
1807
|
readonly send_receipt?: boolean;
|
|
1808
|
-
readonly metafields
|
|
1808
|
+
readonly metafields: io.flow.shopify.external.v0.models.MetafieldForm[];
|
|
1809
1809
|
}
|
|
1810
1810
|
|
|
1811
1811
|
interface ShopifyOrderCount {
|
|
@@ -1943,7 +1943,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1943
1943
|
|
|
1944
1944
|
interface ShopifyWebhookOrder {
|
|
1945
1945
|
readonly id?: number;
|
|
1946
|
-
readonly line_items
|
|
1946
|
+
readonly line_items: io.flow.shopify.external.v0.models.ShopifyWebhookOrderLineItem[];
|
|
1947
1947
|
}
|
|
1948
1948
|
|
|
1949
1949
|
interface ShopifyWebhookOrderCancelled {
|
|
@@ -3789,8 +3789,9 @@ declare namespace io.flow.v0.models {
|
|
|
3789
3789
|
readonly company?: string;
|
|
3790
3790
|
}
|
|
3791
3791
|
|
|
3792
|
-
interface
|
|
3792
|
+
interface BillingChannelOrderSummary {
|
|
3793
3793
|
readonly number: string;
|
|
3794
|
+
readonly identifiers?: Record<string, string>;
|
|
3794
3795
|
}
|
|
3795
3796
|
|
|
3796
3797
|
interface BillingChannelPaymentRequestReference {
|
|
@@ -4462,7 +4463,7 @@ declare namespace io.flow.v0.models {
|
|
|
4462
4463
|
|
|
4463
4464
|
interface ChannelTransaction {
|
|
4464
4465
|
readonly id: string;
|
|
4465
|
-
readonly order?: io.flow.v0.models.
|
|
4466
|
+
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
4466
4467
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
4467
4468
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
4468
4469
|
readonly currency: string;
|
|
@@ -5396,9 +5397,12 @@ declare namespace io.flow.v0.models {
|
|
|
5396
5397
|
|
|
5397
5398
|
interface DirectDebit {
|
|
5398
5399
|
readonly discriminator: 'direct_debit';
|
|
5399
|
-
readonly
|
|
5400
|
-
readonly
|
|
5401
|
-
readonly
|
|
5400
|
+
readonly bank_name?: string;
|
|
5401
|
+
readonly bic?: string;
|
|
5402
|
+
readonly iban?: string;
|
|
5403
|
+
readonly routing_number?: string;
|
|
5404
|
+
readonly last4?: string;
|
|
5405
|
+
readonly account_holder_name?: string;
|
|
5402
5406
|
}
|
|
5403
5407
|
|
|
5404
5408
|
interface Discount {
|
|
@@ -6669,6 +6673,13 @@ declare namespace io.flow.v0.models {
|
|
|
6669
6673
|
readonly limitations?: io.flow.v0.unions.InputSpecificationLimitation[];
|
|
6670
6674
|
}
|
|
6671
6675
|
|
|
6676
|
+
interface Installment {
|
|
6677
|
+
readonly discriminator: 'installment';
|
|
6678
|
+
readonly first_name?: string;
|
|
6679
|
+
readonly last_name?: string;
|
|
6680
|
+
readonly response_code?: string;
|
|
6681
|
+
}
|
|
6682
|
+
|
|
6672
6683
|
interface InventoryBackorder {
|
|
6673
6684
|
readonly discriminator: 'inventory_backorder';
|
|
6674
6685
|
readonly quantity: number;
|
|
@@ -7076,6 +7087,10 @@ declare namespace io.flow.v0.models {
|
|
|
7076
7087
|
readonly total: io.flow.v0.models.PriceWithBase;
|
|
7077
7088
|
}
|
|
7078
7089
|
|
|
7090
|
+
interface KubeHealthcheck {
|
|
7091
|
+
readonly status: string;
|
|
7092
|
+
}
|
|
7093
|
+
|
|
7079
7094
|
interface LabelDeletedV2 {
|
|
7080
7095
|
readonly discriminator: 'label_deleted_v2';
|
|
7081
7096
|
readonly event_id: string;
|
|
@@ -7698,6 +7713,7 @@ declare namespace io.flow.v0.models {
|
|
|
7698
7713
|
readonly expires_at?: string;
|
|
7699
7714
|
readonly base?: io.flow.v0.models.Money;
|
|
7700
7715
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
7716
|
+
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
7701
7717
|
}
|
|
7702
7718
|
|
|
7703
7719
|
interface OnlineAuthorizationDeletedV2 {
|
|
@@ -10155,7 +10171,6 @@ declare namespace io.flow.v0.models {
|
|
|
10155
10171
|
readonly discriminator: 'redirect_authorization_details';
|
|
10156
10172
|
readonly id: string;
|
|
10157
10173
|
readonly payment_redirect_url: string;
|
|
10158
|
-
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
10159
10174
|
}
|
|
10160
10175
|
|
|
10161
10176
|
interface RedirectAuthorizationForm {
|
|
@@ -12101,7 +12116,7 @@ declare namespace io.flow.v0.models {
|
|
|
12101
12116
|
|
|
12102
12117
|
interface Transaction {
|
|
12103
12118
|
readonly id: string;
|
|
12104
|
-
readonly order?: io.flow.v0.models.
|
|
12119
|
+
readonly order?: io.flow.v0.models.BillingChannelOrderSummary;
|
|
12105
12120
|
readonly statement?: io.flow.v0.models.BillingChannelStatementReference;
|
|
12106
12121
|
readonly payment_request?: io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
12107
12122
|
readonly currency: string;
|
|
@@ -12433,7 +12448,9 @@ declare namespace io.flow.v0.unions {
|
|
|
12433
12448
|
type CheckoutTokenForm =
|
|
12434
12449
|
| io.flow.v0.models.CheckoutTokenOrderForm
|
|
12435
12450
|
| io.flow.v0.models.CheckoutTokenReferenceForm;
|
|
12436
|
-
type ConfirmationDetails =
|
|
12451
|
+
type ConfirmationDetails =
|
|
12452
|
+
| io.flow.v0.models.DirectDebit
|
|
12453
|
+
| io.flow.v0.models.Installment;
|
|
12437
12454
|
type ConsumerInvoiceLine =
|
|
12438
12455
|
| io.flow.v0.models.ConsumerInvoiceLineItem
|
|
12439
12456
|
| io.flow.v0.models.ConsumerInvoiceLineDiscount
|
|
@@ -13077,8 +13094,8 @@ export type B2BInvoiceType = io.flow.v0.enums.B2BInvoiceType;
|
|
|
13077
13094
|
export type B2BInvoiceUpserted = io.flow.v0.models.B2BInvoiceUpserted;
|
|
13078
13095
|
export type BehaviorAudit = io.flow.v0.models.BehaviorAudit;
|
|
13079
13096
|
export type BillingAddress = io.flow.v0.models.BillingAddress;
|
|
13080
|
-
export type
|
|
13081
|
-
io.flow.v0.models.
|
|
13097
|
+
export type BillingChannelOrderSummary =
|
|
13098
|
+
io.flow.v0.models.BillingChannelOrderSummary;
|
|
13082
13099
|
export type BillingChannelPaymentRequestReference =
|
|
13083
13100
|
io.flow.v0.models.BillingChannelPaymentRequestReference;
|
|
13084
13101
|
export type BillingChannelStatementReference =
|
|
@@ -13728,6 +13745,7 @@ export type InputSpecificationLimitationMax =
|
|
|
13728
13745
|
export type InputSpecificationLimitations =
|
|
13729
13746
|
io.flow.v0.models.InputSpecificationLimitations;
|
|
13730
13747
|
export type InputSpecificationType = io.flow.v0.enums.InputSpecificationType;
|
|
13748
|
+
export type Installment = io.flow.v0.models.Installment;
|
|
13731
13749
|
export type InventoryBackorder = io.flow.v0.models.InventoryBackorder;
|
|
13732
13750
|
export type InventoryCenterReference =
|
|
13733
13751
|
io.flow.v0.models.InventoryCenterReference;
|
|
@@ -13797,6 +13815,7 @@ export type KlarnaSdkAuthorizationResultActionDetails =
|
|
|
13797
13815
|
export type KlaviyoLineItem = io.flow.v0.models.KlaviyoLineItem;
|
|
13798
13816
|
export type KlaviyoOrderContent = io.flow.v0.models.KlaviyoOrderContent;
|
|
13799
13817
|
export type KlaviyoOrderPrices = io.flow.v0.models.KlaviyoOrderPrices;
|
|
13818
|
+
export type KubeHealthcheck = io.flow.v0.models.KubeHealthcheck;
|
|
13800
13819
|
export type LabelDeletedV2 = io.flow.v0.models.LabelDeletedV2;
|
|
13801
13820
|
export type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
|
|
13802
13821
|
export type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
|