@flowio/types 11.24.105 → 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 +395 -661
- package/dist/api.d.ts +1974 -308
- package/package.json +2 -2
- package/src/api-internal.ts +555 -876
- package/src/api.ts +2593 -392
package/src/api-internal.ts
CHANGED
|
@@ -2708,6 +2708,11 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2708
2708
|
readonly eci?: string;
|
|
2709
2709
|
readonly liability_sift?: boolean;
|
|
2710
2710
|
readonly version?: string;
|
|
2711
|
+
readonly authenticated?: boolean;
|
|
2712
|
+
readonly authenticated_result?: string;
|
|
2713
|
+
readonly offered?: boolean;
|
|
2714
|
+
readonly offered_result?: string;
|
|
2715
|
+
readonly sca_exemption?: string;
|
|
2711
2716
|
}
|
|
2712
2717
|
|
|
2713
2718
|
interface ThreedsChallengeActionDetails {
|
|
@@ -3107,6 +3112,15 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
3107
3112
|
| 'under_review'
|
|
3108
3113
|
| 'won'
|
|
3109
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';
|
|
3110
3124
|
type ErrorCode =
|
|
3111
3125
|
| 'invalid_number'
|
|
3112
3126
|
| 'invalid_expiry_month'
|
|
@@ -4394,6 +4408,17 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4394
4408
|
readonly previous_attributes?: any /*object*/;
|
|
4395
4409
|
}
|
|
4396
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
|
+
|
|
4397
4422
|
interface StripeError {
|
|
4398
4423
|
readonly type: io.flow.stripe.v0.enums.ErrorType;
|
|
4399
4424
|
readonly charge?: string;
|
|
@@ -4630,6 +4655,19 @@ declare namespace io.flow.label.v0.enums {
|
|
|
4630
4655
|
| 'dimensions_estimated'
|
|
4631
4656
|
| 'default_item_dimensions_estimated';
|
|
4632
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';
|
|
4633
4671
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
4634
4672
|
}
|
|
4635
4673
|
|
|
@@ -4773,6 +4811,11 @@ declare namespace io.flow.label.v0.models {
|
|
|
4773
4811
|
readonly required: boolean;
|
|
4774
4812
|
}
|
|
4775
4813
|
|
|
4814
|
+
interface ShippingLabelError {
|
|
4815
|
+
readonly code: io.flow.label.v0.enums.ShippingLabelErrorCode;
|
|
4816
|
+
readonly messages: string[];
|
|
4817
|
+
}
|
|
4818
|
+
|
|
4776
4819
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
4777
4820
|
readonly units: io.flow.trueup.v0.models.LabelUnits;
|
|
4778
4821
|
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
@@ -6221,6 +6264,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6221
6264
|
readonly inventory_item_id: number;
|
|
6222
6265
|
readonly shopify_shop_id: number;
|
|
6223
6266
|
readonly shopify_inventory_item: io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
6267
|
+
readonly deleted_at?: string;
|
|
6224
6268
|
}
|
|
6225
6269
|
|
|
6226
6270
|
interface MarketsOrder {
|
|
@@ -6258,6 +6302,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6258
6302
|
readonly destination: string;
|
|
6259
6303
|
}
|
|
6260
6304
|
|
|
6305
|
+
interface ShopifyMarketsBestSellingProduct {
|
|
6306
|
+
readonly id: string;
|
|
6307
|
+
}
|
|
6308
|
+
|
|
6261
6309
|
interface ShopifyMarketsDiscrepancy {
|
|
6262
6310
|
readonly organization_id: string;
|
|
6263
6311
|
readonly count: number;
|
|
@@ -6456,6 +6504,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6456
6504
|
| 'DISPUTE_DEFENSE_PERIOD_ENDED'
|
|
6457
6505
|
| 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED';
|
|
6458
6506
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
6507
|
+
type LifecycleStage = 'INQUIRY' | 'CHARGEBACK';
|
|
6459
6508
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
6460
6509
|
type PaymentMethod =
|
|
6461
6510
|
| 'ach'
|
|
@@ -6704,6 +6753,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6704
6753
|
readonly paymentMethod?: io.flow.adyen.v0.enums.PaymentMethod;
|
|
6705
6754
|
readonly reason?: string;
|
|
6706
6755
|
readonly success: string;
|
|
6756
|
+
readonly lifecycleStage?: io.flow.adyen.v0.enums.LifecycleStage;
|
|
6707
6757
|
}
|
|
6708
6758
|
|
|
6709
6759
|
interface ModificationRequest {
|
|
@@ -8992,36 +9042,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
8992
9042
|
}
|
|
8993
9043
|
}
|
|
8994
9044
|
|
|
8995
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.enums {
|
|
8996
|
-
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
8997
|
-
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
8998
|
-
}
|
|
8999
|
-
|
|
9000
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.models {
|
|
9001
|
-
interface Details {
|
|
9002
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
9003
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
9004
|
-
readonly upserted_at: string;
|
|
9005
|
-
readonly time_elapsed_since_upserted: number;
|
|
9006
|
-
}
|
|
9007
|
-
|
|
9008
|
-
interface PricingIndicator {
|
|
9009
|
-
readonly discriminator: 'pricing_indicator';
|
|
9010
|
-
readonly event_id: string;
|
|
9011
|
-
readonly timestamp: string;
|
|
9012
|
-
readonly organization: string;
|
|
9013
|
-
readonly published_from: io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
|
|
9014
|
-
readonly status: io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
|
|
9015
|
-
readonly event_identifier: string;
|
|
9016
|
-
readonly details: io.flow.pricing.indicator.internal.event.v0.models.Details;
|
|
9017
|
-
}
|
|
9018
|
-
}
|
|
9019
|
-
|
|
9020
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.unions {
|
|
9021
|
-
type PricingIndicatorEvent =
|
|
9022
|
-
io.flow.pricing.indicator.internal.event.v0.models.PricingIndicator;
|
|
9023
|
-
}
|
|
9024
|
-
|
|
9025
9045
|
declare namespace io.flow.order.price.v0.enums {
|
|
9026
9046
|
type OrderPriceDetailComponentKey =
|
|
9027
9047
|
| 'adjustment'
|
|
@@ -9110,6 +9130,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
9110
9130
|
| 'order_contains_gift_card'
|
|
9111
9131
|
| 'order_contains_restricted_goods'
|
|
9112
9132
|
| 'missing_order_information'
|
|
9133
|
+
| 'missing_classification_information'
|
|
9113
9134
|
| 'unsupported_payment_information'
|
|
9114
9135
|
| 'unsupported_shop_currency'
|
|
9115
9136
|
| 'unsupported_free_order'
|
|
@@ -9172,6 +9193,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9172
9193
|
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
9173
9194
|
readonly order_created_at?: string;
|
|
9174
9195
|
readonly order_updated_at?: string;
|
|
9196
|
+
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
9175
9197
|
}
|
|
9176
9198
|
|
|
9177
9199
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -9200,6 +9222,11 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9200
9222
|
interface FlowChannelOrganization {
|
|
9201
9223
|
readonly placeholder?: string;
|
|
9202
9224
|
}
|
|
9225
|
+
|
|
9226
|
+
interface OrderEditSummary {
|
|
9227
|
+
readonly external_order_edit_reference: string;
|
|
9228
|
+
readonly edited_at: string;
|
|
9229
|
+
}
|
|
9203
9230
|
}
|
|
9204
9231
|
|
|
9205
9232
|
declare namespace io.flow.partner.v0.enums {
|
|
@@ -9331,6 +9358,15 @@ declare namespace io.flow.partner.v0.models {
|
|
|
9331
9358
|
readonly id: string;
|
|
9332
9359
|
}
|
|
9333
9360
|
|
|
9361
|
+
interface PartnerTrackingSubscription {
|
|
9362
|
+
readonly id: string;
|
|
9363
|
+
readonly carrier_tracking_number: string;
|
|
9364
|
+
readonly carrier_id: string;
|
|
9365
|
+
readonly source: string;
|
|
9366
|
+
readonly reference_key: string;
|
|
9367
|
+
readonly created_at: string;
|
|
9368
|
+
}
|
|
9369
|
+
|
|
9334
9370
|
interface SummaryLabelForm {
|
|
9335
9371
|
readonly discriminator: 'summary_label_form';
|
|
9336
9372
|
readonly organization: string;
|
|
@@ -9374,7 +9410,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
9374
9410
|
| 'saturday';
|
|
9375
9411
|
type DeliveredDuty = 'paid' | 'unpaid';
|
|
9376
9412
|
type DiscountTarget = 'item' | 'shipping';
|
|
9377
|
-
type EntityIdentifierType = 'ioss' | 'voec';
|
|
9413
|
+
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
9378
9414
|
type Environment = 'sandbox' | 'production';
|
|
9379
9415
|
type ExceptionType = 'open' | 'closed';
|
|
9380
9416
|
type GoodsSupply = 'export' | 'intra_community' | 'local';
|
|
@@ -9982,6 +10018,10 @@ declare namespace io.flow.ftp.v0.models {
|
|
|
9982
10018
|
}
|
|
9983
10019
|
}
|
|
9984
10020
|
|
|
10021
|
+
declare namespace io.flow.shopify.markets.internal.event.v0.enums {
|
|
10022
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
10023
|
+
}
|
|
10024
|
+
|
|
9985
10025
|
declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
9986
10026
|
interface ChannelOrderSummaryDeleted {
|
|
9987
10027
|
readonly discriminator: 'channel_order_summary_deleted';
|
|
@@ -10030,6 +10070,45 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10030
10070
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
10031
10071
|
}
|
|
10032
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
|
+
|
|
10033
10112
|
interface ShopifyMarketsMetricsDeleted {
|
|
10034
10113
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
10035
10114
|
readonly event_id: string;
|
|
@@ -10057,6 +10136,19 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10057
10136
|
readonly shopify_markets_order: io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
10058
10137
|
}
|
|
10059
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
|
+
|
|
10060
10152
|
interface ShopifyMarketsOrderUpserted {
|
|
10061
10153
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
10062
10154
|
readonly event_id: string;
|
|
@@ -10149,7 +10241,11 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
10149
10241
|
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted
|
|
10150
10242
|
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
10151
10243
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted
|
|
10152
|
-
| 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;
|
|
10153
10249
|
}
|
|
10154
10250
|
|
|
10155
10251
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -10181,6 +10277,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
10181
10277
|
type ExperienceCountryStatus = 'enabled' | 'disabled';
|
|
10182
10278
|
type ExperiencePaymentMethodTag = 'display';
|
|
10183
10279
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
10280
|
+
type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
10184
10281
|
type OrderErrorCode =
|
|
10185
10282
|
| 'generic_error'
|
|
10186
10283
|
| 'order_item_not_available'
|
|
@@ -10715,6 +10812,17 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10715
10812
|
readonly attributes?: Record<string, string>;
|
|
10716
10813
|
}
|
|
10717
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
|
+
|
|
10718
10826
|
interface ItemMargin {
|
|
10719
10827
|
readonly id: string;
|
|
10720
10828
|
readonly key: string;
|
|
@@ -10816,6 +10924,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10816
10924
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
10817
10925
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
10818
10926
|
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
10927
|
+
readonly incoterm_summary?: io.flow.experience.v0.models.IncotermSummary;
|
|
10819
10928
|
}
|
|
10820
10929
|
|
|
10821
10930
|
interface OrderAddress {
|
|
@@ -12649,6 +12758,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
12649
12758
|
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
12650
12759
|
readonly timestamp: string;
|
|
12651
12760
|
readonly description?: string;
|
|
12761
|
+
readonly aggregator_status_code?: string;
|
|
12652
12762
|
}
|
|
12653
12763
|
|
|
12654
12764
|
interface TrackingEventForm {
|
|
@@ -16173,6 +16283,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16173
16283
|
| 'prr-79e41878ea564f9c81cc432a0e84703f'
|
|
16174
16284
|
| 'prr-f29c26dc09e04536bc77f9c32786ed70'
|
|
16175
16285
|
| 'prr-b186129720f0446eb452a68518437c95';
|
|
16286
|
+
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
16176
16287
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16177
16288
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
16178
16289
|
type BillingAllocationKey =
|
|
@@ -16307,10 +16418,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16307
16418
|
| 'negative_balance_number_accounts'
|
|
16308
16419
|
| 'negative_balance_number_accounts_with_order_in_past_30_days'
|
|
16309
16420
|
| 'negative_balance_number_accounts_without_order_in_past_30_days'
|
|
16421
|
+
| 'negative_balance_number_offboarded_accounts'
|
|
16310
16422
|
| 'negative_balance_number_active_accounts_with_balance_over_1000'
|
|
16311
16423
|
| 'negative_balance_total'
|
|
16312
16424
|
| 'negative_balance_total_with_order_in_past_30_days'
|
|
16313
16425
|
| 'negative_balance_total_without_order_in_past_30_days'
|
|
16426
|
+
| 'negative_balance_total_offboarded_accounts'
|
|
16314
16427
|
| 'negative_balance_single_account_max'
|
|
16315
16428
|
| 'negative_balance_single_active_account_max'
|
|
16316
16429
|
| 'negative_balance_fee_total'
|
|
@@ -16328,7 +16441,32 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16328
16441
|
| 'negative_balance_sent_total'
|
|
16329
16442
|
| 'negative_balance_failed_count'
|
|
16330
16443
|
| 'negative_balance_failed_total'
|
|
16331
|
-
| 'negative_debit_success_rate'
|
|
16444
|
+
| 'negative_debit_success_rate'
|
|
16445
|
+
| 'current_attempt_merchant_count'
|
|
16446
|
+
| 'current_attempt_amount_total'
|
|
16447
|
+
| 'current_attempt_failed_merchant_count'
|
|
16448
|
+
| 'current_attempt_failed_amount_total'
|
|
16449
|
+
| 'current_attempt_success_ratio'
|
|
16450
|
+
| 'first_attempt_merchant_count'
|
|
16451
|
+
| 'first_attempt_amount_total'
|
|
16452
|
+
| 'first_attempt_failed_merchant_count'
|
|
16453
|
+
| 'first_attempt_failed_amount_total'
|
|
16454
|
+
| 'first_attempt_success_ratio'
|
|
16455
|
+
| 'second_attempt_merchant_count'
|
|
16456
|
+
| 'second_attempt_amount_total'
|
|
16457
|
+
| 'second_attempt_failed_merchant_count'
|
|
16458
|
+
| 'second_attempt_failed_amount_total'
|
|
16459
|
+
| 'second_attempt_success_ratio'
|
|
16460
|
+
| 'third_attempt_merchant_count'
|
|
16461
|
+
| 'third_attempt_amount_total'
|
|
16462
|
+
| 'third_attempt_failed_merchant_count'
|
|
16463
|
+
| 'third_attempt_failed_amount_total'
|
|
16464
|
+
| 'third_attempt_success_ratio'
|
|
16465
|
+
| 'fourth_plus_attempt_merchant_count'
|
|
16466
|
+
| 'fourth_plus_attempt_amount_total'
|
|
16467
|
+
| 'fourth_plus_attempt_failed_merchant_count'
|
|
16468
|
+
| 'fourth_plus_attempt_failed_amount_total'
|
|
16469
|
+
| 'fourth_plus_attempt_success_ratio';
|
|
16332
16470
|
type BillingStatementAttachmentKey =
|
|
16333
16471
|
| 'invoice'
|
|
16334
16472
|
| 'statement'
|
|
@@ -16371,15 +16509,13 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16371
16509
|
| 'duty'
|
|
16372
16510
|
| 'trueup'
|
|
16373
16511
|
| 'carrier_charge'
|
|
16374
|
-
| 'tax_refund'
|
|
16512
|
+
| 'tax_refund'
|
|
16513
|
+
| 'duty_refund';
|
|
16375
16514
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
16376
16515
|
type CalculatorEngine =
|
|
16377
|
-
| 'flow_rate_and_rule'
|
|
16378
|
-
| 'dtce'
|
|
16379
|
-
| 'dtce_two_calls'
|
|
16380
16516
|
| 'dtce_with_deminimis'
|
|
16381
|
-
| '
|
|
16382
|
-
| '
|
|
16517
|
+
| 'dtce_with_inclusive_pricing'
|
|
16518
|
+
| 'dtce_and_us_tax';
|
|
16383
16519
|
type CarrierChargeTransactionType =
|
|
16384
16520
|
| 'adjustment'
|
|
16385
16521
|
| 'reversal'
|
|
@@ -16418,6 +16554,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16418
16554
|
| 'order_contains_gift_card'
|
|
16419
16555
|
| 'order_contains_restricted_goods'
|
|
16420
16556
|
| 'missing_order_information'
|
|
16557
|
+
| 'missing_classification_information'
|
|
16421
16558
|
| 'unsupported_payment_information'
|
|
16422
16559
|
| 'unsupported_shop_currency'
|
|
16423
16560
|
| 'unsupported_free_order'
|
|
@@ -16499,15 +16636,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16499
16636
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
16500
16637
|
type ContentType = 'text' | 'html';
|
|
16501
16638
|
type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
|
|
16502
|
-
type CostType =
|
|
16503
|
-
| 'payment_processing'
|
|
16504
|
-
| 'fx'
|
|
16505
|
-
| 'negative_balance'
|
|
16506
|
-
| 'solution'
|
|
16507
|
-
| 'hosting'
|
|
16508
|
-
| 'duty_guarantee'
|
|
16509
|
-
| 'transfer'
|
|
16510
|
-
| 'fraud';
|
|
16511
16639
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
16512
16640
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
16513
16641
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -16554,7 +16682,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16554
16682
|
| 'preferential_rate';
|
|
16555
16683
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
16556
16684
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
16557
|
-
type EldarItemType = 'digital' | 'physical';
|
|
16558
16685
|
type EmptyAttribute = 'irrelevant';
|
|
16559
16686
|
type ErpFileType = 'vendor';
|
|
16560
16687
|
type EventType =
|
|
@@ -16570,8 +16697,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16570
16697
|
| 'adyen_refund_upserted'
|
|
16571
16698
|
| 'adyen_dispute_upserted'
|
|
16572
16699
|
| 'adyen_dispute_deleted'
|
|
16573
|
-
| 'index_assignment_upserted'
|
|
16574
|
-
| 'index_assignment_deleted'
|
|
16575
16700
|
| 'fulfillment_upserted'
|
|
16576
16701
|
| 'fulfillment_deleted'
|
|
16577
16702
|
| 'merchant_upserted'
|
|
@@ -16672,13 +16797,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16672
16797
|
| 'dispute_upserted'
|
|
16673
16798
|
| 'dispute_deleted'
|
|
16674
16799
|
| 'duty_rates_published_v2'
|
|
16675
|
-
| 'duty_rate_request'
|
|
16676
|
-
| 'duty_rate_bulk_request'
|
|
16677
|
-
| 'duty_raw_upserted'
|
|
16678
|
-
| 'duty_raw_bulk_upserted'
|
|
16679
|
-
| 'duty_rate_upserted'
|
|
16680
|
-
| 'duty_rate_response'
|
|
16681
|
-
| 'duty_rate_bulk_response'
|
|
16682
16800
|
| 'item_sales_margin_deleted'
|
|
16683
16801
|
| 'item_sales_margin_upserted'
|
|
16684
16802
|
| 'order_attribute_deleted'
|
|
@@ -16750,7 +16868,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16750
16868
|
| 'harmonization_codes_import'
|
|
16751
16869
|
| 'item_classification_created'
|
|
16752
16870
|
| 'harmonize_fully_request_v2'
|
|
16753
|
-
| 'hybris_catalog_items_import_request'
|
|
16754
16871
|
| 'import_completed'
|
|
16755
16872
|
| 'import_failed'
|
|
16756
16873
|
| 'time_to_classify_upserted'
|
|
@@ -16814,6 +16931,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16814
16931
|
| 'partner_organization_settings_deleted'
|
|
16815
16932
|
| 'unassigned_merchant_guid_upserted'
|
|
16816
16933
|
| 'unassigned_merchant_guid_deleted'
|
|
16934
|
+
| 'partner_tracking_subscription_upserted'
|
|
16935
|
+
| 'partner_tracking_subscription_deleted'
|
|
16817
16936
|
| 'internal_authorization_upserted'
|
|
16818
16937
|
| 'internal_authorization_deleted'
|
|
16819
16938
|
| 'afterpay_authorization_upserted'
|
|
@@ -16840,7 +16959,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16840
16959
|
| 'paypal_execution_upserted'
|
|
16841
16960
|
| 'paypal_refund_deleted'
|
|
16842
16961
|
| 'paypal_refund_upserted'
|
|
16843
|
-
| '
|
|
16962
|
+
| 'paypal_dispute_upserted'
|
|
16963
|
+
| 'paypal_dispute_deleted'
|
|
16844
16964
|
| 'product_restriction_rule_decision_upserted'
|
|
16845
16965
|
| 'product_restriction_rule_decision_deleted'
|
|
16846
16966
|
| 'order_rates_published_v3'
|
|
@@ -16865,6 +16985,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16865
16985
|
| 'organization_restriction_status_deleted'
|
|
16866
16986
|
| 'screening_status_change_upserted'
|
|
16867
16987
|
| 'screening_status_change_deleted'
|
|
16988
|
+
| 'restrictions_dailyops_upserted'
|
|
16989
|
+
| 'restrictions_dailyops_deleted'
|
|
16868
16990
|
| 'shopify_shop_upserted'
|
|
16869
16991
|
| 'shopify_shop_deleted'
|
|
16870
16992
|
| 'shopify_experience_short_id_upserted'
|
|
@@ -16887,6 +17009,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16887
17009
|
| 'order_tax_and_duty_inclusivity_setting_deleted'
|
|
16888
17010
|
| 'shopify_product_bundle_upserted'
|
|
16889
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'
|
|
16890
17016
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
16891
17017
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
16892
17018
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
@@ -16903,28 +17029,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16903
17029
|
| 'stripe_dispute_deleted'
|
|
16904
17030
|
| 'liability_remittance_plan_upserted'
|
|
16905
17031
|
| 'liability_remittance_plan_deleted'
|
|
16906
|
-
| 'svitlana_item_upserted'
|
|
16907
|
-
| 'svitlana_item_deleted'
|
|
16908
|
-
| 'colm_item_upserted'
|
|
16909
|
-
| 'colm_item_deleted'
|
|
16910
|
-
| 'eldar_item_upserted'
|
|
16911
|
-
| 'eldar_item_deleted'
|
|
16912
|
-
| 'harinath_item_upserted'
|
|
16913
|
-
| 'harinath_item_deleted'
|
|
16914
|
-
| 'konstantin_item_upserted'
|
|
16915
|
-
| 'konstantin_item_deleted'
|
|
16916
|
-
| 'matias_item_upserted'
|
|
16917
|
-
| 'matias_item_deleted'
|
|
16918
|
-
| 'michaelyan_item_upserted'
|
|
16919
|
-
| 'michaelyan_item_deleted'
|
|
16920
|
-
| 'miljenko_item_upserted'
|
|
16921
|
-
| 'miljenko_item_deleted'
|
|
16922
|
-
| 'shruti_demo_item_upserted'
|
|
16923
|
-
| 'shruti_demo_item_deleted'
|
|
16924
|
-
| 'tam_item_upserted'
|
|
16925
|
-
| 'tam_item_deleted'
|
|
16926
|
-
| 'thiago_item_upserted'
|
|
16927
|
-
| 'thiago_item_deleted'
|
|
16928
17032
|
| 'tracking_processing_error_upserted'
|
|
16929
17033
|
| 'tracking_processing_error_deleted'
|
|
16930
17034
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -16937,10 +17041,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16937
17041
|
| 'tracking_assurance_analysis_deleted'
|
|
16938
17042
|
| 'tracking_assurance_job_upserted'
|
|
16939
17043
|
| 'tracking_assurance_job_deleted'
|
|
17044
|
+
| 'tracking_subscription_upserted'
|
|
17045
|
+
| 'tracking_subscription_deleted'
|
|
17046
|
+
| 'tracking_carrier_return_label_upserted'
|
|
17047
|
+
| 'tracking_carrier_return_label_deleted'
|
|
16940
17048
|
| 'tracking_label_dimensions_upserted'
|
|
16941
17049
|
| 'tracking_label_dimensions_deleted'
|
|
16942
|
-
| 'tracking_request_upserted'
|
|
16943
|
-
| 'tracking_response_upserted'
|
|
16944
17050
|
| 'user_upserted_v2'
|
|
16945
17051
|
| 'user_deleted_v2';
|
|
16946
17052
|
type ExperienceImportType = 'experience_with_settings';
|
|
@@ -16982,14 +17088,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16982
17088
|
| 'shopify_location'
|
|
16983
17089
|
| 'shopify_order'
|
|
16984
17090
|
| 'sync_product_catalog';
|
|
16985
|
-
type HarinathItemType = 'digital' | 'physical';
|
|
16986
17091
|
type HarmonizationDecisionSource =
|
|
16987
17092
|
| 'human'
|
|
16988
17093
|
| 'legacy_model'
|
|
16989
17094
|
| 'enterprise_model';
|
|
16990
17095
|
type HttpMethod = 'get' | 'post';
|
|
16991
|
-
type InventoryCheckService = 'sfcc' | 'gymboree';
|
|
16992
|
-
type InventoryReservation = 'synchronous-on-submit';
|
|
16993
17096
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
16994
17097
|
type ItemClassificationStatus =
|
|
16995
17098
|
| 'unknown'
|
|
@@ -17009,7 +17112,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17009
17112
|
| 'fulfillment_generate_label';
|
|
17010
17113
|
type ItemType = 'standard' | 'multi_product';
|
|
17011
17114
|
type KeywordType = 'positive' | 'negative';
|
|
17012
|
-
type KonstantinItemType = 'physical' | 'digital';
|
|
17013
17115
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
17014
17116
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
17015
17117
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
@@ -17053,7 +17155,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17053
17155
|
| 'tax_credit'
|
|
17054
17156
|
| 'carrier_credit'
|
|
17055
17157
|
| 'negative_balance_guarantee'
|
|
17056
|
-
| 'bank_payment_failure'
|
|
17158
|
+
| 'bank_payment_failure'
|
|
17159
|
+
| 'non_fraud_chargeback';
|
|
17057
17160
|
type MarketingGatewayAccountConnectionStatus =
|
|
17058
17161
|
| 'not_connected'
|
|
17059
17162
|
| 'connecting'
|
|
@@ -17106,14 +17209,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17106
17209
|
| 'facebook_primary'
|
|
17107
17210
|
| 'facebook_country_override'
|
|
17108
17211
|
| 'supplemental';
|
|
17109
|
-
type MatiasItemType = 'physical' | 'digital';
|
|
17110
|
-
type MerchantCohort =
|
|
17111
|
-
| 'channel_merchant_pre_cutoff'
|
|
17112
|
-
| 'channel_merchant_post_cutoff'
|
|
17113
|
-
| 'global_e_merchant_pre_cutoff'
|
|
17114
|
-
| 'global_e_merchant_post_cutoff';
|
|
17115
|
-
type MichaelyanItemType = 'physical' | 'digital';
|
|
17116
|
-
type MiljenkoItemType = 'physical' | 'digital';
|
|
17117
17212
|
type MixedBagWeight = '0' | '1' | '2';
|
|
17118
17213
|
type NatureOfSale =
|
|
17119
17214
|
| 'consumer'
|
|
@@ -17217,7 +17312,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17217
17312
|
| 'unscreened';
|
|
17218
17313
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
17219
17314
|
type Owner = 'flow' | 'organization';
|
|
17220
|
-
type Party = 'merchant' | 'channel_partner' | 'global_e';
|
|
17221
17315
|
type PaymentSummaryStatus =
|
|
17222
17316
|
| 'authorized'
|
|
17223
17317
|
| 'canceled'
|
|
@@ -17238,11 +17332,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17238
17332
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
17239
17333
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
17240
17334
|
type PriceSelector = 'minimum' | 'maximum';
|
|
17241
|
-
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
17242
|
-
type PrincipalType =
|
|
17243
|
-
| 'total_order_value'
|
|
17244
|
-
| 'product_order_value'
|
|
17245
|
-
| 'label_value';
|
|
17246
17335
|
type ProcessingTransactionType =
|
|
17247
17336
|
| 'adjustment'
|
|
17248
17337
|
| 'reversal'
|
|
@@ -17261,13 +17350,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17261
17350
|
| 'crypto';
|
|
17262
17351
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
17263
17352
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
17264
|
-
type ProfitStreamKey =
|
|
17265
|
-
| 'pre_profit_share'
|
|
17266
|
-
| 'channel_pre_cutoff'
|
|
17267
|
-
| 'channel_post_cutoff'
|
|
17268
|
-
| 'global_e_pre_cutoff'
|
|
17269
|
-
| 'global_e_post_cutoff'
|
|
17270
|
-
| 'duty_assurance';
|
|
17271
17353
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
17272
17354
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
17273
17355
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
@@ -17311,7 +17393,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17311
17393
|
| 'invariants'
|
|
17312
17394
|
| 'payments'
|
|
17313
17395
|
| 'reconcile_not_recorded'
|
|
17314
|
-
| 'products_record'
|
|
17396
|
+
| 'products_record'
|
|
17397
|
+
| 'disputes';
|
|
17315
17398
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
17316
17399
|
type ReportingScheme =
|
|
17317
17400
|
| 'immediate_reporting_to_tax_authority'
|
|
@@ -17328,7 +17411,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17328
17411
|
| 'accepted'
|
|
17329
17412
|
| 'restricted';
|
|
17330
17413
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
17331
|
-
type RevenueType = 'mor' | 'fx' | 'duty_assurance';
|
|
17332
17414
|
type RiskCheck = 'three_d_secure';
|
|
17333
17415
|
type RiskEvaluation =
|
|
17334
17416
|
| 'Pending'
|
|
@@ -17336,14 +17418,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17336
17418
|
| 'Low-Risk'
|
|
17337
17419
|
| 'Restricted-Party'
|
|
17338
17420
|
| 'none';
|
|
17339
|
-
type SerialReservationError =
|
|
17340
|
-
| 'duration_too_long'
|
|
17341
|
-
| 'items_not_found'
|
|
17342
|
-
| 'reservation_expired';
|
|
17343
|
-
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
17344
17421
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
17345
17422
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
17346
17423
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
17424
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
17347
17425
|
type ShopifyMarketsDangerousGoods =
|
|
17348
17426
|
| 'aerosols'
|
|
17349
17427
|
| 'air_bag_inflators_or_seat_belt_pretensioners'
|
|
@@ -17406,7 +17484,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17406
17484
|
| 'duty';
|
|
17407
17485
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
17408
17486
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
17409
|
-
type ShrutiDemoType = 'digital' | 'physical';
|
|
17410
17487
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
17411
17488
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
17412
17489
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -17425,8 +17502,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17425
17502
|
| 'rate-freshness';
|
|
17426
17503
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
17427
17504
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
17428
|
-
type SvitlanaType = 'physical' | 'digital';
|
|
17429
|
-
type TamItemType = 'physical' | 'digital';
|
|
17430
17505
|
type TariffEligibilityType = 'rex';
|
|
17431
17506
|
type TaskProcessorKey =
|
|
17432
17507
|
| 'order_messenger'
|
|
@@ -17444,7 +17519,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17444
17519
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
17445
17520
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
17446
17521
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
17447
|
-
type ThiagoItemType = 'digital' | 'physical';
|
|
17448
17522
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
17449
17523
|
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
17450
17524
|
type TrackingProcessingFailureClassification =
|
|
@@ -17627,8 +17701,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17627
17701
|
readonly enable_fee_reversals: boolean;
|
|
17628
17702
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
17629
17703
|
readonly enable_negative_debits: boolean;
|
|
17630
|
-
readonly setup_completed_at?: string;
|
|
17631
|
-
readonly cohort?: io.flow.internal.v0.enums.MerchantCohort;
|
|
17632
17704
|
}
|
|
17633
17705
|
|
|
17634
17706
|
interface AccountSettingsDeleted {
|
|
@@ -17654,6 +17726,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17654
17726
|
readonly transfers: io.flow.common.v0.models.Price;
|
|
17655
17727
|
readonly balance: io.flow.common.v0.models.Price;
|
|
17656
17728
|
readonly pending: io.flow.common.v0.models.Price;
|
|
17729
|
+
readonly additional_balances?: io.flow.internal.v0.models.AccountStatisticsAdditionalBalances;
|
|
17730
|
+
}
|
|
17731
|
+
|
|
17732
|
+
interface AccountStatisticsAdditionalBalances {
|
|
17733
|
+
readonly on_hold: io.flow.common.v0.models.Price;
|
|
17657
17734
|
}
|
|
17658
17735
|
|
|
17659
17736
|
interface AccountSummary {
|
|
@@ -18205,12 +18282,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18205
18282
|
readonly count: number;
|
|
18206
18283
|
}
|
|
18207
18284
|
|
|
18208
|
-
interface AlgoliaIndexAssignment {
|
|
18209
|
-
readonly id: string;
|
|
18210
|
-
readonly name: string;
|
|
18211
|
-
readonly application_id: string;
|
|
18212
|
-
}
|
|
18213
|
-
|
|
18214
18285
|
interface AllItemsExport {
|
|
18215
18286
|
readonly discriminator: 'all_items_export';
|
|
18216
18287
|
readonly event_id: string;
|
|
@@ -18334,6 +18405,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18334
18405
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
18335
18406
|
}
|
|
18336
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
|
+
|
|
18337
18415
|
interface BankAccountReference {
|
|
18338
18416
|
readonly id: string;
|
|
18339
18417
|
}
|
|
@@ -18876,7 +18954,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18876
18954
|
|
|
18877
18955
|
interface CallRecord {
|
|
18878
18956
|
readonly id: string;
|
|
18879
|
-
readonly request_body?:
|
|
18957
|
+
readonly request_body?: string;
|
|
18880
18958
|
}
|
|
18881
18959
|
|
|
18882
18960
|
interface CarrierAccount {
|
|
@@ -19357,6 +19435,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19357
19435
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
19358
19436
|
readonly order_created_at?: string;
|
|
19359
19437
|
readonly order_updated_at?: string;
|
|
19438
|
+
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
19360
19439
|
}
|
|
19361
19440
|
|
|
19362
19441
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -20036,13 +20115,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20036
20115
|
readonly added_on: string;
|
|
20037
20116
|
}
|
|
20038
20117
|
|
|
20039
|
-
interface ColmItemDeleted {
|
|
20040
|
-
readonly discriminator: 'colm_item_deleted';
|
|
20041
|
-
readonly event_id: string;
|
|
20042
|
-
readonly timestamp: string;
|
|
20043
|
-
readonly id: string;
|
|
20044
|
-
}
|
|
20045
|
-
|
|
20046
20118
|
interface ColmItemForm {
|
|
20047
20119
|
readonly number: string;
|
|
20048
20120
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -20051,13 +20123,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20051
20123
|
readonly added_on: string;
|
|
20052
20124
|
}
|
|
20053
20125
|
|
|
20054
|
-
interface ColmItemUpserted {
|
|
20055
|
-
readonly discriminator: 'colm_item_upserted';
|
|
20056
|
-
readonly event_id: string;
|
|
20057
|
-
readonly timestamp: string;
|
|
20058
|
-
readonly item: io.flow.internal.v0.models.ColmItem;
|
|
20059
|
-
}
|
|
20060
|
-
|
|
20061
20126
|
interface CommercialInvoiceComparison {
|
|
20062
20127
|
readonly urls: string[];
|
|
20063
20128
|
}
|
|
@@ -20208,17 +20273,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20208
20273
|
readonly description?: string;
|
|
20209
20274
|
}
|
|
20210
20275
|
|
|
20211
|
-
interface Cost {
|
|
20212
|
-
readonly source: io.flow.internal.v0.models.CostRule;
|
|
20213
|
-
readonly amount: number;
|
|
20214
|
-
}
|
|
20215
|
-
|
|
20216
|
-
interface CostRule {
|
|
20217
|
-
readonly type: io.flow.internal.v0.enums.CostType;
|
|
20218
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
20219
|
-
readonly bearer: io.flow.internal.v0.enums.Party;
|
|
20220
|
-
}
|
|
20221
|
-
|
|
20222
20276
|
interface CountryPickerCountry {
|
|
20223
20277
|
readonly iso_3166_2: string;
|
|
20224
20278
|
readonly iso_3166_3: string;
|
|
@@ -20465,6 +20519,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20465
20519
|
readonly transaction_id: string;
|
|
20466
20520
|
}
|
|
20467
20521
|
|
|
20522
|
+
interface DebugBankingDetails {
|
|
20523
|
+
readonly merchant: io.flow.internal.v0.models.MerchantDetails;
|
|
20524
|
+
readonly account: io.flow.internal.v0.models.BankAccount;
|
|
20525
|
+
}
|
|
20526
|
+
|
|
20468
20527
|
interface DebugDetails {
|
|
20469
20528
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
20470
20529
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
@@ -20506,6 +20565,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20506
20565
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
20507
20566
|
readonly transactions: io.flow.billing.v0.models.Transaction[];
|
|
20508
20567
|
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
20568
|
+
readonly banking: io.flow.internal.v0.models.DebugBankingDetails;
|
|
20509
20569
|
}
|
|
20510
20570
|
|
|
20511
20571
|
interface DebugOrderTransactionForm {
|
|
@@ -20647,13 +20707,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20647
20707
|
readonly destination: io.flow.common.v0.models.Address;
|
|
20648
20708
|
}
|
|
20649
20709
|
|
|
20650
|
-
interface Details {
|
|
20651
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
20652
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
20653
|
-
readonly upserted_at: string;
|
|
20654
|
-
readonly time_elapsed_since_upserted: number;
|
|
20655
|
-
}
|
|
20656
|
-
|
|
20657
20710
|
interface Dhl {
|
|
20658
20711
|
readonly discriminator: 'dhl';
|
|
20659
20712
|
readonly export_account_number: string;
|
|
@@ -20735,8 +20788,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20735
20788
|
readonly billable: io.flow.internal.v0.enums.DisputeBillable;
|
|
20736
20789
|
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
20737
20790
|
readonly details: io.flow.internal.v0.unions.DisputeDetails;
|
|
20791
|
+
readonly payment_method?: io.flow.reference.v0.models.PaymentMethod;
|
|
20738
20792
|
readonly issued_at: string;
|
|
20739
20793
|
readonly expires_at?: string;
|
|
20794
|
+
readonly defended_at?: string;
|
|
20740
20795
|
readonly created_at: string;
|
|
20741
20796
|
readonly updated_at?: string;
|
|
20742
20797
|
}
|
|
@@ -20817,6 +20872,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20817
20872
|
readonly status?: io.flow.internal.v0.enums.DisputeStatus;
|
|
20818
20873
|
}
|
|
20819
20874
|
|
|
20875
|
+
interface DisputeRecord {
|
|
20876
|
+
readonly id: string;
|
|
20877
|
+
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
20878
|
+
readonly authorization: io.flow.internal.v0.models.ReportingAuthorizationReference;
|
|
20879
|
+
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
20880
|
+
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20881
|
+
readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
|
|
20882
|
+
readonly reporting_category?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
20883
|
+
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
20884
|
+
readonly chargeback_amount: io.flow.common.v0.models.MoneyWithBase;
|
|
20885
|
+
}
|
|
20886
|
+
|
|
20820
20887
|
interface DisputeStatusForm {
|
|
20821
20888
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20822
20889
|
}
|
|
@@ -20889,65 +20956,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20889
20956
|
readonly created_at: string;
|
|
20890
20957
|
}
|
|
20891
20958
|
|
|
20892
|
-
interface DutyRateBulkRequest {
|
|
20893
|
-
readonly discriminator: 'duty_rate_bulk_request';
|
|
20894
|
-
readonly event_id: string;
|
|
20895
|
-
readonly timestamp: string;
|
|
20896
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
20897
|
-
readonly origin: string;
|
|
20898
|
-
readonly destination_tariff_code: Record<string, string>;
|
|
20899
|
-
}
|
|
20900
|
-
|
|
20901
|
-
interface DutyRateBulkResponse {
|
|
20902
|
-
readonly discriminator: 'duty_rate_bulk_response';
|
|
20903
|
-
readonly event_id: string;
|
|
20904
|
-
readonly timestamp: string;
|
|
20905
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
20906
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate[];
|
|
20907
|
-
}
|
|
20908
|
-
|
|
20909
|
-
interface DutyRateContext {
|
|
20910
|
-
readonly phrase_id?: string;
|
|
20911
|
-
readonly item_number?: string;
|
|
20912
|
-
readonly product_id?: string;
|
|
20913
|
-
}
|
|
20914
|
-
|
|
20915
20959
|
interface DutyRateItemSummary {
|
|
20916
20960
|
readonly number: string;
|
|
20917
20961
|
readonly product_id?: string;
|
|
20918
20962
|
}
|
|
20919
20963
|
|
|
20920
|
-
interface DutyRateRequest {
|
|
20921
|
-
readonly discriminator: 'duty_rate_request';
|
|
20922
|
-
readonly event_id: string;
|
|
20923
|
-
readonly timestamp: string;
|
|
20924
|
-
readonly destination: string;
|
|
20925
|
-
readonly origin: string;
|
|
20926
|
-
readonly tariff_code: string;
|
|
20927
|
-
}
|
|
20928
|
-
|
|
20929
|
-
interface DutyRateResponse {
|
|
20930
|
-
readonly discriminator: 'duty_rate_response';
|
|
20931
|
-
readonly event_id: string;
|
|
20932
|
-
readonly timestamp: string;
|
|
20933
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate;
|
|
20934
|
-
}
|
|
20935
|
-
|
|
20936
20964
|
interface DutyRateSummary {
|
|
20937
20965
|
readonly tariff_code: string;
|
|
20938
20966
|
readonly origin: string;
|
|
20939
20967
|
readonly destination: string;
|
|
20940
20968
|
}
|
|
20941
20969
|
|
|
20942
|
-
interface DutyRateUpserted {
|
|
20943
|
-
readonly discriminator: 'duty_rate_upserted';
|
|
20944
|
-
readonly event_id: string;
|
|
20945
|
-
readonly timestamp: string;
|
|
20946
|
-
readonly source_event: io.flow.internal.v0.models.DutyRawUpserted;
|
|
20947
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate;
|
|
20948
|
-
readonly unparsable_rates: string[];
|
|
20949
|
-
}
|
|
20950
|
-
|
|
20951
20970
|
interface DutyRatesDataSummary {
|
|
20952
20971
|
readonly id: string;
|
|
20953
20972
|
readonly item_summary: io.flow.internal.v0.models.DutyRateItemSummary;
|
|
@@ -20976,21 +20995,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20976
20995
|
readonly created_at: string;
|
|
20977
20996
|
}
|
|
20978
20997
|
|
|
20979
|
-
interface DutyRawBulkUpserted {
|
|
20980
|
-
readonly discriminator: 'duty_raw_bulk_upserted';
|
|
20981
|
-
readonly event_id: string;
|
|
20982
|
-
readonly timestamp: string;
|
|
20983
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
20984
|
-
readonly duty_raw: io.flow.internal.v0.models.DutyRaw[];
|
|
20985
|
-
}
|
|
20986
|
-
|
|
20987
|
-
interface DutyRawUpserted {
|
|
20988
|
-
readonly discriminator: 'duty_raw_upserted';
|
|
20989
|
-
readonly event_id: string;
|
|
20990
|
-
readonly timestamp: string;
|
|
20991
|
-
readonly duty_raw: io.flow.internal.v0.models.DutyRaw;
|
|
20992
|
-
}
|
|
20993
|
-
|
|
20994
20998
|
interface DutySimpleExpression {
|
|
20995
20999
|
readonly discriminator: 'duty_simple_expression';
|
|
20996
21000
|
readonly type: io.flow.internal.v0.enums.DutySimpleExpressionType;
|
|
@@ -21025,37 +21029,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21025
21029
|
readonly duty_transaction: io.flow.internal.v0.models.DutyTransaction;
|
|
21026
21030
|
}
|
|
21027
21031
|
|
|
21028
|
-
interface EldarItem {
|
|
21029
|
-
readonly id: string;
|
|
21030
|
-
readonly number: string;
|
|
21031
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21032
|
-
readonly description?: string;
|
|
21033
|
-
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
21034
|
-
readonly added_on: string;
|
|
21035
|
-
}
|
|
21036
|
-
|
|
21037
|
-
interface EldarItemDeleted {
|
|
21038
|
-
readonly discriminator: 'eldar_item_deleted';
|
|
21039
|
-
readonly event_id: string;
|
|
21040
|
-
readonly timestamp: string;
|
|
21041
|
-
readonly id: string;
|
|
21042
|
-
}
|
|
21043
|
-
|
|
21044
|
-
interface EldarItemForm {
|
|
21045
|
-
readonly number: string;
|
|
21046
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21047
|
-
readonly description?: string;
|
|
21048
|
-
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
21049
|
-
readonly added_on: string;
|
|
21050
|
-
}
|
|
21051
|
-
|
|
21052
|
-
interface EldarItemUpserted {
|
|
21053
|
-
readonly discriminator: 'eldar_item_upserted';
|
|
21054
|
-
readonly event_id: string;
|
|
21055
|
-
readonly timestamp: string;
|
|
21056
|
-
readonly item: io.flow.internal.v0.models.EldarItem;
|
|
21057
|
-
}
|
|
21058
|
-
|
|
21059
21032
|
interface EmailForm {
|
|
21060
21033
|
readonly to: string[];
|
|
21061
21034
|
readonly cc?: string[];
|
|
@@ -22413,37 +22386,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22413
22386
|
readonly tracker_id: string;
|
|
22414
22387
|
}
|
|
22415
22388
|
|
|
22416
|
-
interface HarinathItem {
|
|
22417
|
-
readonly id: string;
|
|
22418
|
-
readonly number: string;
|
|
22419
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22420
|
-
readonly description?: string;
|
|
22421
|
-
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
22422
|
-
readonly added_on: string;
|
|
22423
|
-
}
|
|
22424
|
-
|
|
22425
|
-
interface HarinathItemDeleted {
|
|
22426
|
-
readonly discriminator: 'harinath_item_deleted';
|
|
22427
|
-
readonly event_id: string;
|
|
22428
|
-
readonly timestamp: string;
|
|
22429
|
-
readonly id: string;
|
|
22430
|
-
}
|
|
22431
|
-
|
|
22432
|
-
interface HarinathItemForm {
|
|
22433
|
-
readonly number: string;
|
|
22434
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22435
|
-
readonly description?: string;
|
|
22436
|
-
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
22437
|
-
readonly added_on: string;
|
|
22438
|
-
}
|
|
22439
|
-
|
|
22440
|
-
interface HarinathItemUpserted {
|
|
22441
|
-
readonly discriminator: 'harinath_item_upserted';
|
|
22442
|
-
readonly event_id: string;
|
|
22443
|
-
readonly timestamp: string;
|
|
22444
|
-
readonly item: io.flow.internal.v0.models.HarinathItem;
|
|
22445
|
-
}
|
|
22446
|
-
|
|
22447
22389
|
interface HarmonizationClassificationStatisticsData {
|
|
22448
22390
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
22449
22391
|
}
|
|
@@ -22571,21 +22513,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22571
22513
|
readonly description: string;
|
|
22572
22514
|
}
|
|
22573
22515
|
|
|
22574
|
-
interface HybrisCatalogItemsImportRequest {
|
|
22575
|
-
readonly discriminator: 'hybris_catalog_items_import_request';
|
|
22576
|
-
readonly event_id: string;
|
|
22577
|
-
readonly timestamp: string;
|
|
22578
|
-
readonly organization: string;
|
|
22579
|
-
readonly request: io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
22580
|
-
}
|
|
22581
|
-
|
|
22582
|
-
interface HybrisCatalogItemsImportRequestData {
|
|
22583
|
-
readonly id: string;
|
|
22584
|
-
readonly import_id: string;
|
|
22585
|
-
readonly source_url: string;
|
|
22586
|
-
readonly filename?: string;
|
|
22587
|
-
}
|
|
22588
|
-
|
|
22589
22516
|
interface ImportCompleted {
|
|
22590
22517
|
readonly discriminator: 'import_completed';
|
|
22591
22518
|
readonly event_id: string;
|
|
@@ -22604,22 +22531,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22604
22531
|
readonly error: string;
|
|
22605
22532
|
}
|
|
22606
22533
|
|
|
22607
|
-
interface IndexAssignmentDeleted {
|
|
22608
|
-
readonly discriminator: 'index_assignment_deleted';
|
|
22609
|
-
readonly event_id: string;
|
|
22610
|
-
readonly timestamp: string;
|
|
22611
|
-
readonly organization: string;
|
|
22612
|
-
readonly id: string;
|
|
22613
|
-
}
|
|
22614
|
-
|
|
22615
|
-
interface IndexAssignmentUpserted {
|
|
22616
|
-
readonly discriminator: 'index_assignment_upserted';
|
|
22617
|
-
readonly event_id: string;
|
|
22618
|
-
readonly timestamp: string;
|
|
22619
|
-
readonly organization: string;
|
|
22620
|
-
readonly assignment: io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
22621
|
-
}
|
|
22622
|
-
|
|
22623
22534
|
interface InstallForm {
|
|
22624
22535
|
readonly token: string;
|
|
22625
22536
|
}
|
|
@@ -22755,19 +22666,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22755
22666
|
readonly inventory_item_id: number;
|
|
22756
22667
|
readonly shopify_shop_id: number;
|
|
22757
22668
|
readonly shopify_inventory_item: io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
22758
|
-
|
|
22759
|
-
|
|
22760
|
-
interface InventoryOrganizationSettings {
|
|
22761
|
-
readonly id: string;
|
|
22762
|
-
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
22763
|
-
readonly inventory_check_service: io.flow.internal.v0.enums.InventoryCheckService;
|
|
22764
|
-
readonly inventory_check_service_root_url?: string;
|
|
22765
|
-
}
|
|
22766
|
-
|
|
22767
|
-
interface InventoryOrganizationSettingsForm {
|
|
22768
|
-
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
22769
|
-
readonly inventory_check_service: io.flow.internal.v0.enums.InventoryCheckService;
|
|
22770
|
-
readonly inventory_check_service_root_url?: string;
|
|
22669
|
+
readonly deleted_at?: string;
|
|
22771
22670
|
}
|
|
22772
22671
|
|
|
22773
22672
|
interface Invoice {
|
|
@@ -22951,10 +22850,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22951
22850
|
readonly values: string[];
|
|
22952
22851
|
}
|
|
22953
22852
|
|
|
22954
|
-
interface ItemForm {
|
|
22955
|
-
readonly amount?: number;
|
|
22956
|
-
}
|
|
22957
|
-
|
|
22958
22853
|
interface ItemFormImportRequest {
|
|
22959
22854
|
readonly discriminator: 'item_form_import_request';
|
|
22960
22855
|
readonly event_id: string;
|
|
@@ -23139,49 +23034,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23139
23034
|
readonly descriptive_asset_urls?: string;
|
|
23140
23035
|
}
|
|
23141
23036
|
|
|
23142
|
-
interface
|
|
23037
|
+
interface LabProjectSettings {
|
|
23143
23038
|
readonly id: string;
|
|
23144
|
-
readonly
|
|
23145
|
-
readonly
|
|
23146
|
-
readonly description?: string;
|
|
23147
|
-
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
23148
|
-
readonly added_on: string;
|
|
23039
|
+
readonly flow_lab_project_key: string;
|
|
23040
|
+
readonly terms?: io.flow.internal.v0.models.Acceptance;
|
|
23149
23041
|
}
|
|
23150
23042
|
|
|
23151
|
-
interface
|
|
23152
|
-
readonly
|
|
23153
|
-
readonly event_id: string;
|
|
23154
|
-
readonly timestamp: string;
|
|
23155
|
-
readonly id: string;
|
|
23043
|
+
interface LabProjectSettingsForm {
|
|
23044
|
+
readonly terms?: io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
23156
23045
|
}
|
|
23157
23046
|
|
|
23158
|
-
interface
|
|
23159
|
-
readonly
|
|
23160
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
23161
|
-
readonly description?: string;
|
|
23162
|
-
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
23163
|
-
readonly added_on: string;
|
|
23164
|
-
}
|
|
23165
|
-
|
|
23166
|
-
interface KonstantinItemUpserted {
|
|
23167
|
-
readonly discriminator: 'konstantin_item_upserted';
|
|
23168
|
-
readonly event_id: string;
|
|
23169
|
-
readonly timestamp: string;
|
|
23170
|
-
readonly item: io.flow.internal.v0.models.KonstantinItem;
|
|
23171
|
-
}
|
|
23172
|
-
|
|
23173
|
-
interface LabProjectSettings {
|
|
23174
|
-
readonly id: string;
|
|
23175
|
-
readonly flow_lab_project_key: string;
|
|
23176
|
-
readonly terms?: io.flow.internal.v0.models.Acceptance;
|
|
23177
|
-
}
|
|
23178
|
-
|
|
23179
|
-
interface LabProjectSettingsForm {
|
|
23180
|
-
readonly terms?: io.flow.internal.v0.models.LabProjectSettingsFormAcceptance;
|
|
23181
|
-
}
|
|
23182
|
-
|
|
23183
|
-
interface LabProjectSettingsFormAcceptance {
|
|
23184
|
-
readonly accepted: boolean;
|
|
23047
|
+
interface LabProjectSettingsFormAcceptance {
|
|
23048
|
+
readonly accepted: boolean;
|
|
23185
23049
|
}
|
|
23186
23050
|
|
|
23187
23051
|
interface LabelAliases {
|
|
@@ -24193,37 +24057,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24193
24057
|
readonly id: string;
|
|
24194
24058
|
}
|
|
24195
24059
|
|
|
24196
|
-
interface MatiasItem {
|
|
24197
|
-
readonly id: string;
|
|
24198
|
-
readonly number: string;
|
|
24199
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24200
|
-
readonly description?: string;
|
|
24201
|
-
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
24202
|
-
readonly added_on: string;
|
|
24203
|
-
}
|
|
24204
|
-
|
|
24205
|
-
interface MatiasItemDeleted {
|
|
24206
|
-
readonly discriminator: 'matias_item_deleted';
|
|
24207
|
-
readonly event_id: string;
|
|
24208
|
-
readonly timestamp: string;
|
|
24209
|
-
readonly id: string;
|
|
24210
|
-
}
|
|
24211
|
-
|
|
24212
|
-
interface MatiasItemForm {
|
|
24213
|
-
readonly number: string;
|
|
24214
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24215
|
-
readonly description?: string;
|
|
24216
|
-
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
24217
|
-
readonly added_on: string;
|
|
24218
|
-
}
|
|
24219
|
-
|
|
24220
|
-
interface MatiasItemUpserted {
|
|
24221
|
-
readonly discriminator: 'matias_item_upserted';
|
|
24222
|
-
readonly event_id: string;
|
|
24223
|
-
readonly timestamp: string;
|
|
24224
|
-
readonly item: io.flow.internal.v0.models.MatiasItem;
|
|
24225
|
-
}
|
|
24226
|
-
|
|
24227
24060
|
interface Merchant {
|
|
24228
24061
|
readonly id: string;
|
|
24229
24062
|
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
@@ -24246,6 +24079,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24246
24079
|
readonly id: string;
|
|
24247
24080
|
}
|
|
24248
24081
|
|
|
24082
|
+
interface MerchantDetails {
|
|
24083
|
+
readonly name: string;
|
|
24084
|
+
}
|
|
24085
|
+
|
|
24249
24086
|
interface MerchantFees {
|
|
24250
24087
|
readonly duty_guarantee: number;
|
|
24251
24088
|
readonly mor: number;
|
|
@@ -24373,77 +24210,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24373
24210
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
24374
24211
|
}
|
|
24375
24212
|
|
|
24376
|
-
interface MichaelyanItem {
|
|
24377
|
-
readonly id: string;
|
|
24378
|
-
readonly number: string;
|
|
24379
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24380
|
-
readonly description?: string;
|
|
24381
|
-
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
24382
|
-
readonly added_on: string;
|
|
24383
|
-
}
|
|
24384
|
-
|
|
24385
|
-
interface MichaelyanItemDeleted {
|
|
24386
|
-
readonly discriminator: 'michaelyan_item_deleted';
|
|
24387
|
-
readonly event_id: string;
|
|
24388
|
-
readonly timestamp: string;
|
|
24389
|
-
readonly id: string;
|
|
24390
|
-
}
|
|
24391
|
-
|
|
24392
|
-
interface MichaelyanItemForm {
|
|
24393
|
-
readonly number: string;
|
|
24394
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24395
|
-
readonly description?: string;
|
|
24396
|
-
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
24397
|
-
readonly added_on: string;
|
|
24398
|
-
}
|
|
24399
|
-
|
|
24400
|
-
interface MichaelyanItemUpserted {
|
|
24401
|
-
readonly discriminator: 'michaelyan_item_upserted';
|
|
24402
|
-
readonly event_id: string;
|
|
24403
|
-
readonly timestamp: string;
|
|
24404
|
-
readonly item: io.flow.internal.v0.models.MichaelyanItem;
|
|
24405
|
-
}
|
|
24406
|
-
|
|
24407
|
-
interface MiljenkoItem {
|
|
24408
|
-
readonly id: string;
|
|
24409
|
-
readonly number: string;
|
|
24410
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24411
|
-
readonly description?: string;
|
|
24412
|
-
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
24413
|
-
readonly added_on: string;
|
|
24414
|
-
}
|
|
24415
|
-
|
|
24416
|
-
interface MiljenkoItemDeleted {
|
|
24417
|
-
readonly discriminator: 'miljenko_item_deleted';
|
|
24418
|
-
readonly event_id: string;
|
|
24419
|
-
readonly timestamp: string;
|
|
24420
|
-
readonly id: string;
|
|
24421
|
-
}
|
|
24422
|
-
|
|
24423
|
-
interface MiljenkoItemForm {
|
|
24424
|
-
readonly number: string;
|
|
24425
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24426
|
-
readonly description?: string;
|
|
24427
|
-
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
24428
|
-
readonly added_on: string;
|
|
24429
|
-
}
|
|
24430
|
-
|
|
24431
|
-
interface MiljenkoItemUpserted {
|
|
24432
|
-
readonly discriminator: 'miljenko_item_upserted';
|
|
24433
|
-
readonly event_id: string;
|
|
24434
|
-
readonly timestamp: string;
|
|
24435
|
-
readonly item: io.flow.internal.v0.models.MiljenkoItem;
|
|
24436
|
-
}
|
|
24437
|
-
|
|
24438
|
-
interface MoneyPercentage {
|
|
24439
|
-
readonly discriminator: 'percentage';
|
|
24440
|
-
readonly percent: number;
|
|
24441
|
-
}
|
|
24442
|
-
|
|
24443
24213
|
interface NegativeDebitMetrics {
|
|
24444
24214
|
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24215
|
+
readonly first_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24445
24216
|
readonly second_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24446
24217
|
readonly third_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24218
|
+
readonly forth_plus_attempts: io.flow.internal.v0.models.AttemptStatistics;
|
|
24447
24219
|
}
|
|
24448
24220
|
|
|
24449
24221
|
interface NextBillingStatement {
|
|
@@ -24725,6 +24497,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24725
24497
|
readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
|
|
24726
24498
|
}
|
|
24727
24499
|
|
|
24500
|
+
interface OrderEditSummary {
|
|
24501
|
+
readonly external_order_edit_reference: string;
|
|
24502
|
+
readonly edited_at: string;
|
|
24503
|
+
}
|
|
24504
|
+
|
|
24728
24505
|
interface OrderFulfillmentDeleted {
|
|
24729
24506
|
readonly discriminator: 'order_fulfillment_deleted';
|
|
24730
24507
|
readonly event_id: string;
|
|
@@ -25186,6 +24963,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25186
24963
|
readonly product_count: number;
|
|
25187
24964
|
readonly restricted_product_count: number;
|
|
25188
24965
|
readonly last_order_submitted_at?: string;
|
|
24966
|
+
readonly matching_positive_keywords: string[];
|
|
24967
|
+
readonly product_categories: string[];
|
|
25189
24968
|
}
|
|
25190
24969
|
|
|
25191
24970
|
interface OrganizationMetadataDeleted {
|
|
@@ -25589,6 +25368,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25589
25368
|
readonly partner_organization_settings: io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
25590
25369
|
}
|
|
25591
25370
|
|
|
25371
|
+
interface PartnerTrackingSubscriptionDeleted {
|
|
25372
|
+
readonly discriminator: 'partner_tracking_subscription_deleted';
|
|
25373
|
+
readonly event_id: string;
|
|
25374
|
+
readonly timestamp: string;
|
|
25375
|
+
readonly id: string;
|
|
25376
|
+
}
|
|
25377
|
+
|
|
25378
|
+
interface PartnerTrackingSubscriptionUpserted {
|
|
25379
|
+
readonly discriminator: 'partner_tracking_subscription_upserted';
|
|
25380
|
+
readonly event_id: string;
|
|
25381
|
+
readonly timestamp: string;
|
|
25382
|
+
readonly partner_tracking_subscription: io.flow.partner.v0.models.PartnerTrackingSubscription;
|
|
25383
|
+
}
|
|
25384
|
+
|
|
25592
25385
|
interface Passphrase {
|
|
25593
25386
|
readonly id: string;
|
|
25594
25387
|
readonly tribe: io.flow.internal.v0.models.Tribe;
|
|
@@ -25751,6 +25544,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25751
25544
|
readonly payer_id: string;
|
|
25752
25545
|
}
|
|
25753
25546
|
|
|
25547
|
+
interface PaypalDisputeDeleted {
|
|
25548
|
+
readonly discriminator: 'paypal_dispute_deleted';
|
|
25549
|
+
readonly event_id: string;
|
|
25550
|
+
readonly timestamp: string;
|
|
25551
|
+
readonly id: string;
|
|
25552
|
+
}
|
|
25553
|
+
|
|
25554
|
+
interface PaypalDisputeUpserted {
|
|
25555
|
+
readonly discriminator: 'paypal_dispute_upserted';
|
|
25556
|
+
readonly event_id: string;
|
|
25557
|
+
readonly timestamp: string;
|
|
25558
|
+
readonly dispute: io.flow.internal.v0.models.PaypalInternalDispute;
|
|
25559
|
+
}
|
|
25560
|
+
|
|
25754
25561
|
interface PaypalExecutionDeleted {
|
|
25755
25562
|
readonly discriminator: 'paypal_execution_deleted';
|
|
25756
25563
|
readonly event_id: string;
|
|
@@ -25765,6 +25572,47 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25765
25572
|
readonly execution: io.flow.internal.v0.models.PaypalInternalExecution;
|
|
25766
25573
|
}
|
|
25767
25574
|
|
|
25575
|
+
interface PaypalInternalDispute {
|
|
25576
|
+
readonly id: string;
|
|
25577
|
+
readonly dispute_id: string;
|
|
25578
|
+
readonly create_time: string;
|
|
25579
|
+
readonly update_time: string;
|
|
25580
|
+
readonly buyer_transaction_id?: string;
|
|
25581
|
+
readonly seller_transaction_id?: string;
|
|
25582
|
+
readonly transaction_reference_id?: string;
|
|
25583
|
+
readonly transaction_create_time?: string;
|
|
25584
|
+
readonly transaction_status?: string;
|
|
25585
|
+
readonly transaction_gross_amount?: string;
|
|
25586
|
+
readonly transaction_gross_currency?: string;
|
|
25587
|
+
readonly transaction_invoice_number?: string;
|
|
25588
|
+
readonly transaction_custom?: string;
|
|
25589
|
+
readonly buyer_name?: string;
|
|
25590
|
+
readonly seller_merchant_id?: string;
|
|
25591
|
+
readonly seller_merchant_name?: string;
|
|
25592
|
+
readonly items?: any /*object*/[];
|
|
25593
|
+
readonly other_disputed_transactions?: any /*object*/[];
|
|
25594
|
+
readonly reason: string;
|
|
25595
|
+
readonly status: string;
|
|
25596
|
+
readonly dispute_amount: string;
|
|
25597
|
+
readonly dispute_currency: string;
|
|
25598
|
+
readonly dispute_outcome_code?: string;
|
|
25599
|
+
readonly dispute_outcome_amount_refunded?: string;
|
|
25600
|
+
readonly dispute_outcome_currency?: string;
|
|
25601
|
+
readonly dispute_life_cycle_stage: string;
|
|
25602
|
+
readonly dispute_channel: string;
|
|
25603
|
+
readonly messages?: any /*object*/[];
|
|
25604
|
+
readonly evidences?: any /*object*/[];
|
|
25605
|
+
readonly buyer_response_due_date?: string;
|
|
25606
|
+
readonly seller_response_due_date?: string;
|
|
25607
|
+
readonly offer?: any /*object*/;
|
|
25608
|
+
readonly communication_details?: any /*object*/;
|
|
25609
|
+
readonly links?: any /*object*/[];
|
|
25610
|
+
readonly previous_status?: string;
|
|
25611
|
+
readonly updated_by_user_id: string;
|
|
25612
|
+
readonly created_at: string;
|
|
25613
|
+
readonly updated_at: string;
|
|
25614
|
+
}
|
|
25615
|
+
|
|
25768
25616
|
interface PaypalInternalExecution {
|
|
25769
25617
|
readonly id: string;
|
|
25770
25618
|
readonly currency: string;
|
|
@@ -25995,52 +25843,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25995
25843
|
readonly quote_request: io.flow.internal.v0.models.QuoteRequest;
|
|
25996
25844
|
}
|
|
25997
25845
|
|
|
25998
|
-
interface PricingIndicator {
|
|
25999
|
-
readonly discriminator: 'pricing_indicator';
|
|
26000
|
-
readonly event_id: string;
|
|
26001
|
-
readonly timestamp: string;
|
|
26002
|
-
readonly organization: string;
|
|
26003
|
-
readonly published_from: io.flow.internal.v0.enums.ServiceName;
|
|
26004
|
-
readonly status: io.flow.internal.v0.enums.PricingIndicatorStatus;
|
|
26005
|
-
readonly event_identifier: string;
|
|
26006
|
-
readonly details: io.flow.internal.v0.models.Details;
|
|
26007
|
-
}
|
|
26008
|
-
|
|
26009
|
-
interface PricingIndicatorDynamo {
|
|
26010
|
-
readonly organization_id: string;
|
|
26011
|
-
readonly item_number: string;
|
|
26012
|
-
readonly experience_key: string;
|
|
26013
|
-
readonly upserted_at: string;
|
|
26014
|
-
readonly time_elapsed_since_upserted: number;
|
|
26015
|
-
readonly event_identifier: string;
|
|
26016
|
-
readonly status: io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
|
|
26017
|
-
readonly published_at: string;
|
|
26018
|
-
readonly published_from: io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
|
|
26019
|
-
readonly expiration_time_in_epoch: number;
|
|
26020
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
26021
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
26022
|
-
}
|
|
26023
|
-
|
|
26024
|
-
interface Principal {
|
|
26025
|
-
readonly type: io.flow.internal.v0.enums.PrincipalType;
|
|
26026
|
-
readonly amount: number;
|
|
26027
|
-
}
|
|
26028
|
-
|
|
26029
25846
|
interface PrioritizedCenterReference {
|
|
26030
25847
|
readonly center_key: string;
|
|
26031
25848
|
readonly position: number;
|
|
26032
25849
|
}
|
|
26033
25850
|
|
|
26034
|
-
interface ProcessedPaymentSummary {
|
|
26035
|
-
readonly type: io.flow.reference.v0.enums.PaymentMethodCapability;
|
|
26036
|
-
readonly amount: number;
|
|
26037
|
-
readonly currency: io.flow.reference.v0.models.Currency;
|
|
26038
|
-
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
26039
|
-
readonly card_issuer_country?: io.flow.reference.v0.models.Country;
|
|
26040
|
-
readonly shipping_address_country?: io.flow.reference.v0.models.Country;
|
|
26041
|
-
readonly billing_address_country?: io.flow.reference.v0.models.Country;
|
|
26042
|
-
}
|
|
26043
|
-
|
|
26044
25851
|
interface ProcessingTransaction {
|
|
26045
25852
|
readonly discriminator: 'processing_transaction';
|
|
26046
25853
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -26246,49 +26053,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26246
26053
|
readonly quantity: number;
|
|
26247
26054
|
}
|
|
26248
26055
|
|
|
26249
|
-
interface Profit {
|
|
26250
|
-
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
26251
|
-
readonly principal: io.flow.internal.v0.models.Principal;
|
|
26252
|
-
readonly revenue: io.flow.internal.v0.models.Revenue[];
|
|
26253
|
-
readonly costs: io.flow.internal.v0.models.Cost[];
|
|
26254
|
-
readonly amount: number;
|
|
26255
|
-
readonly splits: io.flow.internal.v0.models.ProfitSplit[];
|
|
26256
|
-
}
|
|
26257
|
-
|
|
26258
|
-
interface ProfitShare {
|
|
26259
|
-
readonly order: io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
26260
|
-
readonly profits: io.flow.internal.v0.models.Profit[];
|
|
26261
|
-
}
|
|
26262
|
-
|
|
26263
|
-
interface ProfitShareOrderReference {
|
|
26264
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
26265
|
-
readonly number: string;
|
|
26266
|
-
}
|
|
26267
|
-
|
|
26268
|
-
interface ProfitSharePlan {
|
|
26269
|
-
readonly order: io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
26270
|
-
readonly streams: io.flow.internal.v0.models.ProfitStream[];
|
|
26271
|
-
}
|
|
26272
|
-
|
|
26273
|
-
interface ProfitSplit {
|
|
26274
|
-
readonly rule: io.flow.internal.v0.models.ProfitSplitRule;
|
|
26275
|
-
readonly amount: number;
|
|
26276
|
-
}
|
|
26277
|
-
|
|
26278
|
-
interface ProfitSplitRule {
|
|
26279
|
-
readonly payee: io.flow.internal.v0.enums.Party;
|
|
26280
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
26281
|
-
}
|
|
26282
|
-
|
|
26283
|
-
interface ProfitStream {
|
|
26284
|
-
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
26285
|
-
readonly description: string;
|
|
26286
|
-
readonly principal: io.flow.internal.v0.enums.PrincipalType;
|
|
26287
|
-
readonly revenue: io.flow.internal.v0.models.RevenueRule[];
|
|
26288
|
-
readonly costs: io.flow.internal.v0.models.CostRule[];
|
|
26289
|
-
readonly splits: io.flow.internal.v0.models.ProfitSplitRule[];
|
|
26290
|
-
}
|
|
26291
|
-
|
|
26292
26056
|
interface ProofOfPostingExternallyFulfilled {
|
|
26293
26057
|
readonly discriminator: 'external';
|
|
26294
26058
|
readonly external_fulfillment_proof_id: string;
|
|
@@ -26847,6 +26611,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26847
26611
|
readonly from?: string;
|
|
26848
26612
|
readonly to?: string;
|
|
26849
26613
|
readonly payment_type?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
26614
|
+
readonly organizations?: io.flow.internal.v0.models.ReportOrganizationReference[];
|
|
26850
26615
|
readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
26851
26616
|
readonly recipients?: string[];
|
|
26852
26617
|
}
|
|
@@ -26860,6 +26625,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26860
26625
|
readonly order_number: string;
|
|
26861
26626
|
}
|
|
26862
26627
|
|
|
26628
|
+
interface ReportOrganizationReference {
|
|
26629
|
+
readonly organization_id: string;
|
|
26630
|
+
}
|
|
26631
|
+
|
|
26863
26632
|
interface ReportOwner {
|
|
26864
26633
|
readonly name: string;
|
|
26865
26634
|
}
|
|
@@ -26937,10 +26706,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26937
26706
|
readonly refund_records?: any /*object*/[];
|
|
26938
26707
|
}
|
|
26939
26708
|
|
|
26940
|
-
interface ReportingEntity {
|
|
26941
|
-
readonly id: string;
|
|
26942
|
-
}
|
|
26943
|
-
|
|
26944
26709
|
interface ReportingFulfillment {
|
|
26945
26710
|
readonly id: string;
|
|
26946
26711
|
readonly sequence_number: number;
|
|
@@ -27023,6 +26788,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27023
26788
|
readonly discount?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27024
26789
|
readonly total?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27025
26790
|
readonly tax_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
26791
|
+
readonly duty_refund?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
27026
26792
|
}
|
|
27027
26793
|
|
|
27028
26794
|
interface ReportingMonetaryValue {
|
|
@@ -27352,6 +27118,48 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27352
27118
|
readonly count: number;
|
|
27353
27119
|
}
|
|
27354
27120
|
|
|
27121
|
+
interface RestrictionsDailyops {
|
|
27122
|
+
readonly id: string;
|
|
27123
|
+
readonly report_date: string;
|
|
27124
|
+
readonly num_orgs_setup_complete_with_pvs: number;
|
|
27125
|
+
readonly num_products_setup_complete_with_pvs: number;
|
|
27126
|
+
readonly num_orgs_transacting_with_pvs: number;
|
|
27127
|
+
readonly num_products_transacting_with_pvs: number;
|
|
27128
|
+
readonly oldest_pv_product_date_setup_complete: string;
|
|
27129
|
+
readonly oldest_pv_product_date_transacting: string;
|
|
27130
|
+
readonly num_orgs_setup_complete_prs: number;
|
|
27131
|
+
readonly num_products_setup_complete_prs: number;
|
|
27132
|
+
readonly num_orgs_transacting_prs: number;
|
|
27133
|
+
readonly num_products_transacting_prs: number;
|
|
27134
|
+
readonly oldest_pr_product_date_setup_complete: string;
|
|
27135
|
+
readonly oldest_pr_date_transacting: string;
|
|
27136
|
+
readonly percent_products_reviewed_transacting: number;
|
|
27137
|
+
readonly num_pv_inflow_net_new: number;
|
|
27138
|
+
readonly num_pv_outflow_human_decisions: number;
|
|
27139
|
+
readonly num_pv_outflow_auto_review_decisions: number;
|
|
27140
|
+
readonly num_pv_outflow_side_effect_decisions: number;
|
|
27141
|
+
readonly num_pr_inflow_net_new: number;
|
|
27142
|
+
readonly num_pr_outflow_human_decisions: number;
|
|
27143
|
+
readonly num_pr_outflow_auto_review_decisions: number;
|
|
27144
|
+
readonly num_pr_outflow_side_effect_decisions: number;
|
|
27145
|
+
readonly num_pending_decisions_transacting: number;
|
|
27146
|
+
}
|
|
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
|
+
|
|
27355
27163
|
interface ResyncByDestinations {
|
|
27356
27164
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
27357
27165
|
}
|
|
@@ -27438,18 +27246,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27438
27246
|
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
27439
27247
|
}
|
|
27440
27248
|
|
|
27441
|
-
interface Revenue {
|
|
27442
|
-
readonly source: io.flow.internal.v0.models.RevenueRule;
|
|
27443
|
-
readonly amount: number;
|
|
27444
|
-
}
|
|
27445
|
-
|
|
27446
27249
|
interface RevenueRecord {
|
|
27447
27250
|
readonly id: string;
|
|
27448
27251
|
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
27449
27252
|
readonly parent?: io.flow.internal.v0.models.RecordReference;
|
|
27450
27253
|
readonly type: io.flow.internal.v0.enums.RevenueRecordType;
|
|
27451
27254
|
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
27452
|
-
readonly entity: io.flow.internal.v0.models.ReportingEntity;
|
|
27453
27255
|
readonly vendor: io.flow.internal.v0.models.ReportingVendor;
|
|
27454
27256
|
readonly currencies: io.flow.internal.v0.models.ReportingCurrencies;
|
|
27455
27257
|
readonly conversion_rate: io.flow.internal.v0.models.ReportingConversionRates;
|
|
@@ -27477,11 +27279,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27477
27279
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
27478
27280
|
}
|
|
27479
27281
|
|
|
27480
|
-
interface RevenueRule {
|
|
27481
|
-
readonly type: io.flow.internal.v0.enums.RevenueType;
|
|
27482
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
27483
|
-
}
|
|
27484
|
-
|
|
27485
27282
|
interface RoutingAccount {
|
|
27486
27283
|
readonly discriminator: 'routing_account';
|
|
27487
27284
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -27776,6 +27573,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27776
27573
|
readonly placeholder: string;
|
|
27777
27574
|
}
|
|
27778
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
|
+
|
|
27779
27619
|
interface ShopifyMarketsDiscrepancy {
|
|
27780
27620
|
readonly organization_id: string;
|
|
27781
27621
|
readonly count: number;
|
|
@@ -27824,6 +27664,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27824
27664
|
readonly shopify_markets_order: io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
27825
27665
|
}
|
|
27826
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
|
+
|
|
27827
27680
|
interface ShopifyMarketsOrderUpserted {
|
|
27828
27681
|
readonly discriminator: 'shopify_markets_order_upserted';
|
|
27829
27682
|
readonly event_id: string;
|
|
@@ -28121,6 +27974,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28121
27974
|
readonly send_inventory_update: boolean;
|
|
28122
27975
|
}
|
|
28123
27976
|
|
|
27977
|
+
interface ShopifyPartnerWebhook {
|
|
27978
|
+
readonly placeholder?: boolean;
|
|
27979
|
+
}
|
|
27980
|
+
|
|
27981
|
+
interface ShopifyPartnerWebhookRaw {
|
|
27982
|
+
readonly placeholder?: boolean;
|
|
27983
|
+
}
|
|
27984
|
+
|
|
28124
27985
|
interface ShopifyPaymentSummary {
|
|
28125
27986
|
readonly description: string;
|
|
28126
27987
|
readonly address?: io.flow.common.v0.models.Address;
|
|
@@ -28336,37 +28197,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28336
28197
|
readonly total: number;
|
|
28337
28198
|
}
|
|
28338
28199
|
|
|
28339
|
-
interface ShrutiDemoItem {
|
|
28340
|
-
readonly id: string;
|
|
28341
|
-
readonly number: string;
|
|
28342
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
28343
|
-
readonly description?: string;
|
|
28344
|
-
readonly type: io.flow.internal.v0.enums.ShrutiDemoType;
|
|
28345
|
-
readonly added_on: string;
|
|
28346
|
-
}
|
|
28347
|
-
|
|
28348
|
-
interface ShrutiDemoItemDeleted {
|
|
28349
|
-
readonly discriminator: 'shruti_demo_item_deleted';
|
|
28350
|
-
readonly event_id: string;
|
|
28351
|
-
readonly timestamp: string;
|
|
28352
|
-
readonly id: string;
|
|
28353
|
-
}
|
|
28354
|
-
|
|
28355
|
-
interface ShrutiDemoItemForm {
|
|
28356
|
-
readonly number: string;
|
|
28357
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
28358
|
-
readonly description?: string;
|
|
28359
|
-
readonly type: io.flow.internal.v0.enums.ShrutiDemoType;
|
|
28360
|
-
readonly added_on: string;
|
|
28361
|
-
}
|
|
28362
|
-
|
|
28363
|
-
interface ShrutiDemoItemUpserted {
|
|
28364
|
-
readonly discriminator: 'shruti_demo_item_upserted';
|
|
28365
|
-
readonly event_id: string;
|
|
28366
|
-
readonly timestamp: string;
|
|
28367
|
-
readonly item: io.flow.internal.v0.models.ShrutiDemoItem;
|
|
28368
|
-
}
|
|
28369
|
-
|
|
28370
28200
|
interface SimpleAccountReference {
|
|
28371
28201
|
readonly id: string;
|
|
28372
28202
|
}
|
|
@@ -28830,70 +28660,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28830
28660
|
readonly values: io.flow.internal.v0.models.LabelAliases[];
|
|
28831
28661
|
}
|
|
28832
28662
|
|
|
28833
|
-
interface SvitlanaItem {
|
|
28834
|
-
readonly id: string;
|
|
28835
|
-
readonly number: string;
|
|
28836
|
-
readonly amount: number;
|
|
28837
|
-
readonly description?: string;
|
|
28838
|
-
readonly type: io.flow.internal.v0.enums.SvitlanaType;
|
|
28839
|
-
readonly added_on: string;
|
|
28840
|
-
}
|
|
28841
|
-
|
|
28842
|
-
interface SvitlanaItemDeleted {
|
|
28843
|
-
readonly discriminator: 'svitlana_item_deleted';
|
|
28844
|
-
readonly event_id: string;
|
|
28845
|
-
readonly timestamp: string;
|
|
28846
|
-
readonly id: string;
|
|
28847
|
-
}
|
|
28848
|
-
|
|
28849
|
-
interface SvitlanaItemForm {
|
|
28850
|
-
readonly number: string;
|
|
28851
|
-
readonly amount: number;
|
|
28852
|
-
readonly description?: string;
|
|
28853
|
-
readonly type: io.flow.internal.v0.enums.SvitlanaType;
|
|
28854
|
-
}
|
|
28855
|
-
|
|
28856
|
-
interface SvitlanaItemUpserted {
|
|
28857
|
-
readonly discriminator: 'svitlana_item_upserted';
|
|
28858
|
-
readonly event_id: string;
|
|
28859
|
-
readonly timestamp: string;
|
|
28860
|
-
readonly item: io.flow.internal.v0.models.SvitlanaItem;
|
|
28861
|
-
}
|
|
28862
|
-
|
|
28863
|
-
interface SvitlanaTest {
|
|
28864
|
-
readonly name: string;
|
|
28865
|
-
}
|
|
28866
|
-
|
|
28867
|
-
interface TamItem {
|
|
28868
|
-
readonly id: string;
|
|
28869
|
-
readonly number: string;
|
|
28870
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
28871
|
-
readonly description?: string;
|
|
28872
|
-
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
28873
|
-
readonly added_on: string;
|
|
28874
|
-
}
|
|
28875
|
-
|
|
28876
|
-
interface TamItemDeleted {
|
|
28877
|
-
readonly discriminator: 'tam_item_deleted';
|
|
28878
|
-
readonly event_id: string;
|
|
28879
|
-
readonly timestamp: string;
|
|
28880
|
-
readonly id: string;
|
|
28881
|
-
}
|
|
28882
|
-
|
|
28883
|
-
interface TamItemForm {
|
|
28884
|
-
readonly number: string;
|
|
28885
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
28886
|
-
readonly description?: string;
|
|
28887
|
-
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
28888
|
-
}
|
|
28889
|
-
|
|
28890
|
-
interface TamItemUpserted {
|
|
28891
|
-
readonly discriminator: 'tam_item_upserted';
|
|
28892
|
-
readonly event_id: string;
|
|
28893
|
-
readonly timestamp: string;
|
|
28894
|
-
readonly item: io.flow.internal.v0.models.TamItem;
|
|
28895
|
-
}
|
|
28896
|
-
|
|
28897
28663
|
interface TariffCodeDuty {
|
|
28898
28664
|
readonly tariff_code: string;
|
|
28899
28665
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
@@ -29086,37 +28852,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29086
28852
|
readonly name: string;
|
|
29087
28853
|
}
|
|
29088
28854
|
|
|
29089
|
-
interface ThiagoItem {
|
|
29090
|
-
readonly id: string;
|
|
29091
|
-
readonly number: string;
|
|
29092
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
29093
|
-
readonly description?: string;
|
|
29094
|
-
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
29095
|
-
readonly added_on: string;
|
|
29096
|
-
}
|
|
29097
|
-
|
|
29098
|
-
interface ThiagoItemDeleted {
|
|
29099
|
-
readonly discriminator: 'thiago_item_deleted';
|
|
29100
|
-
readonly event_id: string;
|
|
29101
|
-
readonly timestamp: string;
|
|
29102
|
-
readonly id: string;
|
|
29103
|
-
}
|
|
29104
|
-
|
|
29105
|
-
interface ThiagoItemForm {
|
|
29106
|
-
readonly number: string;
|
|
29107
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
29108
|
-
readonly description?: string;
|
|
29109
|
-
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
29110
|
-
readonly added_on: string;
|
|
29111
|
-
}
|
|
29112
|
-
|
|
29113
|
-
interface ThiagoItemUpserted {
|
|
29114
|
-
readonly discriminator: 'thiago_item_upserted';
|
|
29115
|
-
readonly event_id: string;
|
|
29116
|
-
readonly timestamp: string;
|
|
29117
|
-
readonly item: io.flow.internal.v0.models.ThiagoItem;
|
|
29118
|
-
}
|
|
29119
|
-
|
|
29120
28855
|
interface ThirdPartyLogisticsPartner {
|
|
29121
28856
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
29122
28857
|
readonly warehouse_url?: string;
|
|
@@ -29252,6 +28987,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29252
28987
|
readonly job: io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
29253
28988
|
}
|
|
29254
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
|
+
|
|
29255
29015
|
interface TrackingDebugForceTransitForm {
|
|
29256
29016
|
readonly description: string;
|
|
29257
29017
|
}
|
|
@@ -29376,14 +29136,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29376
29136
|
readonly credentials: io.flow.internal.v0.unions.CarrierCredentials;
|
|
29377
29137
|
}
|
|
29378
29138
|
|
|
29379
|
-
interface TrackingRequestUpserted {
|
|
29380
|
-
readonly discriminator: 'tracking_request_upserted';
|
|
29381
|
-
readonly event_id: string;
|
|
29382
|
-
readonly timestamp: string;
|
|
29383
|
-
readonly organization: string;
|
|
29384
|
-
readonly tracking_request: io.flow.internal.v0.models.TrackingRequest;
|
|
29385
|
-
}
|
|
29386
|
-
|
|
29387
29139
|
interface TrackingResponse {
|
|
29388
29140
|
readonly carrier: string;
|
|
29389
29141
|
readonly carrier_tracking_number: string;
|
|
@@ -29391,12 +29143,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29391
29143
|
readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
|
|
29392
29144
|
}
|
|
29393
29145
|
|
|
29394
|
-
interface
|
|
29395
|
-
readonly
|
|
29146
|
+
interface TrackingSubscription {
|
|
29147
|
+
readonly id: string;
|
|
29148
|
+
readonly organization_id: string;
|
|
29149
|
+
readonly carrier_tracking_number: string;
|
|
29150
|
+
readonly carrier_id: string;
|
|
29151
|
+
readonly label_id: string;
|
|
29152
|
+
readonly label_origin: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
29153
|
+
readonly label_destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
29154
|
+
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
29155
|
+
readonly events: io.flow.tracking.v0.models.TrackingEvent[];
|
|
29156
|
+
readonly external_reference_key?: string;
|
|
29157
|
+
readonly external_reference_source?: string;
|
|
29158
|
+
}
|
|
29159
|
+
|
|
29160
|
+
interface TrackingSubscriptionDeleted {
|
|
29161
|
+
readonly discriminator: 'tracking_subscription_deleted';
|
|
29396
29162
|
readonly event_id: string;
|
|
29397
29163
|
readonly timestamp: string;
|
|
29398
|
-
readonly
|
|
29399
|
-
|
|
29164
|
+
readonly id: string;
|
|
29165
|
+
}
|
|
29166
|
+
|
|
29167
|
+
interface TrackingSubscriptionUpserted {
|
|
29168
|
+
readonly discriminator: 'tracking_subscription_upserted';
|
|
29169
|
+
readonly event_id: string;
|
|
29170
|
+
readonly timestamp: string;
|
|
29171
|
+
readonly tracking_subscription: io.flow.internal.v0.models.TrackingSubscription;
|
|
29400
29172
|
}
|
|
29401
29173
|
|
|
29402
29174
|
interface TrackingUpserted {
|
|
@@ -29806,8 +29578,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29806
29578
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
29807
29579
|
| io.flow.internal.v0.models.AdyenDisputeUpserted
|
|
29808
29580
|
| io.flow.internal.v0.models.AdyenDisputeDeleted
|
|
29809
|
-
| io.flow.internal.v0.models.IndexAssignmentUpserted
|
|
29810
|
-
| io.flow.internal.v0.models.IndexAssignmentDeleted
|
|
29811
29581
|
| io.flow.internal.v0.models.FulfillmentUpserted
|
|
29812
29582
|
| io.flow.internal.v0.models.FulfillmentDeleted
|
|
29813
29583
|
| io.flow.internal.v0.models.MerchantUpserted
|
|
@@ -29908,13 +29678,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29908
29678
|
| io.flow.internal.v0.models.DisputeUpserted
|
|
29909
29679
|
| io.flow.internal.v0.models.DisputeDeleted
|
|
29910
29680
|
| io.flow.internal.v0.models.DutyRatesPublishedV2
|
|
29911
|
-
| io.flow.internal.v0.models.DutyRateRequest
|
|
29912
|
-
| io.flow.internal.v0.models.DutyRateBulkRequest
|
|
29913
|
-
| io.flow.internal.v0.models.DutyRawUpserted
|
|
29914
|
-
| io.flow.internal.v0.models.DutyRawBulkUpserted
|
|
29915
|
-
| io.flow.internal.v0.models.DutyRateUpserted
|
|
29916
|
-
| io.flow.internal.v0.models.DutyRateResponse
|
|
29917
|
-
| io.flow.internal.v0.models.DutyRateBulkResponse
|
|
29918
29681
|
| io.flow.internal.v0.models.ItemSalesMarginDeleted
|
|
29919
29682
|
| io.flow.internal.v0.models.ItemSalesMarginUpserted
|
|
29920
29683
|
| io.flow.internal.v0.models.OrderAttributeDeleted
|
|
@@ -29986,7 +29749,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
29986
29749
|
| io.flow.internal.v0.models.HarmonizationCodesImport
|
|
29987
29750
|
| io.flow.internal.v0.models.ItemClassificationCreated
|
|
29988
29751
|
| io.flow.internal.v0.models.HarmonizeFullyRequestV2
|
|
29989
|
-
| io.flow.internal.v0.models.HybrisCatalogItemsImportRequest
|
|
29990
29752
|
| io.flow.internal.v0.models.ImportCompleted
|
|
29991
29753
|
| io.flow.internal.v0.models.ImportFailed
|
|
29992
29754
|
| io.flow.internal.v0.models.TimeToClassifyUpserted
|
|
@@ -30050,6 +29812,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30050
29812
|
| io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted
|
|
30051
29813
|
| io.flow.internal.v0.models.UnassignedMerchantGuidUpserted
|
|
30052
29814
|
| io.flow.internal.v0.models.UnassignedMerchantGuidDeleted
|
|
29815
|
+
| io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted
|
|
29816
|
+
| io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted
|
|
30053
29817
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
30054
29818
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
30055
29819
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -30076,7 +29840,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30076
29840
|
| io.flow.internal.v0.models.PaypalExecutionUpserted
|
|
30077
29841
|
| io.flow.internal.v0.models.PaypalRefundDeleted
|
|
30078
29842
|
| io.flow.internal.v0.models.PaypalRefundUpserted
|
|
30079
|
-
| io.flow.internal.v0.models.
|
|
29843
|
+
| io.flow.internal.v0.models.PaypalDisputeUpserted
|
|
29844
|
+
| io.flow.internal.v0.models.PaypalDisputeDeleted
|
|
30080
29845
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted
|
|
30081
29846
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted
|
|
30082
29847
|
| io.flow.internal.v0.models.OrderRatesPublishedV3
|
|
@@ -30101,6 +29866,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30101
29866
|
| io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted
|
|
30102
29867
|
| io.flow.internal.v0.models.ScreeningStatusChangeUpserted
|
|
30103
29868
|
| io.flow.internal.v0.models.ScreeningStatusChangeDeleted
|
|
29869
|
+
| io.flow.internal.v0.models.RestrictionsDailyopsUpserted
|
|
29870
|
+
| io.flow.internal.v0.models.RestrictionsDailyopsDeleted
|
|
30104
29871
|
| io.flow.internal.v0.models.ShopifyShopUpserted
|
|
30105
29872
|
| io.flow.internal.v0.models.ShopifyShopDeleted
|
|
30106
29873
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
|
|
@@ -30123,6 +29890,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30123
29890
|
| io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
30124
29891
|
| io.flow.internal.v0.models.ShopifyProductBundleUpserted
|
|
30125
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
|
|
30126
29897
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
30127
29898
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
30128
29899
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
@@ -30139,28 +29910,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30139
29910
|
| io.flow.internal.v0.models.StripeDisputeDeleted
|
|
30140
29911
|
| io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
|
|
30141
29912
|
| io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
|
|
30142
|
-
| io.flow.internal.v0.models.SvitlanaItemUpserted
|
|
30143
|
-
| io.flow.internal.v0.models.SvitlanaItemDeleted
|
|
30144
|
-
| io.flow.internal.v0.models.ColmItemUpserted
|
|
30145
|
-
| io.flow.internal.v0.models.ColmItemDeleted
|
|
30146
|
-
| io.flow.internal.v0.models.EldarItemUpserted
|
|
30147
|
-
| io.flow.internal.v0.models.EldarItemDeleted
|
|
30148
|
-
| io.flow.internal.v0.models.HarinathItemUpserted
|
|
30149
|
-
| io.flow.internal.v0.models.HarinathItemDeleted
|
|
30150
|
-
| io.flow.internal.v0.models.KonstantinItemUpserted
|
|
30151
|
-
| io.flow.internal.v0.models.KonstantinItemDeleted
|
|
30152
|
-
| io.flow.internal.v0.models.MatiasItemUpserted
|
|
30153
|
-
| io.flow.internal.v0.models.MatiasItemDeleted
|
|
30154
|
-
| io.flow.internal.v0.models.MichaelyanItemUpserted
|
|
30155
|
-
| io.flow.internal.v0.models.MichaelyanItemDeleted
|
|
30156
|
-
| io.flow.internal.v0.models.MiljenkoItemUpserted
|
|
30157
|
-
| io.flow.internal.v0.models.MiljenkoItemDeleted
|
|
30158
|
-
| io.flow.internal.v0.models.ShrutiDemoItemUpserted
|
|
30159
|
-
| io.flow.internal.v0.models.ShrutiDemoItemDeleted
|
|
30160
|
-
| io.flow.internal.v0.models.TamItemUpserted
|
|
30161
|
-
| io.flow.internal.v0.models.TamItemDeleted
|
|
30162
|
-
| io.flow.internal.v0.models.ThiagoItemUpserted
|
|
30163
|
-
| io.flow.internal.v0.models.ThiagoItemDeleted
|
|
30164
29913
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
30165
29914
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
30166
29915
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -30173,10 +29922,12 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30173
29922
|
| io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted
|
|
30174
29923
|
| io.flow.internal.v0.models.TrackingAssuranceJobUpserted
|
|
30175
29924
|
| io.flow.internal.v0.models.TrackingAssuranceJobDeleted
|
|
29925
|
+
| io.flow.internal.v0.models.TrackingSubscriptionUpserted
|
|
29926
|
+
| io.flow.internal.v0.models.TrackingSubscriptionDeleted
|
|
29927
|
+
| io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted
|
|
29928
|
+
| io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted
|
|
30176
29929
|
| io.flow.internal.v0.models.TrackingLabelDimensionsUpserted
|
|
30177
29930
|
| io.flow.internal.v0.models.TrackingLabelDimensionsDeleted
|
|
30178
|
-
| io.flow.internal.v0.models.TrackingRequestUpserted
|
|
30179
|
-
| io.flow.internal.v0.models.TrackingResponseUpserted
|
|
30180
29931
|
| io.flow.internal.v0.models.UserUpsertedV2
|
|
30181
29932
|
| io.flow.internal.v0.models.UserDeletedV2;
|
|
30182
29933
|
type ExplicitStatementForm =
|
|
@@ -30265,7 +30016,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30265
30016
|
| io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary
|
|
30266
30017
|
| io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary
|
|
30267
30018
|
| io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
|
|
30268
|
-
type MoneyRule = io.flow.internal.v0.models.MoneyPercentage;
|
|
30269
30019
|
type OptinPromptDisplay =
|
|
30270
30020
|
io.flow.internal.v0.models.OptinPromptCheckoutDisplay;
|
|
30271
30021
|
type OrderActionForm =
|
|
@@ -30443,6 +30193,8 @@ export type AccountSettingsUpserted =
|
|
|
30443
30193
|
io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
30444
30194
|
export type AccountSource = io.flow.internal.v0.models.AccountSource;
|
|
30445
30195
|
export type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
|
|
30196
|
+
export type AccountStatisticsAdditionalBalances =
|
|
30197
|
+
io.flow.internal.v0.models.AccountStatisticsAdditionalBalances;
|
|
30446
30198
|
export type AccountSummary = io.flow.internal.v0.models.AccountSummary;
|
|
30447
30199
|
export type AccountTransactionsExportRequest =
|
|
30448
30200
|
io.flow.internal.v0.models.AccountTransactionsExportRequest;
|
|
@@ -30575,8 +30327,6 @@ export type AlertFailureSummaryDetail =
|
|
|
30575
30327
|
export type AlertImportSummary = io.flow.internal.v0.models.AlertImportSummary;
|
|
30576
30328
|
export type AlertRequeueSummary =
|
|
30577
30329
|
io.flow.internal.v0.models.AlertRequeueSummary;
|
|
30578
|
-
export type AlgoliaIndexAssignment =
|
|
30579
|
-
io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
30580
30330
|
export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
30581
30331
|
export type AllOrganizationsMembership =
|
|
30582
30332
|
io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
@@ -30616,8 +30366,10 @@ export type AuthorizedShippingCharge =
|
|
|
30616
30366
|
io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
30617
30367
|
export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
30618
30368
|
export type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
30369
|
+
export type BankAccount = io.flow.internal.v0.models.BankAccount;
|
|
30619
30370
|
export type BankAccountReference =
|
|
30620
30371
|
io.flow.internal.v0.models.BankAccountReference;
|
|
30372
|
+
export type BankAccountStatus = io.flow.internal.v0.enums.BankAccountStatus;
|
|
30621
30373
|
export type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
30622
30374
|
export type BankPaymentDeletedV2 =
|
|
30623
30375
|
io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
@@ -31099,10 +30851,8 @@ export type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
|
|
|
31099
30851
|
export type ClothingAgeClassification =
|
|
31100
30852
|
io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
31101
30853
|
export type ColmItem = io.flow.internal.v0.models.ColmItem;
|
|
31102
|
-
export type ColmItemDeleted = io.flow.internal.v0.models.ColmItemDeleted;
|
|
31103
30854
|
export type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
|
|
31104
30855
|
export type ColmItemType = io.flow.internal.v0.enums.ColmItemType;
|
|
31105
|
-
export type ColmItemUpserted = io.flow.internal.v0.models.ColmItemUpserted;
|
|
31106
30856
|
export type CommercialInvoiceComparison =
|
|
31107
30857
|
io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
31108
30858
|
export type CommercialInvoiceInternal =
|
|
@@ -31140,9 +30890,6 @@ export type ContentSchemaSummary =
|
|
|
31140
30890
|
export type ContentStatus = io.flow.internal.v0.enums.ContentStatus;
|
|
31141
30891
|
export type ContentType = io.flow.internal.v0.enums.ContentType;
|
|
31142
30892
|
export type ContentTypeCast = io.flow.internal.v0.enums.ContentTypeCast;
|
|
31143
|
-
export type Cost = io.flow.internal.v0.models.Cost;
|
|
31144
|
-
export type CostRule = io.flow.internal.v0.models.CostRule;
|
|
31145
|
-
export type CostType = io.flow.internal.v0.enums.CostType;
|
|
31146
30893
|
export type CountryPickerCountry =
|
|
31147
30894
|
io.flow.internal.v0.models.CountryPickerCountry;
|
|
31148
30895
|
export type CountryPickerCountryData =
|
|
@@ -31200,6 +30947,8 @@ export type DebugAccountingTransaction =
|
|
|
31200
30947
|
io.flow.internal.v0.models.DebugAccountingTransaction;
|
|
31201
30948
|
export type DebugAccountingTransactionType =
|
|
31202
30949
|
io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
30950
|
+
export type DebugBankingDetails =
|
|
30951
|
+
io.flow.internal.v0.models.DebugBankingDetails;
|
|
31203
30952
|
export type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
31204
30953
|
export type DebugFulfillmentDelta =
|
|
31205
30954
|
io.flow.internal.v0.models.DebugFulfillmentDelta;
|
|
@@ -31251,7 +31000,6 @@ export type DeliveredDutyPreferenceForm =
|
|
|
31251
31000
|
export type DeminimisAdjustmentType =
|
|
31252
31001
|
io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
31253
31002
|
export type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
31254
|
-
export type Details = io.flow.internal.v0.models.Details;
|
|
31255
31003
|
export type Dhl = io.flow.internal.v0.models.Dhl;
|
|
31256
31004
|
export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
31257
31005
|
export type Dict = io.flow.internal.v0.models.Dict;
|
|
@@ -31303,6 +31051,7 @@ export type DisputeOrganizationReference =
|
|
|
31303
31051
|
export type DisputeOverrideUpdateForm =
|
|
31304
31052
|
io.flow.internal.v0.models.DisputeOverrideUpdateForm;
|
|
31305
31053
|
export type DisputeProcessor = io.flow.internal.v0.enums.DisputeProcessor;
|
|
31054
|
+
export type DisputeRecord = io.flow.internal.v0.models.DisputeRecord;
|
|
31306
31055
|
export type DisputeReportingCategory =
|
|
31307
31056
|
io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
31308
31057
|
export type DisputeStatus = io.flow.internal.v0.enums.DisputeStatus;
|
|
@@ -31322,28 +31071,17 @@ export type DutyExemptItemTypes = io.flow.internal.v0.enums.DutyExemptItemTypes;
|
|
|
31322
31071
|
export type DutyExpression = io.flow.internal.v0.unions.DutyExpression;
|
|
31323
31072
|
export type DutyInternalRate = io.flow.internal.v0.models.DutyInternalRate;
|
|
31324
31073
|
export type DutyRate = io.flow.internal.v0.models.DutyRate;
|
|
31325
|
-
export type DutyRateBulkRequest =
|
|
31326
|
-
io.flow.internal.v0.models.DutyRateBulkRequest;
|
|
31327
|
-
export type DutyRateBulkResponse =
|
|
31328
|
-
io.flow.internal.v0.models.DutyRateBulkResponse;
|
|
31329
|
-
export type DutyRateContext = io.flow.internal.v0.models.DutyRateContext;
|
|
31330
31074
|
export type DutyRateItemSummary =
|
|
31331
31075
|
io.flow.internal.v0.models.DutyRateItemSummary;
|
|
31332
|
-
export type DutyRateRequest = io.flow.internal.v0.models.DutyRateRequest;
|
|
31333
|
-
export type DutyRateResponse = io.flow.internal.v0.models.DutyRateResponse;
|
|
31334
31076
|
export type DutyRateSource = io.flow.internal.v0.enums.DutyRateSource;
|
|
31335
31077
|
export type DutyRateSummary = io.flow.internal.v0.models.DutyRateSummary;
|
|
31336
31078
|
export type DutyRateUnitOfMeasure =
|
|
31337
31079
|
io.flow.internal.v0.enums.DutyRateUnitOfMeasure;
|
|
31338
|
-
export type DutyRateUpserted = io.flow.internal.v0.models.DutyRateUpserted;
|
|
31339
31080
|
export type DutyRatesDataSummary =
|
|
31340
31081
|
io.flow.internal.v0.models.DutyRatesDataSummary;
|
|
31341
31082
|
export type DutyRatesPublishedV2 =
|
|
31342
31083
|
io.flow.internal.v0.models.DutyRatesPublishedV2;
|
|
31343
31084
|
export type DutyRaw = io.flow.internal.v0.models.DutyRaw;
|
|
31344
|
-
export type DutyRawBulkUpserted =
|
|
31345
|
-
io.flow.internal.v0.models.DutyRawBulkUpserted;
|
|
31346
|
-
export type DutyRawUpserted = io.flow.internal.v0.models.DutyRawUpserted;
|
|
31347
31085
|
export type DutySelectionRule = io.flow.internal.v0.enums.DutySelectionRule;
|
|
31348
31086
|
export type DutySimpleExpression =
|
|
31349
31087
|
io.flow.internal.v0.models.DutySimpleExpression;
|
|
@@ -31355,11 +31093,6 @@ export type DutyTransactionDeleted =
|
|
|
31355
31093
|
export type DutyTransactionType = io.flow.internal.v0.enums.DutyTransactionType;
|
|
31356
31094
|
export type DutyTransactionUpserted =
|
|
31357
31095
|
io.flow.internal.v0.models.DutyTransactionUpserted;
|
|
31358
|
-
export type EldarItem = io.flow.internal.v0.models.EldarItem;
|
|
31359
|
-
export type EldarItemDeleted = io.flow.internal.v0.models.EldarItemDeleted;
|
|
31360
|
-
export type EldarItemForm = io.flow.internal.v0.models.EldarItemForm;
|
|
31361
|
-
export type EldarItemType = io.flow.internal.v0.enums.EldarItemType;
|
|
31362
|
-
export type EldarItemUpserted = io.flow.internal.v0.models.EldarItemUpserted;
|
|
31363
31096
|
export type EmailForm = io.flow.internal.v0.models.EmailForm;
|
|
31364
31097
|
export type EmailModificationForm =
|
|
31365
31098
|
io.flow.internal.v0.models.EmailModificationForm;
|
|
@@ -31674,13 +31407,6 @@ export type GoogleShoppingSetting =
|
|
|
31674
31407
|
io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
31675
31408
|
export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
31676
31409
|
export type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
31677
|
-
export type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
31678
|
-
export type HarinathItemDeleted =
|
|
31679
|
-
io.flow.internal.v0.models.HarinathItemDeleted;
|
|
31680
|
-
export type HarinathItemForm = io.flow.internal.v0.models.HarinathItemForm;
|
|
31681
|
-
export type HarinathItemType = io.flow.internal.v0.enums.HarinathItemType;
|
|
31682
|
-
export type HarinathItemUpserted =
|
|
31683
|
-
io.flow.internal.v0.models.HarinathItemUpserted;
|
|
31684
31410
|
export type HarmonizationClassificationStatisticsData =
|
|
31685
31411
|
io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
31686
31412
|
export type HarmonizationClassificationStatisticsPublished =
|
|
@@ -31717,16 +31443,8 @@ export type Href = io.flow.internal.v0.models.Href;
|
|
|
31717
31443
|
export type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
31718
31444
|
export type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
31719
31445
|
export type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
31720
|
-
export type HybrisCatalogItemsImportRequest =
|
|
31721
|
-
io.flow.internal.v0.models.HybrisCatalogItemsImportRequest;
|
|
31722
|
-
export type HybrisCatalogItemsImportRequestData =
|
|
31723
|
-
io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
31724
31446
|
export type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
|
|
31725
31447
|
export type ImportFailed = io.flow.internal.v0.models.ImportFailed;
|
|
31726
|
-
export type IndexAssignmentDeleted =
|
|
31727
|
-
io.flow.internal.v0.models.IndexAssignmentDeleted;
|
|
31728
|
-
export type IndexAssignmentUpserted =
|
|
31729
|
-
io.flow.internal.v0.models.IndexAssignmentUpserted;
|
|
31730
31448
|
export type IndexTaskType = io.flow.internal.v0.unions.IndexTaskType;
|
|
31731
31449
|
export type InlineAuthorizationParameters =
|
|
31732
31450
|
io.flow.internal.v0.unions.InlineAuthorizationParameters;
|
|
@@ -31777,16 +31495,8 @@ export type InternalTransactionDetailsCard =
|
|
|
31777
31495
|
export type InvalidCheckoutData =
|
|
31778
31496
|
io.flow.internal.v0.models.InvalidCheckoutData;
|
|
31779
31497
|
export type Invariant = io.flow.internal.v0.models.Invariant;
|
|
31780
|
-
export type InventoryCheckService =
|
|
31781
|
-
io.flow.internal.v0.enums.InventoryCheckService;
|
|
31782
31498
|
export type InventoryItemWrapper =
|
|
31783
31499
|
io.flow.internal.v0.models.InventoryItemWrapper;
|
|
31784
|
-
export type InventoryOrganizationSettings =
|
|
31785
|
-
io.flow.internal.v0.models.InventoryOrganizationSettings;
|
|
31786
|
-
export type InventoryOrganizationSettingsForm =
|
|
31787
|
-
io.flow.internal.v0.models.InventoryOrganizationSettingsForm;
|
|
31788
|
-
export type InventoryReservation =
|
|
31789
|
-
io.flow.internal.v0.enums.InventoryReservation;
|
|
31790
31500
|
export type Invoice = io.flow.internal.v0.models.Invoice;
|
|
31791
31501
|
export type InvoiceInfoForm = io.flow.internal.v0.models.InvoiceInfoForm;
|
|
31792
31502
|
export type InvoiceLine = io.flow.internal.v0.models.InvoiceLine;
|
|
@@ -31820,7 +31530,6 @@ export type ItemFilterValueResponse =
|
|
|
31820
31530
|
io.flow.internal.v0.models.ItemFilterValueResponse;
|
|
31821
31531
|
export type ItemFilterValuesForm =
|
|
31822
31532
|
io.flow.internal.v0.models.ItemFilterValuesForm;
|
|
31823
|
-
export type ItemForm = io.flow.internal.v0.models.ItemForm;
|
|
31824
31533
|
export type ItemFormImportRequest =
|
|
31825
31534
|
io.flow.internal.v0.models.ItemFormImportRequest;
|
|
31826
31535
|
export type ItemHarmonization = io.flow.internal.v0.models.ItemHarmonization;
|
|
@@ -31862,13 +31571,6 @@ export type KlarnaAuthorizationParameters =
|
|
|
31862
31571
|
io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
31863
31572
|
export type KlarnaPaymentMethodCategory =
|
|
31864
31573
|
io.flow.internal.v0.models.KlarnaPaymentMethodCategory;
|
|
31865
|
-
export type KonstantinItem = io.flow.internal.v0.models.KonstantinItem;
|
|
31866
|
-
export type KonstantinItemDeleted =
|
|
31867
|
-
io.flow.internal.v0.models.KonstantinItemDeleted;
|
|
31868
|
-
export type KonstantinItemForm = io.flow.internal.v0.models.KonstantinItemForm;
|
|
31869
|
-
export type KonstantinItemType = io.flow.internal.v0.enums.KonstantinItemType;
|
|
31870
|
-
export type KonstantinItemUpserted =
|
|
31871
|
-
io.flow.internal.v0.models.KonstantinItemUpserted;
|
|
31872
31574
|
export type LabProjectSettings = io.flow.internal.v0.models.LabProjectSettings;
|
|
31873
31575
|
export type LabProjectSettingsForm =
|
|
31874
31576
|
io.flow.internal.v0.models.LabProjectSettingsForm;
|
|
@@ -32150,18 +31852,13 @@ export type MarketingGatewaySupportedChannelDetails =
|
|
|
32150
31852
|
export type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
32151
31853
|
export type MarketsOrderSummary =
|
|
32152
31854
|
io.flow.internal.v0.models.MarketsOrderSummary;
|
|
32153
|
-
export type MatiasItem = io.flow.internal.v0.models.MatiasItem;
|
|
32154
|
-
export type MatiasItemDeleted = io.flow.internal.v0.models.MatiasItemDeleted;
|
|
32155
|
-
export type MatiasItemForm = io.flow.internal.v0.models.MatiasItemForm;
|
|
32156
|
-
export type MatiasItemType = io.flow.internal.v0.enums.MatiasItemType;
|
|
32157
|
-
export type MatiasItemUpserted = io.flow.internal.v0.models.MatiasItemUpserted;
|
|
32158
31855
|
export type Merchant = io.flow.internal.v0.models.Merchant;
|
|
32159
31856
|
export type MerchantApplicationSummaries =
|
|
32160
31857
|
io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
32161
31858
|
export type MerchantApplicationSummary =
|
|
32162
31859
|
io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
32163
|
-
export type MerchantCohort = io.flow.internal.v0.enums.MerchantCohort;
|
|
32164
31860
|
export type MerchantDeleted = io.flow.internal.v0.models.MerchantDeleted;
|
|
31861
|
+
export type MerchantDetails = io.flow.internal.v0.models.MerchantDetails;
|
|
32165
31862
|
export type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
32166
31863
|
export type MerchantGuidAssignment =
|
|
32167
31864
|
io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
@@ -32188,23 +31885,7 @@ export type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
|
32188
31885
|
export type MetadataProposition =
|
|
32189
31886
|
io.flow.internal.v0.models.MetadataProposition;
|
|
32190
31887
|
export type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
32191
|
-
export type MichaelyanItem = io.flow.internal.v0.models.MichaelyanItem;
|
|
32192
|
-
export type MichaelyanItemDeleted =
|
|
32193
|
-
io.flow.internal.v0.models.MichaelyanItemDeleted;
|
|
32194
|
-
export type MichaelyanItemForm = io.flow.internal.v0.models.MichaelyanItemForm;
|
|
32195
|
-
export type MichaelyanItemType = io.flow.internal.v0.enums.MichaelyanItemType;
|
|
32196
|
-
export type MichaelyanItemUpserted =
|
|
32197
|
-
io.flow.internal.v0.models.MichaelyanItemUpserted;
|
|
32198
|
-
export type MiljenkoItem = io.flow.internal.v0.models.MiljenkoItem;
|
|
32199
|
-
export type MiljenkoItemDeleted =
|
|
32200
|
-
io.flow.internal.v0.models.MiljenkoItemDeleted;
|
|
32201
|
-
export type MiljenkoItemForm = io.flow.internal.v0.models.MiljenkoItemForm;
|
|
32202
|
-
export type MiljenkoItemType = io.flow.internal.v0.enums.MiljenkoItemType;
|
|
32203
|
-
export type MiljenkoItemUpserted =
|
|
32204
|
-
io.flow.internal.v0.models.MiljenkoItemUpserted;
|
|
32205
31888
|
export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
32206
|
-
export type MoneyPercentage = io.flow.internal.v0.models.MoneyPercentage;
|
|
32207
|
-
export type MoneyRule = io.flow.internal.v0.unions.MoneyRule;
|
|
32208
31889
|
export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
32209
31890
|
export type NegativeDebitMetrics =
|
|
32210
31891
|
io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
@@ -32299,6 +31980,7 @@ export type OrderCombinedShipmentForm =
|
|
|
32299
31980
|
export type OrderCombinedShipmentUpserted =
|
|
32300
31981
|
io.flow.internal.v0.models.OrderCombinedShipmentUpserted;
|
|
32301
31982
|
export type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
31983
|
+
export type OrderEditSummary = io.flow.internal.v0.models.OrderEditSummary;
|
|
32302
31984
|
export type OrderFulfillmentDeleted =
|
|
32303
31985
|
io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
32304
31986
|
export type OrderFulfillmentUpserted =
|
|
@@ -32533,7 +32215,10 @@ export type PartnerOrganizationSettingsForm =
|
|
|
32533
32215
|
io.flow.internal.v0.models.PartnerOrganizationSettingsForm;
|
|
32534
32216
|
export type PartnerOrganizationSettingsUpserted =
|
|
32535
32217
|
io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted;
|
|
32536
|
-
export type
|
|
32218
|
+
export type PartnerTrackingSubscriptionDeleted =
|
|
32219
|
+
io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted;
|
|
32220
|
+
export type PartnerTrackingSubscriptionUpserted =
|
|
32221
|
+
io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted;
|
|
32537
32222
|
export type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
32538
32223
|
export type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
32539
32224
|
export type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
@@ -32576,10 +32261,16 @@ export type PaypalAuthenticationForm =
|
|
|
32576
32261
|
io.flow.internal.v0.models.PaypalAuthenticationForm;
|
|
32577
32262
|
export type PaypalAuthorizationPayload =
|
|
32578
32263
|
io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
32264
|
+
export type PaypalDisputeDeleted =
|
|
32265
|
+
io.flow.internal.v0.models.PaypalDisputeDeleted;
|
|
32266
|
+
export type PaypalDisputeUpserted =
|
|
32267
|
+
io.flow.internal.v0.models.PaypalDisputeUpserted;
|
|
32579
32268
|
export type PaypalExecutionDeleted =
|
|
32580
32269
|
io.flow.internal.v0.models.PaypalExecutionDeleted;
|
|
32581
32270
|
export type PaypalExecutionUpserted =
|
|
32582
32271
|
io.flow.internal.v0.models.PaypalExecutionUpserted;
|
|
32272
|
+
export type PaypalInternalDispute =
|
|
32273
|
+
io.flow.internal.v0.models.PaypalInternalDispute;
|
|
32583
32274
|
export type PaypalInternalExecution =
|
|
32584
32275
|
io.flow.internal.v0.models.PaypalInternalExecution;
|
|
32585
32276
|
export type PaypalInternalPayment =
|
|
@@ -32628,17 +32319,8 @@ export type PregeneratedQuote = io.flow.internal.v0.models.PregeneratedQuote;
|
|
|
32628
32319
|
export type PregeneratedRequestEvent =
|
|
32629
32320
|
io.flow.internal.v0.models.PregeneratedRequestEvent;
|
|
32630
32321
|
export type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
32631
|
-
export type PricingIndicator = io.flow.internal.v0.models.PricingIndicator;
|
|
32632
|
-
export type PricingIndicatorDynamo =
|
|
32633
|
-
io.flow.internal.v0.models.PricingIndicatorDynamo;
|
|
32634
|
-
export type PricingIndicatorStatus =
|
|
32635
|
-
io.flow.internal.v0.enums.PricingIndicatorStatus;
|
|
32636
|
-
export type Principal = io.flow.internal.v0.models.Principal;
|
|
32637
|
-
export type PrincipalType = io.flow.internal.v0.enums.PrincipalType;
|
|
32638
32322
|
export type PrioritizedCenterReference =
|
|
32639
32323
|
io.flow.internal.v0.models.PrioritizedCenterReference;
|
|
32640
|
-
export type ProcessedPaymentSummary =
|
|
32641
|
-
io.flow.internal.v0.models.ProcessedPaymentSummary;
|
|
32642
32324
|
export type ProcessingTransaction =
|
|
32643
32325
|
io.flow.internal.v0.models.ProcessingTransaction;
|
|
32644
32326
|
export type ProcessingTransactionDeleted =
|
|
@@ -32701,15 +32383,6 @@ export type ProductReviewHistory =
|
|
|
32701
32383
|
io.flow.internal.v0.models.ProductReviewHistory;
|
|
32702
32384
|
export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
32703
32385
|
export type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
32704
|
-
export type Profit = io.flow.internal.v0.models.Profit;
|
|
32705
|
-
export type ProfitShare = io.flow.internal.v0.models.ProfitShare;
|
|
32706
|
-
export type ProfitShareOrderReference =
|
|
32707
|
-
io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
32708
|
-
export type ProfitSharePlan = io.flow.internal.v0.models.ProfitSharePlan;
|
|
32709
|
-
export type ProfitSplit = io.flow.internal.v0.models.ProfitSplit;
|
|
32710
|
-
export type ProfitSplitRule = io.flow.internal.v0.models.ProfitSplitRule;
|
|
32711
|
-
export type ProfitStream = io.flow.internal.v0.models.ProfitStream;
|
|
32712
|
-
export type ProfitStreamKey = io.flow.internal.v0.enums.ProfitStreamKey;
|
|
32713
32386
|
export type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
32714
32387
|
export type PromptCheckoutDisplayPosition =
|
|
32715
32388
|
io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
@@ -32854,6 +32527,8 @@ export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
|
32854
32527
|
export type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
|
|
32855
32528
|
export type ReportOrderReference =
|
|
32856
32529
|
io.flow.internal.v0.models.ReportOrderReference;
|
|
32530
|
+
export type ReportOrganizationReference =
|
|
32531
|
+
io.flow.internal.v0.models.ReportOrganizationReference;
|
|
32857
32532
|
export type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
32858
32533
|
export type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
32859
32534
|
export type ReportPaymentType = io.flow.internal.v0.enums.ReportPaymentType;
|
|
@@ -32875,7 +32550,6 @@ export type ReportingDebugMissingSubsidies =
|
|
|
32875
32550
|
export type ReportingDestination =
|
|
32876
32551
|
io.flow.internal.v0.models.ReportingDestination;
|
|
32877
32552
|
export type ReportingDetails = io.flow.internal.v0.models.ReportingDetails;
|
|
32878
|
-
export type ReportingEntity = io.flow.internal.v0.models.ReportingEntity;
|
|
32879
32553
|
export type ReportingFulfillment =
|
|
32880
32554
|
io.flow.internal.v0.models.ReportingFulfillment;
|
|
32881
32555
|
export type ReportingFulfillmentHas =
|
|
@@ -32971,6 +32645,12 @@ export type RestrictionRuleSummary =
|
|
|
32971
32645
|
export type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
32972
32646
|
export type RestrictionStatusMetadata =
|
|
32973
32647
|
io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
32648
|
+
export type RestrictionsDailyops =
|
|
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;
|
|
32974
32654
|
export type ResyncByDestinations =
|
|
32975
32655
|
io.flow.internal.v0.models.ResyncByDestinations;
|
|
32976
32656
|
export type ResyncByHs6Destinations =
|
|
@@ -32993,15 +32673,12 @@ export type ReturnSummary = io.flow.internal.v0.models.ReturnSummary;
|
|
|
32993
32673
|
export type ReturnTrigger = io.flow.internal.v0.unions.ReturnTrigger;
|
|
32994
32674
|
export type ReturnTriggerRefund =
|
|
32995
32675
|
io.flow.internal.v0.models.ReturnTriggerRefund;
|
|
32996
|
-
export type Revenue = io.flow.internal.v0.models.Revenue;
|
|
32997
32676
|
export type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
|
|
32998
32677
|
export type RevenueRecordDeleted =
|
|
32999
32678
|
io.flow.internal.v0.models.RevenueRecordDeleted;
|
|
33000
32679
|
export type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
|
|
33001
32680
|
export type RevenueRecordUpserted =
|
|
33002
32681
|
io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
33003
|
-
export type RevenueRule = io.flow.internal.v0.models.RevenueRule;
|
|
33004
|
-
export type RevenueType = io.flow.internal.v0.enums.RevenueType;
|
|
33005
32682
|
export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
33006
32683
|
export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
33007
32684
|
export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
@@ -33033,9 +32710,6 @@ export type SearchProviderExport =
|
|
|
33033
32710
|
io.flow.internal.v0.models.SearchProviderExport;
|
|
33034
32711
|
export type SearchTrackingSummary =
|
|
33035
32712
|
io.flow.internal.v0.models.SearchTrackingSummary;
|
|
33036
|
-
export type SerialReservationError =
|
|
33037
|
-
io.flow.internal.v0.enums.SerialReservationError;
|
|
33038
|
-
export type ServiceName = io.flow.internal.v0.enums.ServiceName;
|
|
33039
32713
|
export type SessionCountries = io.flow.internal.v0.models.SessionCountries;
|
|
33040
32714
|
export type SessionCountry = io.flow.internal.v0.models.SessionCountry;
|
|
33041
32715
|
export type SessionCountryForm = io.flow.internal.v0.models.SessionCountryForm;
|
|
@@ -33084,6 +32758,20 @@ export type ShopifyGiftCardReversalForm =
|
|
|
33084
32758
|
io.flow.internal.v0.models.ShopifyGiftCardReversalForm;
|
|
33085
32759
|
export type ShopifyGrantStatus = io.flow.internal.v0.enums.ShopifyGrantStatus;
|
|
33086
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;
|
|
33087
32775
|
export type ShopifyMarketsDangerousGoods =
|
|
33088
32776
|
io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods;
|
|
33089
32777
|
export type ShopifyMarketsDiscrepancy =
|
|
@@ -33104,6 +32792,10 @@ export type ShopifyMarketsOrder =
|
|
|
33104
32792
|
io.flow.internal.v0.models.ShopifyMarketsOrder;
|
|
33105
32793
|
export type ShopifyMarketsOrderDeleted =
|
|
33106
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;
|
|
33107
32799
|
export type ShopifyMarketsOrderUpserted =
|
|
33108
32800
|
io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
33109
32801
|
export type ShopifyMarketsOrderVersionWithShopId =
|
|
@@ -33194,6 +32886,10 @@ export type ShopifyOrganizationSettings =
|
|
|
33194
32886
|
io.flow.internal.v0.models.ShopifyOrganizationSettings;
|
|
33195
32887
|
export type ShopifyOrganizationSettingsForm =
|
|
33196
32888
|
io.flow.internal.v0.models.ShopifyOrganizationSettingsForm;
|
|
32889
|
+
export type ShopifyPartnerWebhook =
|
|
32890
|
+
io.flow.internal.v0.models.ShopifyPartnerWebhook;
|
|
32891
|
+
export type ShopifyPartnerWebhookRaw =
|
|
32892
|
+
io.flow.internal.v0.models.ShopifyPartnerWebhookRaw;
|
|
33197
32893
|
export type ShopifyPaymentSummary =
|
|
33198
32894
|
io.flow.internal.v0.models.ShopifyPaymentSummary;
|
|
33199
32895
|
export type ShopifyProductBundle =
|
|
@@ -33264,13 +32960,6 @@ export type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
|
|
33264
32960
|
export type ShopperLine = io.flow.internal.v0.models.ShopperLine;
|
|
33265
32961
|
export type ShopperLines = io.flow.internal.v0.models.ShopperLines;
|
|
33266
32962
|
export type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
|
|
33267
|
-
export type ShrutiDemoItem = io.flow.internal.v0.models.ShrutiDemoItem;
|
|
33268
|
-
export type ShrutiDemoItemDeleted =
|
|
33269
|
-
io.flow.internal.v0.models.ShrutiDemoItemDeleted;
|
|
33270
|
-
export type ShrutiDemoItemForm = io.flow.internal.v0.models.ShrutiDemoItemForm;
|
|
33271
|
-
export type ShrutiDemoItemUpserted =
|
|
33272
|
-
io.flow.internal.v0.models.ShrutiDemoItemUpserted;
|
|
33273
|
-
export type ShrutiDemoType = io.flow.internal.v0.enums.ShrutiDemoType;
|
|
33274
32963
|
export type SimpleAccountReference =
|
|
33275
32964
|
io.flow.internal.v0.models.SimpleAccountReference;
|
|
33276
32965
|
export type SimpleRoundingStrategy =
|
|
@@ -33383,19 +33072,6 @@ export type SubscriptionTransaction =
|
|
|
33383
33072
|
io.flow.internal.v0.models.SubscriptionTransaction;
|
|
33384
33073
|
export type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
33385
33074
|
export type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
33386
|
-
export type SvitlanaItem = io.flow.internal.v0.models.SvitlanaItem;
|
|
33387
|
-
export type SvitlanaItemDeleted =
|
|
33388
|
-
io.flow.internal.v0.models.SvitlanaItemDeleted;
|
|
33389
|
-
export type SvitlanaItemForm = io.flow.internal.v0.models.SvitlanaItemForm;
|
|
33390
|
-
export type SvitlanaItemUpserted =
|
|
33391
|
-
io.flow.internal.v0.models.SvitlanaItemUpserted;
|
|
33392
|
-
export type SvitlanaTest = io.flow.internal.v0.models.SvitlanaTest;
|
|
33393
|
-
export type SvitlanaType = io.flow.internal.v0.enums.SvitlanaType;
|
|
33394
|
-
export type TamItem = io.flow.internal.v0.models.TamItem;
|
|
33395
|
-
export type TamItemDeleted = io.flow.internal.v0.models.TamItemDeleted;
|
|
33396
|
-
export type TamItemForm = io.flow.internal.v0.models.TamItemForm;
|
|
33397
|
-
export type TamItemType = io.flow.internal.v0.enums.TamItemType;
|
|
33398
|
-
export type TamItemUpserted = io.flow.internal.v0.models.TamItemUpserted;
|
|
33399
33075
|
export type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
33400
33076
|
export type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
33401
33077
|
export type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|
|
@@ -33447,11 +33123,6 @@ export type TechOnboardingDescription =
|
|
|
33447
33123
|
io.flow.internal.v0.models.TechOnboardingDescription;
|
|
33448
33124
|
export type Test = io.flow.internal.v0.models.Test;
|
|
33449
33125
|
export type TestForm = io.flow.internal.v0.models.TestForm;
|
|
33450
|
-
export type ThiagoItem = io.flow.internal.v0.models.ThiagoItem;
|
|
33451
|
-
export type ThiagoItemDeleted = io.flow.internal.v0.models.ThiagoItemDeleted;
|
|
33452
|
-
export type ThiagoItemForm = io.flow.internal.v0.models.ThiagoItemForm;
|
|
33453
|
-
export type ThiagoItemType = io.flow.internal.v0.enums.ThiagoItemType;
|
|
33454
|
-
export type ThiagoItemUpserted = io.flow.internal.v0.models.ThiagoItemUpserted;
|
|
33455
33126
|
export type ThirdPartyLogisticsPartner =
|
|
33456
33127
|
io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
33457
33128
|
export type ThirdPartyLogisticsPickUpTimeWindow =
|
|
@@ -33483,6 +33154,12 @@ export type TrackingAssuranceJobDeleted =
|
|
|
33483
33154
|
io.flow.internal.v0.models.TrackingAssuranceJobDeleted;
|
|
33484
33155
|
export type TrackingAssuranceJobUpserted =
|
|
33485
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;
|
|
33486
33163
|
export type TrackingDebugForceTransitForm =
|
|
33487
33164
|
io.flow.internal.v0.models.TrackingDebugForceTransitForm;
|
|
33488
33165
|
export type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
@@ -33519,11 +33196,13 @@ export type TrackingProcessingErrorUpserted =
|
|
|
33519
33196
|
export type TrackingProcessingFailureClassification =
|
|
33520
33197
|
io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
33521
33198
|
export type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
33522
|
-
export type TrackingRequestUpserted =
|
|
33523
|
-
io.flow.internal.v0.models.TrackingRequestUpserted;
|
|
33524
33199
|
export type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
33525
|
-
export type
|
|
33526
|
-
io.flow.internal.v0.models.
|
|
33200
|
+
export type TrackingSubscription =
|
|
33201
|
+
io.flow.internal.v0.models.TrackingSubscription;
|
|
33202
|
+
export type TrackingSubscriptionDeleted =
|
|
33203
|
+
io.flow.internal.v0.models.TrackingSubscriptionDeleted;
|
|
33204
|
+
export type TrackingSubscriptionUpserted =
|
|
33205
|
+
io.flow.internal.v0.models.TrackingSubscriptionUpserted;
|
|
33527
33206
|
export type TrackingUpserted = io.flow.internal.v0.models.TrackingUpserted;
|
|
33528
33207
|
export type Transaction = io.flow.internal.v0.unions.Transaction;
|
|
33529
33208
|
export type TransactionAdjustment =
|