@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/dist/api.d.ts
CHANGED
|
@@ -168,9 +168,12 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
168
168
|
type RefundFailureReason = 'charge_for_pending_refund_disputed' | 'declined' | 'expired_or_canceled_card' | 'insufficient_funds' | 'lost_or_stolen_card' | 'merchant_request' | 'unknown';
|
|
169
169
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
170
170
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
171
|
+
type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
|
|
172
|
+
type ReportingReportType = 'ending_balance_reconciliation.itemized.1' | 'ending_balance_reconciliation.itemized.2' | 'ending_balance_reconciliation.itemized.3' | 'ending_balance_reconciliation.itemized.4' | 'payout_reconciliation.itemized.5' | 'payout_reconciliation.by_id.itemized.1' | 'payout_reconciliation.by_id.itemized.2' | 'payout_reconciliation.by_id.itemized.3' | 'payout_reconciliation.by_id.itemized.4' | 'payout_reconciliation.by_id.summary.1' | 'ending_balance_reconciliation.summary.1' | 'payout_reconciliation.itemized.1' | 'payout_reconciliation.itemized.2' | 'payout_reconciliation.itemized.3' | 'payout_reconciliation.itemized.4' | 'payout_reconciliation.summary.1';
|
|
171
173
|
type RequestThreeDSecureType = 'automatic' | 'any';
|
|
172
174
|
type RequestedCapabilities = 'card_payments' | 'legacy_payments' | 'transfers';
|
|
173
175
|
type SetupFutureUsage = 'on_session' | 'off_session';
|
|
176
|
+
type ShopifyPaymentStripeEventType = 'charge.captured' | 'charge.dispute.created' | 'charge.dispute.closed' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'charge.expired' | 'charge.failed' | 'charge.pending' | 'charge.refund.updated' | 'charge.refunded' | 'charge.succeeded' | 'charge.updated' | 'payment_intent.amount_capturable_updated' | 'payment_intent.canceled' | 'payment_intent.created' | 'payment_intent.partially_funded' | 'payment_intent.payment_failed' | 'payment_intent.processing' | 'payment_intent.requires_action' | 'payment_intent.succeeded' | 'transfer.created' | 'transfer.reversed' | 'transfer.updated' | 'reporting.report_run.succeeded' | 'reporting.report_type.updated' | 'reporting.report_type.failed';
|
|
174
177
|
type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
|
|
175
178
|
type SourceStatus = 'canceled' | 'chargeable' | 'consumed' | 'failed' | 'pending';
|
|
176
179
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
@@ -967,11 +970,68 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
967
970
|
readonly total_count: number;
|
|
968
971
|
readonly url: string;
|
|
969
972
|
}
|
|
973
|
+
interface ReportRunParameters {
|
|
974
|
+
readonly interval_start: number;
|
|
975
|
+
readonly interval_end: number;
|
|
976
|
+
readonly columns?: string[];
|
|
977
|
+
readonly payout?: string;
|
|
978
|
+
readonly connected_account?: string;
|
|
979
|
+
readonly reporting_category?: string;
|
|
980
|
+
}
|
|
981
|
+
interface ReportingReportRun {
|
|
982
|
+
readonly id: string;
|
|
983
|
+
readonly object: string;
|
|
984
|
+
readonly created: number;
|
|
985
|
+
readonly error?: string;
|
|
986
|
+
readonly livemode: boolean;
|
|
987
|
+
readonly status: io.flow.stripe.v0.enums.ReportingReportRunStatus;
|
|
988
|
+
readonly result?: io.flow.stripe.v0.models.ReportingReportRunResult;
|
|
989
|
+
readonly succeeded_at?: number;
|
|
990
|
+
}
|
|
991
|
+
interface ReportingReportRunForm {
|
|
992
|
+
readonly report_type: io.flow.stripe.v0.enums.ReportingReportType;
|
|
993
|
+
readonly parameters: io.flow.stripe.v0.models.ReportRunParameters;
|
|
994
|
+
}
|
|
995
|
+
interface ReportingReportRunResult {
|
|
996
|
+
readonly id: string;
|
|
997
|
+
readonly object: string;
|
|
998
|
+
readonly created: number;
|
|
999
|
+
readonly expires_at: number;
|
|
1000
|
+
readonly filename: string;
|
|
1001
|
+
readonly links: any;
|
|
1002
|
+
readonly purpose: string;
|
|
1003
|
+
readonly size: number;
|
|
1004
|
+
readonly title: string;
|
|
1005
|
+
readonly type: string;
|
|
1006
|
+
readonly url: string;
|
|
1007
|
+
}
|
|
1008
|
+
interface ReportingReportRuns {
|
|
1009
|
+
readonly object: string;
|
|
1010
|
+
readonly data: io.flow.stripe.v0.models.ReportingReportRun[];
|
|
1011
|
+
readonly has_more: boolean;
|
|
1012
|
+
readonly url?: string;
|
|
1013
|
+
}
|
|
970
1014
|
interface Shipping {
|
|
971
1015
|
readonly address: io.flow.stripe.v0.models.Address;
|
|
972
1016
|
readonly name?: string;
|
|
973
1017
|
readonly phone?: string;
|
|
974
1018
|
}
|
|
1019
|
+
interface ShopifyPaymentStripeEvent {
|
|
1020
|
+
readonly id: string;
|
|
1021
|
+
readonly api_version?: string;
|
|
1022
|
+
readonly data: io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
|
|
1023
|
+
readonly request?: any;
|
|
1024
|
+
readonly type: io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
|
|
1025
|
+
readonly object: string;
|
|
1026
|
+
readonly account?: string;
|
|
1027
|
+
readonly created: number;
|
|
1028
|
+
readonly livemode: boolean;
|
|
1029
|
+
readonly pending_webhooks: number;
|
|
1030
|
+
}
|
|
1031
|
+
interface ShopifyPaymentStripeEventData {
|
|
1032
|
+
readonly object?: any;
|
|
1033
|
+
readonly previous_attributes?: any;
|
|
1034
|
+
}
|
|
975
1035
|
interface Source {
|
|
976
1036
|
readonly id: string;
|
|
977
1037
|
readonly object: string;
|
|
@@ -1266,6 +1326,16 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1266
1326
|
interface GraphqlMeasurement {
|
|
1267
1327
|
readonly weight?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
1268
1328
|
}
|
|
1329
|
+
interface GraphqlMetafield {
|
|
1330
|
+
readonly id: string;
|
|
1331
|
+
readonly key: string;
|
|
1332
|
+
readonly value: string;
|
|
1333
|
+
readonly type?: string;
|
|
1334
|
+
}
|
|
1335
|
+
interface GraphqlMetaobject {
|
|
1336
|
+
readonly id: string;
|
|
1337
|
+
readonly displayName: string;
|
|
1338
|
+
}
|
|
1269
1339
|
interface GraphqlOption {
|
|
1270
1340
|
readonly id: string;
|
|
1271
1341
|
readonly values: string[];
|
|
@@ -1290,6 +1360,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1290
1360
|
readonly createdAt: string;
|
|
1291
1361
|
readonly updatedAt: string;
|
|
1292
1362
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
1363
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
1364
|
+
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
1293
1365
|
}
|
|
1294
1366
|
interface GraphqlProductImage {
|
|
1295
1367
|
readonly id: string;
|
|
@@ -1310,6 +1382,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1310
1382
|
readonly image?: io.flow.shopify.external.v0.models.GraphqlVariantImage;
|
|
1311
1383
|
readonly inventoryItem: io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
1312
1384
|
}
|
|
1385
|
+
interface GraphqlTaxonomyCategory {
|
|
1386
|
+
readonly name: string;
|
|
1387
|
+
readonly fullName: string;
|
|
1388
|
+
}
|
|
1313
1389
|
interface GraphqlVariantImage {
|
|
1314
1390
|
readonly id: string;
|
|
1315
1391
|
}
|
|
@@ -1415,6 +1491,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1415
1491
|
readonly created_at: string;
|
|
1416
1492
|
readonly updated_at: string;
|
|
1417
1493
|
readonly has_variants_that_requires_components?: boolean;
|
|
1494
|
+
readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
1495
|
+
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
1418
1496
|
}
|
|
1419
1497
|
interface ProductDelete {
|
|
1420
1498
|
readonly id: number;
|
|
@@ -1429,6 +1507,16 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1429
1507
|
readonly updated_at?: string;
|
|
1430
1508
|
readonly alt?: string;
|
|
1431
1509
|
}
|
|
1510
|
+
interface ProductMetafield {
|
|
1511
|
+
readonly id: number;
|
|
1512
|
+
readonly namespace: string;
|
|
1513
|
+
readonly key: string;
|
|
1514
|
+
readonly value: string;
|
|
1515
|
+
readonly created_at: string;
|
|
1516
|
+
readonly updated_at: string;
|
|
1517
|
+
readonly type: string;
|
|
1518
|
+
readonly admin_graphql_api_id: string;
|
|
1519
|
+
}
|
|
1432
1520
|
interface ProductVariant {
|
|
1433
1521
|
readonly id: number;
|
|
1434
1522
|
readonly sku?: string;
|
|
@@ -2084,32 +2172,6 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
2084
2172
|
readonly webhook: io.flow.shopify.external.v0.models.Webhook;
|
|
2085
2173
|
}
|
|
2086
2174
|
}
|
|
2087
|
-
declare namespace io.flow.order.price.v0.enums {
|
|
2088
|
-
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
2089
|
-
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
2090
|
-
}
|
|
2091
|
-
declare namespace io.flow.order.price.v0.models {
|
|
2092
|
-
interface OrderPriceDetail {
|
|
2093
|
-
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
2094
|
-
readonly currency: string;
|
|
2095
|
-
readonly amount: number;
|
|
2096
|
-
readonly label: string;
|
|
2097
|
-
readonly base: io.flow.common.v0.models.Price;
|
|
2098
|
-
readonly components: io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
2099
|
-
readonly name?: string;
|
|
2100
|
-
readonly rate?: number;
|
|
2101
|
-
readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
|
|
2102
|
-
readonly rate_label?: string;
|
|
2103
|
-
}
|
|
2104
|
-
interface OrderPriceDetailComponent {
|
|
2105
|
-
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
2106
|
-
readonly currency: string;
|
|
2107
|
-
readonly amount: number;
|
|
2108
|
-
readonly label: string;
|
|
2109
|
-
readonly base: io.flow.common.v0.models.Price;
|
|
2110
|
-
readonly name?: string;
|
|
2111
|
-
}
|
|
2112
|
-
}
|
|
2113
2175
|
declare namespace io.flow.common.v0.enums {
|
|
2114
2176
|
type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
|
|
2115
2177
|
type AvailabilityStatus = 'enabled' | 'disabled';
|
|
@@ -2752,6 +2814,59 @@ declare namespace io.flow.price.v0.models {
|
|
|
2752
2814
|
declare namespace io.flow.price.v0.unions {
|
|
2753
2815
|
type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
|
|
2754
2816
|
}
|
|
2817
|
+
declare namespace io.flow.channel.v0.enums {
|
|
2818
|
+
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
2819
|
+
}
|
|
2820
|
+
declare namespace io.flow.channel.v0.models {
|
|
2821
|
+
interface Channel {
|
|
2822
|
+
readonly id: string;
|
|
2823
|
+
readonly name: string;
|
|
2824
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
2825
|
+
readonly organization_id_prefix?: string;
|
|
2826
|
+
}
|
|
2827
|
+
interface ChannelAuthorization {
|
|
2828
|
+
readonly placeholder?: string;
|
|
2829
|
+
}
|
|
2830
|
+
interface ChannelAuthorizationForm {
|
|
2831
|
+
readonly channel_id: string;
|
|
2832
|
+
}
|
|
2833
|
+
interface ChannelCurrency {
|
|
2834
|
+
readonly id: string;
|
|
2835
|
+
readonly currency: string;
|
|
2836
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
2837
|
+
readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
2838
|
+
}
|
|
2839
|
+
interface ChannelOrganization {
|
|
2840
|
+
readonly id: string;
|
|
2841
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
2842
|
+
readonly key: string;
|
|
2843
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
2844
|
+
readonly name: string;
|
|
2845
|
+
readonly slug?: string;
|
|
2846
|
+
readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
|
|
2847
|
+
readonly attributes?: Record<string, string>;
|
|
2848
|
+
}
|
|
2849
|
+
interface ChannelOrganizationAuthorization {
|
|
2850
|
+
readonly placeholder?: string;
|
|
2851
|
+
}
|
|
2852
|
+
interface ChannelOrganizationAuthorizationForm {
|
|
2853
|
+
readonly channel_id: string;
|
|
2854
|
+
readonly organization_id: string;
|
|
2855
|
+
}
|
|
2856
|
+
interface ChannelOrganizationForm {
|
|
2857
|
+
readonly key: string;
|
|
2858
|
+
readonly name?: string;
|
|
2859
|
+
readonly slug?: string;
|
|
2860
|
+
readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
|
|
2861
|
+
readonly attributes?: Record<string, string>;
|
|
2862
|
+
}
|
|
2863
|
+
interface ChannelOrganizationPutForm {
|
|
2864
|
+
readonly name?: string;
|
|
2865
|
+
readonly slug?: string;
|
|
2866
|
+
readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
|
|
2867
|
+
readonly attributes?: Record<string, string>;
|
|
2868
|
+
}
|
|
2869
|
+
}
|
|
2755
2870
|
declare namespace io.flow.reference.v0.enums {
|
|
2756
2871
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
2757
2872
|
type PaymentMethodType = 'card' | 'online' | 'offline';
|
|
@@ -2851,28 +2966,6 @@ declare namespace io.flow.reference.v0.models {
|
|
|
2851
2966
|
readonly offset: number;
|
|
2852
2967
|
}
|
|
2853
2968
|
}
|
|
2854
|
-
declare namespace io.flow.ben.test.internal.v0.models {
|
|
2855
|
-
interface GenerateLoadMultipleOrgs {
|
|
2856
|
-
readonly discriminator: 'generate_load_multiple_orgs';
|
|
2857
|
-
readonly organization_ids: string[];
|
|
2858
|
-
readonly num_events: number;
|
|
2859
|
-
}
|
|
2860
|
-
interface GenerateLoadSingleOrg {
|
|
2861
|
-
readonly discriminator: 'generate_load_single_org';
|
|
2862
|
-
readonly organization_id: string;
|
|
2863
|
-
readonly num_events: number;
|
|
2864
|
-
}
|
|
2865
|
-
interface Test {
|
|
2866
|
-
readonly id: string;
|
|
2867
|
-
readonly name: string;
|
|
2868
|
-
}
|
|
2869
|
-
interface TestForm {
|
|
2870
|
-
readonly name: string;
|
|
2871
|
-
}
|
|
2872
|
-
}
|
|
2873
|
-
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
2874
|
-
type GenerateLoad = io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
2875
|
-
}
|
|
2876
2969
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
2877
2970
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
2878
2971
|
type DeliveryOptionCostDetailComponentKey = 'ratecard_base_cost' | 'ratecard_ddp_fee' | 'ratecard_fuel_surcharge' | 'ratecard_oversized_shipment_fee' | 'ratecard_rural_shipment_fee' | 'ratecard_emergency_situation_surcharge_fee' | 'ratecard_peak_surcharge_fee' | 'ratecard_duties_taxes_paid_surcharge_fee' | 'center_commercial_invoice_fee' | 'center_inbound_carton_fee' | 'center_outbound_carton_fee';
|
|
@@ -3499,6 +3592,7 @@ declare namespace io.flow.merchant.of.record.v0.enums {
|
|
|
3499
3592
|
}
|
|
3500
3593
|
declare namespace io.flow.tech.onboarding.playground.v0.enums {
|
|
3501
3594
|
type AldoItemType = 'physical' | 'digital';
|
|
3595
|
+
type AnshItemType = 'physical' | 'digital';
|
|
3502
3596
|
}
|
|
3503
3597
|
declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
3504
3598
|
interface AldoItem {
|
|
@@ -3516,6 +3610,21 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
3516
3610
|
readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
|
|
3517
3611
|
readonly added_on: string;
|
|
3518
3612
|
}
|
|
3613
|
+
interface AnshItem {
|
|
3614
|
+
readonly id: string;
|
|
3615
|
+
readonly number: string;
|
|
3616
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
3617
|
+
readonly description?: string;
|
|
3618
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
3619
|
+
readonly added_on: string;
|
|
3620
|
+
}
|
|
3621
|
+
interface AnshItemForm {
|
|
3622
|
+
readonly number: string;
|
|
3623
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
3624
|
+
readonly description?: string;
|
|
3625
|
+
readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
|
|
3626
|
+
readonly added_on: string;
|
|
3627
|
+
}
|
|
3519
3628
|
interface JeanDemoItem {
|
|
3520
3629
|
readonly id: string;
|
|
3521
3630
|
readonly name: string;
|
|
@@ -3664,6 +3773,146 @@ declare namespace io.flow.organization.v0.models {
|
|
|
3664
3773
|
readonly status: io.flow.common.v0.enums.AvailabilityStatus;
|
|
3665
3774
|
}
|
|
3666
3775
|
}
|
|
3776
|
+
declare namespace io.flow.order.price.v0.enums {
|
|
3777
|
+
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
3778
|
+
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
3779
|
+
}
|
|
3780
|
+
declare namespace io.flow.order.price.v0.models {
|
|
3781
|
+
interface OrderPriceDetail {
|
|
3782
|
+
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
3783
|
+
readonly currency: string;
|
|
3784
|
+
readonly amount: number;
|
|
3785
|
+
readonly label: string;
|
|
3786
|
+
readonly base: io.flow.common.v0.models.Price;
|
|
3787
|
+
readonly components: io.flow.order.price.v0.models.OrderPriceDetailComponent[];
|
|
3788
|
+
readonly name?: string;
|
|
3789
|
+
readonly rate?: number;
|
|
3790
|
+
readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
|
|
3791
|
+
readonly rate_label?: string;
|
|
3792
|
+
}
|
|
3793
|
+
interface OrderPriceDetailComponent {
|
|
3794
|
+
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
|
|
3795
|
+
readonly currency: string;
|
|
3796
|
+
readonly amount: number;
|
|
3797
|
+
readonly label: string;
|
|
3798
|
+
readonly base: io.flow.common.v0.models.Price;
|
|
3799
|
+
readonly name?: string;
|
|
3800
|
+
}
|
|
3801
|
+
}
|
|
3802
|
+
declare namespace io.flow.channel.internal.v0.enums {
|
|
3803
|
+
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
3804
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
3805
|
+
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
3806
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
3807
|
+
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
3808
|
+
}
|
|
3809
|
+
declare namespace io.flow.channel.internal.v0.models {
|
|
3810
|
+
interface ChannelCurrencyForm {
|
|
3811
|
+
readonly currency: string;
|
|
3812
|
+
readonly channel_id: string;
|
|
3813
|
+
readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
3814
|
+
}
|
|
3815
|
+
interface ChannelForm {
|
|
3816
|
+
readonly name: string;
|
|
3817
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
3818
|
+
readonly organization_id_prefix?: string;
|
|
3819
|
+
}
|
|
3820
|
+
interface ChannelMembership {
|
|
3821
|
+
readonly id: string;
|
|
3822
|
+
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
3823
|
+
readonly user: io.flow.common.v0.unions.ExpandableUser;
|
|
3824
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
3825
|
+
}
|
|
3826
|
+
interface ChannelMembershipForm {
|
|
3827
|
+
readonly channel_id: string;
|
|
3828
|
+
readonly user_id: string;
|
|
3829
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
3830
|
+
}
|
|
3831
|
+
interface ChannelMembershipPutForm {
|
|
3832
|
+
readonly role?: io.flow.common.v0.enums.Role;
|
|
3833
|
+
}
|
|
3834
|
+
interface ChannelOrderAcceptance {
|
|
3835
|
+
readonly id: string;
|
|
3836
|
+
readonly organization_id: string;
|
|
3837
|
+
readonly order_number: string;
|
|
3838
|
+
readonly channel_id: string;
|
|
3839
|
+
readonly external_order_reference: string;
|
|
3840
|
+
readonly payment_request_id?: string;
|
|
3841
|
+
readonly order_edit_payment_request_ids?: string[];
|
|
3842
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
3843
|
+
readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
|
|
3844
|
+
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
3845
|
+
readonly order_created_at?: string;
|
|
3846
|
+
readonly order_updated_at?: string;
|
|
3847
|
+
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
3848
|
+
}
|
|
3849
|
+
interface ChannelOrderAcceptanceDetails {
|
|
3850
|
+
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
3851
|
+
readonly external_order: any;
|
|
3852
|
+
}
|
|
3853
|
+
interface ChannelOrderAcceptanceFailure {
|
|
3854
|
+
readonly id: string;
|
|
3855
|
+
readonly organization_id: string;
|
|
3856
|
+
readonly channel_id: string;
|
|
3857
|
+
readonly payment_request_id: string;
|
|
3858
|
+
readonly code: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
3859
|
+
readonly reason: string;
|
|
3860
|
+
}
|
|
3861
|
+
interface ChannelOrderAcceptanceForm {
|
|
3862
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
3863
|
+
}
|
|
3864
|
+
interface ChannelOrderAcceptanceReason {
|
|
3865
|
+
readonly description: string;
|
|
3866
|
+
readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
|
|
3867
|
+
}
|
|
3868
|
+
interface FlowChannelOrganization {
|
|
3869
|
+
readonly placeholder?: string;
|
|
3870
|
+
}
|
|
3871
|
+
interface OrderEditSummary {
|
|
3872
|
+
readonly edited_at: string;
|
|
3873
|
+
}
|
|
3874
|
+
}
|
|
3875
|
+
declare namespace io.flow.product.v0.models {
|
|
3876
|
+
interface Product {
|
|
3877
|
+
readonly organization_id: string;
|
|
3878
|
+
readonly number: string;
|
|
3879
|
+
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
3880
|
+
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
3881
|
+
readonly item_numbers: string[];
|
|
3882
|
+
readonly updated_at: string;
|
|
3883
|
+
readonly deleted_at?: string;
|
|
3884
|
+
}
|
|
3885
|
+
interface ProductTaxonomyCategory {
|
|
3886
|
+
readonly name: string;
|
|
3887
|
+
readonly full_name: string;
|
|
3888
|
+
}
|
|
3889
|
+
interface ProductTaxonomyData {
|
|
3890
|
+
readonly key: string;
|
|
3891
|
+
readonly value: string[];
|
|
3892
|
+
}
|
|
3893
|
+
}
|
|
3894
|
+
declare namespace io.flow.ben.test.internal.v0.models {
|
|
3895
|
+
interface GenerateLoadMultipleOrgs {
|
|
3896
|
+
readonly discriminator: 'generate_load_multiple_orgs';
|
|
3897
|
+
readonly organization_ids: string[];
|
|
3898
|
+
readonly num_events: number;
|
|
3899
|
+
}
|
|
3900
|
+
interface GenerateLoadSingleOrg {
|
|
3901
|
+
readonly discriminator: 'generate_load_single_org';
|
|
3902
|
+
readonly organization_id: string;
|
|
3903
|
+
readonly num_events: number;
|
|
3904
|
+
}
|
|
3905
|
+
interface Test {
|
|
3906
|
+
readonly id: string;
|
|
3907
|
+
readonly name: string;
|
|
3908
|
+
}
|
|
3909
|
+
interface TestForm {
|
|
3910
|
+
readonly name: string;
|
|
3911
|
+
}
|
|
3912
|
+
}
|
|
3913
|
+
declare namespace io.flow.ben.test.internal.v0.unions {
|
|
3914
|
+
type GenerateLoad = io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
3915
|
+
}
|
|
3667
3916
|
declare namespace io.flow.catalog.v0.enums {
|
|
3668
3917
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
3669
3918
|
type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
|
|
@@ -4200,6 +4449,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4200
4449
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
4201
4450
|
type ChangeType = 'insert' | 'update' | 'delete';
|
|
4202
4451
|
type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
|
|
4452
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
4203
4453
|
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
4204
4454
|
type ConsumerInvoiceDocumentType = 'pdf';
|
|
4205
4455
|
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
@@ -4227,7 +4477,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4227
4477
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
4228
4478
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
4229
4479
|
type Environment = 'sandbox' | 'production';
|
|
4230
|
-
type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | '
|
|
4480
|
+
type EventType = 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'ge_product_restriction_result_upserted' | 'ge_product_restriction_result_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
4231
4481
|
type ExceptionType = 'open' | 'closed';
|
|
4232
4482
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4233
4483
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -4284,6 +4534,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4284
4534
|
type OrderChangeSource = 'consumer' | 'retailer' | 'fulfillment' | 'flow' | 'carrier';
|
|
4285
4535
|
type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
|
|
4286
4536
|
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
4537
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
4287
4538
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
4288
4539
|
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
4289
4540
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
@@ -4356,10 +4607,8 @@ declare namespace io.flow.v0.enums {
|
|
|
4356
4607
|
type StoredMethodUsageStep = 'initial' | 'subsequent';
|
|
4357
4608
|
type Strategy = 'range' | 'from' | 'to';
|
|
4358
4609
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
4610
|
+
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
4359
4611
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
4360
|
-
type SyncRecordFailureReason = 'inventory' | 'address' | 'promotion' | 'other';
|
|
4361
|
-
type SyncStreamType = 'submitted_order' | 'placed_order';
|
|
4362
|
-
type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
|
|
4363
4612
|
type TaxApplicability = 'none' | 'all';
|
|
4364
4613
|
type TaxReportType = 'consumer' | 'b2b';
|
|
4365
4614
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -4372,10 +4621,10 @@ declare namespace io.flow.v0.enums {
|
|
|
4372
4621
|
type TierStrategy = 'fastest' | 'lowest_cost';
|
|
4373
4622
|
type TokenType = 'permanent' | 'one_time';
|
|
4374
4623
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
4375
|
-
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
4624
|
+
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
4376
4625
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
4377
4626
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
4378
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund';
|
|
4627
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
4379
4628
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
4380
4629
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
|
|
4381
4630
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
@@ -4781,6 +5030,18 @@ declare namespace io.flow.v0.models {
|
|
|
4781
5030
|
readonly region?: string;
|
|
4782
5031
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
4783
5032
|
}
|
|
5033
|
+
interface AnshItemDeleted {
|
|
5034
|
+
readonly discriminator: 'ansh_item_deleted';
|
|
5035
|
+
readonly event_id: string;
|
|
5036
|
+
readonly timestamp: string;
|
|
5037
|
+
readonly id: string;
|
|
5038
|
+
}
|
|
5039
|
+
interface AnshItemUpserted {
|
|
5040
|
+
readonly discriminator: 'ansh_item_upserted';
|
|
5041
|
+
readonly event_id: string;
|
|
5042
|
+
readonly timestamp: string;
|
|
5043
|
+
readonly item: io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
5044
|
+
}
|
|
4784
5045
|
interface ApplePayMerchantValidationPayload {
|
|
4785
5046
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
4786
5047
|
readonly validation_url: string;
|
|
@@ -4940,6 +5201,30 @@ declare namespace io.flow.v0.models {
|
|
|
4940
5201
|
interface AuthorizationResultDescription {
|
|
4941
5202
|
readonly display: string;
|
|
4942
5203
|
}
|
|
5204
|
+
interface AuthorizationRetry {
|
|
5205
|
+
readonly id: string;
|
|
5206
|
+
readonly authorization_request_id: string;
|
|
5207
|
+
readonly authorization_id: string;
|
|
5208
|
+
readonly organization_id: string;
|
|
5209
|
+
readonly attempt: number;
|
|
5210
|
+
readonly last_failure_code: string;
|
|
5211
|
+
readonly created_at: string;
|
|
5212
|
+
readonly updated_at: string;
|
|
5213
|
+
}
|
|
5214
|
+
interface AuthorizationRetryDeleted {
|
|
5215
|
+
readonly discriminator: 'authorization_retry_deleted';
|
|
5216
|
+
readonly event_id: string;
|
|
5217
|
+
readonly timestamp: string;
|
|
5218
|
+
readonly organization: string;
|
|
5219
|
+
readonly id: string;
|
|
5220
|
+
}
|
|
5221
|
+
interface AuthorizationRetryUpserted {
|
|
5222
|
+
readonly discriminator: 'authorization_retry_upserted';
|
|
5223
|
+
readonly event_id: string;
|
|
5224
|
+
readonly timestamp: string;
|
|
5225
|
+
readonly organization: string;
|
|
5226
|
+
readonly authorization_retry: io.flow.v0.models.AuthorizationRetry;
|
|
5227
|
+
}
|
|
4943
5228
|
interface AuthorizationStatusChanged {
|
|
4944
5229
|
readonly discriminator: 'authorization_status_changed';
|
|
4945
5230
|
readonly event_id: string;
|
|
@@ -5323,6 +5608,7 @@ declare namespace io.flow.v0.models {
|
|
|
5323
5608
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
5324
5609
|
readonly stored_method_usage_step?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
5325
5610
|
readonly authorized_at?: string;
|
|
5611
|
+
readonly authorization_request_id?: string;
|
|
5326
5612
|
}
|
|
5327
5613
|
interface CardAuthorizationDeletedV2 {
|
|
5328
5614
|
readonly discriminator: 'card_authorization_deleted_v2';
|
|
@@ -5458,6 +5744,10 @@ declare namespace io.flow.v0.models {
|
|
|
5458
5744
|
interface CarrierReference {
|
|
5459
5745
|
readonly id: string;
|
|
5460
5746
|
}
|
|
5747
|
+
interface CarrierRestrictions {
|
|
5748
|
+
readonly carrier: string;
|
|
5749
|
+
readonly regions: string[];
|
|
5750
|
+
}
|
|
5461
5751
|
interface CarrierService {
|
|
5462
5752
|
readonly id: string;
|
|
5463
5753
|
readonly carrier: io.flow.v0.models.Carrier;
|
|
@@ -5475,20 +5765,6 @@ declare namespace io.flow.v0.models {
|
|
|
5475
5765
|
readonly timestamp: string;
|
|
5476
5766
|
readonly organization: string;
|
|
5477
5767
|
}
|
|
5478
|
-
interface CatalogItemDeleted {
|
|
5479
|
-
readonly discriminator: 'catalog_item_deleted';
|
|
5480
|
-
readonly event_id: string;
|
|
5481
|
-
readonly timestamp: string;
|
|
5482
|
-
readonly organization: string;
|
|
5483
|
-
readonly number: string;
|
|
5484
|
-
}
|
|
5485
|
-
interface CatalogItemDeletedV2 {
|
|
5486
|
-
readonly discriminator: 'catalog_item_deleted_v2';
|
|
5487
|
-
readonly event_id: string;
|
|
5488
|
-
readonly timestamp: string;
|
|
5489
|
-
readonly organization: string;
|
|
5490
|
-
readonly item: io.flow.v0.models.Item;
|
|
5491
|
-
}
|
|
5492
5768
|
interface CatalogItemDocument {
|
|
5493
5769
|
readonly discriminator: 'catalog_item_document';
|
|
5494
5770
|
readonly number: string;
|
|
@@ -5516,29 +5792,6 @@ declare namespace io.flow.v0.models {
|
|
|
5516
5792
|
readonly name: string;
|
|
5517
5793
|
readonly attributes: Record<string, string>;
|
|
5518
5794
|
}
|
|
5519
|
-
interface CatalogItemUpserted {
|
|
5520
|
-
readonly discriminator: 'catalog_item_upserted';
|
|
5521
|
-
readonly event_id: string;
|
|
5522
|
-
readonly timestamp: string;
|
|
5523
|
-
readonly organization: string;
|
|
5524
|
-
readonly number: string;
|
|
5525
|
-
readonly locale: string;
|
|
5526
|
-
readonly name: string;
|
|
5527
|
-
readonly currency: string;
|
|
5528
|
-
readonly price: number;
|
|
5529
|
-
readonly categories: string[];
|
|
5530
|
-
readonly description?: string;
|
|
5531
|
-
readonly attributes: Record<string, string>;
|
|
5532
|
-
readonly dimensions: any;
|
|
5533
|
-
readonly images: any[];
|
|
5534
|
-
}
|
|
5535
|
-
interface CatalogItemUpsertedV2 {
|
|
5536
|
-
readonly discriminator: 'catalog_item_upserted_v2';
|
|
5537
|
-
readonly event_id: string;
|
|
5538
|
-
readonly timestamp: string;
|
|
5539
|
-
readonly organization: string;
|
|
5540
|
-
readonly item: io.flow.v0.models.Item;
|
|
5541
|
-
}
|
|
5542
5795
|
interface CatalogPriceBookItemDocument {
|
|
5543
5796
|
readonly price_book_key: string;
|
|
5544
5797
|
readonly price_book_item_key: string;
|
|
@@ -5792,6 +6045,34 @@ declare namespace io.flow.v0.models {
|
|
|
5792
6045
|
interface ChannelReference {
|
|
5793
6046
|
readonly id: string;
|
|
5794
6047
|
}
|
|
6048
|
+
interface ChannelShopifyOrderState {
|
|
6049
|
+
readonly id: string;
|
|
6050
|
+
readonly shopify_order_summary: io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
6051
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
6052
|
+
readonly reasons?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
|
|
6053
|
+
}
|
|
6054
|
+
interface ChannelShopifyOrderStateDeleted {
|
|
6055
|
+
readonly discriminator: 'channel_shopify_order_state_deleted';
|
|
6056
|
+
readonly event_id: string;
|
|
6057
|
+
readonly timestamp: string;
|
|
6058
|
+
readonly organization: string;
|
|
6059
|
+
readonly id: string;
|
|
6060
|
+
}
|
|
6061
|
+
interface ChannelShopifyOrderStateReason {
|
|
6062
|
+
readonly code: io.flow.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
6063
|
+
readonly message: string;
|
|
6064
|
+
}
|
|
6065
|
+
interface ChannelShopifyOrderStateUpserted {
|
|
6066
|
+
readonly discriminator: 'channel_shopify_order_state_upserted';
|
|
6067
|
+
readonly event_id: string;
|
|
6068
|
+
readonly timestamp: string;
|
|
6069
|
+
readonly organization: string;
|
|
6070
|
+
readonly channel_shopify_order_state: io.flow.v0.models.ChannelShopifyOrderState;
|
|
6071
|
+
}
|
|
6072
|
+
interface ChannelShopifyOrderSummary {
|
|
6073
|
+
readonly order_id: number;
|
|
6074
|
+
readonly shop_id: number;
|
|
6075
|
+
}
|
|
5795
6076
|
interface ChannelStatement {
|
|
5796
6077
|
readonly id: string;
|
|
5797
6078
|
readonly account: io.flow.v0.models.AccountReference;
|
|
@@ -6654,11 +6935,13 @@ declare namespace io.flow.v0.models {
|
|
|
6654
6935
|
readonly q: string;
|
|
6655
6936
|
readonly dimensions: io.flow.v0.models.EstimatedDimensions;
|
|
6656
6937
|
readonly position: number;
|
|
6938
|
+
readonly block_bulk_update?: boolean;
|
|
6657
6939
|
}
|
|
6658
6940
|
interface DimensionEstimateForm {
|
|
6659
6941
|
readonly q: string;
|
|
6660
6942
|
readonly dimensions: io.flow.v0.models.EstimatedDimensions;
|
|
6661
6943
|
readonly position?: number;
|
|
6944
|
+
readonly block_bulk_update?: boolean;
|
|
6662
6945
|
}
|
|
6663
6946
|
interface DimensionEstimateVersion {
|
|
6664
6947
|
readonly id: string;
|
|
@@ -7485,6 +7768,41 @@ declare namespace io.flow.v0.models {
|
|
|
7485
7768
|
readonly hs6_code: string;
|
|
7486
7769
|
readonly landed_costs: io.flow.v0.models.LaneLandedCost[];
|
|
7487
7770
|
}
|
|
7771
|
+
interface GeItemDeleted {
|
|
7772
|
+
readonly discriminator: 'ge_item_deleted';
|
|
7773
|
+
readonly event_id: string;
|
|
7774
|
+
readonly timestamp: string;
|
|
7775
|
+
readonly organization: string;
|
|
7776
|
+
readonly item: io.flow.v0.models.Item;
|
|
7777
|
+
}
|
|
7778
|
+
interface GeItemInserted {
|
|
7779
|
+
readonly discriminator: 'ge_item_inserted';
|
|
7780
|
+
readonly event_id: string;
|
|
7781
|
+
readonly timestamp: string;
|
|
7782
|
+
readonly organization: string;
|
|
7783
|
+
readonly item: io.flow.v0.models.Item;
|
|
7784
|
+
}
|
|
7785
|
+
interface GeItemUpdated {
|
|
7786
|
+
readonly discriminator: 'ge_item_updated';
|
|
7787
|
+
readonly event_id: string;
|
|
7788
|
+
readonly timestamp: string;
|
|
7789
|
+
readonly organization: string;
|
|
7790
|
+
readonly item: io.flow.v0.models.Item;
|
|
7791
|
+
}
|
|
7792
|
+
interface GeProductRestrictionResultDeleted {
|
|
7793
|
+
readonly discriminator: 'ge_product_restriction_result_deleted';
|
|
7794
|
+
readonly event_id: string;
|
|
7795
|
+
readonly timestamp: string;
|
|
7796
|
+
readonly organization: string;
|
|
7797
|
+
readonly id: string;
|
|
7798
|
+
}
|
|
7799
|
+
interface GeProductRestrictionResultUpserted {
|
|
7800
|
+
readonly discriminator: 'ge_product_restriction_result_upserted';
|
|
7801
|
+
readonly event_id: string;
|
|
7802
|
+
readonly timestamp: string;
|
|
7803
|
+
readonly organization: string;
|
|
7804
|
+
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
7805
|
+
}
|
|
7488
7806
|
interface GenerateLoad {
|
|
7489
7807
|
readonly discriminator: 'generate_load';
|
|
7490
7808
|
readonly event_id: string;
|
|
@@ -8361,13 +8679,6 @@ declare namespace io.flow.v0.models {
|
|
|
8361
8679
|
readonly duty?: io.flow.v0.models.LocalizedItemDuty;
|
|
8362
8680
|
readonly price: io.flow.v0.models.LocalizedItemPrice;
|
|
8363
8681
|
}
|
|
8364
|
-
interface LocalItemDeleted {
|
|
8365
|
-
readonly discriminator: 'local_item_deleted';
|
|
8366
|
-
readonly event_id: string;
|
|
8367
|
-
readonly timestamp: string;
|
|
8368
|
-
readonly organization: string;
|
|
8369
|
-
readonly local_item: io.flow.v0.models.LocalItem;
|
|
8370
|
-
}
|
|
8371
8682
|
interface LocalItemPricing {
|
|
8372
8683
|
readonly price: io.flow.v0.models.LocalizedItemPrice;
|
|
8373
8684
|
readonly vat?: io.flow.v0.models.LocalizedItemVat;
|
|
@@ -8376,13 +8687,6 @@ declare namespace io.flow.v0.models {
|
|
|
8376
8687
|
readonly attributes: Record<string, io.flow.v0.models.PriceWithBase>;
|
|
8377
8688
|
readonly price_attributes?: Record<string, io.flow.v0.models.LocalItemAttributePricing>;
|
|
8378
8689
|
}
|
|
8379
|
-
interface LocalItemUpserted {
|
|
8380
|
-
readonly discriminator: 'local_item_upserted';
|
|
8381
|
-
readonly event_id: string;
|
|
8382
|
-
readonly timestamp: string;
|
|
8383
|
-
readonly organization: string;
|
|
8384
|
-
readonly local_item: io.flow.v0.models.LocalItem;
|
|
8385
|
-
}
|
|
8386
8690
|
interface LocalPriceDetails {
|
|
8387
8691
|
readonly base: io.flow.v0.models.PriceDetails;
|
|
8388
8692
|
readonly local: io.flow.v0.models.PriceDetails;
|
|
@@ -8792,6 +9096,7 @@ declare namespace io.flow.v0.models {
|
|
|
8792
9096
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
8793
9097
|
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
8794
9098
|
readonly authorized_at?: string;
|
|
9099
|
+
readonly authorization_request_id?: string;
|
|
8795
9100
|
}
|
|
8796
9101
|
interface OnlineAuthorizationDeletedV2 {
|
|
8797
9102
|
readonly discriminator: 'online_authorization_deleted_v2';
|
|
@@ -8860,6 +9165,7 @@ declare namespace io.flow.v0.models {
|
|
|
8860
9165
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
8861
9166
|
readonly destination_contact_details?: io.flow.v0.models.DestinationContactDetail[];
|
|
8862
9167
|
readonly incoterm_summary?: io.flow.v0.models.IncotermSummary;
|
|
9168
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
8863
9169
|
}
|
|
8864
9170
|
interface OrderAddress {
|
|
8865
9171
|
readonly text?: string;
|
|
@@ -8983,6 +9289,7 @@ declare namespace io.flow.v0.models {
|
|
|
8983
9289
|
readonly authorization_keys?: string[];
|
|
8984
9290
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
8985
9291
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
9292
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
8986
9293
|
}
|
|
8987
9294
|
interface OrderFraudStatus {
|
|
8988
9295
|
readonly order: io.flow.v0.models.OrderReference;
|
|
@@ -9173,6 +9480,7 @@ declare namespace io.flow.v0.models {
|
|
|
9173
9480
|
readonly authorization_keys?: string[];
|
|
9174
9481
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
9175
9482
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
9483
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
9176
9484
|
}
|
|
9177
9485
|
interface OrderReference {
|
|
9178
9486
|
readonly discriminator: 'order_reference';
|
|
@@ -10502,9 +10810,6 @@ declare namespace io.flow.v0.models {
|
|
|
10502
10810
|
readonly organization: string;
|
|
10503
10811
|
readonly id: string;
|
|
10504
10812
|
}
|
|
10505
|
-
interface PriceBookItemExportOptions {
|
|
10506
|
-
readonly available_identifiers: io.flow.v0.enums.ItemIdentifier[];
|
|
10507
|
-
}
|
|
10508
10813
|
interface PriceBookItemExportType {
|
|
10509
10814
|
readonly discriminator: 'price_book_item_export_type';
|
|
10510
10815
|
readonly price_book_key?: string;
|
|
@@ -10669,7 +10974,6 @@ declare namespace io.flow.v0.models {
|
|
|
10669
10974
|
readonly source: io.flow.v0.enums.DeliveryWindowComponentSource;
|
|
10670
10975
|
}
|
|
10671
10976
|
interface Product {
|
|
10672
|
-
readonly id: string;
|
|
10673
10977
|
readonly organization_id: string;
|
|
10674
10978
|
readonly number: string;
|
|
10675
10979
|
readonly taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
|
|
@@ -10678,6 +10982,20 @@ declare namespace io.flow.v0.models {
|
|
|
10678
10982
|
readonly updated_at: string;
|
|
10679
10983
|
readonly deleted_at?: string;
|
|
10680
10984
|
}
|
|
10985
|
+
interface ProductDeleted {
|
|
10986
|
+
readonly discriminator: 'product_deleted';
|
|
10987
|
+
readonly event_id: string;
|
|
10988
|
+
readonly timestamp: string;
|
|
10989
|
+
readonly organization: string;
|
|
10990
|
+
readonly product: io.flow.v0.models.Product;
|
|
10991
|
+
}
|
|
10992
|
+
interface ProductInserted {
|
|
10993
|
+
readonly discriminator: 'product_inserted';
|
|
10994
|
+
readonly event_id: string;
|
|
10995
|
+
readonly timestamp: string;
|
|
10996
|
+
readonly organization: string;
|
|
10997
|
+
readonly product: io.flow.v0.models.Product;
|
|
10998
|
+
}
|
|
10681
10999
|
interface ProductRestrictionResult {
|
|
10682
11000
|
readonly id: string;
|
|
10683
11001
|
readonly product_id: string;
|
|
@@ -10706,12 +11024,19 @@ declare namespace io.flow.v0.models {
|
|
|
10706
11024
|
}
|
|
10707
11025
|
interface ProductTaxonomyCategory {
|
|
10708
11026
|
readonly name: string;
|
|
10709
|
-
readonly
|
|
11027
|
+
readonly full_name: string;
|
|
10710
11028
|
}
|
|
10711
11029
|
interface ProductTaxonomyData {
|
|
10712
11030
|
readonly key: string;
|
|
10713
11031
|
readonly value: string[];
|
|
10714
11032
|
}
|
|
11033
|
+
interface ProductUpdated {
|
|
11034
|
+
readonly discriminator: 'product_updated';
|
|
11035
|
+
readonly event_id: string;
|
|
11036
|
+
readonly timestamp: string;
|
|
11037
|
+
readonly organization: string;
|
|
11038
|
+
readonly product: io.flow.v0.models.Product;
|
|
11039
|
+
}
|
|
10715
11040
|
interface PromotionTrigger {
|
|
10716
11041
|
readonly type: io.flow.v0.enums.PromotionTriggerType;
|
|
10717
11042
|
readonly min: io.flow.v0.models.Price;
|
|
@@ -12355,68 +12680,6 @@ declare namespace io.flow.v0.models {
|
|
|
12355
12680
|
readonly key: io.flow.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
12356
12681
|
readonly available: io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
12357
12682
|
}
|
|
12358
|
-
interface SyncDuration {
|
|
12359
|
-
readonly unit: io.flow.v0.enums.SyncUnitOfTime;
|
|
12360
|
-
readonly value: number;
|
|
12361
|
-
}
|
|
12362
|
-
interface SyncPendingRecord {
|
|
12363
|
-
readonly id: string;
|
|
12364
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
12365
|
-
readonly value: string;
|
|
12366
|
-
readonly system: string;
|
|
12367
|
-
}
|
|
12368
|
-
interface SyncRecord {
|
|
12369
|
-
readonly id: string;
|
|
12370
|
-
readonly system: string;
|
|
12371
|
-
readonly value: string;
|
|
12372
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
12373
|
-
}
|
|
12374
|
-
interface SyncRecordFailure {
|
|
12375
|
-
readonly id: string;
|
|
12376
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
12377
|
-
readonly value: string;
|
|
12378
|
-
readonly system: string;
|
|
12379
|
-
readonly reason: io.flow.v0.enums.SyncRecordFailureReason;
|
|
12380
|
-
readonly attributes?: Record<string, string>;
|
|
12381
|
-
}
|
|
12382
|
-
interface SyncRecordFailureForm {
|
|
12383
|
-
readonly stream_key: string;
|
|
12384
|
-
readonly value: string;
|
|
12385
|
-
readonly system: string;
|
|
12386
|
-
readonly reason: io.flow.v0.enums.SyncRecordFailureReason;
|
|
12387
|
-
readonly attributes?: Record<string, string>;
|
|
12388
|
-
}
|
|
12389
|
-
interface SyncRecordForm {
|
|
12390
|
-
readonly stream_key: string;
|
|
12391
|
-
readonly system: string;
|
|
12392
|
-
readonly value: string;
|
|
12393
|
-
}
|
|
12394
|
-
interface SyncStream {
|
|
12395
|
-
readonly id: string;
|
|
12396
|
-
readonly key: string;
|
|
12397
|
-
readonly type: io.flow.v0.enums.SyncStreamType;
|
|
12398
|
-
readonly systems: string[];
|
|
12399
|
-
readonly settings: io.flow.v0.models.SyncStreamSettings;
|
|
12400
|
-
}
|
|
12401
|
-
interface SyncStreamForm {
|
|
12402
|
-
readonly type: io.flow.v0.enums.SyncStreamType;
|
|
12403
|
-
readonly systems: string[];
|
|
12404
|
-
readonly settings?: io.flow.v0.models.SyncStreamSettingsForm;
|
|
12405
|
-
}
|
|
12406
|
-
interface SyncStreamReference {
|
|
12407
|
-
readonly id: string;
|
|
12408
|
-
readonly key: string;
|
|
12409
|
-
}
|
|
12410
|
-
interface SyncStreamSettings {
|
|
12411
|
-
readonly pending_record_after: io.flow.v0.models.SyncDuration;
|
|
12412
|
-
readonly warn_after: io.flow.v0.models.SyncDuration;
|
|
12413
|
-
readonly error_after: io.flow.v0.models.SyncDuration;
|
|
12414
|
-
}
|
|
12415
|
-
interface SyncStreamSettingsForm {
|
|
12416
|
-
readonly pending_record_after: io.flow.v0.models.SyncDuration;
|
|
12417
|
-
readonly warn_after: io.flow.v0.models.SyncDuration;
|
|
12418
|
-
readonly error_after: io.flow.v0.models.SyncDuration;
|
|
12419
|
-
}
|
|
12420
12683
|
interface Tax {
|
|
12421
12684
|
readonly name: string;
|
|
12422
12685
|
readonly rate: number;
|
|
@@ -13135,7 +13398,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13135
13398
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
13136
13399
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
13137
13400
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
13138
|
-
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.
|
|
13401
|
+
type Event = io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.GeProductRestrictionResultUpserted | io.flow.v0.models.GeProductRestrictionResultDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
|
|
13139
13402
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
13140
13403
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
13141
13404
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -13292,6 +13555,8 @@ export declare type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
13292
13555
|
export declare type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
13293
13556
|
export declare type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
13294
13557
|
export declare type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
13558
|
+
export declare type AnshItemDeleted = io.flow.v0.models.AnshItemDeleted;
|
|
13559
|
+
export declare type AnshItemUpserted = io.flow.v0.models.AnshItemUpserted;
|
|
13295
13560
|
export declare type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
13296
13561
|
export declare type ApplepaySdkCreateResultActionDetails = io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
13297
13562
|
export declare type ApplepaySdkValidateResultActionDetails = io.flow.v0.models.ApplepaySdkValidateResultActionDetails;
|
|
@@ -13331,6 +13596,9 @@ export declare type AuthorizationResultActionPost = io.flow.v0.models.Authorizat
|
|
|
13331
13596
|
export declare type AuthorizationResultActionType = io.flow.v0.enums.AuthorizationResultActionType;
|
|
13332
13597
|
export declare type AuthorizationResultActionWait = io.flow.v0.models.AuthorizationResultActionWait;
|
|
13333
13598
|
export declare type AuthorizationResultDescription = io.flow.v0.models.AuthorizationResultDescription;
|
|
13599
|
+
export declare type AuthorizationRetry = io.flow.v0.models.AuthorizationRetry;
|
|
13600
|
+
export declare type AuthorizationRetryDeleted = io.flow.v0.models.AuthorizationRetryDeleted;
|
|
13601
|
+
export declare type AuthorizationRetryUpserted = io.flow.v0.models.AuthorizationRetryUpserted;
|
|
13334
13602
|
export declare type AuthorizationStatus = io.flow.v0.enums.AuthorizationStatus;
|
|
13335
13603
|
export declare type AuthorizationStatusChanged = io.flow.v0.models.AuthorizationStatusChanged;
|
|
13336
13604
|
export declare type AuthorizationVersion = io.flow.v0.models.AuthorizationVersion;
|
|
@@ -13427,19 +13695,16 @@ export declare type CardVersion = io.flow.v0.models.CardVersion;
|
|
|
13427
13695
|
export declare type Carrier = io.flow.v0.models.Carrier;
|
|
13428
13696
|
export declare type CarrierChargeReason = io.flow.v0.enums.CarrierChargeReason;
|
|
13429
13697
|
export declare type CarrierReference = io.flow.v0.models.CarrierReference;
|
|
13698
|
+
export declare type CarrierRestrictions = io.flow.v0.models.CarrierRestrictions;
|
|
13430
13699
|
export declare type CarrierService = io.flow.v0.models.CarrierService;
|
|
13431
13700
|
export declare type CartReference = io.flow.v0.models.CartReference;
|
|
13432
13701
|
export declare type Catalog = io.flow.v0.models.Catalog;
|
|
13433
13702
|
export declare type CatalogDeleted = io.flow.v0.models.CatalogDeleted;
|
|
13434
|
-
export declare type CatalogItemDeleted = io.flow.v0.models.CatalogItemDeleted;
|
|
13435
|
-
export declare type CatalogItemDeletedV2 = io.flow.v0.models.CatalogItemDeletedV2;
|
|
13436
13703
|
export declare type CatalogItemDocument = io.flow.v0.models.CatalogItemDocument;
|
|
13437
13704
|
export declare type CatalogItemDocumentImages = io.flow.v0.models.CatalogItemDocumentImages;
|
|
13438
13705
|
export declare type CatalogItemExportType = io.flow.v0.models.CatalogItemExportType;
|
|
13439
13706
|
export declare type CatalogItemReference = io.flow.v0.models.CatalogItemReference;
|
|
13440
13707
|
export declare type CatalogItemSummary = io.flow.v0.models.CatalogItemSummary;
|
|
13441
|
-
export declare type CatalogItemUpserted = io.flow.v0.models.CatalogItemUpserted;
|
|
13442
|
-
export declare type CatalogItemUpsertedV2 = io.flow.v0.models.CatalogItemUpsertedV2;
|
|
13443
13708
|
export declare type CatalogPriceBookItemDocument = io.flow.v0.models.CatalogPriceBookItemDocument;
|
|
13444
13709
|
export declare type CatalogReference = io.flow.v0.models.CatalogReference;
|
|
13445
13710
|
export declare type CatalogStatistics = io.flow.v0.models.CatalogStatistics;
|
|
@@ -13485,6 +13750,12 @@ export declare type ChannelPendingPayoutTransactionDeleted = io.flow.v0.models.C
|
|
|
13485
13750
|
export declare type ChannelPendingPayoutTransactionUpserted = io.flow.v0.models.ChannelPendingPayoutTransactionUpserted;
|
|
13486
13751
|
export declare type ChannelRate = io.flow.v0.models.ChannelRate;
|
|
13487
13752
|
export declare type ChannelReference = io.flow.v0.models.ChannelReference;
|
|
13753
|
+
export declare type ChannelShopifyOrderState = io.flow.v0.models.ChannelShopifyOrderState;
|
|
13754
|
+
export declare type ChannelShopifyOrderStateDeleted = io.flow.v0.models.ChannelShopifyOrderStateDeleted;
|
|
13755
|
+
export declare type ChannelShopifyOrderStateReason = io.flow.v0.models.ChannelShopifyOrderStateReason;
|
|
13756
|
+
export declare type ChannelShopifyOrderStateReasonCode = io.flow.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
13757
|
+
export declare type ChannelShopifyOrderStateUpserted = io.flow.v0.models.ChannelShopifyOrderStateUpserted;
|
|
13758
|
+
export declare type ChannelShopifyOrderSummary = io.flow.v0.models.ChannelShopifyOrderSummary;
|
|
13488
13759
|
export declare type ChannelStatement = io.flow.v0.models.ChannelStatement;
|
|
13489
13760
|
export declare type ChannelStatementDeleted = io.flow.v0.models.ChannelStatementDeleted;
|
|
13490
13761
|
export declare type ChannelStatementUpserted = io.flow.v0.models.ChannelStatementUpserted;
|
|
@@ -13847,6 +14118,11 @@ export declare type FulfillmentRouting = io.flow.v0.enums.FulfillmentRouting;
|
|
|
13847
14118
|
export declare type FullyHarmonizedItemUpserted = io.flow.v0.models.FullyHarmonizedItemUpserted;
|
|
13848
14119
|
export declare type GatewayAuthenticationData = io.flow.v0.unions.GatewayAuthenticationData;
|
|
13849
14120
|
export declare type GatewayAuthenticationDataForm = io.flow.v0.unions.GatewayAuthenticationDataForm;
|
|
14121
|
+
export declare type GeItemDeleted = io.flow.v0.models.GeItemDeleted;
|
|
14122
|
+
export declare type GeItemInserted = io.flow.v0.models.GeItemInserted;
|
|
14123
|
+
export declare type GeItemUpdated = io.flow.v0.models.GeItemUpdated;
|
|
14124
|
+
export declare type GeProductRestrictionResultDeleted = io.flow.v0.models.GeProductRestrictionResultDeleted;
|
|
14125
|
+
export declare type GeProductRestrictionResultUpserted = io.flow.v0.models.GeProductRestrictionResultUpserted;
|
|
13850
14126
|
export declare type GenerateLoad = io.flow.v0.models.GenerateLoad;
|
|
13851
14127
|
export declare type GenericError = io.flow.v0.models.GenericError;
|
|
13852
14128
|
export declare type GenericErrorCode = io.flow.v0.enums.GenericErrorCode;
|
|
@@ -14008,9 +14284,7 @@ export declare type Link = io.flow.v0.models.Link;
|
|
|
14008
14284
|
export declare type Local = io.flow.v0.models.Local;
|
|
14009
14285
|
export declare type LocalItem = io.flow.v0.models.LocalItem;
|
|
14010
14286
|
export declare type LocalItemAttributePricing = io.flow.v0.models.LocalItemAttributePricing;
|
|
14011
|
-
export declare type LocalItemDeleted = io.flow.v0.models.LocalItemDeleted;
|
|
14012
14287
|
export declare type LocalItemPricing = io.flow.v0.models.LocalItemPricing;
|
|
14013
|
-
export declare type LocalItemUpserted = io.flow.v0.models.LocalItemUpserted;
|
|
14014
14288
|
export declare type LocalPriceDetails = io.flow.v0.models.LocalPriceDetails;
|
|
14015
14289
|
export declare type LocalSession = io.flow.v0.models.LocalSession;
|
|
14016
14290
|
export declare type Locale = io.flow.v0.models.Locale;
|
|
@@ -14154,6 +14428,7 @@ export declare type OrderNumberGeneratorUuid = io.flow.v0.models.OrderNumberGene
|
|
|
14154
14428
|
export declare type OrderNumberReference = io.flow.v0.models.OrderNumberReference;
|
|
14155
14429
|
export declare type OrderOptions = io.flow.v0.models.OrderOptions;
|
|
14156
14430
|
export declare type OrderPayment = io.flow.v0.models.OrderPayment;
|
|
14431
|
+
export declare type OrderPaymentSourceType = io.flow.v0.enums.OrderPaymentSourceType;
|
|
14157
14432
|
export declare type OrderPaymentType = io.flow.v0.enums.OrderPaymentType;
|
|
14158
14433
|
export declare type OrderPlaced = io.flow.v0.models.OrderPlaced;
|
|
14159
14434
|
export declare type OrderPlacedDetails = io.flow.v0.models.OrderPlacedDetails;
|
|
@@ -14440,7 +14715,6 @@ export declare type PriceBookDeleted = io.flow.v0.models.PriceBookDeleted;
|
|
|
14440
14715
|
export declare type PriceBookForm = io.flow.v0.models.PriceBookForm;
|
|
14441
14716
|
export declare type PriceBookItem = io.flow.v0.models.PriceBookItem;
|
|
14442
14717
|
export declare type PriceBookItemDeleted = io.flow.v0.models.PriceBookItemDeleted;
|
|
14443
|
-
export declare type PriceBookItemExportOptions = io.flow.v0.models.PriceBookItemExportOptions;
|
|
14444
14718
|
export declare type PriceBookItemExportType = io.flow.v0.models.PriceBookItemExportType;
|
|
14445
14719
|
export declare type PriceBookItemForm = io.flow.v0.models.PriceBookItemForm;
|
|
14446
14720
|
export declare type PriceBookItemQueryForm = io.flow.v0.models.PriceBookItemQueryForm;
|
|
@@ -14473,12 +14747,15 @@ export declare type PricingUpserted = io.flow.v0.models.PricingUpserted;
|
|
|
14473
14747
|
export declare type PricingVersion = io.flow.v0.models.PricingVersion;
|
|
14474
14748
|
export declare type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
|
|
14475
14749
|
export declare type Product = io.flow.v0.models.Product;
|
|
14750
|
+
export declare type ProductDeleted = io.flow.v0.models.ProductDeleted;
|
|
14751
|
+
export declare type ProductInserted = io.flow.v0.models.ProductInserted;
|
|
14476
14752
|
export declare type ProductRestrictionResult = io.flow.v0.models.ProductRestrictionResult;
|
|
14477
14753
|
export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductRestrictionResultDeleted;
|
|
14478
14754
|
export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
14479
14755
|
export declare type ProductRestrictionRule = io.flow.v0.enums.ProductRestrictionRule;
|
|
14480
14756
|
export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
14481
14757
|
export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
14758
|
+
export declare type ProductUpdated = io.flow.v0.models.ProductUpdated;
|
|
14482
14759
|
export declare type Promotion = io.flow.v0.unions.Promotion;
|
|
14483
14760
|
export declare type PromotionTrigger = io.flow.v0.models.PromotionTrigger;
|
|
14484
14761
|
export declare type PromotionTriggerForm = io.flow.v0.models.PromotionTriggerForm;
|
|
@@ -14773,6 +15050,7 @@ export declare type SubcatalogSettingsForm = io.flow.v0.models.SubcatalogSetting
|
|
|
14773
15050
|
export declare type SubcatalogStatistics = io.flow.v0.models.SubcatalogStatistics;
|
|
14774
15051
|
export declare type SubcatalogUpserted = io.flow.v0.models.SubcatalogUpserted;
|
|
14775
15052
|
export declare type SubcatalogVersion = io.flow.v0.models.SubcatalogVersion;
|
|
15053
|
+
export declare type SubstatusCode = io.flow.v0.enums.SubstatusCode;
|
|
14776
15054
|
export declare type Suggestion = io.flow.v0.models.Suggestion;
|
|
14777
15055
|
export declare type SummaryShippingLabelForm = io.flow.v0.models.SummaryShippingLabelForm;
|
|
14778
15056
|
export declare type SummaryShippingNotificationForm = io.flow.v0.models.SummaryShippingNotificationForm;
|
|
@@ -14780,20 +15058,6 @@ export declare type SurchargeResponsibleParty = io.flow.v0.enums.SurchargeRespon
|
|
|
14780
15058
|
export declare type SurchargeResponsiblePartyDisplay = io.flow.v0.models.SurchargeResponsiblePartyDisplay;
|
|
14781
15059
|
export declare type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
14782
15060
|
export declare type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
|
|
14783
|
-
export declare type SyncDuration = io.flow.v0.models.SyncDuration;
|
|
14784
|
-
export declare type SyncPendingRecord = io.flow.v0.models.SyncPendingRecord;
|
|
14785
|
-
export declare type SyncRecord = io.flow.v0.models.SyncRecord;
|
|
14786
|
-
export declare type SyncRecordFailure = io.flow.v0.models.SyncRecordFailure;
|
|
14787
|
-
export declare type SyncRecordFailureForm = io.flow.v0.models.SyncRecordFailureForm;
|
|
14788
|
-
export declare type SyncRecordFailureReason = io.flow.v0.enums.SyncRecordFailureReason;
|
|
14789
|
-
export declare type SyncRecordForm = io.flow.v0.models.SyncRecordForm;
|
|
14790
|
-
export declare type SyncStream = io.flow.v0.models.SyncStream;
|
|
14791
|
-
export declare type SyncStreamForm = io.flow.v0.models.SyncStreamForm;
|
|
14792
|
-
export declare type SyncStreamReference = io.flow.v0.models.SyncStreamReference;
|
|
14793
|
-
export declare type SyncStreamSettings = io.flow.v0.models.SyncStreamSettings;
|
|
14794
|
-
export declare type SyncStreamSettingsForm = io.flow.v0.models.SyncStreamSettingsForm;
|
|
14795
|
-
export declare type SyncStreamType = io.flow.v0.enums.SyncStreamType;
|
|
14796
|
-
export declare type SyncUnitOfTime = io.flow.v0.enums.SyncUnitOfTime;
|
|
14797
15061
|
export declare type Tax = io.flow.v0.models.Tax;
|
|
14798
15062
|
export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
14799
15063
|
export declare type TaxRegistration = io.flow.v0.models.TaxRegistration;
|