@flowio/types 11.24.138 → 11.24.140
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 +734 -197
- package/dist/api.d.ts +120 -73
- package/package.json +1 -1
- package/src/api-internal.ts +951 -238
- package/src/api.ts +151 -82
package/src/api-internal.ts
CHANGED
|
@@ -1255,6 +1255,8 @@ declare namespace io.flow.channel.v0.models {
|
|
|
1255
1255
|
|
|
1256
1256
|
declare namespace io.flow.restrictions.v0.enums {
|
|
1257
1257
|
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
1258
|
+
type RestrictionDecision = 'accept' | 'reject' | 'escalate' | 'review';
|
|
1259
|
+
type RestrictionDecisionReason = 'manual_dispute' | 'operations_decision';
|
|
1258
1260
|
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
1259
1261
|
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
1260
1262
|
}
|
|
@@ -1296,6 +1298,18 @@ declare namespace io.flow.restrictions.v0.models {
|
|
|
1296
1298
|
readonly reasons: string[];
|
|
1297
1299
|
readonly review_status: io.flow.restrictions.v0.enums.RestrictedReviewStatus;
|
|
1298
1300
|
}
|
|
1301
|
+
|
|
1302
|
+
interface RestrictionDecisionsForm {
|
|
1303
|
+
readonly organization_id: string;
|
|
1304
|
+
readonly rule_decisions: io.flow.restrictions.v0.models.RestrictionRuleDecisionForm[];
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
interface RestrictionRuleDecisionForm {
|
|
1308
|
+
readonly product_id: string;
|
|
1309
|
+
readonly reason_code: string;
|
|
1310
|
+
readonly decision: io.flow.restrictions.v0.enums.RestrictionDecision;
|
|
1311
|
+
readonly decision_reason: io.flow.restrictions.v0.enums.RestrictionDecisionReason;
|
|
1312
|
+
}
|
|
1299
1313
|
}
|
|
1300
1314
|
|
|
1301
1315
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
@@ -5513,6 +5527,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
5513
5527
|
readonly id?: string;
|
|
5514
5528
|
readonly ratecard: io.flow.label.v0.models.ShippingLabelRatecardSummary;
|
|
5515
5529
|
readonly weight_break?: number;
|
|
5530
|
+
readonly dim_factor?: number;
|
|
5516
5531
|
}
|
|
5517
5532
|
|
|
5518
5533
|
interface ShippingLabelPackage {
|
|
@@ -7010,6 +7025,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7010
7025
|
readonly id: string;
|
|
7011
7026
|
}
|
|
7012
7027
|
|
|
7028
|
+
interface OrderSettings {
|
|
7029
|
+
readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
7030
|
+
}
|
|
7031
|
+
|
|
7013
7032
|
interface OrderTaxAndDutyInclusivitySetting {
|
|
7014
7033
|
readonly id: string;
|
|
7015
7034
|
readonly organization_id: string;
|
|
@@ -7041,12 +7060,6 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7041
7060
|
readonly destination: string;
|
|
7042
7061
|
}
|
|
7043
7062
|
|
|
7044
|
-
interface ShopifyAdaptivePricingCoefficients {
|
|
7045
|
-
readonly id: string;
|
|
7046
|
-
readonly organization_id: string;
|
|
7047
|
-
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
7048
|
-
}
|
|
7049
|
-
|
|
7050
7063
|
interface ShopifyHs10Code {
|
|
7051
7064
|
readonly country_code?: string;
|
|
7052
7065
|
readonly code: string;
|
|
@@ -7167,6 +7180,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7167
7180
|
interface ShopifyMerchantMarketCountry {
|
|
7168
7181
|
readonly code: string;
|
|
7169
7182
|
readonly actively_managing: boolean;
|
|
7183
|
+
readonly enabled: boolean;
|
|
7170
7184
|
}
|
|
7171
7185
|
|
|
7172
7186
|
interface ShopifyMerchantMarkets {
|
|
@@ -7294,6 +7308,42 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
7294
7308
|
readonly voids_b2b_invoice?: boolean;
|
|
7295
7309
|
}
|
|
7296
7310
|
|
|
7311
|
+
interface B2BCreditNote {
|
|
7312
|
+
readonly id: string;
|
|
7313
|
+
readonly number: string;
|
|
7314
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
7315
|
+
readonly date: string;
|
|
7316
|
+
readonly key: string;
|
|
7317
|
+
readonly debit_note: io.flow.consumer.invoice.v0.models.B2BDebitNoteReference;
|
|
7318
|
+
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
7319
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
7320
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
7321
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
7322
|
+
readonly attributes: Record<string, string>;
|
|
7323
|
+
readonly voids_b2b_debit_note?: boolean;
|
|
7324
|
+
}
|
|
7325
|
+
|
|
7326
|
+
interface B2BDebitNote {
|
|
7327
|
+
readonly id: string;
|
|
7328
|
+
readonly number: string;
|
|
7329
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7330
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7331
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
7332
|
+
readonly date: string;
|
|
7333
|
+
readonly key: string;
|
|
7334
|
+
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
7335
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
7336
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
7337
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
7338
|
+
readonly attributes: Record<string, string>;
|
|
7339
|
+
}
|
|
7340
|
+
|
|
7341
|
+
interface B2BDebitNoteReference {
|
|
7342
|
+
readonly id: string;
|
|
7343
|
+
readonly key: string;
|
|
7344
|
+
readonly number: string;
|
|
7345
|
+
}
|
|
7346
|
+
|
|
7297
7347
|
interface B2BInvoice {
|
|
7298
7348
|
readonly id: string;
|
|
7299
7349
|
readonly number: string;
|
|
@@ -8419,6 +8469,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8419
8469
|
}
|
|
8420
8470
|
|
|
8421
8471
|
interface GraphqlTaxonomyCategory {
|
|
8472
|
+
readonly id?: string;
|
|
8422
8473
|
readonly name: string;
|
|
8423
8474
|
readonly fullName: string;
|
|
8424
8475
|
}
|
|
@@ -8540,7 +8591,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8540
8591
|
readonly created_at: string;
|
|
8541
8592
|
readonly updated_at: string;
|
|
8542
8593
|
readonly has_variants_that_requires_components?: boolean;
|
|
8543
|
-
readonly category?: io.flow.
|
|
8594
|
+
readonly category?: io.flow.shopify.external.v0.models.RestTaxonomyCategory;
|
|
8544
8595
|
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
8545
8596
|
}
|
|
8546
8597
|
|
|
@@ -8680,6 +8731,12 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
8680
8731
|
readonly variant: io.flow.shopify.external.v0.models.ProductVariant;
|
|
8681
8732
|
}
|
|
8682
8733
|
|
|
8734
|
+
interface RestTaxonomyCategory {
|
|
8735
|
+
readonly name: string;
|
|
8736
|
+
readonly full_name: string;
|
|
8737
|
+
readonly admin_graphql_api_id?: string;
|
|
8738
|
+
}
|
|
8739
|
+
|
|
8683
8740
|
interface Shop {
|
|
8684
8741
|
readonly id: number;
|
|
8685
8742
|
readonly domain: string;
|
|
@@ -9576,8 +9633,8 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9576
9633
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
9577
9634
|
}
|
|
9578
9635
|
|
|
9579
|
-
interface
|
|
9580
|
-
readonly
|
|
9636
|
+
interface ShopifyAdaptivePricingDestination {
|
|
9637
|
+
readonly country_code: string;
|
|
9581
9638
|
readonly updated_at: string;
|
|
9582
9639
|
readonly tax_and_duty_coefficient: string;
|
|
9583
9640
|
readonly fees_coefficient: string;
|
|
@@ -9587,6 +9644,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9587
9644
|
readonly adaptive_shipping_enabled: boolean;
|
|
9588
9645
|
}
|
|
9589
9646
|
|
|
9647
|
+
interface ShopifyAdaptivePricingDestinationsWrapper {
|
|
9648
|
+
readonly destinations: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestination[];
|
|
9649
|
+
}
|
|
9650
|
+
|
|
9590
9651
|
interface ShopifyAppliedDiscount {
|
|
9591
9652
|
readonly title?: string;
|
|
9592
9653
|
readonly description?: string;
|
|
@@ -10280,6 +10341,7 @@ declare namespace io.flow.channel.shopify.internal.v0.models {
|
|
|
10280
10341
|
}
|
|
10281
10342
|
|
|
10282
10343
|
declare namespace io.flow.order.price.v0.enums {
|
|
10344
|
+
type OrderPriceCoefficientType = 'item_shipping';
|
|
10283
10345
|
type OrderPriceDetailComponentKey =
|
|
10284
10346
|
| 'adjustment'
|
|
10285
10347
|
| 'vat_deminimis'
|
|
@@ -10329,9 +10391,16 @@ declare namespace io.flow.order.price.v0.enums {
|
|
|
10329
10391
|
| 'tax_and_duties'
|
|
10330
10392
|
| 'product'
|
|
10331
10393
|
| 'mor_tax';
|
|
10394
|
+
type OrderPriceSubsidyType = 'shipping_subsidy';
|
|
10332
10395
|
}
|
|
10333
10396
|
|
|
10334
10397
|
declare namespace io.flow.order.price.v0.models {
|
|
10398
|
+
interface OrderPriceCoefficient {
|
|
10399
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceCoefficientType;
|
|
10400
|
+
readonly value: number;
|
|
10401
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
10402
|
+
}
|
|
10403
|
+
|
|
10335
10404
|
interface OrderPriceDetail {
|
|
10336
10405
|
readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
|
|
10337
10406
|
readonly currency: string;
|
|
@@ -10366,10 +10435,17 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
10366
10435
|
readonly type: io.flow.order.price.v0.enums.OrderPriceFeeType;
|
|
10367
10436
|
}
|
|
10368
10437
|
|
|
10438
|
+
interface OrderPriceSubsidy {
|
|
10439
|
+
readonly type: io.flow.order.price.v0.enums.OrderPriceSubsidyType;
|
|
10440
|
+
readonly price: io.flow.common.v0.models.PriceWithBase;
|
|
10441
|
+
}
|
|
10442
|
+
|
|
10369
10443
|
interface PurchasePriceBreakdown {
|
|
10370
10444
|
readonly total_price: io.flow.common.v0.models.PriceWithBase;
|
|
10371
10445
|
readonly product_price: io.flow.common.v0.models.PriceWithBase;
|
|
10372
10446
|
readonly fees: io.flow.order.price.v0.models.OrderPriceFee[];
|
|
10447
|
+
readonly coefficients?: io.flow.order.price.v0.models.OrderPriceCoefficient[];
|
|
10448
|
+
readonly subsidies?: io.flow.order.price.v0.models.OrderPriceSubsidy[];
|
|
10373
10449
|
}
|
|
10374
10450
|
}
|
|
10375
10451
|
|
|
@@ -10468,7 +10544,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10468
10544
|
readonly order_updated_at?: string;
|
|
10469
10545
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
10470
10546
|
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
10471
|
-
readonly external_order_summary?: io.flow.channel.
|
|
10547
|
+
readonly external_order_summary?: io.flow.channel.internal.v0.models.ExternalOrderSummary;
|
|
10472
10548
|
}
|
|
10473
10549
|
|
|
10474
10550
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -10531,6 +10607,12 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
10531
10607
|
readonly catalog_products_count?: number;
|
|
10532
10608
|
}
|
|
10533
10609
|
|
|
10610
|
+
interface ExternalOrderSummary {
|
|
10611
|
+
readonly id: string;
|
|
10612
|
+
readonly edit_ids: string[];
|
|
10613
|
+
readonly created_at?: string;
|
|
10614
|
+
}
|
|
10615
|
+
|
|
10534
10616
|
interface FlowChannelOrganization {
|
|
10535
10617
|
readonly placeholder?: string;
|
|
10536
10618
|
}
|
|
@@ -11062,6 +11144,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
11062
11144
|
readonly created_at?: string;
|
|
11063
11145
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
11064
11146
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
11147
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
11065
11148
|
}
|
|
11066
11149
|
|
|
11067
11150
|
interface OrganizationDefaults {
|
|
@@ -11075,6 +11158,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
11075
11158
|
interface OrganizationReference {
|
|
11076
11159
|
readonly discriminator: 'organization_reference';
|
|
11077
11160
|
readonly id: string;
|
|
11161
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
11078
11162
|
}
|
|
11079
11163
|
|
|
11080
11164
|
interface OrganizationSummary {
|
|
@@ -11266,22 +11350,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11266
11350
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
11267
11351
|
}
|
|
11268
11352
|
|
|
11269
|
-
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
11270
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
11271
|
-
readonly event_id: string;
|
|
11272
|
-
readonly timestamp: string;
|
|
11273
|
-
readonly organization: string;
|
|
11274
|
-
readonly id: string;
|
|
11275
|
-
}
|
|
11276
|
-
|
|
11277
|
-
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
11278
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
11279
|
-
readonly event_id: string;
|
|
11280
|
-
readonly timestamp: string;
|
|
11281
|
-
readonly organization: string;
|
|
11282
|
-
readonly shopify_adaptive_pricing_coefficients: io.flow.shopify.markets.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
11283
|
-
}
|
|
11284
|
-
|
|
11285
11353
|
interface ShopifyIncotermIncludes {
|
|
11286
11354
|
readonly duties: boolean;
|
|
11287
11355
|
readonly taxes: boolean;
|
|
@@ -11551,8 +11619,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
11551
11619
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted
|
|
11552
11620
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted
|
|
11553
11621
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted
|
|
11554
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsUpserted
|
|
11555
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyAdaptivePricingCoefficientsDeleted
|
|
11556
11622
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted
|
|
11557
11623
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted;
|
|
11558
11624
|
}
|
|
@@ -11623,7 +11689,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
11623
11689
|
type OrganizationPaymentMethodTag = 'deny';
|
|
11624
11690
|
type PaymentMethodRuleContentKey = 'description';
|
|
11625
11691
|
type PriceFacetBoundary = 'min' | 'max';
|
|
11626
|
-
type PricingType = 'inclusive_pricing';
|
|
11692
|
+
type PricingType = 'inclusive_pricing' | 'inclusive_pricing_with_shipping';
|
|
11627
11693
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
11628
11694
|
type TaxAndDutyInclusivitySetting =
|
|
11629
11695
|
| 'duty_exclusive_tax_exclusive'
|
|
@@ -12941,6 +13007,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12941
13007
|
interface LaneSummary {
|
|
12942
13008
|
readonly id: string;
|
|
12943
13009
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
13010
|
+
readonly dim_factor: number;
|
|
12944
13011
|
}
|
|
12945
13012
|
|
|
12946
13013
|
interface LargePackageServiceFee {
|
|
@@ -13016,6 +13083,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13016
13083
|
readonly glbe_shipping_method_id?: string;
|
|
13017
13084
|
readonly glbe_proposition_name?: string;
|
|
13018
13085
|
readonly channel_revenue_share_percentage?: number;
|
|
13086
|
+
readonly channel_id?: string;
|
|
13019
13087
|
}
|
|
13020
13088
|
|
|
13021
13089
|
interface RatecardCarrierSummary {
|
|
@@ -13118,6 +13186,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13118
13186
|
readonly glbe_shipping_method_id?: string;
|
|
13119
13187
|
readonly glbe_proposition_name?: string;
|
|
13120
13188
|
readonly channel_revenue_share_percentage?: number;
|
|
13189
|
+
readonly channel_id?: string;
|
|
13121
13190
|
readonly data?: io.flow.ratecard.v0.models.RatecardData;
|
|
13122
13191
|
}
|
|
13123
13192
|
|
|
@@ -13153,20 +13222,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13153
13222
|
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13154
13223
|
}
|
|
13155
13224
|
|
|
13156
|
-
interface RatecardLaneImportForm {
|
|
13157
|
-
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
13158
|
-
readonly service: string;
|
|
13159
|
-
readonly currency: string;
|
|
13160
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
13161
|
-
readonly origin: io.flow.common.v0.models.Zone;
|
|
13162
|
-
readonly destination: io.flow.common.v0.models.Zone;
|
|
13163
|
-
readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
|
|
13164
|
-
readonly dim_factor: number;
|
|
13165
|
-
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13166
|
-
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13167
|
-
readonly rates: io.flow.ratecard.v0.models.RatecardRateForm[];
|
|
13168
|
-
}
|
|
13169
|
-
|
|
13170
13225
|
interface RatecardLaneVersion {
|
|
13171
13226
|
readonly id: string;
|
|
13172
13227
|
readonly timestamp: string;
|
|
@@ -13174,14 +13229,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13174
13229
|
readonly ratecard_lane: io.flow.ratecard.v0.models.RatecardLane;
|
|
13175
13230
|
}
|
|
13176
13231
|
|
|
13177
|
-
interface RatecardLanesImportRequestData {
|
|
13178
|
-
readonly id: string;
|
|
13179
|
-
readonly source_url: string;
|
|
13180
|
-
readonly filename?: string;
|
|
13181
|
-
}
|
|
13182
|
-
|
|
13183
13232
|
interface RatecardRate {
|
|
13184
|
-
readonly id: string;
|
|
13185
13233
|
readonly amount: number;
|
|
13186
13234
|
readonly weight: number;
|
|
13187
13235
|
}
|
|
@@ -13191,13 +13239,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13191
13239
|
readonly weight: number;
|
|
13192
13240
|
}
|
|
13193
13241
|
|
|
13194
|
-
interface RatecardRateVersion {
|
|
13195
|
-
readonly id: string;
|
|
13196
|
-
readonly timestamp: string;
|
|
13197
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
13198
|
-
readonly ratecard_rate: io.flow.ratecard.v0.models.RatecardRate;
|
|
13199
|
-
}
|
|
13200
|
-
|
|
13201
13242
|
interface RatecardReference {
|
|
13202
13243
|
readonly id: string;
|
|
13203
13244
|
}
|
|
@@ -13609,35 +13650,6 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
13609
13650
|
}
|
|
13610
13651
|
}
|
|
13611
13652
|
|
|
13612
|
-
declare namespace io.flow.channel.shopify.v0.enums {
|
|
13613
|
-
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
13614
|
-
}
|
|
13615
|
-
|
|
13616
|
-
declare namespace io.flow.channel.shopify.v0.models {
|
|
13617
|
-
interface ChannelShopifyOrderState {
|
|
13618
|
-
readonly id: string;
|
|
13619
|
-
readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
13620
|
-
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
13621
|
-
readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
13622
|
-
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
13623
|
-
}
|
|
13624
|
-
|
|
13625
|
-
interface ChannelShopifyOrderStateReason {
|
|
13626
|
-
readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
13627
|
-
readonly message: string;
|
|
13628
|
-
}
|
|
13629
|
-
|
|
13630
|
-
interface ChannelShopifyOrderSummary {
|
|
13631
|
-
readonly order_id: number;
|
|
13632
|
-
readonly shop_id: number;
|
|
13633
|
-
}
|
|
13634
|
-
|
|
13635
|
-
interface ExternalOrderSummary {
|
|
13636
|
-
readonly id: string;
|
|
13637
|
-
readonly edit_ids: string[];
|
|
13638
|
-
}
|
|
13639
|
-
}
|
|
13640
|
-
|
|
13641
13653
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
13642
13654
|
interface Company {
|
|
13643
13655
|
readonly discriminator: 'company';
|
|
@@ -14122,6 +14134,7 @@ declare namespace io.flow.product.v0.models {
|
|
|
14122
14134
|
interface ProductTaxonomyCategory {
|
|
14123
14135
|
readonly name: string;
|
|
14124
14136
|
readonly full_name: string;
|
|
14137
|
+
readonly id?: string;
|
|
14125
14138
|
}
|
|
14126
14139
|
|
|
14127
14140
|
interface ProductTaxonomyData {
|
|
@@ -14654,6 +14667,19 @@ declare namespace io.flow.catalog.v0.enums {
|
|
|
14654
14667
|
| 'max_days_to_ship'
|
|
14655
14668
|
| 'commercial_invoice_item_number'
|
|
14656
14669
|
| 'include_in_product_feeds';
|
|
14670
|
+
type CpscAttribute =
|
|
14671
|
+
| 'certification_id'
|
|
14672
|
+
| 'citation_codes'
|
|
14673
|
+
| 'manufactured_date'
|
|
14674
|
+
| 'manufactured_location'
|
|
14675
|
+
| 'product_test_date'
|
|
14676
|
+
| 'test_lab_name'
|
|
14677
|
+
| 'point_of_contact'
|
|
14678
|
+
| 'certification_version'
|
|
14679
|
+
| 'certification_product_id'
|
|
14680
|
+
| 'certificate_type'
|
|
14681
|
+
| 'lab_type'
|
|
14682
|
+
| 'taxonomy_reference';
|
|
14657
14683
|
type FulfillmentMethodType = 'fulfillment_method';
|
|
14658
14684
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
14659
14685
|
type ImageTag = 'thumbnail' | 'checkout';
|
|
@@ -15363,7 +15389,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15363
15389
|
| 'unfulfilled_amount_greater_than_negative_balance'
|
|
15364
15390
|
| 'account_payment_hold';
|
|
15365
15391
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
15366
|
-
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
15392
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
15367
15393
|
type TaxDutyTransactionReasonCode =
|
|
15368
15394
|
| 'post_capture'
|
|
15369
15395
|
| 'post_fulfilment'
|
|
@@ -15374,6 +15400,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15374
15400
|
| 'us_inbound_tax_refund'
|
|
15375
15401
|
| 'order_cancellation_above_de_min'
|
|
15376
15402
|
| 'wyol_shipment_above_de_min'
|
|
15403
|
+
| 'wyol_shipment_lvg'
|
|
15377
15404
|
| 'full_refund_without_shipment'
|
|
15378
15405
|
| 'unfulfilled_order_above_de_min'
|
|
15379
15406
|
| 'order_cancellation_without_capture';
|
|
@@ -15414,7 +15441,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15414
15441
|
| 'b2b_tax_refund'
|
|
15415
15442
|
| 'b2b_fee_mor_tax'
|
|
15416
15443
|
| 'b2b_fee_shipping_tax'
|
|
15417
|
-
| 'flat_rate_label'
|
|
15444
|
+
| 'flat_rate_label'
|
|
15445
|
+
| 'flat_rate_label_subsidy';
|
|
15418
15446
|
type TrueupSource =
|
|
15419
15447
|
| 'flow'
|
|
15420
15448
|
| 'channel'
|
|
@@ -15521,6 +15549,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15521
15549
|
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
15522
15550
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
15523
15551
|
readonly created_at: string;
|
|
15552
|
+
readonly period?: io.flow.common.v0.models.DatetimeRange;
|
|
15524
15553
|
}
|
|
15525
15554
|
|
|
15526
15555
|
interface ChannelTransaction {
|
|
@@ -15624,6 +15653,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15624
15653
|
readonly reason: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
15625
15654
|
}
|
|
15626
15655
|
|
|
15656
|
+
interface PayoutStatusPaid {
|
|
15657
|
+
readonly code: 'paid';
|
|
15658
|
+
readonly timestamp: string;
|
|
15659
|
+
}
|
|
15660
|
+
|
|
15627
15661
|
interface PayoutStatusScheduled {
|
|
15628
15662
|
readonly code: 'scheduled';
|
|
15629
15663
|
readonly placeholder?: string;
|
|
@@ -15681,6 +15715,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15681
15715
|
readonly settlement: io.flow.billing.v0.unions.Settlement;
|
|
15682
15716
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
15683
15717
|
readonly created_at: string;
|
|
15718
|
+
readonly period?: io.flow.common.v0.models.DatetimeRange;
|
|
15684
15719
|
}
|
|
15685
15720
|
|
|
15686
15721
|
interface StatementStatusForm {
|
|
@@ -15794,6 +15829,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15794
15829
|
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
15795
15830
|
readonly carrier: io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
15796
15831
|
readonly revenue_share_percentage?: number;
|
|
15832
|
+
readonly actual?: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
15797
15833
|
}
|
|
15798
15834
|
|
|
15799
15835
|
interface TransactionMetadataShippingLabelCarrier {
|
|
@@ -15926,7 +15962,8 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
15926
15962
|
type PayoutStatus =
|
|
15927
15963
|
| io.flow.billing.v0.models.PayoutStatusScheduled
|
|
15928
15964
|
| io.flow.billing.v0.models.PayoutStatusSent
|
|
15929
|
-
| io.flow.billing.v0.models.PayoutStatusFailed
|
|
15965
|
+
| io.flow.billing.v0.models.PayoutStatusFailed
|
|
15966
|
+
| io.flow.billing.v0.models.PayoutStatusPaid;
|
|
15930
15967
|
type Settlement =
|
|
15931
15968
|
| io.flow.billing.v0.models.SettlementNoPayout
|
|
15932
15969
|
| io.flow.billing.v0.models.SettlementPayout;
|
|
@@ -16486,6 +16523,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
16486
16523
|
readonly price: io.flow.common.v0.models.Money;
|
|
16487
16524
|
readonly description: string;
|
|
16488
16525
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16526
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16489
16527
|
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
16490
16528
|
readonly catalog_size?: number;
|
|
16491
16529
|
readonly relative_ranking?: number;
|
|
@@ -16666,6 +16704,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
16666
16704
|
readonly province?: string;
|
|
16667
16705
|
readonly self_billing_agreement_effective_at: string;
|
|
16668
16706
|
readonly self_billing_agreement_expires_at?: string;
|
|
16707
|
+
readonly legal_name?: string;
|
|
16669
16708
|
}
|
|
16670
16709
|
|
|
16671
16710
|
interface OrganizationVersion {
|
|
@@ -16695,6 +16734,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
16695
16734
|
readonly country: string;
|
|
16696
16735
|
readonly tax_code: string;
|
|
16697
16736
|
readonly province?: string;
|
|
16737
|
+
readonly legal_name?: string;
|
|
16698
16738
|
}
|
|
16699
16739
|
}
|
|
16700
16740
|
|
|
@@ -16725,14 +16765,10 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
16725
16765
|
|
|
16726
16766
|
interface BankAccountInfoKor {
|
|
16727
16767
|
readonly discriminator: 'kor';
|
|
16728
|
-
readonly name
|
|
16729
|
-
readonly address?: io.flow.common.v0.models.Address;
|
|
16730
|
-
readonly phone?: string;
|
|
16731
|
-
readonly email?: string;
|
|
16768
|
+
readonly name: string;
|
|
16732
16769
|
readonly bank_account_number: string;
|
|
16733
|
-
readonly bank_routing_number
|
|
16734
|
-
readonly bank_name
|
|
16735
|
-
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
16770
|
+
readonly bank_routing_number: string;
|
|
16771
|
+
readonly bank_name: string;
|
|
16736
16772
|
}
|
|
16737
16773
|
|
|
16738
16774
|
interface BankAccountInfoKorV2 {
|
|
@@ -16775,6 +16811,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16775
16811
|
| 'hosted_payment_page'
|
|
16776
16812
|
| 'checkout_payments_api'
|
|
16777
16813
|
| 'classic_authorise_api';
|
|
16814
|
+
type AiReviewConsumer = 'restrictions' | 'sellability' | 'harmonization';
|
|
16815
|
+
type AiReviewFailureReason =
|
|
16816
|
+
| 'item_errored'
|
|
16817
|
+
| 'item_expired'
|
|
16818
|
+
| 'item_unparseable'
|
|
16819
|
+
| 'item_image_fetch_failed'
|
|
16820
|
+
| 'item_undecided'
|
|
16821
|
+
| 'batch_failed'
|
|
16822
|
+
| 'batch_timed_out';
|
|
16823
|
+
type AiReviewType = 'pv_review_general' | 'pv_review_dg_hazmat' | 'pc_review';
|
|
16778
16824
|
type AmruthaItemType = 'physical' | 'digital';
|
|
16779
16825
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
16780
16826
|
type ApiCallReferenceId =
|
|
@@ -16798,7 +16844,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16798
16844
|
| 'prr-76544617791b4ce8af96b3a7879474c6'
|
|
16799
16845
|
| 'prr-566cc67167944bc4bd08167aa9c0beba'
|
|
16800
16846
|
| 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
16801
|
-
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
16847
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order' | 'settings';
|
|
16802
16848
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
16803
16849
|
type B2BTaxLedgerDocumentType =
|
|
16804
16850
|
| 'b2b_invoice'
|
|
@@ -16810,7 +16856,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16810
16856
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
16811
16857
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
16812
16858
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16813
|
-
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
16859
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
16814
16860
|
type BillingAllocationKey =
|
|
16815
16861
|
| 'freight_cost'
|
|
16816
16862
|
| 'adjustment'
|
|
@@ -17083,7 +17129,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17083
17129
|
| 'b2b_tax_refund'
|
|
17084
17130
|
| 'b2b_fee_mor_tax'
|
|
17085
17131
|
| 'b2b_fee_shipping_tax'
|
|
17086
|
-
| 'flat_rate_label'
|
|
17132
|
+
| 'flat_rate_label'
|
|
17133
|
+
| 'flat_rate_label_subsidy';
|
|
17087
17134
|
type BojanaItemType = 'physical' | 'digital';
|
|
17088
17135
|
type CalculatorEngine =
|
|
17089
17136
|
| 'dtce_with_deminimis'
|
|
@@ -17211,7 +17258,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17211
17258
|
| 'Flow'
|
|
17212
17259
|
| 'FlowOnboarding'
|
|
17213
17260
|
| 'Borderfree';
|
|
17214
|
-
type ClassificationScope = 'Item' | 'Product';
|
|
17261
|
+
type ClassificationScope = 'Item' | 'Product' | 'Bucket';
|
|
17215
17262
|
type ClassificationSource = 'sellability';
|
|
17216
17263
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
17217
17264
|
type ClothingAgeClassification =
|
|
@@ -17231,6 +17278,25 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17231
17278
|
| 'ManagedMarketsChargeCredit'
|
|
17232
17279
|
| 'ManagedMarketsDisputeWonAmountCredit'
|
|
17233
17280
|
| 'ManagedMarketsDutiesAndTaxesAdjustmentCredit';
|
|
17281
|
+
type CpscCertificateType = 'GCC' | 'CPC';
|
|
17282
|
+
type CpscFileType = 'GeRegistered' | 'PreRegistered';
|
|
17283
|
+
type CpscLabType = 'ITL' | 'LAB' | 'NOL';
|
|
17284
|
+
type CpscLotNumberAssignedBy = 'Seller' | 'Manufacturer';
|
|
17285
|
+
type CpscPointOfContactType =
|
|
17286
|
+
| 'Importer'
|
|
17287
|
+
| 'Manufacturer'
|
|
17288
|
+
| 'Laboratory'
|
|
17289
|
+
| 'Broker'
|
|
17290
|
+
| 'Other';
|
|
17291
|
+
type CpscPrimaryProductIdType =
|
|
17292
|
+
| 'GTIN'
|
|
17293
|
+
| 'UPC'
|
|
17294
|
+
| 'SKU'
|
|
17295
|
+
| 'Model Number'
|
|
17296
|
+
| 'Serial Number'
|
|
17297
|
+
| 'Registered Number'
|
|
17298
|
+
| 'Alternate Identifier';
|
|
17299
|
+
type CpscYesNo = 'Y' | 'N';
|
|
17234
17300
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
17235
17301
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
17236
17302
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -17282,8 +17348,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17282
17348
|
type ErpFileType = 'vendor';
|
|
17283
17349
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
17284
17350
|
type EventType =
|
|
17285
|
-
| 'adaptive_shipping_rate_upserted'
|
|
17286
|
-
| 'adaptive_shipping_rate_deleted'
|
|
17287
17351
|
| 'adyen_authorization_deleted'
|
|
17288
17352
|
| 'adyen_authorization_upserted'
|
|
17289
17353
|
| 'adyen_cancel_deleted'
|
|
@@ -17294,6 +17358,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17294
17358
|
| 'adyen_refund_upserted'
|
|
17295
17359
|
| 'adyen_dispute_upserted'
|
|
17296
17360
|
| 'adyen_dispute_deleted'
|
|
17361
|
+
| 'ai_review_batch_submitted'
|
|
17362
|
+
| 'ai_review_result_upserted'
|
|
17363
|
+
| 'ai_review_result_deleted'
|
|
17364
|
+
| 'ai_review_request_failed'
|
|
17297
17365
|
| 'fulfillment_upserted'
|
|
17298
17366
|
| 'fulfillment_deleted'
|
|
17299
17367
|
| 'merchant_upserted'
|
|
@@ -17348,6 +17416,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17348
17416
|
| 'revenue_record_deleted'
|
|
17349
17417
|
| 'other_record_upserted'
|
|
17350
17418
|
| 'other_record_deleted'
|
|
17419
|
+
| 'sales_payment_record_upserted'
|
|
17420
|
+
| 'sales_payment_record_deleted'
|
|
17351
17421
|
| 'calculator_organization_settings_upserted'
|
|
17352
17422
|
| 'calculator_organization_settings_deleted'
|
|
17353
17423
|
| 'carrier_account_upserted_v2'
|
|
@@ -17429,6 +17499,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17429
17499
|
| 'mor_cost_deleted'
|
|
17430
17500
|
| 'flat_rate_label_reversal_upserted'
|
|
17431
17501
|
| 'flat_rate_label_reversal_deleted'
|
|
17502
|
+
| 'flat_rate_label_subsidy_upserted'
|
|
17503
|
+
| 'flat_rate_label_subsidy_deleted'
|
|
17432
17504
|
| 'fraud_review_upserted'
|
|
17433
17505
|
| 'fraud_review_deleted'
|
|
17434
17506
|
| 'fraud_pending_review_upserted'
|
|
@@ -17454,6 +17526,16 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17454
17526
|
| 'fulfillment_fallbacks_deleted'
|
|
17455
17527
|
| 'quote_upserted'
|
|
17456
17528
|
| 'quote_deleted'
|
|
17529
|
+
| 'guaranteed_shipping_calibrated_output_upserted'
|
|
17530
|
+
| 'guaranteed_shipping_calibrated_output_deleted'
|
|
17531
|
+
| 'outbound_shipping_cost_upserted'
|
|
17532
|
+
| 'outbound_shipping_cost_deleted'
|
|
17533
|
+
| 'guaranteed_shipping_published_output_upserted'
|
|
17534
|
+
| 'guaranteed_shipping_published_output_deleted'
|
|
17535
|
+
| 'guaranteed_shipping_settings_upserted'
|
|
17536
|
+
| 'guaranteed_shipping_settings_deleted'
|
|
17537
|
+
| 'guaranteed_shipping_settings_update_upserted'
|
|
17538
|
+
| 'guaranteed_shipping_settings_update_deleted'
|
|
17457
17539
|
| 'all_items_export'
|
|
17458
17540
|
| 'harmonized_items_hs6_export'
|
|
17459
17541
|
| 'unharmonized_items_export'
|
|
@@ -17476,6 +17558,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17476
17558
|
| 'merchant_override_upserted'
|
|
17477
17559
|
| 'merchant_override_deleted'
|
|
17478
17560
|
| 'harmonization_classification_statistics_published'
|
|
17561
|
+
| 'issuer_upserted'
|
|
17562
|
+
| 'issuer_deleted'
|
|
17479
17563
|
| 'item_form_import_request'
|
|
17480
17564
|
| 'label_request_error_upserted'
|
|
17481
17565
|
| 'label_request_error_deleted'
|
|
@@ -17558,7 +17642,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17558
17642
|
| 'order_rates_published_v3'
|
|
17559
17643
|
| 'ratecard_dimension_estimate_upserted'
|
|
17560
17644
|
| 'ratecard_dimension_estimate_deleted'
|
|
17561
|
-
| 'ratecard_lanes_import_request'
|
|
17562
17645
|
| 'ratecard_service_fee_upserted'
|
|
17563
17646
|
| 'ratecard_service_fee_deleted'
|
|
17564
17647
|
| 'ratecard_rate_level_upserted'
|
|
@@ -17587,6 +17670,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17587
17670
|
| 'taxonomy_category_hs6_ref_deleted'
|
|
17588
17671
|
| 'preonboarding_merchant_upserted'
|
|
17589
17672
|
| 'preonboarding_merchant_deleted'
|
|
17673
|
+
| 'unserviceable_taxonomy_category_upserted'
|
|
17674
|
+
| 'unserviceable_taxonomy_category_deleted'
|
|
17675
|
+
| 'sellability_pending_verification_upserted'
|
|
17676
|
+
| 'sellability_pending_verification_deleted'
|
|
17590
17677
|
| 'shopify_hs10_codes_upserted'
|
|
17591
17678
|
| 'shopify_hs10_codes_deleted'
|
|
17592
17679
|
| 'shopify_markets_order_upserted'
|
|
@@ -17620,8 +17707,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17620
17707
|
| 'shopify_order_transaction_deleted'
|
|
17621
17708
|
| 'shopify_test_order_upserted'
|
|
17622
17709
|
| 'shopify_test_order_deleted'
|
|
17623
|
-
| 'shopify_adaptive_pricing_coefficients_upserted'
|
|
17624
|
-
| 'shopify_adaptive_pricing_coefficients_deleted'
|
|
17625
17710
|
| 'shopify_merchant_markets_upserted'
|
|
17626
17711
|
| 'shopify_merchant_markets_deleted'
|
|
17627
17712
|
| 'shopify_product_create_upserted'
|
|
@@ -17670,6 +17755,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17670
17755
|
| 'bojana_item_deleted'
|
|
17671
17756
|
| 'raveena_item_upserted'
|
|
17672
17757
|
| 'raveena_item_deleted'
|
|
17758
|
+
| 'mahesh_item_upserted'
|
|
17759
|
+
| 'mahesh_item_deleted'
|
|
17673
17760
|
| 'tracking_processing_error_upserted'
|
|
17674
17761
|
| 'tracking_processing_error_deleted'
|
|
17675
17762
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -17699,7 +17786,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17699
17786
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
17700
17787
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
17701
17788
|
type FileType = 'pdf';
|
|
17702
|
-
type
|
|
17789
|
+
type FlatRateLabelGuaranteeStatus = 'active' | 'void';
|
|
17790
|
+
type FlatRateLabelTransactionType =
|
|
17791
|
+
| 'adjustment'
|
|
17792
|
+
| 'reversal'
|
|
17793
|
+
| 'fee'
|
|
17794
|
+
| 'subsidy';
|
|
17703
17795
|
type FraudProvider =
|
|
17704
17796
|
| 'flow'
|
|
17705
17797
|
| 'forter'
|
|
@@ -17754,7 +17846,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17754
17846
|
| 'classified'
|
|
17755
17847
|
| 'non_classifiable_not_enough_information'
|
|
17756
17848
|
| 'exempt'
|
|
17757
|
-
| 'manual_classification_required'
|
|
17849
|
+
| 'manual_classification_required'
|
|
17850
|
+
| 'unserviceable_taxonomy';
|
|
17758
17851
|
type ItemQuantityAction =
|
|
17759
17852
|
| 'fulfillment_ship'
|
|
17760
17853
|
| 'fulfillment_cancel'
|
|
@@ -17986,6 +18079,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17986
18079
|
| 'crypto';
|
|
17987
18080
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
17988
18081
|
type ProductStatus = 'active' | 'archived' | 'draft' | 'unlisted';
|
|
18082
|
+
type PvDecision = 'uphold' | 'remove';
|
|
17989
18083
|
type RateLevelKey =
|
|
17990
18084
|
| 'shopify_small_usa'
|
|
17991
18085
|
| 'shopify_medium_usa'
|
|
@@ -18001,6 +18095,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18001
18095
|
| 'risky_velocity'
|
|
18002
18096
|
| 'suspicious_behavior'
|
|
18003
18097
|
| 'suspicious_past_activity';
|
|
18098
|
+
type RemediateTaxDutyArm = 'non_lvg' | 'lvg_full_refund';
|
|
18004
18099
|
type ReportFileStatus = 'processing' | 'failed' | 'succeeded';
|
|
18005
18100
|
type ReportFileType = 'stripe_connect_report';
|
|
18006
18101
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
@@ -18021,6 +18116,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18021
18116
|
| 'scheduled_payment_citi'
|
|
18022
18117
|
| 'scheduled_payment_citi_krw'
|
|
18023
18118
|
| 'scheduled_payment_citi_krw_txt'
|
|
18119
|
+
| 'scheduled_payment_citi_uk_xml'
|
|
18024
18120
|
| 'account_quarterly_balances'
|
|
18025
18121
|
| 'invariants'
|
|
18026
18122
|
| 'payments'
|
|
@@ -18051,6 +18147,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18051
18147
|
| 'shopify-sandbox'
|
|
18052
18148
|
| 'enterprise-sandbox'
|
|
18053
18149
|
| 'enterprise-qa'
|
|
18150
|
+
| 'globale'
|
|
18151
|
+
| 'globale-sandbox'
|
|
18054
18152
|
| 'cafe24'
|
|
18055
18153
|
| 'cafe24-sandbox';
|
|
18056
18154
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
@@ -18058,6 +18156,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18058
18156
|
type RestrictionRuleCommunityExemption =
|
|
18059
18157
|
| 'domestic_exemption'
|
|
18060
18158
|
| 'intra_eu_exemption';
|
|
18159
|
+
type RestrictionRuleEvaluationMode =
|
|
18160
|
+
| 'all_screenings'
|
|
18161
|
+
| 'first_screening_only';
|
|
18061
18162
|
type RestrictionRuleExceptionAction = 'allow' | 'deny';
|
|
18062
18163
|
type RestrictionStateReviewStatus = 'reviewed' | 'in_review';
|
|
18063
18164
|
type RestrictionStatus =
|
|
@@ -18546,6 +18647,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18546
18647
|
readonly refund?: io.flow.payment.v0.models.RefundReference;
|
|
18547
18648
|
readonly tax_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
18548
18649
|
readonly duty_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
18650
|
+
readonly flat_rate_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
18651
|
+
readonly flat_rate_subsidy_reversal?: io.flow.internal.v0.models.TransactionReference;
|
|
18549
18652
|
}
|
|
18550
18653
|
|
|
18551
18654
|
interface ActionQuantity {
|
|
@@ -18553,21 +18656,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18553
18656
|
readonly quantity: number;
|
|
18554
18657
|
}
|
|
18555
18658
|
|
|
18556
|
-
interface AdaptivePricingDestinationUpdate {
|
|
18557
|
-
readonly country_code: string;
|
|
18558
|
-
readonly updated_at: string;
|
|
18559
|
-
readonly tax_and_duty_coefficient: number;
|
|
18560
|
-
readonly fees_coefficient: number;
|
|
18561
|
-
readonly merchant_subsidy_amount: number;
|
|
18562
|
-
readonly merchant_subsidy_currency: string;
|
|
18563
|
-
}
|
|
18564
|
-
|
|
18565
|
-
interface AdaptivePricingUpdate {
|
|
18566
|
-
readonly channel_id: string;
|
|
18567
|
-
readonly organization_id: string;
|
|
18568
|
-
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
18569
|
-
}
|
|
18570
|
-
|
|
18571
18659
|
interface AdaptiveShippingOrderGuarantee {
|
|
18572
18660
|
readonly id: string;
|
|
18573
18661
|
readonly organization_id: string;
|
|
@@ -18593,33 +18681,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18593
18681
|
readonly adaptive_shipping_order_guarantee: io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
18594
18682
|
}
|
|
18595
18683
|
|
|
18596
|
-
interface AdaptiveShippingRate {
|
|
18597
|
-
readonly id: string;
|
|
18598
|
-
readonly organization_id: string;
|
|
18599
|
-
readonly channel_id: string;
|
|
18600
|
-
readonly destination_country: string;
|
|
18601
|
-
readonly coefficient: number;
|
|
18602
|
-
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
18603
|
-
readonly effective_at: string;
|
|
18604
|
-
readonly effective_until?: string;
|
|
18605
|
-
}
|
|
18606
|
-
|
|
18607
|
-
interface AdaptiveShippingRateDeleted {
|
|
18608
|
-
readonly discriminator: 'adaptive_shipping_rate_deleted';
|
|
18609
|
-
readonly event_id: string;
|
|
18610
|
-
readonly timestamp: string;
|
|
18611
|
-
readonly organization: string;
|
|
18612
|
-
readonly id: string;
|
|
18613
|
-
}
|
|
18614
|
-
|
|
18615
|
-
interface AdaptiveShippingRateUpserted {
|
|
18616
|
-
readonly discriminator: 'adaptive_shipping_rate_upserted';
|
|
18617
|
-
readonly event_id: string;
|
|
18618
|
-
readonly timestamp: string;
|
|
18619
|
-
readonly organization: string;
|
|
18620
|
-
readonly adaptive_shipping_rate: io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
18621
|
-
}
|
|
18622
|
-
|
|
18623
18684
|
interface AdditionalImportTax {
|
|
18624
18685
|
readonly name?: string;
|
|
18625
18686
|
readonly additional_import_tax_value?: io.flow.common.v0.models.Money;
|
|
@@ -19054,6 +19115,55 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19054
19115
|
readonly placeholder?: boolean;
|
|
19055
19116
|
}
|
|
19056
19117
|
|
|
19118
|
+
interface AiReviewBatchSubmitted {
|
|
19119
|
+
readonly discriminator: 'ai_review_batch_submitted';
|
|
19120
|
+
readonly event_id: string;
|
|
19121
|
+
readonly timestamp: string;
|
|
19122
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
19123
|
+
readonly items: io.flow.internal.v0.models.ReviewRequestItem[];
|
|
19124
|
+
}
|
|
19125
|
+
|
|
19126
|
+
interface AiReviewFailedItem {
|
|
19127
|
+
readonly review_id: string;
|
|
19128
|
+
readonly organization_id: string;
|
|
19129
|
+
}
|
|
19130
|
+
|
|
19131
|
+
interface AiReviewRequestFailed {
|
|
19132
|
+
readonly discriminator: 'ai_review_request_failed';
|
|
19133
|
+
readonly event_id: string;
|
|
19134
|
+
readonly timestamp: string;
|
|
19135
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
19136
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
19137
|
+
readonly reason: io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
19138
|
+
readonly items: io.flow.internal.v0.models.AiReviewFailedItem[];
|
|
19139
|
+
}
|
|
19140
|
+
|
|
19141
|
+
interface AiReviewResult {
|
|
19142
|
+
readonly review_id: string;
|
|
19143
|
+
readonly organization_id: string;
|
|
19144
|
+
readonly consumer: io.flow.internal.v0.enums.AiReviewConsumer;
|
|
19145
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
19146
|
+
readonly ai_output: io.flow.internal.v0.unions.AiOutput;
|
|
19147
|
+
readonly ai_model: string;
|
|
19148
|
+
readonly prompt_id: string;
|
|
19149
|
+
readonly prompt_version: string;
|
|
19150
|
+
}
|
|
19151
|
+
|
|
19152
|
+
interface AiReviewResultDeleted {
|
|
19153
|
+
readonly discriminator: 'ai_review_result_deleted';
|
|
19154
|
+
readonly event_id: string;
|
|
19155
|
+
readonly timestamp: string;
|
|
19156
|
+
readonly id: string;
|
|
19157
|
+
readonly organization: string;
|
|
19158
|
+
}
|
|
19159
|
+
|
|
19160
|
+
interface AiReviewResultUpserted {
|
|
19161
|
+
readonly discriminator: 'ai_review_result_upserted';
|
|
19162
|
+
readonly event_id: string;
|
|
19163
|
+
readonly timestamp: string;
|
|
19164
|
+
readonly ai_review_result: io.flow.internal.v0.models.AiReviewResult;
|
|
19165
|
+
}
|
|
19166
|
+
|
|
19057
19167
|
interface AllItemsExport {
|
|
19058
19168
|
readonly discriminator: 'all_items_export';
|
|
19059
19169
|
readonly event_id: string;
|
|
@@ -19311,6 +19421,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19311
19421
|
readonly expected_delivery_by?: string;
|
|
19312
19422
|
readonly attributes?: Record<string, string>;
|
|
19313
19423
|
readonly total: io.flow.common.v0.models.Price;
|
|
19424
|
+
readonly created_at?: string;
|
|
19425
|
+
readonly failed_on?: string;
|
|
19314
19426
|
}
|
|
19315
19427
|
|
|
19316
19428
|
interface BankPaymentDeletedV2 {
|
|
@@ -19602,6 +19714,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19602
19714
|
readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
|
|
19603
19715
|
readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
|
|
19604
19716
|
readonly flat_rate_label: io.flow.common.v0.models.Price;
|
|
19717
|
+
readonly flat_rate_label_subsidy: io.flow.common.v0.models.Price;
|
|
19605
19718
|
}
|
|
19606
19719
|
|
|
19607
19720
|
interface BillingStatementUpserted {
|
|
@@ -20358,7 +20471,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20358
20471
|
readonly order_updated_at?: string;
|
|
20359
20472
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
20360
20473
|
readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
20361
|
-
readonly external_order_summary?: io.flow.
|
|
20474
|
+
readonly external_order_summary?: io.flow.internal.v0.models.ExternalOrderSummary;
|
|
20362
20475
|
}
|
|
20363
20476
|
|
|
20364
20477
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -21096,6 +21209,93 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21096
21209
|
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
21097
21210
|
}
|
|
21098
21211
|
|
|
21212
|
+
interface CpscProductRegistration {
|
|
21213
|
+
readonly product_update: boolean;
|
|
21214
|
+
readonly current_version_id?: string;
|
|
21215
|
+
readonly new_version_id: string;
|
|
21216
|
+
readonly primary_product_id: string;
|
|
21217
|
+
readonly primary_product_id_type: io.flow.internal.v0.enums.CpscPrimaryProductIdType;
|
|
21218
|
+
readonly gtin?: string;
|
|
21219
|
+
readonly upc?: string;
|
|
21220
|
+
readonly sku?: string;
|
|
21221
|
+
readonly model_number?: string;
|
|
21222
|
+
readonly serial_number?: string;
|
|
21223
|
+
readonly registered_number?: string;
|
|
21224
|
+
readonly alternate_identifier?: string;
|
|
21225
|
+
readonly certificate_type: io.flow.internal.v0.enums.CpscCertificateType;
|
|
21226
|
+
readonly product_name: string;
|
|
21227
|
+
readonly trade_brand_name?: string;
|
|
21228
|
+
readonly product_description?: string;
|
|
21229
|
+
readonly product_color?: string;
|
|
21230
|
+
readonly product_style?: string;
|
|
21231
|
+
readonly manufacturer_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
21232
|
+
readonly manufacturer_gln?: string;
|
|
21233
|
+
readonly manufacturer_alternate_id?: string;
|
|
21234
|
+
readonly manufacturer_name?: string;
|
|
21235
|
+
readonly small_batch_manufacturer_cpsc_id?: string;
|
|
21236
|
+
readonly manufacturer_address_line_1?: string;
|
|
21237
|
+
readonly manufacturer_address_line_2?: string;
|
|
21238
|
+
readonly manufacturer_apt_suite_number?: string;
|
|
21239
|
+
readonly manufacturer_city?: string;
|
|
21240
|
+
readonly manufacturer_state_province?: string;
|
|
21241
|
+
readonly manufacturer_country?: string;
|
|
21242
|
+
readonly manufacturer_zip_postal_code?: string;
|
|
21243
|
+
readonly manufacturer_phone?: string;
|
|
21244
|
+
readonly manufacturer_email?: string;
|
|
21245
|
+
readonly manufacture_date: string;
|
|
21246
|
+
readonly production_start_date?: string;
|
|
21247
|
+
readonly production_end_date?: string;
|
|
21248
|
+
readonly lot_number?: string;
|
|
21249
|
+
readonly lot_number_assigned_by?: io.flow.internal.v0.enums.CpscLotNumberAssignedBy;
|
|
21250
|
+
readonly lab_1_type: io.flow.internal.v0.enums.CpscLabType;
|
|
21251
|
+
readonly lab_1_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
21252
|
+
readonly lab_1_cpsc_id?: string;
|
|
21253
|
+
readonly lab_1_alternate_id?: string;
|
|
21254
|
+
readonly lab_1_gln?: string;
|
|
21255
|
+
readonly lab_1_name?: string;
|
|
21256
|
+
readonly lab_1_address_line_1?: string;
|
|
21257
|
+
readonly lab_1_address_line_2?: string;
|
|
21258
|
+
readonly lab_1_apt_suite_number?: string;
|
|
21259
|
+
readonly lab_1_city?: string;
|
|
21260
|
+
readonly lab_1_state_province?: string;
|
|
21261
|
+
readonly lab_1_country?: string;
|
|
21262
|
+
readonly lab_1_zip_postal_code?: string;
|
|
21263
|
+
readonly lab_1_phone?: string;
|
|
21264
|
+
readonly lab_1_email?: string;
|
|
21265
|
+
readonly lab_1_citation_codes: string;
|
|
21266
|
+
readonly lab_1_test_report_id?: string;
|
|
21267
|
+
readonly lab_1_test_url?: string;
|
|
21268
|
+
readonly lab_1_test_report_access_key?: string;
|
|
21269
|
+
readonly lab_1_is_component?: boolean;
|
|
21270
|
+
readonly lab_1_component_description?: string;
|
|
21271
|
+
readonly last_test_date?: string;
|
|
21272
|
+
readonly poc_for_test_records: io.flow.internal.v0.enums.CpscPointOfContactType;
|
|
21273
|
+
readonly poc_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
21274
|
+
readonly poc_alternate_id?: string;
|
|
21275
|
+
readonly poc_gln?: string;
|
|
21276
|
+
readonly poc_name?: string;
|
|
21277
|
+
readonly poc_address_line_1?: string;
|
|
21278
|
+
readonly poc_address_line_2?: string;
|
|
21279
|
+
readonly poc_apt_suite_number?: string;
|
|
21280
|
+
readonly poc_city?: string;
|
|
21281
|
+
readonly poc_state_province?: string;
|
|
21282
|
+
readonly poc_country?: string;
|
|
21283
|
+
readonly poc_zip_postal_code?: string;
|
|
21284
|
+
readonly poc_phone?: string;
|
|
21285
|
+
readonly poc_email?: string;
|
|
21286
|
+
}
|
|
21287
|
+
|
|
21288
|
+
interface CpscQueueEnvelope {
|
|
21289
|
+
readonly messageType: string[];
|
|
21290
|
+
readonly message: io.flow.internal.v0.models.CpscQueueMessage;
|
|
21291
|
+
}
|
|
21292
|
+
|
|
21293
|
+
interface CpscQueueMessage {
|
|
21294
|
+
readonly filePath: string;
|
|
21295
|
+
readonly merchantId: string;
|
|
21296
|
+
readonly fileType: io.flow.internal.v0.enums.CpscFileType;
|
|
21297
|
+
}
|
|
21298
|
+
|
|
21099
21299
|
interface CryptoAccount {
|
|
21100
21300
|
readonly discriminator: 'crypto_account';
|
|
21101
21301
|
readonly id: string;
|
|
@@ -21504,6 +21704,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21504
21704
|
readonly destination: io.flow.common.v0.models.Address;
|
|
21505
21705
|
}
|
|
21506
21706
|
|
|
21707
|
+
interface DgClassAssessment {
|
|
21708
|
+
readonly dg_class: string;
|
|
21709
|
+
readonly decision: io.flow.internal.v0.enums.PvDecision;
|
|
21710
|
+
readonly confidence: number;
|
|
21711
|
+
readonly reasoning: string;
|
|
21712
|
+
}
|
|
21713
|
+
|
|
21714
|
+
interface DgReviewContext {
|
|
21715
|
+
readonly discriminator: 'dg_review_context';
|
|
21716
|
+
readonly organization_id: string;
|
|
21717
|
+
readonly item_name: string;
|
|
21718
|
+
readonly item_description?: string;
|
|
21719
|
+
readonly image_url?: string;
|
|
21720
|
+
readonly hs_code?: string;
|
|
21721
|
+
readonly categories?: string;
|
|
21722
|
+
readonly price?: string;
|
|
21723
|
+
}
|
|
21724
|
+
|
|
21725
|
+
interface DgReviewOutput {
|
|
21726
|
+
readonly discriminator: 'dg_review_output';
|
|
21727
|
+
readonly assessments: io.flow.internal.v0.models.DgClassAssessment[];
|
|
21728
|
+
}
|
|
21729
|
+
|
|
21507
21730
|
interface Dhl {
|
|
21508
21731
|
readonly discriminator: 'dhl';
|
|
21509
21732
|
readonly export_account_number: string;
|
|
@@ -22238,6 +22461,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22238
22461
|
readonly fulfilled_via_replacement_order?: boolean;
|
|
22239
22462
|
}
|
|
22240
22463
|
|
|
22464
|
+
interface ExternalOrderSummary {
|
|
22465
|
+
readonly id: string;
|
|
22466
|
+
readonly edit_ids: string[];
|
|
22467
|
+
readonly created_at?: string;
|
|
22468
|
+
}
|
|
22469
|
+
|
|
22241
22470
|
interface ExternalRatecardLink {
|
|
22242
22471
|
readonly external_ratecard_id: string;
|
|
22243
22472
|
readonly flow_ratecard_ids: string[];
|
|
@@ -22396,6 +22625,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22396
22625
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
22397
22626
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
22398
22627
|
readonly sp?: io.flow.internal.v0.models.Fee;
|
|
22628
|
+
readonly revenue_share?: io.flow.internal.v0.models.Fee;
|
|
22399
22629
|
}
|
|
22400
22630
|
|
|
22401
22631
|
interface FinanceBankAccount {
|
|
@@ -22544,6 +22774,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22544
22774
|
readonly flat_rate_label_reversal: io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
22545
22775
|
}
|
|
22546
22776
|
|
|
22777
|
+
interface FlatRateLabelSubsidy {
|
|
22778
|
+
readonly id: string;
|
|
22779
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
22780
|
+
readonly organization_id: string;
|
|
22781
|
+
readonly order_number: string;
|
|
22782
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
22783
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
22784
|
+
}
|
|
22785
|
+
|
|
22786
|
+
interface FlatRateLabelSubsidyDeleted {
|
|
22787
|
+
readonly discriminator: 'flat_rate_label_subsidy_deleted';
|
|
22788
|
+
readonly event_id: string;
|
|
22789
|
+
readonly timestamp: string;
|
|
22790
|
+
readonly organization: string;
|
|
22791
|
+
readonly id: string;
|
|
22792
|
+
}
|
|
22793
|
+
|
|
22794
|
+
interface FlatRateLabelSubsidyUpserted {
|
|
22795
|
+
readonly discriminator: 'flat_rate_label_subsidy_upserted';
|
|
22796
|
+
readonly event_id: string;
|
|
22797
|
+
readonly timestamp: string;
|
|
22798
|
+
readonly organization: string;
|
|
22799
|
+
readonly flat_rate_label_subsidy: io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
22800
|
+
}
|
|
22801
|
+
|
|
22547
22802
|
interface FlatRateLabelTransaction {
|
|
22548
22803
|
readonly discriminator: 'flat_rate_label_transaction';
|
|
22549
22804
|
readonly order?: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -23256,6 +23511,120 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23256
23511
|
readonly tracker_id: string;
|
|
23257
23512
|
}
|
|
23258
23513
|
|
|
23514
|
+
interface GuaranteedShippingCalibratedOutput {
|
|
23515
|
+
readonly id: string;
|
|
23516
|
+
readonly organization_id: string;
|
|
23517
|
+
readonly channel_id: string;
|
|
23518
|
+
readonly destination_country: string;
|
|
23519
|
+
readonly coefficient: number;
|
|
23520
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
23521
|
+
readonly effective_at: string;
|
|
23522
|
+
readonly effective_until?: string;
|
|
23523
|
+
}
|
|
23524
|
+
|
|
23525
|
+
interface GuaranteedShippingCalibratedOutputDeleted {
|
|
23526
|
+
readonly discriminator: 'guaranteed_shipping_calibrated_output_deleted';
|
|
23527
|
+
readonly event_id: string;
|
|
23528
|
+
readonly timestamp: string;
|
|
23529
|
+
readonly organization: string;
|
|
23530
|
+
readonly id: string;
|
|
23531
|
+
}
|
|
23532
|
+
|
|
23533
|
+
interface GuaranteedShippingCalibratedOutputUpserted {
|
|
23534
|
+
readonly discriminator: 'guaranteed_shipping_calibrated_output_upserted';
|
|
23535
|
+
readonly event_id: string;
|
|
23536
|
+
readonly timestamp: string;
|
|
23537
|
+
readonly organization: string;
|
|
23538
|
+
readonly guaranteed_shipping_calibrated_output: io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
23539
|
+
}
|
|
23540
|
+
|
|
23541
|
+
interface GuaranteedShippingPublishedOutput {
|
|
23542
|
+
readonly id: string;
|
|
23543
|
+
readonly organization_id: string;
|
|
23544
|
+
readonly channel_id: string;
|
|
23545
|
+
readonly destination_country: string;
|
|
23546
|
+
readonly coefficient: number;
|
|
23547
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
23548
|
+
readonly inputs_updated_at: number;
|
|
23549
|
+
}
|
|
23550
|
+
|
|
23551
|
+
interface GuaranteedShippingPublishedOutputDeleted {
|
|
23552
|
+
readonly discriminator: 'guaranteed_shipping_published_output_deleted';
|
|
23553
|
+
readonly event_id: string;
|
|
23554
|
+
readonly timestamp: string;
|
|
23555
|
+
readonly organization: string;
|
|
23556
|
+
readonly id: string;
|
|
23557
|
+
}
|
|
23558
|
+
|
|
23559
|
+
interface GuaranteedShippingPublishedOutputUpserted {
|
|
23560
|
+
readonly discriminator: 'guaranteed_shipping_published_output_upserted';
|
|
23561
|
+
readonly event_id: string;
|
|
23562
|
+
readonly timestamp: string;
|
|
23563
|
+
readonly organization: string;
|
|
23564
|
+
readonly guaranteed_shipping_published_output: io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
23565
|
+
}
|
|
23566
|
+
|
|
23567
|
+
interface GuaranteedShippingSettings {
|
|
23568
|
+
readonly coefficients_updated_at: number;
|
|
23569
|
+
readonly channel_id: string;
|
|
23570
|
+
readonly organization_id: string;
|
|
23571
|
+
readonly destination_country: string;
|
|
23572
|
+
readonly tax_and_duty_coefficient: number;
|
|
23573
|
+
readonly fees_coefficient: number;
|
|
23574
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
23575
|
+
readonly created_at: number;
|
|
23576
|
+
}
|
|
23577
|
+
|
|
23578
|
+
interface GuaranteedShippingSettingsDeleted {
|
|
23579
|
+
readonly discriminator: 'guaranteed_shipping_settings_deleted';
|
|
23580
|
+
readonly event_id: string;
|
|
23581
|
+
readonly timestamp: string;
|
|
23582
|
+
readonly organization: string;
|
|
23583
|
+
readonly channel_id: string;
|
|
23584
|
+
readonly id: string;
|
|
23585
|
+
}
|
|
23586
|
+
|
|
23587
|
+
interface GuaranteedShippingSettingsDestinationUpdate {
|
|
23588
|
+
readonly country: string;
|
|
23589
|
+
readonly updated_at: string;
|
|
23590
|
+
readonly tax_and_duty_coefficient: number;
|
|
23591
|
+
readonly fees_coefficient: number;
|
|
23592
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
23593
|
+
}
|
|
23594
|
+
|
|
23595
|
+
interface GuaranteedShippingSettingsUpdate {
|
|
23596
|
+
readonly channel_id: string;
|
|
23597
|
+
readonly organization_id: string;
|
|
23598
|
+
readonly destination_updates: io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate[];
|
|
23599
|
+
}
|
|
23600
|
+
|
|
23601
|
+
interface GuaranteedShippingSettingsUpdateDeleted {
|
|
23602
|
+
readonly discriminator: 'guaranteed_shipping_settings_update_deleted';
|
|
23603
|
+
readonly event_id: string;
|
|
23604
|
+
readonly timestamp: string;
|
|
23605
|
+
readonly organization: string;
|
|
23606
|
+
readonly channel_id: string;
|
|
23607
|
+
readonly id: string;
|
|
23608
|
+
}
|
|
23609
|
+
|
|
23610
|
+
interface GuaranteedShippingSettingsUpdateUpserted {
|
|
23611
|
+
readonly discriminator: 'guaranteed_shipping_settings_update_upserted';
|
|
23612
|
+
readonly event_id: string;
|
|
23613
|
+
readonly timestamp: string;
|
|
23614
|
+
readonly organization: string;
|
|
23615
|
+
readonly channel_id: string;
|
|
23616
|
+
readonly guaranteed_shipping_settings_update: io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
23617
|
+
}
|
|
23618
|
+
|
|
23619
|
+
interface GuaranteedShippingSettingsUpserted {
|
|
23620
|
+
readonly discriminator: 'guaranteed_shipping_settings_upserted';
|
|
23621
|
+
readonly event_id: string;
|
|
23622
|
+
readonly timestamp: string;
|
|
23623
|
+
readonly organization: string;
|
|
23624
|
+
readonly channel_id: string;
|
|
23625
|
+
readonly guaranteed_shipping_settings: io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
23626
|
+
}
|
|
23627
|
+
|
|
23259
23628
|
interface HarmonizationClassificationStatisticsData {
|
|
23260
23629
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
23261
23630
|
}
|
|
@@ -23648,6 +24017,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23648
24017
|
readonly created_at: string;
|
|
23649
24018
|
}
|
|
23650
24019
|
|
|
24020
|
+
interface Issuer {
|
|
24021
|
+
readonly id: string;
|
|
24022
|
+
readonly iin: string;
|
|
24023
|
+
readonly name?: string;
|
|
24024
|
+
readonly country?: string;
|
|
24025
|
+
readonly brand?: string;
|
|
24026
|
+
readonly type?: string;
|
|
24027
|
+
readonly category?: string;
|
|
24028
|
+
readonly website?: string;
|
|
24029
|
+
readonly phone?: string;
|
|
24030
|
+
}
|
|
24031
|
+
|
|
24032
|
+
interface IssuerDeleted {
|
|
24033
|
+
readonly discriminator: 'issuer_deleted';
|
|
24034
|
+
readonly event_id: string;
|
|
24035
|
+
readonly timestamp: string;
|
|
24036
|
+
readonly issuer: io.flow.internal.v0.models.Issuer;
|
|
24037
|
+
}
|
|
24038
|
+
|
|
24039
|
+
interface IssuerUpserted {
|
|
24040
|
+
readonly discriminator: 'issuer_upserted';
|
|
24041
|
+
readonly event_id: string;
|
|
24042
|
+
readonly timestamp: string;
|
|
24043
|
+
readonly issuer: io.flow.internal.v0.models.Issuer;
|
|
24044
|
+
}
|
|
24045
|
+
|
|
23651
24046
|
interface ItemClassification {
|
|
23652
24047
|
readonly id?: string;
|
|
23653
24048
|
readonly organization: string;
|
|
@@ -23775,6 +24170,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23775
24170
|
readonly item_harmonization: io.flow.internal.v0.models.ItemHarmonization;
|
|
23776
24171
|
}
|
|
23777
24172
|
|
|
24173
|
+
interface ItemHs6Override {
|
|
24174
|
+
readonly item_number: string;
|
|
24175
|
+
readonly hs6: string;
|
|
24176
|
+
}
|
|
24177
|
+
|
|
24178
|
+
interface ItemHs6OverrideForm {
|
|
24179
|
+
readonly item_number: string;
|
|
24180
|
+
readonly hs6: string;
|
|
24181
|
+
readonly hs6_description?: string;
|
|
24182
|
+
}
|
|
24183
|
+
|
|
24184
|
+
interface ItemHs6OverrideRejection {
|
|
24185
|
+
readonly item_number: string;
|
|
24186
|
+
readonly message: string;
|
|
24187
|
+
}
|
|
24188
|
+
|
|
24189
|
+
interface ItemHs6OverrideResult {
|
|
24190
|
+
readonly applied: io.flow.internal.v0.models.ItemHs6Override[];
|
|
24191
|
+
readonly rejected: io.flow.internal.v0.models.ItemHs6OverrideRejection[];
|
|
24192
|
+
}
|
|
24193
|
+
|
|
24194
|
+
interface ItemHs6OverridesForm {
|
|
24195
|
+
readonly items: io.flow.internal.v0.models.ItemHs6OverrideForm[];
|
|
24196
|
+
}
|
|
24197
|
+
|
|
23778
24198
|
interface ItemQueryResponse {
|
|
23779
24199
|
readonly q: string;
|
|
23780
24200
|
readonly items: io.flow.catalog.v0.models.Item[];
|
|
@@ -24422,6 +24842,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24422
24842
|
readonly added_on: string;
|
|
24423
24843
|
}
|
|
24424
24844
|
|
|
24845
|
+
interface MaheshItemDeleted {
|
|
24846
|
+
readonly discriminator: 'mahesh_item_deleted';
|
|
24847
|
+
readonly event_id: string;
|
|
24848
|
+
readonly timestamp: string;
|
|
24849
|
+
readonly id: string;
|
|
24850
|
+
}
|
|
24851
|
+
|
|
24425
24852
|
interface MaheshItemForm {
|
|
24426
24853
|
readonly number: string;
|
|
24427
24854
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -24430,6 +24857,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24430
24857
|
readonly added_on: string;
|
|
24431
24858
|
}
|
|
24432
24859
|
|
|
24860
|
+
interface MaheshItemUpserted {
|
|
24861
|
+
readonly discriminator: 'mahesh_item_upserted';
|
|
24862
|
+
readonly event_id: string;
|
|
24863
|
+
readonly timestamp: string;
|
|
24864
|
+
readonly item: io.flow.internal.v0.models.MaheshItem;
|
|
24865
|
+
}
|
|
24866
|
+
|
|
24433
24867
|
interface MainTransaction {
|
|
24434
24868
|
readonly id: string;
|
|
24435
24869
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -24442,6 +24876,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24442
24876
|
readonly channel_statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
24443
24877
|
readonly created_at: string;
|
|
24444
24878
|
readonly original_at?: string;
|
|
24879
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
24445
24880
|
}
|
|
24446
24881
|
|
|
24447
24882
|
interface MainTransactionDeleted {
|
|
@@ -24737,10 +25172,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24737
25172
|
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
24738
25173
|
readonly freight_guaranteed?: number;
|
|
24739
25174
|
readonly freight_non_guaranteed?: number;
|
|
25175
|
+
readonly freight_subsidy?: number;
|
|
24740
25176
|
readonly total: number;
|
|
24741
25177
|
readonly tax_refund?: number;
|
|
24742
25178
|
readonly tax_reversal?: number;
|
|
24743
25179
|
readonly duty_reversal?: number;
|
|
25180
|
+
readonly flat_rate_reversal?: number;
|
|
25181
|
+
readonly flat_rate_subsidy_reversal?: number;
|
|
24744
25182
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
24745
25183
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
24746
25184
|
}
|
|
@@ -25135,6 +25573,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25135
25573
|
readonly to_service_id: string;
|
|
25136
25574
|
}
|
|
25137
25575
|
|
|
25576
|
+
interface OrderSettings {
|
|
25577
|
+
readonly tax_and_duty_inclusivity_setting?: io.flow.experience.v0.enums.TaxAndDutyInclusivitySetting;
|
|
25578
|
+
}
|
|
25579
|
+
|
|
25138
25580
|
interface OrderSummary {
|
|
25139
25581
|
readonly id: string;
|
|
25140
25582
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -25766,6 +26208,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25766
26208
|
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
25767
26209
|
readonly number: string;
|
|
25768
26210
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
26211
|
+
readonly destination_province?: string;
|
|
25769
26212
|
}
|
|
25770
26213
|
|
|
25771
26214
|
interface OtherRecordOrderSummaryIdentifiers {
|
|
@@ -25791,6 +26234,35 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25791
26234
|
readonly insurance: number;
|
|
25792
26235
|
}
|
|
25793
26236
|
|
|
26237
|
+
interface OutboundShippingCost {
|
|
26238
|
+
readonly channel_id: string;
|
|
26239
|
+
readonly organization_id: string;
|
|
26240
|
+
readonly destination_country: string;
|
|
26241
|
+
readonly carrier_service_id: string;
|
|
26242
|
+
readonly cost: io.flow.common.v0.models.Money;
|
|
26243
|
+
readonly updated_at: number;
|
|
26244
|
+
readonly run_id: string;
|
|
26245
|
+
readonly model_version: string;
|
|
26246
|
+
}
|
|
26247
|
+
|
|
26248
|
+
interface OutboundShippingCostDeleted {
|
|
26249
|
+
readonly discriminator: 'outbound_shipping_cost_deleted';
|
|
26250
|
+
readonly event_id: string;
|
|
26251
|
+
readonly timestamp: string;
|
|
26252
|
+
readonly organization: string;
|
|
26253
|
+
readonly channel_id: string;
|
|
26254
|
+
readonly id: string;
|
|
26255
|
+
}
|
|
26256
|
+
|
|
26257
|
+
interface OutboundShippingCostUpserted {
|
|
26258
|
+
readonly discriminator: 'outbound_shipping_cost_upserted';
|
|
26259
|
+
readonly event_id: string;
|
|
26260
|
+
readonly timestamp: string;
|
|
26261
|
+
readonly organization: string;
|
|
26262
|
+
readonly channel_id: string;
|
|
26263
|
+
readonly outbound_shipping_cost: io.flow.internal.v0.models.OutboundShippingCost;
|
|
26264
|
+
}
|
|
26265
|
+
|
|
25794
26266
|
interface Partner {
|
|
25795
26267
|
readonly id: string;
|
|
25796
26268
|
readonly name: string;
|
|
@@ -26289,6 +26761,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26289
26761
|
readonly refund: io.flow.internal.v0.models.PaypalInternalRefund;
|
|
26290
26762
|
}
|
|
26291
26763
|
|
|
26764
|
+
interface PcReviewContext {
|
|
26765
|
+
readonly discriminator: 'pc_review_context';
|
|
26766
|
+
readonly organization_id: string;
|
|
26767
|
+
readonly item_name: string;
|
|
26768
|
+
readonly item_description?: string;
|
|
26769
|
+
readonly categories?: string;
|
|
26770
|
+
readonly taxonomy_category?: string;
|
|
26771
|
+
readonly image_url?: string;
|
|
26772
|
+
}
|
|
26773
|
+
|
|
26774
|
+
interface PcReviewOutput {
|
|
26775
|
+
readonly discriminator: 'pc_review_output';
|
|
26776
|
+
readonly hs_code: string;
|
|
26777
|
+
readonly alternates: string[];
|
|
26778
|
+
readonly confidence: number;
|
|
26779
|
+
readonly reasoning: string;
|
|
26780
|
+
}
|
|
26781
|
+
|
|
26292
26782
|
interface PendingBankPayment {
|
|
26293
26783
|
readonly id: string;
|
|
26294
26784
|
readonly account: io.flow.internal.v0.models.AccountSummary;
|
|
@@ -26440,6 +26930,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26440
26930
|
readonly catalog_size: number;
|
|
26441
26931
|
readonly processed_product_count: number;
|
|
26442
26932
|
readonly last_request: string;
|
|
26933
|
+
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26443
26934
|
readonly updated_by_user_id: string;
|
|
26444
26935
|
}
|
|
26445
26936
|
|
|
@@ -26477,6 +26968,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26477
26968
|
readonly effective_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26478
26969
|
readonly fingerprint: string;
|
|
26479
26970
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26971
|
+
readonly created_at?: string;
|
|
26480
26972
|
}
|
|
26481
26973
|
|
|
26482
26974
|
interface PreonboardingSellabilityResultDeleted {
|
|
@@ -26903,6 +27395,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26903
27395
|
readonly location: io.flow.common.v0.models.Address;
|
|
26904
27396
|
}
|
|
26905
27397
|
|
|
27398
|
+
interface PvReviewContext {
|
|
27399
|
+
readonly discriminator: 'pv_review_context';
|
|
27400
|
+
readonly organization_id: string;
|
|
27401
|
+
readonly item_name: string;
|
|
27402
|
+
readonly item_description?: string;
|
|
27403
|
+
readonly image_url?: string;
|
|
27404
|
+
readonly rule_name: string;
|
|
27405
|
+
readonly rule_reason_code: string;
|
|
27406
|
+
readonly hs_code?: string;
|
|
27407
|
+
readonly categories?: string;
|
|
27408
|
+
readonly price?: string;
|
|
27409
|
+
readonly matching_positive_keywords: string[];
|
|
27410
|
+
readonly matching_negative_keywords: string[];
|
|
27411
|
+
}
|
|
27412
|
+
|
|
27413
|
+
interface PvReviewOutput {
|
|
27414
|
+
readonly discriminator: 'pv_review_output';
|
|
27415
|
+
readonly decision: io.flow.internal.v0.enums.PvDecision;
|
|
27416
|
+
readonly confidence: number;
|
|
27417
|
+
readonly reasoning: string;
|
|
27418
|
+
}
|
|
27419
|
+
|
|
26906
27420
|
interface Quote {
|
|
26907
27421
|
readonly id: string;
|
|
26908
27422
|
readonly base: string;
|
|
@@ -27153,14 +27667,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27153
27667
|
readonly number: string;
|
|
27154
27668
|
}
|
|
27155
27669
|
|
|
27156
|
-
interface RatecardLanesImportRequest {
|
|
27157
|
-
readonly discriminator: 'ratecard_lanes_import_request';
|
|
27158
|
-
readonly event_id: string;
|
|
27159
|
-
readonly timestamp: string;
|
|
27160
|
-
readonly organization: string;
|
|
27161
|
-
readonly data: io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
27162
|
-
}
|
|
27163
|
-
|
|
27164
27670
|
interface RatecardRateLevelDeleted {
|
|
27165
27671
|
readonly discriminator: 'ratecard_rate_level_deleted';
|
|
27166
27672
|
readonly event_id: string;
|
|
@@ -27221,15 +27727,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27221
27727
|
readonly fee: io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
27222
27728
|
}
|
|
27223
27729
|
|
|
27224
|
-
interface RatecardServiceFeesOverride {
|
|
27225
|
-
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
27226
|
-
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
27227
|
-
}
|
|
27228
|
-
|
|
27229
|
-
interface RatecardServiceFeesOverrideForm {
|
|
27230
|
-
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
27231
|
-
}
|
|
27232
|
-
|
|
27233
27730
|
interface RatesChanged {
|
|
27234
27731
|
readonly event_id: string;
|
|
27235
27732
|
readonly timestamp: string;
|
|
@@ -27305,6 +27802,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27305
27802
|
readonly number: string;
|
|
27306
27803
|
}
|
|
27307
27804
|
|
|
27805
|
+
interface RemediateTaxDutyMetadata {
|
|
27806
|
+
readonly discriminator: 'remediate_tax_duty_metadata';
|
|
27807
|
+
readonly arm: io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
27808
|
+
}
|
|
27809
|
+
|
|
27308
27810
|
interface RemittanceResponsibility {
|
|
27309
27811
|
readonly tax: io.flow.internal.v0.enums.ResponsibleParty;
|
|
27310
27812
|
readonly duty: io.flow.internal.v0.enums.ResponsibleParty;
|
|
@@ -27358,7 +27860,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27358
27860
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
27359
27861
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
27360
27862
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
27361
|
-
readonly
|
|
27863
|
+
readonly account_currencies?: io.flow.internal.v0.enums.AccountCurrencyFilter[];
|
|
27362
27864
|
readonly channel_id?: string;
|
|
27363
27865
|
}
|
|
27364
27866
|
|
|
@@ -27493,6 +27995,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27493
27995
|
|
|
27494
27996
|
interface ReportingFreight {
|
|
27495
27997
|
readonly guaranteed?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
27998
|
+
readonly subsidy?: io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
27496
27999
|
}
|
|
27497
28000
|
|
|
27498
28001
|
interface ReportingFreightGuaranteed {
|
|
@@ -27500,6 +28003,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27500
28003
|
readonly coefficient: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27501
28004
|
}
|
|
27502
28005
|
|
|
28006
|
+
interface ReportingFreightSubsidy {
|
|
28007
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28008
|
+
}
|
|
28009
|
+
|
|
27503
28010
|
interface ReportingFulfillment {
|
|
27504
28011
|
readonly id: string;
|
|
27505
28012
|
readonly sequence_number: number;
|
|
@@ -27540,13 +28047,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27540
28047
|
}
|
|
27541
28048
|
|
|
27542
28049
|
interface ReportingFx {
|
|
27543
|
-
readonly shipping: io.flow.internal.v0.models.
|
|
27544
|
-
readonly fees: io.flow.internal.v0.models.
|
|
27545
|
-
readonly product: io.flow.internal.v0.models.
|
|
27546
|
-
readonly tax: io.flow.internal.v0.models.
|
|
27547
|
-
readonly duty: io.flow.internal.v0.models.
|
|
27548
|
-
readonly tips?: io.flow.internal.v0.models.
|
|
27549
|
-
readonly total: io.flow.internal.v0.models.
|
|
28050
|
+
readonly shipping: io.flow.internal.v0.models.ReportingFxValue;
|
|
28051
|
+
readonly fees: io.flow.internal.v0.models.ReportingFxValue;
|
|
28052
|
+
readonly product: io.flow.internal.v0.models.ReportingFxValue;
|
|
28053
|
+
readonly tax: io.flow.internal.v0.models.ReportingFxValue;
|
|
28054
|
+
readonly duty: io.flow.internal.v0.models.ReportingFxValue;
|
|
28055
|
+
readonly tips?: io.flow.internal.v0.models.ReportingFxValue;
|
|
28056
|
+
readonly total: io.flow.internal.v0.models.ReportingFxValue;
|
|
28057
|
+
}
|
|
28058
|
+
|
|
28059
|
+
interface ReportingFxValue {
|
|
28060
|
+
readonly usd: number;
|
|
28061
|
+
readonly merchant?: number;
|
|
27550
28062
|
}
|
|
27551
28063
|
|
|
27552
28064
|
interface ReportingMerchantBreakdown {
|
|
@@ -27599,12 +28111,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27599
28111
|
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
27600
28112
|
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27601
28113
|
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28114
|
+
readonly freight_subsidy?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27602
28115
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27603
28116
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27604
28117
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27605
28118
|
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27606
28119
|
readonly tax_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27607
28120
|
readonly duty_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28121
|
+
readonly flat_rate_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28122
|
+
readonly flat_rate_subsidy_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27608
28123
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
27609
28124
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
27610
28125
|
}
|
|
@@ -27782,7 +28297,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27782
28297
|
readonly created_at: string;
|
|
27783
28298
|
readonly updated_at: string;
|
|
27784
28299
|
readonly channel?: string;
|
|
27785
|
-
readonly is_deleted?: boolean;
|
|
27786
28300
|
}
|
|
27787
28301
|
|
|
27788
28302
|
interface RestrictionItemRequestForm {
|
|
@@ -27908,7 +28422,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27908
28422
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
27909
28423
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
27910
28424
|
readonly channel?: string;
|
|
27911
|
-
readonly is_deleted?: boolean;
|
|
27912
28425
|
}
|
|
27913
28426
|
|
|
27914
28427
|
interface RestrictionProductDecisionForm {
|
|
@@ -27951,6 +28464,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27951
28464
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
27952
28465
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
27953
28466
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
28467
|
+
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
27954
28468
|
}
|
|
27955
28469
|
|
|
27956
28470
|
interface RestrictionRuleDecisionForm {
|
|
@@ -28012,6 +28526,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28012
28526
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
28013
28527
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
28014
28528
|
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
28529
|
+
readonly evaluation_mode: io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
28015
28530
|
}
|
|
28016
28531
|
|
|
28017
28532
|
interface RestrictionRuleLaneExemption {
|
|
@@ -28311,6 +28826,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28311
28826
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
28312
28827
|
}
|
|
28313
28828
|
|
|
28829
|
+
interface ReviewRequestItem {
|
|
28830
|
+
readonly review_type: io.flow.internal.v0.enums.AiReviewType;
|
|
28831
|
+
readonly review_id: string;
|
|
28832
|
+
readonly context: io.flow.internal.v0.unions.AiReviewContext;
|
|
28833
|
+
}
|
|
28834
|
+
|
|
28314
28835
|
interface RoutingAccount {
|
|
28315
28836
|
readonly discriminator: 'routing_account';
|
|
28316
28837
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -28345,12 +28866,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28345
28866
|
readonly payment_is: io.flow.internal.v0.models.PaymentIs;
|
|
28346
28867
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
28347
28868
|
readonly destination_country: string;
|
|
28869
|
+
readonly destination_province?: string;
|
|
28348
28870
|
readonly fulfilled_at?: string;
|
|
28349
28871
|
readonly reconciliation?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
28350
28872
|
readonly is_eu_destination?: boolean;
|
|
28351
28873
|
readonly debug_url?: string;
|
|
28352
28874
|
}
|
|
28353
28875
|
|
|
28876
|
+
interface SalesPaymentRecordDeleted {
|
|
28877
|
+
readonly discriminator: 'sales_payment_record_deleted';
|
|
28878
|
+
readonly event_id: string;
|
|
28879
|
+
readonly timestamp: string;
|
|
28880
|
+
readonly organization: string;
|
|
28881
|
+
readonly id: string;
|
|
28882
|
+
}
|
|
28883
|
+
|
|
28884
|
+
interface SalesPaymentRecordUpserted {
|
|
28885
|
+
readonly discriminator: 'sales_payment_record_upserted';
|
|
28886
|
+
readonly event_id: string;
|
|
28887
|
+
readonly timestamp: string;
|
|
28888
|
+
readonly organization: string;
|
|
28889
|
+
readonly sales_payment_record: io.flow.internal.v0.models.SalesPaymentRecord;
|
|
28890
|
+
}
|
|
28891
|
+
|
|
28354
28892
|
interface SandboxSetup {
|
|
28355
28893
|
readonly requested_by: string;
|
|
28356
28894
|
}
|
|
@@ -28465,6 +29003,50 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28465
29003
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
28466
29004
|
}
|
|
28467
29005
|
|
|
29006
|
+
interface SellabilityPendingVerification {
|
|
29007
|
+
readonly id: string;
|
|
29008
|
+
readonly merchant_id: string;
|
|
29009
|
+
readonly product_id: string;
|
|
29010
|
+
readonly channel: string;
|
|
29011
|
+
readonly request_id: string;
|
|
29012
|
+
readonly name: string;
|
|
29013
|
+
readonly description: string;
|
|
29014
|
+
readonly taxonomy_category?: string;
|
|
29015
|
+
readonly hs6_code?: string;
|
|
29016
|
+
readonly price?: string;
|
|
29017
|
+
readonly rule_id: string;
|
|
29018
|
+
readonly reason_code: string;
|
|
29019
|
+
readonly matching_keywords?: string;
|
|
29020
|
+
readonly status: string;
|
|
29021
|
+
readonly agent_decision?: string;
|
|
29022
|
+
readonly agent_reasoning?: string;
|
|
29023
|
+
readonly created_at: string;
|
|
29024
|
+
readonly updated_at: string;
|
|
29025
|
+
}
|
|
29026
|
+
|
|
29027
|
+
interface SellabilityPendingVerificationDeleted {
|
|
29028
|
+
readonly discriminator: 'sellability_pending_verification_deleted';
|
|
29029
|
+
readonly event_id: string;
|
|
29030
|
+
readonly timestamp: string;
|
|
29031
|
+
readonly id: string;
|
|
29032
|
+
}
|
|
29033
|
+
|
|
29034
|
+
interface SellabilityPendingVerificationUpserted {
|
|
29035
|
+
readonly discriminator: 'sellability_pending_verification_upserted';
|
|
29036
|
+
readonly event_id: string;
|
|
29037
|
+
readonly timestamp: string;
|
|
29038
|
+
readonly sellability_pending_verification: io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
29039
|
+
}
|
|
29040
|
+
|
|
29041
|
+
interface ServiceFees {
|
|
29042
|
+
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
29043
|
+
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
29044
|
+
}
|
|
29045
|
+
|
|
29046
|
+
interface ServiceFeesForm {
|
|
29047
|
+
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
29048
|
+
}
|
|
29049
|
+
|
|
28468
29050
|
interface SessionOrderData {
|
|
28469
29051
|
readonly id: string;
|
|
28470
29052
|
readonly session: io.flow.common.v0.models.SessionReference;
|
|
@@ -28496,6 +29078,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28496
29078
|
readonly rate_level_key?: string;
|
|
28497
29079
|
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
28498
29080
|
readonly cost: io.flow.common.v0.models.Money;
|
|
29081
|
+
readonly dim_factor: number;
|
|
28499
29082
|
}
|
|
28500
29083
|
|
|
28501
29084
|
interface ShippingCostDeleted {
|
|
@@ -28585,28 +29168,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28585
29168
|
readonly include_unpublished?: boolean;
|
|
28586
29169
|
}
|
|
28587
29170
|
|
|
28588
|
-
interface ShopifyAdaptivePricingCoefficients {
|
|
28589
|
-
readonly id: string;
|
|
28590
|
-
readonly organization_id: string;
|
|
28591
|
-
readonly destination_coefficients: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestinationCoefficients[];
|
|
28592
|
-
}
|
|
28593
|
-
|
|
28594
|
-
interface ShopifyAdaptivePricingCoefficientsDeleted {
|
|
28595
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_deleted';
|
|
28596
|
-
readonly event_id: string;
|
|
28597
|
-
readonly timestamp: string;
|
|
28598
|
-
readonly organization: string;
|
|
28599
|
-
readonly id: string;
|
|
28600
|
-
}
|
|
28601
|
-
|
|
28602
|
-
interface ShopifyAdaptivePricingCoefficientsUpserted {
|
|
28603
|
-
readonly discriminator: 'shopify_adaptive_pricing_coefficients_upserted';
|
|
28604
|
-
readonly event_id: string;
|
|
28605
|
-
readonly timestamp: string;
|
|
28606
|
-
readonly organization: string;
|
|
28607
|
-
readonly shopify_adaptive_pricing_coefficients: io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
28608
|
-
}
|
|
28609
|
-
|
|
28610
29171
|
interface ShopifyAddress {
|
|
28611
29172
|
readonly address1: string;
|
|
28612
29173
|
readonly city: string;
|
|
@@ -28646,6 +29207,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28646
29207
|
readonly phone?: string;
|
|
28647
29208
|
}
|
|
28648
29209
|
|
|
29210
|
+
interface ShopifyCost {
|
|
29211
|
+
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
29212
|
+
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
29213
|
+
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
29214
|
+
}
|
|
29215
|
+
|
|
28649
29216
|
interface ShopifyDispute {
|
|
28650
29217
|
readonly id: string;
|
|
28651
29218
|
readonly organization_id: string;
|
|
@@ -29014,6 +29581,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29014
29581
|
interface ShopifyMerchantMarketCountry {
|
|
29015
29582
|
readonly code: string;
|
|
29016
29583
|
readonly actively_managing: boolean;
|
|
29584
|
+
readonly enabled: boolean;
|
|
29017
29585
|
}
|
|
29018
29586
|
|
|
29019
29587
|
interface ShopifyMerchantMarkets {
|
|
@@ -29376,7 +29944,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29376
29944
|
|
|
29377
29945
|
interface ShopifyShipmentRateAvailable {
|
|
29378
29946
|
readonly carrier_service_id: string;
|
|
29379
|
-
readonly total_charges: io.flow.internal.v0.models.
|
|
29947
|
+
readonly total_charges: io.flow.internal.v0.models.ShopifyCost;
|
|
29380
29948
|
readonly charges: io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
29381
29949
|
readonly shipment_options: io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
29382
29950
|
readonly expected_delivery_date?: string;
|
|
@@ -29386,12 +29954,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29386
29954
|
|
|
29387
29955
|
interface ShopifyShipmentRateCharge {
|
|
29388
29956
|
readonly code: io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
29389
|
-
readonly cost: io.flow.internal.v0.models.
|
|
29957
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
29390
29958
|
}
|
|
29391
29959
|
|
|
29392
29960
|
interface ShopifyShipmentRateOption {
|
|
29393
29961
|
readonly code: io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
29394
|
-
readonly cost: io.flow.internal.v0.models.
|
|
29962
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
29395
29963
|
readonly optional?: boolean;
|
|
29396
29964
|
}
|
|
29397
29965
|
|
|
@@ -29437,12 +30005,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29437
30005
|
readonly byoa: boolean;
|
|
29438
30006
|
}
|
|
29439
30007
|
|
|
29440
|
-
interface ShopifyShipmentRateTotalCharges {
|
|
29441
|
-
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
29442
|
-
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
29443
|
-
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
29444
|
-
}
|
|
29445
|
-
|
|
29446
30008
|
interface ShopifyShipmentRateUnavailable {
|
|
29447
30009
|
readonly carrier_service_id: string;
|
|
29448
30010
|
readonly reasons: io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
@@ -30274,6 +30836,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30274
30836
|
interface TaxonomyCategoryHs6Ref {
|
|
30275
30837
|
readonly id: string;
|
|
30276
30838
|
readonly taxonomy_category: string;
|
|
30839
|
+
readonly taxonomy_category_id?: string;
|
|
30277
30840
|
readonly hs6: string;
|
|
30278
30841
|
readonly updated_by_user_id: string;
|
|
30279
30842
|
}
|
|
@@ -30803,6 +31366,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
30803
31366
|
readonly message: string;
|
|
30804
31367
|
}
|
|
30805
31368
|
|
|
31369
|
+
interface UnserviceableTaxonomyCategory {
|
|
31370
|
+
readonly id: string;
|
|
31371
|
+
readonly taxonomy_category: string;
|
|
31372
|
+
readonly taxonomy_category_id?: string;
|
|
31373
|
+
readonly updated_by_user_id: string;
|
|
31374
|
+
}
|
|
31375
|
+
|
|
31376
|
+
interface UnserviceableTaxonomyCategoryDeleted {
|
|
31377
|
+
readonly discriminator: 'unserviceable_taxonomy_category_deleted';
|
|
31378
|
+
readonly event_id: string;
|
|
31379
|
+
readonly timestamp: string;
|
|
31380
|
+
readonly id: string;
|
|
31381
|
+
}
|
|
31382
|
+
|
|
31383
|
+
interface UnserviceableTaxonomyCategoryUpserted {
|
|
31384
|
+
readonly discriminator: 'unserviceable_taxonomy_category_upserted';
|
|
31385
|
+
readonly event_id: string;
|
|
31386
|
+
readonly timestamp: string;
|
|
31387
|
+
readonly unserviceable_taxonomy_category: io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
31388
|
+
}
|
|
31389
|
+
|
|
30806
31390
|
interface Ups {
|
|
30807
31391
|
readonly discriminator: 'ups';
|
|
30808
31392
|
readonly client_id: string;
|
|
@@ -30976,6 +31560,14 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30976
31560
|
| io.flow.internal.v0.models.AdjustmentAmountPercentage
|
|
30977
31561
|
| io.flow.internal.v0.models.AdjustmentAmountFixed
|
|
30978
31562
|
| io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
31563
|
+
type AiOutput =
|
|
31564
|
+
| io.flow.internal.v0.models.PvReviewOutput
|
|
31565
|
+
| io.flow.internal.v0.models.DgReviewOutput
|
|
31566
|
+
| io.flow.internal.v0.models.PcReviewOutput;
|
|
31567
|
+
type AiReviewContext =
|
|
31568
|
+
| io.flow.internal.v0.models.PvReviewContext
|
|
31569
|
+
| io.flow.internal.v0.models.DgReviewContext
|
|
31570
|
+
| io.flow.internal.v0.models.PcReviewContext;
|
|
30979
31571
|
type AuthorizationPayload =
|
|
30980
31572
|
| io.flow.internal.v0.models.ApplePayAuthorizationPayload
|
|
30981
31573
|
| io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
@@ -31048,8 +31640,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31048
31640
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
31049
31641
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
31050
31642
|
type Event =
|
|
31051
|
-
| io.flow.internal.v0.models.AdaptiveShippingRateUpserted
|
|
31052
|
-
| io.flow.internal.v0.models.AdaptiveShippingRateDeleted
|
|
31053
31643
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
31054
31644
|
| io.flow.internal.v0.models.AdyenAuthorizationUpserted
|
|
31055
31645
|
| io.flow.internal.v0.models.AdyenCancelDeleted
|
|
@@ -31060,6 +31650,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31060
31650
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
31061
31651
|
| io.flow.internal.v0.models.AdyenDisputeUpserted
|
|
31062
31652
|
| io.flow.internal.v0.models.AdyenDisputeDeleted
|
|
31653
|
+
| io.flow.internal.v0.models.AiReviewBatchSubmitted
|
|
31654
|
+
| io.flow.internal.v0.models.AiReviewResultUpserted
|
|
31655
|
+
| io.flow.internal.v0.models.AiReviewResultDeleted
|
|
31656
|
+
| io.flow.internal.v0.models.AiReviewRequestFailed
|
|
31063
31657
|
| io.flow.internal.v0.models.FulfillmentUpserted
|
|
31064
31658
|
| io.flow.internal.v0.models.FulfillmentDeleted
|
|
31065
31659
|
| io.flow.internal.v0.models.MerchantUpserted
|
|
@@ -31114,6 +31708,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31114
31708
|
| io.flow.internal.v0.models.RevenueRecordDeleted
|
|
31115
31709
|
| io.flow.internal.v0.models.OtherRecordUpserted
|
|
31116
31710
|
| io.flow.internal.v0.models.OtherRecordDeleted
|
|
31711
|
+
| io.flow.internal.v0.models.SalesPaymentRecordUpserted
|
|
31712
|
+
| io.flow.internal.v0.models.SalesPaymentRecordDeleted
|
|
31117
31713
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted
|
|
31118
31714
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
|
|
31119
31715
|
| io.flow.internal.v0.models.CarrierAccountUpsertedV2
|
|
@@ -31195,6 +31791,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31195
31791
|
| io.flow.internal.v0.models.MorCostDeleted
|
|
31196
31792
|
| io.flow.internal.v0.models.FlatRateLabelReversalUpserted
|
|
31197
31793
|
| io.flow.internal.v0.models.FlatRateLabelReversalDeleted
|
|
31794
|
+
| io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted
|
|
31795
|
+
| io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted
|
|
31198
31796
|
| io.flow.internal.v0.models.FraudReviewUpserted
|
|
31199
31797
|
| io.flow.internal.v0.models.FraudReviewDeleted
|
|
31200
31798
|
| io.flow.internal.v0.models.FraudPendingReviewUpserted
|
|
@@ -31220,6 +31818,16 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31220
31818
|
| io.flow.internal.v0.models.FulfillmentFallbacksDeleted
|
|
31221
31819
|
| io.flow.internal.v0.models.QuoteUpserted
|
|
31222
31820
|
| io.flow.internal.v0.models.QuoteDeleted
|
|
31821
|
+
| io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted
|
|
31822
|
+
| io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted
|
|
31823
|
+
| io.flow.internal.v0.models.OutboundShippingCostUpserted
|
|
31824
|
+
| io.flow.internal.v0.models.OutboundShippingCostDeleted
|
|
31825
|
+
| io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted
|
|
31826
|
+
| io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted
|
|
31827
|
+
| io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted
|
|
31828
|
+
| io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted
|
|
31829
|
+
| io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted
|
|
31830
|
+
| io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted
|
|
31223
31831
|
| io.flow.internal.v0.models.AllItemsExport
|
|
31224
31832
|
| io.flow.internal.v0.models.HarmonizedItemsHs6Export
|
|
31225
31833
|
| io.flow.internal.v0.models.UnharmonizedItemsExport
|
|
@@ -31242,6 +31850,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31242
31850
|
| io.flow.internal.v0.models.MerchantOverrideUpserted
|
|
31243
31851
|
| io.flow.internal.v0.models.MerchantOverrideDeleted
|
|
31244
31852
|
| io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished
|
|
31853
|
+
| io.flow.internal.v0.models.IssuerUpserted
|
|
31854
|
+
| io.flow.internal.v0.models.IssuerDeleted
|
|
31245
31855
|
| io.flow.internal.v0.models.ItemFormImportRequest
|
|
31246
31856
|
| io.flow.internal.v0.models.LabelRequestErrorUpserted
|
|
31247
31857
|
| io.flow.internal.v0.models.LabelRequestErrorDeleted
|
|
@@ -31324,7 +31934,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31324
31934
|
| io.flow.internal.v0.models.OrderRatesPublishedV3
|
|
31325
31935
|
| io.flow.internal.v0.models.RatecardDimensionEstimateUpserted
|
|
31326
31936
|
| io.flow.internal.v0.models.RatecardDimensionEstimateDeleted
|
|
31327
|
-
| io.flow.internal.v0.models.RatecardLanesImportRequest
|
|
31328
31937
|
| io.flow.internal.v0.models.RatecardServiceFeeUpserted
|
|
31329
31938
|
| io.flow.internal.v0.models.RatecardServiceFeeDeleted
|
|
31330
31939
|
| io.flow.internal.v0.models.RatecardRateLevelUpserted
|
|
@@ -31353,6 +31962,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31353
31962
|
| io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted
|
|
31354
31963
|
| io.flow.internal.v0.models.PreonboardingMerchantUpserted
|
|
31355
31964
|
| io.flow.internal.v0.models.PreonboardingMerchantDeleted
|
|
31965
|
+
| io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted
|
|
31966
|
+
| io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted
|
|
31967
|
+
| io.flow.internal.v0.models.SellabilityPendingVerificationUpserted
|
|
31968
|
+
| io.flow.internal.v0.models.SellabilityPendingVerificationDeleted
|
|
31356
31969
|
| io.flow.internal.v0.models.ShopifyHs10CodesUpserted
|
|
31357
31970
|
| io.flow.internal.v0.models.ShopifyHs10CodesDeleted
|
|
31358
31971
|
| io.flow.internal.v0.models.ShopifyMarketsOrderUpserted
|
|
@@ -31386,8 +31999,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31386
31999
|
| io.flow.internal.v0.models.ShopifyOrderTransactionDeleted
|
|
31387
32000
|
| io.flow.internal.v0.models.ShopifyTestOrderUpserted
|
|
31388
32001
|
| io.flow.internal.v0.models.ShopifyTestOrderDeleted
|
|
31389
|
-
| io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted
|
|
31390
|
-
| io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted
|
|
31391
32002
|
| io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted
|
|
31392
32003
|
| io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted
|
|
31393
32004
|
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
@@ -31436,6 +32047,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31436
32047
|
| io.flow.internal.v0.models.BojanaItemDeleted
|
|
31437
32048
|
| io.flow.internal.v0.models.RaveenaItemUpserted
|
|
31438
32049
|
| io.flow.internal.v0.models.RaveenaItemDeleted
|
|
32050
|
+
| io.flow.internal.v0.models.MaheshItemUpserted
|
|
32051
|
+
| io.flow.internal.v0.models.MaheshItemDeleted
|
|
31439
32052
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
31440
32053
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
31441
32054
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -31623,7 +32236,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31623
32236
|
| io.flow.internal.v0.models.NonL4LTaxDutyFxFeeMetadata
|
|
31624
32237
|
| io.flow.internal.v0.models.ChannelTransactionTriggerMetadata
|
|
31625
32238
|
| io.flow.internal.v0.models.B2BFeeMorTaxTriggerMetadata
|
|
31626
|
-
| io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata
|
|
32239
|
+
| io.flow.internal.v0.models.B2BFeeShippingTaxTriggerMetadata
|
|
32240
|
+
| io.flow.internal.v0.models.RemediateTaxDutyMetadata;
|
|
31627
32241
|
type TaxAmount =
|
|
31628
32242
|
| io.flow.internal.v0.models.CalculatedTaxAmount
|
|
31629
32243
|
| io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
@@ -31715,10 +32329,6 @@ export type AccountingPendingOrderMetadata =
|
|
|
31715
32329
|
export type AccountingReturnMetadata =
|
|
31716
32330
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
31717
32331
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
31718
|
-
export type AdaptivePricingDestinationUpdate =
|
|
31719
|
-
io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
31720
|
-
export type AdaptivePricingUpdate =
|
|
31721
|
-
io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
31722
32332
|
export type AdaptiveShippingOrderGuarantee =
|
|
31723
32333
|
io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
31724
32334
|
export type AdaptiveShippingOrderGuaranteeDeleted =
|
|
@@ -31727,12 +32337,6 @@ export type AdaptiveShippingOrderGuaranteeState =
|
|
|
31727
32337
|
io.flow.internal.v0.enums.AdaptiveShippingOrderGuaranteeState;
|
|
31728
32338
|
export type AdaptiveShippingOrderGuaranteeUpserted =
|
|
31729
32339
|
io.flow.internal.v0.models.AdaptiveShippingOrderGuaranteeUpserted;
|
|
31730
|
-
export type AdaptiveShippingRate =
|
|
31731
|
-
io.flow.internal.v0.models.AdaptiveShippingRate;
|
|
31732
|
-
export type AdaptiveShippingRateDeleted =
|
|
31733
|
-
io.flow.internal.v0.models.AdaptiveShippingRateDeleted;
|
|
31734
|
-
export type AdaptiveShippingRateUpserted =
|
|
31735
|
-
io.flow.internal.v0.models.AdaptiveShippingRateUpserted;
|
|
31736
32340
|
export type AdditionalImportTax =
|
|
31737
32341
|
io.flow.internal.v0.models.AdditionalImportTax;
|
|
31738
32342
|
export type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
@@ -31836,6 +32440,22 @@ export type AfterpayRefundDeleted =
|
|
|
31836
32440
|
export type AfterpayRefundUpserted =
|
|
31837
32441
|
io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
31838
32442
|
export type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
32443
|
+
export type AiOutput = io.flow.internal.v0.unions.AiOutput;
|
|
32444
|
+
export type AiReviewBatchSubmitted =
|
|
32445
|
+
io.flow.internal.v0.models.AiReviewBatchSubmitted;
|
|
32446
|
+
export type AiReviewConsumer = io.flow.internal.v0.enums.AiReviewConsumer;
|
|
32447
|
+
export type AiReviewContext = io.flow.internal.v0.unions.AiReviewContext;
|
|
32448
|
+
export type AiReviewFailedItem = io.flow.internal.v0.models.AiReviewFailedItem;
|
|
32449
|
+
export type AiReviewFailureReason =
|
|
32450
|
+
io.flow.internal.v0.enums.AiReviewFailureReason;
|
|
32451
|
+
export type AiReviewRequestFailed =
|
|
32452
|
+
io.flow.internal.v0.models.AiReviewRequestFailed;
|
|
32453
|
+
export type AiReviewResult = io.flow.internal.v0.models.AiReviewResult;
|
|
32454
|
+
export type AiReviewResultDeleted =
|
|
32455
|
+
io.flow.internal.v0.models.AiReviewResultDeleted;
|
|
32456
|
+
export type AiReviewResultUpserted =
|
|
32457
|
+
io.flow.internal.v0.models.AiReviewResultUpserted;
|
|
32458
|
+
export type AiReviewType = io.flow.internal.v0.enums.AiReviewType;
|
|
31839
32459
|
export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
31840
32460
|
export type AllocationItemReference =
|
|
31841
32461
|
io.flow.internal.v0.models.AllocationItemReference;
|
|
@@ -32423,6 +33043,20 @@ export type ConsoleMarkUnresolvableForm =
|
|
|
32423
33043
|
io.flow.internal.v0.models.ConsoleMarkUnresolvableForm;
|
|
32424
33044
|
export type CourthouseProductSummary =
|
|
32425
33045
|
io.flow.internal.v0.models.CourthouseProductSummary;
|
|
33046
|
+
export type CpscCertificateType = io.flow.internal.v0.enums.CpscCertificateType;
|
|
33047
|
+
export type CpscFileType = io.flow.internal.v0.enums.CpscFileType;
|
|
33048
|
+
export type CpscLabType = io.flow.internal.v0.enums.CpscLabType;
|
|
33049
|
+
export type CpscLotNumberAssignedBy =
|
|
33050
|
+
io.flow.internal.v0.enums.CpscLotNumberAssignedBy;
|
|
33051
|
+
export type CpscPointOfContactType =
|
|
33052
|
+
io.flow.internal.v0.enums.CpscPointOfContactType;
|
|
33053
|
+
export type CpscPrimaryProductIdType =
|
|
33054
|
+
io.flow.internal.v0.enums.CpscPrimaryProductIdType;
|
|
33055
|
+
export type CpscProductRegistration =
|
|
33056
|
+
io.flow.internal.v0.models.CpscProductRegistration;
|
|
33057
|
+
export type CpscQueueEnvelope = io.flow.internal.v0.models.CpscQueueEnvelope;
|
|
33058
|
+
export type CpscQueueMessage = io.flow.internal.v0.models.CpscQueueMessage;
|
|
33059
|
+
export type CpscYesNo = io.flow.internal.v0.enums.CpscYesNo;
|
|
32426
33060
|
export type CrossdockTrackingStatus =
|
|
32427
33061
|
io.flow.internal.v0.enums.CrossdockTrackingStatus;
|
|
32428
33062
|
export type CryptoAccount = io.flow.internal.v0.models.CryptoAccount;
|
|
@@ -32523,6 +33157,9 @@ export type DeminimisAdjustmentType =
|
|
|
32523
33157
|
export type DestinationDutyComparison =
|
|
32524
33158
|
io.flow.internal.v0.models.DestinationDutyComparison;
|
|
32525
33159
|
export type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
33160
|
+
export type DgClassAssessment = io.flow.internal.v0.models.DgClassAssessment;
|
|
33161
|
+
export type DgReviewContext = io.flow.internal.v0.models.DgReviewContext;
|
|
33162
|
+
export type DgReviewOutput = io.flow.internal.v0.models.DgReviewOutput;
|
|
32526
33163
|
export type Dhl = io.flow.internal.v0.models.Dhl;
|
|
32527
33164
|
export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
32528
33165
|
export type DimensionEstimateOpsInput =
|
|
@@ -32701,6 +33338,8 @@ export type ExternalFulfillmentProofTracking =
|
|
|
32701
33338
|
io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
32702
33339
|
export type ExternalFulfillmentProofTrackingForm =
|
|
32703
33340
|
io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
33341
|
+
export type ExternalOrderSummary =
|
|
33342
|
+
io.flow.internal.v0.models.ExternalOrderSummary;
|
|
32704
33343
|
export type ExternalRatecardLink =
|
|
32705
33344
|
io.flow.internal.v0.models.ExternalRatecardLink;
|
|
32706
33345
|
export type ExternalRatecardLinkResponse =
|
|
@@ -32764,12 +33403,20 @@ export type FiservMerchantModificationForm =
|
|
|
32764
33403
|
export type FiservMerchantPutForm =
|
|
32765
33404
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
32766
33405
|
export type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
33406
|
+
export type FlatRateLabelGuaranteeStatus =
|
|
33407
|
+
io.flow.internal.v0.enums.FlatRateLabelGuaranteeStatus;
|
|
32767
33408
|
export type FlatRateLabelReversal =
|
|
32768
33409
|
io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
32769
33410
|
export type FlatRateLabelReversalDeleted =
|
|
32770
33411
|
io.flow.internal.v0.models.FlatRateLabelReversalDeleted;
|
|
32771
33412
|
export type FlatRateLabelReversalUpserted =
|
|
32772
33413
|
io.flow.internal.v0.models.FlatRateLabelReversalUpserted;
|
|
33414
|
+
export type FlatRateLabelSubsidy =
|
|
33415
|
+
io.flow.internal.v0.models.FlatRateLabelSubsidy;
|
|
33416
|
+
export type FlatRateLabelSubsidyDeleted =
|
|
33417
|
+
io.flow.internal.v0.models.FlatRateLabelSubsidyDeleted;
|
|
33418
|
+
export type FlatRateLabelSubsidyUpserted =
|
|
33419
|
+
io.flow.internal.v0.models.FlatRateLabelSubsidyUpserted;
|
|
32773
33420
|
export type FlatRateLabelTransaction =
|
|
32774
33421
|
io.flow.internal.v0.models.FlatRateLabelTransaction;
|
|
32775
33422
|
export type FlatRateLabelTransactionType =
|
|
@@ -32948,6 +33595,32 @@ export type GoogleShoppingSetting =
|
|
|
32948
33595
|
io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
32949
33596
|
export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
32950
33597
|
export type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
33598
|
+
export type GuaranteedShippingCalibratedOutput =
|
|
33599
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibratedOutput;
|
|
33600
|
+
export type GuaranteedShippingCalibratedOutputDeleted =
|
|
33601
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputDeleted;
|
|
33602
|
+
export type GuaranteedShippingCalibratedOutputUpserted =
|
|
33603
|
+
io.flow.internal.v0.models.GuaranteedShippingCalibratedOutputUpserted;
|
|
33604
|
+
export type GuaranteedShippingPublishedOutput =
|
|
33605
|
+
io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
33606
|
+
export type GuaranteedShippingPublishedOutputDeleted =
|
|
33607
|
+
io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted;
|
|
33608
|
+
export type GuaranteedShippingPublishedOutputUpserted =
|
|
33609
|
+
io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted;
|
|
33610
|
+
export type GuaranteedShippingSettings =
|
|
33611
|
+
io.flow.internal.v0.models.GuaranteedShippingSettings;
|
|
33612
|
+
export type GuaranteedShippingSettingsDeleted =
|
|
33613
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsDeleted;
|
|
33614
|
+
export type GuaranteedShippingSettingsDestinationUpdate =
|
|
33615
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsDestinationUpdate;
|
|
33616
|
+
export type GuaranteedShippingSettingsUpdate =
|
|
33617
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsUpdate;
|
|
33618
|
+
export type GuaranteedShippingSettingsUpdateDeleted =
|
|
33619
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateDeleted;
|
|
33620
|
+
export type GuaranteedShippingSettingsUpdateUpserted =
|
|
33621
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsUpdateUpserted;
|
|
33622
|
+
export type GuaranteedShippingSettingsUpserted =
|
|
33623
|
+
io.flow.internal.v0.models.GuaranteedShippingSettingsUpserted;
|
|
32951
33624
|
export type HarmonizationClassificationStatisticsData =
|
|
32952
33625
|
io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
32953
33626
|
export type HarmonizationClassificationStatisticsPublished =
|
|
@@ -33042,6 +33715,9 @@ export type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm;
|
|
|
33042
33715
|
export type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
33043
33716
|
export type InvoiceLineItem = io.flow.internal.v0.models.InvoiceLineItem;
|
|
33044
33717
|
export type InvoiceTransaction = io.flow.internal.v0.models.InvoiceTransaction;
|
|
33718
|
+
export type Issuer = io.flow.internal.v0.models.Issuer;
|
|
33719
|
+
export type IssuerDeleted = io.flow.internal.v0.models.IssuerDeleted;
|
|
33720
|
+
export type IssuerUpserted = io.flow.internal.v0.models.IssuerUpserted;
|
|
33045
33721
|
export type ItemClassification = io.flow.internal.v0.models.ItemClassification;
|
|
33046
33722
|
export type ItemClassificationAction =
|
|
33047
33723
|
io.flow.internal.v0.enums.ItemClassificationAction;
|
|
@@ -33070,6 +33746,15 @@ export type ItemHarmonizationStatus =
|
|
|
33070
33746
|
io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
33071
33747
|
export type ItemHarmonizationUpserted =
|
|
33072
33748
|
io.flow.internal.v0.models.ItemHarmonizationUpserted;
|
|
33749
|
+
export type ItemHs6Override = io.flow.internal.v0.models.ItemHs6Override;
|
|
33750
|
+
export type ItemHs6OverrideForm =
|
|
33751
|
+
io.flow.internal.v0.models.ItemHs6OverrideForm;
|
|
33752
|
+
export type ItemHs6OverrideRejection =
|
|
33753
|
+
io.flow.internal.v0.models.ItemHs6OverrideRejection;
|
|
33754
|
+
export type ItemHs6OverrideResult =
|
|
33755
|
+
io.flow.internal.v0.models.ItemHs6OverrideResult;
|
|
33756
|
+
export type ItemHs6OverridesForm =
|
|
33757
|
+
io.flow.internal.v0.models.ItemHs6OverridesForm;
|
|
33073
33758
|
export type ItemQuantityAction = io.flow.internal.v0.enums.ItemQuantityAction;
|
|
33074
33759
|
export type ItemQueryResponse = io.flow.internal.v0.models.ItemQueryResponse;
|
|
33075
33760
|
export type ItemRestriction = io.flow.internal.v0.models.ItemRestriction;
|
|
@@ -33217,8 +33902,10 @@ export type LoyaltyProgramReward =
|
|
|
33217
33902
|
export type LoyaltyProgramRewards =
|
|
33218
33903
|
io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
33219
33904
|
export type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
33905
|
+
export type MaheshItemDeleted = io.flow.internal.v0.models.MaheshItemDeleted;
|
|
33220
33906
|
export type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
33221
33907
|
export type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
33908
|
+
export type MaheshItemUpserted = io.flow.internal.v0.models.MaheshItemUpserted;
|
|
33222
33909
|
export type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
33223
33910
|
export type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
33224
33911
|
export type MainTransactionDeleted =
|
|
@@ -33418,6 +34105,7 @@ export type OrderRevenueTimelineDataPoint =
|
|
|
33418
34105
|
io.flow.internal.v0.models.OrderRevenueTimelineDataPoint;
|
|
33419
34106
|
export type OrderServiceChangeCsvForm =
|
|
33420
34107
|
io.flow.internal.v0.models.OrderServiceChangeCsvForm;
|
|
34108
|
+
export type OrderSettings = io.flow.internal.v0.models.OrderSettings;
|
|
33421
34109
|
export type OrderSummary = io.flow.internal.v0.models.OrderSummary;
|
|
33422
34110
|
export type OrderTaxAndDutyInclusivitySetting =
|
|
33423
34111
|
io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
@@ -33598,6 +34286,12 @@ export type OtherRecordUpserted =
|
|
|
33598
34286
|
io.flow.internal.v0.models.OtherRecordUpserted;
|
|
33599
34287
|
export type OtherRecordWithholdings =
|
|
33600
34288
|
io.flow.internal.v0.models.OtherRecordWithholdings;
|
|
34289
|
+
export type OutboundShippingCost =
|
|
34290
|
+
io.flow.internal.v0.models.OutboundShippingCost;
|
|
34291
|
+
export type OutboundShippingCostDeleted =
|
|
34292
|
+
io.flow.internal.v0.models.OutboundShippingCostDeleted;
|
|
34293
|
+
export type OutboundShippingCostUpserted =
|
|
34294
|
+
io.flow.internal.v0.models.OutboundShippingCostUpserted;
|
|
33601
34295
|
export type OutputStyle = io.flow.internal.v0.enums.OutputStyle;
|
|
33602
34296
|
export type Owner = io.flow.internal.v0.enums.Owner;
|
|
33603
34297
|
export type Partner = io.flow.internal.v0.models.Partner;
|
|
@@ -33713,6 +34407,8 @@ export type PaypalRefundDeleted =
|
|
|
33713
34407
|
io.flow.internal.v0.models.PaypalRefundDeleted;
|
|
33714
34408
|
export type PaypalRefundUpserted =
|
|
33715
34409
|
io.flow.internal.v0.models.PaypalRefundUpserted;
|
|
34410
|
+
export type PcReviewContext = io.flow.internal.v0.models.PcReviewContext;
|
|
34411
|
+
export type PcReviewOutput = io.flow.internal.v0.models.PcReviewOutput;
|
|
33716
34412
|
export type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
33717
34413
|
export type PendingBankPaymentDetail =
|
|
33718
34414
|
io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
@@ -33883,6 +34579,9 @@ export type PspRoutingDistributionRevisionForm =
|
|
|
33883
34579
|
io.flow.internal.v0.models.PspRoutingDistributionRevisionForm;
|
|
33884
34580
|
export type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
33885
34581
|
export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
34582
|
+
export type PvDecision = io.flow.internal.v0.enums.PvDecision;
|
|
34583
|
+
export type PvReviewContext = io.flow.internal.v0.models.PvReviewContext;
|
|
34584
|
+
export type PvReviewOutput = io.flow.internal.v0.models.PvReviewOutput;
|
|
33886
34585
|
export type Quote = io.flow.internal.v0.models.Quote;
|
|
33887
34586
|
export type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
33888
34587
|
export type QuoteUpserted = io.flow.internal.v0.models.QuoteUpserted;
|
|
@@ -33936,8 +34635,6 @@ export type RatecardInternalServiceFee =
|
|
|
33936
34635
|
io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
33937
34636
|
export type RatecardInternalSummary =
|
|
33938
34637
|
io.flow.internal.v0.models.RatecardInternalSummary;
|
|
33939
|
-
export type RatecardLanesImportRequest =
|
|
33940
|
-
io.flow.internal.v0.models.RatecardLanesImportRequest;
|
|
33941
34638
|
export type RatecardRateLevelDeleted =
|
|
33942
34639
|
io.flow.internal.v0.models.RatecardRateLevelDeleted;
|
|
33943
34640
|
export type RatecardRateLevelOrganizationDeleted =
|
|
@@ -33954,10 +34651,6 @@ export type RatecardServiceFeeDeleted =
|
|
|
33954
34651
|
io.flow.internal.v0.models.RatecardServiceFeeDeleted;
|
|
33955
34652
|
export type RatecardServiceFeeUpserted =
|
|
33956
34653
|
io.flow.internal.v0.models.RatecardServiceFeeUpserted;
|
|
33957
|
-
export type RatecardServiceFeesOverride =
|
|
33958
|
-
io.flow.internal.v0.models.RatecardServiceFeesOverride;
|
|
33959
|
-
export type RatecardServiceFeesOverrideForm =
|
|
33960
|
-
io.flow.internal.v0.models.RatecardServiceFeesOverrideForm;
|
|
33961
34654
|
export type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
33962
34655
|
export type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
33963
34656
|
export type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
@@ -33976,6 +34669,9 @@ export type RegisteredExporterTariffEligibilityData =
|
|
|
33976
34669
|
export type RegisteredExporterTariffEligibilityForm =
|
|
33977
34670
|
io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
33978
34671
|
export type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
34672
|
+
export type RemediateTaxDutyArm = io.flow.internal.v0.enums.RemediateTaxDutyArm;
|
|
34673
|
+
export type RemediateTaxDutyMetadata =
|
|
34674
|
+
io.flow.internal.v0.models.RemediateTaxDutyMetadata;
|
|
33979
34675
|
export type RemittanceResponsibility =
|
|
33980
34676
|
io.flow.internal.v0.models.RemittanceResponsibility;
|
|
33981
34677
|
export type Report = io.flow.internal.v0.models.Report;
|
|
@@ -34023,6 +34719,8 @@ export type ReportingFees = io.flow.internal.v0.models.ReportingFees;
|
|
|
34023
34719
|
export type ReportingFreight = io.flow.internal.v0.models.ReportingFreight;
|
|
34024
34720
|
export type ReportingFreightGuaranteed =
|
|
34025
34721
|
io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
34722
|
+
export type ReportingFreightSubsidy =
|
|
34723
|
+
io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
34026
34724
|
export type ReportingFulfillment =
|
|
34027
34725
|
io.flow.internal.v0.models.ReportingFulfillment;
|
|
34028
34726
|
export type ReportingFulfillmentHas =
|
|
@@ -34032,6 +34730,7 @@ export type ReportingFulfillmentIs =
|
|
|
34032
34730
|
export type ReportingFulfillmentIsVirtual =
|
|
34033
34731
|
io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual;
|
|
34034
34732
|
export type ReportingFx = io.flow.internal.v0.models.ReportingFx;
|
|
34733
|
+
export type ReportingFxValue = io.flow.internal.v0.models.ReportingFxValue;
|
|
34035
34734
|
export type ReportingMerchantBreakdown =
|
|
34036
34735
|
io.flow.internal.v0.models.ReportingMerchantBreakdown;
|
|
34037
34736
|
export type ReportingMerchantFees =
|
|
@@ -34148,6 +34847,8 @@ export type RestrictionRuleEffectForm =
|
|
|
34148
34847
|
io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
34149
34848
|
export type RestrictionRuleEffectUpserted =
|
|
34150
34849
|
io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
34850
|
+
export type RestrictionRuleEvaluationMode =
|
|
34851
|
+
io.flow.internal.v0.enums.RestrictionRuleEvaluationMode;
|
|
34151
34852
|
export type RestrictionRuleExceptionAction =
|
|
34152
34853
|
io.flow.internal.v0.enums.RestrictionRuleExceptionAction;
|
|
34153
34854
|
export type RestrictionRuleForm =
|
|
@@ -34217,6 +34918,7 @@ export type RevenueRecordDeleted =
|
|
|
34217
34918
|
export type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
|
|
34218
34919
|
export type RevenueRecordUpserted =
|
|
34219
34920
|
io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
34921
|
+
export type ReviewRequestItem = io.flow.internal.v0.models.ReviewRequestItem;
|
|
34220
34922
|
export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
34221
34923
|
export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
34222
34924
|
export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
@@ -34224,6 +34926,10 @@ export type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
|
34224
34926
|
export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
34225
34927
|
export type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
34226
34928
|
export type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
|
|
34929
|
+
export type SalesPaymentRecordDeleted =
|
|
34930
|
+
io.flow.internal.v0.models.SalesPaymentRecordDeleted;
|
|
34931
|
+
export type SalesPaymentRecordUpserted =
|
|
34932
|
+
io.flow.internal.v0.models.SalesPaymentRecordUpserted;
|
|
34227
34933
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
34228
34934
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
34229
34935
|
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
@@ -34253,7 +34959,15 @@ export type SellabilityCheckStatus =
|
|
|
34253
34959
|
io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
34254
34960
|
export type SellabilityInternalMatchType =
|
|
34255
34961
|
io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
34962
|
+
export type SellabilityPendingVerification =
|
|
34963
|
+
io.flow.internal.v0.models.SellabilityPendingVerification;
|
|
34964
|
+
export type SellabilityPendingVerificationDeleted =
|
|
34965
|
+
io.flow.internal.v0.models.SellabilityPendingVerificationDeleted;
|
|
34966
|
+
export type SellabilityPendingVerificationUpserted =
|
|
34967
|
+
io.flow.internal.v0.models.SellabilityPendingVerificationUpserted;
|
|
34256
34968
|
export type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
34969
|
+
export type ServiceFees = io.flow.internal.v0.models.ServiceFees;
|
|
34970
|
+
export type ServiceFeesForm = io.flow.internal.v0.models.ServiceFeesForm;
|
|
34257
34971
|
export type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
34258
34972
|
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
34259
34973
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
@@ -34275,12 +34989,6 @@ export type ShippingRateEstimateInternal =
|
|
|
34275
34989
|
io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
34276
34990
|
export type ShippingRateEstimateRequestInternal =
|
|
34277
34991
|
io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
|
|
34278
|
-
export type ShopifyAdaptivePricingCoefficients =
|
|
34279
|
-
io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficients;
|
|
34280
|
-
export type ShopifyAdaptivePricingCoefficientsDeleted =
|
|
34281
|
-
io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted;
|
|
34282
|
-
export type ShopifyAdaptivePricingCoefficientsUpserted =
|
|
34283
|
-
io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted;
|
|
34284
34992
|
export type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
|
|
34285
34993
|
export type ShopifyCallbackError =
|
|
34286
34994
|
io.flow.internal.v0.models.ShopifyCallbackError;
|
|
@@ -34297,6 +35005,7 @@ export type ShopifyChannelOrganizationTokens =
|
|
|
34297
35005
|
export type ShopifyChargeCode = io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
34298
35006
|
export type ShopifyContactDetails =
|
|
34299
35007
|
io.flow.internal.v0.models.ShopifyContactDetails;
|
|
35008
|
+
export type ShopifyCost = io.flow.internal.v0.models.ShopifyCost;
|
|
34300
35009
|
export type ShopifyDeliveryMethodType =
|
|
34301
35010
|
io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
34302
35011
|
export type ShopifyDimensionUnit =
|
|
@@ -34542,8 +35251,6 @@ export type ShopifyShipmentRateShipment =
|
|
|
34542
35251
|
io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
34543
35252
|
export type ShopifyShipmentRateShipper =
|
|
34544
35253
|
io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
34545
|
-
export type ShopifyShipmentRateTotalCharges =
|
|
34546
|
-
io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
34547
35254
|
export type ShopifyShipmentRateUnavailable =
|
|
34548
35255
|
io.flow.internal.v0.models.ShopifyShipmentRateUnavailable;
|
|
34549
35256
|
export type ShopifyShippingLocation =
|
|
@@ -34882,6 +35589,12 @@ export type UnharmonizedItemsExport =
|
|
|
34882
35589
|
io.flow.internal.v0.models.UnharmonizedItemsExport;
|
|
34883
35590
|
export type UnphrasedProductsExport =
|
|
34884
35591
|
io.flow.internal.v0.models.UnphrasedProductsExport;
|
|
35592
|
+
export type UnserviceableTaxonomyCategory =
|
|
35593
|
+
io.flow.internal.v0.models.UnserviceableTaxonomyCategory;
|
|
35594
|
+
export type UnserviceableTaxonomyCategoryDeleted =
|
|
35595
|
+
io.flow.internal.v0.models.UnserviceableTaxonomyCategoryDeleted;
|
|
35596
|
+
export type UnserviceableTaxonomyCategoryUpserted =
|
|
35597
|
+
io.flow.internal.v0.models.UnserviceableTaxonomyCategoryUpserted;
|
|
34885
35598
|
export type Ups = io.flow.internal.v0.models.Ups;
|
|
34886
35599
|
export type UsdSpotRate = io.flow.internal.v0.models.UsdSpotRate;
|
|
34887
35600
|
export type UsdSpotRateDeleted = io.flow.internal.v0.models.UsdSpotRateDeleted;
|