@flowio/types 11.24.109 → 11.24.111
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 +450 -422
- package/dist/api.d.ts +458 -194
- package/package.json +2 -2
- package/src/api-internal.ts +678 -625
- package/src/api.ts +766 -318
package/src/api.ts
CHANGED
|
@@ -551,12 +551,58 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
551
551
|
| 'unknown';
|
|
552
552
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
553
553
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
554
|
+
type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
|
|
555
|
+
type ReportingReportType =
|
|
556
|
+
| 'ending_balance_reconciliation.itemized.1'
|
|
557
|
+
| 'ending_balance_reconciliation.itemized.2'
|
|
558
|
+
| 'ending_balance_reconciliation.itemized.3'
|
|
559
|
+
| 'ending_balance_reconciliation.itemized.4'
|
|
560
|
+
| 'payout_reconciliation.itemized.5'
|
|
561
|
+
| 'payout_reconciliation.by_id.itemized.1'
|
|
562
|
+
| 'payout_reconciliation.by_id.itemized.2'
|
|
563
|
+
| 'payout_reconciliation.by_id.itemized.3'
|
|
564
|
+
| 'payout_reconciliation.by_id.itemized.4'
|
|
565
|
+
| 'payout_reconciliation.by_id.summary.1'
|
|
566
|
+
| 'ending_balance_reconciliation.summary.1'
|
|
567
|
+
| 'payout_reconciliation.itemized.1'
|
|
568
|
+
| 'payout_reconciliation.itemized.2'
|
|
569
|
+
| 'payout_reconciliation.itemized.3'
|
|
570
|
+
| 'payout_reconciliation.itemized.4'
|
|
571
|
+
| 'payout_reconciliation.summary.1';
|
|
554
572
|
type RequestThreeDSecureType = 'automatic' | 'any';
|
|
555
573
|
type RequestedCapabilities =
|
|
556
574
|
| 'card_payments'
|
|
557
575
|
| 'legacy_payments'
|
|
558
576
|
| 'transfers';
|
|
559
577
|
type SetupFutureUsage = 'on_session' | 'off_session';
|
|
578
|
+
type ShopifyPaymentStripeEventType =
|
|
579
|
+
| 'charge.captured'
|
|
580
|
+
| 'charge.dispute.created'
|
|
581
|
+
| 'charge.dispute.closed'
|
|
582
|
+
| 'charge.dispute.funds_reinstated'
|
|
583
|
+
| 'charge.dispute.funds_withdrawn'
|
|
584
|
+
| 'charge.dispute.updated'
|
|
585
|
+
| 'charge.expired'
|
|
586
|
+
| 'charge.failed'
|
|
587
|
+
| 'charge.pending'
|
|
588
|
+
| 'charge.refund.updated'
|
|
589
|
+
| 'charge.refunded'
|
|
590
|
+
| 'charge.succeeded'
|
|
591
|
+
| 'charge.updated'
|
|
592
|
+
| 'payment_intent.amount_capturable_updated'
|
|
593
|
+
| 'payment_intent.canceled'
|
|
594
|
+
| 'payment_intent.created'
|
|
595
|
+
| 'payment_intent.partially_funded'
|
|
596
|
+
| 'payment_intent.payment_failed'
|
|
597
|
+
| 'payment_intent.processing'
|
|
598
|
+
| 'payment_intent.requires_action'
|
|
599
|
+
| 'payment_intent.succeeded'
|
|
600
|
+
| 'transfer.created'
|
|
601
|
+
| 'transfer.reversed'
|
|
602
|
+
| 'transfer.updated'
|
|
603
|
+
| 'reporting.report_run.succeeded'
|
|
604
|
+
| 'reporting.report_type.updated'
|
|
605
|
+
| 'reporting.report_type.failed';
|
|
560
606
|
type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
|
|
561
607
|
type SourceStatus =
|
|
562
608
|
| 'canceled'
|
|
@@ -1493,12 +1539,76 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1493
1539
|
readonly url: string;
|
|
1494
1540
|
}
|
|
1495
1541
|
|
|
1542
|
+
interface ReportRunParameters {
|
|
1543
|
+
readonly interval_start: number;
|
|
1544
|
+
readonly interval_end: number;
|
|
1545
|
+
readonly columns?: string[];
|
|
1546
|
+
readonly payout?: string;
|
|
1547
|
+
readonly connected_account?: string;
|
|
1548
|
+
readonly reporting_category?: string;
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
interface ReportingReportRun {
|
|
1552
|
+
readonly id: string;
|
|
1553
|
+
readonly object: string;
|
|
1554
|
+
readonly created: number;
|
|
1555
|
+
readonly error?: string;
|
|
1556
|
+
readonly livemode: boolean;
|
|
1557
|
+
readonly status: io.flow.stripe.v0.enums.ReportingReportRunStatus;
|
|
1558
|
+
readonly result?: io.flow.stripe.v0.models.ReportingReportRunResult;
|
|
1559
|
+
readonly succeeded_at?: number;
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
interface ReportingReportRunForm {
|
|
1563
|
+
readonly report_type: io.flow.stripe.v0.enums.ReportingReportType;
|
|
1564
|
+
readonly parameters: io.flow.stripe.v0.models.ReportRunParameters;
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
interface ReportingReportRunResult {
|
|
1568
|
+
readonly id: string;
|
|
1569
|
+
readonly object: string;
|
|
1570
|
+
readonly created: number;
|
|
1571
|
+
readonly expires_at: number;
|
|
1572
|
+
readonly filename: string;
|
|
1573
|
+
readonly links: any /*object*/;
|
|
1574
|
+
readonly purpose: string;
|
|
1575
|
+
readonly size: number;
|
|
1576
|
+
readonly title: string;
|
|
1577
|
+
readonly type: string;
|
|
1578
|
+
readonly url: string;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
interface ReportingReportRuns {
|
|
1582
|
+
readonly object: string;
|
|
1583
|
+
readonly data: io.flow.stripe.v0.models.ReportingReportRun[];
|
|
1584
|
+
readonly has_more: boolean;
|
|
1585
|
+
readonly url?: string;
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1496
1588
|
interface Shipping {
|
|
1497
1589
|
readonly address: io.flow.stripe.v0.models.Address;
|
|
1498
1590
|
readonly name?: string;
|
|
1499
1591
|
readonly phone?: string;
|
|
1500
1592
|
}
|
|
1501
1593
|
|
|
1594
|
+
interface ShopifyPaymentStripeEvent {
|
|
1595
|
+
readonly id: string;
|
|
1596
|
+
readonly api_version?: string;
|
|
1597
|
+
readonly data: io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
|
|
1598
|
+
readonly request?: any /*object*/;
|
|
1599
|
+
readonly type: io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
|
|
1600
|
+
readonly object: string;
|
|
1601
|
+
readonly account?: string;
|
|
1602
|
+
readonly created: number;
|
|
1603
|
+
readonly livemode: boolean;
|
|
1604
|
+
readonly pending_webhooks: number;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
interface ShopifyPaymentStripeEventData {
|
|
1608
|
+
readonly object?: any /*object*/;
|
|
1609
|
+
readonly previous_attributes?: any /*object*/;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1502
1612
|
interface Source {
|
|
1503
1613
|
readonly id: string;
|
|
1504
1614
|
readonly object: string;
|
|
@@ -1954,6 +2064,18 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1954
2064
|
readonly weight?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
1955
2065
|
}
|
|
1956
2066
|
|
|
2067
|
+
interface GraphqlMetafield {
|
|
2068
|
+
readonly id: string;
|
|
2069
|
+
readonly key: string;
|
|
2070
|
+
readonly value: string;
|
|
2071
|
+
readonly type?: string;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
interface GraphqlMetaobject {
|
|
2075
|
+
readonly id: string;
|
|
2076
|
+
readonly displayName: string;
|
|
2077
|
+
}
|
|
2078
|
+
|
|
1957
2079
|
interface GraphqlOption {
|
|
1958
2080
|
readonly id: string;
|
|
1959
2081
|
readonly values: string[];
|
|
@@ -1979,6 +2101,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1979
2101
|
readonly createdAt: string;
|
|
1980
2102
|
readonly updatedAt: string;
|
|
1981
2103
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
2104
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
2105
|
+
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
1982
2106
|
}
|
|
1983
2107
|
|
|
1984
2108
|
interface GraphqlProductImage {
|
|
@@ -2002,6 +2126,11 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2002
2126
|
readonly inventoryItem: io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
2003
2127
|
}
|
|
2004
2128
|
|
|
2129
|
+
interface GraphqlTaxonomyCategory {
|
|
2130
|
+
readonly name: string;
|
|
2131
|
+
readonly fullName: string;
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2005
2134
|
interface GraphqlVariantImage {
|
|
2006
2135
|
readonly id: string;
|
|
2007
2136
|
}
|
|
@@ -2119,6 +2248,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2119
2248
|
readonly created_at: string;
|
|
2120
2249
|
readonly updated_at: string;
|
|
2121
2250
|
readonly has_variants_that_requires_components?: boolean;
|
|
2251
|
+
readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
2252
|
+
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
2122
2253
|
}
|
|
2123
2254
|
|
|
2124
2255
|
interface ProductDelete {
|
|
@@ -2136,6 +2267,17 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2136
2267
|
readonly alt?: string;
|
|
2137
2268
|
}
|
|
2138
2269
|
|
|
2270
|
+
interface ProductMetafield {
|
|
2271
|
+
readonly id: number;
|
|
2272
|
+
readonly namespace: string;
|
|
2273
|
+
readonly key: string;
|
|
2274
|
+
readonly value: string;
|
|
2275
|
+
readonly created_at: string;
|
|
2276
|
+
readonly updated_at: string;
|
|
2277
|
+
readonly type: string;
|
|
2278
|
+
readonly admin_graphql_api_id: string;
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2139
2281
|
interface ProductVariant {
|
|
2140
2282
|
readonly id: number;
|
|
2141
2283
|
readonly sku?: string;
|
|
@@ -2878,74 +3020,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2878
3020
|
}
|
|
2879
3021
|
}
|
|
2880
3022
|
|
|
2881
|
-
declare namespace io.flow.order.price.v0.enums {
|
|
2882
|
-
type OrderPriceDetailComponentKey =
|
|
2883
|
-
| 'adjustment'
|
|
2884
|
-
| 'vat_deminimis'
|
|
2885
|
-
| 'duty_deminimis'
|
|
2886
|
-
| 'duties_item_price'
|
|
2887
|
-
| 'duties_freight'
|
|
2888
|
-
| 'duties_insurance'
|
|
2889
|
-
| 'vat_item_price'
|
|
2890
|
-
| 'vat_freight'
|
|
2891
|
-
| 'vat_insurance'
|
|
2892
|
-
| 'vat_duties_item_price'
|
|
2893
|
-
| 'vat_duties_freight'
|
|
2894
|
-
| 'vat_duties_insurance'
|
|
2895
|
-
| 'item_price'
|
|
2896
|
-
| 'item_discount'
|
|
2897
|
-
| 'rounding'
|
|
2898
|
-
| 'insurance'
|
|
2899
|
-
| 'shipping'
|
|
2900
|
-
| 'shipping_discount'
|
|
2901
|
-
| 'order_discount'
|
|
2902
|
-
| 'subtotal_percent_sales_margin'
|
|
2903
|
-
| 'subtotal_vat_percent_sales_margin'
|
|
2904
|
-
| 'subtotal_duty_percent_sales_margin'
|
|
2905
|
-
| 'vat_subsidy'
|
|
2906
|
-
| 'duty_subsidy'
|
|
2907
|
-
| 'remote_area_surcharge'
|
|
2908
|
-
| 'fuel_surcharge'
|
|
2909
|
-
| 'emergency_situation_surcharge'
|
|
2910
|
-
| 'peak_surcharge'
|
|
2911
|
-
| 'duties_taxes_paid_surcharge'
|
|
2912
|
-
| 'tip';
|
|
2913
|
-
type OrderPriceDetailKey =
|
|
2914
|
-
| 'adjustment'
|
|
2915
|
-
| 'subtotal'
|
|
2916
|
-
| 'vat'
|
|
2917
|
-
| 'duty'
|
|
2918
|
-
| 'shipping'
|
|
2919
|
-
| 'insurance'
|
|
2920
|
-
| 'discount'
|
|
2921
|
-
| 'surcharges'
|
|
2922
|
-
| 'tip';
|
|
2923
|
-
}
|
|
2924
|
-
|
|
2925
|
-
declare namespace io.flow.order.price.v0.models {
|
|
2926
|
-
interface OrderPriceDetail {
|
|
2927
|
-
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
2928
|
-
readonly currency: string;
|
|
2929
|
-
readonly amount: number;
|
|
2930
|
-
readonly label: string;
|
|
2931
|
-
readonly base: io.flow.common.v0.models.Price;
|
|
2932
|
-
readonly components: io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
2933
|
-
readonly name?: string;
|
|
2934
|
-
readonly rate?: number;
|
|
2935
|
-
readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
|
|
2936
|
-
readonly rate_label?: string;
|
|
2937
|
-
}
|
|
2938
|
-
|
|
2939
|
-
interface OrderPriceDetailComponent {
|
|
2940
|
-
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
2941
|
-
readonly currency: string;
|
|
2942
|
-
readonly amount: number;
|
|
2943
|
-
readonly label: string;
|
|
2944
|
-
readonly base: io.flow.common.v0.models.Price;
|
|
2945
|
-
readonly name?: string;
|
|
2946
|
-
}
|
|
2947
|
-
}
|
|
2948
|
-
|
|
2949
3023
|
declare namespace io.flow.common.v0.enums {
|
|
2950
3024
|
type AttributeDataType =
|
|
2951
3025
|
| 'boolean'
|
|
@@ -3797,6 +3871,71 @@ declare namespace io.flow.price.v0.unions {
|
|
|
3797
3871
|
| io.flow.price.v0.models.DeminimisPerItem;
|
|
3798
3872
|
}
|
|
3799
3873
|
|
|
3874
|
+
declare namespace io.flow.channel.v0.enums {
|
|
3875
|
+
type ChannelCurrencyCapability =
|
|
3876
|
+
| 'payment_authorizations'
|
|
3877
|
+
| 'settlement_currency';
|
|
3878
|
+
}
|
|
3879
|
+
|
|
3880
|
+
declare namespace io.flow.channel.v0.models {
|
|
3881
|
+
interface Channel {
|
|
3882
|
+
readonly id: string;
|
|
3883
|
+
readonly name: string;
|
|
3884
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
3885
|
+
readonly organization_id_prefix?: string;
|
|
3886
|
+
}
|
|
3887
|
+
|
|
3888
|
+
interface ChannelAuthorization {
|
|
3889
|
+
readonly placeholder?: string;
|
|
3890
|
+
}
|
|
3891
|
+
|
|
3892
|
+
interface ChannelAuthorizationForm {
|
|
3893
|
+
readonly channel_id: string;
|
|
3894
|
+
}
|
|
3895
|
+
|
|
3896
|
+
interface ChannelCurrency {
|
|
3897
|
+
readonly id: string;
|
|
3898
|
+
readonly currency: string;
|
|
3899
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
3900
|
+
readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3903
|
+
interface ChannelOrganization {
|
|
3904
|
+
readonly id: string;
|
|
3905
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
3906
|
+
readonly key: string;
|
|
3907
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
3908
|
+
readonly name: string;
|
|
3909
|
+
readonly slug?: string;
|
|
3910
|
+
readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
|
|
3911
|
+
readonly attributes?: Record<string, string>;
|
|
3912
|
+
}
|
|
3913
|
+
|
|
3914
|
+
interface ChannelOrganizationAuthorization {
|
|
3915
|
+
readonly placeholder?: string;
|
|
3916
|
+
}
|
|
3917
|
+
|
|
3918
|
+
interface ChannelOrganizationAuthorizationForm {
|
|
3919
|
+
readonly channel_id: string;
|
|
3920
|
+
readonly organization_id: string;
|
|
3921
|
+
}
|
|
3922
|
+
|
|
3923
|
+
interface ChannelOrganizationForm {
|
|
3924
|
+
readonly key: string;
|
|
3925
|
+
readonly name?: string;
|
|
3926
|
+
readonly slug?: string;
|
|
3927
|
+
readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
|
|
3928
|
+
readonly attributes?: Record<string, string>;
|
|
3929
|
+
}
|
|
3930
|
+
|
|
3931
|
+
interface ChannelOrganizationPutForm {
|
|
3932
|
+
readonly name?: string;
|
|
3933
|
+
readonly slug?: string;
|
|
3934
|
+
readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
|
|
3935
|
+
readonly attributes?: Record<string, string>;
|
|
3936
|
+
}
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3800
3939
|
declare namespace io.flow.reference.v0.enums {
|
|
3801
3940
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
3802
3941
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
@@ -3931,35 +4070,6 @@ declare namespace io.flow.reference.v0.models {
|
|
|
3931
4070
|
}
|
|
3932
4071
|
}
|
|
3933
4072
|
|
|
3934
|
-
declare namespace io.flow.ben.test.internal.v0.models {
|
|
3935
|
-
interface GenerateLoadMultipleOrgs {
|
|
3936
|
-
readonly discriminator: 'generate_load_multiple_orgs';
|
|
3937
|
-
readonly organization_ids: string[];
|
|
3938
|
-
readonly num_events: number;
|
|
3939
|
-
}
|
|
3940
|
-
|
|
3941
|
-
interface GenerateLoadSingleOrg {
|
|
3942
|
-
readonly discriminator: 'generate_load_single_org';
|
|
3943
|
-
readonly organization_id: string;
|
|
3944
|
-
readonly num_events: number;
|
|
3945
|
-
}
|
|
3946
|
-
|
|
3947
|
-
interface Test {
|
|
3948
|
-
readonly id: string;
|
|
3949
|
-
readonly name: string;
|
|
3950
|
-
}
|
|
3951
|
-
|
|
3952
|
-
interface TestForm {
|
|
3953
|
-
readonly name: string;
|
|
3954
|
-
}
|
|
3955
|
-
}
|
|
3956
|
-
|
|
3957
|
-
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
3958
|
-
type GenerateLoad =
|
|
3959
|
-
| io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg
|
|
3960
|
-
| io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
3961
|
-
}
|
|
3962
|
-
|
|
3963
4073
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
3964
4074
|
type CenterCapability =
|
|
3965
4075
|
| 'international'
|
|
@@ -4750,6 +4860,7 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
4750
4860
|
|
|
4751
4861
|
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
4752
4862
|
type AldoItemType = 'physical' | 'digital';
|
|
4863
|
+
type AnshItemType = 'physical' | 'digital';
|
|
4753
4864
|
}
|
|
4754
4865
|
|
|
4755
4866
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
@@ -4770,6 +4881,23 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
4770
4881
|
readonly added_on: string;
|
|
4771
4882
|
}
|
|
4772
4883
|
|
|
4884
|
+
interface AnshItem {
|
|
4885
|
+
readonly id: string;
|
|
4886
|
+
readonly number: string;
|
|
4887
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
4888
|
+
readonly description?: string;
|
|
4889
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
4890
|
+
readonly added_on: string;
|
|
4891
|
+
}
|
|
4892
|
+
|
|
4893
|
+
interface AnshItemForm {
|
|
4894
|
+
readonly number: string;
|
|
4895
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
4896
|
+
readonly description?: string;
|
|
4897
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
4898
|
+
readonly added_on: string;
|
|
4899
|
+
}
|
|
4900
|
+
|
|
4773
4901
|
interface JeanDemoItem {
|
|
4774
4902
|
readonly id: string;
|
|
4775
4903
|
readonly name: string;
|
|
@@ -4889,72 +5017,309 @@ declare namespace io.flow.organization.v0.models {
|
|
|
4889
5017
|
readonly roles?: io.flow.permission.v0.enums.FlowRole[];
|
|
4890
5018
|
}
|
|
4891
5019
|
|
|
4892
|
-
interface MembershipVersion {
|
|
4893
|
-
readonly id: string;
|
|
4894
|
-
readonly timestamp: string;
|
|
4895
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
4896
|
-
readonly membership: io.flow.organization.v0.models.Membership;
|
|
5020
|
+
interface MembershipVersion {
|
|
5021
|
+
readonly id: string;
|
|
5022
|
+
readonly timestamp: string;
|
|
5023
|
+
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
5024
|
+
readonly membership: io.flow.organization.v0.models.Membership;
|
|
5025
|
+
}
|
|
5026
|
+
|
|
5027
|
+
interface OrganizationAuthorization {
|
|
5028
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
5029
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
5030
|
+
}
|
|
5031
|
+
|
|
5032
|
+
interface OrganizationAuthorizationForm {
|
|
5033
|
+
readonly organization: string;
|
|
5034
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
5035
|
+
}
|
|
5036
|
+
|
|
5037
|
+
interface OrganizationConfigurationReference {
|
|
5038
|
+
readonly id: string;
|
|
5039
|
+
}
|
|
5040
|
+
|
|
5041
|
+
interface OrganizationDefaultConfigurations {
|
|
5042
|
+
readonly id: string;
|
|
5043
|
+
readonly checkout_configuration: io.flow.organization.v0.models.OrganizationConfigurationReference;
|
|
5044
|
+
}
|
|
5045
|
+
|
|
5046
|
+
interface OrganizationDefaultConfigurationsForm {
|
|
5047
|
+
readonly id: string;
|
|
5048
|
+
}
|
|
5049
|
+
|
|
5050
|
+
interface OrganizationForm {
|
|
5051
|
+
readonly id?: string;
|
|
5052
|
+
readonly name?: string;
|
|
5053
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
5054
|
+
readonly parent_id?: string;
|
|
5055
|
+
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
5056
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
5057
|
+
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
5058
|
+
}
|
|
5059
|
+
|
|
5060
|
+
interface OrganizationPutForm {
|
|
5061
|
+
readonly name?: string;
|
|
5062
|
+
readonly environment?: io.flow.common.v0.enums.Environment;
|
|
5063
|
+
readonly parent_id?: string;
|
|
5064
|
+
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
5065
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
5066
|
+
}
|
|
5067
|
+
|
|
5068
|
+
interface OrganizationVersion {
|
|
5069
|
+
readonly id: string;
|
|
5070
|
+
readonly timestamp: string;
|
|
5071
|
+
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
5072
|
+
readonly organization: io.flow.common.v0.models.Organization;
|
|
5073
|
+
}
|
|
5074
|
+
|
|
5075
|
+
interface RegionSetting {
|
|
5076
|
+
readonly id: string;
|
|
5077
|
+
readonly region: string;
|
|
5078
|
+
readonly status: io.flow.common.v0.enums.AvailabilityStatus;
|
|
5079
|
+
}
|
|
5080
|
+
|
|
5081
|
+
interface RegionSettingForm {
|
|
5082
|
+
readonly status: io.flow.common.v0.enums.AvailabilityStatus;
|
|
5083
|
+
}
|
|
5084
|
+
}
|
|
5085
|
+
|
|
5086
|
+
declare namespace io.flow.order.price.v0.enums {
|
|
5087
|
+
type OrderPriceDetailComponentKey =
|
|
5088
|
+
| 'adjustment'
|
|
5089
|
+
| 'vat_deminimis'
|
|
5090
|
+
| 'duty_deminimis'
|
|
5091
|
+
| 'duties_item_price'
|
|
5092
|
+
| 'duties_freight'
|
|
5093
|
+
| 'duties_insurance'
|
|
5094
|
+
| 'vat_item_price'
|
|
5095
|
+
| 'vat_freight'
|
|
5096
|
+
| 'vat_insurance'
|
|
5097
|
+
| 'vat_duties_item_price'
|
|
5098
|
+
| 'vat_duties_freight'
|
|
5099
|
+
| 'vat_duties_insurance'
|
|
5100
|
+
| 'item_price'
|
|
5101
|
+
| 'item_discount'
|
|
5102
|
+
| 'rounding'
|
|
5103
|
+
| 'insurance'
|
|
5104
|
+
| 'shipping'
|
|
5105
|
+
| 'shipping_discount'
|
|
5106
|
+
| 'order_discount'
|
|
5107
|
+
| 'subtotal_percent_sales_margin'
|
|
5108
|
+
| 'subtotal_vat_percent_sales_margin'
|
|
5109
|
+
| 'subtotal_duty_percent_sales_margin'
|
|
5110
|
+
| 'vat_subsidy'
|
|
5111
|
+
| 'duty_subsidy'
|
|
5112
|
+
| 'remote_area_surcharge'
|
|
5113
|
+
| 'fuel_surcharge'
|
|
5114
|
+
| 'emergency_situation_surcharge'
|
|
5115
|
+
| 'peak_surcharge'
|
|
5116
|
+
| 'duties_taxes_paid_surcharge'
|
|
5117
|
+
| 'tip';
|
|
5118
|
+
type OrderPriceDetailKey =
|
|
5119
|
+
| 'adjustment'
|
|
5120
|
+
| 'subtotal'
|
|
5121
|
+
| 'vat'
|
|
5122
|
+
| 'duty'
|
|
5123
|
+
| 'shipping'
|
|
5124
|
+
| 'insurance'
|
|
5125
|
+
| 'discount'
|
|
5126
|
+
| 'surcharges'
|
|
5127
|
+
| 'tip';
|
|
5128
|
+
}
|
|
5129
|
+
|
|
5130
|
+
declare namespace io.flow.order.price.v0.models {
|
|
5131
|
+
interface OrderPriceDetail {
|
|
5132
|
+
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
5133
|
+
readonly currency: string;
|
|
5134
|
+
readonly amount: number;
|
|
5135
|
+
readonly label: string;
|
|
5136
|
+
readonly base: io.flow.common.v0.models.Price;
|
|
5137
|
+
readonly components: io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
5138
|
+
readonly name?: string;
|
|
5139
|
+
readonly rate?: number;
|
|
5140
|
+
readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
|
|
5141
|
+
readonly rate_label?: string;
|
|
5142
|
+
}
|
|
5143
|
+
|
|
5144
|
+
interface OrderPriceDetailComponent {
|
|
5145
|
+
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
5146
|
+
readonly currency: string;
|
|
5147
|
+
readonly amount: number;
|
|
5148
|
+
readonly label: string;
|
|
5149
|
+
readonly base: io.flow.common.v0.models.Price;
|
|
5150
|
+
readonly name?: string;
|
|
5151
|
+
}
|
|
5152
|
+
}
|
|
5153
|
+
|
|
5154
|
+
declare namespace io.flow.channel.internal.v0.enums {
|
|
5155
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
5156
|
+
type ChannelOrderAcceptanceFailureReasonCode =
|
|
5157
|
+
| 'channel_order_mor_invalid'
|
|
5158
|
+
| 'channel_order_does_not_exist';
|
|
5159
|
+
type ChannelOrderAcceptanceNextActionFrom =
|
|
5160
|
+
| 'cx_team'
|
|
5161
|
+
| 'core_team'
|
|
5162
|
+
| 'core_team_investigate'
|
|
5163
|
+
| 'mex_team'
|
|
5164
|
+
| 'payments_team'
|
|
5165
|
+
| 'tc_team'
|
|
5166
|
+
| 'logistics_team';
|
|
5167
|
+
type ChannelOrderAcceptanceRejectionReason =
|
|
5168
|
+
| 'unsupported_origin_country'
|
|
5169
|
+
| 'unsupported_destination_country'
|
|
5170
|
+
| 'domestic_order'
|
|
5171
|
+
| 'order_contains_gift_card'
|
|
5172
|
+
| 'order_contains_restricted_goods'
|
|
5173
|
+
| 'missing_order_information'
|
|
5174
|
+
| 'missing_classification_information'
|
|
5175
|
+
| 'unsupported_payment_information'
|
|
5176
|
+
| 'unsupported_shop_currency'
|
|
5177
|
+
| 'unsupported_free_order'
|
|
5178
|
+
| 'extracting_distribution_info_failed'
|
|
5179
|
+
| 'shipping_estimation_failed'
|
|
5180
|
+
| 'payment_authorization_failed'
|
|
5181
|
+
| 'unsupported_subsidized_order'
|
|
5182
|
+
| 'unsupported_virtual_goods'
|
|
5183
|
+
| 'non_matching_currencies'
|
|
5184
|
+
| 'unsupported_order_edit'
|
|
5185
|
+
| 'order_missing';
|
|
5186
|
+
type ChannelOrderAcceptanceStatus =
|
|
5187
|
+
| 'accepted'
|
|
5188
|
+
| 'rejected'
|
|
5189
|
+
| 'review'
|
|
5190
|
+
| 'edit_review'
|
|
5191
|
+
| 'edit_accepted';
|
|
5192
|
+
}
|
|
5193
|
+
|
|
5194
|
+
declare namespace io.flow.channel.internal.v0.models {
|
|
5195
|
+
interface ChannelCurrencyForm {
|
|
5196
|
+
readonly currency: string;
|
|
5197
|
+
readonly channel_id: string;
|
|
5198
|
+
readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
5199
|
+
}
|
|
5200
|
+
|
|
5201
|
+
interface ChannelForm {
|
|
5202
|
+
readonly name: string;
|
|
5203
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
5204
|
+
readonly organization_id_prefix?: string;
|
|
5205
|
+
}
|
|
5206
|
+
|
|
5207
|
+
interface ChannelMembership {
|
|
5208
|
+
readonly id: string;
|
|
5209
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
5210
|
+
readonly user: io.flow.common.v0.unions.ExpandableUser;
|
|
5211
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
5212
|
+
}
|
|
5213
|
+
|
|
5214
|
+
interface ChannelMembershipForm {
|
|
5215
|
+
readonly channel_id: string;
|
|
5216
|
+
readonly user_id: string;
|
|
5217
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
5218
|
+
}
|
|
5219
|
+
|
|
5220
|
+
interface ChannelMembershipPutForm {
|
|
5221
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
5222
|
+
}
|
|
5223
|
+
|
|
5224
|
+
interface ChannelOrderAcceptance {
|
|
5225
|
+
readonly id: string;
|
|
5226
|
+
readonly organization_id: string;
|
|
5227
|
+
readonly order_number: string;
|
|
5228
|
+
readonly channel_id: string;
|
|
5229
|
+
readonly external_order_reference: string;
|
|
5230
|
+
readonly payment_request_id?: string;
|
|
5231
|
+
readonly order_edit_payment_request_ids?: string[];
|
|
5232
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
5233
|
+
readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
5234
|
+
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
5235
|
+
readonly order_created_at?: string;
|
|
5236
|
+
readonly order_updated_at?: string;
|
|
5237
|
+
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
5238
|
+
}
|
|
5239
|
+
|
|
5240
|
+
interface ChannelOrderAcceptanceDetails {
|
|
5241
|
+
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
5242
|
+
readonly external_order: any /*object*/;
|
|
5243
|
+
}
|
|
5244
|
+
|
|
5245
|
+
interface ChannelOrderAcceptanceFailure {
|
|
5246
|
+
readonly id: string;
|
|
5247
|
+
readonly organization_id: string;
|
|
5248
|
+
readonly channel_id: string;
|
|
5249
|
+
readonly payment_request_id: string;
|
|
5250
|
+
readonly code: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
5251
|
+
readonly reason: string;
|
|
5252
|
+
}
|
|
5253
|
+
|
|
5254
|
+
interface ChannelOrderAcceptanceForm {
|
|
5255
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
4897
5256
|
}
|
|
4898
5257
|
|
|
4899
|
-
interface
|
|
4900
|
-
readonly
|
|
4901
|
-
readonly
|
|
5258
|
+
interface ChannelOrderAcceptanceReason {
|
|
5259
|
+
readonly description: string;
|
|
5260
|
+
readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
4902
5261
|
}
|
|
4903
5262
|
|
|
4904
|
-
interface
|
|
4905
|
-
readonly
|
|
4906
|
-
readonly environment: io.flow.common.v0.enums.Environment;
|
|
5263
|
+
interface FlowChannelOrganization {
|
|
5264
|
+
readonly placeholder?: string;
|
|
4907
5265
|
}
|
|
4908
5266
|
|
|
4909
|
-
interface
|
|
4910
|
-
readonly
|
|
5267
|
+
interface OrderEditSummary {
|
|
5268
|
+
readonly edited_at: string;
|
|
4911
5269
|
}
|
|
5270
|
+
}
|
|
4912
5271
|
|
|
4913
|
-
|
|
4914
|
-
|
|
4915
|
-
readonly
|
|
5272
|
+
declare namespace io.flow.product.v0.models {
|
|
5273
|
+
interface Product {
|
|
5274
|
+
readonly organization_id: string;
|
|
5275
|
+
readonly number: string;
|
|
5276
|
+
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
5277
|
+
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
5278
|
+
readonly item_numbers: string[];
|
|
5279
|
+
readonly updated_at: string;
|
|
5280
|
+
readonly deleted_at?: string;
|
|
4916
5281
|
}
|
|
4917
5282
|
|
|
4918
|
-
interface
|
|
4919
|
-
readonly
|
|
5283
|
+
interface ProductTaxonomyCategory {
|
|
5284
|
+
readonly name: string;
|
|
5285
|
+
readonly full_name: string;
|
|
4920
5286
|
}
|
|
4921
5287
|
|
|
4922
|
-
interface
|
|
4923
|
-
readonly
|
|
4924
|
-
readonly
|
|
4925
|
-
readonly environment: io.flow.common.v0.enums.Environment;
|
|
4926
|
-
readonly parent_id?: string;
|
|
4927
|
-
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
4928
|
-
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
4929
|
-
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
5288
|
+
interface ProductTaxonomyData {
|
|
5289
|
+
readonly key: string;
|
|
5290
|
+
readonly value: string[];
|
|
4930
5291
|
}
|
|
5292
|
+
}
|
|
4931
5293
|
|
|
4932
|
-
|
|
4933
|
-
|
|
4934
|
-
readonly
|
|
4935
|
-
readonly
|
|
4936
|
-
readonly
|
|
4937
|
-
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
5294
|
+
declare namespace io.flow.ben.test.internal.v0.models {
|
|
5295
|
+
interface GenerateLoadMultipleOrgs {
|
|
5296
|
+
readonly discriminator: 'generate_load_multiple_orgs';
|
|
5297
|
+
readonly organization_ids: string[];
|
|
5298
|
+
readonly num_events: number;
|
|
4938
5299
|
}
|
|
4939
5300
|
|
|
4940
|
-
interface
|
|
4941
|
-
readonly
|
|
4942
|
-
readonly
|
|
4943
|
-
readonly
|
|
4944
|
-
readonly organization: io.flow.common.v0.models.Organization;
|
|
5301
|
+
interface GenerateLoadSingleOrg {
|
|
5302
|
+
readonly discriminator: 'generate_load_single_org';
|
|
5303
|
+
readonly organization_id: string;
|
|
5304
|
+
readonly num_events: number;
|
|
4945
5305
|
}
|
|
4946
5306
|
|
|
4947
|
-
interface
|
|
5307
|
+
interface Test {
|
|
4948
5308
|
readonly id: string;
|
|
4949
|
-
readonly
|
|
4950
|
-
readonly status: io.flow.common.v0.enums.AvailabilityStatus;
|
|
5309
|
+
readonly name: string;
|
|
4951
5310
|
}
|
|
4952
5311
|
|
|
4953
|
-
interface
|
|
4954
|
-
readonly
|
|
5312
|
+
interface TestForm {
|
|
5313
|
+
readonly name: string;
|
|
4955
5314
|
}
|
|
4956
5315
|
}
|
|
4957
5316
|
|
|
5317
|
+
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
5318
|
+
type GenerateLoad =
|
|
5319
|
+
| io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg
|
|
5320
|
+
| io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
5321
|
+
}
|
|
5322
|
+
|
|
4958
5323
|
declare namespace io.flow.catalog.v0.enums {
|
|
4959
5324
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
4960
5325
|
type AttributeIntent =
|
|
@@ -5760,6 +6125,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5760
6125
|
type ChannelCurrencyCapability =
|
|
5761
6126
|
| 'payment_authorizations'
|
|
5762
6127
|
| 'settlement_currency';
|
|
6128
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
5763
6129
|
type ConsumerInvoiceCustomerType =
|
|
5764
6130
|
| 'business_eu_verified'
|
|
5765
6131
|
| 'business_non_verified'
|
|
@@ -5838,10 +6204,14 @@ declare namespace io.flow.v0.enums {
|
|
|
5838
6204
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
5839
6205
|
type Environment = 'sandbox' | 'production';
|
|
5840
6206
|
type EventType =
|
|
6207
|
+
| 'authorization_retry_upserted'
|
|
6208
|
+
| 'authorization_retry_deleted'
|
|
5841
6209
|
| 'test_upserted'
|
|
5842
6210
|
| 'generate_load'
|
|
5843
6211
|
| 'aldo_item_upserted'
|
|
5844
6212
|
| 'aldo_item_deleted'
|
|
6213
|
+
| 'ansh_item_upserted'
|
|
6214
|
+
| 'ansh_item_deleted'
|
|
5845
6215
|
| 'transaction_upserted'
|
|
5846
6216
|
| 'organization_transaction_upserted'
|
|
5847
6217
|
| 'organization_transaction_deleted'
|
|
@@ -5868,10 +6238,6 @@ declare namespace io.flow.v0.enums {
|
|
|
5868
6238
|
| 'catalog_deleted'
|
|
5869
6239
|
| 'subcatalog_upserted'
|
|
5870
6240
|
| 'subcatalog_deleted'
|
|
5871
|
-
| 'catalog_item_upserted'
|
|
5872
|
-
| 'catalog_item_deleted'
|
|
5873
|
-
| 'catalog_item_upserted_v2'
|
|
5874
|
-
| 'catalog_item_deleted_v2'
|
|
5875
6241
|
| 'subcatalog_item_upserted'
|
|
5876
6242
|
| 'subcatalog_item_deleted'
|
|
5877
6243
|
| 'catalog_statistics_upserted'
|
|
@@ -5879,6 +6245,8 @@ declare namespace io.flow.v0.enums {
|
|
|
5879
6245
|
| 'item_inserted'
|
|
5880
6246
|
| 'item_updated'
|
|
5881
6247
|
| 'item_deleted'
|
|
6248
|
+
| 'channel_shopify_order_state_upserted'
|
|
6249
|
+
| 'channel_shopify_order_state_deleted'
|
|
5882
6250
|
| 'channel_upserted'
|
|
5883
6251
|
| 'channel_deleted'
|
|
5884
6252
|
| 'channel_currency_upserted'
|
|
@@ -5953,6 +6321,11 @@ declare namespace io.flow.v0.enums {
|
|
|
5953
6321
|
| 'shipping_configuration_item_availability_deleted'
|
|
5954
6322
|
| 'shipping_configuration_item_shipping_pricing_upserted'
|
|
5955
6323
|
| 'shipping_configuration_item_shipping_pricing_deleted'
|
|
6324
|
+
| 'ge_item_inserted'
|
|
6325
|
+
| 'ge_item_updated'
|
|
6326
|
+
| 'ge_item_deleted'
|
|
6327
|
+
| 'ge_product_restriction_result_upserted'
|
|
6328
|
+
| 'ge_product_restriction_result_deleted'
|
|
5956
6329
|
| 'hs6_code_upserted'
|
|
5957
6330
|
| 'hs6_code_deleted'
|
|
5958
6331
|
| 'hs10_code_upserted'
|
|
@@ -5972,8 +6345,6 @@ declare namespace io.flow.v0.enums {
|
|
|
5972
6345
|
| 'manifested_label_deleted'
|
|
5973
6346
|
| 'label_processing_modification_upserted'
|
|
5974
6347
|
| 'label_processing_modification_deleted'
|
|
5975
|
-
| 'local_item_upserted'
|
|
5976
|
-
| 'local_item_deleted'
|
|
5977
6348
|
| 'merchant_application_upserted'
|
|
5978
6349
|
| 'merchant_application_deleted'
|
|
5979
6350
|
| 'checkout_optin_responses_upserted'
|
|
@@ -6027,6 +6398,9 @@ declare namespace io.flow.v0.enums {
|
|
|
6027
6398
|
| 'price_book_deleted'
|
|
6028
6399
|
| 'price_book_item_upserted'
|
|
6029
6400
|
| 'price_book_item_deleted'
|
|
6401
|
+
| 'product_inserted'
|
|
6402
|
+
| 'product_updated'
|
|
6403
|
+
| 'product_deleted'
|
|
6030
6404
|
| 'organization_rates_published'
|
|
6031
6405
|
| 'ratecard_lane_upserted'
|
|
6032
6406
|
| 'ratecard_lane_deleted'
|
|
@@ -6232,6 +6606,7 @@ declare namespace io.flow.v0.enums {
|
|
|
6232
6606
|
| 'gift_card_not_accepted'
|
|
6233
6607
|
| 'total_changed';
|
|
6234
6608
|
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
6609
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
6235
6610
|
type OrderPaymentType =
|
|
6236
6611
|
| 'card'
|
|
6237
6612
|
| 'online'
|
|
@@ -6589,14 +6964,49 @@ declare namespace io.flow.v0.enums {
|
|
|
6589
6964
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
6590
6965
|
type Strategy = 'range' | 'from' | 'to';
|
|
6591
6966
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
6967
|
+
type SubstatusCode =
|
|
6968
|
+
| 'Delivered_001'
|
|
6969
|
+
| 'Delivered_002'
|
|
6970
|
+
| 'Delivered_003'
|
|
6971
|
+
| 'Delivered_004'
|
|
6972
|
+
| 'AvailableForPickup_001'
|
|
6973
|
+
| 'Exception_001'
|
|
6974
|
+
| 'Exception_002'
|
|
6975
|
+
| 'Exception_003'
|
|
6976
|
+
| 'Exception_004'
|
|
6977
|
+
| 'Exception_005'
|
|
6978
|
+
| 'Exception_006'
|
|
6979
|
+
| 'Exception_007'
|
|
6980
|
+
| 'Exception_008'
|
|
6981
|
+
| 'Exception_009'
|
|
6982
|
+
| 'Exception_010'
|
|
6983
|
+
| 'Exception_011'
|
|
6984
|
+
| 'Exception_012'
|
|
6985
|
+
| 'Exception_013'
|
|
6986
|
+
| 'AttemptFail_001'
|
|
6987
|
+
| 'AttemptFail_002'
|
|
6988
|
+
| 'AttemptFail_003'
|
|
6989
|
+
| 'InTransit_001'
|
|
6990
|
+
| 'InTransit_002'
|
|
6991
|
+
| 'InTransit_003'
|
|
6992
|
+
| 'InTransit_004'
|
|
6993
|
+
| 'InTransit_005'
|
|
6994
|
+
| 'InTransit_006'
|
|
6995
|
+
| 'InTransit_007'
|
|
6996
|
+
| 'InTransit_008'
|
|
6997
|
+
| 'InTransit_009'
|
|
6998
|
+
| 'InfoReceived_001'
|
|
6999
|
+
| 'OutForDelivery_001'
|
|
7000
|
+
| 'OutForDelivery_003'
|
|
7001
|
+
| 'OutForDelivery_004'
|
|
7002
|
+
| 'Pending_001'
|
|
7003
|
+
| 'Pending_002'
|
|
7004
|
+
| 'Pending_003'
|
|
7005
|
+
| 'Pending_004'
|
|
7006
|
+
| 'Pending_005'
|
|
7007
|
+
| 'Pending_006'
|
|
7008
|
+
| 'Expired_001';
|
|
6592
7009
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
6593
|
-
type SyncRecordFailureReason =
|
|
6594
|
-
| 'inventory'
|
|
6595
|
-
| 'address'
|
|
6596
|
-
| 'promotion'
|
|
6597
|
-
| 'other';
|
|
6598
|
-
type SyncStreamType = 'submitted_order' | 'placed_order';
|
|
6599
|
-
type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
|
|
6600
7010
|
type TaxApplicability = 'none' | 'all';
|
|
6601
7011
|
type TaxReportType = 'consumer' | 'b2b';
|
|
6602
7012
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -6625,7 +7035,9 @@ declare namespace io.flow.v0.enums {
|
|
|
6625
7035
|
| 'delivered'
|
|
6626
7036
|
| 'exception'
|
|
6627
7037
|
| 'returned'
|
|
6628
|
-
| 'expired'
|
|
7038
|
+
| 'expired'
|
|
7039
|
+
| 'unknown'
|
|
7040
|
+
| 'unmapped';
|
|
6629
7041
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
6630
7042
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
6631
7043
|
type TransactionSource =
|
|
@@ -6654,7 +7066,10 @@ declare namespace io.flow.v0.enums {
|
|
|
6654
7066
|
| 'virtual_card_capture'
|
|
6655
7067
|
| 'virtual_card_refund'
|
|
6656
7068
|
| 'failed_payout'
|
|
6657
|
-
| 'tax_refund'
|
|
7069
|
+
| 'tax_refund'
|
|
7070
|
+
| 'non_l4l_tax_duty_fx'
|
|
7071
|
+
| 'ge_revenue_share'
|
|
7072
|
+
| 'tax_duty_delta';
|
|
6658
7073
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
6659
7074
|
type TrueupSurchargeType =
|
|
6660
7075
|
| 'fuel'
|
|
@@ -7150,6 +7565,20 @@ declare namespace io.flow.v0.models {
|
|
|
7150
7565
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
7151
7566
|
}
|
|
7152
7567
|
|
|
7568
|
+
interface AnshItemDeleted {
|
|
7569
|
+
readonly discriminator: 'ansh_item_deleted';
|
|
7570
|
+
readonly event_id: string;
|
|
7571
|
+
readonly timestamp: string;
|
|
7572
|
+
readonly id: string;
|
|
7573
|
+
}
|
|
7574
|
+
|
|
7575
|
+
interface AnshItemUpserted {
|
|
7576
|
+
readonly discriminator: 'ansh_item_upserted';
|
|
7577
|
+
readonly event_id: string;
|
|
7578
|
+
readonly timestamp: string;
|
|
7579
|
+
readonly item: io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
7580
|
+
}
|
|
7581
|
+
|
|
7153
7582
|
interface ApplePayMerchantValidationPayload {
|
|
7154
7583
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
7155
7584
|
readonly validation_url: string;
|
|
@@ -7337,6 +7766,33 @@ declare namespace io.flow.v0.models {
|
|
|
7337
7766
|
readonly display: string;
|
|
7338
7767
|
}
|
|
7339
7768
|
|
|
7769
|
+
interface AuthorizationRetry {
|
|
7770
|
+
readonly id: string;
|
|
7771
|
+
readonly authorization_request_id: string;
|
|
7772
|
+
readonly authorization_id: string;
|
|
7773
|
+
readonly organization_id: string;
|
|
7774
|
+
readonly attempt: number;
|
|
7775
|
+
readonly last_failure_code: string;
|
|
7776
|
+
readonly created_at: string;
|
|
7777
|
+
readonly updated_at: string;
|
|
7778
|
+
}
|
|
7779
|
+
|
|
7780
|
+
interface AuthorizationRetryDeleted {
|
|
7781
|
+
readonly discriminator: 'authorization_retry_deleted';
|
|
7782
|
+
readonly event_id: string;
|
|
7783
|
+
readonly timestamp: string;
|
|
7784
|
+
readonly organization: string;
|
|
7785
|
+
readonly id: string;
|
|
7786
|
+
}
|
|
7787
|
+
|
|
7788
|
+
interface AuthorizationRetryUpserted {
|
|
7789
|
+
readonly discriminator: 'authorization_retry_upserted';
|
|
7790
|
+
readonly event_id: string;
|
|
7791
|
+
readonly timestamp: string;
|
|
7792
|
+
readonly organization: string;
|
|
7793
|
+
readonly authorization_retry: io.flow.v0.models.AuthorizationRetry;
|
|
7794
|
+
}
|
|
7795
|
+
|
|
7340
7796
|
interface AuthorizationStatusChanged {
|
|
7341
7797
|
readonly discriminator: 'authorization_status_changed';
|
|
7342
7798
|
readonly event_id: string;
|
|
@@ -7775,6 +8231,7 @@ declare namespace io.flow.v0.models {
|
|
|
7775
8231
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
7776
8232
|
readonly stored_method_usage_step?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
7777
8233
|
readonly authorized_at?: string;
|
|
8234
|
+
readonly authorization_request_id?: string;
|
|
7778
8235
|
}
|
|
7779
8236
|
|
|
7780
8237
|
interface CardAuthorizationDeletedV2 {
|
|
@@ -7932,6 +8389,11 @@ declare namespace io.flow.v0.models {
|
|
|
7932
8389
|
readonly id: string;
|
|
7933
8390
|
}
|
|
7934
8391
|
|
|
8392
|
+
interface CarrierRestrictions {
|
|
8393
|
+
readonly carrier: string;
|
|
8394
|
+
readonly regions: string[];
|
|
8395
|
+
}
|
|
8396
|
+
|
|
7935
8397
|
interface CarrierService {
|
|
7936
8398
|
readonly id: string;
|
|
7937
8399
|
readonly carrier: io.flow.v0.models.Carrier;
|
|
@@ -7953,22 +8415,6 @@ declare namespace io.flow.v0.models {
|
|
|
7953
8415
|
readonly organization: string;
|
|
7954
8416
|
}
|
|
7955
8417
|
|
|
7956
|
-
interface CatalogItemDeleted {
|
|
7957
|
-
readonly discriminator: 'catalog_item_deleted';
|
|
7958
|
-
readonly event_id: string;
|
|
7959
|
-
readonly timestamp: string;
|
|
7960
|
-
readonly organization: string;
|
|
7961
|
-
readonly number: string;
|
|
7962
|
-
}
|
|
7963
|
-
|
|
7964
|
-
interface CatalogItemDeletedV2 {
|
|
7965
|
-
readonly discriminator: 'catalog_item_deleted_v2';
|
|
7966
|
-
readonly event_id: string;
|
|
7967
|
-
readonly timestamp: string;
|
|
7968
|
-
readonly organization: string;
|
|
7969
|
-
readonly item: io.flow.v0.models.Item;
|
|
7970
|
-
}
|
|
7971
|
-
|
|
7972
8418
|
interface CatalogItemDocument {
|
|
7973
8419
|
readonly discriminator: 'catalog_item_document';
|
|
7974
8420
|
readonly number: string;
|
|
@@ -8001,31 +8447,6 @@ declare namespace io.flow.v0.models {
|
|
|
8001
8447
|
readonly attributes: Record<string, string>;
|
|
8002
8448
|
}
|
|
8003
8449
|
|
|
8004
|
-
interface CatalogItemUpserted {
|
|
8005
|
-
readonly discriminator: 'catalog_item_upserted';
|
|
8006
|
-
readonly event_id: string;
|
|
8007
|
-
readonly timestamp: string;
|
|
8008
|
-
readonly organization: string;
|
|
8009
|
-
readonly number: string;
|
|
8010
|
-
readonly locale: string;
|
|
8011
|
-
readonly name: string;
|
|
8012
|
-
readonly currency: string;
|
|
8013
|
-
readonly price: number;
|
|
8014
|
-
readonly categories: string[];
|
|
8015
|
-
readonly description?: string;
|
|
8016
|
-
readonly attributes: Record<string, string>;
|
|
8017
|
-
readonly dimensions: any /*object*/;
|
|
8018
|
-
readonly images: any /*object*/[];
|
|
8019
|
-
}
|
|
8020
|
-
|
|
8021
|
-
interface CatalogItemUpsertedV2 {
|
|
8022
|
-
readonly discriminator: 'catalog_item_upserted_v2';
|
|
8023
|
-
readonly event_id: string;
|
|
8024
|
-
readonly timestamp: string;
|
|
8025
|
-
readonly organization: string;
|
|
8026
|
-
readonly item: io.flow.v0.models.Item;
|
|
8027
|
-
}
|
|
8028
|
-
|
|
8029
8450
|
interface CatalogPriceBookItemDocument {
|
|
8030
8451
|
readonly price_book_key: string;
|
|
8031
8452
|
readonly price_book_item_key: string;
|
|
@@ -8321,6 +8742,39 @@ declare namespace io.flow.v0.models {
|
|
|
8321
8742
|
readonly id: string;
|
|
8322
8743
|
}
|
|
8323
8744
|
|
|
8745
|
+
interface ChannelShopifyOrderState {
|
|
8746
|
+
readonly id: string;
|
|
8747
|
+
readonly shopify_order_summary: io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
8748
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
8749
|
+
readonly reasons?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
8750
|
+
}
|
|
8751
|
+
|
|
8752
|
+
interface ChannelShopifyOrderStateDeleted {
|
|
8753
|
+
readonly discriminator: 'channel_shopify_order_state_deleted';
|
|
8754
|
+
readonly event_id: string;
|
|
8755
|
+
readonly timestamp: string;
|
|
8756
|
+
readonly organization: string;
|
|
8757
|
+
readonly id: string;
|
|
8758
|
+
}
|
|
8759
|
+
|
|
8760
|
+
interface ChannelShopifyOrderStateReason {
|
|
8761
|
+
readonly code: io.flow.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
8762
|
+
readonly message: string;
|
|
8763
|
+
}
|
|
8764
|
+
|
|
8765
|
+
interface ChannelShopifyOrderStateUpserted {
|
|
8766
|
+
readonly discriminator: 'channel_shopify_order_state_upserted';
|
|
8767
|
+
readonly event_id: string;
|
|
8768
|
+
readonly timestamp: string;
|
|
8769
|
+
readonly organization: string;
|
|
8770
|
+
readonly channel_shopify_order_state: io.flow.v0.models.ChannelShopifyOrderState;
|
|
8771
|
+
}
|
|
8772
|
+
|
|
8773
|
+
interface ChannelShopifyOrderSummary {
|
|
8774
|
+
readonly order_id: number;
|
|
8775
|
+
readonly shop_id: number;
|
|
8776
|
+
}
|
|
8777
|
+
|
|
8324
8778
|
interface ChannelStatement {
|
|
8325
8779
|
readonly id: string;
|
|
8326
8780
|
readonly account: io.flow.v0.models.AccountReference;
|
|
@@ -9318,12 +9772,14 @@ declare namespace io.flow.v0.models {
|
|
|
9318
9772
|
readonly q: string;
|
|
9319
9773
|
readonly dimensions: io.flow.v0.models.EstimatedDimensions;
|
|
9320
9774
|
readonly position: number;
|
|
9775
|
+
readonly block_bulk_update?: boolean;
|
|
9321
9776
|
}
|
|
9322
9777
|
|
|
9323
9778
|
interface DimensionEstimateForm {
|
|
9324
9779
|
readonly q: string;
|
|
9325
9780
|
readonly dimensions: io.flow.v0.models.EstimatedDimensions;
|
|
9326
9781
|
readonly position?: number;
|
|
9782
|
+
readonly block_bulk_update?: boolean;
|
|
9327
9783
|
}
|
|
9328
9784
|
|
|
9329
9785
|
interface DimensionEstimateVersion {
|
|
@@ -10299,6 +10755,46 @@ declare namespace io.flow.v0.models {
|
|
|
10299
10755
|
readonly landed_costs: io.flow.v0.models.LaneLandedCost[];
|
|
10300
10756
|
}
|
|
10301
10757
|
|
|
10758
|
+
interface GeItemDeleted {
|
|
10759
|
+
readonly discriminator: 'ge_item_deleted';
|
|
10760
|
+
readonly event_id: string;
|
|
10761
|
+
readonly timestamp: string;
|
|
10762
|
+
readonly organization: string;
|
|
10763
|
+
readonly item: io.flow.v0.models.Item;
|
|
10764
|
+
}
|
|
10765
|
+
|
|
10766
|
+
interface GeItemInserted {
|
|
10767
|
+
readonly discriminator: 'ge_item_inserted';
|
|
10768
|
+
readonly event_id: string;
|
|
10769
|
+
readonly timestamp: string;
|
|
10770
|
+
readonly organization: string;
|
|
10771
|
+
readonly item: io.flow.v0.models.Item;
|
|
10772
|
+
}
|
|
10773
|
+
|
|
10774
|
+
interface GeItemUpdated {
|
|
10775
|
+
readonly discriminator: 'ge_item_updated';
|
|
10776
|
+
readonly event_id: string;
|
|
10777
|
+
readonly timestamp: string;
|
|
10778
|
+
readonly organization: string;
|
|
10779
|
+
readonly item: io.flow.v0.models.Item;
|
|
10780
|
+
}
|
|
10781
|
+
|
|
10782
|
+
interface GeProductRestrictionResultDeleted {
|
|
10783
|
+
readonly discriminator: 'ge_product_restriction_result_deleted';
|
|
10784
|
+
readonly event_id: string;
|
|
10785
|
+
readonly timestamp: string;
|
|
10786
|
+
readonly organization: string;
|
|
10787
|
+
readonly id: string;
|
|
10788
|
+
}
|
|
10789
|
+
|
|
10790
|
+
interface GeProductRestrictionResultUpserted {
|
|
10791
|
+
readonly discriminator: 'ge_product_restriction_result_upserted';
|
|
10792
|
+
readonly event_id: string;
|
|
10793
|
+
readonly timestamp: string;
|
|
10794
|
+
readonly organization: string;
|
|
10795
|
+
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
10796
|
+
}
|
|
10797
|
+
|
|
10302
10798
|
interface GenerateLoad {
|
|
10303
10799
|
readonly discriminator: 'generate_load';
|
|
10304
10800
|
readonly event_id: string;
|
|
@@ -11311,14 +11807,6 @@ declare namespace io.flow.v0.models {
|
|
|
11311
11807
|
readonly price: io.flow.v0.models.LocalizedItemPrice;
|
|
11312
11808
|
}
|
|
11313
11809
|
|
|
11314
|
-
interface LocalItemDeleted {
|
|
11315
|
-
readonly discriminator: 'local_item_deleted';
|
|
11316
|
-
readonly event_id: string;
|
|
11317
|
-
readonly timestamp: string;
|
|
11318
|
-
readonly organization: string;
|
|
11319
|
-
readonly local_item: io.flow.v0.models.LocalItem;
|
|
11320
|
-
}
|
|
11321
|
-
|
|
11322
11810
|
interface LocalItemPricing {
|
|
11323
11811
|
readonly price: io.flow.v0.models.LocalizedItemPrice;
|
|
11324
11812
|
readonly vat?: io.flow.v0.models.LocalizedItemVat;
|
|
@@ -11331,14 +11819,6 @@ declare namespace io.flow.v0.models {
|
|
|
11331
11819
|
>;
|
|
11332
11820
|
}
|
|
11333
11821
|
|
|
11334
|
-
interface LocalItemUpserted {
|
|
11335
|
-
readonly discriminator: 'local_item_upserted';
|
|
11336
|
-
readonly event_id: string;
|
|
11337
|
-
readonly timestamp: string;
|
|
11338
|
-
readonly organization: string;
|
|
11339
|
-
readonly local_item: io.flow.v0.models.LocalItem;
|
|
11340
|
-
}
|
|
11341
|
-
|
|
11342
11822
|
interface LocalPriceDetails {
|
|
11343
11823
|
readonly base: io.flow.v0.models.PriceDetails;
|
|
11344
11824
|
readonly local: io.flow.v0.models.PriceDetails;
|
|
@@ -11814,6 +12294,7 @@ declare namespace io.flow.v0.models {
|
|
|
11814
12294
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
11815
12295
|
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
11816
12296
|
readonly authorized_at?: string;
|
|
12297
|
+
readonly authorization_request_id?: string;
|
|
11817
12298
|
}
|
|
11818
12299
|
|
|
11819
12300
|
interface OnlineAuthorizationDeletedV2 {
|
|
@@ -11890,6 +12371,7 @@ declare namespace io.flow.v0.models {
|
|
|
11890
12371
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
11891
12372
|
readonly destination_contact_details?: io.flow.v0.models.DestinationContactDetail[];
|
|
11892
12373
|
readonly incoterm_summary?: io.flow.v0.models.IncotermSummary;
|
|
12374
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
11893
12375
|
}
|
|
11894
12376
|
|
|
11895
12377
|
interface OrderAddress {
|
|
@@ -12033,6 +12515,7 @@ declare namespace io.flow.v0.models {
|
|
|
12033
12515
|
readonly authorization_keys?: string[];
|
|
12034
12516
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
12035
12517
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
12518
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
12036
12519
|
}
|
|
12037
12520
|
|
|
12038
12521
|
interface OrderFraudStatus {
|
|
@@ -12252,6 +12735,7 @@ declare namespace io.flow.v0.models {
|
|
|
12252
12735
|
readonly authorization_keys?: string[];
|
|
12253
12736
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
12254
12737
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
12738
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
12255
12739
|
}
|
|
12256
12740
|
|
|
12257
12741
|
interface OrderReference {
|
|
@@ -13806,10 +14290,6 @@ declare namespace io.flow.v0.models {
|
|
|
13806
14290
|
readonly id: string;
|
|
13807
14291
|
}
|
|
13808
14292
|
|
|
13809
|
-
interface PriceBookItemExportOptions {
|
|
13810
|
-
readonly available_identifiers: io.flow.v0.enums.ItemIdentifier[];
|
|
13811
|
-
}
|
|
13812
|
-
|
|
13813
14293
|
interface PriceBookItemExportType {
|
|
13814
14294
|
readonly discriminator: 'price_book_item_export_type';
|
|
13815
14295
|
readonly price_book_key?: string;
|
|
@@ -13999,7 +14479,6 @@ declare namespace io.flow.v0.models {
|
|
|
13999
14479
|
}
|
|
14000
14480
|
|
|
14001
14481
|
interface Product {
|
|
14002
|
-
readonly id: string;
|
|
14003
14482
|
readonly organization_id: string;
|
|
14004
14483
|
readonly number: string;
|
|
14005
14484
|
readonly taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
@@ -14009,6 +14488,22 @@ declare namespace io.flow.v0.models {
|
|
|
14009
14488
|
readonly deleted_at?: string;
|
|
14010
14489
|
}
|
|
14011
14490
|
|
|
14491
|
+
interface ProductDeleted {
|
|
14492
|
+
readonly discriminator: 'product_deleted';
|
|
14493
|
+
readonly event_id: string;
|
|
14494
|
+
readonly timestamp: string;
|
|
14495
|
+
readonly organization: string;
|
|
14496
|
+
readonly product: io.flow.v0.models.Product;
|
|
14497
|
+
}
|
|
14498
|
+
|
|
14499
|
+
interface ProductInserted {
|
|
14500
|
+
readonly discriminator: 'product_inserted';
|
|
14501
|
+
readonly event_id: string;
|
|
14502
|
+
readonly timestamp: string;
|
|
14503
|
+
readonly organization: string;
|
|
14504
|
+
readonly product: io.flow.v0.models.Product;
|
|
14505
|
+
}
|
|
14506
|
+
|
|
14012
14507
|
interface ProductRestrictionResult {
|
|
14013
14508
|
readonly id: string;
|
|
14014
14509
|
readonly product_id: string;
|
|
@@ -14040,7 +14535,7 @@ declare namespace io.flow.v0.models {
|
|
|
14040
14535
|
|
|
14041
14536
|
interface ProductTaxonomyCategory {
|
|
14042
14537
|
readonly name: string;
|
|
14043
|
-
readonly
|
|
14538
|
+
readonly full_name: string;
|
|
14044
14539
|
}
|
|
14045
14540
|
|
|
14046
14541
|
interface ProductTaxonomyData {
|
|
@@ -14048,6 +14543,14 @@ declare namespace io.flow.v0.models {
|
|
|
14048
14543
|
readonly value: string[];
|
|
14049
14544
|
}
|
|
14050
14545
|
|
|
14546
|
+
interface ProductUpdated {
|
|
14547
|
+
readonly discriminator: 'product_updated';
|
|
14548
|
+
readonly event_id: string;
|
|
14549
|
+
readonly timestamp: string;
|
|
14550
|
+
readonly organization: string;
|
|
14551
|
+
readonly product: io.flow.v0.models.Product;
|
|
14552
|
+
}
|
|
14553
|
+
|
|
14051
14554
|
interface PromotionTrigger {
|
|
14052
14555
|
readonly type: io.flow.v0.enums.PromotionTriggerType;
|
|
14053
14556
|
readonly min: io.flow.v0.models.Price;
|
|
@@ -15941,79 +16444,6 @@ declare namespace io.flow.v0.models {
|
|
|
15941
16444
|
readonly available: io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
15942
16445
|
}
|
|
15943
16446
|
|
|
15944
|
-
interface SyncDuration {
|
|
15945
|
-
readonly unit: io.flow.v0.enums.SyncUnitOfTime;
|
|
15946
|
-
readonly value: number;
|
|
15947
|
-
}
|
|
15948
|
-
|
|
15949
|
-
interface SyncPendingRecord {
|
|
15950
|
-
readonly id: string;
|
|
15951
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
15952
|
-
readonly value: string;
|
|
15953
|
-
readonly system: string;
|
|
15954
|
-
}
|
|
15955
|
-
|
|
15956
|
-
interface SyncRecord {
|
|
15957
|
-
readonly id: string;
|
|
15958
|
-
readonly system: string;
|
|
15959
|
-
readonly value: string;
|
|
15960
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
15961
|
-
}
|
|
15962
|
-
|
|
15963
|
-
interface SyncRecordFailure {
|
|
15964
|
-
readonly id: string;
|
|
15965
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
15966
|
-
readonly value: string;
|
|
15967
|
-
readonly system: string;
|
|
15968
|
-
readonly reason: io.flow.v0.enums.SyncRecordFailureReason;
|
|
15969
|
-
readonly attributes?: Record<string, string>;
|
|
15970
|
-
}
|
|
15971
|
-
|
|
15972
|
-
interface SyncRecordFailureForm {
|
|
15973
|
-
readonly stream_key: string;
|
|
15974
|
-
readonly value: string;
|
|
15975
|
-
readonly system: string;
|
|
15976
|
-
readonly reason: io.flow.v0.enums.SyncRecordFailureReason;
|
|
15977
|
-
readonly attributes?: Record<string, string>;
|
|
15978
|
-
}
|
|
15979
|
-
|
|
15980
|
-
interface SyncRecordForm {
|
|
15981
|
-
readonly stream_key: string;
|
|
15982
|
-
readonly system: string;
|
|
15983
|
-
readonly value: string;
|
|
15984
|
-
}
|
|
15985
|
-
|
|
15986
|
-
interface SyncStream {
|
|
15987
|
-
readonly id: string;
|
|
15988
|
-
readonly key: string;
|
|
15989
|
-
readonly type: io.flow.v0.enums.SyncStreamType;
|
|
15990
|
-
readonly systems: string[];
|
|
15991
|
-
readonly settings: io.flow.v0.models.SyncStreamSettings;
|
|
15992
|
-
}
|
|
15993
|
-
|
|
15994
|
-
interface SyncStreamForm {
|
|
15995
|
-
readonly type: io.flow.v0.enums.SyncStreamType;
|
|
15996
|
-
readonly systems: string[];
|
|
15997
|
-
readonly settings?: io.flow.v0.models.SyncStreamSettingsForm;
|
|
15998
|
-
}
|
|
15999
|
-
|
|
16000
|
-
interface SyncStreamReference {
|
|
16001
|
-
readonly id: string;
|
|
16002
|
-
readonly key: string;
|
|
16003
|
-
}
|
|
16004
|
-
|
|
16005
|
-
interface SyncStreamSettings {
|
|
16006
|
-
readonly pending_record_after: io.flow.v0.models.SyncDuration;
|
|
16007
|
-
readonly warn_after: io.flow.v0.models.SyncDuration;
|
|
16008
|
-
readonly error_after: io.flow.v0.models.SyncDuration;
|
|
16009
|
-
}
|
|
16010
|
-
|
|
16011
|
-
interface SyncStreamSettingsForm {
|
|
16012
|
-
readonly pending_record_after: io.flow.v0.models.SyncDuration;
|
|
16013
|
-
readonly warn_after: io.flow.v0.models.SyncDuration;
|
|
16014
|
-
readonly error_after: io.flow.v0.models.SyncDuration;
|
|
16015
|
-
}
|
|
16016
|
-
|
|
16017
16447
|
interface Tax {
|
|
16018
16448
|
readonly name: string;
|
|
16019
16449
|
readonly rate: number;
|
|
@@ -16924,10 +17354,14 @@ declare namespace io.flow.v0.unions {
|
|
|
16924
17354
|
| io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
16925
17355
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
16926
17356
|
type Event =
|
|
17357
|
+
| io.flow.v0.models.AuthorizationRetryUpserted
|
|
17358
|
+
| io.flow.v0.models.AuthorizationRetryDeleted
|
|
16927
17359
|
| io.flow.v0.models.TestUpserted
|
|
16928
17360
|
| io.flow.v0.models.GenerateLoad
|
|
16929
17361
|
| io.flow.v0.models.AldoItemUpserted
|
|
16930
17362
|
| io.flow.v0.models.AldoItemDeleted
|
|
17363
|
+
| io.flow.v0.models.AnshItemUpserted
|
|
17364
|
+
| io.flow.v0.models.AnshItemDeleted
|
|
16931
17365
|
| io.flow.v0.models.TransactionUpserted
|
|
16932
17366
|
| io.flow.v0.models.OrganizationTransactionUpserted
|
|
16933
17367
|
| io.flow.v0.models.OrganizationTransactionDeleted
|
|
@@ -16954,10 +17388,6 @@ declare namespace io.flow.v0.unions {
|
|
|
16954
17388
|
| io.flow.v0.models.CatalogDeleted
|
|
16955
17389
|
| io.flow.v0.models.SubcatalogUpserted
|
|
16956
17390
|
| io.flow.v0.models.SubcatalogDeleted
|
|
16957
|
-
| io.flow.v0.models.CatalogItemUpserted
|
|
16958
|
-
| io.flow.v0.models.CatalogItemDeleted
|
|
16959
|
-
| io.flow.v0.models.CatalogItemUpsertedV2
|
|
16960
|
-
| io.flow.v0.models.CatalogItemDeletedV2
|
|
16961
17391
|
| io.flow.v0.models.SubcatalogItemUpserted
|
|
16962
17392
|
| io.flow.v0.models.SubcatalogItemDeleted
|
|
16963
17393
|
| io.flow.v0.models.CatalogStatisticsUpserted
|
|
@@ -16965,6 +17395,8 @@ declare namespace io.flow.v0.unions {
|
|
|
16965
17395
|
| io.flow.v0.models.ItemInserted
|
|
16966
17396
|
| io.flow.v0.models.ItemUpdated
|
|
16967
17397
|
| io.flow.v0.models.ItemDeleted
|
|
17398
|
+
| io.flow.v0.models.ChannelShopifyOrderStateUpserted
|
|
17399
|
+
| io.flow.v0.models.ChannelShopifyOrderStateDeleted
|
|
16968
17400
|
| io.flow.v0.models.ChannelUpserted
|
|
16969
17401
|
| io.flow.v0.models.ChannelDeleted
|
|
16970
17402
|
| io.flow.v0.models.ChannelCurrencyUpserted
|
|
@@ -17039,6 +17471,11 @@ declare namespace io.flow.v0.unions {
|
|
|
17039
17471
|
| io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted
|
|
17040
17472
|
| io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted
|
|
17041
17473
|
| io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted
|
|
17474
|
+
| io.flow.v0.models.GeItemInserted
|
|
17475
|
+
| io.flow.v0.models.GeItemUpdated
|
|
17476
|
+
| io.flow.v0.models.GeItemDeleted
|
|
17477
|
+
| io.flow.v0.models.GeProductRestrictionResultUpserted
|
|
17478
|
+
| io.flow.v0.models.GeProductRestrictionResultDeleted
|
|
17042
17479
|
| io.flow.v0.models.Hs6CodeUpserted
|
|
17043
17480
|
| io.flow.v0.models.Hs6CodeDeleted
|
|
17044
17481
|
| io.flow.v0.models.Hs10CodeUpserted
|
|
@@ -17058,8 +17495,6 @@ declare namespace io.flow.v0.unions {
|
|
|
17058
17495
|
| io.flow.v0.models.ManifestedLabelDeleted
|
|
17059
17496
|
| io.flow.v0.models.LabelProcessingModificationUpserted
|
|
17060
17497
|
| io.flow.v0.models.LabelProcessingModificationDeleted
|
|
17061
|
-
| io.flow.v0.models.LocalItemUpserted
|
|
17062
|
-
| io.flow.v0.models.LocalItemDeleted
|
|
17063
17498
|
| io.flow.v0.models.MerchantApplicationUpserted
|
|
17064
17499
|
| io.flow.v0.models.MerchantApplicationDeleted
|
|
17065
17500
|
| io.flow.v0.models.CheckoutOptinResponsesUpserted
|
|
@@ -17113,6 +17548,9 @@ declare namespace io.flow.v0.unions {
|
|
|
17113
17548
|
| io.flow.v0.models.PriceBookDeleted
|
|
17114
17549
|
| io.flow.v0.models.PriceBookItemUpserted
|
|
17115
17550
|
| io.flow.v0.models.PriceBookItemDeleted
|
|
17551
|
+
| io.flow.v0.models.ProductInserted
|
|
17552
|
+
| io.flow.v0.models.ProductUpdated
|
|
17553
|
+
| io.flow.v0.models.ProductDeleted
|
|
17116
17554
|
| io.flow.v0.models.OrganizationRatesPublished
|
|
17117
17555
|
| io.flow.v0.models.RatecardLaneUpserted
|
|
17118
17556
|
| io.flow.v0.models.RatecardLaneDeleted
|
|
@@ -17541,6 +17979,8 @@ export type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
17541
17979
|
export type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
17542
17980
|
export type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
17543
17981
|
export type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
17982
|
+
export type AnshItemDeleted = io.flow.v0.models.AnshItemDeleted;
|
|
17983
|
+
export type AnshItemUpserted = io.flow.v0.models.AnshItemUpserted;
|
|
17544
17984
|
export type ApplePayMerchantValidationPayload =
|
|
17545
17985
|
io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
17546
17986
|
export type ApplepaySdkCreateResultActionDetails =
|
|
@@ -17596,6 +18036,11 @@ export type AuthorizationResultActionWait =
|
|
|
17596
18036
|
io.flow.v0.models.AuthorizationResultActionWait;
|
|
17597
18037
|
export type AuthorizationResultDescription =
|
|
17598
18038
|
io.flow.v0.models.AuthorizationResultDescription;
|
|
18039
|
+
export type AuthorizationRetry = io.flow.v0.models.AuthorizationRetry;
|
|
18040
|
+
export type AuthorizationRetryDeleted =
|
|
18041
|
+
io.flow.v0.models.AuthorizationRetryDeleted;
|
|
18042
|
+
export type AuthorizationRetryUpserted =
|
|
18043
|
+
io.flow.v0.models.AuthorizationRetryUpserted;
|
|
17599
18044
|
export type AuthorizationStatus = io.flow.v0.enums.AuthorizationStatus;
|
|
17600
18045
|
export type AuthorizationStatusChanged =
|
|
17601
18046
|
io.flow.v0.models.AuthorizationStatusChanged;
|
|
@@ -17715,20 +18160,17 @@ export type CardVersion = io.flow.v0.models.CardVersion;
|
|
|
17715
18160
|
export type Carrier = io.flow.v0.models.Carrier;
|
|
17716
18161
|
export type CarrierChargeReason = io.flow.v0.enums.CarrierChargeReason;
|
|
17717
18162
|
export type CarrierReference = io.flow.v0.models.CarrierReference;
|
|
18163
|
+
export type CarrierRestrictions = io.flow.v0.models.CarrierRestrictions;
|
|
17718
18164
|
export type CarrierService = io.flow.v0.models.CarrierService;
|
|
17719
18165
|
export type CartReference = io.flow.v0.models.CartReference;
|
|
17720
18166
|
export type Catalog = io.flow.v0.models.Catalog;
|
|
17721
18167
|
export type CatalogDeleted = io.flow.v0.models.CatalogDeleted;
|
|
17722
|
-
export type CatalogItemDeleted = io.flow.v0.models.CatalogItemDeleted;
|
|
17723
|
-
export type CatalogItemDeletedV2 = io.flow.v0.models.CatalogItemDeletedV2;
|
|
17724
18168
|
export type CatalogItemDocument = io.flow.v0.models.CatalogItemDocument;
|
|
17725
18169
|
export type CatalogItemDocumentImages =
|
|
17726
18170
|
io.flow.v0.models.CatalogItemDocumentImages;
|
|
17727
18171
|
export type CatalogItemExportType = io.flow.v0.models.CatalogItemExportType;
|
|
17728
18172
|
export type CatalogItemReference = io.flow.v0.models.CatalogItemReference;
|
|
17729
18173
|
export type CatalogItemSummary = io.flow.v0.models.CatalogItemSummary;
|
|
17730
|
-
export type CatalogItemUpserted = io.flow.v0.models.CatalogItemUpserted;
|
|
17731
|
-
export type CatalogItemUpsertedV2 = io.flow.v0.models.CatalogItemUpsertedV2;
|
|
17732
18174
|
export type CatalogPriceBookItemDocument =
|
|
17733
18175
|
io.flow.v0.models.CatalogPriceBookItemDocument;
|
|
17734
18176
|
export type CatalogReference = io.flow.v0.models.CatalogReference;
|
|
@@ -17788,6 +18230,18 @@ export type ChannelPendingPayoutTransactionUpserted =
|
|
|
17788
18230
|
io.flow.v0.models.ChannelPendingPayoutTransactionUpserted;
|
|
17789
18231
|
export type ChannelRate = io.flow.v0.models.ChannelRate;
|
|
17790
18232
|
export type ChannelReference = io.flow.v0.models.ChannelReference;
|
|
18233
|
+
export type ChannelShopifyOrderState =
|
|
18234
|
+
io.flow.v0.models.ChannelShopifyOrderState;
|
|
18235
|
+
export type ChannelShopifyOrderStateDeleted =
|
|
18236
|
+
io.flow.v0.models.ChannelShopifyOrderStateDeleted;
|
|
18237
|
+
export type ChannelShopifyOrderStateReason =
|
|
18238
|
+
io.flow.v0.models.ChannelShopifyOrderStateReason;
|
|
18239
|
+
export type ChannelShopifyOrderStateReasonCode =
|
|
18240
|
+
io.flow.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
18241
|
+
export type ChannelShopifyOrderStateUpserted =
|
|
18242
|
+
io.flow.v0.models.ChannelShopifyOrderStateUpserted;
|
|
18243
|
+
export type ChannelShopifyOrderSummary =
|
|
18244
|
+
io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
17791
18245
|
export type ChannelStatement = io.flow.v0.models.ChannelStatement;
|
|
17792
18246
|
export type ChannelStatementDeleted = io.flow.v0.models.ChannelStatementDeleted;
|
|
17793
18247
|
export type ChannelStatementUpserted =
|
|
@@ -18255,6 +18709,13 @@ export type GatewayAuthenticationData =
|
|
|
18255
18709
|
io.flow.v0.unions.GatewayAuthenticationData;
|
|
18256
18710
|
export type GatewayAuthenticationDataForm =
|
|
18257
18711
|
io.flow.v0.unions.GatewayAuthenticationDataForm;
|
|
18712
|
+
export type GeItemDeleted = io.flow.v0.models.GeItemDeleted;
|
|
18713
|
+
export type GeItemInserted = io.flow.v0.models.GeItemInserted;
|
|
18714
|
+
export type GeItemUpdated = io.flow.v0.models.GeItemUpdated;
|
|
18715
|
+
export type GeProductRestrictionResultDeleted =
|
|
18716
|
+
io.flow.v0.models.GeProductRestrictionResultDeleted;
|
|
18717
|
+
export type GeProductRestrictionResultUpserted =
|
|
18718
|
+
io.flow.v0.models.GeProductRestrictionResultUpserted;
|
|
18258
18719
|
export type GenerateLoad = io.flow.v0.models.GenerateLoad;
|
|
18259
18720
|
export type GenericError = io.flow.v0.models.GenericError;
|
|
18260
18721
|
export type GenericErrorCode = io.flow.v0.enums.GenericErrorCode;
|
|
@@ -18442,9 +18903,7 @@ export type Local = io.flow.v0.models.Local;
|
|
|
18442
18903
|
export type LocalItem = io.flow.v0.models.LocalItem;
|
|
18443
18904
|
export type LocalItemAttributePricing =
|
|
18444
18905
|
io.flow.v0.models.LocalItemAttributePricing;
|
|
18445
|
-
export type LocalItemDeleted = io.flow.v0.models.LocalItemDeleted;
|
|
18446
18906
|
export type LocalItemPricing = io.flow.v0.models.LocalItemPricing;
|
|
18447
|
-
export type LocalItemUpserted = io.flow.v0.models.LocalItemUpserted;
|
|
18448
18907
|
export type LocalPriceDetails = io.flow.v0.models.LocalPriceDetails;
|
|
18449
18908
|
export type LocalSession = io.flow.v0.models.LocalSession;
|
|
18450
18909
|
export type Locale = io.flow.v0.models.Locale;
|
|
@@ -18631,6 +19090,7 @@ export type OrderNumberGeneratorUuid =
|
|
|
18631
19090
|
export type OrderNumberReference = io.flow.v0.models.OrderNumberReference;
|
|
18632
19091
|
export type OrderOptions = io.flow.v0.models.OrderOptions;
|
|
18633
19092
|
export type OrderPayment = io.flow.v0.models.OrderPayment;
|
|
19093
|
+
export type OrderPaymentSourceType = io.flow.v0.enums.OrderPaymentSourceType;
|
|
18634
19094
|
export type OrderPaymentType = io.flow.v0.enums.OrderPaymentType;
|
|
18635
19095
|
export type OrderPlaced = io.flow.v0.models.OrderPlaced;
|
|
18636
19096
|
export type OrderPlacedDetails = io.flow.v0.models.OrderPlacedDetails;
|
|
@@ -19043,8 +19503,6 @@ export type PriceBookDeleted = io.flow.v0.models.PriceBookDeleted;
|
|
|
19043
19503
|
export type PriceBookForm = io.flow.v0.models.PriceBookForm;
|
|
19044
19504
|
export type PriceBookItem = io.flow.v0.models.PriceBookItem;
|
|
19045
19505
|
export type PriceBookItemDeleted = io.flow.v0.models.PriceBookItemDeleted;
|
|
19046
|
-
export type PriceBookItemExportOptions =
|
|
19047
|
-
io.flow.v0.models.PriceBookItemExportOptions;
|
|
19048
19506
|
export type PriceBookItemExportType = io.flow.v0.models.PriceBookItemExportType;
|
|
19049
19507
|
export type PriceBookItemForm = io.flow.v0.models.PriceBookItemForm;
|
|
19050
19508
|
export type PriceBookItemQueryForm = io.flow.v0.models.PriceBookItemQueryForm;
|
|
@@ -19078,6 +19536,8 @@ export type PricingUpserted = io.flow.v0.models.PricingUpserted;
|
|
|
19078
19536
|
export type PricingVersion = io.flow.v0.models.PricingVersion;
|
|
19079
19537
|
export type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
|
|
19080
19538
|
export type Product = io.flow.v0.models.Product;
|
|
19539
|
+
export type ProductDeleted = io.flow.v0.models.ProductDeleted;
|
|
19540
|
+
export type ProductInserted = io.flow.v0.models.ProductInserted;
|
|
19081
19541
|
export type ProductRestrictionResult =
|
|
19082
19542
|
io.flow.v0.models.ProductRestrictionResult;
|
|
19083
19543
|
export type ProductRestrictionResultDeleted =
|
|
@@ -19087,6 +19547,7 @@ export type ProductRestrictionResultUpserted =
|
|
|
19087
19547
|
export type ProductRestrictionRule = io.flow.v0.enums.ProductRestrictionRule;
|
|
19088
19548
|
export type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
19089
19549
|
export type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
19550
|
+
export type ProductUpdated = io.flow.v0.models.ProductUpdated;
|
|
19090
19551
|
export type Promotion = io.flow.v0.unions.Promotion;
|
|
19091
19552
|
export type PromotionTrigger = io.flow.v0.models.PromotionTrigger;
|
|
19092
19553
|
export type PromotionTriggerForm = io.flow.v0.models.PromotionTriggerForm;
|
|
@@ -19450,6 +19911,7 @@ export type SubcatalogSettingsForm = io.flow.v0.models.SubcatalogSettingsForm;
|
|
|
19450
19911
|
export type SubcatalogStatistics = io.flow.v0.models.SubcatalogStatistics;
|
|
19451
19912
|
export type SubcatalogUpserted = io.flow.v0.models.SubcatalogUpserted;
|
|
19452
19913
|
export type SubcatalogVersion = io.flow.v0.models.SubcatalogVersion;
|
|
19914
|
+
export type SubstatusCode = io.flow.v0.enums.SubstatusCode;
|
|
19453
19915
|
export type Suggestion = io.flow.v0.models.Suggestion;
|
|
19454
19916
|
export type SummaryShippingLabelForm =
|
|
19455
19917
|
io.flow.v0.models.SummaryShippingLabelForm;
|
|
@@ -19461,20 +19923,6 @@ export type SurchargeResponsiblePartyDisplay =
|
|
|
19461
19923
|
io.flow.v0.models.SurchargeResponsiblePartyDisplay;
|
|
19462
19924
|
export type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
19463
19925
|
export type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
|
|
19464
|
-
export type SyncDuration = io.flow.v0.models.SyncDuration;
|
|
19465
|
-
export type SyncPendingRecord = io.flow.v0.models.SyncPendingRecord;
|
|
19466
|
-
export type SyncRecord = io.flow.v0.models.SyncRecord;
|
|
19467
|
-
export type SyncRecordFailure = io.flow.v0.models.SyncRecordFailure;
|
|
19468
|
-
export type SyncRecordFailureForm = io.flow.v0.models.SyncRecordFailureForm;
|
|
19469
|
-
export type SyncRecordFailureReason = io.flow.v0.enums.SyncRecordFailureReason;
|
|
19470
|
-
export type SyncRecordForm = io.flow.v0.models.SyncRecordForm;
|
|
19471
|
-
export type SyncStream = io.flow.v0.models.SyncStream;
|
|
19472
|
-
export type SyncStreamForm = io.flow.v0.models.SyncStreamForm;
|
|
19473
|
-
export type SyncStreamReference = io.flow.v0.models.SyncStreamReference;
|
|
19474
|
-
export type SyncStreamSettings = io.flow.v0.models.SyncStreamSettings;
|
|
19475
|
-
export type SyncStreamSettingsForm = io.flow.v0.models.SyncStreamSettingsForm;
|
|
19476
|
-
export type SyncStreamType = io.flow.v0.enums.SyncStreamType;
|
|
19477
|
-
export type SyncUnitOfTime = io.flow.v0.enums.SyncUnitOfTime;
|
|
19478
19926
|
export type Tax = io.flow.v0.models.Tax;
|
|
19479
19927
|
export type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
19480
19928
|
export type TaxRegistration = io.flow.v0.models.TaxRegistration;
|