@flowio/types 11.24.137 → 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 +424 -85
- package/dist/api.d.ts +98 -46
- package/package.json +1 -1
- package/src/api-internal.ts +544 -95
- package/src/api.ts +126 -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 {
|
|
@@ -7158,6 +7173,18 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7158
7173
|
readonly response: io.flow.shopify.markets.v0.models.ShopifyWebhookResponse;
|
|
7159
7174
|
}
|
|
7160
7175
|
|
|
7176
|
+
interface ShopifyMerchantMarketCountry {
|
|
7177
|
+
readonly code: string;
|
|
7178
|
+
readonly actively_managing: boolean;
|
|
7179
|
+
readonly enabled: boolean;
|
|
7180
|
+
}
|
|
7181
|
+
|
|
7182
|
+
interface ShopifyMerchantMarkets {
|
|
7183
|
+
readonly id: string;
|
|
7184
|
+
readonly organization_id: string;
|
|
7185
|
+
readonly countries: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
7186
|
+
}
|
|
7187
|
+
|
|
7161
7188
|
interface ShopifyOrderCancelForm {
|
|
7162
7189
|
readonly note?: string;
|
|
7163
7190
|
}
|
|
@@ -7277,6 +7304,42 @@ declare namespace io.flow.consumer.invoice.v0.models {
|
|
|
7277
7304
|
readonly voids_b2b_invoice?: boolean;
|
|
7278
7305
|
}
|
|
7279
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
|
+
|
|
7280
7343
|
interface B2BInvoice {
|
|
7281
7344
|
readonly id: string;
|
|
7282
7345
|
readonly number: string;
|
|
@@ -9492,7 +9555,8 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
9492
9555
|
| 'themes/publish'
|
|
9493
9556
|
| 'themes/update'
|
|
9494
9557
|
| 'bulk_operations/finish'
|
|
9495
|
-
| 'shop/update'
|
|
9558
|
+
| 'shop/update'
|
|
9559
|
+
| 'managed_markets_adaptive_pricing/updated';
|
|
9496
9560
|
}
|
|
9497
9561
|
|
|
9498
9562
|
declare namespace io.flow.shopify.markets.v0.models {
|
|
@@ -9558,6 +9622,21 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9558
9622
|
readonly shop: io.flow.shopify.markets.v0.models.Shop;
|
|
9559
9623
|
}
|
|
9560
9624
|
|
|
9625
|
+
interface ShopifyAdaptivePricingDestination {
|
|
9626
|
+
readonly country_code: string;
|
|
9627
|
+
readonly updated_at: string;
|
|
9628
|
+
readonly tax_and_duty_coefficient: string;
|
|
9629
|
+
readonly fees_coefficient: string;
|
|
9630
|
+
readonly merchant_subsidy_amount: string;
|
|
9631
|
+
readonly merchant_subsidy_currency: string;
|
|
9632
|
+
readonly adaptive_pricing_enabled: boolean;
|
|
9633
|
+
readonly adaptive_shipping_enabled: boolean;
|
|
9634
|
+
}
|
|
9635
|
+
|
|
9636
|
+
interface ShopifyAdaptivePricingDestinationsWrapper {
|
|
9637
|
+
readonly destinations: io.flow.shopify.markets.v0.models.ShopifyAdaptivePricingDestination[];
|
|
9638
|
+
}
|
|
9639
|
+
|
|
9561
9640
|
interface ShopifyAppliedDiscount {
|
|
9562
9641
|
readonly title?: string;
|
|
9563
9642
|
readonly description?: string;
|
|
@@ -10377,6 +10456,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
10377
10456
|
| 'unsupported_order_edit'
|
|
10378
10457
|
| 'order_allocation_duties_mismatch'
|
|
10379
10458
|
| 'order_missing'
|
|
10459
|
+
| 'order_cancelled'
|
|
10380
10460
|
| 'organization_deactivated';
|
|
10381
10461
|
type ChannelOrderAcceptanceStatus =
|
|
10382
10462
|
| 'accepted'
|
|
@@ -11032,6 +11112,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
11032
11112
|
readonly created_at?: string;
|
|
11033
11113
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
11034
11114
|
readonly type?: io.flow.common.v0.enums.OrganizationType;
|
|
11115
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
11035
11116
|
}
|
|
11036
11117
|
|
|
11037
11118
|
interface OrganizationDefaults {
|
|
@@ -11045,6 +11126,7 @@ declare namespace io.flow.common.v0.models {
|
|
|
11045
11126
|
interface OrganizationReference {
|
|
11046
11127
|
readonly discriminator: 'organization_reference';
|
|
11047
11128
|
readonly id: string;
|
|
11129
|
+
readonly channel?: io.flow.common.v0.models.ChannelReference;
|
|
11048
11130
|
}
|
|
11049
11131
|
|
|
11050
11132
|
interface OrganizationSummary {
|
|
@@ -11358,6 +11440,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11358
11440
|
readonly registration: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
11359
11441
|
}
|
|
11360
11442
|
|
|
11443
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
11444
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
11445
|
+
readonly event_id: string;
|
|
11446
|
+
readonly timestamp: string;
|
|
11447
|
+
readonly organization: string;
|
|
11448
|
+
readonly id: string;
|
|
11449
|
+
}
|
|
11450
|
+
|
|
11451
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
11452
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
11453
|
+
readonly event_id: string;
|
|
11454
|
+
readonly timestamp: string;
|
|
11455
|
+
readonly organization: string;
|
|
11456
|
+
readonly shopify_merchant_markets: io.flow.shopify.markets.internal.v0.models.ShopifyMerchantMarkets;
|
|
11457
|
+
}
|
|
11458
|
+
|
|
11361
11459
|
interface ShopifyOrderRiskAssessmentDeleted {
|
|
11362
11460
|
readonly discriminator: 'shopify_order_risk_assessment_deleted';
|
|
11363
11461
|
readonly event_id: string;
|
|
@@ -11488,7 +11586,9 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
11488
11586
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted
|
|
11489
11587
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted
|
|
11490
11588
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted
|
|
11491
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted
|
|
11589
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted
|
|
11590
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsUpserted
|
|
11591
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMerchantMarketsDeleted;
|
|
11492
11592
|
}
|
|
11493
11593
|
|
|
11494
11594
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -12875,6 +12975,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12875
12975
|
interface LaneSummary {
|
|
12876
12976
|
readonly id: string;
|
|
12877
12977
|
readonly ratecard: io.flow.ratecard.v0.models.RatecardSummary;
|
|
12978
|
+
readonly dim_factor: number;
|
|
12878
12979
|
}
|
|
12879
12980
|
|
|
12880
12981
|
interface LargePackageServiceFee {
|
|
@@ -12950,6 +13051,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
12950
13051
|
readonly glbe_shipping_method_id?: string;
|
|
12951
13052
|
readonly glbe_proposition_name?: string;
|
|
12952
13053
|
readonly channel_revenue_share_percentage?: number;
|
|
13054
|
+
readonly channel_id?: string;
|
|
12953
13055
|
}
|
|
12954
13056
|
|
|
12955
13057
|
interface RatecardCarrierSummary {
|
|
@@ -13052,6 +13154,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13052
13154
|
readonly glbe_shipping_method_id?: string;
|
|
13053
13155
|
readonly glbe_proposition_name?: string;
|
|
13054
13156
|
readonly channel_revenue_share_percentage?: number;
|
|
13157
|
+
readonly channel_id?: string;
|
|
13055
13158
|
readonly data?: io.flow.ratecard.v0.models.RatecardData;
|
|
13056
13159
|
}
|
|
13057
13160
|
|
|
@@ -13087,20 +13190,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13087
13190
|
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13088
13191
|
}
|
|
13089
13192
|
|
|
13090
|
-
interface RatecardLaneImportForm {
|
|
13091
|
-
readonly ratecard_owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
13092
|
-
readonly service: string;
|
|
13093
|
-
readonly currency: string;
|
|
13094
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
13095
|
-
readonly origin: io.flow.common.v0.models.Zone;
|
|
13096
|
-
readonly destination: io.flow.common.v0.models.Zone;
|
|
13097
|
-
readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
|
|
13098
|
-
readonly dim_factor: number;
|
|
13099
|
-
readonly weight_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13100
|
-
readonly distance_unit: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
13101
|
-
readonly rates: io.flow.ratecard.v0.models.RatecardRateForm[];
|
|
13102
|
-
}
|
|
13103
|
-
|
|
13104
13193
|
interface RatecardLaneVersion {
|
|
13105
13194
|
readonly id: string;
|
|
13106
13195
|
readonly timestamp: string;
|
|
@@ -13108,14 +13197,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13108
13197
|
readonly ratecard_lane: io.flow.ratecard.v0.models.RatecardLane;
|
|
13109
13198
|
}
|
|
13110
13199
|
|
|
13111
|
-
interface RatecardLanesImportRequestData {
|
|
13112
|
-
readonly id: string;
|
|
13113
|
-
readonly source_url: string;
|
|
13114
|
-
readonly filename?: string;
|
|
13115
|
-
}
|
|
13116
|
-
|
|
13117
13200
|
interface RatecardRate {
|
|
13118
|
-
readonly id: string;
|
|
13119
13201
|
readonly amount: number;
|
|
13120
13202
|
readonly weight: number;
|
|
13121
13203
|
}
|
|
@@ -13125,13 +13207,6 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
13125
13207
|
readonly weight: number;
|
|
13126
13208
|
}
|
|
13127
13209
|
|
|
13128
|
-
interface RatecardRateVersion {
|
|
13129
|
-
readonly id: string;
|
|
13130
|
-
readonly timestamp: string;
|
|
13131
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
13132
|
-
readonly ratecard_rate: io.flow.ratecard.v0.models.RatecardRate;
|
|
13133
|
-
}
|
|
13134
|
-
|
|
13135
13210
|
interface RatecardReference {
|
|
13136
13211
|
readonly id: string;
|
|
13137
13212
|
}
|
|
@@ -14588,6 +14663,19 @@ declare namespace io.flow.catalog.v0.enums {
|
|
|
14588
14663
|
| 'max_days_to_ship'
|
|
14589
14664
|
| 'commercial_invoice_item_number'
|
|
14590
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';
|
|
14591
14679
|
type FulfillmentMethodType = 'fulfillment_method';
|
|
14592
14680
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
14593
14681
|
type ImageTag = 'thumbnail' | 'checkout';
|
|
@@ -15297,7 +15385,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15297
15385
|
| 'unfulfilled_amount_greater_than_negative_balance'
|
|
15298
15386
|
| 'account_payment_hold';
|
|
15299
15387
|
type StatementAttachmentType = 'csv' | 'pdf';
|
|
15300
|
-
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
15388
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
15301
15389
|
type TaxDutyTransactionReasonCode =
|
|
15302
15390
|
| 'post_capture'
|
|
15303
15391
|
| 'post_fulfilment'
|
|
@@ -15348,7 +15436,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
15348
15436
|
| 'b2b_tax_refund'
|
|
15349
15437
|
| 'b2b_fee_mor_tax'
|
|
15350
15438
|
| 'b2b_fee_shipping_tax'
|
|
15351
|
-
| 'flat_rate_label'
|
|
15439
|
+
| 'flat_rate_label'
|
|
15440
|
+
| 'flat_rate_label_subsidy';
|
|
15352
15441
|
type TrueupSource =
|
|
15353
15442
|
| 'flow'
|
|
15354
15443
|
| 'channel'
|
|
@@ -15558,6 +15647,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15558
15647
|
readonly reason: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
15559
15648
|
}
|
|
15560
15649
|
|
|
15650
|
+
interface PayoutStatusPaid {
|
|
15651
|
+
readonly code: 'paid';
|
|
15652
|
+
readonly timestamp: string;
|
|
15653
|
+
}
|
|
15654
|
+
|
|
15561
15655
|
interface PayoutStatusScheduled {
|
|
15562
15656
|
readonly code: 'scheduled';
|
|
15563
15657
|
readonly placeholder?: string;
|
|
@@ -15728,6 +15822,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
15728
15822
|
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
15729
15823
|
readonly carrier: io.flow.billing.v0.models.TransactionMetadataShippingLabelCarrier;
|
|
15730
15824
|
readonly revenue_share_percentage?: number;
|
|
15825
|
+
readonly actual?: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
15731
15826
|
}
|
|
15732
15827
|
|
|
15733
15828
|
interface TransactionMetadataShippingLabelCarrier {
|
|
@@ -15860,7 +15955,8 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
15860
15955
|
type PayoutStatus =
|
|
15861
15956
|
| io.flow.billing.v0.models.PayoutStatusScheduled
|
|
15862
15957
|
| io.flow.billing.v0.models.PayoutStatusSent
|
|
15863
|
-
| io.flow.billing.v0.models.PayoutStatusFailed
|
|
15958
|
+
| io.flow.billing.v0.models.PayoutStatusFailed
|
|
15959
|
+
| io.flow.billing.v0.models.PayoutStatusPaid;
|
|
15864
15960
|
type Settlement =
|
|
15865
15961
|
| io.flow.billing.v0.models.SettlementNoPayout
|
|
15866
15962
|
| io.flow.billing.v0.models.SettlementPayout;
|
|
@@ -16420,6 +16516,7 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
16420
16516
|
readonly price: io.flow.common.v0.models.Money;
|
|
16421
16517
|
readonly description: string;
|
|
16422
16518
|
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16519
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
16423
16520
|
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
16424
16521
|
readonly catalog_size?: number;
|
|
16425
16522
|
readonly relative_ranking?: number;
|
|
@@ -16600,6 +16697,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
16600
16697
|
readonly province?: string;
|
|
16601
16698
|
readonly self_billing_agreement_effective_at: string;
|
|
16602
16699
|
readonly self_billing_agreement_expires_at?: string;
|
|
16700
|
+
readonly legal_name?: string;
|
|
16603
16701
|
}
|
|
16604
16702
|
|
|
16605
16703
|
interface OrganizationVersion {
|
|
@@ -16629,6 +16727,7 @@ declare namespace io.flow.organization.v0.models {
|
|
|
16629
16727
|
readonly country: string;
|
|
16630
16728
|
readonly tax_code: string;
|
|
16631
16729
|
readonly province?: string;
|
|
16730
|
+
readonly legal_name?: string;
|
|
16632
16731
|
}
|
|
16633
16732
|
}
|
|
16634
16733
|
|
|
@@ -16659,18 +16758,6 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
16659
16758
|
|
|
16660
16759
|
interface BankAccountInfoKor {
|
|
16661
16760
|
readonly discriminator: 'kor';
|
|
16662
|
-
readonly name?: string;
|
|
16663
|
-
readonly address?: io.flow.common.v0.models.Address;
|
|
16664
|
-
readonly phone?: string;
|
|
16665
|
-
readonly email?: string;
|
|
16666
|
-
readonly bank_account_number: string;
|
|
16667
|
-
readonly bank_routing_number?: string;
|
|
16668
|
-
readonly bank_name?: string;
|
|
16669
|
-
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
16670
|
-
}
|
|
16671
|
-
|
|
16672
|
-
interface BankAccountInfoKorV2 {
|
|
16673
|
-
readonly discriminator: 'kor_v2';
|
|
16674
16761
|
readonly name: string;
|
|
16675
16762
|
readonly bank_account_number: string;
|
|
16676
16763
|
readonly bank_routing_number: string;
|
|
@@ -16691,8 +16778,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16691
16778
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
|
|
16692
16779
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoFra
|
|
16693
16780
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta
|
|
16694
|
-
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor
|
|
16695
|
-
| io.flow.billing.bank.account.v0.models.BankAccountInfoKorV2;
|
|
16781
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
|
|
16696
16782
|
}
|
|
16697
16783
|
|
|
16698
16784
|
declare namespace io.flow.internal.v0.enums {
|
|
@@ -16732,7 +16818,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16732
16818
|
| 'prr-76544617791b4ce8af96b3a7879474c6'
|
|
16733
16819
|
| 'prr-566cc67167944bc4bd08167aa9c0beba'
|
|
16734
16820
|
| 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
16735
|
-
type B2BFeeMorTaxTriggerType = 'capture' | 'order';
|
|
16821
|
+
type B2BFeeMorTaxTriggerType = 'capture' | 'order' | 'settings';
|
|
16736
16822
|
type B2BFeeShippingTaxTriggerType = 'label' | 'trueup';
|
|
16737
16823
|
type B2BTaxLedgerDocumentType =
|
|
16738
16824
|
| 'b2b_invoice'
|
|
@@ -16744,7 +16830,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16744
16830
|
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
16745
16831
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
16746
16832
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16747
|
-
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
16833
|
+
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed' | 'paid';
|
|
16748
16834
|
type BillingAllocationKey =
|
|
16749
16835
|
| 'freight_cost'
|
|
16750
16836
|
| 'adjustment'
|
|
@@ -17017,7 +17103,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17017
17103
|
| 'b2b_tax_refund'
|
|
17018
17104
|
| 'b2b_fee_mor_tax'
|
|
17019
17105
|
| 'b2b_fee_shipping_tax'
|
|
17020
|
-
| 'flat_rate_label'
|
|
17106
|
+
| 'flat_rate_label'
|
|
17107
|
+
| 'flat_rate_label_subsidy';
|
|
17021
17108
|
type BojanaItemType = 'physical' | 'digital';
|
|
17022
17109
|
type CalculatorEngine =
|
|
17023
17110
|
| 'dtce_with_deminimis'
|
|
@@ -17076,6 +17163,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17076
17163
|
| 'unsupported_order_edit'
|
|
17077
17164
|
| 'order_allocation_duties_mismatch'
|
|
17078
17165
|
| 'order_missing'
|
|
17166
|
+
| 'order_cancelled'
|
|
17079
17167
|
| 'organization_deactivated';
|
|
17080
17168
|
type ChannelOrderAcceptanceStatus =
|
|
17081
17169
|
| 'accepted'
|
|
@@ -17164,6 +17252,25 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17164
17252
|
| 'ManagedMarketsChargeCredit'
|
|
17165
17253
|
| 'ManagedMarketsDisputeWonAmountCredit'
|
|
17166
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';
|
|
17167
17274
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
17168
17275
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
17169
17276
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -17215,6 +17322,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17215
17322
|
type ErpFileType = 'vendor';
|
|
17216
17323
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
17217
17324
|
type EventType =
|
|
17325
|
+
| 'adaptive_pricing_coefficient_upserted'
|
|
17326
|
+
| 'adaptive_pricing_coefficient_deleted'
|
|
17327
|
+
| 'adaptive_pricing_update_upserted'
|
|
17328
|
+
| 'adaptive_pricing_update_deleted'
|
|
17218
17329
|
| 'adaptive_shipping_rate_upserted'
|
|
17219
17330
|
| 'adaptive_shipping_rate_deleted'
|
|
17220
17331
|
| 'adyen_authorization_deleted'
|
|
@@ -17281,6 +17392,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17281
17392
|
| 'revenue_record_deleted'
|
|
17282
17393
|
| 'other_record_upserted'
|
|
17283
17394
|
| 'other_record_deleted'
|
|
17395
|
+
| 'sales_payment_record_upserted'
|
|
17396
|
+
| 'sales_payment_record_deleted'
|
|
17284
17397
|
| 'calculator_organization_settings_upserted'
|
|
17285
17398
|
| 'calculator_organization_settings_deleted'
|
|
17286
17399
|
| 'carrier_account_upserted_v2'
|
|
@@ -17387,6 +17500,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17387
17500
|
| 'fulfillment_fallbacks_deleted'
|
|
17388
17501
|
| 'quote_upserted'
|
|
17389
17502
|
| 'quote_deleted'
|
|
17503
|
+
| 'guaranteed_shipping_published_output_upserted'
|
|
17504
|
+
| 'guaranteed_shipping_published_output_deleted'
|
|
17390
17505
|
| 'all_items_export'
|
|
17391
17506
|
| 'harmonized_items_hs6_export'
|
|
17392
17507
|
| 'unharmonized_items_export'
|
|
@@ -17491,7 +17606,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17491
17606
|
| 'order_rates_published_v3'
|
|
17492
17607
|
| 'ratecard_dimension_estimate_upserted'
|
|
17493
17608
|
| 'ratecard_dimension_estimate_deleted'
|
|
17494
|
-
| 'ratecard_lanes_import_request'
|
|
17495
17609
|
| 'ratecard_service_fee_upserted'
|
|
17496
17610
|
| 'ratecard_service_fee_deleted'
|
|
17497
17611
|
| 'ratecard_rate_level_upserted'
|
|
@@ -17553,6 +17667,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17553
17667
|
| 'shopify_order_transaction_deleted'
|
|
17554
17668
|
| 'shopify_test_order_upserted'
|
|
17555
17669
|
| 'shopify_test_order_deleted'
|
|
17670
|
+
| 'shopify_merchant_markets_upserted'
|
|
17671
|
+
| 'shopify_merchant_markets_deleted'
|
|
17556
17672
|
| 'shopify_product_create_upserted'
|
|
17557
17673
|
| 'shopify_product_create_deleted'
|
|
17558
17674
|
| 'shopify_product_update_upserted'
|
|
@@ -17599,6 +17715,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17599
17715
|
| 'bojana_item_deleted'
|
|
17600
17716
|
| 'raveena_item_upserted'
|
|
17601
17717
|
| 'raveena_item_deleted'
|
|
17718
|
+
| 'mahesh_item_upserted'
|
|
17719
|
+
| 'mahesh_item_deleted'
|
|
17602
17720
|
| 'tracking_processing_error_upserted'
|
|
17603
17721
|
| 'tracking_processing_error_deleted'
|
|
17604
17722
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -17628,7 +17746,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17628
17746
|
type FeatureType = 'boolean' | 'decimal' | 'string';
|
|
17629
17747
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
17630
17748
|
type FileType = 'pdf';
|
|
17631
|
-
type
|
|
17749
|
+
type FlatRateLabelGuaranteeStatus = 'active' | 'void';
|
|
17750
|
+
type FlatRateLabelTransactionType =
|
|
17751
|
+
| 'adjustment'
|
|
17752
|
+
| 'reversal'
|
|
17753
|
+
| 'fee'
|
|
17754
|
+
| 'subsidy';
|
|
17632
17755
|
type FraudProvider =
|
|
17633
17756
|
| 'flow'
|
|
17634
17757
|
| 'forter'
|
|
@@ -17980,6 +18103,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17980
18103
|
| 'shopify-sandbox'
|
|
17981
18104
|
| 'enterprise-sandbox'
|
|
17982
18105
|
| 'enterprise-qa'
|
|
18106
|
+
| 'globale'
|
|
18107
|
+
| 'globale-sandbox'
|
|
17983
18108
|
| 'cafe24'
|
|
17984
18109
|
| 'cafe24-sandbox';
|
|
17985
18110
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
@@ -18482,6 +18607,67 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18482
18607
|
readonly quantity: number;
|
|
18483
18608
|
}
|
|
18484
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
|
+
|
|
18639
|
+
interface AdaptivePricingDestinationUpdate {
|
|
18640
|
+
readonly country: string;
|
|
18641
|
+
readonly updated_at: string;
|
|
18642
|
+
readonly tax_and_duty_coefficient: number;
|
|
18643
|
+
readonly fees_coefficient: number;
|
|
18644
|
+
readonly merchant_subsidy: io.flow.common.v0.models.Money;
|
|
18645
|
+
}
|
|
18646
|
+
|
|
18647
|
+
interface AdaptivePricingUpdate {
|
|
18648
|
+
readonly channel_id: string;
|
|
18649
|
+
readonly organization_id: string;
|
|
18650
|
+
readonly destination_updates: io.flow.internal.v0.models.AdaptivePricingDestinationUpdate[];
|
|
18651
|
+
}
|
|
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
|
+
|
|
18485
18671
|
interface AdaptiveShippingOrderGuarantee {
|
|
18486
18672
|
readonly id: string;
|
|
18487
18673
|
readonly organization_id: string;
|
|
@@ -18510,6 +18696,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18510
18696
|
interface AdaptiveShippingRate {
|
|
18511
18697
|
readonly id: string;
|
|
18512
18698
|
readonly organization_id: string;
|
|
18699
|
+
readonly channel_id: string;
|
|
18513
18700
|
readonly destination_country: string;
|
|
18514
18701
|
readonly coefficient: number;
|
|
18515
18702
|
readonly flat_rates: io.flow.internal.v0.models.FlatRate[];
|
|
@@ -19224,6 +19411,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19224
19411
|
readonly expected_delivery_by?: string;
|
|
19225
19412
|
readonly attributes?: Record<string, string>;
|
|
19226
19413
|
readonly total: io.flow.common.v0.models.Price;
|
|
19414
|
+
readonly created_at?: string;
|
|
19415
|
+
readonly failed_on?: string;
|
|
19227
19416
|
}
|
|
19228
19417
|
|
|
19229
19418
|
interface BankPaymentDeletedV2 {
|
|
@@ -19515,6 +19704,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19515
19704
|
readonly b2b_fee_mor_tax: io.flow.common.v0.models.Price;
|
|
19516
19705
|
readonly b2b_fee_shipping_tax: io.flow.common.v0.models.Price;
|
|
19517
19706
|
readonly flat_rate_label: io.flow.common.v0.models.Price;
|
|
19707
|
+
readonly flat_rate_label_subsidy: io.flow.common.v0.models.Price;
|
|
19518
19708
|
}
|
|
19519
19709
|
|
|
19520
19710
|
interface BillingStatementUpserted {
|
|
@@ -21009,6 +21199,93 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21009
21199
|
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
21010
21200
|
}
|
|
21011
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
|
+
|
|
21012
21289
|
interface CryptoAccount {
|
|
21013
21290
|
readonly discriminator: 'crypto_account';
|
|
21014
21291
|
readonly id: string;
|
|
@@ -22309,6 +22586,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22309
22586
|
readonly transfer?: io.flow.internal.v0.models.Fee;
|
|
22310
22587
|
readonly negative_balance?: io.flow.internal.v0.models.Fee;
|
|
22311
22588
|
readonly sp?: io.flow.internal.v0.models.Fee;
|
|
22589
|
+
readonly revenue_share?: io.flow.internal.v0.models.Fee;
|
|
22312
22590
|
}
|
|
22313
22591
|
|
|
22314
22592
|
interface FinanceBankAccount {
|
|
@@ -23169,6 +23447,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23169
23447
|
readonly tracker_id: string;
|
|
23170
23448
|
}
|
|
23171
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
|
+
|
|
23172
23476
|
interface HarmonizationClassificationStatisticsData {
|
|
23173
23477
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
23174
23478
|
}
|
|
@@ -24335,6 +24639,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24335
24639
|
readonly added_on: string;
|
|
24336
24640
|
}
|
|
24337
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
|
+
|
|
24338
24649
|
interface MaheshItemForm {
|
|
24339
24650
|
readonly number: string;
|
|
24340
24651
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -24343,6 +24654,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24343
24654
|
readonly added_on: string;
|
|
24344
24655
|
}
|
|
24345
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
|
+
|
|
24346
24664
|
interface MainTransaction {
|
|
24347
24665
|
readonly id: string;
|
|
24348
24666
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -24355,6 +24673,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24355
24673
|
readonly channel_statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
24356
24674
|
readonly created_at: string;
|
|
24357
24675
|
readonly original_at?: string;
|
|
24676
|
+
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
24358
24677
|
}
|
|
24359
24678
|
|
|
24360
24679
|
interface MainTransactionDeleted {
|
|
@@ -24650,10 +24969,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24650
24969
|
readonly surcharges?: io.flow.internal.v0.models.MerchantSurcharge[];
|
|
24651
24970
|
readonly freight_guaranteed?: number;
|
|
24652
24971
|
readonly freight_non_guaranteed?: number;
|
|
24972
|
+
readonly freight_subsidy?: number;
|
|
24653
24973
|
readonly total: number;
|
|
24654
24974
|
readonly tax_refund?: number;
|
|
24655
24975
|
readonly tax_reversal?: number;
|
|
24656
24976
|
readonly duty_reversal?: number;
|
|
24977
|
+
readonly flat_rate_reversal?: number;
|
|
24978
|
+
readonly flat_rate_subsidy_reversal?: number;
|
|
24657
24979
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
24658
24980
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
24659
24981
|
}
|
|
@@ -25679,6 +26001,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25679
26001
|
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
25680
26002
|
readonly number: string;
|
|
25681
26003
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
26004
|
+
readonly destination_province?: string;
|
|
25682
26005
|
}
|
|
25683
26006
|
|
|
25684
26007
|
interface OtherRecordOrderSummaryIdentifiers {
|
|
@@ -26386,8 +26709,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26386
26709
|
readonly matching_sellability_positive_keywords?: string[];
|
|
26387
26710
|
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
26388
26711
|
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26712
|
+
readonly inferred_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26713
|
+
readonly effective_taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
26389
26714
|
readonly fingerprint: string;
|
|
26390
26715
|
readonly screening_mode?: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
26716
|
+
readonly created_at?: string;
|
|
26391
26717
|
}
|
|
26392
26718
|
|
|
26393
26719
|
interface PreonboardingSellabilityResultDeleted {
|
|
@@ -27064,14 +27390,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27064
27390
|
readonly number: string;
|
|
27065
27391
|
}
|
|
27066
27392
|
|
|
27067
|
-
interface RatecardLanesImportRequest {
|
|
27068
|
-
readonly discriminator: 'ratecard_lanes_import_request';
|
|
27069
|
-
readonly event_id: string;
|
|
27070
|
-
readonly timestamp: string;
|
|
27071
|
-
readonly organization: string;
|
|
27072
|
-
readonly data: io.flow.ratecard.v0.models.RatecardLanesImportRequestData;
|
|
27073
|
-
}
|
|
27074
|
-
|
|
27075
27393
|
interface RatecardRateLevelDeleted {
|
|
27076
27394
|
readonly discriminator: 'ratecard_rate_level_deleted';
|
|
27077
27395
|
readonly event_id: string;
|
|
@@ -27132,15 +27450,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27132
27450
|
readonly fee: io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
27133
27451
|
}
|
|
27134
27452
|
|
|
27135
|
-
interface RatecardServiceFeesOverride {
|
|
27136
|
-
readonly ratecard: io.flow.internal.v0.models.RatecardInternalSummary;
|
|
27137
|
-
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
27138
|
-
}
|
|
27139
|
-
|
|
27140
|
-
interface RatecardServiceFeesOverrideForm {
|
|
27141
|
-
readonly service_fees: io.flow.ratecard.v0.unions.ServiceFee[];
|
|
27142
|
-
}
|
|
27143
|
-
|
|
27144
27453
|
interface RatesChanged {
|
|
27145
27454
|
readonly event_id: string;
|
|
27146
27455
|
readonly timestamp: string;
|
|
@@ -27269,7 +27578,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27269
27578
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
27270
27579
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
27271
27580
|
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
27272
|
-
readonly
|
|
27581
|
+
readonly account_currencies?: io.flow.internal.v0.enums.AccountCurrencyFilter[];
|
|
27273
27582
|
readonly channel_id?: string;
|
|
27274
27583
|
}
|
|
27275
27584
|
|
|
@@ -27402,6 +27711,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27402
27711
|
readonly td_fx_diff?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27403
27712
|
}
|
|
27404
27713
|
|
|
27714
|
+
interface ReportingFreight {
|
|
27715
|
+
readonly guaranteed?: io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
27716
|
+
readonly subsidy?: io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
27717
|
+
}
|
|
27718
|
+
|
|
27719
|
+
interface ReportingFreightGuaranteed {
|
|
27720
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27721
|
+
readonly coefficient: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27722
|
+
}
|
|
27723
|
+
|
|
27724
|
+
interface ReportingFreightSubsidy {
|
|
27725
|
+
readonly amount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27726
|
+
}
|
|
27727
|
+
|
|
27405
27728
|
interface ReportingFulfillment {
|
|
27406
27729
|
readonly id: string;
|
|
27407
27730
|
readonly sequence_number: number;
|
|
@@ -27442,13 +27765,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27442
27765
|
}
|
|
27443
27766
|
|
|
27444
27767
|
interface ReportingFx {
|
|
27445
|
-
readonly shipping: io.flow.internal.v0.models.
|
|
27446
|
-
readonly fees: io.flow.internal.v0.models.
|
|
27447
|
-
readonly product: io.flow.internal.v0.models.
|
|
27448
|
-
readonly tax: io.flow.internal.v0.models.
|
|
27449
|
-
readonly duty: io.flow.internal.v0.models.
|
|
27450
|
-
readonly tips?: io.flow.internal.v0.models.
|
|
27451
|
-
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;
|
|
27452
27780
|
}
|
|
27453
27781
|
|
|
27454
27782
|
interface ReportingMerchantBreakdown {
|
|
@@ -27501,12 +27829,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27501
27829
|
readonly freight_breakdown?: io.flow.internal.v0.models.ReportingMerchantFreight;
|
|
27502
27830
|
readonly freight_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27503
27831
|
readonly freight_non_guaranteed?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27832
|
+
readonly freight_subsidy?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27504
27833
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27505
27834
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27506
27835
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27507
27836
|
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27508
27837
|
readonly tax_reversal?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27509
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;
|
|
27510
27841
|
readonly tax_reversal_for_lvg_order?: boolean;
|
|
27511
27842
|
readonly duty_reversal_for_lvg_order?: boolean;
|
|
27512
27843
|
}
|
|
@@ -28240,16 +28571,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28240
28571
|
readonly tax?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28241
28572
|
readonly duty?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28242
28573
|
readonly fees: io.flow.internal.v0.models.ReportingFees;
|
|
28574
|
+
readonly freight?: io.flow.internal.v0.models.ReportingFreight;
|
|
28243
28575
|
readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
|
|
28244
28576
|
readonly payment_is: io.flow.internal.v0.models.PaymentIs;
|
|
28245
28577
|
readonly price_inclusivity?: io.flow.internal.v0.models.PriceInclusivity;
|
|
28246
28578
|
readonly destination_country: string;
|
|
28579
|
+
readonly destination_province?: string;
|
|
28247
28580
|
readonly fulfilled_at?: string;
|
|
28248
28581
|
readonly reconciliation?: io.flow.internal.v0.models.ReportingReconciliation;
|
|
28249
28582
|
readonly is_eu_destination?: boolean;
|
|
28250
28583
|
readonly debug_url?: string;
|
|
28251
28584
|
}
|
|
28252
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
|
+
|
|
28253
28602
|
interface SandboxSetup {
|
|
28254
28603
|
readonly requested_by: string;
|
|
28255
28604
|
}
|
|
@@ -28364,6 +28713,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28364
28713
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
28365
28714
|
}
|
|
28366
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
|
+
|
|
28367
28725
|
interface SessionOrderData {
|
|
28368
28726
|
readonly id: string;
|
|
28369
28727
|
readonly session: io.flow.common.v0.models.SessionReference;
|
|
@@ -28395,6 +28753,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28395
28753
|
readonly rate_level_key?: string;
|
|
28396
28754
|
readonly cost_estimate_source: io.flow.label.v0.enums.CostEstimateSource;
|
|
28397
28755
|
readonly cost: io.flow.common.v0.models.Money;
|
|
28756
|
+
readonly dim_factor: number;
|
|
28398
28757
|
}
|
|
28399
28758
|
|
|
28400
28759
|
interface ShippingCostDeleted {
|
|
@@ -28523,6 +28882,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28523
28882
|
readonly phone?: string;
|
|
28524
28883
|
}
|
|
28525
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
|
+
|
|
28526
28891
|
interface ShopifyDispute {
|
|
28527
28892
|
readonly id: string;
|
|
28528
28893
|
readonly organization_id: string;
|
|
@@ -28888,6 +29253,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28888
29253
|
readonly weight_unit: io.flow.internal.v0.enums.ShopifyWeightUnit;
|
|
28889
29254
|
}
|
|
28890
29255
|
|
|
29256
|
+
interface ShopifyMerchantMarketCountry {
|
|
29257
|
+
readonly code: string;
|
|
29258
|
+
readonly actively_managing: boolean;
|
|
29259
|
+
readonly enabled: boolean;
|
|
29260
|
+
}
|
|
29261
|
+
|
|
29262
|
+
interface ShopifyMerchantMarkets {
|
|
29263
|
+
readonly id: string;
|
|
29264
|
+
readonly organization_id: string;
|
|
29265
|
+
readonly countries: io.flow.internal.v0.models.ShopifyMerchantMarketCountry[];
|
|
29266
|
+
}
|
|
29267
|
+
|
|
29268
|
+
interface ShopifyMerchantMarketsDeleted {
|
|
29269
|
+
readonly discriminator: 'shopify_merchant_markets_deleted';
|
|
29270
|
+
readonly event_id: string;
|
|
29271
|
+
readonly timestamp: string;
|
|
29272
|
+
readonly organization: string;
|
|
29273
|
+
readonly id: string;
|
|
29274
|
+
}
|
|
29275
|
+
|
|
29276
|
+
interface ShopifyMerchantMarketsUpserted {
|
|
29277
|
+
readonly discriminator: 'shopify_merchant_markets_upserted';
|
|
29278
|
+
readonly event_id: string;
|
|
29279
|
+
readonly timestamp: string;
|
|
29280
|
+
readonly organization: string;
|
|
29281
|
+
readonly shopify_merchant_markets: io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
29282
|
+
}
|
|
29283
|
+
|
|
28891
29284
|
interface ShopifyMerchantPlan {
|
|
28892
29285
|
readonly id: string;
|
|
28893
29286
|
readonly authorization: io.flow.payment.v0.models.AuthorizationReference;
|
|
@@ -29226,7 +29619,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29226
29619
|
|
|
29227
29620
|
interface ShopifyShipmentRateAvailable {
|
|
29228
29621
|
readonly carrier_service_id: string;
|
|
29229
|
-
readonly total_charges: io.flow.internal.v0.models.
|
|
29622
|
+
readonly total_charges: io.flow.internal.v0.models.ShopifyCost;
|
|
29230
29623
|
readonly charges: io.flow.internal.v0.models.ShopifyShipmentRateCharge[];
|
|
29231
29624
|
readonly shipment_options: io.flow.internal.v0.models.ShopifyShipmentRateOption[];
|
|
29232
29625
|
readonly expected_delivery_date?: string;
|
|
@@ -29236,12 +29629,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29236
29629
|
|
|
29237
29630
|
interface ShopifyShipmentRateCharge {
|
|
29238
29631
|
readonly code: io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
29239
|
-
readonly cost: io.flow.internal.v0.models.
|
|
29632
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
29240
29633
|
}
|
|
29241
29634
|
|
|
29242
29635
|
interface ShopifyShipmentRateOption {
|
|
29243
29636
|
readonly code: io.flow.internal.v0.enums.ShopifyShipmentOptionCode;
|
|
29244
|
-
readonly cost: io.flow.internal.v0.models.
|
|
29637
|
+
readonly cost: io.flow.internal.v0.models.ShopifyCost;
|
|
29245
29638
|
readonly optional?: boolean;
|
|
29246
29639
|
}
|
|
29247
29640
|
|
|
@@ -29287,12 +29680,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29287
29680
|
readonly byoa: boolean;
|
|
29288
29681
|
}
|
|
29289
29682
|
|
|
29290
|
-
interface ShopifyShipmentRateTotalCharges {
|
|
29291
|
-
readonly subtotal: io.flow.internal.v0.models.ShopifyMoney;
|
|
29292
|
-
readonly tax: io.flow.internal.v0.models.ShopifyMoney;
|
|
29293
|
-
readonly total: io.flow.internal.v0.models.ShopifyMoney;
|
|
29294
|
-
}
|
|
29295
|
-
|
|
29296
29683
|
interface ShopifyShipmentRateUnavailable {
|
|
29297
29684
|
readonly carrier_service_id: string;
|
|
29298
29685
|
readonly reasons: io.flow.internal.v0.models.ShopifyShipmentRateReason[];
|
|
@@ -30898,6 +31285,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30898
31285
|
| io.flow.internal.v0.models.DutyCompoundExpression
|
|
30899
31286
|
| io.flow.internal.v0.models.DutySimpleExpression;
|
|
30900
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
|
|
30901
31292
|
| io.flow.internal.v0.models.AdaptiveShippingRateUpserted
|
|
30902
31293
|
| io.flow.internal.v0.models.AdaptiveShippingRateDeleted
|
|
30903
31294
|
| io.flow.internal.v0.models.AdyenAuthorizationDeleted
|
|
@@ -30964,6 +31355,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30964
31355
|
| io.flow.internal.v0.models.RevenueRecordDeleted
|
|
30965
31356
|
| io.flow.internal.v0.models.OtherRecordUpserted
|
|
30966
31357
|
| io.flow.internal.v0.models.OtherRecordDeleted
|
|
31358
|
+
| io.flow.internal.v0.models.SalesPaymentRecordUpserted
|
|
31359
|
+
| io.flow.internal.v0.models.SalesPaymentRecordDeleted
|
|
30967
31360
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted
|
|
30968
31361
|
| io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted
|
|
30969
31362
|
| io.flow.internal.v0.models.CarrierAccountUpsertedV2
|
|
@@ -31070,6 +31463,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31070
31463
|
| io.flow.internal.v0.models.FulfillmentFallbacksDeleted
|
|
31071
31464
|
| io.flow.internal.v0.models.QuoteUpserted
|
|
31072
31465
|
| io.flow.internal.v0.models.QuoteDeleted
|
|
31466
|
+
| io.flow.internal.v0.models.GuaranteedShippingPublishedOutputUpserted
|
|
31467
|
+
| io.flow.internal.v0.models.GuaranteedShippingPublishedOutputDeleted
|
|
31073
31468
|
| io.flow.internal.v0.models.AllItemsExport
|
|
31074
31469
|
| io.flow.internal.v0.models.HarmonizedItemsHs6Export
|
|
31075
31470
|
| io.flow.internal.v0.models.UnharmonizedItemsExport
|
|
@@ -31174,7 +31569,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31174
31569
|
| io.flow.internal.v0.models.OrderRatesPublishedV3
|
|
31175
31570
|
| io.flow.internal.v0.models.RatecardDimensionEstimateUpserted
|
|
31176
31571
|
| io.flow.internal.v0.models.RatecardDimensionEstimateDeleted
|
|
31177
|
-
| io.flow.internal.v0.models.RatecardLanesImportRequest
|
|
31178
31572
|
| io.flow.internal.v0.models.RatecardServiceFeeUpserted
|
|
31179
31573
|
| io.flow.internal.v0.models.RatecardServiceFeeDeleted
|
|
31180
31574
|
| io.flow.internal.v0.models.RatecardRateLevelUpserted
|
|
@@ -31236,6 +31630,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31236
31630
|
| io.flow.internal.v0.models.ShopifyOrderTransactionDeleted
|
|
31237
31631
|
| io.flow.internal.v0.models.ShopifyTestOrderUpserted
|
|
31238
31632
|
| io.flow.internal.v0.models.ShopifyTestOrderDeleted
|
|
31633
|
+
| io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted
|
|
31634
|
+
| io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted
|
|
31239
31635
|
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
31240
31636
|
| io.flow.internal.v0.models.ShopifyProductCreateDeleted
|
|
31241
31637
|
| io.flow.internal.v0.models.ShopifyProductUpdateUpserted
|
|
@@ -31282,6 +31678,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
31282
31678
|
| io.flow.internal.v0.models.BojanaItemDeleted
|
|
31283
31679
|
| io.flow.internal.v0.models.RaveenaItemUpserted
|
|
31284
31680
|
| io.flow.internal.v0.models.RaveenaItemDeleted
|
|
31681
|
+
| io.flow.internal.v0.models.MaheshItemUpserted
|
|
31682
|
+
| io.flow.internal.v0.models.MaheshItemDeleted
|
|
31285
31683
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
31286
31684
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
31287
31685
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -31561,6 +31959,20 @@ export type AccountingPendingOrderMetadata =
|
|
|
31561
31959
|
export type AccountingReturnMetadata =
|
|
31562
31960
|
io.flow.internal.v0.models.AccountingReturnMetadata;
|
|
31563
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;
|
|
31968
|
+
export type AdaptivePricingDestinationUpdate =
|
|
31969
|
+
io.flow.internal.v0.models.AdaptivePricingDestinationUpdate;
|
|
31970
|
+
export type AdaptivePricingUpdate =
|
|
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;
|
|
31564
31976
|
export type AdaptiveShippingOrderGuarantee =
|
|
31565
31977
|
io.flow.internal.v0.models.AdaptiveShippingOrderGuarantee;
|
|
31566
31978
|
export type AdaptiveShippingOrderGuaranteeDeleted =
|
|
@@ -32265,6 +32677,20 @@ export type ConsoleMarkUnresolvableForm =
|
|
|
32265
32677
|
io.flow.internal.v0.models.ConsoleMarkUnresolvableForm;
|
|
32266
32678
|
export type CourthouseProductSummary =
|
|
32267
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;
|
|
32268
32694
|
export type CrossdockTrackingStatus =
|
|
32269
32695
|
io.flow.internal.v0.enums.CrossdockTrackingStatus;
|
|
32270
32696
|
export type CryptoAccount = io.flow.internal.v0.models.CryptoAccount;
|
|
@@ -32606,6 +33032,8 @@ export type FiservMerchantModificationForm =
|
|
|
32606
33032
|
export type FiservMerchantPutForm =
|
|
32607
33033
|
io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
32608
33034
|
export type FlatRate = io.flow.internal.v0.models.FlatRate;
|
|
33035
|
+
export type FlatRateLabelGuaranteeStatus =
|
|
33036
|
+
io.flow.internal.v0.enums.FlatRateLabelGuaranteeStatus;
|
|
32609
33037
|
export type FlatRateLabelReversal =
|
|
32610
33038
|
io.flow.internal.v0.models.FlatRateLabelReversal;
|
|
32611
33039
|
export type FlatRateLabelReversalDeleted =
|
|
@@ -32790,6 +33218,12 @@ export type GoogleShoppingSetting =
|
|
|
32790
33218
|
io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
32791
33219
|
export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
32792
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;
|
|
32793
33227
|
export type HarmonizationClassificationStatisticsData =
|
|
32794
33228
|
io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
32795
33229
|
export type HarmonizationClassificationStatisticsPublished =
|
|
@@ -33059,8 +33493,10 @@ export type LoyaltyProgramReward =
|
|
|
33059
33493
|
export type LoyaltyProgramRewards =
|
|
33060
33494
|
io.flow.internal.v0.models.LoyaltyProgramRewards;
|
|
33061
33495
|
export type MaheshItem = io.flow.internal.v0.models.MaheshItem;
|
|
33496
|
+
export type MaheshItemDeleted = io.flow.internal.v0.models.MaheshItemDeleted;
|
|
33062
33497
|
export type MaheshItemForm = io.flow.internal.v0.models.MaheshItemForm;
|
|
33063
33498
|
export type MaheshItemType = io.flow.internal.v0.enums.MaheshItemType;
|
|
33499
|
+
export type MaheshItemUpserted = io.flow.internal.v0.models.MaheshItemUpserted;
|
|
33064
33500
|
export type MailClass = io.flow.internal.v0.enums.MailClass;
|
|
33065
33501
|
export type MainTransaction = io.flow.internal.v0.models.MainTransaction;
|
|
33066
33502
|
export type MainTransactionDeleted =
|
|
@@ -33778,8 +34214,6 @@ export type RatecardInternalServiceFee =
|
|
|
33778
34214
|
io.flow.internal.v0.models.RatecardInternalServiceFee;
|
|
33779
34215
|
export type RatecardInternalSummary =
|
|
33780
34216
|
io.flow.internal.v0.models.RatecardInternalSummary;
|
|
33781
|
-
export type RatecardLanesImportRequest =
|
|
33782
|
-
io.flow.internal.v0.models.RatecardLanesImportRequest;
|
|
33783
34217
|
export type RatecardRateLevelDeleted =
|
|
33784
34218
|
io.flow.internal.v0.models.RatecardRateLevelDeleted;
|
|
33785
34219
|
export type RatecardRateLevelOrganizationDeleted =
|
|
@@ -33796,10 +34230,6 @@ export type RatecardServiceFeeDeleted =
|
|
|
33796
34230
|
io.flow.internal.v0.models.RatecardServiceFeeDeleted;
|
|
33797
34231
|
export type RatecardServiceFeeUpserted =
|
|
33798
34232
|
io.flow.internal.v0.models.RatecardServiceFeeUpserted;
|
|
33799
|
-
export type RatecardServiceFeesOverride =
|
|
33800
|
-
io.flow.internal.v0.models.RatecardServiceFeesOverride;
|
|
33801
|
-
export type RatecardServiceFeesOverrideForm =
|
|
33802
|
-
io.flow.internal.v0.models.RatecardServiceFeesOverrideForm;
|
|
33803
34233
|
export type RatesChanged = io.flow.internal.v0.models.RatesChanged;
|
|
33804
34234
|
export type RatesNamesSummary = io.flow.internal.v0.models.RatesNamesSummary;
|
|
33805
34235
|
export type RaveenaItem = io.flow.internal.v0.models.RaveenaItem;
|
|
@@ -33862,6 +34292,11 @@ export type ReportingDestination =
|
|
|
33862
34292
|
io.flow.internal.v0.models.ReportingDestination;
|
|
33863
34293
|
export type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
33864
34294
|
export type ReportingFees = io.flow.internal.v0.models.ReportingFees;
|
|
34295
|
+
export type ReportingFreight = io.flow.internal.v0.models.ReportingFreight;
|
|
34296
|
+
export type ReportingFreightGuaranteed =
|
|
34297
|
+
io.flow.internal.v0.models.ReportingFreightGuaranteed;
|
|
34298
|
+
export type ReportingFreightSubsidy =
|
|
34299
|
+
io.flow.internal.v0.models.ReportingFreightSubsidy;
|
|
33865
34300
|
export type ReportingFulfillment =
|
|
33866
34301
|
io.flow.internal.v0.models.ReportingFulfillment;
|
|
33867
34302
|
export type ReportingFulfillmentHas =
|
|
@@ -33871,6 +34306,7 @@ export type ReportingFulfillmentIs =
|
|
|
33871
34306
|
export type ReportingFulfillmentIsVirtual =
|
|
33872
34307
|
io.flow.internal.v0.enums.ReportingFulfillmentIsVirtual;
|
|
33873
34308
|
export type ReportingFx = io.flow.internal.v0.models.ReportingFx;
|
|
34309
|
+
export type ReportingFxValue = io.flow.internal.v0.models.ReportingFxValue;
|
|
33874
34310
|
export type ReportingMerchantBreakdown =
|
|
33875
34311
|
io.flow.internal.v0.models.ReportingMerchantBreakdown;
|
|
33876
34312
|
export type ReportingMerchantFees =
|
|
@@ -34063,6 +34499,10 @@ export type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
|
34063
34499
|
export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
34064
34500
|
export type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
34065
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;
|
|
34066
34506
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
34067
34507
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
34068
34508
|
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
@@ -34093,6 +34533,8 @@ export type SellabilityCheckStatus =
|
|
|
34093
34533
|
export type SellabilityInternalMatchType =
|
|
34094
34534
|
io.flow.internal.v0.enums.SellabilityInternalMatchType;
|
|
34095
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;
|
|
34096
34538
|
export type SessionOrderData = io.flow.internal.v0.models.SessionOrderData;
|
|
34097
34539
|
export type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
34098
34540
|
export type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
@@ -34130,6 +34572,7 @@ export type ShopifyChannelOrganizationTokens =
|
|
|
34130
34572
|
export type ShopifyChargeCode = io.flow.internal.v0.enums.ShopifyChargeCode;
|
|
34131
34573
|
export type ShopifyContactDetails =
|
|
34132
34574
|
io.flow.internal.v0.models.ShopifyContactDetails;
|
|
34575
|
+
export type ShopifyCost = io.flow.internal.v0.models.ShopifyCost;
|
|
34133
34576
|
export type ShopifyDeliveryMethodType =
|
|
34134
34577
|
io.flow.internal.v0.enums.ShopifyDeliveryMethodType;
|
|
34135
34578
|
export type ShopifyDimensionUnit =
|
|
@@ -34238,6 +34681,14 @@ export type ShopifyMarketsWebhookRegistrationUpserted =
|
|
|
34238
34681
|
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted;
|
|
34239
34682
|
export type ShopifyMeasurements =
|
|
34240
34683
|
io.flow.internal.v0.models.ShopifyMeasurements;
|
|
34684
|
+
export type ShopifyMerchantMarketCountry =
|
|
34685
|
+
io.flow.internal.v0.models.ShopifyMerchantMarketCountry;
|
|
34686
|
+
export type ShopifyMerchantMarkets =
|
|
34687
|
+
io.flow.internal.v0.models.ShopifyMerchantMarkets;
|
|
34688
|
+
export type ShopifyMerchantMarketsDeleted =
|
|
34689
|
+
io.flow.internal.v0.models.ShopifyMerchantMarketsDeleted;
|
|
34690
|
+
export type ShopifyMerchantMarketsUpserted =
|
|
34691
|
+
io.flow.internal.v0.models.ShopifyMerchantMarketsUpserted;
|
|
34241
34692
|
export type ShopifyMerchantPlan =
|
|
34242
34693
|
io.flow.internal.v0.models.ShopifyMerchantPlan;
|
|
34243
34694
|
export type ShopifyMerchantPlanDeleted =
|
|
@@ -34367,8 +34818,6 @@ export type ShopifyShipmentRateShipment =
|
|
|
34367
34818
|
io.flow.internal.v0.models.ShopifyShipmentRateShipment;
|
|
34368
34819
|
export type ShopifyShipmentRateShipper =
|
|
34369
34820
|
io.flow.internal.v0.models.ShopifyShipmentRateShipper;
|
|
34370
|
-
export type ShopifyShipmentRateTotalCharges =
|
|
34371
|
-
io.flow.internal.v0.models.ShopifyShipmentRateTotalCharges;
|
|
34372
34821
|
export type ShopifyShipmentRateUnavailable =
|
|
34373
34822
|
io.flow.internal.v0.models.ShopifyShipmentRateUnavailable;
|
|
34374
34823
|
export type ShopifyShippingLocation =
|