@flowio/types 11.24.138 → 11.24.139
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 +338 -130
- package/dist/api.d.ts +81 -45
- package/package.json +1 -1
- package/src/api-internal.ts +430 -156
- package/src/api.ts +107 -51
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';
|
|
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 {
|
|
@@ -7041,12 +7056,6 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7041
7056
|
readonly destination: string;
|
|
7042
7057
|
}
|
|
7043
7058
|
|
|
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
7059
|
interface ShopifyHs10Code {
|
|
7051
7060
|
readonly country_code?: string;
|
|
7052
7061
|
readonly code: string;
|
|
@@ -7167,6 +7176,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7167
7176
|
interface ShopifyMerchantMarketCountry {
|
|
7168
7177
|
readonly code: string;
|
|
7169
7178
|
readonly actively_managing: boolean;
|
|
7179
|
+
readonly enabled: boolean;
|
|
7170
7180
|
}
|
|
7171
7181
|
|
|
7172
7182
|
interface ShopifyMerchantMarkets {
|
|
@@ -7294,6 +7304,42 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
7294
7304
|
readonly voids_b2b_invoice?: boolean;
|
|
7295
7305
|
}
|
|
7296
7306
|
|
|
7307
|
+
interface B2BCreditNote {
|
|
7308
|
+
readonly id: string;
|
|
7309
|
+
readonly number: string;
|
|
7310
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
7311
|
+
readonly date: string;
|
|
7312
|
+
readonly key: string;
|
|
7313
|
+
readonly debit_note: io.flow.consumer.invoice.v0.models.B2BDebitNoteReference;
|
|
7314
|
+
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
7315
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
7316
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
7317
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
7318
|
+
readonly attributes: Record<string, string>;
|
|
7319
|
+
readonly voids_b2b_debit_note?: boolean;
|
|
7320
|
+
}
|
|
7321
|
+
|
|
7322
|
+
interface B2BDebitNote {
|
|
7323
|
+
readonly id: string;
|
|
7324
|
+
readonly number: string;
|
|
7325
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7326
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
7327
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
7328
|
+
readonly date: string;
|
|
7329
|
+
readonly key: string;
|
|
7330
|
+
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
7331
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
7332
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
7333
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
7334
|
+
readonly attributes: Record<string, string>;
|
|
7335
|
+
}
|
|
7336
|
+
|
|
7337
|
+
interface B2BDebitNoteReference {
|
|
7338
|
+
readonly id: string;
|
|
7339
|
+
readonly key: string;
|
|
7340
|
+
readonly number: string;
|
|
7341
|
+
}
|
|
7342
|
+
|
|
7297
7343
|
interface B2BInvoice {
|
|
7298
7344
|
readonly id: string;
|
|
7299
7345
|
readonly number: string;
|
|
@@ -9576,8 +9622,8 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9576
9622
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
9577
9623
|
}
|
|
9578
9624
|
|
|
9579
|
-
interface
|
|
9580
|
-
readonly
|
|
9625
|
+
interface ShopifyAdaptivePricingDestination {
|
|
9626
|
+
readonly country_code: string;
|
|
9581
9627
|
readonly updated_at: string;
|
|
9582
9628
|
readonly tax_and_duty_coefficient: string;
|
|
9583
9629
|
readonly fees_coefficient: string;
|
|
@@ -9587,6 +9633,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9587
9633
|
readonly adaptive_shipping_enabled: boolean;
|
|
9588
9634
|
}
|
|
9589
9635
|
|
|
9636
|
+
interface ShopifyAdaptivePricingDestinationsWrapper {
|
|
9637
|
+
readonly destinations: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestination[];
|
|
9638
|
+
}
|
|
9639
|
+
|
|
9590
9640
|
interface ShopifyAppliedDiscount {
|
|
9591
9641
|
readonly title?: string;
|
|
9592
9642
|
readonly description?: string;
|
|
@@ -11062,6 +11112,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
11062
11112
|
readonly created_at?: string;
|
|
11063
11113
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
11064
11114
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
11115
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
11065
11116
|
}
|
|
11066
11117
|
|
|
11067
11118
|
interface OrganizationDefaults {
|
|
@@ -11075,6 +11126,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
11075
11126
|
interface OrganizationReference {
|
|
11076
11127
|
readonly discriminator: 'organization_reference';
|
|
11077
11128
|
readonly id: string;
|
|
11129
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
11078
11130
|
}
|
|
11079
11131
|
|
|
11080
11132
|
interface OrganizationSummary {
|
|
@@ -11266,22 +11318,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11266
11318
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
11267
11319
|
}
|
|
11268
11320
|
|
|
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
11321
|
interface ShopifyIncotermIncludes {
|
|
11286
11322
|
readonly duties: boolean;
|
|
11287
11323
|
readonly taxes: boolean;
|
|
@@ -11551,8 +11587,6 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
11551
11587
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted
|
|
11552
11588
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted
|
|
11553
11589
|
| 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
11590
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted
|
|
11557
11591
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted;
|
|
11558
11592
|
}
|
|
@@ -12941,6 +12975,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12941
12975
|
interface LaneSummary {
|
|
12942
12976
|
readonly id: string;
|
|
12943
12977
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
12978
|
+
readonly dim_factor: number;
|
|
12944
12979
|
}
|
|
12945
12980
|
|
|
12946
12981
|
interface LargePackageServiceFee {
|
|
@@ -13016,6 +13051,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13016
13051
|
readonly glbe_shipping_method_id?: string;
|
|
13017
13052
|
readonly glbe_proposition_name?: string;
|
|
13018
13053
|
readonly channel_revenue_share_percentage?: number;
|
|
13054
|
+
readonly channel_id?: string;
|
|
13019
13055
|
}
|
|
13020
13056
|
|
|
13021
13057
|
interface RatecardCarrierSummary {
|
|
@@ -13118,6 +13154,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13118
13154
|
readonly glbe_shipping_method_id?: string;
|
|
13119
13155
|
readonly glbe_proposition_name?: string;
|
|
13120
13156
|
readonly channel_revenue_share_percentage?: number;
|
|
13157
|
+
readonly channel_id?: string;
|
|
13121
13158
|
readonly data?: io.flow.ratecard.v0.models.RatecardData;
|
|
13122
13159
|
}
|
|
13123
13160
|
|
|
@@ -13153,20 +13190,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13153
13190
|
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13154
13191
|
}
|
|
13155
13192
|
|
|
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
13193
|
interface RatecardLaneVersion {
|
|
13171
13194
|
readonly id: string;
|
|
13172
13195
|
readonly timestamp: string;
|
|
@@ -13174,14 +13197,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13174
13197
|
readonly ratecard_lane: io.flow.ratecard.v0.models.RatecardLane;
|
|
13175
13198
|
}
|
|
13176
13199
|
|
|
13177
|
-
interface RatecardLanesImportRequestData {
|
|
13178
|
-
readonly id: string;
|
|
13179
|
-
readonly source_url: string;
|
|
13180
|
-
readonly filename?: string;
|
|
13181
|
-
}
|
|
13182
|
-
|
|
13183
13200
|
interface RatecardRate {
|
|
13184
|
-
readonly id: string;
|
|
13185
13201
|
readonly amount: number;
|
|
13186
13202
|
readonly weight: number;
|
|
13187
13203
|
}
|
|
@@ -13191,13 +13207,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13191
13207
|
readonly weight: number;
|
|
13192
13208
|
}
|
|
13193
13209
|
|
|
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
13210
|
interface RatecardReference {
|
|
13202
13211
|
readonly id: string;
|
|
13203
13212
|
}
|
|
@@ -14654,6 +14663,19 @@ declare namespace io.flow.catalog.v0.enums {
|
|
|
14654
14663
|
| 'max_days_to_ship'
|
|
14655
14664
|
| 'commercial_invoice_item_number'
|
|
14656
14665
|
| 'include_in_product_feeds';
|
|
14666
|
+
type CpscAttribute =
|
|
14667
|
+
| 'certification_id'
|
|
14668
|
+
| 'citation_codes'
|
|
14669
|
+
| 'manufactured_date'
|
|
14670
|
+
| 'manufactured_location'
|
|
14671
|
+
| 'product_test_date'
|
|
14672
|
+
| 'test_lab_name'
|
|
14673
|
+
| 'point_of_contact'
|
|
14674
|
+
| 'certification_version'
|
|
14675
|
+
| 'certification_product_id'
|
|
14676
|
+
| 'certificate_type'
|
|
14677
|
+
| 'lab_type'
|
|
14678
|
+
| 'taxonomy_reference';
|
|
14657
14679
|
type FulfillmentMethodType = 'fulfillment_method';
|
|
14658
14680
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
14659
14681
|
type ImageTag = 'thumbnail' | 'checkout';
|
|
@@ -15363,7 +15385,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15363
15385
|
| 'unfulfilled_amount_greater_than_negative_balance'
|
|
15364
15386
|
| 'account_payment_hold';
|
|
15365
15387
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
15366
|
-
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
15388
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
15367
15389
|
type TaxDutyTransactionReasonCode =
|
|
15368
15390
|
| 'post_capture'
|
|
15369
15391
|
| 'post_fulfilment'
|
|
@@ -15414,7 +15436,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15414
15436
|
| 'b2b_tax_refund'
|
|
15415
15437
|
| 'b2b_fee_mor_tax'
|
|
15416
15438
|
| 'b2b_fee_shipping_tax'
|
|
15417
|
-
| 'flat_rate_label'
|
|
15439
|
+
| 'flat_rate_label'
|
|
15440
|
+
| 'flat_rate_label_subsidy';
|
|
15418
15441
|
type TrueupSource =
|
|
15419
15442
|
| 'flow'
|
|
15420
15443
|
| 'channel'
|
|
@@ -15624,6 +15647,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15624
15647
|
readonly reason: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
15625
15648
|
}
|
|
15626
15649
|
|
|
15650
|
+
interface PayoutStatusPaid {
|
|
15651
|
+
readonly code: 'paid';
|
|
15652
|
+
readonly timestamp: string;
|
|
15653
|
+
}
|
|
15654
|
+
|
|
15627
15655
|
interface PayoutStatusScheduled {
|
|
15628
15656
|
readonly code: 'scheduled';
|
|
15629
15657
|
readonly placeholder?: string;
|
|
@@ -15794,6 +15822,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15794
15822
|
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
15795
15823
|
readonly carrier: io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
15796
15824
|
readonly revenue_share_percentage?: number;
|
|
15825
|
+
readonly actual?: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
15797
15826
|
}
|
|
15798
15827
|
|
|
15799
15828
|
interface TransactionMetadataShippingLabelCarrier {
|
|
@@ -15926,7 +15955,8 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
15926
15955
|
type PayoutStatus =
|
|
15927
15956
|
| io.flow.billing.v0.models.PayoutStatusScheduled
|
|
15928
15957
|
| io.flow.billing.v0.models.PayoutStatusSent
|
|
15929
|
-
| io.flow.billing.v0.models.PayoutStatusFailed
|
|
15958
|
+
| io.flow.billing.v0.models.PayoutStatusFailed
|
|
15959
|
+
| io.flow.billing.v0.models.PayoutStatusPaid;
|
|
15930
15960
|
type Settlement =
|
|
15931
15961
|
| io.flow.billing.v0.models.SettlementNoPayout
|
|
15932
15962
|
| io.flow.billing.v0.models.SettlementPayout;
|
|
@@ -16486,6 +16516,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
16486
16516
|
readonly price: io.flow.common.v0.models.Money;
|
|
16487
16517
|
readonly description: string;
|
|
16488
16518
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16519
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16489
16520
|
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
16490
16521
|
readonly catalog_size?: number;
|
|
16491
16522
|
readonly relative_ranking?: number;
|
|
@@ -16666,6 +16697,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
16666
16697
|
readonly province?: string;
|
|
16667
16698
|
readonly self_billing_agreement_effective_at: string;
|
|
16668
16699
|
readonly self_billing_agreement_expires_at?: string;
|
|
16700
|
+
readonly legal_name?: string;
|
|
16669
16701
|
}
|
|
16670
16702
|
|
|
16671
16703
|
interface OrganizationVersion {
|
|
@@ -16695,6 +16727,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
16695
16727
|
readonly country: string;
|
|
16696
16728
|
readonly tax_code: string;
|
|
16697
16729
|
readonly province?: string;
|
|
16730
|
+
readonly legal_name?: string;
|
|
16698
16731
|
}
|
|
16699
16732
|
}
|
|
16700
16733
|
|
|
@@ -16725,18 +16758,6 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
16725
16758
|
|
|
16726
16759
|
interface BankAccountInfoKor {
|
|
16727
16760
|
readonly discriminator: 'kor';
|
|
16728
|
-
readonly name?: string;
|
|
16729
|
-
readonly address?: io.flow.common.v0.models.Address;
|
|
16730
|
-
readonly phone?: string;
|
|
16731
|
-
readonly email?: string;
|
|
16732
|
-
readonly bank_account_number: string;
|
|
16733
|
-
readonly bank_routing_number?: string;
|
|
16734
|
-
readonly bank_name?: string;
|
|
16735
|
-
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
16736
|
-
}
|
|
16737
|
-
|
|
16738
|
-
interface BankAccountInfoKorV2 {
|
|
16739
|
-
readonly discriminator: 'kor_v2';
|
|
16740
16761
|
readonly name: string;
|
|
16741
16762
|
readonly bank_account_number: string;
|
|
16742
16763
|
readonly bank_routing_number: string;
|
|
@@ -16757,8 +16778,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16757
16778
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
|
|
16758
16779
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoFra
|
|
16759
16780
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta
|
|
16760
|
-
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
16761
|
-
| io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2;
|
|
16781
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
|
|
16762
16782
|
}
|
|
16763
16783
|
|
|
16764
16784
|
declare namespace io.flow.internal.v0.enums {
|
|
@@ -16798,7 +16818,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16798
16818
|
| 'prr-76544617791b4ce8af96b3a7879474c6'
|
|
16799
16819
|
| 'prr-566cc67167944bc4bd08167aa9c0beba'
|
|
16800
16820
|
| 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
16801
|
-
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
16821
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order' | 'settings';
|
|
16802
16822
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
16803
16823
|
type B2BTaxLedgerDocumentType =
|
|
16804
16824
|
| 'b2b_invoice'
|
|
@@ -16810,7 +16830,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16810
16830
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
16811
16831
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
16812
16832
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16813
|
-
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
16833
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
16814
16834
|
type BillingAllocationKey =
|
|
16815
16835
|
| 'freight_cost'
|
|
16816
16836
|
| 'adjustment'
|
|
@@ -17083,7 +17103,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17083
17103
|
| 'b2b_tax_refund'
|
|
17084
17104
|
| 'b2b_fee_mor_tax'
|
|
17085
17105
|
| 'b2b_fee_shipping_tax'
|
|
17086
|
-
| 'flat_rate_label'
|
|
17106
|
+
| 'flat_rate_label'
|
|
17107
|
+
| 'flat_rate_label_subsidy';
|
|
17087
17108
|
type BojanaItemType = 'physical' | 'digital';
|
|
17088
17109
|
type CalculatorEngine =
|
|
17089
17110
|
| 'dtce_with_deminimis'
|
|
@@ -17231,6 +17252,25 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17231
17252
|
| 'ManagedMarketsChargeCredit'
|
|
17232
17253
|
| 'ManagedMarketsDisputeWonAmountCredit'
|
|
17233
17254
|
| 'ManagedMarketsDutiesAndTaxesAdjustmentCredit';
|
|
17255
|
+
type CpscCertificateType = 'GCC' | 'CPC';
|
|
17256
|
+
type CpscFileType = 'GeRegistered' | 'PreRegistered';
|
|
17257
|
+
type CpscLabType = 'ITL' | 'LAB' | 'NOL';
|
|
17258
|
+
type CpscLotNumberAssignedBy = 'Seller' | 'Manufacturer';
|
|
17259
|
+
type CpscPointOfContactType =
|
|
17260
|
+
| 'Importer'
|
|
17261
|
+
| 'Manufacturer'
|
|
17262
|
+
| 'Laboratory'
|
|
17263
|
+
| 'Broker'
|
|
17264
|
+
| 'Other';
|
|
17265
|
+
type CpscPrimaryProductIdType =
|
|
17266
|
+
| 'GTIN'
|
|
17267
|
+
| 'UPC'
|
|
17268
|
+
| 'SKU'
|
|
17269
|
+
| 'Model Number'
|
|
17270
|
+
| 'Serial Number'
|
|
17271
|
+
| 'Registered Number'
|
|
17272
|
+
| 'Alternate Identifier';
|
|
17273
|
+
type CpscYesNo = 'Y' | 'N';
|
|
17234
17274
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
17235
17275
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
17236
17276
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -17282,6 +17322,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17282
17322
|
type ErpFileType = 'vendor';
|
|
17283
17323
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
17284
17324
|
type EventType =
|
|
17325
|
+
| 'adaptive_pricing_coefficient_upserted'
|
|
17326
|
+
| 'adaptive_pricing_coefficient_deleted'
|
|
17327
|
+
| 'adaptive_pricing_update_upserted'
|
|
17328
|
+
| 'adaptive_pricing_update_deleted'
|
|
17285
17329
|
| 'adaptive_shipping_rate_upserted'
|
|
17286
17330
|
| 'adaptive_shipping_rate_deleted'
|
|
17287
17331
|
| 'adyen_authorization_deleted'
|
|
@@ -17348,6 +17392,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17348
17392
|
| 'revenue_record_deleted'
|
|
17349
17393
|
| 'other_record_upserted'
|
|
17350
17394
|
| 'other_record_deleted'
|
|
17395
|
+
| 'sales_payment_record_upserted'
|
|
17396
|
+
| 'sales_payment_record_deleted'
|
|
17351
17397
|
| 'calculator_organization_settings_upserted'
|
|
17352
17398
|
| 'calculator_organization_settings_deleted'
|
|
17353
17399
|
| 'carrier_account_upserted_v2'
|
|
@@ -17454,6 +17500,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17454
17500
|
| 'fulfillment_fallbacks_deleted'
|
|
17455
17501
|
| 'quote_upserted'
|
|
17456
17502
|
| 'quote_deleted'
|
|
17503
|
+
| 'guaranteed_shipping_published_output_upserted'
|
|
17504
|
+
| 'guaranteed_shipping_published_output_deleted'
|
|
17457
17505
|
| 'all_items_export'
|
|
17458
17506
|
| 'harmonized_items_hs6_export'
|
|
17459
17507
|
| 'unharmonized_items_export'
|
|
@@ -17558,7 +17606,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17558
17606
|
| 'order_rates_published_v3'
|
|
17559
17607
|
| 'ratecard_dimension_estimate_upserted'
|
|
17560
17608
|
| 'ratecard_dimension_estimate_deleted'
|
|
17561
|
-
| 'ratecard_lanes_import_request'
|
|
17562
17609
|
| 'ratecard_service_fee_upserted'
|
|
17563
17610
|
| 'ratecard_service_fee_deleted'
|
|
17564
17611
|
| 'ratecard_rate_level_upserted'
|
|
@@ -17620,8 +17667,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17620
17667
|
| 'shopify_order_transaction_deleted'
|
|
17621
17668
|
| 'shopify_test_order_upserted'
|
|
17622
17669
|
| 'shopify_test_order_deleted'
|
|
17623
|
-
| 'shopify_adaptive_pricing_coefficients_upserted'
|
|
17624
|
-
| 'shopify_adaptive_pricing_coefficients_deleted'
|
|
17625
17670
|
| 'shopify_merchant_markets_upserted'
|
|
17626
17671
|
| 'shopify_merchant_markets_deleted'
|
|
17627
17672
|
| 'shopify_product_create_upserted'
|
|
@@ -17670,6 +17715,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17670
17715
|
| 'bojana_item_deleted'
|
|
17671
17716
|
| 'raveena_item_upserted'
|
|
17672
17717
|
| 'raveena_item_deleted'
|
|
17718
|
+
| 'mahesh_item_upserted'
|
|
17719
|
+
| 'mahesh_item_deleted'
|
|
17673
17720
|
| 'tracking_processing_error_upserted'
|
|
17674
17721
|
| 'tracking_processing_error_deleted'
|
|
17675
17722
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -17699,7 +17746,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17699
17746
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
17700
17747
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
17701
17748
|
type FileType = 'pdf';
|
|
17702
|
-
type
|
|
17749
|
+
type FlatRateLabelGuaranteeStatus = 'active' | 'void';
|
|
17750
|
+
type FlatRateLabelTransactionType =
|
|
17751
|
+
| 'adjustment'
|
|
17752
|
+
| 'reversal'
|
|
17753
|
+
| 'fee'
|
|
17754
|
+
| 'subsidy';
|
|
17703
17755
|
type FraudProvider =
|
|
17704
17756
|
| 'flow'
|
|
17705
17757
|
| 'forter'
|
|
@@ -18051,6 +18103,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
18051
18103
|
| 'shopify-sandbox'
|
|
18052
18104
|
| 'enterprise-sandbox'
|
|
18053
18105
|
| 'enterprise-qa'
|
|
18106
|
+
| 'globale'
|
|
18107
|
+
| 'globale-sandbox'
|
|
18054
18108
|
| 'cafe24'
|
|
18055
18109
|
| 'cafe24-sandbox';
|
|
18056
18110
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
@@ -18553,13 +18607,41 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18553
18607
|
readonly quantity: number;
|
|
18554
18608
|
}
|
|
18555
18609
|
|
|
18610
|
+
interface AdaptivePricingCoefficient {
|
|
18611
|
+
readonly coefficients_updated_at: number;
|
|
18612
|
+
readonly channel_id: string;
|
|
18613
|
+
readonly organization_id: string;
|
|
18614
|
+
readonly destination_country: string;
|
|
18615
|
+
readonly tax_and_duty_coefficient: number;
|
|
18616
|
+
readonly fees_coefficient: number;
|
|
18617
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
18618
|
+
readonly created_at: number;
|
|
18619
|
+
}
|
|
18620
|
+
|
|
18621
|
+
interface AdaptivePricingCoefficientDeleted {
|
|
18622
|
+
readonly discriminator: 'adaptive_pricing_coefficient_deleted';
|
|
18623
|
+
readonly event_id: string;
|
|
18624
|
+
readonly timestamp: string;
|
|
18625
|
+
readonly organization: string;
|
|
18626
|
+
readonly channel_id: string;
|
|
18627
|
+
readonly id: string;
|
|
18628
|
+
}
|
|
18629
|
+
|
|
18630
|
+
interface AdaptivePricingCoefficientUpserted {
|
|
18631
|
+
readonly discriminator: 'adaptive_pricing_coefficient_upserted';
|
|
18632
|
+
readonly event_id: string;
|
|
18633
|
+
readonly timestamp: string;
|
|
18634
|
+
readonly organization: string;
|
|
18635
|
+
readonly channel_id: string;
|
|
18636
|
+
readonly adaptive_pricing_coefficient: io.flow.internal.v0.models.AdaptivePricingCoefficient;
|
|
18637
|
+
}
|
|
18638
|
+
|
|
18556
18639
|
interface AdaptivePricingDestinationUpdate {
|
|
18557
|
-
readonly
|
|
18640
|
+
readonly country: string;
|
|
18558
18641
|
readonly updated_at: string;
|
|
18559
18642
|
readonly tax_and_duty_coefficient: number;
|
|
18560
18643
|
readonly fees_coefficient: number;
|
|
18561
|
-
readonly
|
|
18562
|
-
readonly merchant_subsidy_currency: string;
|
|
18644
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
18563
18645
|
}
|
|
18564
18646
|
|
|
18565
18647
|
interface AdaptivePricingUpdate {
|
|
@@ -18568,6 +18650,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18568
18650
|
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
18569
18651
|
}
|
|
18570
18652
|
|
|
18653
|
+
interface AdaptivePricingUpdateDeleted {
|
|
18654
|
+
readonly discriminator: 'adaptive_pricing_update_deleted';
|
|
18655
|
+
readonly event_id: string;
|
|
18656
|
+
readonly timestamp: string;
|
|
18657
|
+
readonly organization: string;
|
|
18658
|
+
readonly channel_id: string;
|
|
18659
|
+
readonly id: string;
|
|
18660
|
+
}
|
|
18661
|
+
|
|
18662
|
+
interface AdaptivePricingUpdateUpserted {
|
|
18663
|
+
readonly discriminator: 'adaptive_pricing_update_upserted';
|
|
18664
|
+
readonly event_id: string;
|
|
18665
|
+
readonly timestamp: string;
|
|
18666
|
+
readonly organization: string;
|
|
18667
|
+
readonly channel_id: string;
|
|
18668
|
+
readonly adaptive_pricing_update: io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
18669
|
+
}
|
|
18670
|
+
|
|
18571
18671
|
interface AdaptiveShippingOrderGuarantee {
|
|
18572
18672
|
readonly id: string;
|
|
18573
18673
|
readonly organization_id: string;
|
|
@@ -19311,6 +19411,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19311
19411
|
readonly expected_delivery_by?: string;
|
|
19312
19412
|
readonly attributes?: Record<string, string>;
|
|
19313
19413
|
readonly total: io.flow.common.v0.models.Price;
|
|
19414
|
+
readonly created_at?: string;
|
|
19415
|
+
readonly failed_on?: string;
|
|
19314
19416
|
}
|
|
19315
19417
|
|
|
19316
19418
|
interface BankPaymentDeletedV2 {
|
|
@@ -19602,6 +19704,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19602
19704
|
readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
|
|
19603
19705
|
readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
|
|
19604
19706
|
readonly flat_rate_label: io.flow.common.v0.models.Price;
|
|
19707
|
+
readonly flat_rate_label_subsidy: io.flow.common.v0.models.Price;
|
|
19605
19708
|
}
|
|
19606
19709
|
|
|
19607
19710
|
interface BillingStatementUpserted {
|
|
@@ -21096,6 +21199,93 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21096
21199
|
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
21097
21200
|
}
|
|
21098
21201
|
|
|
21202
|
+
interface CpscProductRegistration {
|
|
21203
|
+
readonly product_update: boolean;
|
|
21204
|
+
readonly current_version_id?: string;
|
|
21205
|
+
readonly new_version_id: string;
|
|
21206
|
+
readonly primary_product_id: string;
|
|
21207
|
+
readonly primary_product_id_type: io.flow.internal.v0.enums.CpscPrimaryProductIdType;
|
|
21208
|
+
readonly gtin?: string;
|
|
21209
|
+
readonly upc?: string;
|
|
21210
|
+
readonly sku?: string;
|
|
21211
|
+
readonly model_number?: string;
|
|
21212
|
+
readonly serial_number?: string;
|
|
21213
|
+
readonly registered_number?: string;
|
|
21214
|
+
readonly alternate_identifier?: string;
|
|
21215
|
+
readonly certificate_type: io.flow.internal.v0.enums.CpscCertificateType;
|
|
21216
|
+
readonly product_name: string;
|
|
21217
|
+
readonly trade_brand_name?: string;
|
|
21218
|
+
readonly product_description?: string;
|
|
21219
|
+
readonly product_color?: string;
|
|
21220
|
+
readonly product_style?: string;
|
|
21221
|
+
readonly manufacturer_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
21222
|
+
readonly manufacturer_gln?: string;
|
|
21223
|
+
readonly manufacturer_alternate_id?: string;
|
|
21224
|
+
readonly manufacturer_name?: string;
|
|
21225
|
+
readonly small_batch_manufacturer_cpsc_id?: string;
|
|
21226
|
+
readonly manufacturer_address_line_1?: string;
|
|
21227
|
+
readonly manufacturer_address_line_2?: string;
|
|
21228
|
+
readonly manufacturer_apt_suite_number?: string;
|
|
21229
|
+
readonly manufacturer_city?: string;
|
|
21230
|
+
readonly manufacturer_state_province?: string;
|
|
21231
|
+
readonly manufacturer_country?: string;
|
|
21232
|
+
readonly manufacturer_zip_postal_code?: string;
|
|
21233
|
+
readonly manufacturer_phone?: string;
|
|
21234
|
+
readonly manufacturer_email?: string;
|
|
21235
|
+
readonly manufacture_date: string;
|
|
21236
|
+
readonly production_start_date?: string;
|
|
21237
|
+
readonly production_end_date?: string;
|
|
21238
|
+
readonly lot_number?: string;
|
|
21239
|
+
readonly lot_number_assigned_by?: io.flow.internal.v0.enums.CpscLotNumberAssignedBy;
|
|
21240
|
+
readonly lab_1_type: io.flow.internal.v0.enums.CpscLabType;
|
|
21241
|
+
readonly lab_1_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
21242
|
+
readonly lab_1_cpsc_id?: string;
|
|
21243
|
+
readonly lab_1_alternate_id?: string;
|
|
21244
|
+
readonly lab_1_gln?: string;
|
|
21245
|
+
readonly lab_1_name?: string;
|
|
21246
|
+
readonly lab_1_address_line_1?: string;
|
|
21247
|
+
readonly lab_1_address_line_2?: string;
|
|
21248
|
+
readonly lab_1_apt_suite_number?: string;
|
|
21249
|
+
readonly lab_1_city?: string;
|
|
21250
|
+
readonly lab_1_state_province?: string;
|
|
21251
|
+
readonly lab_1_country?: string;
|
|
21252
|
+
readonly lab_1_zip_postal_code?: string;
|
|
21253
|
+
readonly lab_1_phone?: string;
|
|
21254
|
+
readonly lab_1_email?: string;
|
|
21255
|
+
readonly lab_1_citation_codes: string;
|
|
21256
|
+
readonly lab_1_test_report_id?: string;
|
|
21257
|
+
readonly lab_1_test_url?: string;
|
|
21258
|
+
readonly lab_1_test_report_access_key?: string;
|
|
21259
|
+
readonly lab_1_is_component?: boolean;
|
|
21260
|
+
readonly lab_1_component_description?: string;
|
|
21261
|
+
readonly last_test_date?: string;
|
|
21262
|
+
readonly poc_for_test_records: io.flow.internal.v0.enums.CpscPointOfContactType;
|
|
21263
|
+
readonly poc_is_new?: io.flow.internal.v0.enums.CpscYesNo;
|
|
21264
|
+
readonly poc_alternate_id?: string;
|
|
21265
|
+
readonly poc_gln?: string;
|
|
21266
|
+
readonly poc_name?: string;
|
|
21267
|
+
readonly poc_address_line_1?: string;
|
|
21268
|
+
readonly poc_address_line_2?: string;
|
|
21269
|
+
readonly poc_apt_suite_number?: string;
|
|
21270
|
+
readonly poc_city?: string;
|
|
21271
|
+
readonly poc_state_province?: string;
|
|
21272
|
+
readonly poc_country?: string;
|
|
21273
|
+
readonly poc_zip_postal_code?: string;
|
|
21274
|
+
readonly poc_phone?: string;
|
|
21275
|
+
readonly poc_email?: string;
|
|
21276
|
+
}
|
|
21277
|
+
|
|
21278
|
+
interface CpscQueueEnvelope {
|
|
21279
|
+
readonly messageType: string[];
|
|
21280
|
+
readonly message: io.flow.internal.v0.models.CpscQueueMessage;
|
|
21281
|
+
}
|
|
21282
|
+
|
|
21283
|
+
interface CpscQueueMessage {
|
|
21284
|
+
readonly filePath: string;
|
|
21285
|
+
readonly merchantId: string;
|
|
21286
|
+
readonly fileType: io.flow.internal.v0.enums.CpscFileType;
|
|
21287
|
+
}
|
|
21288
|
+
|
|
21099
21289
|
interface CryptoAccount {
|
|
21100
21290
|
readonly discriminator: 'crypto_account';
|
|
21101
21291
|
readonly id: string;
|
|
@@ -22396,6 +22586,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22396
22586
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
22397
22587
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
22398
22588
|
readonly sp?: io.flow.internal.v0.models.Fee;
|
|
22589
|
+
readonly revenue_share?: io.flow.internal.v0.models.Fee;
|
|
22399
22590
|
}
|
|
22400
22591
|
|
|
22401
22592
|
interface FinanceBankAccount {
|
|
@@ -23256,6 +23447,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23256
23447
|
readonly tracker_id: string;
|
|
23257
23448
|
}
|
|
23258
23449
|
|
|
23450
|
+
interface GuaranteedShippingPublishedOutput {
|
|
23451
|
+
readonly id: string;
|
|
23452
|
+
readonly organization_id: string;
|
|
23453
|
+
readonly channel_id: string;
|
|
23454
|
+
readonly destination_country: string;
|
|
23455
|
+
readonly coefficient: number;
|
|
23456
|
+
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
23457
|
+
readonly inputs_updated_at: number;
|
|
23458
|
+
}
|
|
23459
|
+
|
|
23460
|
+
interface GuaranteedShippingPublishedOutputDeleted {
|
|
23461
|
+
readonly discriminator: 'guaranteed_shipping_published_output_deleted';
|
|
23462
|
+
readonly event_id: string;
|
|
23463
|
+
readonly timestamp: string;
|
|
23464
|
+
readonly organization: string;
|
|
23465
|
+
readonly id: string;
|
|
23466
|
+
}
|
|
23467
|
+
|
|
23468
|
+
interface GuaranteedShippingPublishedOutputUpserted {
|
|
23469
|
+
readonly discriminator: 'guaranteed_shipping_published_output_upserted';
|
|
23470
|
+
readonly event_id: string;
|
|
23471
|
+
readonly timestamp: string;
|
|
23472
|
+
readonly organization: string;
|
|
23473
|
+
readonly guaranteed_shipping_published_output: io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
23474
|
+
}
|
|
23475
|
+
|
|
23259
23476
|
interface HarmonizationClassificationStatisticsData {
|
|
23260
23477
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
23261
23478
|
}
|
|
@@ -24422,6 +24639,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24422
24639
|
readonly added_on: string;
|
|
24423
24640
|
}
|
|
24424
24641
|
|
|
24642
|
+
interface MaheshItemDeleted {
|
|
24643
|
+
readonly discriminator: 'mahesh_item_deleted';
|
|
24644
|
+
readonly event_id: string;
|
|
24645
|
+
readonly timestamp: string;
|
|
24646
|
+
readonly id: string;
|
|
24647
|
+
}
|
|
24648
|
+
|
|
24425
24649
|
interface MaheshItemForm {
|
|
24426
24650
|
readonly number: string;
|
|
24427
24651
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -24430,6 +24654,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24430
24654
|
readonly added_on: string;
|
|
24431
24655
|
}
|
|
24432
24656
|
|
|
24657
|
+
interface MaheshItemUpserted {
|
|
24658
|
+
readonly discriminator: 'mahesh_item_upserted';
|
|
24659
|
+
readonly event_id: string;
|
|
24660
|
+
readonly timestamp: string;
|
|
24661
|
+
readonly item: io.flow.internal.v0.models.MaheshItem;
|
|
24662
|
+
}
|
|
24663
|
+
|
|
24433
24664
|
interface MainTransaction {
|
|
24434
24665
|
readonly id: string;
|
|
24435
24666
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -24442,6 +24673,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24442
24673
|
readonly channel_statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
24443
24674
|
readonly created_at: string;
|
|
24444
24675
|
readonly original_at?: string;
|
|
24676
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
24445
24677
|
}
|
|
24446
24678
|
|
|
24447
24679
|
interface MainTransactionDeleted {
|
|
@@ -24737,10 +24969,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24737
24969
|
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
24738
24970
|
readonly freight_guaranteed?: number;
|
|
24739
24971
|
readonly freight_non_guaranteed?: number;
|
|
24972
|
+
readonly freight_subsidy?: number;
|
|
24740
24973
|
readonly total: number;
|
|
24741
24974
|
readonly tax_refund?: number;
|
|
24742
24975
|
readonly tax_reversal?: number;
|
|
24743
24976
|
readonly duty_reversal?: number;
|
|
24977
|
+
readonly flat_rate_reversal?: number;
|
|
24978
|
+
readonly flat_rate_subsidy_reversal?: number;
|
|
24744
24979
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
24745
24980
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
24746
24981
|
}
|
|
@@ -25766,6 +26001,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25766
26001
|
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
25767
26002
|
readonly number: string;
|
|
25768
26003
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
26004
|
+
readonly destination_province?: string;
|
|
25769
26005
|
}
|
|
25770
26006
|
|
|
25771
26007
|
interface OtherRecordOrderSummaryIdentifiers {
|
|
@@ -26477,6 +26713,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26477
26713
|
readonly effective_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26478
26714
|
readonly fingerprint: string;
|
|
26479
26715
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26716
|
+
readonly created_at?: string;
|
|
26480
26717
|
}
|
|
26481
26718
|
|
|
26482
26719
|
interface PreonboardingSellabilityResultDeleted {
|
|
@@ -27153,14 +27390,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27153
27390
|
readonly number: string;
|
|
27154
27391
|
}
|
|
27155
27392
|
|
|
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
27393
|
interface RatecardRateLevelDeleted {
|
|
27165
27394
|
readonly discriminator: 'ratecard_rate_level_deleted';
|
|
27166
27395
|
readonly event_id: string;
|
|
@@ -27221,15 +27450,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27221
27450
|
readonly fee: io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
27222
27451
|
}
|
|
27223
27452
|
|
|
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
27453
|
interface RatesChanged {
|
|
27234
27454
|
readonly event_id: string;
|
|
27235
27455
|
readonly timestamp: string;
|
|
@@ -27358,7 +27578,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27358
27578
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
27359
27579
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
27360
27580
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
27361
|
-
readonly
|
|
27581
|
+
readonly account_currencies?: io.flow.internal.v0.enums.AccountCurrencyFilter[];
|
|
27362
27582
|
readonly channel_id?: string;
|
|
27363
27583
|
}
|
|
27364
27584
|
|
|
@@ -27493,6 +27713,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27493
27713
|
|
|
27494
27714
|
interface ReportingFreight {
|
|
27495
27715
|
readonly guaranteed?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
27716
|
+
readonly subsidy?: io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
27496
27717
|
}
|
|
27497
27718
|
|
|
27498
27719
|
interface ReportingFreightGuaranteed {
|
|
@@ -27500,6 +27721,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27500
27721
|
readonly coefficient: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27501
27722
|
}
|
|
27502
27723
|
|
|
27724
|
+
interface ReportingFreightSubsidy {
|
|
27725
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27726
|
+
}
|
|
27727
|
+
|
|
27503
27728
|
interface ReportingFulfillment {
|
|
27504
27729
|
readonly id: string;
|
|
27505
27730
|
readonly sequence_number: number;
|
|
@@ -27540,13 +27765,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27540
27765
|
}
|
|
27541
27766
|
|
|
27542
27767
|
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.
|
|
27768
|
+
readonly shipping: io.flow.internal.v0.models.ReportingFxValue;
|
|
27769
|
+
readonly fees: io.flow.internal.v0.models.ReportingFxValue;
|
|
27770
|
+
readonly product: io.flow.internal.v0.models.ReportingFxValue;
|
|
27771
|
+
readonly tax: io.flow.internal.v0.models.ReportingFxValue;
|
|
27772
|
+
readonly duty: io.flow.internal.v0.models.ReportingFxValue;
|
|
27773
|
+
readonly tips?: io.flow.internal.v0.models.ReportingFxValue;
|
|
27774
|
+
readonly total: io.flow.internal.v0.models.ReportingFxValue;
|
|
27775
|
+
}
|
|
27776
|
+
|
|
27777
|
+
interface ReportingFxValue {
|
|
27778
|
+
readonly usd: number;
|
|
27779
|
+
readonly merchant?: number;
|
|
27550
27780
|
}
|
|
27551
27781
|
|
|
27552
27782
|
interface ReportingMerchantBreakdown {
|
|
@@ -27599,12 +27829,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27599
27829
|
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
27600
27830
|
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27601
27831
|
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27832
|
+
readonly freight_subsidy?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27602
27833
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27603
27834
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27604
27835
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27605
27836
|
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27606
27837
|
readonly tax_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27607
27838
|
readonly duty_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27839
|
+
readonly flat_rate_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27840
|
+
readonly flat_rate_subsidy_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27608
27841
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
27609
27842
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
27610
27843
|
}
|
|
@@ -27782,7 +28015,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27782
28015
|
readonly created_at: string;
|
|
27783
28016
|
readonly updated_at: string;
|
|
27784
28017
|
readonly channel?: string;
|
|
27785
|
-
readonly is_deleted?: boolean;
|
|
27786
28018
|
}
|
|
27787
28019
|
|
|
27788
28020
|
interface RestrictionItemRequestForm {
|
|
@@ -27908,7 +28140,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27908
28140
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
27909
28141
|
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
27910
28142
|
readonly channel?: string;
|
|
27911
|
-
readonly is_deleted?: boolean;
|
|
27912
28143
|
}
|
|
27913
28144
|
|
|
27914
28145
|
interface RestrictionProductDecisionForm {
|
|
@@ -28345,12 +28576,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28345
28576
|
readonly payment_is: io.flow.internal.v0.models.PaymentIs;
|
|
28346
28577
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
28347
28578
|
readonly destination_country: string;
|
|
28579
|
+
readonly destination_province?: string;
|
|
28348
28580
|
readonly fulfilled_at?: string;
|
|
28349
28581
|
readonly reconciliation?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
28350
28582
|
readonly is_eu_destination?: boolean;
|
|
28351
28583
|
readonly debug_url?: string;
|
|
28352
28584
|
}
|
|
28353
28585
|
|
|
28586
|
+
interface SalesPaymentRecordDeleted {
|
|
28587
|
+
readonly discriminator: 'sales_payment_record_deleted';
|
|
28588
|
+
readonly event_id: string;
|
|
28589
|
+
readonly timestamp: string;
|
|
28590
|
+
readonly organization: string;
|
|
28591
|
+
readonly id: string;
|
|
28592
|
+
}
|
|
28593
|
+
|
|
28594
|
+
interface SalesPaymentRecordUpserted {
|
|
28595
|
+
readonly discriminator: 'sales_payment_record_upserted';
|
|
28596
|
+
readonly event_id: string;
|
|
28597
|
+
readonly timestamp: string;
|
|
28598
|
+
readonly organization: string;
|
|
28599
|
+
readonly sales_payment_record: io.flow.internal.v0.models.SalesPaymentRecord;
|
|
28600
|
+
}
|
|
28601
|
+
|
|
28354
28602
|
interface SandboxSetup {
|
|
28355
28603
|
readonly requested_by: string;
|
|
28356
28604
|
}
|
|
@@ -28465,6 +28713,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28465
28713
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
28466
28714
|
}
|
|
28467
28715
|
|
|
28716
|
+
interface ServiceFees {
|
|
28717
|
+
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
28718
|
+
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
28719
|
+
}
|
|
28720
|
+
|
|
28721
|
+
interface ServiceFeesForm {
|
|
28722
|
+
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
28723
|
+
}
|
|
28724
|
+
|
|
28468
28725
|
interface SessionOrderData {
|
|
28469
28726
|
readonly id: string;
|
|
28470
28727
|
readonly session: io.flow.common.v0.models.SessionReference;
|
|
@@ -28496,6 +28753,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28496
28753
|
readonly rate_level_key?: string;
|
|
28497
28754
|
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
28498
28755
|
readonly cost: io.flow.common.v0.models.Money;
|
|
28756
|
+
readonly dim_factor: number;
|
|
28499
28757
|
}
|
|
28500
28758
|
|
|
28501
28759
|
interface ShippingCostDeleted {
|
|
@@ -28585,28 +28843,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28585
28843
|
readonly include_unpublished?: boolean;
|
|
28586
28844
|
}
|
|
28587
28845
|
|
|
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
28846
|
interface ShopifyAddress {
|
|
28611
28847
|
readonly address1: string;
|
|
28612
28848
|
readonly city: string;
|
|
@@ -28646,6 +28882,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28646
28882
|
readonly phone?: string;
|
|
28647
28883
|
}
|
|
28648
28884
|
|
|
28885
|
+
interface ShopifyCost {
|
|
28886
|
+
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
28887
|
+
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
28888
|
+
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
28889
|
+
}
|
|
28890
|
+
|
|
28649
28891
|
interface ShopifyDispute {
|
|
28650
28892
|
readonly id: string;
|
|
28651
28893
|
readonly organization_id: string;
|
|
@@ -29014,6 +29256,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29014
29256
|
interface ShopifyMerchantMarketCountry {
|
|
29015
29257
|
readonly code: string;
|
|
29016
29258
|
readonly actively_managing: boolean;
|
|
29259
|
+
readonly enabled: boolean;
|
|
29017
29260
|
}
|
|
29018
29261
|
|
|
29019
29262
|
interface ShopifyMerchantMarkets {
|
|
@@ -29376,7 +29619,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29376
29619
|
|
|
29377
29620
|
interface ShopifyShipmentRateAvailable {
|
|
29378
29621
|
readonly carrier_service_id: string;
|
|
29379
|
-
readonly total_charges: io.flow.internal.v0.models.
|
|
29622
|
+
readonly total_charges: io.flow.internal.v0.models.ShopifyCost;
|
|
29380
29623
|
readonly charges: io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
29381
29624
|
readonly shipment_options: io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
29382
29625
|
readonly expected_delivery_date?: string;
|
|
@@ -29386,12 +29629,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29386
29629
|
|
|
29387
29630
|
interface ShopifyShipmentRateCharge {
|
|
29388
29631
|
readonly code: io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
29389
|
-
readonly cost: io.flow.internal.v0.models.
|
|
29632
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
29390
29633
|
}
|
|
29391
29634
|
|
|
29392
29635
|
interface ShopifyShipmentRateOption {
|
|
29393
29636
|
readonly code: io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
29394
|
-
readonly cost: io.flow.internal.v0.models.
|
|
29637
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
29395
29638
|
readonly optional?: boolean;
|
|
29396
29639
|
}
|
|
29397
29640
|
|
|
@@ -29437,12 +29680,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29437
29680
|
readonly byoa: boolean;
|
|
29438
29681
|
}
|
|
29439
29682
|
|
|
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
29683
|
interface ShopifyShipmentRateUnavailable {
|
|
29447
29684
|
readonly carrier_service_id: string;
|
|
29448
29685
|
readonly reasons: io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
@@ -31048,6 +31285,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31048
31285
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
31049
31286
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
31050
31287
|
type Event =
|
|
31288
|
+
| io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted
|
|
31289
|
+
| io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted
|
|
31290
|
+
| io.flow.internal.v0.models.AdaptivePricingUpdateUpserted
|
|
31291
|
+
| io.flow.internal.v0.models.AdaptivePricingUpdateDeleted
|
|
31051
31292
|
| io.flow.internal.v0.models.AdaptiveShippingRateUpserted
|
|
31052
31293
|
| io.flow.internal.v0.models.AdaptiveShippingRateDeleted
|
|
31053
31294
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
@@ -31114,6 +31355,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31114
31355
|
| io.flow.internal.v0.models.RevenueRecordDeleted
|
|
31115
31356
|
| io.flow.internal.v0.models.OtherRecordUpserted
|
|
31116
31357
|
| io.flow.internal.v0.models.OtherRecordDeleted
|
|
31358
|
+
| io.flow.internal.v0.models.SalesPaymentRecordUpserted
|
|
31359
|
+
| io.flow.internal.v0.models.SalesPaymentRecordDeleted
|
|
31117
31360
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted
|
|
31118
31361
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
|
|
31119
31362
|
| io.flow.internal.v0.models.CarrierAccountUpsertedV2
|
|
@@ -31220,6 +31463,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31220
31463
|
| io.flow.internal.v0.models.FulfillmentFallbacksDeleted
|
|
31221
31464
|
| io.flow.internal.v0.models.QuoteUpserted
|
|
31222
31465
|
| io.flow.internal.v0.models.QuoteDeleted
|
|
31466
|
+
| io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted
|
|
31467
|
+
| io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted
|
|
31223
31468
|
| io.flow.internal.v0.models.AllItemsExport
|
|
31224
31469
|
| io.flow.internal.v0.models.HarmonizedItemsHs6Export
|
|
31225
31470
|
| io.flow.internal.v0.models.UnharmonizedItemsExport
|
|
@@ -31324,7 +31569,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31324
31569
|
| io.flow.internal.v0.models.OrderRatesPublishedV3
|
|
31325
31570
|
| io.flow.internal.v0.models.RatecardDimensionEstimateUpserted
|
|
31326
31571
|
| io.flow.internal.v0.models.RatecardDimensionEstimateDeleted
|
|
31327
|
-
| io.flow.internal.v0.models.RatecardLanesImportRequest
|
|
31328
31572
|
| io.flow.internal.v0.models.RatecardServiceFeeUpserted
|
|
31329
31573
|
| io.flow.internal.v0.models.RatecardServiceFeeDeleted
|
|
31330
31574
|
| io.flow.internal.v0.models.RatecardRateLevelUpserted
|
|
@@ -31386,8 +31630,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31386
31630
|
| io.flow.internal.v0.models.ShopifyOrderTransactionDeleted
|
|
31387
31631
|
| io.flow.internal.v0.models.ShopifyTestOrderUpserted
|
|
31388
31632
|
| io.flow.internal.v0.models.ShopifyTestOrderDeleted
|
|
31389
|
-
| io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsUpserted
|
|
31390
|
-
| io.flow.internal.v0.models.ShopifyAdaptivePricingCoefficientsDeleted
|
|
31391
31633
|
| io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted
|
|
31392
31634
|
| io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted
|
|
31393
31635
|
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
@@ -31436,6 +31678,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31436
31678
|
| io.flow.internal.v0.models.BojanaItemDeleted
|
|
31437
31679
|
| io.flow.internal.v0.models.RaveenaItemUpserted
|
|
31438
31680
|
| io.flow.internal.v0.models.RaveenaItemDeleted
|
|
31681
|
+
| io.flow.internal.v0.models.MaheshItemUpserted
|
|
31682
|
+
| io.flow.internal.v0.models.MaheshItemDeleted
|
|
31439
31683
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
31440
31684
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
31441
31685
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -31715,10 +31959,20 @@ export type AccountingPendingOrderMetadata =
|
|
|
31715
31959
|
export type AccountingReturnMetadata =
|
|
31716
31960
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
31717
31961
|
export type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
31962
|
+
export type AdaptivePricingCoefficient =
|
|
31963
|
+
io.flow.internal.v0.models.AdaptivePricingCoefficient;
|
|
31964
|
+
export type AdaptivePricingCoefficientDeleted =
|
|
31965
|
+
io.flow.internal.v0.models.AdaptivePricingCoefficientDeleted;
|
|
31966
|
+
export type AdaptivePricingCoefficientUpserted =
|
|
31967
|
+
io.flow.internal.v0.models.AdaptivePricingCoefficientUpserted;
|
|
31718
31968
|
export type AdaptivePricingDestinationUpdate =
|
|
31719
31969
|
io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
31720
31970
|
export type AdaptivePricingUpdate =
|
|
31721
31971
|
io.flow.internal.v0.models.AdaptivePricingUpdate;
|
|
31972
|
+
export type AdaptivePricingUpdateDeleted =
|
|
31973
|
+
io.flow.internal.v0.models.AdaptivePricingUpdateDeleted;
|
|
31974
|
+
export type AdaptivePricingUpdateUpserted =
|
|
31975
|
+
io.flow.internal.v0.models.AdaptivePricingUpdateUpserted;
|
|
31722
31976
|
export type AdaptiveShippingOrderGuarantee =
|
|
31723
31977
|
io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
31724
31978
|
export type AdaptiveShippingOrderGuaranteeDeleted =
|
|
@@ -32423,6 +32677,20 @@ export type ConsoleMarkUnresolvableForm =
|
|
|
32423
32677
|
io.flow.internal.v0.models.ConsoleMarkUnresolvableForm;
|
|
32424
32678
|
export type CourthouseProductSummary =
|
|
32425
32679
|
io.flow.internal.v0.models.CourthouseProductSummary;
|
|
32680
|
+
export type CpscCertificateType = io.flow.internal.v0.enums.CpscCertificateType;
|
|
32681
|
+
export type CpscFileType = io.flow.internal.v0.enums.CpscFileType;
|
|
32682
|
+
export type CpscLabType = io.flow.internal.v0.enums.CpscLabType;
|
|
32683
|
+
export type CpscLotNumberAssignedBy =
|
|
32684
|
+
io.flow.internal.v0.enums.CpscLotNumberAssignedBy;
|
|
32685
|
+
export type CpscPointOfContactType =
|
|
32686
|
+
io.flow.internal.v0.enums.CpscPointOfContactType;
|
|
32687
|
+
export type CpscPrimaryProductIdType =
|
|
32688
|
+
io.flow.internal.v0.enums.CpscPrimaryProductIdType;
|
|
32689
|
+
export type CpscProductRegistration =
|
|
32690
|
+
io.flow.internal.v0.models.CpscProductRegistration;
|
|
32691
|
+
export type CpscQueueEnvelope = io.flow.internal.v0.models.CpscQueueEnvelope;
|
|
32692
|
+
export type CpscQueueMessage = io.flow.internal.v0.models.CpscQueueMessage;
|
|
32693
|
+
export type CpscYesNo = io.flow.internal.v0.enums.CpscYesNo;
|
|
32426
32694
|
export type CrossdockTrackingStatus =
|
|
32427
32695
|
io.flow.internal.v0.enums.CrossdockTrackingStatus;
|
|
32428
32696
|
export type CryptoAccount = io.flow.internal.v0.models.CryptoAccount;
|
|
@@ -32764,6 +33032,8 @@ export type FiservMerchantModificationForm =
|
|
|
32764
33032
|
export type FiservMerchantPutForm =
|
|
32765
33033
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
32766
33034
|
export type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
33035
|
+
export type FlatRateLabelGuaranteeStatus =
|
|
33036
|
+
io.flow.internal.v0.enums.FlatRateLabelGuaranteeStatus;
|
|
32767
33037
|
export type FlatRateLabelReversal =
|
|
32768
33038
|
io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
32769
33039
|
export type FlatRateLabelReversalDeleted =
|
|
@@ -32948,6 +33218,12 @@ export type GoogleShoppingSetting =
|
|
|
32948
33218
|
io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
32949
33219
|
export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
32950
33220
|
export type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
33221
|
+
export type GuaranteedShippingPublishedOutput =
|
|
33222
|
+
io.flow.internal.v0.models.GuaranteedShippingPublishedOutput;
|
|
33223
|
+
export type GuaranteedShippingPublishedOutputDeleted =
|
|
33224
|
+
io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted;
|
|
33225
|
+
export type GuaranteedShippingPublishedOutputUpserted =
|
|
33226
|
+
io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted;
|
|
32951
33227
|
export type HarmonizationClassificationStatisticsData =
|
|
32952
33228
|
io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
32953
33229
|
export type HarmonizationClassificationStatisticsPublished =
|
|
@@ -33217,8 +33493,10 @@ export type LoyaltyProgramReward =
|
|
|
33217
33493
|
export type LoyaltyProgramRewards =
|
|
33218
33494
|
io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
33219
33495
|
export type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
33496
|
+
export type MaheshItemDeleted = io.flow.internal.v0.models.MaheshItemDeleted;
|
|
33220
33497
|
export type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
33221
33498
|
export type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
33499
|
+
export type MaheshItemUpserted = io.flow.internal.v0.models.MaheshItemUpserted;
|
|
33222
33500
|
export type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
33223
33501
|
export type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
33224
33502
|
export type MainTransactionDeleted =
|
|
@@ -33936,8 +34214,6 @@ export type RatecardInternalServiceFee =
|
|
|
33936
34214
|
io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
33937
34215
|
export type RatecardInternalSummary =
|
|
33938
34216
|
io.flow.internal.v0.models.RatecardInternalSummary;
|
|
33939
|
-
export type RatecardLanesImportRequest =
|
|
33940
|
-
io.flow.internal.v0.models.RatecardLanesImportRequest;
|
|
33941
34217
|
export type RatecardRateLevelDeleted =
|
|
33942
34218
|
io.flow.internal.v0.models.RatecardRateLevelDeleted;
|
|
33943
34219
|
export type RatecardRateLevelOrganizationDeleted =
|
|
@@ -33954,10 +34230,6 @@ export type RatecardServiceFeeDeleted =
|
|
|
33954
34230
|
io.flow.internal.v0.models.RatecardServiceFeeDeleted;
|
|
33955
34231
|
export type RatecardServiceFeeUpserted =
|
|
33956
34232
|
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
34233
|
export type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
33962
34234
|
export type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
33963
34235
|
export type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
@@ -34023,6 +34295,8 @@ export type ReportingFees = io.flow.internal.v0.models.ReportingFees;
|
|
|
34023
34295
|
export type ReportingFreight = io.flow.internal.v0.models.ReportingFreight;
|
|
34024
34296
|
export type ReportingFreightGuaranteed =
|
|
34025
34297
|
io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
34298
|
+
export type ReportingFreightSubsidy =
|
|
34299
|
+
io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
34026
34300
|
export type ReportingFulfillment =
|
|
34027
34301
|
io.flow.internal.v0.models.ReportingFulfillment;
|
|
34028
34302
|
export type ReportingFulfillmentHas =
|
|
@@ -34032,6 +34306,7 @@ export type ReportingFulfillmentIs =
|
|
|
34032
34306
|
export type ReportingFulfillmentIsVirtual =
|
|
34033
34307
|
io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual;
|
|
34034
34308
|
export type ReportingFx = io.flow.internal.v0.models.ReportingFx;
|
|
34309
|
+
export type ReportingFxValue = io.flow.internal.v0.models.ReportingFxValue;
|
|
34035
34310
|
export type ReportingMerchantBreakdown =
|
|
34036
34311
|
io.flow.internal.v0.models.ReportingMerchantBreakdown;
|
|
34037
34312
|
export type ReportingMerchantFees =
|
|
@@ -34224,6 +34499,10 @@ export type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
|
34224
34499
|
export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
34225
34500
|
export type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
34226
34501
|
export type SalesPaymentRecord = io.flow.internal.v0.models.SalesPaymentRecord;
|
|
34502
|
+
export type SalesPaymentRecordDeleted =
|
|
34503
|
+
io.flow.internal.v0.models.SalesPaymentRecordDeleted;
|
|
34504
|
+
export type SalesPaymentRecordUpserted =
|
|
34505
|
+
io.flow.internal.v0.models.SalesPaymentRecordUpserted;
|
|
34227
34506
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
34228
34507
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
34229
34508
|
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
@@ -34254,6 +34533,8 @@ export type SellabilityCheckStatus =
|
|
|
34254
34533
|
export type SellabilityInternalMatchType =
|
|
34255
34534
|
io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
34256
34535
|
export type SellabilityStatus = io.flow.internal.v0.enums.SellabilityStatus;
|
|
34536
|
+
export type ServiceFees = io.flow.internal.v0.models.ServiceFees;
|
|
34537
|
+
export type ServiceFeesForm = io.flow.internal.v0.models.ServiceFeesForm;
|
|
34257
34538
|
export type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
34258
34539
|
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
34259
34540
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
@@ -34275,12 +34556,6 @@ export type ShippingRateEstimateInternal =
|
|
|
34275
34556
|
io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
34276
34557
|
export type ShippingRateEstimateRequestInternal =
|
|
34277
34558
|
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
34559
|
export type ShopifyAddress = io.flow.internal.v0.models.ShopifyAddress;
|
|
34285
34560
|
export type ShopifyCallbackError =
|
|
34286
34561
|
io.flow.internal.v0.models.ShopifyCallbackError;
|
|
@@ -34297,6 +34572,7 @@ export type ShopifyChannelOrganizationTokens =
|
|
|
34297
34572
|
export type ShopifyChargeCode = io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
34298
34573
|
export type ShopifyContactDetails =
|
|
34299
34574
|
io.flow.internal.v0.models.ShopifyContactDetails;
|
|
34575
|
+
export type ShopifyCost = io.flow.internal.v0.models.ShopifyCost;
|
|
34300
34576
|
export type ShopifyDeliveryMethodType =
|
|
34301
34577
|
io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
34302
34578
|
export type ShopifyDimensionUnit =
|
|
@@ -34542,8 +34818,6 @@ export type ShopifyShipmentRateShipment =
|
|
|
34542
34818
|
io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
34543
34819
|
export type ShopifyShipmentRateShipper =
|
|
34544
34820
|
io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
34545
|
-
export type ShopifyShipmentRateTotalCharges =
|
|
34546
|
-
io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
34547
34821
|
export type ShopifyShipmentRateUnavailable =
|
|
34548
34822
|
io.flow.internal.v0.models.ShopifyShipmentRateUnavailable;
|
|
34549
34823
|
export type ShopifyShippingLocation =
|