@flowio/types 11.24.106 → 11.24.107
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 +217 -669
- package/dist/api.d.ts +29 -39
- package/package.json +2 -2
- package/src/api-internal.ts +301 -875
- package/src/api.ts +37 -50
package/src/api-internal.ts
CHANGED
|
@@ -3112,6 +3112,15 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
3112
3112
|
| 'under_review'
|
|
3113
3113
|
| 'won'
|
|
3114
3114
|
| 'lost';
|
|
3115
|
+
type EarlyFraudWarningEventType = 'radar.early_fraud_warning';
|
|
3116
|
+
type EarlyFraudWarningType =
|
|
3117
|
+
| 'card_never_received'
|
|
3118
|
+
| 'fraudulent_card_application'
|
|
3119
|
+
| 'made_with_counterfeit_card'
|
|
3120
|
+
| 'made_with_lost_card'
|
|
3121
|
+
| 'made_with_stolen_card'
|
|
3122
|
+
| 'unauthorized_use_of_card'
|
|
3123
|
+
| 'misc';
|
|
3115
3124
|
type ErrorCode =
|
|
3116
3125
|
| 'invalid_number'
|
|
3117
3126
|
| 'invalid_expiry_month'
|
|
@@ -4399,6 +4408,17 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4399
4408
|
readonly previous_attributes?: any /*object*/;
|
|
4400
4409
|
}
|
|
4401
4410
|
|
|
4411
|
+
interface StripeEarlyFraudWarningEvent {
|
|
4412
|
+
readonly id: string;
|
|
4413
|
+
readonly object: io.flow.stripe.v0.enums.EarlyFraudWarningEventType;
|
|
4414
|
+
readonly actionable: boolean;
|
|
4415
|
+
readonly charge: string;
|
|
4416
|
+
readonly created: number;
|
|
4417
|
+
readonly fraud_type: io.flow.stripe.v0.enums.EarlyFraudWarningType;
|
|
4418
|
+
readonly livemode: boolean;
|
|
4419
|
+
readonly payment_intent?: string;
|
|
4420
|
+
}
|
|
4421
|
+
|
|
4402
4422
|
interface StripeError {
|
|
4403
4423
|
readonly type: io.flow.stripe.v0.enums.ErrorType;
|
|
4404
4424
|
readonly charge?: string;
|
|
@@ -4635,6 +4655,19 @@ declare namespace io.flow.label.v0.enums {
|
|
|
4635
4655
|
| 'dimensions_estimated'
|
|
4636
4656
|
| 'default_item_dimensions_estimated';
|
|
4637
4657
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
4658
|
+
type ShippingLabelErrorCode =
|
|
4659
|
+
| 'generic_error'
|
|
4660
|
+
| 'cancelled_order'
|
|
4661
|
+
| 'carrier_outage'
|
|
4662
|
+
| 'catalog_issue'
|
|
4663
|
+
| 'invalid_destination'
|
|
4664
|
+
| 'invalid_origin'
|
|
4665
|
+
| 'invalid_shipping_parameters'
|
|
4666
|
+
| 'merchant_error'
|
|
4667
|
+
| 'order_not_found'
|
|
4668
|
+
| 'order_processing'
|
|
4669
|
+
| 'restricted_item'
|
|
4670
|
+
| 'unsupported_lane';
|
|
4638
4671
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
4639
4672
|
}
|
|
4640
4673
|
|
|
@@ -4778,6 +4811,11 @@ declare namespace io.flow.label.v0.models {
|
|
|
4778
4811
|
readonly required: boolean;
|
|
4779
4812
|
}
|
|
4780
4813
|
|
|
4814
|
+
interface ShippingLabelError {
|
|
4815
|
+
readonly code: io.flow.label.v0.enums.ShippingLabelErrorCode;
|
|
4816
|
+
readonly messages: string[];
|
|
4817
|
+
}
|
|
4818
|
+
|
|
4781
4819
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
4782
4820
|
readonly units: io.flow.trueup.v0.models.LabelUnits;
|
|
4783
4821
|
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
@@ -6264,6 +6302,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6264
6302
|
readonly destination: string;
|
|
6265
6303
|
}
|
|
6266
6304
|
|
|
6305
|
+
interface ShopifyMarketsBestSellingProduct {
|
|
6306
|
+
readonly id: string;
|
|
6307
|
+
}
|
|
6308
|
+
|
|
6267
6309
|
interface ShopifyMarketsDiscrepancy {
|
|
6268
6310
|
readonly organization_id: string;
|
|
6269
6311
|
readonly count: number;
|
|
@@ -9000,36 +9042,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9000
9042
|
}
|
|
9001
9043
|
}
|
|
9002
9044
|
|
|
9003
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.enums {
|
|
9004
|
-
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
9005
|
-
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
9006
|
-
}
|
|
9007
|
-
|
|
9008
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.models {
|
|
9009
|
-
interface Details {
|
|
9010
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
9011
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
9012
|
-
readonly upserted_at: string;
|
|
9013
|
-
readonly time_elapsed_since_upserted: number;
|
|
9014
|
-
}
|
|
9015
|
-
|
|
9016
|
-
interface PricingIndicator {
|
|
9017
|
-
readonly discriminator: 'pricing_indicator';
|
|
9018
|
-
readonly event_id: string;
|
|
9019
|
-
readonly timestamp: string;
|
|
9020
|
-
readonly organization: string;
|
|
9021
|
-
readonly published_from: io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
|
|
9022
|
-
readonly status: io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
|
|
9023
|
-
readonly event_identifier: string;
|
|
9024
|
-
readonly details: io.flow.pricing.indicator.internal.event.v0.models.Details;
|
|
9025
|
-
}
|
|
9026
|
-
}
|
|
9027
|
-
|
|
9028
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.unions {
|
|
9029
|
-
type PricingIndicatorEvent =
|
|
9030
|
-
io.flow.pricing.indicator.internal.event.v0.models.PricingIndicator;
|
|
9031
|
-
}
|
|
9032
|
-
|
|
9033
9045
|
declare namespace io.flow.order.price.v0.enums {
|
|
9034
9046
|
type OrderPriceDetailComponentKey =
|
|
9035
9047
|
| 'adjustment'
|
|
@@ -9118,6 +9130,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
9118
9130
|
| 'order_contains_gift_card'
|
|
9119
9131
|
| 'order_contains_restricted_goods'
|
|
9120
9132
|
| 'missing_order_information'
|
|
9133
|
+
| 'missing_classification_information'
|
|
9121
9134
|
| 'unsupported_payment_information'
|
|
9122
9135
|
| 'unsupported_shop_currency'
|
|
9123
9136
|
| 'unsupported_free_order'
|
|
@@ -9180,6 +9193,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9180
9193
|
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
9181
9194
|
readonly order_created_at?: string;
|
|
9182
9195
|
readonly order_updated_at?: string;
|
|
9196
|
+
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
9183
9197
|
}
|
|
9184
9198
|
|
|
9185
9199
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -9208,6 +9222,11 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9208
9222
|
interface FlowChannelOrganization {
|
|
9209
9223
|
readonly placeholder?: string;
|
|
9210
9224
|
}
|
|
9225
|
+
|
|
9226
|
+
interface OrderEditSummary {
|
|
9227
|
+
readonly external_order_edit_reference: string;
|
|
9228
|
+
readonly edited_at: string;
|
|
9229
|
+
}
|
|
9211
9230
|
}
|
|
9212
9231
|
|
|
9213
9232
|
declare namespace io.flow.partner.v0.enums {
|
|
@@ -9999,6 +10018,10 @@ declare namespace io.flow.ftp.v0.models {
|
|
|
9999
10018
|
}
|
|
10000
10019
|
}
|
|
10001
10020
|
|
|
10021
|
+
declare namespace io.flow.shopify.markets.internal.event.v0.enums {
|
|
10022
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
10023
|
+
}
|
|
10024
|
+
|
|
10002
10025
|
declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
10003
10026
|
interface ChannelOrderSummaryDeleted {
|
|
10004
10027
|
readonly discriminator: 'channel_order_summary_deleted';
|
|
@@ -10047,6 +10070,45 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10047
10070
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
10048
10071
|
}
|
|
10049
10072
|
|
|
10073
|
+
interface ShopifyIncotermIncludes {
|
|
10074
|
+
readonly duties: boolean;
|
|
10075
|
+
readonly taxes: boolean;
|
|
10076
|
+
}
|
|
10077
|
+
|
|
10078
|
+
interface ShopifyIncotermSummaryErrorData {
|
|
10079
|
+
readonly id: string;
|
|
10080
|
+
readonly shopify_order_id: string;
|
|
10081
|
+
readonly order_number: string;
|
|
10082
|
+
readonly configuration: io.flow.shopify.markets.internal.event.v0.enums.ShopifyIncotermConfiguration;
|
|
10083
|
+
readonly includes: io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermIncludes;
|
|
10084
|
+
readonly reason: string;
|
|
10085
|
+
readonly order_submitted_at: string;
|
|
10086
|
+
}
|
|
10087
|
+
|
|
10088
|
+
interface ShopifyIncotermSummaryErrorPublished {
|
|
10089
|
+
readonly discriminator: 'shopify_incoterm_summary_error_published';
|
|
10090
|
+
readonly event_id: string;
|
|
10091
|
+
readonly timestamp: string;
|
|
10092
|
+
readonly organization: string;
|
|
10093
|
+
readonly data: io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorData;
|
|
10094
|
+
}
|
|
10095
|
+
|
|
10096
|
+
interface ShopifyMarketsBestSellingProductDeleted {
|
|
10097
|
+
readonly discriminator: 'shopify_markets_best_selling_product_deleted';
|
|
10098
|
+
readonly event_id: string;
|
|
10099
|
+
readonly timestamp: string;
|
|
10100
|
+
readonly organization: string;
|
|
10101
|
+
readonly id: string;
|
|
10102
|
+
}
|
|
10103
|
+
|
|
10104
|
+
interface ShopifyMarketsBestSellingProductUpserted {
|
|
10105
|
+
readonly discriminator: 'shopify_markets_best_selling_product_upserted';
|
|
10106
|
+
readonly event_id: string;
|
|
10107
|
+
readonly timestamp: string;
|
|
10108
|
+
readonly organization: string;
|
|
10109
|
+
readonly shopify_markets_best_selling_product: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
10110
|
+
}
|
|
10111
|
+
|
|
10050
10112
|
interface ShopifyMarketsMetricsDeleted {
|
|
10051
10113
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
10052
10114
|
readonly event_id: string;
|
|
@@ -10074,6 +10136,19 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10074
10136
|
readonly shopify_markets_order: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
10075
10137
|
}
|
|
10076
10138
|
|
|
10139
|
+
interface ShopifyMarketsOrderEditSummaryData {
|
|
10140
|
+
readonly channel_order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
10141
|
+
readonly edited_at: string;
|
|
10142
|
+
}
|
|
10143
|
+
|
|
10144
|
+
interface ShopifyMarketsOrderEditSummaryPublished {
|
|
10145
|
+
readonly discriminator: 'shopify_markets_order_edit_summary_published';
|
|
10146
|
+
readonly event_id: string;
|
|
10147
|
+
readonly timestamp: string;
|
|
10148
|
+
readonly organization: string;
|
|
10149
|
+
readonly data: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
10150
|
+
}
|
|
10151
|
+
|
|
10077
10152
|
interface ShopifyMarketsOrderUpserted {
|
|
10078
10153
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
10079
10154
|
readonly event_id: string;
|
|
@@ -10166,7 +10241,11 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
10166
10241
|
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted
|
|
10167
10242
|
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
10168
10243
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted
|
|
10169
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted
|
|
10244
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted
|
|
10245
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryPublished
|
|
10246
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
10247
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
10248
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
10170
10249
|
}
|
|
10171
10250
|
|
|
10172
10251
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -10198,6 +10277,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
10198
10277
|
type ExperienceCountryStatus = 'enabled' | 'disabled';
|
|
10199
10278
|
type ExperiencePaymentMethodTag = 'display';
|
|
10200
10279
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
10280
|
+
type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
10201
10281
|
type OrderErrorCode =
|
|
10202
10282
|
| 'generic_error'
|
|
10203
10283
|
| 'order_item_not_available'
|
|
@@ -10732,6 +10812,17 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10732
10812
|
readonly attributes?: Record<string, string>;
|
|
10733
10813
|
}
|
|
10734
10814
|
|
|
10815
|
+
interface IncotermIncludes {
|
|
10816
|
+
readonly duties: boolean;
|
|
10817
|
+
readonly taxes: boolean;
|
|
10818
|
+
}
|
|
10819
|
+
|
|
10820
|
+
interface IncotermSummary {
|
|
10821
|
+
readonly configuration: io.flow.experience.v0.enums.IncotermConfiguration;
|
|
10822
|
+
readonly includes: io.flow.experience.v0.models.IncotermIncludes;
|
|
10823
|
+
readonly reason?: string;
|
|
10824
|
+
}
|
|
10825
|
+
|
|
10735
10826
|
interface ItemMargin {
|
|
10736
10827
|
readonly id: string;
|
|
10737
10828
|
readonly key: string;
|
|
@@ -10833,6 +10924,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10833
10924
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
10834
10925
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
10835
10926
|
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
10927
|
+
readonly incoterm_summary?: io.flow.experience.v0.models.IncotermSummary;
|
|
10836
10928
|
}
|
|
10837
10929
|
|
|
10838
10930
|
interface OrderAddress {
|
|
@@ -12666,6 +12758,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
12666
12758
|
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
12667
12759
|
readonly timestamp: string;
|
|
12668
12760
|
readonly description?: string;
|
|
12761
|
+
readonly aggregator_status_code?: string;
|
|
12669
12762
|
}
|
|
12670
12763
|
|
|
12671
12764
|
interface TrackingEventForm {
|
|
@@ -16190,6 +16283,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16190
16283
|
| 'prr-79e41878ea564f9c81cc432a0e84703f'
|
|
16191
16284
|
| 'prr-f29c26dc09e04536bc77f9c32786ed70'
|
|
16192
16285
|
| 'prr-b186129720f0446eb452a68518437c95';
|
|
16286
|
+
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
16193
16287
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16194
16288
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
16195
16289
|
type BillingAllocationKey =
|
|
@@ -16419,12 +16513,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16419
16513
|
| 'duty_refund';
|
|
16420
16514
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
16421
16515
|
type CalculatorEngine =
|
|
16422
|
-
| 'flow_rate_and_rule'
|
|
16423
|
-
| 'dtce'
|
|
16424
|
-
| 'dtce_two_calls'
|
|
16425
16516
|
| 'dtce_with_deminimis'
|
|
16426
|
-
| '
|
|
16427
|
-
| '
|
|
16517
|
+
| 'dtce_with_inclusive_pricing'
|
|
16518
|
+
| 'dtce_and_us_tax';
|
|
16428
16519
|
type CarrierChargeTransactionType =
|
|
16429
16520
|
| 'adjustment'
|
|
16430
16521
|
| 'reversal'
|
|
@@ -16463,6 +16554,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16463
16554
|
| 'order_contains_gift_card'
|
|
16464
16555
|
| 'order_contains_restricted_goods'
|
|
16465
16556
|
| 'missing_order_information'
|
|
16557
|
+
| 'missing_classification_information'
|
|
16466
16558
|
| 'unsupported_payment_information'
|
|
16467
16559
|
| 'unsupported_shop_currency'
|
|
16468
16560
|
| 'unsupported_free_order'
|
|
@@ -16544,15 +16636,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16544
16636
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
16545
16637
|
type ContentType = 'text' | 'html';
|
|
16546
16638
|
type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
|
|
16547
|
-
type CostType =
|
|
16548
|
-
| 'payment_processing'
|
|
16549
|
-
| 'fx'
|
|
16550
|
-
| 'negative_balance'
|
|
16551
|
-
| 'solution'
|
|
16552
|
-
| 'hosting'
|
|
16553
|
-
| 'duty_guarantee'
|
|
16554
|
-
| 'transfer'
|
|
16555
|
-
| 'fraud';
|
|
16556
16639
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
16557
16640
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
16558
16641
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -16599,7 +16682,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16599
16682
|
| 'preferential_rate';
|
|
16600
16683
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
16601
16684
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
16602
|
-
type EldarItemType = 'digital' | 'physical';
|
|
16603
16685
|
type EmptyAttribute = 'irrelevant';
|
|
16604
16686
|
type ErpFileType = 'vendor';
|
|
16605
16687
|
type EventType =
|
|
@@ -16615,8 +16697,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16615
16697
|
| 'adyen_refund_upserted'
|
|
16616
16698
|
| 'adyen_dispute_upserted'
|
|
16617
16699
|
| 'adyen_dispute_deleted'
|
|
16618
|
-
| 'index_assignment_upserted'
|
|
16619
|
-
| 'index_assignment_deleted'
|
|
16620
16700
|
| 'fulfillment_upserted'
|
|
16621
16701
|
| 'fulfillment_deleted'
|
|
16622
16702
|
| 'merchant_upserted'
|
|
@@ -16717,13 +16797,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16717
16797
|
| 'dispute_upserted'
|
|
16718
16798
|
| 'dispute_deleted'
|
|
16719
16799
|
| 'duty_rates_published_v2'
|
|
16720
|
-
| 'duty_rate_request'
|
|
16721
|
-
| 'duty_rate_bulk_request'
|
|
16722
|
-
| 'duty_raw_upserted'
|
|
16723
|
-
| 'duty_raw_bulk_upserted'
|
|
16724
|
-
| 'duty_rate_upserted'
|
|
16725
|
-
| 'duty_rate_response'
|
|
16726
|
-
| 'duty_rate_bulk_response'
|
|
16727
16800
|
| 'item_sales_margin_deleted'
|
|
16728
16801
|
| 'item_sales_margin_upserted'
|
|
16729
16802
|
| 'order_attribute_deleted'
|
|
@@ -16795,7 +16868,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16795
16868
|
| 'harmonization_codes_import'
|
|
16796
16869
|
| 'item_classification_created'
|
|
16797
16870
|
| 'harmonize_fully_request_v2'
|
|
16798
|
-
| 'hybris_catalog_items_import_request'
|
|
16799
16871
|
| 'import_completed'
|
|
16800
16872
|
| 'import_failed'
|
|
16801
16873
|
| 'time_to_classify_upserted'
|
|
@@ -16889,7 +16961,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16889
16961
|
| 'paypal_refund_upserted'
|
|
16890
16962
|
| 'paypal_dispute_upserted'
|
|
16891
16963
|
| 'paypal_dispute_deleted'
|
|
16892
|
-
| 'pricing_indicator'
|
|
16893
16964
|
| 'product_restriction_rule_decision_upserted'
|
|
16894
16965
|
| 'product_restriction_rule_decision_deleted'
|
|
16895
16966
|
| 'order_rates_published_v3'
|
|
@@ -16914,6 +16985,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16914
16985
|
| 'organization_restriction_status_deleted'
|
|
16915
16986
|
| 'screening_status_change_upserted'
|
|
16916
16987
|
| 'screening_status_change_deleted'
|
|
16988
|
+
| 'restrictions_dailyops_upserted'
|
|
16989
|
+
| 'restrictions_dailyops_deleted'
|
|
16917
16990
|
| 'shopify_shop_upserted'
|
|
16918
16991
|
| 'shopify_shop_deleted'
|
|
16919
16992
|
| 'shopify_experience_short_id_upserted'
|
|
@@ -16936,6 +17009,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16936
17009
|
| 'order_tax_and_duty_inclusivity_setting_deleted'
|
|
16937
17010
|
| 'shopify_product_bundle_upserted'
|
|
16938
17011
|
| 'shopify_product_bundle_deleted'
|
|
17012
|
+
| 'shopify_markets_order_edit_summary_published'
|
|
17013
|
+
| 'shopify_incoterm_summary_error_published'
|
|
17014
|
+
| 'shopify_markets_best_selling_product_upserted'
|
|
17015
|
+
| 'shopify_markets_best_selling_product_deleted'
|
|
16939
17016
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
16940
17017
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
16941
17018
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
@@ -16952,30 +17029,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16952
17029
|
| 'stripe_dispute_deleted'
|
|
16953
17030
|
| 'liability_remittance_plan_upserted'
|
|
16954
17031
|
| 'liability_remittance_plan_deleted'
|
|
16955
|
-
| 'svitlana_item_upserted'
|
|
16956
|
-
| 'svitlana_item_deleted'
|
|
16957
|
-
| 'colm_item_upserted'
|
|
16958
|
-
| 'colm_item_deleted'
|
|
16959
|
-
| 'eldar_item_upserted'
|
|
16960
|
-
| 'eldar_item_deleted'
|
|
16961
|
-
| 'harinath_item_upserted'
|
|
16962
|
-
| 'harinath_item_deleted'
|
|
16963
|
-
| 'konstantin_item_upserted'
|
|
16964
|
-
| 'konstantin_item_deleted'
|
|
16965
|
-
| 'matias_item_upserted'
|
|
16966
|
-
| 'matias_item_deleted'
|
|
16967
|
-
| 'michaelyan_item_upserted'
|
|
16968
|
-
| 'michaelyan_item_deleted'
|
|
16969
|
-
| 'miljenko_item_upserted'
|
|
16970
|
-
| 'miljenko_item_deleted'
|
|
16971
|
-
| 'sanjay_item_upserted'
|
|
16972
|
-
| 'sanjay_item_deleted'
|
|
16973
|
-
| 'shruti_demo_item_upserted'
|
|
16974
|
-
| 'shruti_demo_item_deleted'
|
|
16975
|
-
| 'tam_item_upserted'
|
|
16976
|
-
| 'tam_item_deleted'
|
|
16977
|
-
| 'thiago_item_upserted'
|
|
16978
|
-
| 'thiago_item_deleted'
|
|
16979
17032
|
| 'tracking_processing_error_upserted'
|
|
16980
17033
|
| 'tracking_processing_error_deleted'
|
|
16981
17034
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -16990,10 +17043,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16990
17043
|
| 'tracking_assurance_job_deleted'
|
|
16991
17044
|
| 'tracking_subscription_upserted'
|
|
16992
17045
|
| 'tracking_subscription_deleted'
|
|
17046
|
+
| 'tracking_carrier_return_label_upserted'
|
|
17047
|
+
| 'tracking_carrier_return_label_deleted'
|
|
16993
17048
|
| 'tracking_label_dimensions_upserted'
|
|
16994
17049
|
| 'tracking_label_dimensions_deleted'
|
|
16995
|
-
| 'tracking_request_upserted'
|
|
16996
|
-
| 'tracking_response_upserted'
|
|
16997
17050
|
| 'user_upserted_v2'
|
|
16998
17051
|
| 'user_deleted_v2';
|
|
16999
17052
|
type ExperienceImportType = 'experience_with_settings';
|
|
@@ -17035,7 +17088,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17035
17088
|
| 'shopify_location'
|
|
17036
17089
|
| 'shopify_order'
|
|
17037
17090
|
| 'sync_product_catalog';
|
|
17038
|
-
type HarinathItemType = 'digital' | 'physical';
|
|
17039
17091
|
type HarmonizationDecisionSource =
|
|
17040
17092
|
| 'human'
|
|
17041
17093
|
| 'legacy_model'
|
|
@@ -17060,7 +17112,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17060
17112
|
| 'fulfillment_generate_label';
|
|
17061
17113
|
type ItemType = 'standard' | 'multi_product';
|
|
17062
17114
|
type KeywordType = 'positive' | 'negative';
|
|
17063
|
-
type KonstantinItemType = 'physical' | 'digital';
|
|
17064
17115
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
17065
17116
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
17066
17117
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
@@ -17158,14 +17209,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17158
17209
|
| 'facebook_primary'
|
|
17159
17210
|
| 'facebook_country_override'
|
|
17160
17211
|
| 'supplemental';
|
|
17161
|
-
type MatiasItemType = 'physical' | 'digital';
|
|
17162
|
-
type MerchantCohort =
|
|
17163
|
-
| 'channel_merchant_pre_cutoff'
|
|
17164
|
-
| 'channel_merchant_post_cutoff'
|
|
17165
|
-
| 'global_e_merchant_pre_cutoff'
|
|
17166
|
-
| 'global_e_merchant_post_cutoff';
|
|
17167
|
-
type MichaelyanItemType = 'physical' | 'digital';
|
|
17168
|
-
type MiljenkoItemType = 'physical' | 'digital';
|
|
17169
17212
|
type MixedBagWeight = '0' | '1' | '2';
|
|
17170
17213
|
type NatureOfSale =
|
|
17171
17214
|
| 'consumer'
|
|
@@ -17269,7 +17312,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17269
17312
|
| 'unscreened';
|
|
17270
17313
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
17271
17314
|
type Owner = 'flow' | 'organization';
|
|
17272
|
-
type Party = 'merchant' | 'channel_partner' | 'global_e';
|
|
17273
17315
|
type PaymentSummaryStatus =
|
|
17274
17316
|
| 'authorized'
|
|
17275
17317
|
| 'canceled'
|
|
@@ -17290,11 +17332,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17290
17332
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
17291
17333
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
17292
17334
|
type PriceSelector = 'minimum' | 'maximum';
|
|
17293
|
-
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
17294
|
-
type PrincipalType =
|
|
17295
|
-
| 'total_order_value'
|
|
17296
|
-
| 'product_order_value'
|
|
17297
|
-
| 'label_value';
|
|
17298
17335
|
type ProcessingTransactionType =
|
|
17299
17336
|
| 'adjustment'
|
|
17300
17337
|
| 'reversal'
|
|
@@ -17313,13 +17350,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17313
17350
|
| 'crypto';
|
|
17314
17351
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
17315
17352
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
17316
|
-
type ProfitStreamKey =
|
|
17317
|
-
| 'pre_profit_share'
|
|
17318
|
-
| 'channel_pre_cutoff'
|
|
17319
|
-
| 'channel_post_cutoff'
|
|
17320
|
-
| 'global_e_pre_cutoff'
|
|
17321
|
-
| 'global_e_post_cutoff'
|
|
17322
|
-
| 'duty_assurance';
|
|
17323
17353
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
17324
17354
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
17325
17355
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
@@ -17381,7 +17411,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17381
17411
|
| 'accepted'
|
|
17382
17412
|
| 'restricted';
|
|
17383
17413
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
17384
|
-
type RevenueType = 'mor' | 'fx' | 'duty_assurance';
|
|
17385
17414
|
type RiskCheck = 'three_d_secure';
|
|
17386
17415
|
type RiskEvaluation =
|
|
17387
17416
|
| 'Pending'
|
|
@@ -17389,11 +17418,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17389
17418
|
| 'Low-Risk'
|
|
17390
17419
|
| 'Restricted-Party'
|
|
17391
17420
|
| 'none';
|
|
17392
|
-
type SanjayItemType = 'digital' | 'physical';
|
|
17393
|
-
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
17394
17421
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
17395
17422
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
17396
17423
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
17424
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
17397
17425
|
type ShopifyMarketsDangerousGoods =
|
|
17398
17426
|
| 'aerosols'
|
|
17399
17427
|
| 'air_bag_inflators_or_seat_belt_pretensioners'
|
|
@@ -17456,7 +17484,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17456
17484
|
| 'duty';
|
|
17457
17485
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
17458
17486
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
17459
|
-
type ShrutiDemoType = 'digital' | 'physical';
|
|
17460
17487
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
17461
17488
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
17462
17489
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -17475,8 +17502,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17475
17502
|
| 'rate-freshness';
|
|
17476
17503
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
17477
17504
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
17478
|
-
type SvitlanaType = 'physical' | 'digital';
|
|
17479
|
-
type TamItemType = 'physical' | 'digital';
|
|
17480
17505
|
type TariffEligibilityType = 'rex';
|
|
17481
17506
|
type TaskProcessorKey =
|
|
17482
17507
|
| 'order_messenger'
|
|
@@ -17494,7 +17519,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17494
17519
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
17495
17520
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
17496
17521
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
17497
|
-
type ThiagoItemType = 'digital' | 'physical';
|
|
17498
17522
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
17499
17523
|
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
17500
17524
|
type TrackingProcessingFailureClassification =
|
|
@@ -17677,8 +17701,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17677
17701
|
readonly enable_fee_reversals: boolean;
|
|
17678
17702
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
17679
17703
|
readonly enable_negative_debits: boolean;
|
|
17680
|
-
readonly setup_completed_at?: string;
|
|
17681
|
-
readonly cohort?: io.flow.internal.v0.enums.MerchantCohort;
|
|
17682
17704
|
}
|
|
17683
17705
|
|
|
17684
17706
|
interface AccountSettingsDeleted {
|
|
@@ -18260,12 +18282,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18260
18282
|
readonly count: number;
|
|
18261
18283
|
}
|
|
18262
18284
|
|
|
18263
|
-
interface AlgoliaIndexAssignment {
|
|
18264
|
-
readonly id: string;
|
|
18265
|
-
readonly name: string;
|
|
18266
|
-
readonly application_id: string;
|
|
18267
|
-
}
|
|
18268
|
-
|
|
18269
18285
|
interface AllItemsExport {
|
|
18270
18286
|
readonly discriminator: 'all_items_export';
|
|
18271
18287
|
readonly event_id: string;
|
|
@@ -18389,6 +18405,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18389
18405
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
18390
18406
|
}
|
|
18391
18407
|
|
|
18408
|
+
interface BankAccount {
|
|
18409
|
+
readonly status: io.flow.internal.v0.enums.BankAccountStatus;
|
|
18410
|
+
readonly hold_created_at?: string;
|
|
18411
|
+
readonly updated_at: string;
|
|
18412
|
+
readonly last4: string;
|
|
18413
|
+
}
|
|
18414
|
+
|
|
18392
18415
|
interface BankAccountReference {
|
|
18393
18416
|
readonly id: string;
|
|
18394
18417
|
}
|
|
@@ -19412,6 +19435,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19412
19435
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
19413
19436
|
readonly order_created_at?: string;
|
|
19414
19437
|
readonly order_updated_at?: string;
|
|
19438
|
+
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
19415
19439
|
}
|
|
19416
19440
|
|
|
19417
19441
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -20091,13 +20115,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20091
20115
|
readonly added_on: string;
|
|
20092
20116
|
}
|
|
20093
20117
|
|
|
20094
|
-
interface ColmItemDeleted {
|
|
20095
|
-
readonly discriminator: 'colm_item_deleted';
|
|
20096
|
-
readonly event_id: string;
|
|
20097
|
-
readonly timestamp: string;
|
|
20098
|
-
readonly id: string;
|
|
20099
|
-
}
|
|
20100
|
-
|
|
20101
20118
|
interface ColmItemForm {
|
|
20102
20119
|
readonly number: string;
|
|
20103
20120
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -20106,13 +20123,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20106
20123
|
readonly added_on: string;
|
|
20107
20124
|
}
|
|
20108
20125
|
|
|
20109
|
-
interface ColmItemUpserted {
|
|
20110
|
-
readonly discriminator: 'colm_item_upserted';
|
|
20111
|
-
readonly event_id: string;
|
|
20112
|
-
readonly timestamp: string;
|
|
20113
|
-
readonly item: io.flow.internal.v0.models.ColmItem;
|
|
20114
|
-
}
|
|
20115
|
-
|
|
20116
20126
|
interface CommercialInvoiceComparison {
|
|
20117
20127
|
readonly urls: string[];
|
|
20118
20128
|
}
|
|
@@ -20263,17 +20273,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20263
20273
|
readonly description?: string;
|
|
20264
20274
|
}
|
|
20265
20275
|
|
|
20266
|
-
interface Cost {
|
|
20267
|
-
readonly source: io.flow.internal.v0.models.CostRule;
|
|
20268
|
-
readonly amount: number;
|
|
20269
|
-
}
|
|
20270
|
-
|
|
20271
|
-
interface CostRule {
|
|
20272
|
-
readonly type: io.flow.internal.v0.enums.CostType;
|
|
20273
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
20274
|
-
readonly bearer: io.flow.internal.v0.enums.Party;
|
|
20275
|
-
}
|
|
20276
|
-
|
|
20277
20276
|
interface CountryPickerCountry {
|
|
20278
20277
|
readonly iso_3166_2: string;
|
|
20279
20278
|
readonly iso_3166_3: string;
|
|
@@ -20520,6 +20519,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20520
20519
|
readonly transaction_id: string;
|
|
20521
20520
|
}
|
|
20522
20521
|
|
|
20522
|
+
interface DebugBankingDetails {
|
|
20523
|
+
readonly merchant: io.flow.internal.v0.models.MerchantDetails;
|
|
20524
|
+
readonly account: io.flow.internal.v0.models.BankAccount;
|
|
20525
|
+
}
|
|
20526
|
+
|
|
20523
20527
|
interface DebugDetails {
|
|
20524
20528
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
20525
20529
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
@@ -20561,6 +20565,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20561
20565
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
20562
20566
|
readonly transactions: io.flow.billing.v0.models.Transaction[];
|
|
20563
20567
|
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
20568
|
+
readonly banking: io.flow.internal.v0.models.DebugBankingDetails;
|
|
20564
20569
|
}
|
|
20565
20570
|
|
|
20566
20571
|
interface DebugOrderTransactionForm {
|
|
@@ -20702,13 +20707,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20702
20707
|
readonly destination: io.flow.common.v0.models.Address;
|
|
20703
20708
|
}
|
|
20704
20709
|
|
|
20705
|
-
interface Details {
|
|
20706
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
20707
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
20708
|
-
readonly upserted_at: string;
|
|
20709
|
-
readonly time_elapsed_since_upserted: number;
|
|
20710
|
-
}
|
|
20711
|
-
|
|
20712
20710
|
interface Dhl {
|
|
20713
20711
|
readonly discriminator: 'dhl';
|
|
20714
20712
|
readonly export_account_number: string;
|
|
@@ -20790,8 +20788,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20790
20788
|
readonly billable: io.flow.internal.v0.enums.DisputeBillable;
|
|
20791
20789
|
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
20792
20790
|
readonly details: io.flow.internal.v0.unions.DisputeDetails;
|
|
20791
|
+
readonly payment_method?: io.flow.reference.v0.models.PaymentMethod;
|
|
20793
20792
|
readonly issued_at: string;
|
|
20794
20793
|
readonly expires_at?: string;
|
|
20794
|
+
readonly defended_at?: string;
|
|
20795
20795
|
readonly created_at: string;
|
|
20796
20796
|
readonly updated_at?: string;
|
|
20797
20797
|
}
|
|
@@ -20875,6 +20875,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20875
20875
|
interface DisputeRecord {
|
|
20876
20876
|
readonly id: string;
|
|
20877
20877
|
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
20878
|
+
readonly authorization: io.flow.internal.v0.models.ReportingAuthorizationReference;
|
|
20878
20879
|
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
20879
20880
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20880
20881
|
readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
|
|
@@ -20955,65 +20956,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20955
20956
|
readonly created_at: string;
|
|
20956
20957
|
}
|
|
20957
20958
|
|
|
20958
|
-
interface DutyRateBulkRequest {
|
|
20959
|
-
readonly discriminator: 'duty_rate_bulk_request';
|
|
20960
|
-
readonly event_id: string;
|
|
20961
|
-
readonly timestamp: string;
|
|
20962
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
20963
|
-
readonly origin: string;
|
|
20964
|
-
readonly destination_tariff_code: Record<string, string>;
|
|
20965
|
-
}
|
|
20966
|
-
|
|
20967
|
-
interface DutyRateBulkResponse {
|
|
20968
|
-
readonly discriminator: 'duty_rate_bulk_response';
|
|
20969
|
-
readonly event_id: string;
|
|
20970
|
-
readonly timestamp: string;
|
|
20971
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
20972
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate[];
|
|
20973
|
-
}
|
|
20974
|
-
|
|
20975
|
-
interface DutyRateContext {
|
|
20976
|
-
readonly phrase_id?: string;
|
|
20977
|
-
readonly item_number?: string;
|
|
20978
|
-
readonly product_id?: string;
|
|
20979
|
-
}
|
|
20980
|
-
|
|
20981
20959
|
interface DutyRateItemSummary {
|
|
20982
20960
|
readonly number: string;
|
|
20983
20961
|
readonly product_id?: string;
|
|
20984
20962
|
}
|
|
20985
20963
|
|
|
20986
|
-
interface DutyRateRequest {
|
|
20987
|
-
readonly discriminator: 'duty_rate_request';
|
|
20988
|
-
readonly event_id: string;
|
|
20989
|
-
readonly timestamp: string;
|
|
20990
|
-
readonly destination: string;
|
|
20991
|
-
readonly origin: string;
|
|
20992
|
-
readonly tariff_code: string;
|
|
20993
|
-
}
|
|
20994
|
-
|
|
20995
|
-
interface DutyRateResponse {
|
|
20996
|
-
readonly discriminator: 'duty_rate_response';
|
|
20997
|
-
readonly event_id: string;
|
|
20998
|
-
readonly timestamp: string;
|
|
20999
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate;
|
|
21000
|
-
}
|
|
21001
|
-
|
|
21002
20964
|
interface DutyRateSummary {
|
|
21003
20965
|
readonly tariff_code: string;
|
|
21004
20966
|
readonly origin: string;
|
|
21005
20967
|
readonly destination: string;
|
|
21006
20968
|
}
|
|
21007
20969
|
|
|
21008
|
-
interface DutyRateUpserted {
|
|
21009
|
-
readonly discriminator: 'duty_rate_upserted';
|
|
21010
|
-
readonly event_id: string;
|
|
21011
|
-
readonly timestamp: string;
|
|
21012
|
-
readonly source_event: io.flow.internal.v0.models.DutyRawUpserted;
|
|
21013
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate;
|
|
21014
|
-
readonly unparsable_rates: string[];
|
|
21015
|
-
}
|
|
21016
|
-
|
|
21017
20970
|
interface DutyRatesDataSummary {
|
|
21018
20971
|
readonly id: string;
|
|
21019
20972
|
readonly item_summary: io.flow.internal.v0.models.DutyRateItemSummary;
|
|
@@ -21042,21 +20995,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21042
20995
|
readonly created_at: string;
|
|
21043
20996
|
}
|
|
21044
20997
|
|
|
21045
|
-
interface DutyRawBulkUpserted {
|
|
21046
|
-
readonly discriminator: 'duty_raw_bulk_upserted';
|
|
21047
|
-
readonly event_id: string;
|
|
21048
|
-
readonly timestamp: string;
|
|
21049
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
21050
|
-
readonly duty_raw: io.flow.internal.v0.models.DutyRaw[];
|
|
21051
|
-
}
|
|
21052
|
-
|
|
21053
|
-
interface DutyRawUpserted {
|
|
21054
|
-
readonly discriminator: 'duty_raw_upserted';
|
|
21055
|
-
readonly event_id: string;
|
|
21056
|
-
readonly timestamp: string;
|
|
21057
|
-
readonly duty_raw: io.flow.internal.v0.models.DutyRaw;
|
|
21058
|
-
}
|
|
21059
|
-
|
|
21060
20998
|
interface DutySimpleExpression {
|
|
21061
20999
|
readonly discriminator: 'duty_simple_expression';
|
|
21062
21000
|
readonly type: io.flow.internal.v0.enums.DutySimpleExpressionType;
|
|
@@ -21091,37 +21029,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21091
21029
|
readonly duty_transaction: io.flow.internal.v0.models.DutyTransaction;
|
|
21092
21030
|
}
|
|
21093
21031
|
|
|
21094
|
-
interface EldarItem {
|
|
21095
|
-
readonly id: string;
|
|
21096
|
-
readonly number: string;
|
|
21097
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21098
|
-
readonly description?: string;
|
|
21099
|
-
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
21100
|
-
readonly added_on: string;
|
|
21101
|
-
}
|
|
21102
|
-
|
|
21103
|
-
interface EldarItemDeleted {
|
|
21104
|
-
readonly discriminator: 'eldar_item_deleted';
|
|
21105
|
-
readonly event_id: string;
|
|
21106
|
-
readonly timestamp: string;
|
|
21107
|
-
readonly id: string;
|
|
21108
|
-
}
|
|
21109
|
-
|
|
21110
|
-
interface EldarItemForm {
|
|
21111
|
-
readonly number: string;
|
|
21112
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21113
|
-
readonly description?: string;
|
|
21114
|
-
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
21115
|
-
readonly added_on: string;
|
|
21116
|
-
}
|
|
21117
|
-
|
|
21118
|
-
interface EldarItemUpserted {
|
|
21119
|
-
readonly discriminator: 'eldar_item_upserted';
|
|
21120
|
-
readonly event_id: string;
|
|
21121
|
-
readonly timestamp: string;
|
|
21122
|
-
readonly item: io.flow.internal.v0.models.EldarItem;
|
|
21123
|
-
}
|
|
21124
|
-
|
|
21125
21032
|
interface EmailForm {
|
|
21126
21033
|
readonly to: string[];
|
|
21127
21034
|
readonly cc?: string[];
|
|
@@ -21976,7 +21883,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21976
21883
|
readonly payment_authorization_id?: string;
|
|
21977
21884
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
21978
21885
|
readonly created_at?: string;
|
|
21979
|
-
readonly has_provider_link?: boolean;
|
|
21980
21886
|
}
|
|
21981
21887
|
|
|
21982
21888
|
interface FraudReviewAuthorization {
|
|
@@ -21995,7 +21901,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21995
21901
|
readonly payment_authorization_id?: string;
|
|
21996
21902
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
21997
21903
|
readonly created_at?: string;
|
|
21998
|
-
readonly has_provider_link?: boolean;
|
|
21999
21904
|
}
|
|
22000
21905
|
|
|
22001
21906
|
interface FraudReviewAuthorizationDecision {
|
|
@@ -22481,37 +22386,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22481
22386
|
readonly tracker_id: string;
|
|
22482
22387
|
}
|
|
22483
22388
|
|
|
22484
|
-
interface HarinathItem {
|
|
22485
|
-
readonly id: string;
|
|
22486
|
-
readonly number: string;
|
|
22487
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22488
|
-
readonly description?: string;
|
|
22489
|
-
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
22490
|
-
readonly added_on: string;
|
|
22491
|
-
}
|
|
22492
|
-
|
|
22493
|
-
interface HarinathItemDeleted {
|
|
22494
|
-
readonly discriminator: 'harinath_item_deleted';
|
|
22495
|
-
readonly event_id: string;
|
|
22496
|
-
readonly timestamp: string;
|
|
22497
|
-
readonly id: string;
|
|
22498
|
-
}
|
|
22499
|
-
|
|
22500
|
-
interface HarinathItemForm {
|
|
22501
|
-
readonly number: string;
|
|
22502
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22503
|
-
readonly description?: string;
|
|
22504
|
-
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
22505
|
-
readonly added_on: string;
|
|
22506
|
-
}
|
|
22507
|
-
|
|
22508
|
-
interface HarinathItemUpserted {
|
|
22509
|
-
readonly discriminator: 'harinath_item_upserted';
|
|
22510
|
-
readonly event_id: string;
|
|
22511
|
-
readonly timestamp: string;
|
|
22512
|
-
readonly item: io.flow.internal.v0.models.HarinathItem;
|
|
22513
|
-
}
|
|
22514
|
-
|
|
22515
22389
|
interface HarmonizationClassificationStatisticsData {
|
|
22516
22390
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
22517
22391
|
}
|
|
@@ -22639,21 +22513,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22639
22513
|
readonly description: string;
|
|
22640
22514
|
}
|
|
22641
22515
|
|
|
22642
|
-
interface HybrisCatalogItemsImportRequest {
|
|
22643
|
-
readonly discriminator: 'hybris_catalog_items_import_request';
|
|
22644
|
-
readonly event_id: string;
|
|
22645
|
-
readonly timestamp: string;
|
|
22646
|
-
readonly organization: string;
|
|
22647
|
-
readonly request: io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
22648
|
-
}
|
|
22649
|
-
|
|
22650
|
-
interface HybrisCatalogItemsImportRequestData {
|
|
22651
|
-
readonly id: string;
|
|
22652
|
-
readonly import_id: string;
|
|
22653
|
-
readonly source_url: string;
|
|
22654
|
-
readonly filename?: string;
|
|
22655
|
-
}
|
|
22656
|
-
|
|
22657
22516
|
interface ImportCompleted {
|
|
22658
22517
|
readonly discriminator: 'import_completed';
|
|
22659
22518
|
readonly event_id: string;
|
|
@@ -22672,22 +22531,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22672
22531
|
readonly error: string;
|
|
22673
22532
|
}
|
|
22674
22533
|
|
|
22675
|
-
interface IndexAssignmentDeleted {
|
|
22676
|
-
readonly discriminator: 'index_assignment_deleted';
|
|
22677
|
-
readonly event_id: string;
|
|
22678
|
-
readonly timestamp: string;
|
|
22679
|
-
readonly organization: string;
|
|
22680
|
-
readonly id: string;
|
|
22681
|
-
}
|
|
22682
|
-
|
|
22683
|
-
interface IndexAssignmentUpserted {
|
|
22684
|
-
readonly discriminator: 'index_assignment_upserted';
|
|
22685
|
-
readonly event_id: string;
|
|
22686
|
-
readonly timestamp: string;
|
|
22687
|
-
readonly organization: string;
|
|
22688
|
-
readonly assignment: io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
22689
|
-
}
|
|
22690
|
-
|
|
22691
22534
|
interface InstallForm {
|
|
22692
22535
|
readonly token: string;
|
|
22693
22536
|
}
|
|
@@ -23007,10 +22850,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23007
22850
|
readonly values: string[];
|
|
23008
22851
|
}
|
|
23009
22852
|
|
|
23010
|
-
interface ItemForm {
|
|
23011
|
-
readonly amount?: number;
|
|
23012
|
-
}
|
|
23013
|
-
|
|
23014
22853
|
interface ItemFormImportRequest {
|
|
23015
22854
|
readonly discriminator: 'item_form_import_request';
|
|
23016
22855
|
readonly event_id: string;
|
|
@@ -23195,37 +23034,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23195
23034
|
readonly descriptive_asset_urls?: string;
|
|
23196
23035
|
}
|
|
23197
23036
|
|
|
23198
|
-
interface KonstantinItem {
|
|
23199
|
-
readonly id: string;
|
|
23200
|
-
readonly number: string;
|
|
23201
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
23202
|
-
readonly description?: string;
|
|
23203
|
-
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
23204
|
-
readonly added_on: string;
|
|
23205
|
-
}
|
|
23206
|
-
|
|
23207
|
-
interface KonstantinItemDeleted {
|
|
23208
|
-
readonly discriminator: 'konstantin_item_deleted';
|
|
23209
|
-
readonly event_id: string;
|
|
23210
|
-
readonly timestamp: string;
|
|
23211
|
-
readonly id: string;
|
|
23212
|
-
}
|
|
23213
|
-
|
|
23214
|
-
interface KonstantinItemForm {
|
|
23215
|
-
readonly number: string;
|
|
23216
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
23217
|
-
readonly description?: string;
|
|
23218
|
-
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
23219
|
-
readonly added_on: string;
|
|
23220
|
-
}
|
|
23221
|
-
|
|
23222
|
-
interface KonstantinItemUpserted {
|
|
23223
|
-
readonly discriminator: 'konstantin_item_upserted';
|
|
23224
|
-
readonly event_id: string;
|
|
23225
|
-
readonly timestamp: string;
|
|
23226
|
-
readonly item: io.flow.internal.v0.models.KonstantinItem;
|
|
23227
|
-
}
|
|
23228
|
-
|
|
23229
23037
|
interface LabProjectSettings {
|
|
23230
23038
|
readonly id: string;
|
|
23231
23039
|
readonly flow_lab_project_key: string;
|
|
@@ -24249,37 +24057,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24249
24057
|
readonly id: string;
|
|
24250
24058
|
}
|
|
24251
24059
|
|
|
24252
|
-
interface MatiasItem {
|
|
24253
|
-
readonly id: string;
|
|
24254
|
-
readonly number: string;
|
|
24255
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24256
|
-
readonly description?: string;
|
|
24257
|
-
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
24258
|
-
readonly added_on: string;
|
|
24259
|
-
}
|
|
24260
|
-
|
|
24261
|
-
interface MatiasItemDeleted {
|
|
24262
|
-
readonly discriminator: 'matias_item_deleted';
|
|
24263
|
-
readonly event_id: string;
|
|
24264
|
-
readonly timestamp: string;
|
|
24265
|
-
readonly id: string;
|
|
24266
|
-
}
|
|
24267
|
-
|
|
24268
|
-
interface MatiasItemForm {
|
|
24269
|
-
readonly number: string;
|
|
24270
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24271
|
-
readonly description?: string;
|
|
24272
|
-
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
24273
|
-
readonly added_on: string;
|
|
24274
|
-
}
|
|
24275
|
-
|
|
24276
|
-
interface MatiasItemUpserted {
|
|
24277
|
-
readonly discriminator: 'matias_item_upserted';
|
|
24278
|
-
readonly event_id: string;
|
|
24279
|
-
readonly timestamp: string;
|
|
24280
|
-
readonly item: io.flow.internal.v0.models.MatiasItem;
|
|
24281
|
-
}
|
|
24282
|
-
|
|
24283
24060
|
interface Merchant {
|
|
24284
24061
|
readonly id: string;
|
|
24285
24062
|
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
@@ -24302,6 +24079,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24302
24079
|
readonly id: string;
|
|
24303
24080
|
}
|
|
24304
24081
|
|
|
24082
|
+
interface MerchantDetails {
|
|
24083
|
+
readonly name: string;
|
|
24084
|
+
}
|
|
24085
|
+
|
|
24305
24086
|
interface MerchantFees {
|
|
24306
24087
|
readonly duty_guarantee: number;
|
|
24307
24088
|
readonly mor: number;
|
|
@@ -24429,73 +24210,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24429
24210
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
24430
24211
|
}
|
|
24431
24212
|
|
|
24432
|
-
interface MichaelyanItem {
|
|
24433
|
-
readonly id: string;
|
|
24434
|
-
readonly number: string;
|
|
24435
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24436
|
-
readonly description?: string;
|
|
24437
|
-
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
24438
|
-
readonly added_on: string;
|
|
24439
|
-
}
|
|
24440
|
-
|
|
24441
|
-
interface MichaelyanItemDeleted {
|
|
24442
|
-
readonly discriminator: 'michaelyan_item_deleted';
|
|
24443
|
-
readonly event_id: string;
|
|
24444
|
-
readonly timestamp: string;
|
|
24445
|
-
readonly id: string;
|
|
24446
|
-
}
|
|
24447
|
-
|
|
24448
|
-
interface MichaelyanItemForm {
|
|
24449
|
-
readonly number: string;
|
|
24450
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24451
|
-
readonly description?: string;
|
|
24452
|
-
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
24453
|
-
readonly added_on: string;
|
|
24454
|
-
}
|
|
24455
|
-
|
|
24456
|
-
interface MichaelyanItemUpserted {
|
|
24457
|
-
readonly discriminator: 'michaelyan_item_upserted';
|
|
24458
|
-
readonly event_id: string;
|
|
24459
|
-
readonly timestamp: string;
|
|
24460
|
-
readonly item: io.flow.internal.v0.models.MichaelyanItem;
|
|
24461
|
-
}
|
|
24462
|
-
|
|
24463
|
-
interface MiljenkoItem {
|
|
24464
|
-
readonly id: string;
|
|
24465
|
-
readonly number: string;
|
|
24466
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24467
|
-
readonly description?: string;
|
|
24468
|
-
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
24469
|
-
readonly added_on: string;
|
|
24470
|
-
}
|
|
24471
|
-
|
|
24472
|
-
interface MiljenkoItemDeleted {
|
|
24473
|
-
readonly discriminator: 'miljenko_item_deleted';
|
|
24474
|
-
readonly event_id: string;
|
|
24475
|
-
readonly timestamp: string;
|
|
24476
|
-
readonly id: string;
|
|
24477
|
-
}
|
|
24478
|
-
|
|
24479
|
-
interface MiljenkoItemForm {
|
|
24480
|
-
readonly number: string;
|
|
24481
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24482
|
-
readonly description?: string;
|
|
24483
|
-
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
24484
|
-
readonly added_on: string;
|
|
24485
|
-
}
|
|
24486
|
-
|
|
24487
|
-
interface MiljenkoItemUpserted {
|
|
24488
|
-
readonly discriminator: 'miljenko_item_upserted';
|
|
24489
|
-
readonly event_id: string;
|
|
24490
|
-
readonly timestamp: string;
|
|
24491
|
-
readonly item: io.flow.internal.v0.models.MiljenkoItem;
|
|
24492
|
-
}
|
|
24493
|
-
|
|
24494
|
-
interface MoneyPercentage {
|
|
24495
|
-
readonly discriminator: 'percentage';
|
|
24496
|
-
readonly percent: number;
|
|
24497
|
-
}
|
|
24498
|
-
|
|
24499
24213
|
interface NegativeDebitMetrics {
|
|
24500
24214
|
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24501
24215
|
readonly first_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
@@ -24783,6 +24497,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24783
24497
|
readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
|
|
24784
24498
|
}
|
|
24785
24499
|
|
|
24500
|
+
interface OrderEditSummary {
|
|
24501
|
+
readonly external_order_edit_reference: string;
|
|
24502
|
+
readonly edited_at: string;
|
|
24503
|
+
}
|
|
24504
|
+
|
|
24786
24505
|
interface OrderFulfillmentDeleted {
|
|
24787
24506
|
readonly discriminator: 'order_fulfillment_deleted';
|
|
24788
24507
|
readonly event_id: string;
|
|
@@ -26124,52 +25843,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26124
25843
|
readonly quote_request: io.flow.internal.v0.models.QuoteRequest;
|
|
26125
25844
|
}
|
|
26126
25845
|
|
|
26127
|
-
interface PricingIndicator {
|
|
26128
|
-
readonly discriminator: 'pricing_indicator';
|
|
26129
|
-
readonly event_id: string;
|
|
26130
|
-
readonly timestamp: string;
|
|
26131
|
-
readonly organization: string;
|
|
26132
|
-
readonly published_from: io.flow.internal.v0.enums.ServiceName;
|
|
26133
|
-
readonly status: io.flow.internal.v0.enums.PricingIndicatorStatus;
|
|
26134
|
-
readonly event_identifier: string;
|
|
26135
|
-
readonly details: io.flow.internal.v0.models.Details;
|
|
26136
|
-
}
|
|
26137
|
-
|
|
26138
|
-
interface PricingIndicatorDynamo {
|
|
26139
|
-
readonly organization_id: string;
|
|
26140
|
-
readonly item_number: string;
|
|
26141
|
-
readonly experience_key: string;
|
|
26142
|
-
readonly upserted_at: string;
|
|
26143
|
-
readonly time_elapsed_since_upserted: number;
|
|
26144
|
-
readonly event_identifier: string;
|
|
26145
|
-
readonly status: io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
|
|
26146
|
-
readonly published_at: string;
|
|
26147
|
-
readonly published_from: io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
|
|
26148
|
-
readonly expiration_time_in_epoch: number;
|
|
26149
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
26150
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
26151
|
-
}
|
|
26152
|
-
|
|
26153
|
-
interface Principal {
|
|
26154
|
-
readonly type: io.flow.internal.v0.enums.PrincipalType;
|
|
26155
|
-
readonly amount: number;
|
|
26156
|
-
}
|
|
26157
|
-
|
|
26158
25846
|
interface PrioritizedCenterReference {
|
|
26159
25847
|
readonly center_key: string;
|
|
26160
25848
|
readonly position: number;
|
|
26161
25849
|
}
|
|
26162
25850
|
|
|
26163
|
-
interface ProcessedPaymentSummary {
|
|
26164
|
-
readonly type: io.flow.reference.v0.enums.PaymentMethodCapability;
|
|
26165
|
-
readonly amount: number;
|
|
26166
|
-
readonly currency: io.flow.reference.v0.models.Currency;
|
|
26167
|
-
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
26168
|
-
readonly card_issuer_country?: io.flow.reference.v0.models.Country;
|
|
26169
|
-
readonly shipping_address_country?: io.flow.reference.v0.models.Country;
|
|
26170
|
-
readonly billing_address_country?: io.flow.reference.v0.models.Country;
|
|
26171
|
-
}
|
|
26172
|
-
|
|
26173
25851
|
interface ProcessingTransaction {
|
|
26174
25852
|
readonly discriminator: 'processing_transaction';
|
|
26175
25853
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -26375,49 +26053,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26375
26053
|
readonly quantity: number;
|
|
26376
26054
|
}
|
|
26377
26055
|
|
|
26378
|
-
interface Profit {
|
|
26379
|
-
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
26380
|
-
readonly principal: io.flow.internal.v0.models.Principal;
|
|
26381
|
-
readonly revenue: io.flow.internal.v0.models.Revenue[];
|
|
26382
|
-
readonly costs: io.flow.internal.v0.models.Cost[];
|
|
26383
|
-
readonly amount: number;
|
|
26384
|
-
readonly splits: io.flow.internal.v0.models.ProfitSplit[];
|
|
26385
|
-
}
|
|
26386
|
-
|
|
26387
|
-
interface ProfitShare {
|
|
26388
|
-
readonly order: io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
26389
|
-
readonly profits: io.flow.internal.v0.models.Profit[];
|
|
26390
|
-
}
|
|
26391
|
-
|
|
26392
|
-
interface ProfitShareOrderReference {
|
|
26393
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
26394
|
-
readonly number: string;
|
|
26395
|
-
}
|
|
26396
|
-
|
|
26397
|
-
interface ProfitSharePlan {
|
|
26398
|
-
readonly order: io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
26399
|
-
readonly streams: io.flow.internal.v0.models.ProfitStream[];
|
|
26400
|
-
}
|
|
26401
|
-
|
|
26402
|
-
interface ProfitSplit {
|
|
26403
|
-
readonly rule: io.flow.internal.v0.models.ProfitSplitRule;
|
|
26404
|
-
readonly amount: number;
|
|
26405
|
-
}
|
|
26406
|
-
|
|
26407
|
-
interface ProfitSplitRule {
|
|
26408
|
-
readonly payee: io.flow.internal.v0.enums.Party;
|
|
26409
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
26410
|
-
}
|
|
26411
|
-
|
|
26412
|
-
interface ProfitStream {
|
|
26413
|
-
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
26414
|
-
readonly description: string;
|
|
26415
|
-
readonly principal: io.flow.internal.v0.enums.PrincipalType;
|
|
26416
|
-
readonly revenue: io.flow.internal.v0.models.RevenueRule[];
|
|
26417
|
-
readonly costs: io.flow.internal.v0.models.CostRule[];
|
|
26418
|
-
readonly splits: io.flow.internal.v0.models.ProfitSplitRule[];
|
|
26419
|
-
}
|
|
26420
|
-
|
|
26421
26056
|
interface ProofOfPostingExternallyFulfilled {
|
|
26422
26057
|
readonly discriminator: 'external';
|
|
26423
26058
|
readonly external_fulfillment_proof_id: string;
|
|
@@ -27510,6 +27145,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27510
27145
|
readonly num_pending_decisions_transacting: number;
|
|
27511
27146
|
}
|
|
27512
27147
|
|
|
27148
|
+
interface RestrictionsDailyopsDeleted {
|
|
27149
|
+
readonly discriminator: 'restrictions_dailyops_deleted';
|
|
27150
|
+
readonly event_id: string;
|
|
27151
|
+
readonly timestamp: string;
|
|
27152
|
+
readonly organization: string;
|
|
27153
|
+
readonly id: string;
|
|
27154
|
+
}
|
|
27155
|
+
|
|
27156
|
+
interface RestrictionsDailyopsUpserted {
|
|
27157
|
+
readonly discriminator: 'restrictions_dailyops_upserted';
|
|
27158
|
+
readonly event_id: string;
|
|
27159
|
+
readonly timestamp: string;
|
|
27160
|
+
readonly restrictions_dailyops: io.flow.internal.v0.models.RestrictionsDailyops;
|
|
27161
|
+
}
|
|
27162
|
+
|
|
27513
27163
|
interface ResyncByDestinations {
|
|
27514
27164
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
27515
27165
|
}
|
|
@@ -27596,11 +27246,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27596
27246
|
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
27597
27247
|
}
|
|
27598
27248
|
|
|
27599
|
-
interface Revenue {
|
|
27600
|
-
readonly source: io.flow.internal.v0.models.RevenueRule;
|
|
27601
|
-
readonly amount: number;
|
|
27602
|
-
}
|
|
27603
|
-
|
|
27604
27249
|
interface RevenueRecord {
|
|
27605
27250
|
readonly id: string;
|
|
27606
27251
|
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
@@ -27634,11 +27279,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27634
27279
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
27635
27280
|
}
|
|
27636
27281
|
|
|
27637
|
-
interface RevenueRule {
|
|
27638
|
-
readonly type: io.flow.internal.v0.enums.RevenueType;
|
|
27639
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
27640
|
-
}
|
|
27641
|
-
|
|
27642
27282
|
interface RoutingAccount {
|
|
27643
27283
|
readonly discriminator: 'routing_account';
|
|
27644
27284
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -27665,37 +27305,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27665
27305
|
readonly requested_by: string;
|
|
27666
27306
|
}
|
|
27667
27307
|
|
|
27668
|
-
interface SanjayItem {
|
|
27669
|
-
readonly id: string;
|
|
27670
|
-
readonly number: string;
|
|
27671
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
27672
|
-
readonly description?: string;
|
|
27673
|
-
readonly type: io.flow.internal.v0.enums.SanjayItemType;
|
|
27674
|
-
readonly added_on: string;
|
|
27675
|
-
}
|
|
27676
|
-
|
|
27677
|
-
interface SanjayItemDeleted {
|
|
27678
|
-
readonly discriminator: 'sanjay_item_deleted';
|
|
27679
|
-
readonly event_id: string;
|
|
27680
|
-
readonly timestamp: string;
|
|
27681
|
-
readonly id: string;
|
|
27682
|
-
}
|
|
27683
|
-
|
|
27684
|
-
interface SanjayItemForm {
|
|
27685
|
-
readonly number: string;
|
|
27686
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
27687
|
-
readonly description?: string;
|
|
27688
|
-
readonly type: io.flow.internal.v0.enums.SanjayItemType;
|
|
27689
|
-
readonly added_on: string;
|
|
27690
|
-
}
|
|
27691
|
-
|
|
27692
|
-
interface SanjayItemUpserted {
|
|
27693
|
-
readonly discriminator: 'sanjay_item_upserted';
|
|
27694
|
-
readonly event_id: string;
|
|
27695
|
-
readonly timestamp: string;
|
|
27696
|
-
readonly item: io.flow.internal.v0.models.SanjayItem;
|
|
27697
|
-
}
|
|
27698
|
-
|
|
27699
27308
|
interface ScheduledPayment {
|
|
27700
27309
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
27701
27310
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -27964,6 +27573,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27964
27573
|
readonly placeholder: string;
|
|
27965
27574
|
}
|
|
27966
27575
|
|
|
27576
|
+
interface ShopifyIncotermIncludes {
|
|
27577
|
+
readonly duties: boolean;
|
|
27578
|
+
readonly taxes: boolean;
|
|
27579
|
+
}
|
|
27580
|
+
|
|
27581
|
+
interface ShopifyIncotermSummaryErrorData {
|
|
27582
|
+
readonly id: string;
|
|
27583
|
+
readonly shopify_order_id: string;
|
|
27584
|
+
readonly order_number: string;
|
|
27585
|
+
readonly configuration: io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
|
|
27586
|
+
readonly includes: io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
27587
|
+
readonly reason: string;
|
|
27588
|
+
readonly order_submitted_at: string;
|
|
27589
|
+
}
|
|
27590
|
+
|
|
27591
|
+
interface ShopifyIncotermSummaryErrorPublished {
|
|
27592
|
+
readonly discriminator: 'shopify_incoterm_summary_error_published';
|
|
27593
|
+
readonly event_id: string;
|
|
27594
|
+
readonly timestamp: string;
|
|
27595
|
+
readonly organization: string;
|
|
27596
|
+
readonly data: io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
27597
|
+
}
|
|
27598
|
+
|
|
27599
|
+
interface ShopifyMarketsBestSellingProduct {
|
|
27600
|
+
readonly id: string;
|
|
27601
|
+
}
|
|
27602
|
+
|
|
27603
|
+
interface ShopifyMarketsBestSellingProductDeleted {
|
|
27604
|
+
readonly discriminator: 'shopify_markets_best_selling_product_deleted';
|
|
27605
|
+
readonly event_id: string;
|
|
27606
|
+
readonly timestamp: string;
|
|
27607
|
+
readonly organization: string;
|
|
27608
|
+
readonly id: string;
|
|
27609
|
+
}
|
|
27610
|
+
|
|
27611
|
+
interface ShopifyMarketsBestSellingProductUpserted {
|
|
27612
|
+
readonly discriminator: 'shopify_markets_best_selling_product_upserted';
|
|
27613
|
+
readonly event_id: string;
|
|
27614
|
+
readonly timestamp: string;
|
|
27615
|
+
readonly organization: string;
|
|
27616
|
+
readonly shopify_markets_best_selling_product: io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
27617
|
+
}
|
|
27618
|
+
|
|
27967
27619
|
interface ShopifyMarketsDiscrepancy {
|
|
27968
27620
|
readonly organization_id: string;
|
|
27969
27621
|
readonly count: number;
|
|
@@ -28012,6 +27664,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28012
27664
|
readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
28013
27665
|
}
|
|
28014
27666
|
|
|
27667
|
+
interface ShopifyMarketsOrderEditSummaryData {
|
|
27668
|
+
readonly channel_order_acceptance: io.flow.internal.v0.models.ChannelOrderAcceptance;
|
|
27669
|
+
readonly edited_at: string;
|
|
27670
|
+
}
|
|
27671
|
+
|
|
27672
|
+
interface ShopifyMarketsOrderEditSummaryPublished {
|
|
27673
|
+
readonly discriminator: 'shopify_markets_order_edit_summary_published';
|
|
27674
|
+
readonly event_id: string;
|
|
27675
|
+
readonly timestamp: string;
|
|
27676
|
+
readonly organization: string;
|
|
27677
|
+
readonly data: io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
27678
|
+
}
|
|
27679
|
+
|
|
28015
27680
|
interface ShopifyMarketsOrderUpserted {
|
|
28016
27681
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
28017
27682
|
readonly event_id: string;
|
|
@@ -28532,37 +28197,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28532
28197
|
readonly total: number;
|
|
28533
28198
|
}
|
|
28534
28199
|
|
|
28535
|
-
interface ShrutiDemoItem {
|
|
28536
|
-
readonly id: string;
|
|
28537
|
-
readonly number: string;
|
|
28538
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
28539
|
-
readonly description?: string;
|
|
28540
|
-
readonly type: io.flow.internal.v0.enums.ShrutiDemoType;
|
|
28541
|
-
readonly added_on: string;
|
|
28542
|
-
}
|
|
28543
|
-
|
|
28544
|
-
interface ShrutiDemoItemDeleted {
|
|
28545
|
-
readonly discriminator: 'shruti_demo_item_deleted';
|
|
28546
|
-
readonly event_id: string;
|
|
28547
|
-
readonly timestamp: string;
|
|
28548
|
-
readonly id: string;
|
|
28549
|
-
}
|
|
28550
|
-
|
|
28551
|
-
interface ShrutiDemoItemForm {
|
|
28552
|
-
readonly number: string;
|
|
28553
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
28554
|
-
readonly description?: string;
|
|
28555
|
-
readonly type: io.flow.internal.v0.enums.ShrutiDemoType;
|
|
28556
|
-
readonly added_on: string;
|
|
28557
|
-
}
|
|
28558
|
-
|
|
28559
|
-
interface ShrutiDemoItemUpserted {
|
|
28560
|
-
readonly discriminator: 'shruti_demo_item_upserted';
|
|
28561
|
-
readonly event_id: string;
|
|
28562
|
-
readonly timestamp: string;
|
|
28563
|
-
readonly item: io.flow.internal.v0.models.ShrutiDemoItem;
|
|
28564
|
-
}
|
|
28565
|
-
|
|
28566
28200
|
interface SimpleAccountReference {
|
|
28567
28201
|
readonly id: string;
|
|
28568
28202
|
}
|
|
@@ -29026,70 +28660,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29026
28660
|
readonly values: io.flow.internal.v0.models.LabelAliases[];
|
|
29027
28661
|
}
|
|
29028
28662
|
|
|
29029
|
-
interface SvitlanaItem {
|
|
29030
|
-
readonly id: string;
|
|
29031
|
-
readonly number: string;
|
|
29032
|
-
readonly amount: number;
|
|
29033
|
-
readonly description?: string;
|
|
29034
|
-
readonly type: io.flow.internal.v0.enums.SvitlanaType;
|
|
29035
|
-
readonly added_on: string;
|
|
29036
|
-
}
|
|
29037
|
-
|
|
29038
|
-
interface SvitlanaItemDeleted {
|
|
29039
|
-
readonly discriminator: 'svitlana_item_deleted';
|
|
29040
|
-
readonly event_id: string;
|
|
29041
|
-
readonly timestamp: string;
|
|
29042
|
-
readonly id: string;
|
|
29043
|
-
}
|
|
29044
|
-
|
|
29045
|
-
interface SvitlanaItemForm {
|
|
29046
|
-
readonly number: string;
|
|
29047
|
-
readonly amount: number;
|
|
29048
|
-
readonly description?: string;
|
|
29049
|
-
readonly type: io.flow.internal.v0.enums.SvitlanaType;
|
|
29050
|
-
}
|
|
29051
|
-
|
|
29052
|
-
interface SvitlanaItemUpserted {
|
|
29053
|
-
readonly discriminator: 'svitlana_item_upserted';
|
|
29054
|
-
readonly event_id: string;
|
|
29055
|
-
readonly timestamp: string;
|
|
29056
|
-
readonly item: io.flow.internal.v0.models.SvitlanaItem;
|
|
29057
|
-
}
|
|
29058
|
-
|
|
29059
|
-
interface SvitlanaTest {
|
|
29060
|
-
readonly name: string;
|
|
29061
|
-
}
|
|
29062
|
-
|
|
29063
|
-
interface TamItem {
|
|
29064
|
-
readonly id: string;
|
|
29065
|
-
readonly number: string;
|
|
29066
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
29067
|
-
readonly description?: string;
|
|
29068
|
-
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
29069
|
-
readonly added_on: string;
|
|
29070
|
-
}
|
|
29071
|
-
|
|
29072
|
-
interface TamItemDeleted {
|
|
29073
|
-
readonly discriminator: 'tam_item_deleted';
|
|
29074
|
-
readonly event_id: string;
|
|
29075
|
-
readonly timestamp: string;
|
|
29076
|
-
readonly id: string;
|
|
29077
|
-
}
|
|
29078
|
-
|
|
29079
|
-
interface TamItemForm {
|
|
29080
|
-
readonly number: string;
|
|
29081
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
29082
|
-
readonly description?: string;
|
|
29083
|
-
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
29084
|
-
}
|
|
29085
|
-
|
|
29086
|
-
interface TamItemUpserted {
|
|
29087
|
-
readonly discriminator: 'tam_item_upserted';
|
|
29088
|
-
readonly event_id: string;
|
|
29089
|
-
readonly timestamp: string;
|
|
29090
|
-
readonly item: io.flow.internal.v0.models.TamItem;
|
|
29091
|
-
}
|
|
29092
|
-
|
|
29093
28663
|
interface TariffCodeDuty {
|
|
29094
28664
|
readonly tariff_code: string;
|
|
29095
28665
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
@@ -29282,37 +28852,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29282
28852
|
readonly name: string;
|
|
29283
28853
|
}
|
|
29284
28854
|
|
|
29285
|
-
interface ThiagoItem {
|
|
29286
|
-
readonly id: string;
|
|
29287
|
-
readonly number: string;
|
|
29288
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
29289
|
-
readonly description?: string;
|
|
29290
|
-
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
29291
|
-
readonly added_on: string;
|
|
29292
|
-
}
|
|
29293
|
-
|
|
29294
|
-
interface ThiagoItemDeleted {
|
|
29295
|
-
readonly discriminator: 'thiago_item_deleted';
|
|
29296
|
-
readonly event_id: string;
|
|
29297
|
-
readonly timestamp: string;
|
|
29298
|
-
readonly id: string;
|
|
29299
|
-
}
|
|
29300
|
-
|
|
29301
|
-
interface ThiagoItemForm {
|
|
29302
|
-
readonly number: string;
|
|
29303
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
29304
|
-
readonly description?: string;
|
|
29305
|
-
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
29306
|
-
readonly added_on: string;
|
|
29307
|
-
}
|
|
29308
|
-
|
|
29309
|
-
interface ThiagoItemUpserted {
|
|
29310
|
-
readonly discriminator: 'thiago_item_upserted';
|
|
29311
|
-
readonly event_id: string;
|
|
29312
|
-
readonly timestamp: string;
|
|
29313
|
-
readonly item: io.flow.internal.v0.models.ThiagoItem;
|
|
29314
|
-
}
|
|
29315
|
-
|
|
29316
28855
|
interface ThirdPartyLogisticsPartner {
|
|
29317
28856
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
29318
28857
|
readonly warehouse_url?: string;
|
|
@@ -29448,6 +28987,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29448
28987
|
readonly job: io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
29449
28988
|
}
|
|
29450
28989
|
|
|
28990
|
+
interface TrackingCarrierReturnLabel {
|
|
28991
|
+
readonly id: string;
|
|
28992
|
+
readonly carrier_tracking_number: string;
|
|
28993
|
+
readonly alternate_tracking_numbers: string[];
|
|
28994
|
+
readonly carrier_id: string;
|
|
28995
|
+
readonly outbound_label_id?: string;
|
|
28996
|
+
readonly s3file?: string;
|
|
28997
|
+
readonly origin?: any /*object*/;
|
|
28998
|
+
readonly destination?: any /*object*/;
|
|
28999
|
+
}
|
|
29000
|
+
|
|
29001
|
+
interface TrackingCarrierReturnLabelDeleted {
|
|
29002
|
+
readonly discriminator: 'tracking_carrier_return_label_deleted';
|
|
29003
|
+
readonly event_id: string;
|
|
29004
|
+
readonly timestamp: string;
|
|
29005
|
+
readonly id: string;
|
|
29006
|
+
}
|
|
29007
|
+
|
|
29008
|
+
interface TrackingCarrierReturnLabelUpserted {
|
|
29009
|
+
readonly discriminator: 'tracking_carrier_return_label_upserted';
|
|
29010
|
+
readonly event_id: string;
|
|
29011
|
+
readonly timestamp: string;
|
|
29012
|
+
readonly tracking_carrier_return_label: io.flow.internal.v0.models.TrackingCarrierReturnLabel;
|
|
29013
|
+
}
|
|
29014
|
+
|
|
29451
29015
|
interface TrackingDebugForceTransitForm {
|
|
29452
29016
|
readonly description: string;
|
|
29453
29017
|
}
|
|
@@ -29572,14 +29136,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29572
29136
|
readonly credentials: io.flow.internal.v0.unions.CarrierCredentials;
|
|
29573
29137
|
}
|
|
29574
29138
|
|
|
29575
|
-
interface TrackingRequestUpserted {
|
|
29576
|
-
readonly discriminator: 'tracking_request_upserted';
|
|
29577
|
-
readonly event_id: string;
|
|
29578
|
-
readonly timestamp: string;
|
|
29579
|
-
readonly organization: string;
|
|
29580
|
-
readonly tracking_request: io.flow.internal.v0.models.TrackingRequest;
|
|
29581
|
-
}
|
|
29582
|
-
|
|
29583
29139
|
interface TrackingResponse {
|
|
29584
29140
|
readonly carrier: string;
|
|
29585
29141
|
readonly carrier_tracking_number: string;
|
|
@@ -29587,14 +29143,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29587
29143
|
readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
|
|
29588
29144
|
}
|
|
29589
29145
|
|
|
29590
|
-
interface TrackingResponseUpserted {
|
|
29591
|
-
readonly discriminator: 'tracking_response_upserted';
|
|
29592
|
-
readonly event_id: string;
|
|
29593
|
-
readonly timestamp: string;
|
|
29594
|
-
readonly organization: string;
|
|
29595
|
-
readonly tracking_response: io.flow.internal.v0.models.TrackingResponse;
|
|
29596
|
-
}
|
|
29597
|
-
|
|
29598
29146
|
interface TrackingSubscription {
|
|
29599
29147
|
readonly id: string;
|
|
29600
29148
|
readonly organization_id: string;
|
|
@@ -30030,8 +29578,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30030
29578
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
30031
29579
|
| io.flow.internal.v0.models.AdyenDisputeUpserted
|
|
30032
29580
|
| io.flow.internal.v0.models.AdyenDisputeDeleted
|
|
30033
|
-
| io.flow.internal.v0.models.IndexAssignmentUpserted
|
|
30034
|
-
| io.flow.internal.v0.models.IndexAssignmentDeleted
|
|
30035
29581
|
| io.flow.internal.v0.models.FulfillmentUpserted
|
|
30036
29582
|
| io.flow.internal.v0.models.FulfillmentDeleted
|
|
30037
29583
|
| io.flow.internal.v0.models.MerchantUpserted
|
|
@@ -30132,13 +29678,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30132
29678
|
| io.flow.internal.v0.models.DisputeUpserted
|
|
30133
29679
|
| io.flow.internal.v0.models.DisputeDeleted
|
|
30134
29680
|
| io.flow.internal.v0.models.DutyRatesPublishedV2
|
|
30135
|
-
| io.flow.internal.v0.models.DutyRateRequest
|
|
30136
|
-
| io.flow.internal.v0.models.DutyRateBulkRequest
|
|
30137
|
-
| io.flow.internal.v0.models.DutyRawUpserted
|
|
30138
|
-
| io.flow.internal.v0.models.DutyRawBulkUpserted
|
|
30139
|
-
| io.flow.internal.v0.models.DutyRateUpserted
|
|
30140
|
-
| io.flow.internal.v0.models.DutyRateResponse
|
|
30141
|
-
| io.flow.internal.v0.models.DutyRateBulkResponse
|
|
30142
29681
|
| io.flow.internal.v0.models.ItemSalesMarginDeleted
|
|
30143
29682
|
| io.flow.internal.v0.models.ItemSalesMarginUpserted
|
|
30144
29683
|
| io.flow.internal.v0.models.OrderAttributeDeleted
|
|
@@ -30210,7 +29749,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30210
29749
|
| io.flow.internal.v0.models.HarmonizationCodesImport
|
|
30211
29750
|
| io.flow.internal.v0.models.ItemClassificationCreated
|
|
30212
29751
|
| io.flow.internal.v0.models.HarmonizeFullyRequestV2
|
|
30213
|
-
| io.flow.internal.v0.models.HybrisCatalogItemsImportRequest
|
|
30214
29752
|
| io.flow.internal.v0.models.ImportCompleted
|
|
30215
29753
|
| io.flow.internal.v0.models.ImportFailed
|
|
30216
29754
|
| io.flow.internal.v0.models.TimeToClassifyUpserted
|
|
@@ -30304,7 +29842,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30304
29842
|
| io.flow.internal.v0.models.PaypalRefundUpserted
|
|
30305
29843
|
| io.flow.internal.v0.models.PaypalDisputeUpserted
|
|
30306
29844
|
| io.flow.internal.v0.models.PaypalDisputeDeleted
|
|
30307
|
-
| io.flow.internal.v0.models.PricingIndicator
|
|
30308
29845
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted
|
|
30309
29846
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted
|
|
30310
29847
|
| io.flow.internal.v0.models.OrderRatesPublishedV3
|
|
@@ -30329,6 +29866,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30329
29866
|
| io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted
|
|
30330
29867
|
| io.flow.internal.v0.models.ScreeningStatusChangeUpserted
|
|
30331
29868
|
| io.flow.internal.v0.models.ScreeningStatusChangeDeleted
|
|
29869
|
+
| io.flow.internal.v0.models.RestrictionsDailyopsUpserted
|
|
29870
|
+
| io.flow.internal.v0.models.RestrictionsDailyopsDeleted
|
|
30332
29871
|
| io.flow.internal.v0.models.ShopifyShopUpserted
|
|
30333
29872
|
| io.flow.internal.v0.models.ShopifyShopDeleted
|
|
30334
29873
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
|
|
@@ -30351,6 +29890,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30351
29890
|
| io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
30352
29891
|
| io.flow.internal.v0.models.ShopifyProductBundleUpserted
|
|
30353
29892
|
| io.flow.internal.v0.models.ShopifyProductBundleDeleted
|
|
29893
|
+
| io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished
|
|
29894
|
+
| io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
29895
|
+
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
29896
|
+
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
30354
29897
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
30355
29898
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
30356
29899
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
@@ -30367,30 +29910,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30367
29910
|
| io.flow.internal.v0.models.StripeDisputeDeleted
|
|
30368
29911
|
| io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
|
|
30369
29912
|
| io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
|
|
30370
|
-
| io.flow.internal.v0.models.SvitlanaItemUpserted
|
|
30371
|
-
| io.flow.internal.v0.models.SvitlanaItemDeleted
|
|
30372
|
-
| io.flow.internal.v0.models.ColmItemUpserted
|
|
30373
|
-
| io.flow.internal.v0.models.ColmItemDeleted
|
|
30374
|
-
| io.flow.internal.v0.models.EldarItemUpserted
|
|
30375
|
-
| io.flow.internal.v0.models.EldarItemDeleted
|
|
30376
|
-
| io.flow.internal.v0.models.HarinathItemUpserted
|
|
30377
|
-
| io.flow.internal.v0.models.HarinathItemDeleted
|
|
30378
|
-
| io.flow.internal.v0.models.KonstantinItemUpserted
|
|
30379
|
-
| io.flow.internal.v0.models.KonstantinItemDeleted
|
|
30380
|
-
| io.flow.internal.v0.models.MatiasItemUpserted
|
|
30381
|
-
| io.flow.internal.v0.models.MatiasItemDeleted
|
|
30382
|
-
| io.flow.internal.v0.models.MichaelyanItemUpserted
|
|
30383
|
-
| io.flow.internal.v0.models.MichaelyanItemDeleted
|
|
30384
|
-
| io.flow.internal.v0.models.MiljenkoItemUpserted
|
|
30385
|
-
| io.flow.internal.v0.models.MiljenkoItemDeleted
|
|
30386
|
-
| io.flow.internal.v0.models.SanjayItemUpserted
|
|
30387
|
-
| io.flow.internal.v0.models.SanjayItemDeleted
|
|
30388
|
-
| io.flow.internal.v0.models.ShrutiDemoItemUpserted
|
|
30389
|
-
| io.flow.internal.v0.models.ShrutiDemoItemDeleted
|
|
30390
|
-
| io.flow.internal.v0.models.TamItemUpserted
|
|
30391
|
-
| io.flow.internal.v0.models.TamItemDeleted
|
|
30392
|
-
| io.flow.internal.v0.models.ThiagoItemUpserted
|
|
30393
|
-
| io.flow.internal.v0.models.ThiagoItemDeleted
|
|
30394
29913
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
30395
29914
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
30396
29915
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -30405,10 +29924,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30405
29924
|
| io.flow.internal.v0.models.TrackingAssuranceJobDeleted
|
|
30406
29925
|
| io.flow.internal.v0.models.TrackingSubscriptionUpserted
|
|
30407
29926
|
| io.flow.internal.v0.models.TrackingSubscriptionDeleted
|
|
29927
|
+
| io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted
|
|
29928
|
+
| io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted
|
|
30408
29929
|
| io.flow.internal.v0.models.TrackingLabelDimensionsUpserted
|
|
30409
29930
|
| io.flow.internal.v0.models.TrackingLabelDimensionsDeleted
|
|
30410
|
-
| io.flow.internal.v0.models.TrackingRequestUpserted
|
|
30411
|
-
| io.flow.internal.v0.models.TrackingResponseUpserted
|
|
30412
29931
|
| io.flow.internal.v0.models.UserUpsertedV2
|
|
30413
29932
|
| io.flow.internal.v0.models.UserDeletedV2;
|
|
30414
29933
|
type ExplicitStatementForm =
|
|
@@ -30497,7 +30016,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30497
30016
|
| io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary
|
|
30498
30017
|
| io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary
|
|
30499
30018
|
| io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
|
|
30500
|
-
type MoneyRule = io.flow.internal.v0.models.MoneyPercentage;
|
|
30501
30019
|
type OptinPromptDisplay =
|
|
30502
30020
|
io.flow.internal.v0.models.OptinPromptCheckoutDisplay;
|
|
30503
30021
|
type OrderActionForm =
|
|
@@ -30809,8 +30327,6 @@ export type AlertFailureSummaryDetail =
|
|
|
30809
30327
|
export type AlertImportSummary = io.flow.internal.v0.models.AlertImportSummary;
|
|
30810
30328
|
export type AlertRequeueSummary =
|
|
30811
30329
|
io.flow.internal.v0.models.AlertRequeueSummary;
|
|
30812
|
-
export type AlgoliaIndexAssignment =
|
|
30813
|
-
io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
30814
30330
|
export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
30815
30331
|
export type AllOrganizationsMembership =
|
|
30816
30332
|
io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
@@ -30850,8 +30366,10 @@ export type AuthorizedShippingCharge =
|
|
|
30850
30366
|
io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
30851
30367
|
export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
30852
30368
|
export type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
30369
|
+
export type BankAccount = io.flow.internal.v0.models.BankAccount;
|
|
30853
30370
|
export type BankAccountReference =
|
|
30854
30371
|
io.flow.internal.v0.models.BankAccountReference;
|
|
30372
|
+
export type BankAccountStatus = io.flow.internal.v0.enums.BankAccountStatus;
|
|
30855
30373
|
export type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
30856
30374
|
export type BankPaymentDeletedV2 =
|
|
30857
30375
|
io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
@@ -31333,10 +30851,8 @@ export type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
|
|
|
31333
30851
|
export type ClothingAgeClassification =
|
|
31334
30852
|
io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
31335
30853
|
export type ColmItem = io.flow.internal.v0.models.ColmItem;
|
|
31336
|
-
export type ColmItemDeleted = io.flow.internal.v0.models.ColmItemDeleted;
|
|
31337
30854
|
export type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
|
|
31338
30855
|
export type ColmItemType = io.flow.internal.v0.enums.ColmItemType;
|
|
31339
|
-
export type ColmItemUpserted = io.flow.internal.v0.models.ColmItemUpserted;
|
|
31340
30856
|
export type CommercialInvoiceComparison =
|
|
31341
30857
|
io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
31342
30858
|
export type CommercialInvoiceInternal =
|
|
@@ -31374,9 +30890,6 @@ export type ContentSchemaSummary =
|
|
|
31374
30890
|
export type ContentStatus = io.flow.internal.v0.enums.ContentStatus;
|
|
31375
30891
|
export type ContentType = io.flow.internal.v0.enums.ContentType;
|
|
31376
30892
|
export type ContentTypeCast = io.flow.internal.v0.enums.ContentTypeCast;
|
|
31377
|
-
export type Cost = io.flow.internal.v0.models.Cost;
|
|
31378
|
-
export type CostRule = io.flow.internal.v0.models.CostRule;
|
|
31379
|
-
export type CostType = io.flow.internal.v0.enums.CostType;
|
|
31380
30893
|
export type CountryPickerCountry =
|
|
31381
30894
|
io.flow.internal.v0.models.CountryPickerCountry;
|
|
31382
30895
|
export type CountryPickerCountryData =
|
|
@@ -31434,6 +30947,8 @@ export type DebugAccountingTransaction =
|
|
|
31434
30947
|
io.flow.internal.v0.models.DebugAccountingTransaction;
|
|
31435
30948
|
export type DebugAccountingTransactionType =
|
|
31436
30949
|
io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
30950
|
+
export type DebugBankingDetails =
|
|
30951
|
+
io.flow.internal.v0.models.DebugBankingDetails;
|
|
31437
30952
|
export type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
31438
30953
|
export type DebugFulfillmentDelta =
|
|
31439
30954
|
io.flow.internal.v0.models.DebugFulfillmentDelta;
|
|
@@ -31485,7 +31000,6 @@ export type DeliveredDutyPreferenceForm =
|
|
|
31485
31000
|
export type DeminimisAdjustmentType =
|
|
31486
31001
|
io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
31487
31002
|
export type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
31488
|
-
export type Details = io.flow.internal.v0.models.Details;
|
|
31489
31003
|
export type Dhl = io.flow.internal.v0.models.Dhl;
|
|
31490
31004
|
export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
31491
31005
|
export type Dict = io.flow.internal.v0.models.Dict;
|
|
@@ -31557,28 +31071,17 @@ export type DutyExemptItemTypes = io.flow.internal.v0.enums.DutyExemptItemTypes;
|
|
|
31557
31071
|
export type DutyExpression = io.flow.internal.v0.unions.DutyExpression;
|
|
31558
31072
|
export type DutyInternalRate = io.flow.internal.v0.models.DutyInternalRate;
|
|
31559
31073
|
export type DutyRate = io.flow.internal.v0.models.DutyRate;
|
|
31560
|
-
export type DutyRateBulkRequest =
|
|
31561
|
-
io.flow.internal.v0.models.DutyRateBulkRequest;
|
|
31562
|
-
export type DutyRateBulkResponse =
|
|
31563
|
-
io.flow.internal.v0.models.DutyRateBulkResponse;
|
|
31564
|
-
export type DutyRateContext = io.flow.internal.v0.models.DutyRateContext;
|
|
31565
31074
|
export type DutyRateItemSummary =
|
|
31566
31075
|
io.flow.internal.v0.models.DutyRateItemSummary;
|
|
31567
|
-
export type DutyRateRequest = io.flow.internal.v0.models.DutyRateRequest;
|
|
31568
|
-
export type DutyRateResponse = io.flow.internal.v0.models.DutyRateResponse;
|
|
31569
31076
|
export type DutyRateSource = io.flow.internal.v0.enums.DutyRateSource;
|
|
31570
31077
|
export type DutyRateSummary = io.flow.internal.v0.models.DutyRateSummary;
|
|
31571
31078
|
export type DutyRateUnitOfMeasure =
|
|
31572
31079
|
io.flow.internal.v0.enums.DutyRateUnitOfMeasure;
|
|
31573
|
-
export type DutyRateUpserted = io.flow.internal.v0.models.DutyRateUpserted;
|
|
31574
31080
|
export type DutyRatesDataSummary =
|
|
31575
31081
|
io.flow.internal.v0.models.DutyRatesDataSummary;
|
|
31576
31082
|
export type DutyRatesPublishedV2 =
|
|
31577
31083
|
io.flow.internal.v0.models.DutyRatesPublishedV2;
|
|
31578
31084
|
export type DutyRaw = io.flow.internal.v0.models.DutyRaw;
|
|
31579
|
-
export type DutyRawBulkUpserted =
|
|
31580
|
-
io.flow.internal.v0.models.DutyRawBulkUpserted;
|
|
31581
|
-
export type DutyRawUpserted = io.flow.internal.v0.models.DutyRawUpserted;
|
|
31582
31085
|
export type DutySelectionRule = io.flow.internal.v0.enums.DutySelectionRule;
|
|
31583
31086
|
export type DutySimpleExpression =
|
|
31584
31087
|
io.flow.internal.v0.models.DutySimpleExpression;
|
|
@@ -31590,11 +31093,6 @@ export type DutyTransactionDeleted =
|
|
|
31590
31093
|
export type DutyTransactionType = io.flow.internal.v0.enums.DutyTransactionType;
|
|
31591
31094
|
export type DutyTransactionUpserted =
|
|
31592
31095
|
io.flow.internal.v0.models.DutyTransactionUpserted;
|
|
31593
|
-
export type EldarItem = io.flow.internal.v0.models.EldarItem;
|
|
31594
|
-
export type EldarItemDeleted = io.flow.internal.v0.models.EldarItemDeleted;
|
|
31595
|
-
export type EldarItemForm = io.flow.internal.v0.models.EldarItemForm;
|
|
31596
|
-
export type EldarItemType = io.flow.internal.v0.enums.EldarItemType;
|
|
31597
|
-
export type EldarItemUpserted = io.flow.internal.v0.models.EldarItemUpserted;
|
|
31598
31096
|
export type EmailForm = io.flow.internal.v0.models.EmailForm;
|
|
31599
31097
|
export type EmailModificationForm =
|
|
31600
31098
|
io.flow.internal.v0.models.EmailModificationForm;
|
|
@@ -31909,13 +31407,6 @@ export type GoogleShoppingSetting =
|
|
|
31909
31407
|
io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
31910
31408
|
export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
31911
31409
|
export type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
31912
|
-
export type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
31913
|
-
export type HarinathItemDeleted =
|
|
31914
|
-
io.flow.internal.v0.models.HarinathItemDeleted;
|
|
31915
|
-
export type HarinathItemForm = io.flow.internal.v0.models.HarinathItemForm;
|
|
31916
|
-
export type HarinathItemType = io.flow.internal.v0.enums.HarinathItemType;
|
|
31917
|
-
export type HarinathItemUpserted =
|
|
31918
|
-
io.flow.internal.v0.models.HarinathItemUpserted;
|
|
31919
31410
|
export type HarmonizationClassificationStatisticsData =
|
|
31920
31411
|
io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
31921
31412
|
export type HarmonizationClassificationStatisticsPublished =
|
|
@@ -31952,16 +31443,8 @@ export type Href = io.flow.internal.v0.models.Href;
|
|
|
31952
31443
|
export type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
31953
31444
|
export type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
31954
31445
|
export type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
31955
|
-
export type HybrisCatalogItemsImportRequest =
|
|
31956
|
-
io.flow.internal.v0.models.HybrisCatalogItemsImportRequest;
|
|
31957
|
-
export type HybrisCatalogItemsImportRequestData =
|
|
31958
|
-
io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
31959
31446
|
export type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
|
|
31960
31447
|
export type ImportFailed = io.flow.internal.v0.models.ImportFailed;
|
|
31961
|
-
export type IndexAssignmentDeleted =
|
|
31962
|
-
io.flow.internal.v0.models.IndexAssignmentDeleted;
|
|
31963
|
-
export type IndexAssignmentUpserted =
|
|
31964
|
-
io.flow.internal.v0.models.IndexAssignmentUpserted;
|
|
31965
31448
|
export type IndexTaskType = io.flow.internal.v0.unions.IndexTaskType;
|
|
31966
31449
|
export type InlineAuthorizationParameters =
|
|
31967
31450
|
io.flow.internal.v0.unions.InlineAuthorizationParameters;
|
|
@@ -32047,7 +31530,6 @@ export type ItemFilterValueResponse =
|
|
|
32047
31530
|
io.flow.internal.v0.models.ItemFilterValueResponse;
|
|
32048
31531
|
export type ItemFilterValuesForm =
|
|
32049
31532
|
io.flow.internal.v0.models.ItemFilterValuesForm;
|
|
32050
|
-
export type ItemForm = io.flow.internal.v0.models.ItemForm;
|
|
32051
31533
|
export type ItemFormImportRequest =
|
|
32052
31534
|
io.flow.internal.v0.models.ItemFormImportRequest;
|
|
32053
31535
|
export type ItemHarmonization = io.flow.internal.v0.models.ItemHarmonization;
|
|
@@ -32089,13 +31571,6 @@ export type KlarnaAuthorizationParameters =
|
|
|
32089
31571
|
io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
32090
31572
|
export type KlarnaPaymentMethodCategory =
|
|
32091
31573
|
io.flow.internal.v0.models.KlarnaPaymentMethodCategory;
|
|
32092
|
-
export type KonstantinItem = io.flow.internal.v0.models.KonstantinItem;
|
|
32093
|
-
export type KonstantinItemDeleted =
|
|
32094
|
-
io.flow.internal.v0.models.KonstantinItemDeleted;
|
|
32095
|
-
export type KonstantinItemForm = io.flow.internal.v0.models.KonstantinItemForm;
|
|
32096
|
-
export type KonstantinItemType = io.flow.internal.v0.enums.KonstantinItemType;
|
|
32097
|
-
export type KonstantinItemUpserted =
|
|
32098
|
-
io.flow.internal.v0.models.KonstantinItemUpserted;
|
|
32099
31574
|
export type LabProjectSettings = io.flow.internal.v0.models.LabProjectSettings;
|
|
32100
31575
|
export type LabProjectSettingsForm =
|
|
32101
31576
|
io.flow.internal.v0.models.LabProjectSettingsForm;
|
|
@@ -32377,18 +31852,13 @@ export type MarketingGatewaySupportedChannelDetails =
|
|
|
32377
31852
|
export type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
32378
31853
|
export type MarketsOrderSummary =
|
|
32379
31854
|
io.flow.internal.v0.models.MarketsOrderSummary;
|
|
32380
|
-
export type MatiasItem = io.flow.internal.v0.models.MatiasItem;
|
|
32381
|
-
export type MatiasItemDeleted = io.flow.internal.v0.models.MatiasItemDeleted;
|
|
32382
|
-
export type MatiasItemForm = io.flow.internal.v0.models.MatiasItemForm;
|
|
32383
|
-
export type MatiasItemType = io.flow.internal.v0.enums.MatiasItemType;
|
|
32384
|
-
export type MatiasItemUpserted = io.flow.internal.v0.models.MatiasItemUpserted;
|
|
32385
31855
|
export type Merchant = io.flow.internal.v0.models.Merchant;
|
|
32386
31856
|
export type MerchantApplicationSummaries =
|
|
32387
31857
|
io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
32388
31858
|
export type MerchantApplicationSummary =
|
|
32389
31859
|
io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
32390
|
-
export type MerchantCohort = io.flow.internal.v0.enums.MerchantCohort;
|
|
32391
31860
|
export type MerchantDeleted = io.flow.internal.v0.models.MerchantDeleted;
|
|
31861
|
+
export type MerchantDetails = io.flow.internal.v0.models.MerchantDetails;
|
|
32392
31862
|
export type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
32393
31863
|
export type MerchantGuidAssignment =
|
|
32394
31864
|
io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
@@ -32415,23 +31885,7 @@ export type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
|
32415
31885
|
export type MetadataProposition =
|
|
32416
31886
|
io.flow.internal.v0.models.MetadataProposition;
|
|
32417
31887
|
export type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
32418
|
-
export type MichaelyanItem = io.flow.internal.v0.models.MichaelyanItem;
|
|
32419
|
-
export type MichaelyanItemDeleted =
|
|
32420
|
-
io.flow.internal.v0.models.MichaelyanItemDeleted;
|
|
32421
|
-
export type MichaelyanItemForm = io.flow.internal.v0.models.MichaelyanItemForm;
|
|
32422
|
-
export type MichaelyanItemType = io.flow.internal.v0.enums.MichaelyanItemType;
|
|
32423
|
-
export type MichaelyanItemUpserted =
|
|
32424
|
-
io.flow.internal.v0.models.MichaelyanItemUpserted;
|
|
32425
|
-
export type MiljenkoItem = io.flow.internal.v0.models.MiljenkoItem;
|
|
32426
|
-
export type MiljenkoItemDeleted =
|
|
32427
|
-
io.flow.internal.v0.models.MiljenkoItemDeleted;
|
|
32428
|
-
export type MiljenkoItemForm = io.flow.internal.v0.models.MiljenkoItemForm;
|
|
32429
|
-
export type MiljenkoItemType = io.flow.internal.v0.enums.MiljenkoItemType;
|
|
32430
|
-
export type MiljenkoItemUpserted =
|
|
32431
|
-
io.flow.internal.v0.models.MiljenkoItemUpserted;
|
|
32432
31888
|
export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
32433
|
-
export type MoneyPercentage = io.flow.internal.v0.models.MoneyPercentage;
|
|
32434
|
-
export type MoneyRule = io.flow.internal.v0.unions.MoneyRule;
|
|
32435
31889
|
export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
32436
31890
|
export type NegativeDebitMetrics =
|
|
32437
31891
|
io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
@@ -32526,6 +31980,7 @@ export type OrderCombinedShipmentForm =
|
|
|
32526
31980
|
export type OrderCombinedShipmentUpserted =
|
|
32527
31981
|
io.flow.internal.v0.models.OrderCombinedShipmentUpserted;
|
|
32528
31982
|
export type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
31983
|
+
export type OrderEditSummary = io.flow.internal.v0.models.OrderEditSummary;
|
|
32529
31984
|
export type OrderFulfillmentDeleted =
|
|
32530
31985
|
io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
32531
31986
|
export type OrderFulfillmentUpserted =
|
|
@@ -32764,7 +32219,6 @@ export type PartnerTrackingSubscriptionDeleted =
|
|
|
32764
32219
|
io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted;
|
|
32765
32220
|
export type PartnerTrackingSubscriptionUpserted =
|
|
32766
32221
|
io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted;
|
|
32767
|
-
export type Party = io.flow.internal.v0.enums.Party;
|
|
32768
32222
|
export type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
32769
32223
|
export type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
32770
32224
|
export type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
@@ -32865,17 +32319,8 @@ export type PregeneratedQuote = io.flow.internal.v0.models.PregeneratedQuote;
|
|
|
32865
32319
|
export type PregeneratedRequestEvent =
|
|
32866
32320
|
io.flow.internal.v0.models.PregeneratedRequestEvent;
|
|
32867
32321
|
export type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
32868
|
-
export type PricingIndicator = io.flow.internal.v0.models.PricingIndicator;
|
|
32869
|
-
export type PricingIndicatorDynamo =
|
|
32870
|
-
io.flow.internal.v0.models.PricingIndicatorDynamo;
|
|
32871
|
-
export type PricingIndicatorStatus =
|
|
32872
|
-
io.flow.internal.v0.enums.PricingIndicatorStatus;
|
|
32873
|
-
export type Principal = io.flow.internal.v0.models.Principal;
|
|
32874
|
-
export type PrincipalType = io.flow.internal.v0.enums.PrincipalType;
|
|
32875
32322
|
export type PrioritizedCenterReference =
|
|
32876
32323
|
io.flow.internal.v0.models.PrioritizedCenterReference;
|
|
32877
|
-
export type ProcessedPaymentSummary =
|
|
32878
|
-
io.flow.internal.v0.models.ProcessedPaymentSummary;
|
|
32879
32324
|
export type ProcessingTransaction =
|
|
32880
32325
|
io.flow.internal.v0.models.ProcessingTransaction;
|
|
32881
32326
|
export type ProcessingTransactionDeleted =
|
|
@@ -32938,15 +32383,6 @@ export type ProductReviewHistory =
|
|
|
32938
32383
|
io.flow.internal.v0.models.ProductReviewHistory;
|
|
32939
32384
|
export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
32940
32385
|
export type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
32941
|
-
export type Profit = io.flow.internal.v0.models.Profit;
|
|
32942
|
-
export type ProfitShare = io.flow.internal.v0.models.ProfitShare;
|
|
32943
|
-
export type ProfitShareOrderReference =
|
|
32944
|
-
io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
32945
|
-
export type ProfitSharePlan = io.flow.internal.v0.models.ProfitSharePlan;
|
|
32946
|
-
export type ProfitSplit = io.flow.internal.v0.models.ProfitSplit;
|
|
32947
|
-
export type ProfitSplitRule = io.flow.internal.v0.models.ProfitSplitRule;
|
|
32948
|
-
export type ProfitStream = io.flow.internal.v0.models.ProfitStream;
|
|
32949
|
-
export type ProfitStreamKey = io.flow.internal.v0.enums.ProfitStreamKey;
|
|
32950
32386
|
export type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
32951
32387
|
export type PromptCheckoutDisplayPosition =
|
|
32952
32388
|
io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
@@ -33211,6 +32647,10 @@ export type RestrictionStatusMetadata =
|
|
|
33211
32647
|
io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
33212
32648
|
export type RestrictionsDailyops =
|
|
33213
32649
|
io.flow.internal.v0.models.RestrictionsDailyops;
|
|
32650
|
+
export type RestrictionsDailyopsDeleted =
|
|
32651
|
+
io.flow.internal.v0.models.RestrictionsDailyopsDeleted;
|
|
32652
|
+
export type RestrictionsDailyopsUpserted =
|
|
32653
|
+
io.flow.internal.v0.models.RestrictionsDailyopsUpserted;
|
|
33214
32654
|
export type ResyncByDestinations =
|
|
33215
32655
|
io.flow.internal.v0.models.ResyncByDestinations;
|
|
33216
32656
|
export type ResyncByHs6Destinations =
|
|
@@ -33233,15 +32673,12 @@ export type ReturnSummary = io.flow.internal.v0.models.ReturnSummary;
|
|
|
33233
32673
|
export type ReturnTrigger = io.flow.internal.v0.unions.ReturnTrigger;
|
|
33234
32674
|
export type ReturnTriggerRefund =
|
|
33235
32675
|
io.flow.internal.v0.models.ReturnTriggerRefund;
|
|
33236
|
-
export type Revenue = io.flow.internal.v0.models.Revenue;
|
|
33237
32676
|
export type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
|
|
33238
32677
|
export type RevenueRecordDeleted =
|
|
33239
32678
|
io.flow.internal.v0.models.RevenueRecordDeleted;
|
|
33240
32679
|
export type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
|
|
33241
32680
|
export type RevenueRecordUpserted =
|
|
33242
32681
|
io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
33243
|
-
export type RevenueRule = io.flow.internal.v0.models.RevenueRule;
|
|
33244
|
-
export type RevenueType = io.flow.internal.v0.enums.RevenueType;
|
|
33245
32682
|
export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
33246
32683
|
export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
33247
32684
|
export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
@@ -33250,11 +32687,6 @@ export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
|
33250
32687
|
export type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
33251
32688
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
33252
32689
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
33253
|
-
export type SanjayItem = io.flow.internal.v0.models.SanjayItem;
|
|
33254
|
-
export type SanjayItemDeleted = io.flow.internal.v0.models.SanjayItemDeleted;
|
|
33255
|
-
export type SanjayItemForm = io.flow.internal.v0.models.SanjayItemForm;
|
|
33256
|
-
export type SanjayItemType = io.flow.internal.v0.enums.SanjayItemType;
|
|
33257
|
-
export type SanjayItemUpserted = io.flow.internal.v0.models.SanjayItemUpserted;
|
|
33258
32690
|
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
33259
32691
|
export type Screen = io.flow.internal.v0.models.Screen;
|
|
33260
32692
|
export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -33278,7 +32710,6 @@ export type SearchProviderExport =
|
|
|
33278
32710
|
io.flow.internal.v0.models.SearchProviderExport;
|
|
33279
32711
|
export type SearchTrackingSummary =
|
|
33280
32712
|
io.flow.internal.v0.models.SearchTrackingSummary;
|
|
33281
|
-
export type ServiceName = io.flow.internal.v0.enums.ServiceName;
|
|
33282
32713
|
export type SessionCountries = io.flow.internal.v0.models.SessionCountries;
|
|
33283
32714
|
export type SessionCountry = io.flow.internal.v0.models.SessionCountry;
|
|
33284
32715
|
export type SessionCountryForm = io.flow.internal.v0.models.SessionCountryForm;
|
|
@@ -33327,6 +32758,20 @@ export type ShopifyGiftCardReversalForm =
|
|
|
33327
32758
|
io.flow.internal.v0.models.ShopifyGiftCardReversalForm;
|
|
33328
32759
|
export type ShopifyGrantStatus = io.flow.internal.v0.enums.ShopifyGrantStatus;
|
|
33329
32760
|
export type ShopifyGrantsCheck = io.flow.internal.v0.models.ShopifyGrantsCheck;
|
|
32761
|
+
export type ShopifyIncotermConfiguration =
|
|
32762
|
+
io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
|
|
32763
|
+
export type ShopifyIncotermIncludes =
|
|
32764
|
+
io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
32765
|
+
export type ShopifyIncotermSummaryErrorData =
|
|
32766
|
+
io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
32767
|
+
export type ShopifyIncotermSummaryErrorPublished =
|
|
32768
|
+
io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished;
|
|
32769
|
+
export type ShopifyMarketsBestSellingProduct =
|
|
32770
|
+
io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
32771
|
+
export type ShopifyMarketsBestSellingProductDeleted =
|
|
32772
|
+
io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
32773
|
+
export type ShopifyMarketsBestSellingProductUpserted =
|
|
32774
|
+
io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted;
|
|
33330
32775
|
export type ShopifyMarketsDangerousGoods =
|
|
33331
32776
|
io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods;
|
|
33332
32777
|
export type ShopifyMarketsDiscrepancy =
|
|
@@ -33347,6 +32792,10 @@ export type ShopifyMarketsOrder =
|
|
|
33347
32792
|
io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
33348
32793
|
export type ShopifyMarketsOrderDeleted =
|
|
33349
32794
|
io.flow.internal.v0.models.ShopifyMarketsOrderDeleted;
|
|
32795
|
+
export type ShopifyMarketsOrderEditSummaryData =
|
|
32796
|
+
io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
32797
|
+
export type ShopifyMarketsOrderEditSummaryPublished =
|
|
32798
|
+
io.flow.internal.v0.models.ShopifyMarketsOrderEditSummaryPublished;
|
|
33350
32799
|
export type ShopifyMarketsOrderUpserted =
|
|
33351
32800
|
io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
33352
32801
|
export type ShopifyMarketsOrderVersionWithShopId =
|
|
@@ -33511,13 +32960,6 @@ export type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
|
|
33511
32960
|
export type ShopperLine = io.flow.internal.v0.models.ShopperLine;
|
|
33512
32961
|
export type ShopperLines = io.flow.internal.v0.models.ShopperLines;
|
|
33513
32962
|
export type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
|
|
33514
|
-
export type ShrutiDemoItem = io.flow.internal.v0.models.ShrutiDemoItem;
|
|
33515
|
-
export type ShrutiDemoItemDeleted =
|
|
33516
|
-
io.flow.internal.v0.models.ShrutiDemoItemDeleted;
|
|
33517
|
-
export type ShrutiDemoItemForm = io.flow.internal.v0.models.ShrutiDemoItemForm;
|
|
33518
|
-
export type ShrutiDemoItemUpserted =
|
|
33519
|
-
io.flow.internal.v0.models.ShrutiDemoItemUpserted;
|
|
33520
|
-
export type ShrutiDemoType = io.flow.internal.v0.enums.ShrutiDemoType;
|
|
33521
32963
|
export type SimpleAccountReference =
|
|
33522
32964
|
io.flow.internal.v0.models.SimpleAccountReference;
|
|
33523
32965
|
export type SimpleRoundingStrategy =
|
|
@@ -33630,19 +33072,6 @@ export type SubscriptionTransaction =
|
|
|
33630
33072
|
io.flow.internal.v0.models.SubscriptionTransaction;
|
|
33631
33073
|
export type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
33632
33074
|
export type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
33633
|
-
export type SvitlanaItem = io.flow.internal.v0.models.SvitlanaItem;
|
|
33634
|
-
export type SvitlanaItemDeleted =
|
|
33635
|
-
io.flow.internal.v0.models.SvitlanaItemDeleted;
|
|
33636
|
-
export type SvitlanaItemForm = io.flow.internal.v0.models.SvitlanaItemForm;
|
|
33637
|
-
export type SvitlanaItemUpserted =
|
|
33638
|
-
io.flow.internal.v0.models.SvitlanaItemUpserted;
|
|
33639
|
-
export type SvitlanaTest = io.flow.internal.v0.models.SvitlanaTest;
|
|
33640
|
-
export type SvitlanaType = io.flow.internal.v0.enums.SvitlanaType;
|
|
33641
|
-
export type TamItem = io.flow.internal.v0.models.TamItem;
|
|
33642
|
-
export type TamItemDeleted = io.flow.internal.v0.models.TamItemDeleted;
|
|
33643
|
-
export type TamItemForm = io.flow.internal.v0.models.TamItemForm;
|
|
33644
|
-
export type TamItemType = io.flow.internal.v0.enums.TamItemType;
|
|
33645
|
-
export type TamItemUpserted = io.flow.internal.v0.models.TamItemUpserted;
|
|
33646
33075
|
export type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
33647
33076
|
export type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
33648
33077
|
export type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|
|
@@ -33694,11 +33123,6 @@ export type TechOnboardingDescription =
|
|
|
33694
33123
|
io.flow.internal.v0.models.TechOnboardingDescription;
|
|
33695
33124
|
export type Test = io.flow.internal.v0.models.Test;
|
|
33696
33125
|
export type TestForm = io.flow.internal.v0.models.TestForm;
|
|
33697
|
-
export type ThiagoItem = io.flow.internal.v0.models.ThiagoItem;
|
|
33698
|
-
export type ThiagoItemDeleted = io.flow.internal.v0.models.ThiagoItemDeleted;
|
|
33699
|
-
export type ThiagoItemForm = io.flow.internal.v0.models.ThiagoItemForm;
|
|
33700
|
-
export type ThiagoItemType = io.flow.internal.v0.enums.ThiagoItemType;
|
|
33701
|
-
export type ThiagoItemUpserted = io.flow.internal.v0.models.ThiagoItemUpserted;
|
|
33702
33126
|
export type ThirdPartyLogisticsPartner =
|
|
33703
33127
|
io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
33704
33128
|
export type ThirdPartyLogisticsPickUpTimeWindow =
|
|
@@ -33730,6 +33154,12 @@ export type TrackingAssuranceJobDeleted =
|
|
|
33730
33154
|
io.flow.internal.v0.models.TrackingAssuranceJobDeleted;
|
|
33731
33155
|
export type TrackingAssuranceJobUpserted =
|
|
33732
33156
|
io.flow.internal.v0.models.TrackingAssuranceJobUpserted;
|
|
33157
|
+
export type TrackingCarrierReturnLabel =
|
|
33158
|
+
io.flow.internal.v0.models.TrackingCarrierReturnLabel;
|
|
33159
|
+
export type TrackingCarrierReturnLabelDeleted =
|
|
33160
|
+
io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted;
|
|
33161
|
+
export type TrackingCarrierReturnLabelUpserted =
|
|
33162
|
+
io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted;
|
|
33733
33163
|
export type TrackingDebugForceTransitForm =
|
|
33734
33164
|
io.flow.internal.v0.models.TrackingDebugForceTransitForm;
|
|
33735
33165
|
export type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
@@ -33766,11 +33196,7 @@ export type TrackingProcessingErrorUpserted =
|
|
|
33766
33196
|
export type TrackingProcessingFailureClassification =
|
|
33767
33197
|
io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
33768
33198
|
export type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
33769
|
-
export type TrackingRequestUpserted =
|
|
33770
|
-
io.flow.internal.v0.models.TrackingRequestUpserted;
|
|
33771
33199
|
export type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
33772
|
-
export type TrackingResponseUpserted =
|
|
33773
|
-
io.flow.internal.v0.models.TrackingResponseUpserted;
|
|
33774
33200
|
export type TrackingSubscription =
|
|
33775
33201
|
io.flow.internal.v0.models.TrackingSubscription;
|
|
33776
33202
|
export type TrackingSubscriptionDeleted =
|