@flowio/types 11.24.106 → 11.24.108
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 +337 -929
- package/dist/api.d.ts +43 -201
- package/package.json +2 -2
- package/src/api-internal.ts +488 -1185
- package/src/api.ts +65 -280
package/src/api-internal.ts
CHANGED
|
@@ -1099,6 +1099,24 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
1099
1099
|
| io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken;
|
|
1100
1100
|
}
|
|
1101
1101
|
|
|
1102
|
+
declare namespace io.flow.channel.currency.v0.models {
|
|
1103
|
+
interface ChannelCurrencyPair {
|
|
1104
|
+
readonly id: string;
|
|
1105
|
+
readonly base: string;
|
|
1106
|
+
readonly target: string;
|
|
1107
|
+
readonly rate: io.flow.channel.currency.v0.models.ChannelCurrencyRate;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
interface ChannelCurrencyRate {
|
|
1111
|
+
readonly id: string;
|
|
1112
|
+
readonly value: number;
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
interface ChannelRate {
|
|
1116
|
+
readonly placeholder?: string;
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1102
1120
|
declare namespace io.flow.error.v0.enums {
|
|
1103
1121
|
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
1104
1122
|
}
|
|
@@ -3112,6 +3130,15 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
3112
3130
|
| 'under_review'
|
|
3113
3131
|
| 'won'
|
|
3114
3132
|
| 'lost';
|
|
3133
|
+
type EarlyFraudWarningEventType = 'radar.early_fraud_warning';
|
|
3134
|
+
type EarlyFraudWarningType =
|
|
3135
|
+
| 'card_never_received'
|
|
3136
|
+
| 'fraudulent_card_application'
|
|
3137
|
+
| 'made_with_counterfeit_card'
|
|
3138
|
+
| 'made_with_lost_card'
|
|
3139
|
+
| 'made_with_stolen_card'
|
|
3140
|
+
| 'unauthorized_use_of_card'
|
|
3141
|
+
| 'misc';
|
|
3115
3142
|
type ErrorCode =
|
|
3116
3143
|
| 'invalid_number'
|
|
3117
3144
|
| 'invalid_expiry_month'
|
|
@@ -3948,6 +3975,13 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
3948
3975
|
readonly transfer_group?: string;
|
|
3949
3976
|
}
|
|
3950
3977
|
|
|
3978
|
+
interface PaymentIntents {
|
|
3979
|
+
readonly object: string;
|
|
3980
|
+
readonly data: io.flow.stripe.v0.models.PaymentIntent[];
|
|
3981
|
+
readonly has_more: boolean;
|
|
3982
|
+
readonly url?: string;
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3951
3985
|
interface PaymentMethod {
|
|
3952
3986
|
readonly id: string;
|
|
3953
3987
|
readonly object: string;
|
|
@@ -4399,6 +4433,17 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
4399
4433
|
readonly previous_attributes?: any /*object*/;
|
|
4400
4434
|
}
|
|
4401
4435
|
|
|
4436
|
+
interface StripeEarlyFraudWarningEvent {
|
|
4437
|
+
readonly id: string;
|
|
4438
|
+
readonly object: io.flow.stripe.v0.enums.EarlyFraudWarningEventType;
|
|
4439
|
+
readonly actionable: boolean;
|
|
4440
|
+
readonly charge: string;
|
|
4441
|
+
readonly created: number;
|
|
4442
|
+
readonly fraud_type: io.flow.stripe.v0.enums.EarlyFraudWarningType;
|
|
4443
|
+
readonly livemode: boolean;
|
|
4444
|
+
readonly payment_intent?: string;
|
|
4445
|
+
}
|
|
4446
|
+
|
|
4402
4447
|
interface StripeError {
|
|
4403
4448
|
readonly type: io.flow.stripe.v0.enums.ErrorType;
|
|
4404
4449
|
readonly charge?: string;
|
|
@@ -4635,6 +4680,19 @@ declare namespace io.flow.label.v0.enums {
|
|
|
4635
4680
|
| 'dimensions_estimated'
|
|
4636
4681
|
| 'default_item_dimensions_estimated';
|
|
4637
4682
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
4683
|
+
type ShippingLabelErrorCode =
|
|
4684
|
+
| 'generic_error'
|
|
4685
|
+
| 'cancelled_order'
|
|
4686
|
+
| 'carrier_outage'
|
|
4687
|
+
| 'catalog_issue'
|
|
4688
|
+
| 'invalid_destination'
|
|
4689
|
+
| 'invalid_origin'
|
|
4690
|
+
| 'invalid_shipping_parameters'
|
|
4691
|
+
| 'merchant_error'
|
|
4692
|
+
| 'order_not_found'
|
|
4693
|
+
| 'order_processing'
|
|
4694
|
+
| 'restricted_item'
|
|
4695
|
+
| 'unsupported_lane';
|
|
4638
4696
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
4639
4697
|
}
|
|
4640
4698
|
|
|
@@ -4778,6 +4836,11 @@ declare namespace io.flow.label.v0.models {
|
|
|
4778
4836
|
readonly required: boolean;
|
|
4779
4837
|
}
|
|
4780
4838
|
|
|
4839
|
+
interface ShippingLabelError {
|
|
4840
|
+
readonly code: io.flow.label.v0.enums.ShippingLabelErrorCode;
|
|
4841
|
+
readonly messages: string[];
|
|
4842
|
+
}
|
|
4843
|
+
|
|
4781
4844
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
4782
4845
|
readonly units: io.flow.trueup.v0.models.LabelUnits;
|
|
4783
4846
|
readonly base: io.flow.trueup.v0.models.LabelBase;
|
|
@@ -6264,6 +6327,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
6264
6327
|
readonly destination: string;
|
|
6265
6328
|
}
|
|
6266
6329
|
|
|
6330
|
+
interface ShopifyMarketsBestSellingProduct {
|
|
6331
|
+
readonly id: string;
|
|
6332
|
+
}
|
|
6333
|
+
|
|
6267
6334
|
interface ShopifyMarketsDiscrepancy {
|
|
6268
6335
|
readonly organization_id: string;
|
|
6269
6336
|
readonly count: number;
|
|
@@ -6514,6 +6581,56 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
6514
6581
|
| 'visa'
|
|
6515
6582
|
| 'wechatpay'
|
|
6516
6583
|
| 'unknowncard';
|
|
6584
|
+
type PaymentRecordType =
|
|
6585
|
+
| 'Authorised'
|
|
6586
|
+
| 'AuthorisedPending'
|
|
6587
|
+
| 'Cancelled'
|
|
6588
|
+
| 'CaptureFailed'
|
|
6589
|
+
| 'Chargeback'
|
|
6590
|
+
| 'SecondChargeback'
|
|
6591
|
+
| 'ChargebackExternally'
|
|
6592
|
+
| 'ChargebackExternallyWithInfo'
|
|
6593
|
+
| 'ChargebackReversed'
|
|
6594
|
+
| 'ChargebackReversedExternallyWithInfo'
|
|
6595
|
+
| 'Error'
|
|
6596
|
+
| 'Expired'
|
|
6597
|
+
| 'PaidOut'
|
|
6598
|
+
| 'PaidOutExternally'
|
|
6599
|
+
| 'PaidOutExternallyWithInfo'
|
|
6600
|
+
| 'PaidOutReversed'
|
|
6601
|
+
| 'PayoutAuthorised'
|
|
6602
|
+
| 'PayoutError'
|
|
6603
|
+
| 'PayoutFailed'
|
|
6604
|
+
| 'Received'
|
|
6605
|
+
| 'ReceivedPayout'
|
|
6606
|
+
| 'RefundAuthorised'
|
|
6607
|
+
| 'Refunded'
|
|
6608
|
+
| 'RefundedBulk'
|
|
6609
|
+
| 'RefundedExternally'
|
|
6610
|
+
| 'RefundedExternallyWithInfo'
|
|
6611
|
+
| 'RefundFailed'
|
|
6612
|
+
| 'RefundedInInstallments'
|
|
6613
|
+
| 'RefundedInstallment'
|
|
6614
|
+
| 'RefundedReversed'
|
|
6615
|
+
| 'RefundNotProcessed'
|
|
6616
|
+
| 'Refused'
|
|
6617
|
+
| 'RefusedPayout'
|
|
6618
|
+
| 'Retried'
|
|
6619
|
+
| 'SentForPayout'
|
|
6620
|
+
| 'SentForRefund'
|
|
6621
|
+
| 'SentForSettle'
|
|
6622
|
+
| 'Settled'
|
|
6623
|
+
| 'SettledBulk'
|
|
6624
|
+
| 'SettledExternally'
|
|
6625
|
+
| 'SettledExternallyWithInfo'
|
|
6626
|
+
| 'SettledInInstallments'
|
|
6627
|
+
| 'SettledInstallment'
|
|
6628
|
+
| 'SettledReversed'
|
|
6629
|
+
| 'SuspendInstallment'
|
|
6630
|
+
| 'AdvancedInstallment'
|
|
6631
|
+
| 'AdvancedInstallmentCancelled'
|
|
6632
|
+
| 'OpenInstallment'
|
|
6633
|
+
| 'CloseInstallment';
|
|
6517
6634
|
type RecurringProcessingModel =
|
|
6518
6635
|
| 'Subscription'
|
|
6519
6636
|
| 'CardOnFile'
|
|
@@ -6676,9 +6793,9 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
6676
6793
|
}
|
|
6677
6794
|
|
|
6678
6795
|
interface ChargebackNotificationAdditionalData {
|
|
6679
|
-
readonly chargebackReasonCode
|
|
6796
|
+
readonly chargebackReasonCode?: string;
|
|
6680
6797
|
readonly modificationMerchantReferences: string;
|
|
6681
|
-
readonly chargebackSchemeCode
|
|
6798
|
+
readonly chargebackSchemeCode?: string;
|
|
6682
6799
|
readonly defensePeriodEndsAt?: string;
|
|
6683
6800
|
readonly disputeStatus?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
6684
6801
|
readonly defendable?: string;
|
|
@@ -9000,36 +9117,6 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9000
9117
|
}
|
|
9001
9118
|
}
|
|
9002
9119
|
|
|
9003
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.enums {
|
|
9004
|
-
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
9005
|
-
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
9006
|
-
}
|
|
9007
|
-
|
|
9008
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.models {
|
|
9009
|
-
interface Details {
|
|
9010
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
9011
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
9012
|
-
readonly upserted_at: string;
|
|
9013
|
-
readonly time_elapsed_since_upserted: number;
|
|
9014
|
-
}
|
|
9015
|
-
|
|
9016
|
-
interface PricingIndicator {
|
|
9017
|
-
readonly discriminator: 'pricing_indicator';
|
|
9018
|
-
readonly event_id: string;
|
|
9019
|
-
readonly timestamp: string;
|
|
9020
|
-
readonly organization: string;
|
|
9021
|
-
readonly published_from: io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
|
|
9022
|
-
readonly status: io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
|
|
9023
|
-
readonly event_identifier: string;
|
|
9024
|
-
readonly details: io.flow.pricing.indicator.internal.event.v0.models.Details;
|
|
9025
|
-
}
|
|
9026
|
-
}
|
|
9027
|
-
|
|
9028
|
-
declare namespace io.flow.pricing.indicator.internal.event.v0.unions {
|
|
9029
|
-
type PricingIndicatorEvent =
|
|
9030
|
-
io.flow.pricing.indicator.internal.event.v0.models.PricingIndicator;
|
|
9031
|
-
}
|
|
9032
|
-
|
|
9033
9120
|
declare namespace io.flow.order.price.v0.enums {
|
|
9034
9121
|
type OrderPriceDetailComponentKey =
|
|
9035
9122
|
| 'adjustment'
|
|
@@ -9118,6 +9205,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
9118
9205
|
| 'order_contains_gift_card'
|
|
9119
9206
|
| 'order_contains_restricted_goods'
|
|
9120
9207
|
| 'missing_order_information'
|
|
9208
|
+
| 'missing_classification_information'
|
|
9121
9209
|
| 'unsupported_payment_information'
|
|
9122
9210
|
| 'unsupported_shop_currency'
|
|
9123
9211
|
| 'unsupported_free_order'
|
|
@@ -9180,6 +9268,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9180
9268
|
readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
9181
9269
|
readonly order_created_at?: string;
|
|
9182
9270
|
readonly order_updated_at?: string;
|
|
9271
|
+
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
9183
9272
|
}
|
|
9184
9273
|
|
|
9185
9274
|
interface ChannelOrderAcceptanceDetails {
|
|
@@ -9208,6 +9297,10 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
9208
9297
|
interface FlowChannelOrganization {
|
|
9209
9298
|
readonly placeholder?: string;
|
|
9210
9299
|
}
|
|
9300
|
+
|
|
9301
|
+
interface OrderEditSummary {
|
|
9302
|
+
readonly edited_at: string;
|
|
9303
|
+
}
|
|
9211
9304
|
}
|
|
9212
9305
|
|
|
9213
9306
|
declare namespace io.flow.partner.v0.enums {
|
|
@@ -9999,6 +10092,10 @@ declare namespace io.flow.ftp.v0.models {
|
|
|
9999
10092
|
}
|
|
10000
10093
|
}
|
|
10001
10094
|
|
|
10095
|
+
declare namespace io.flow.shopify.markets.internal.event.v0.enums {
|
|
10096
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
10097
|
+
}
|
|
10098
|
+
|
|
10002
10099
|
declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
10003
10100
|
interface ChannelOrderSummaryDeleted {
|
|
10004
10101
|
readonly discriminator: 'channel_order_summary_deleted';
|
|
@@ -10047,6 +10144,45 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
10047
10144
|
readonly order_tax_and_duty_inclusivity_setting: io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
10048
10145
|
}
|
|
10049
10146
|
|
|
10147
|
+
interface ShopifyIncotermIncludes {
|
|
10148
|
+
readonly duties: boolean;
|
|
10149
|
+
readonly taxes: boolean;
|
|
10150
|
+
}
|
|
10151
|
+
|
|
10152
|
+
interface ShopifyIncotermSummaryErrorData {
|
|
10153
|
+
readonly id: string;
|
|
10154
|
+
readonly shopify_order_id: string;
|
|
10155
|
+
readonly order_number: string;
|
|
10156
|
+
readonly configuration: io.flow.shopify.markets.internal.event.v0.enums.ShopifyIncotermConfiguration;
|
|
10157
|
+
readonly includes: io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermIncludes;
|
|
10158
|
+
readonly reason: string;
|
|
10159
|
+
readonly order_submitted_at: string;
|
|
10160
|
+
}
|
|
10161
|
+
|
|
10162
|
+
interface ShopifyIncotermSummaryErrorPublished {
|
|
10163
|
+
readonly discriminator: 'shopify_incoterm_summary_error_published';
|
|
10164
|
+
readonly event_id: string;
|
|
10165
|
+
readonly timestamp: string;
|
|
10166
|
+
readonly organization: string;
|
|
10167
|
+
readonly data: io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorData;
|
|
10168
|
+
}
|
|
10169
|
+
|
|
10170
|
+
interface ShopifyMarketsBestSellingProductDeleted {
|
|
10171
|
+
readonly discriminator: 'shopify_markets_best_selling_product_deleted';
|
|
10172
|
+
readonly event_id: string;
|
|
10173
|
+
readonly timestamp: string;
|
|
10174
|
+
readonly organization: string;
|
|
10175
|
+
readonly id: string;
|
|
10176
|
+
}
|
|
10177
|
+
|
|
10178
|
+
interface ShopifyMarketsBestSellingProductUpserted {
|
|
10179
|
+
readonly discriminator: 'shopify_markets_best_selling_product_upserted';
|
|
10180
|
+
readonly event_id: string;
|
|
10181
|
+
readonly timestamp: string;
|
|
10182
|
+
readonly organization: string;
|
|
10183
|
+
readonly shopify_markets_best_selling_product: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
10184
|
+
}
|
|
10185
|
+
|
|
10050
10186
|
interface ShopifyMarketsMetricsDeleted {
|
|
10051
10187
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
10052
10188
|
readonly event_id: string;
|
|
@@ -10166,7 +10302,10 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
10166
10302
|
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted
|
|
10167
10303
|
| io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
10168
10304
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted
|
|
10169
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted
|
|
10305
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted
|
|
10306
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
10307
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
10308
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
10170
10309
|
}
|
|
10171
10310
|
|
|
10172
10311
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -10198,6 +10337,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
10198
10337
|
type ExperienceCountryStatus = 'enabled' | 'disabled';
|
|
10199
10338
|
type ExperiencePaymentMethodTag = 'display';
|
|
10200
10339
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
10340
|
+
type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
10201
10341
|
type OrderErrorCode =
|
|
10202
10342
|
| 'generic_error'
|
|
10203
10343
|
| 'order_item_not_available'
|
|
@@ -10732,6 +10872,17 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10732
10872
|
readonly attributes?: Record<string, string>;
|
|
10733
10873
|
}
|
|
10734
10874
|
|
|
10875
|
+
interface IncotermIncludes {
|
|
10876
|
+
readonly duties: boolean;
|
|
10877
|
+
readonly taxes: boolean;
|
|
10878
|
+
}
|
|
10879
|
+
|
|
10880
|
+
interface IncotermSummary {
|
|
10881
|
+
readonly configuration: io.flow.experience.v0.enums.IncotermConfiguration;
|
|
10882
|
+
readonly includes: io.flow.experience.v0.models.IncotermIncludes;
|
|
10883
|
+
readonly reason?: string;
|
|
10884
|
+
}
|
|
10885
|
+
|
|
10735
10886
|
interface ItemMargin {
|
|
10736
10887
|
readonly id: string;
|
|
10737
10888
|
readonly key: string;
|
|
@@ -10833,6 +10984,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
10833
10984
|
readonly geo?: io.flow.experience.v0.models.OrderGeo;
|
|
10834
10985
|
readonly device_details?: io.flow.payment.v0.unions.DeviceDetails;
|
|
10835
10986
|
readonly destination_contact_details?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
10987
|
+
readonly incoterm_summary?: io.flow.experience.v0.models.IncotermSummary;
|
|
10836
10988
|
}
|
|
10837
10989
|
|
|
10838
10990
|
interface OrderAddress {
|
|
@@ -12021,30 +12173,6 @@ declare namespace io.flow.catalog.exclusion.v0.models {
|
|
|
12021
12173
|
}
|
|
12022
12174
|
}
|
|
12023
12175
|
|
|
12024
|
-
declare namespace io.flow.session.context.v0.models {
|
|
12025
|
-
interface Context {
|
|
12026
|
-
readonly id: string;
|
|
12027
|
-
readonly experiments: io.flow.session.context.v0.models.SessionContextExperiment[];
|
|
12028
|
-
}
|
|
12029
|
-
|
|
12030
|
-
interface ContextForm {
|
|
12031
|
-
readonly experiments: io.flow.session.context.v0.models.SessionContextExperiment[];
|
|
12032
|
-
}
|
|
12033
|
-
|
|
12034
|
-
interface ContextReference {
|
|
12035
|
-
readonly id: string;
|
|
12036
|
-
}
|
|
12037
|
-
|
|
12038
|
-
interface ExperimentVariant {
|
|
12039
|
-
readonly key: string;
|
|
12040
|
-
}
|
|
12041
|
-
|
|
12042
|
-
interface SessionContextExperiment {
|
|
12043
|
-
readonly key: string;
|
|
12044
|
-
readonly variant?: io.flow.session.context.v0.models.ExperimentVariant;
|
|
12045
|
-
}
|
|
12046
|
-
}
|
|
12047
|
-
|
|
12048
12176
|
declare namespace io.flow.crypto.v0.enums {
|
|
12049
12177
|
type ErrorType =
|
|
12050
12178
|
| 'authentication_error'
|
|
@@ -12666,6 +12794,8 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
12666
12794
|
readonly status: io.flow.tracking.v0.enums.TrackingStatus;
|
|
12667
12795
|
readonly timestamp: string;
|
|
12668
12796
|
readonly description?: string;
|
|
12797
|
+
readonly aggregator_status_code?: string;
|
|
12798
|
+
readonly created_at?: string;
|
|
12669
12799
|
}
|
|
12670
12800
|
|
|
12671
12801
|
interface TrackingEventForm {
|
|
@@ -15818,7 +15948,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
15818
15948
|
readonly language: io.flow.reference.v0.models.Language;
|
|
15819
15949
|
readonly locale: io.flow.reference.v0.models.Locale;
|
|
15820
15950
|
readonly experience: io.flow.experience.v0.models.ExperienceGeo;
|
|
15821
|
-
readonly experiment?: io.flow.session.v0.models.SessionExperiment;
|
|
15822
15951
|
}
|
|
15823
15952
|
|
|
15824
15953
|
interface OrganizationSession {
|
|
@@ -15834,8 +15963,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
15834
15963
|
readonly geo?: io.flow.session.v0.models.SessionGeo;
|
|
15835
15964
|
readonly experience?: io.flow.experience.v0.models.ExperienceGeo;
|
|
15836
15965
|
readonly format?: io.flow.session.v0.models.SessionFormat;
|
|
15837
|
-
readonly experiment?: io.flow.session.v0.models.SessionExperiment;
|
|
15838
|
-
readonly context?: io.flow.session.context.v0.models.ContextReference;
|
|
15839
15966
|
}
|
|
15840
15967
|
|
|
15841
15968
|
interface OrganizationSessionAuthorization {
|
|
@@ -15853,25 +15980,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
15853
15980
|
readonly label_formatters: io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
15854
15981
|
}
|
|
15855
15982
|
|
|
15856
|
-
interface SessionExperiment {
|
|
15857
|
-
readonly key: string;
|
|
15858
|
-
readonly variant?: io.flow.session.v0.models.SessionExperimentVariant;
|
|
15859
|
-
}
|
|
15860
|
-
|
|
15861
|
-
interface SessionExperimentForm {
|
|
15862
|
-
readonly key: string;
|
|
15863
|
-
readonly variant?: io.flow.session.v0.models.SessionExperimentVariantForm;
|
|
15864
|
-
}
|
|
15865
|
-
|
|
15866
|
-
interface SessionExperimentVariant {
|
|
15867
|
-
readonly key: string;
|
|
15868
|
-
readonly name: string;
|
|
15869
|
-
}
|
|
15870
|
-
|
|
15871
|
-
interface SessionExperimentVariantForm {
|
|
15872
|
-
readonly key: string;
|
|
15873
|
-
}
|
|
15874
|
-
|
|
15875
15983
|
interface SessionExpirationConfig {
|
|
15876
15984
|
readonly unit: io.flow.common.v0.enums.UnitOfTime;
|
|
15877
15985
|
readonly value: number;
|
|
@@ -15965,207 +16073,6 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
15965
16073
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
15966
16074
|
}
|
|
15967
16075
|
|
|
15968
|
-
declare namespace io.flow.experiment.internal.v0.enums {
|
|
15969
|
-
type ExperimentDiscriminatorKey = 'experience' | 'feature';
|
|
15970
|
-
type Scope = 'organization' | 'global';
|
|
15971
|
-
type SignificanceAction =
|
|
15972
|
-
| 'end_and_implement_winner'
|
|
15973
|
-
| 'end_and_revert'
|
|
15974
|
-
| 'do_nothing';
|
|
15975
|
-
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
15976
|
-
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
15977
|
-
}
|
|
15978
|
-
|
|
15979
|
-
declare namespace io.flow.experiment.internal.v0.models {
|
|
15980
|
-
interface DailyExperimentResults {
|
|
15981
|
-
readonly id: string;
|
|
15982
|
-
readonly day: string;
|
|
15983
|
-
readonly experiment_key: string;
|
|
15984
|
-
readonly experiment_variant_key: string;
|
|
15985
|
-
readonly visitor_count: number;
|
|
15986
|
-
readonly visitors_with_transactions_count: number;
|
|
15987
|
-
readonly conversion_rate: number;
|
|
15988
|
-
readonly lower_bound: number;
|
|
15989
|
-
readonly upper_bound: number;
|
|
15990
|
-
readonly probability_of_being_best?: number;
|
|
15991
|
-
readonly currency?: string;
|
|
15992
|
-
readonly average_order_value?: number;
|
|
15993
|
-
readonly revenue_generated?: number;
|
|
15994
|
-
readonly total_order_count?: number;
|
|
15995
|
-
readonly conversion_rate_uplift?: number;
|
|
15996
|
-
readonly average_order_value_uplift?: number;
|
|
15997
|
-
readonly revenue_generated_uplift?: number;
|
|
15998
|
-
}
|
|
15999
|
-
|
|
16000
|
-
interface ExperienceExperiment {
|
|
16001
|
-
readonly discriminator: 'experience';
|
|
16002
|
-
readonly id: string;
|
|
16003
|
-
readonly key: string;
|
|
16004
|
-
readonly name: string;
|
|
16005
|
-
readonly description?: string;
|
|
16006
|
-
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
16007
|
-
readonly emails: string[];
|
|
16008
|
-
readonly started_at?: string;
|
|
16009
|
-
readonly ended_at?: string;
|
|
16010
|
-
readonly variants: io.flow.experiment.internal.v0.models.ExperienceVariant[];
|
|
16011
|
-
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
16012
|
-
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
16013
|
-
}
|
|
16014
|
-
|
|
16015
|
-
interface ExperienceVariant {
|
|
16016
|
-
readonly discriminator: 'experience_variant';
|
|
16017
|
-
readonly experience: io.flow.experiment.internal.v0.models.ExperienceVariantSummary;
|
|
16018
|
-
readonly traffic_percentage: number;
|
|
16019
|
-
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
16020
|
-
}
|
|
16021
|
-
|
|
16022
|
-
interface ExperienceVariantForm {
|
|
16023
|
-
readonly discriminator: 'experience';
|
|
16024
|
-
readonly key: string;
|
|
16025
|
-
readonly traffic_percentage: number;
|
|
16026
|
-
}
|
|
16027
|
-
|
|
16028
|
-
interface ExperienceVariantSummary {
|
|
16029
|
-
readonly key: string;
|
|
16030
|
-
readonly name?: string;
|
|
16031
|
-
}
|
|
16032
|
-
|
|
16033
|
-
interface ExperimentForm {
|
|
16034
|
-
readonly name: string;
|
|
16035
|
-
readonly description?: string;
|
|
16036
|
-
readonly emails: string[];
|
|
16037
|
-
readonly variants: io.flow.experiment.internal.v0.unions.VariantForm[];
|
|
16038
|
-
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
16039
|
-
readonly session_query?: string;
|
|
16040
|
-
}
|
|
16041
|
-
|
|
16042
|
-
interface ExperimentFormDefault {
|
|
16043
|
-
readonly discriminator: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminator;
|
|
16044
|
-
readonly variants?: io.flow.experiment.internal.v0.models.ExperimentFormDefaultVariant[];
|
|
16045
|
-
}
|
|
16046
|
-
|
|
16047
|
-
interface ExperimentFormDefaultDiscriminator {
|
|
16048
|
-
readonly key: io.flow.experiment.internal.v0.enums.ExperimentDiscriminatorKey;
|
|
16049
|
-
readonly values: io.flow.experiment.internal.v0.models.ExperimentFormDefaultDiscriminatorValue[];
|
|
16050
|
-
}
|
|
16051
|
-
|
|
16052
|
-
interface ExperimentFormDefaultDiscriminatorValue {
|
|
16053
|
-
readonly key: string;
|
|
16054
|
-
readonly name: string;
|
|
16055
|
-
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
16056
|
-
}
|
|
16057
|
-
|
|
16058
|
-
interface ExperimentFormDefaultVariant {
|
|
16059
|
-
readonly key: string;
|
|
16060
|
-
readonly name: string;
|
|
16061
|
-
readonly traffic_percentage?: number;
|
|
16062
|
-
}
|
|
16063
|
-
|
|
16064
|
-
interface ExperimentMilestone {
|
|
16065
|
-
readonly id: string;
|
|
16066
|
-
readonly experiment: io.flow.experiment.internal.v0.models.ExperimentReference;
|
|
16067
|
-
readonly timestamp: string;
|
|
16068
|
-
readonly description: string;
|
|
16069
|
-
}
|
|
16070
|
-
|
|
16071
|
-
interface ExperimentMilestoneForm {
|
|
16072
|
-
readonly timestamp?: string;
|
|
16073
|
-
readonly description: string;
|
|
16074
|
-
}
|
|
16075
|
-
|
|
16076
|
-
interface ExperimentReference {
|
|
16077
|
-
readonly key: string;
|
|
16078
|
-
}
|
|
16079
|
-
|
|
16080
|
-
interface ExperimentResults {
|
|
16081
|
-
readonly id: string;
|
|
16082
|
-
readonly experiment_key: string;
|
|
16083
|
-
readonly experiment_variant_key: string;
|
|
16084
|
-
readonly visitor_count: number;
|
|
16085
|
-
readonly visitors_with_transactions_count: number;
|
|
16086
|
-
readonly conversion_rate: number;
|
|
16087
|
-
readonly lower_bound: number;
|
|
16088
|
-
readonly upper_bound: number;
|
|
16089
|
-
readonly probability_of_being_best?: number;
|
|
16090
|
-
readonly currency?: string;
|
|
16091
|
-
readonly average_order_value?: number;
|
|
16092
|
-
readonly revenue_generated?: number;
|
|
16093
|
-
readonly total_order_count?: number;
|
|
16094
|
-
readonly conversion_rate_uplift?: number;
|
|
16095
|
-
readonly average_order_value_uplift?: number;
|
|
16096
|
-
readonly revenue_generated_uplift?: number;
|
|
16097
|
-
}
|
|
16098
|
-
|
|
16099
|
-
interface ExperimentResultsWithTimestamp {
|
|
16100
|
-
readonly timestamp: string;
|
|
16101
|
-
readonly results: io.flow.experiment.internal.v0.models.ExperimentResults[];
|
|
16102
|
-
}
|
|
16103
|
-
|
|
16104
|
-
interface ExperimentSessionQueryForm {
|
|
16105
|
-
readonly session_query?: string;
|
|
16106
|
-
}
|
|
16107
|
-
|
|
16108
|
-
interface ExperimentVersion {
|
|
16109
|
-
readonly id: string;
|
|
16110
|
-
readonly timestamp: string;
|
|
16111
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
16112
|
-
readonly experiment: io.flow.experiment.internal.v0.unions.Experiment;
|
|
16113
|
-
}
|
|
16114
|
-
|
|
16115
|
-
interface FeatureExperiment {
|
|
16116
|
-
readonly discriminator: 'feature';
|
|
16117
|
-
readonly id: string;
|
|
16118
|
-
readonly key: string;
|
|
16119
|
-
readonly name: string;
|
|
16120
|
-
readonly description?: string;
|
|
16121
|
-
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
16122
|
-
readonly emails: string[];
|
|
16123
|
-
readonly scope: io.flow.experiment.internal.v0.enums.Scope;
|
|
16124
|
-
readonly started_at?: string;
|
|
16125
|
-
readonly ended_at?: string;
|
|
16126
|
-
readonly variants: io.flow.experiment.internal.v0.models.FeatureVariant[];
|
|
16127
|
-
readonly transitions?: io.flow.experiment.internal.v0.enums.Status[];
|
|
16128
|
-
readonly significance_action?: io.flow.experiment.internal.v0.enums.SignificanceAction;
|
|
16129
|
-
readonly session_query?: string;
|
|
16130
|
-
}
|
|
16131
|
-
|
|
16132
|
-
interface FeatureValueReference {
|
|
16133
|
-
readonly feature_key: string;
|
|
16134
|
-
readonly value: string;
|
|
16135
|
-
}
|
|
16136
|
-
|
|
16137
|
-
interface FeatureVariant {
|
|
16138
|
-
readonly discriminator: 'feature_variant';
|
|
16139
|
-
readonly value: io.flow.experiment.internal.v0.models.FeatureVariantSummary;
|
|
16140
|
-
readonly traffic_percentage: number;
|
|
16141
|
-
readonly experiment_results?: io.flow.experiment.internal.v0.models.ExperimentResults;
|
|
16142
|
-
}
|
|
16143
|
-
|
|
16144
|
-
interface FeatureVariantForm {
|
|
16145
|
-
readonly discriminator: 'feature';
|
|
16146
|
-
readonly key: string;
|
|
16147
|
-
readonly traffic_percentage: number;
|
|
16148
|
-
}
|
|
16149
|
-
|
|
16150
|
-
interface FeatureVariantSummary {
|
|
16151
|
-
readonly key: string;
|
|
16152
|
-
readonly feature_value: io.flow.experiment.internal.v0.models.FeatureValueReference;
|
|
16153
|
-
readonly name?: string;
|
|
16154
|
-
}
|
|
16155
|
-
}
|
|
16156
|
-
|
|
16157
|
-
declare namespace io.flow.experiment.internal.v0.unions {
|
|
16158
|
-
type Experiment =
|
|
16159
|
-
| io.flow.experiment.internal.v0.models.ExperienceExperiment
|
|
16160
|
-
| io.flow.experiment.internal.v0.models.FeatureExperiment;
|
|
16161
|
-
type Variant =
|
|
16162
|
-
| io.flow.experiment.internal.v0.models.ExperienceVariant
|
|
16163
|
-
| io.flow.experiment.internal.v0.models.FeatureVariant;
|
|
16164
|
-
type VariantForm =
|
|
16165
|
-
| io.flow.experiment.internal.v0.models.ExperienceVariantForm
|
|
16166
|
-
| io.flow.experiment.internal.v0.models.FeatureVariantForm;
|
|
16167
|
-
}
|
|
16168
|
-
|
|
16169
16076
|
declare namespace io.flow.internal.v0.enums {
|
|
16170
16077
|
type AccountPaymentHoldReason =
|
|
16171
16078
|
| 'fraudulent'
|
|
@@ -16179,6 +16086,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16179
16086
|
| 'hosted_payment_page'
|
|
16180
16087
|
| 'checkout_payments_api'
|
|
16181
16088
|
| 'classic_authorise_api';
|
|
16089
|
+
type AldoItemType = 'physical' | 'digital';
|
|
16182
16090
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
16183
16091
|
type ApiCallReferenceId =
|
|
16184
16092
|
| 'duty_rates_data_event'
|
|
@@ -16190,6 +16098,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16190
16098
|
| 'prr-79e41878ea564f9c81cc432a0e84703f'
|
|
16191
16099
|
| 'prr-f29c26dc09e04536bc77f9c32786ed70'
|
|
16192
16100
|
| 'prr-b186129720f0446eb452a68518437c95';
|
|
16101
|
+
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
16193
16102
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
16194
16103
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
16195
16104
|
type BillingAllocationKey =
|
|
@@ -16336,9 +16245,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16336
16245
|
| 'accounts_with_payment_holds_count'
|
|
16337
16246
|
| 'accounts_with_payment_holds_pending_payment_promise_count'
|
|
16338
16247
|
| 'accounts_with_payment_holds_pending_payment_promise_total'
|
|
16339
|
-
| 'accounts_with_final_statements_count'
|
|
16340
|
-
| 'accounts_with_final_statements_pending_transaction_count'
|
|
16341
|
-
| 'accounts_with_final_statements_pending_transaction_total'
|
|
16342
16248
|
| 'edited_order_tax_amount_exceeding_transaction'
|
|
16343
16249
|
| 'edited_order_duty_amount_exceeding_transaction'
|
|
16344
16250
|
| 'negative_balance_scheduled_count'
|
|
@@ -16419,12 +16325,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16419
16325
|
| 'duty_refund';
|
|
16420
16326
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
16421
16327
|
type CalculatorEngine =
|
|
16422
|
-
| 'flow_rate_and_rule'
|
|
16423
|
-
| 'dtce'
|
|
16424
|
-
| 'dtce_two_calls'
|
|
16425
16328
|
| 'dtce_with_deminimis'
|
|
16426
|
-
| '
|
|
16427
|
-
| '
|
|
16329
|
+
| 'dtce_with_inclusive_pricing'
|
|
16330
|
+
| 'dtce_and_us_tax';
|
|
16428
16331
|
type CarrierChargeTransactionType =
|
|
16429
16332
|
| 'adjustment'
|
|
16430
16333
|
| 'reversal'
|
|
@@ -16463,6 +16366,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16463
16366
|
| 'order_contains_gift_card'
|
|
16464
16367
|
| 'order_contains_restricted_goods'
|
|
16465
16368
|
| 'missing_order_information'
|
|
16369
|
+
| 'missing_classification_information'
|
|
16466
16370
|
| 'unsupported_payment_information'
|
|
16467
16371
|
| 'unsupported_shop_currency'
|
|
16468
16372
|
| 'unsupported_free_order'
|
|
@@ -16537,22 +16441,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16537
16441
|
| 'Age0_10'
|
|
16538
16442
|
| 'Age10_13'
|
|
16539
16443
|
| 'Age13_14';
|
|
16540
|
-
type ColmItemType = 'physical' | 'digital';
|
|
16541
16444
|
type Company = 'globale' | 'flow';
|
|
16542
16445
|
type ComplianceType = 'weee';
|
|
16543
16446
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
16544
16447
|
type ContentStatus = 'draft' | 'live' | 'archived';
|
|
16545
16448
|
type ContentType = 'text' | 'html';
|
|
16546
16449
|
type ContentTypeCast = 'markdown_to_html' | 'markdown_to_text';
|
|
16547
|
-
type CostType =
|
|
16548
|
-
| 'payment_processing'
|
|
16549
|
-
| 'fx'
|
|
16550
|
-
| 'negative_balance'
|
|
16551
|
-
| 'solution'
|
|
16552
|
-
| 'hosting'
|
|
16553
|
-
| 'duty_guarantee'
|
|
16554
|
-
| 'transfer'
|
|
16555
|
-
| 'fraud';
|
|
16556
16450
|
type CrossdockTrackingStatus = 'notified' | 'received' | 'shipped';
|
|
16557
16451
|
type DebugAccountingTransactionType = 'fulfillment';
|
|
16558
16452
|
type DeliveredDutyOptionMessageType = 'warning' | 'notification';
|
|
@@ -16599,7 +16493,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16599
16493
|
| 'preferential_rate';
|
|
16600
16494
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
16601
16495
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
16602
|
-
type EldarItemType = 'digital' | 'physical';
|
|
16603
16496
|
type EmptyAttribute = 'irrelevant';
|
|
16604
16497
|
type ErpFileType = 'vendor';
|
|
16605
16498
|
type EventType =
|
|
@@ -16615,8 +16508,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16615
16508
|
| 'adyen_refund_upserted'
|
|
16616
16509
|
| 'adyen_dispute_upserted'
|
|
16617
16510
|
| 'adyen_dispute_deleted'
|
|
16618
|
-
| 'index_assignment_upserted'
|
|
16619
|
-
| 'index_assignment_deleted'
|
|
16620
16511
|
| 'fulfillment_upserted'
|
|
16621
16512
|
| 'fulfillment_deleted'
|
|
16622
16513
|
| 'merchant_upserted'
|
|
@@ -16712,18 +16603,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16712
16603
|
| 'customer_purge_upserted'
|
|
16713
16604
|
| 'customs_description_import'
|
|
16714
16605
|
| 'customs_description_tariffs_import'
|
|
16715
|
-
| 'item_dimension_estimate_upserted_v2'
|
|
16716
|
-
| 'item_dimension_estimate_deleted_v2'
|
|
16717
16606
|
| 'dispute_upserted'
|
|
16718
16607
|
| 'dispute_deleted'
|
|
16719
16608
|
| 'duty_rates_published_v2'
|
|
16720
|
-
| 'duty_rate_request'
|
|
16721
|
-
| 'duty_rate_bulk_request'
|
|
16722
|
-
| 'duty_raw_upserted'
|
|
16723
|
-
| 'duty_raw_bulk_upserted'
|
|
16724
|
-
| 'duty_rate_upserted'
|
|
16725
|
-
| 'duty_rate_response'
|
|
16726
|
-
| 'duty_rate_bulk_response'
|
|
16727
16609
|
| 'item_sales_margin_deleted'
|
|
16728
16610
|
| 'item_sales_margin_upserted'
|
|
16729
16611
|
| 'order_attribute_deleted'
|
|
@@ -16795,7 +16677,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16795
16677
|
| 'harmonization_codes_import'
|
|
16796
16678
|
| 'item_classification_created'
|
|
16797
16679
|
| 'harmonize_fully_request_v2'
|
|
16798
|
-
| 'hybris_catalog_items_import_request'
|
|
16799
16680
|
| 'import_completed'
|
|
16800
16681
|
| 'import_failed'
|
|
16801
16682
|
| 'time_to_classify_upserted'
|
|
@@ -16861,6 +16742,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16861
16742
|
| 'unassigned_merchant_guid_deleted'
|
|
16862
16743
|
| 'partner_tracking_subscription_upserted'
|
|
16863
16744
|
| 'partner_tracking_subscription_deleted'
|
|
16745
|
+
| 'spp_tracker_update_request_upserted'
|
|
16746
|
+
| 'spp_tracker_update_request_deleted'
|
|
16864
16747
|
| 'internal_authorization_upserted'
|
|
16865
16748
|
| 'internal_authorization_deleted'
|
|
16866
16749
|
| 'afterpay_authorization_upserted'
|
|
@@ -16889,7 +16772,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16889
16772
|
| 'paypal_refund_upserted'
|
|
16890
16773
|
| 'paypal_dispute_upserted'
|
|
16891
16774
|
| 'paypal_dispute_deleted'
|
|
16892
|
-
| 'pricing_indicator'
|
|
16893
16775
|
| 'product_restriction_rule_decision_upserted'
|
|
16894
16776
|
| 'product_restriction_rule_decision_deleted'
|
|
16895
16777
|
| 'order_rates_published_v3'
|
|
@@ -16914,6 +16796,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16914
16796
|
| 'organization_restriction_status_deleted'
|
|
16915
16797
|
| 'screening_status_change_upserted'
|
|
16916
16798
|
| 'screening_status_change_deleted'
|
|
16799
|
+
| 'restrictions_dailyops_upserted'
|
|
16800
|
+
| 'restrictions_dailyops_deleted'
|
|
16917
16801
|
| 'shopify_shop_upserted'
|
|
16918
16802
|
| 'shopify_shop_deleted'
|
|
16919
16803
|
| 'shopify_experience_short_id_upserted'
|
|
@@ -16936,6 +16820,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16936
16820
|
| 'order_tax_and_duty_inclusivity_setting_deleted'
|
|
16937
16821
|
| 'shopify_product_bundle_upserted'
|
|
16938
16822
|
| 'shopify_product_bundle_deleted'
|
|
16823
|
+
| 'shopify_incoterm_summary_error_published'
|
|
16824
|
+
| 'shopify_markets_best_selling_product_upserted'
|
|
16825
|
+
| 'shopify_markets_best_selling_product_deleted'
|
|
16939
16826
|
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
16940
16827
|
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
16941
16828
|
| 'shopify_order_fulfillments_snapshot_upserted'
|
|
@@ -16952,30 +16839,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16952
16839
|
| 'stripe_dispute_deleted'
|
|
16953
16840
|
| 'liability_remittance_plan_upserted'
|
|
16954
16841
|
| 'liability_remittance_plan_deleted'
|
|
16955
|
-
| 'svitlana_item_upserted'
|
|
16956
|
-
| 'svitlana_item_deleted'
|
|
16957
|
-
| 'colm_item_upserted'
|
|
16958
|
-
| 'colm_item_deleted'
|
|
16959
|
-
| 'eldar_item_upserted'
|
|
16960
|
-
| 'eldar_item_deleted'
|
|
16961
|
-
| 'harinath_item_upserted'
|
|
16962
|
-
| 'harinath_item_deleted'
|
|
16963
|
-
| 'konstantin_item_upserted'
|
|
16964
|
-
| 'konstantin_item_deleted'
|
|
16965
|
-
| 'matias_item_upserted'
|
|
16966
|
-
| 'matias_item_deleted'
|
|
16967
|
-
| 'michaelyan_item_upserted'
|
|
16968
|
-
| 'michaelyan_item_deleted'
|
|
16969
|
-
| 'miljenko_item_upserted'
|
|
16970
|
-
| 'miljenko_item_deleted'
|
|
16971
|
-
| 'sanjay_item_upserted'
|
|
16972
|
-
| 'sanjay_item_deleted'
|
|
16973
|
-
| 'shruti_demo_item_upserted'
|
|
16974
|
-
| 'shruti_demo_item_deleted'
|
|
16975
|
-
| 'tam_item_upserted'
|
|
16976
|
-
| 'tam_item_deleted'
|
|
16977
|
-
| 'thiago_item_upserted'
|
|
16978
|
-
| 'thiago_item_deleted'
|
|
16979
16842
|
| 'tracking_processing_error_upserted'
|
|
16980
16843
|
| 'tracking_processing_error_deleted'
|
|
16981
16844
|
| 'tracking_label_event_upserted_v2'
|
|
@@ -16990,10 +16853,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16990
16853
|
| 'tracking_assurance_job_deleted'
|
|
16991
16854
|
| 'tracking_subscription_upserted'
|
|
16992
16855
|
| 'tracking_subscription_deleted'
|
|
16856
|
+
| 'tracking_carrier_return_label_upserted'
|
|
16857
|
+
| 'tracking_carrier_return_label_deleted'
|
|
16993
16858
|
| 'tracking_label_dimensions_upserted'
|
|
16994
16859
|
| 'tracking_label_dimensions_deleted'
|
|
16995
|
-
| 'tracking_request_upserted'
|
|
16996
|
-
| 'tracking_response_upserted'
|
|
16997
16860
|
| 'user_upserted_v2'
|
|
16998
16861
|
| 'user_deleted_v2';
|
|
16999
16862
|
type ExperienceImportType = 'experience_with_settings';
|
|
@@ -17035,7 +16898,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17035
16898
|
| 'shopify_location'
|
|
17036
16899
|
| 'shopify_order'
|
|
17037
16900
|
| 'sync_product_catalog';
|
|
17038
|
-
type HarinathItemType = 'digital' | 'physical';
|
|
17039
16901
|
type HarmonizationDecisionSource =
|
|
17040
16902
|
| 'human'
|
|
17041
16903
|
| 'legacy_model'
|
|
@@ -17060,7 +16922,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17060
16922
|
| 'fulfillment_generate_label';
|
|
17061
16923
|
type ItemType = 'standard' | 'multi_product';
|
|
17062
16924
|
type KeywordType = 'positive' | 'negative';
|
|
17063
|
-
type KonstantinItemType = 'physical' | 'digital';
|
|
17064
16925
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
17065
16926
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
17066
16927
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
@@ -17158,14 +17019,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17158
17019
|
| 'facebook_primary'
|
|
17159
17020
|
| 'facebook_country_override'
|
|
17160
17021
|
| 'supplemental';
|
|
17161
|
-
type MatiasItemType = 'physical' | 'digital';
|
|
17162
|
-
type MerchantCohort =
|
|
17163
|
-
| 'channel_merchant_pre_cutoff'
|
|
17164
|
-
| 'channel_merchant_post_cutoff'
|
|
17165
|
-
| 'global_e_merchant_pre_cutoff'
|
|
17166
|
-
| 'global_e_merchant_post_cutoff';
|
|
17167
|
-
type MichaelyanItemType = 'physical' | 'digital';
|
|
17168
|
-
type MiljenkoItemType = 'physical' | 'digital';
|
|
17169
17022
|
type MixedBagWeight = '0' | '1' | '2';
|
|
17170
17023
|
type NatureOfSale =
|
|
17171
17024
|
| 'consumer'
|
|
@@ -17269,7 +17122,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17269
17122
|
| 'unscreened';
|
|
17270
17123
|
type OutputStyle = 'flow' | 'shopify_p1';
|
|
17271
17124
|
type Owner = 'flow' | 'organization';
|
|
17272
|
-
type Party = 'merchant' | 'channel_partner' | 'global_e';
|
|
17273
17125
|
type PaymentSummaryStatus =
|
|
17274
17126
|
| 'authorized'
|
|
17275
17127
|
| 'canceled'
|
|
@@ -17290,11 +17142,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17290
17142
|
type PaymentTerm = 'net7' | 'net15' | 'net30';
|
|
17291
17143
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
17292
17144
|
type PriceSelector = 'minimum' | 'maximum';
|
|
17293
|
-
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
17294
|
-
type PrincipalType =
|
|
17295
|
-
| 'total_order_value'
|
|
17296
|
-
| 'product_order_value'
|
|
17297
|
-
| 'label_value';
|
|
17298
17145
|
type ProcessingTransactionType =
|
|
17299
17146
|
| 'adjustment'
|
|
17300
17147
|
| 'reversal'
|
|
@@ -17313,13 +17160,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17313
17160
|
| 'crypto';
|
|
17314
17161
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
17315
17162
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
17316
|
-
type ProfitStreamKey =
|
|
17317
|
-
| 'pre_profit_share'
|
|
17318
|
-
| 'channel_pre_cutoff'
|
|
17319
|
-
| 'channel_post_cutoff'
|
|
17320
|
-
| 'global_e_pre_cutoff'
|
|
17321
|
-
| 'global_e_post_cutoff'
|
|
17322
|
-
| 'duty_assurance';
|
|
17323
17163
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
17324
17164
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
17325
17165
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
@@ -17381,7 +17221,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17381
17221
|
| 'accepted'
|
|
17382
17222
|
| 'restricted';
|
|
17383
17223
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
17384
|
-
type RevenueType = 'mor' | 'fx' | 'duty_assurance';
|
|
17385
17224
|
type RiskCheck = 'three_d_secure';
|
|
17386
17225
|
type RiskEvaluation =
|
|
17387
17226
|
| 'Pending'
|
|
@@ -17389,11 +17228,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17389
17228
|
| 'Low-Risk'
|
|
17390
17229
|
| 'Restricted-Party'
|
|
17391
17230
|
| 'none';
|
|
17392
|
-
type SanjayItemType = 'digital' | 'physical';
|
|
17393
|
-
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
17394
17231
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
17395
17232
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
17396
17233
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
17234
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
17397
17235
|
type ShopifyMarketsDangerousGoods =
|
|
17398
17236
|
| 'aerosols'
|
|
17399
17237
|
| 'air_bag_inflators_or_seat_belt_pretensioners'
|
|
@@ -17456,10 +17294,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17456
17294
|
| 'duty';
|
|
17457
17295
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
17458
17296
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
17459
|
-
type ShrutiDemoType = 'digital' | 'physical';
|
|
17460
17297
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
17461
17298
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
17462
17299
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
17300
|
+
type SourceTypeFilter = 'organization' | 'channel';
|
|
17463
17301
|
type StatementStatus =
|
|
17464
17302
|
| 'created'
|
|
17465
17303
|
| 'no_transactions'
|
|
@@ -17475,8 +17313,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17475
17313
|
| 'rate-freshness';
|
|
17476
17314
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
17477
17315
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
17478
|
-
type SvitlanaType = 'physical' | 'digital';
|
|
17479
|
-
type TamItemType = 'physical' | 'digital';
|
|
17480
17316
|
type TariffEligibilityType = 'rex';
|
|
17481
17317
|
type TaskProcessorKey =
|
|
17482
17318
|
| 'order_messenger'
|
|
@@ -17494,7 +17330,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17494
17330
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
17495
17331
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
17496
17332
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
17497
|
-
type ThiagoItemType = 'digital' | 'physical';
|
|
17498
17333
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
17499
17334
|
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
17500
17335
|
type TrackingProcessingFailureClassification =
|
|
@@ -17677,8 +17512,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17677
17512
|
readonly enable_fee_reversals: boolean;
|
|
17678
17513
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
17679
17514
|
readonly enable_negative_debits: boolean;
|
|
17680
|
-
readonly setup_completed_at?: string;
|
|
17681
|
-
readonly cohort?: io.flow.internal.v0.enums.MerchantCohort;
|
|
17682
17515
|
}
|
|
17683
17516
|
|
|
17684
17517
|
interface AccountSettingsDeleted {
|
|
@@ -18232,6 +18065,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18232
18065
|
readonly afterpay_refund: io.flow.internal.v0.models.AfterpayRefund;
|
|
18233
18066
|
}
|
|
18234
18067
|
|
|
18068
|
+
interface AldoItem {
|
|
18069
|
+
readonly id: string;
|
|
18070
|
+
readonly number: string;
|
|
18071
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18072
|
+
readonly description?: string;
|
|
18073
|
+
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
18074
|
+
readonly added_on: string;
|
|
18075
|
+
}
|
|
18076
|
+
|
|
18077
|
+
interface AldoItemForm {
|
|
18078
|
+
readonly number: string;
|
|
18079
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18080
|
+
readonly description?: string;
|
|
18081
|
+
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
18082
|
+
readonly added_on: string;
|
|
18083
|
+
}
|
|
18084
|
+
|
|
18235
18085
|
interface AlertErrorSummary {
|
|
18236
18086
|
readonly event_id: number;
|
|
18237
18087
|
readonly error: string;
|
|
@@ -18260,12 +18110,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18260
18110
|
readonly count: number;
|
|
18261
18111
|
}
|
|
18262
18112
|
|
|
18263
|
-
interface AlgoliaIndexAssignment {
|
|
18264
|
-
readonly id: string;
|
|
18265
|
-
readonly name: string;
|
|
18266
|
-
readonly application_id: string;
|
|
18267
|
-
}
|
|
18268
|
-
|
|
18269
18113
|
interface AllItemsExport {
|
|
18270
18114
|
readonly discriminator: 'all_items_export';
|
|
18271
18115
|
readonly event_id: string;
|
|
@@ -18389,6 +18233,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18389
18233
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
18390
18234
|
}
|
|
18391
18235
|
|
|
18236
|
+
interface BankAccount {
|
|
18237
|
+
readonly status: io.flow.internal.v0.enums.BankAccountStatus;
|
|
18238
|
+
readonly hold_created_at?: string;
|
|
18239
|
+
readonly updated_at: string;
|
|
18240
|
+
readonly last4: string;
|
|
18241
|
+
}
|
|
18242
|
+
|
|
18392
18243
|
interface BankAccountReference {
|
|
18393
18244
|
readonly id: string;
|
|
18394
18245
|
}
|
|
@@ -19316,6 +19167,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19316
19167
|
readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
|
|
19317
19168
|
}
|
|
19318
19169
|
|
|
19170
|
+
interface ChannelCurrencyPairInternal {
|
|
19171
|
+
readonly channel_currency_pair: io.flow.channel.currency.v0.models.ChannelCurrencyPair;
|
|
19172
|
+
}
|
|
19173
|
+
|
|
19319
19174
|
interface ChannelCurrencySetting {
|
|
19320
19175
|
readonly id: string;
|
|
19321
19176
|
readonly channel_id: string;
|
|
@@ -19412,6 +19267,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19412
19267
|
readonly next_action_from?: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
19413
19268
|
readonly order_created_at?: string;
|
|
19414
19269
|
readonly order_updated_at?: string;
|
|
19270
|
+
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
19415
19271
|
}
|
|
19416
19272
|
|
|
19417
19273
|
interface ChannelOrderAcceptanceDeleted {
|
|
@@ -20082,37 +19938,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20082
19938
|
readonly task: string;
|
|
20083
19939
|
}
|
|
20084
19940
|
|
|
20085
|
-
interface ColmItem {
|
|
20086
|
-
readonly id: string;
|
|
20087
|
-
readonly number: string;
|
|
20088
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20089
|
-
readonly description?: string;
|
|
20090
|
-
readonly type: io.flow.internal.v0.enums.ColmItemType;
|
|
20091
|
-
readonly added_on: string;
|
|
20092
|
-
}
|
|
20093
|
-
|
|
20094
|
-
interface ColmItemDeleted {
|
|
20095
|
-
readonly discriminator: 'colm_item_deleted';
|
|
20096
|
-
readonly event_id: string;
|
|
20097
|
-
readonly timestamp: string;
|
|
20098
|
-
readonly id: string;
|
|
20099
|
-
}
|
|
20100
|
-
|
|
20101
|
-
interface ColmItemForm {
|
|
20102
|
-
readonly number: string;
|
|
20103
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
20104
|
-
readonly description?: string;
|
|
20105
|
-
readonly type: io.flow.internal.v0.enums.ColmItemType;
|
|
20106
|
-
readonly added_on: string;
|
|
20107
|
-
}
|
|
20108
|
-
|
|
20109
|
-
interface ColmItemUpserted {
|
|
20110
|
-
readonly discriminator: 'colm_item_upserted';
|
|
20111
|
-
readonly event_id: string;
|
|
20112
|
-
readonly timestamp: string;
|
|
20113
|
-
readonly item: io.flow.internal.v0.models.ColmItem;
|
|
20114
|
-
}
|
|
20115
|
-
|
|
20116
19941
|
interface CommercialInvoiceComparison {
|
|
20117
19942
|
readonly urls: string[];
|
|
20118
19943
|
}
|
|
@@ -20263,17 +20088,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20263
20088
|
readonly description?: string;
|
|
20264
20089
|
}
|
|
20265
20090
|
|
|
20266
|
-
interface Cost {
|
|
20267
|
-
readonly source: io.flow.internal.v0.models.CostRule;
|
|
20268
|
-
readonly amount: number;
|
|
20269
|
-
}
|
|
20270
|
-
|
|
20271
|
-
interface CostRule {
|
|
20272
|
-
readonly type: io.flow.internal.v0.enums.CostType;
|
|
20273
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
20274
|
-
readonly bearer: io.flow.internal.v0.enums.Party;
|
|
20275
|
-
}
|
|
20276
|
-
|
|
20277
20091
|
interface CountryPickerCountry {
|
|
20278
20092
|
readonly iso_3166_2: string;
|
|
20279
20093
|
readonly iso_3166_3: string;
|
|
@@ -20380,6 +20194,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20380
20194
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
20381
20195
|
readonly created_at: string;
|
|
20382
20196
|
readonly updated_at: string;
|
|
20197
|
+
readonly posted_at?: string;
|
|
20383
20198
|
}
|
|
20384
20199
|
|
|
20385
20200
|
interface CurrencyInternalRate {
|
|
@@ -20520,11 +20335,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20520
20335
|
readonly transaction_id: string;
|
|
20521
20336
|
}
|
|
20522
20337
|
|
|
20338
|
+
interface DebugAdjustment {
|
|
20339
|
+
readonly transaction_id: string;
|
|
20340
|
+
readonly original_transaction: io.flow.internal.v0.models.DebugOriginalTransactionSummary;
|
|
20341
|
+
readonly description: string;
|
|
20342
|
+
}
|
|
20343
|
+
|
|
20344
|
+
interface DebugBankingDetails {
|
|
20345
|
+
readonly merchant: io.flow.internal.v0.models.MerchantDetails;
|
|
20346
|
+
readonly account: io.flow.internal.v0.models.BankAccount;
|
|
20347
|
+
}
|
|
20348
|
+
|
|
20523
20349
|
interface DebugDetails {
|
|
20524
20350
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
20525
20351
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
20526
20352
|
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
20527
20353
|
readonly allocation: io.flow.experience.v0.models.AllocationV2;
|
|
20354
|
+
readonly adjustments: io.flow.internal.v0.models.DebugAdjustment[];
|
|
20528
20355
|
}
|
|
20529
20356
|
|
|
20530
20357
|
interface DebugFulfillmentDelta {
|
|
@@ -20539,6 +20366,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20539
20366
|
readonly carrier_tracking_number: string;
|
|
20540
20367
|
readonly label_tracking_summary_id?: string;
|
|
20541
20368
|
readonly label_id?: string;
|
|
20369
|
+
readonly cost_estimate?: io.flow.label.v0.models.ShippingLabelHopSummary;
|
|
20542
20370
|
readonly transactions?: io.flow.internal.v0.models.DebugLabelTransactionSummary[];
|
|
20543
20371
|
}
|
|
20544
20372
|
|
|
@@ -20559,8 +20387,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20559
20387
|
interface DebugOrderTransaction {
|
|
20560
20388
|
readonly order: io.flow.internal.v0.models.DebugOrder;
|
|
20561
20389
|
readonly debug: io.flow.internal.v0.models.DebugDetails;
|
|
20562
|
-
readonly transactions: io.flow.
|
|
20390
|
+
readonly transactions: io.flow.internal.v0.models.DebugOrderTransactionDetails[];
|
|
20563
20391
|
readonly reporting: io.flow.internal.v0.models.ReportingDetails;
|
|
20392
|
+
readonly banking: io.flow.internal.v0.models.DebugBankingDetails;
|
|
20393
|
+
}
|
|
20394
|
+
|
|
20395
|
+
interface DebugOrderTransactionDetails {
|
|
20396
|
+
readonly transaction: io.flow.billing.v0.models.Transaction;
|
|
20397
|
+
readonly payout_details?: io.flow.billing.v0.unions.PayoutStatus;
|
|
20564
20398
|
}
|
|
20565
20399
|
|
|
20566
20400
|
interface DebugOrderTransactionForm {
|
|
@@ -20584,6 +20418,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20584
20418
|
readonly value?: string;
|
|
20585
20419
|
}
|
|
20586
20420
|
|
|
20421
|
+
interface DebugOriginalTransactionSummary {
|
|
20422
|
+
readonly id: string;
|
|
20423
|
+
readonly source: io.flow.billing.v0.enums.TransactionSource;
|
|
20424
|
+
}
|
|
20425
|
+
|
|
20587
20426
|
interface DebugPaymentTransactionSummary {
|
|
20588
20427
|
readonly id: string;
|
|
20589
20428
|
readonly type: string;
|
|
@@ -20702,13 +20541,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20702
20541
|
readonly destination: io.flow.common.v0.models.Address;
|
|
20703
20542
|
}
|
|
20704
20543
|
|
|
20705
|
-
interface Details {
|
|
20706
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
20707
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
20708
|
-
readonly upserted_at: string;
|
|
20709
|
-
readonly time_elapsed_since_upserted: number;
|
|
20710
|
-
}
|
|
20711
|
-
|
|
20712
20544
|
interface Dhl {
|
|
20713
20545
|
readonly discriminator: 'dhl';
|
|
20714
20546
|
readonly export_account_number: string;
|
|
@@ -20726,6 +20558,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20726
20558
|
readonly pickup_name: string;
|
|
20727
20559
|
}
|
|
20728
20560
|
|
|
20561
|
+
interface DhlEcommerceWebhook {
|
|
20562
|
+
readonly placeholder?: boolean;
|
|
20563
|
+
}
|
|
20564
|
+
|
|
20729
20565
|
interface Dict {
|
|
20730
20566
|
readonly discriminator: 'dict';
|
|
20731
20567
|
readonly label: io.flow.internal.v0.models.ContentLabel;
|
|
@@ -20790,8 +20626,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20790
20626
|
readonly billable: io.flow.internal.v0.enums.DisputeBillable;
|
|
20791
20627
|
readonly defense_outcome?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
20792
20628
|
readonly details: io.flow.internal.v0.unions.DisputeDetails;
|
|
20629
|
+
readonly payment_method?: io.flow.reference.v0.models.PaymentMethod;
|
|
20793
20630
|
readonly issued_at: string;
|
|
20794
20631
|
readonly expires_at?: string;
|
|
20632
|
+
readonly defended_at?: string;
|
|
20795
20633
|
readonly created_at: string;
|
|
20796
20634
|
readonly updated_at?: string;
|
|
20797
20635
|
}
|
|
@@ -20875,6 +20713,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20875
20713
|
interface DisputeRecord {
|
|
20876
20714
|
readonly id: string;
|
|
20877
20715
|
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
20716
|
+
readonly authorization: io.flow.internal.v0.models.ReportingAuthorizationReference;
|
|
20878
20717
|
readonly order: io.flow.internal.v0.models.ReportingOrderSummary;
|
|
20879
20718
|
readonly status: io.flow.internal.v0.enums.DisputeStatus;
|
|
20880
20719
|
readonly processor: io.flow.internal.v0.enums.DisputeProcessor;
|
|
@@ -20955,65 +20794,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20955
20794
|
readonly created_at: string;
|
|
20956
20795
|
}
|
|
20957
20796
|
|
|
20958
|
-
interface DutyRateBulkRequest {
|
|
20959
|
-
readonly discriminator: 'duty_rate_bulk_request';
|
|
20960
|
-
readonly event_id: string;
|
|
20961
|
-
readonly timestamp: string;
|
|
20962
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
20963
|
-
readonly origin: string;
|
|
20964
|
-
readonly destination_tariff_code: Record<string, string>;
|
|
20965
|
-
}
|
|
20966
|
-
|
|
20967
|
-
interface DutyRateBulkResponse {
|
|
20968
|
-
readonly discriminator: 'duty_rate_bulk_response';
|
|
20969
|
-
readonly event_id: string;
|
|
20970
|
-
readonly timestamp: string;
|
|
20971
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
20972
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate[];
|
|
20973
|
-
}
|
|
20974
|
-
|
|
20975
|
-
interface DutyRateContext {
|
|
20976
|
-
readonly phrase_id?: string;
|
|
20977
|
-
readonly item_number?: string;
|
|
20978
|
-
readonly product_id?: string;
|
|
20979
|
-
}
|
|
20980
|
-
|
|
20981
20797
|
interface DutyRateItemSummary {
|
|
20982
20798
|
readonly number: string;
|
|
20983
20799
|
readonly product_id?: string;
|
|
20984
20800
|
}
|
|
20985
20801
|
|
|
20986
|
-
interface DutyRateRequest {
|
|
20987
|
-
readonly discriminator: 'duty_rate_request';
|
|
20988
|
-
readonly event_id: string;
|
|
20989
|
-
readonly timestamp: string;
|
|
20990
|
-
readonly destination: string;
|
|
20991
|
-
readonly origin: string;
|
|
20992
|
-
readonly tariff_code: string;
|
|
20993
|
-
}
|
|
20994
|
-
|
|
20995
|
-
interface DutyRateResponse {
|
|
20996
|
-
readonly discriminator: 'duty_rate_response';
|
|
20997
|
-
readonly event_id: string;
|
|
20998
|
-
readonly timestamp: string;
|
|
20999
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate;
|
|
21000
|
-
}
|
|
21001
|
-
|
|
21002
20802
|
interface DutyRateSummary {
|
|
21003
20803
|
readonly tariff_code: string;
|
|
21004
20804
|
readonly origin: string;
|
|
21005
20805
|
readonly destination: string;
|
|
21006
20806
|
}
|
|
21007
20807
|
|
|
21008
|
-
interface DutyRateUpserted {
|
|
21009
|
-
readonly discriminator: 'duty_rate_upserted';
|
|
21010
|
-
readonly event_id: string;
|
|
21011
|
-
readonly timestamp: string;
|
|
21012
|
-
readonly source_event: io.flow.internal.v0.models.DutyRawUpserted;
|
|
21013
|
-
readonly duty_rate: io.flow.internal.v0.models.DutyRate;
|
|
21014
|
-
readonly unparsable_rates: string[];
|
|
21015
|
-
}
|
|
21016
|
-
|
|
21017
20808
|
interface DutyRatesDataSummary {
|
|
21018
20809
|
readonly id: string;
|
|
21019
20810
|
readonly item_summary: io.flow.internal.v0.models.DutyRateItemSummary;
|
|
@@ -21042,21 +20833,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21042
20833
|
readonly created_at: string;
|
|
21043
20834
|
}
|
|
21044
20835
|
|
|
21045
|
-
interface DutyRawBulkUpserted {
|
|
21046
|
-
readonly discriminator: 'duty_raw_bulk_upserted';
|
|
21047
|
-
readonly event_id: string;
|
|
21048
|
-
readonly timestamp: string;
|
|
21049
|
-
readonly context: io.flow.internal.v0.models.DutyRateContext;
|
|
21050
|
-
readonly duty_raw: io.flow.internal.v0.models.DutyRaw[];
|
|
21051
|
-
}
|
|
21052
|
-
|
|
21053
|
-
interface DutyRawUpserted {
|
|
21054
|
-
readonly discriminator: 'duty_raw_upserted';
|
|
21055
|
-
readonly event_id: string;
|
|
21056
|
-
readonly timestamp: string;
|
|
21057
|
-
readonly duty_raw: io.flow.internal.v0.models.DutyRaw;
|
|
21058
|
-
}
|
|
21059
|
-
|
|
21060
20836
|
interface DutySimpleExpression {
|
|
21061
20837
|
readonly discriminator: 'duty_simple_expression';
|
|
21062
20838
|
readonly type: io.flow.internal.v0.enums.DutySimpleExpressionType;
|
|
@@ -21091,37 +20867,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21091
20867
|
readonly duty_transaction: io.flow.internal.v0.models.DutyTransaction;
|
|
21092
20868
|
}
|
|
21093
20869
|
|
|
21094
|
-
interface EldarItem {
|
|
21095
|
-
readonly id: string;
|
|
21096
|
-
readonly number: string;
|
|
21097
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21098
|
-
readonly description?: string;
|
|
21099
|
-
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
21100
|
-
readonly added_on: string;
|
|
21101
|
-
}
|
|
21102
|
-
|
|
21103
|
-
interface EldarItemDeleted {
|
|
21104
|
-
readonly discriminator: 'eldar_item_deleted';
|
|
21105
|
-
readonly event_id: string;
|
|
21106
|
-
readonly timestamp: string;
|
|
21107
|
-
readonly id: string;
|
|
21108
|
-
}
|
|
21109
|
-
|
|
21110
|
-
interface EldarItemForm {
|
|
21111
|
-
readonly number: string;
|
|
21112
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
21113
|
-
readonly description?: string;
|
|
21114
|
-
readonly type: io.flow.internal.v0.enums.EldarItemType;
|
|
21115
|
-
readonly added_on: string;
|
|
21116
|
-
}
|
|
21117
|
-
|
|
21118
|
-
interface EldarItemUpserted {
|
|
21119
|
-
readonly discriminator: 'eldar_item_upserted';
|
|
21120
|
-
readonly event_id: string;
|
|
21121
|
-
readonly timestamp: string;
|
|
21122
|
-
readonly item: io.flow.internal.v0.models.EldarItem;
|
|
21123
|
-
}
|
|
21124
|
-
|
|
21125
20870
|
interface EmailForm {
|
|
21126
20871
|
readonly to: string[];
|
|
21127
20872
|
readonly cc?: string[];
|
|
@@ -21976,7 +21721,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21976
21721
|
readonly payment_authorization_id?: string;
|
|
21977
21722
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
21978
21723
|
readonly created_at?: string;
|
|
21979
|
-
readonly has_provider_link?: boolean;
|
|
21980
21724
|
}
|
|
21981
21725
|
|
|
21982
21726
|
interface FraudReviewAuthorization {
|
|
@@ -21995,7 +21739,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21995
21739
|
readonly payment_authorization_id?: string;
|
|
21996
21740
|
readonly decline_reason?: io.flow.internal.v0.unions.DeclineReason;
|
|
21997
21741
|
readonly created_at?: string;
|
|
21998
|
-
readonly has_provider_link?: boolean;
|
|
21999
21742
|
}
|
|
22000
21743
|
|
|
22001
21744
|
interface FraudReviewAuthorizationDecision {
|
|
@@ -22481,37 +22224,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22481
22224
|
readonly tracker_id: string;
|
|
22482
22225
|
}
|
|
22483
22226
|
|
|
22484
|
-
interface HarinathItem {
|
|
22485
|
-
readonly id: string;
|
|
22486
|
-
readonly number: string;
|
|
22487
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22488
|
-
readonly description?: string;
|
|
22489
|
-
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
22490
|
-
readonly added_on: string;
|
|
22491
|
-
}
|
|
22492
|
-
|
|
22493
|
-
interface HarinathItemDeleted {
|
|
22494
|
-
readonly discriminator: 'harinath_item_deleted';
|
|
22495
|
-
readonly event_id: string;
|
|
22496
|
-
readonly timestamp: string;
|
|
22497
|
-
readonly id: string;
|
|
22498
|
-
}
|
|
22499
|
-
|
|
22500
|
-
interface HarinathItemForm {
|
|
22501
|
-
readonly number: string;
|
|
22502
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
22503
|
-
readonly description?: string;
|
|
22504
|
-
readonly type: io.flow.internal.v0.enums.HarinathItemType;
|
|
22505
|
-
readonly added_on: string;
|
|
22506
|
-
}
|
|
22507
|
-
|
|
22508
|
-
interface HarinathItemUpserted {
|
|
22509
|
-
readonly discriminator: 'harinath_item_upserted';
|
|
22510
|
-
readonly event_id: string;
|
|
22511
|
-
readonly timestamp: string;
|
|
22512
|
-
readonly item: io.flow.internal.v0.models.HarinathItem;
|
|
22513
|
-
}
|
|
22514
|
-
|
|
22515
22227
|
interface HarmonizationClassificationStatisticsData {
|
|
22516
22228
|
readonly statistics: io.flow.internal.v0.models.ClassificationStatistics;
|
|
22517
22229
|
}
|
|
@@ -22639,21 +22351,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22639
22351
|
readonly description: string;
|
|
22640
22352
|
}
|
|
22641
22353
|
|
|
22642
|
-
interface HybrisCatalogItemsImportRequest {
|
|
22643
|
-
readonly discriminator: 'hybris_catalog_items_import_request';
|
|
22644
|
-
readonly event_id: string;
|
|
22645
|
-
readonly timestamp: string;
|
|
22646
|
-
readonly organization: string;
|
|
22647
|
-
readonly request: io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
22648
|
-
}
|
|
22649
|
-
|
|
22650
|
-
interface HybrisCatalogItemsImportRequestData {
|
|
22651
|
-
readonly id: string;
|
|
22652
|
-
readonly import_id: string;
|
|
22653
|
-
readonly source_url: string;
|
|
22654
|
-
readonly filename?: string;
|
|
22655
|
-
}
|
|
22656
|
-
|
|
22657
22354
|
interface ImportCompleted {
|
|
22658
22355
|
readonly discriminator: 'import_completed';
|
|
22659
22356
|
readonly event_id: string;
|
|
@@ -22672,22 +22369,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22672
22369
|
readonly error: string;
|
|
22673
22370
|
}
|
|
22674
22371
|
|
|
22675
|
-
interface IndexAssignmentDeleted {
|
|
22676
|
-
readonly discriminator: 'index_assignment_deleted';
|
|
22677
|
-
readonly event_id: string;
|
|
22678
|
-
readonly timestamp: string;
|
|
22679
|
-
readonly organization: string;
|
|
22680
|
-
readonly id: string;
|
|
22681
|
-
}
|
|
22682
|
-
|
|
22683
|
-
interface IndexAssignmentUpserted {
|
|
22684
|
-
readonly discriminator: 'index_assignment_upserted';
|
|
22685
|
-
readonly event_id: string;
|
|
22686
|
-
readonly timestamp: string;
|
|
22687
|
-
readonly organization: string;
|
|
22688
|
-
readonly assignment: io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
22689
|
-
}
|
|
22690
|
-
|
|
22691
22372
|
interface InstallForm {
|
|
22692
22373
|
readonly token: string;
|
|
22693
22374
|
}
|
|
@@ -22976,22 +22657,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22976
22657
|
readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
22977
22658
|
}
|
|
22978
22659
|
|
|
22979
|
-
interface ItemDimensionEstimateDeletedV2 {
|
|
22980
|
-
readonly discriminator: 'item_dimension_estimate_deleted_v2';
|
|
22981
|
-
readonly event_id: string;
|
|
22982
|
-
readonly timestamp: string;
|
|
22983
|
-
readonly organization: string;
|
|
22984
|
-
readonly id: string;
|
|
22985
|
-
}
|
|
22986
|
-
|
|
22987
|
-
interface ItemDimensionEstimateUpsertedV2 {
|
|
22988
|
-
readonly discriminator: 'item_dimension_estimate_upserted_v2';
|
|
22989
|
-
readonly event_id: string;
|
|
22990
|
-
readonly timestamp: string;
|
|
22991
|
-
readonly organization: string;
|
|
22992
|
-
readonly estimate: io.flow.internal.v0.models.ItemDimensionEstimate;
|
|
22993
|
-
}
|
|
22994
|
-
|
|
22995
22660
|
interface ItemFilterResponse {
|
|
22996
22661
|
readonly filter: string;
|
|
22997
22662
|
readonly responses: io.flow.internal.v0.models.ItemFilterValueResponse[];
|
|
@@ -23007,10 +22672,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23007
22672
|
readonly values: string[];
|
|
23008
22673
|
}
|
|
23009
22674
|
|
|
23010
|
-
interface ItemForm {
|
|
23011
|
-
readonly amount?: number;
|
|
23012
|
-
}
|
|
23013
|
-
|
|
23014
22675
|
interface ItemFormImportRequest {
|
|
23015
22676
|
readonly discriminator: 'item_form_import_request';
|
|
23016
22677
|
readonly event_id: string;
|
|
@@ -23195,37 +22856,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23195
22856
|
readonly descriptive_asset_urls?: string;
|
|
23196
22857
|
}
|
|
23197
22858
|
|
|
23198
|
-
interface KonstantinItem {
|
|
23199
|
-
readonly id: string;
|
|
23200
|
-
readonly number: string;
|
|
23201
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
23202
|
-
readonly description?: string;
|
|
23203
|
-
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
23204
|
-
readonly added_on: string;
|
|
23205
|
-
}
|
|
23206
|
-
|
|
23207
|
-
interface KonstantinItemDeleted {
|
|
23208
|
-
readonly discriminator: 'konstantin_item_deleted';
|
|
23209
|
-
readonly event_id: string;
|
|
23210
|
-
readonly timestamp: string;
|
|
23211
|
-
readonly id: string;
|
|
23212
|
-
}
|
|
23213
|
-
|
|
23214
|
-
interface KonstantinItemForm {
|
|
23215
|
-
readonly number: string;
|
|
23216
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
23217
|
-
readonly description?: string;
|
|
23218
|
-
readonly type: io.flow.internal.v0.enums.KonstantinItemType;
|
|
23219
|
-
readonly added_on: string;
|
|
23220
|
-
}
|
|
23221
|
-
|
|
23222
|
-
interface KonstantinItemUpserted {
|
|
23223
|
-
readonly discriminator: 'konstantin_item_upserted';
|
|
23224
|
-
readonly event_id: string;
|
|
23225
|
-
readonly timestamp: string;
|
|
23226
|
-
readonly item: io.flow.internal.v0.models.KonstantinItem;
|
|
23227
|
-
}
|
|
23228
|
-
|
|
23229
22859
|
interface LabProjectSettings {
|
|
23230
22860
|
readonly id: string;
|
|
23231
22861
|
readonly flow_lab_project_key: string;
|
|
@@ -23289,7 +22919,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23289
22919
|
|
|
23290
22920
|
interface LabelGenerationSettings {
|
|
23291
22921
|
readonly id: string;
|
|
23292
|
-
readonly item_identifier?: string;
|
|
23293
22922
|
readonly auto_generate_query?: string;
|
|
23294
22923
|
readonly commercial_invoice_only_query?: string;
|
|
23295
22924
|
}
|
|
@@ -24249,37 +23878,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24249
23878
|
readonly id: string;
|
|
24250
23879
|
}
|
|
24251
23880
|
|
|
24252
|
-
interface MatiasItem {
|
|
24253
|
-
readonly id: string;
|
|
24254
|
-
readonly number: string;
|
|
24255
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24256
|
-
readonly description?: string;
|
|
24257
|
-
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
24258
|
-
readonly added_on: string;
|
|
24259
|
-
}
|
|
24260
|
-
|
|
24261
|
-
interface MatiasItemDeleted {
|
|
24262
|
-
readonly discriminator: 'matias_item_deleted';
|
|
24263
|
-
readonly event_id: string;
|
|
24264
|
-
readonly timestamp: string;
|
|
24265
|
-
readonly id: string;
|
|
24266
|
-
}
|
|
24267
|
-
|
|
24268
|
-
interface MatiasItemForm {
|
|
24269
|
-
readonly number: string;
|
|
24270
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24271
|
-
readonly description?: string;
|
|
24272
|
-
readonly type: io.flow.internal.v0.enums.MatiasItemType;
|
|
24273
|
-
readonly added_on: string;
|
|
24274
|
-
}
|
|
24275
|
-
|
|
24276
|
-
interface MatiasItemUpserted {
|
|
24277
|
-
readonly discriminator: 'matias_item_upserted';
|
|
24278
|
-
readonly event_id: string;
|
|
24279
|
-
readonly timestamp: string;
|
|
24280
|
-
readonly item: io.flow.internal.v0.models.MatiasItem;
|
|
24281
|
-
}
|
|
24282
|
-
|
|
24283
23881
|
interface Merchant {
|
|
24284
23882
|
readonly id: string;
|
|
24285
23883
|
readonly account: io.flow.internal.v0.models.AccountReference;
|
|
@@ -24302,6 +23900,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24302
23900
|
readonly id: string;
|
|
24303
23901
|
}
|
|
24304
23902
|
|
|
23903
|
+
interface MerchantDetails {
|
|
23904
|
+
readonly name: string;
|
|
23905
|
+
}
|
|
23906
|
+
|
|
24305
23907
|
interface MerchantFees {
|
|
24306
23908
|
readonly duty_guarantee: number;
|
|
24307
23909
|
readonly mor: number;
|
|
@@ -24429,73 +24031,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24429
24031
|
readonly proposition: io.flow.internal.v0.models.MetadataProposition;
|
|
24430
24032
|
}
|
|
24431
24033
|
|
|
24432
|
-
interface MichaelyanItem {
|
|
24433
|
-
readonly id: string;
|
|
24434
|
-
readonly number: string;
|
|
24435
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24436
|
-
readonly description?: string;
|
|
24437
|
-
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
24438
|
-
readonly added_on: string;
|
|
24439
|
-
}
|
|
24440
|
-
|
|
24441
|
-
interface MichaelyanItemDeleted {
|
|
24442
|
-
readonly discriminator: 'michaelyan_item_deleted';
|
|
24443
|
-
readonly event_id: string;
|
|
24444
|
-
readonly timestamp: string;
|
|
24445
|
-
readonly id: string;
|
|
24446
|
-
}
|
|
24447
|
-
|
|
24448
|
-
interface MichaelyanItemForm {
|
|
24449
|
-
readonly number: string;
|
|
24450
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24451
|
-
readonly description?: string;
|
|
24452
|
-
readonly type: io.flow.internal.v0.enums.MichaelyanItemType;
|
|
24453
|
-
readonly added_on: string;
|
|
24454
|
-
}
|
|
24455
|
-
|
|
24456
|
-
interface MichaelyanItemUpserted {
|
|
24457
|
-
readonly discriminator: 'michaelyan_item_upserted';
|
|
24458
|
-
readonly event_id: string;
|
|
24459
|
-
readonly timestamp: string;
|
|
24460
|
-
readonly item: io.flow.internal.v0.models.MichaelyanItem;
|
|
24461
|
-
}
|
|
24462
|
-
|
|
24463
|
-
interface MiljenkoItem {
|
|
24464
|
-
readonly id: string;
|
|
24465
|
-
readonly number: string;
|
|
24466
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24467
|
-
readonly description?: string;
|
|
24468
|
-
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
24469
|
-
readonly added_on: string;
|
|
24470
|
-
}
|
|
24471
|
-
|
|
24472
|
-
interface MiljenkoItemDeleted {
|
|
24473
|
-
readonly discriminator: 'miljenko_item_deleted';
|
|
24474
|
-
readonly event_id: string;
|
|
24475
|
-
readonly timestamp: string;
|
|
24476
|
-
readonly id: string;
|
|
24477
|
-
}
|
|
24478
|
-
|
|
24479
|
-
interface MiljenkoItemForm {
|
|
24480
|
-
readonly number: string;
|
|
24481
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
24482
|
-
readonly description?: string;
|
|
24483
|
-
readonly type: io.flow.internal.v0.enums.MiljenkoItemType;
|
|
24484
|
-
readonly added_on: string;
|
|
24485
|
-
}
|
|
24486
|
-
|
|
24487
|
-
interface MiljenkoItemUpserted {
|
|
24488
|
-
readonly discriminator: 'miljenko_item_upserted';
|
|
24489
|
-
readonly event_id: string;
|
|
24490
|
-
readonly timestamp: string;
|
|
24491
|
-
readonly item: io.flow.internal.v0.models.MiljenkoItem;
|
|
24492
|
-
}
|
|
24493
|
-
|
|
24494
|
-
interface MoneyPercentage {
|
|
24495
|
-
readonly discriminator: 'percentage';
|
|
24496
|
-
readonly percent: number;
|
|
24497
|
-
}
|
|
24498
|
-
|
|
24499
24034
|
interface NegativeDebitMetrics {
|
|
24500
24035
|
readonly current_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
24501
24036
|
readonly first_attempt: io.flow.internal.v0.models.AttemptStatistics;
|
|
@@ -24783,6 +24318,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24783
24318
|
readonly disputes: io.flow.internal.v0.models.DisputeDetail[];
|
|
24784
24319
|
}
|
|
24785
24320
|
|
|
24321
|
+
interface OrderEditSummary {
|
|
24322
|
+
readonly edited_at: string;
|
|
24323
|
+
}
|
|
24324
|
+
|
|
24786
24325
|
interface OrderFulfillmentDeleted {
|
|
24787
24326
|
readonly discriminator: 'order_fulfillment_deleted';
|
|
24788
24327
|
readonly event_id: string;
|
|
@@ -25440,6 +24979,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25440
24979
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordIdentifiers;
|
|
25441
24980
|
readonly created_at: string;
|
|
25442
24981
|
readonly updated_at: string;
|
|
24982
|
+
readonly posted_at?: string;
|
|
25443
24983
|
}
|
|
25444
24984
|
|
|
25445
24985
|
interface OtherRecordAccount {
|
|
@@ -25538,7 +25078,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25538
25078
|
}
|
|
25539
25079
|
|
|
25540
25080
|
interface OtherRecordOrderSummary {
|
|
25541
|
-
readonly organization: io.flow.
|
|
25081
|
+
readonly organization: io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
25542
25082
|
readonly number: string;
|
|
25543
25083
|
readonly identifiers: io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
25544
25084
|
}
|
|
@@ -25547,6 +25087,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25547
25087
|
readonly shopify_order_id?: string;
|
|
25548
25088
|
}
|
|
25549
25089
|
|
|
25090
|
+
interface OtherRecordOrganizationSummary {
|
|
25091
|
+
readonly id: string;
|
|
25092
|
+
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
25093
|
+
}
|
|
25094
|
+
|
|
25550
25095
|
interface OtherRecordUpserted {
|
|
25551
25096
|
readonly discriminator: 'other_record_upserted';
|
|
25552
25097
|
readonly event_id: string;
|
|
@@ -26124,52 +25669,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26124
25669
|
readonly quote_request: io.flow.internal.v0.models.QuoteRequest;
|
|
26125
25670
|
}
|
|
26126
25671
|
|
|
26127
|
-
interface PricingIndicator {
|
|
26128
|
-
readonly discriminator: 'pricing_indicator';
|
|
26129
|
-
readonly event_id: string;
|
|
26130
|
-
readonly timestamp: string;
|
|
26131
|
-
readonly organization: string;
|
|
26132
|
-
readonly published_from: io.flow.internal.v0.enums.ServiceName;
|
|
26133
|
-
readonly status: io.flow.internal.v0.enums.PricingIndicatorStatus;
|
|
26134
|
-
readonly event_identifier: string;
|
|
26135
|
-
readonly details: io.flow.internal.v0.models.Details;
|
|
26136
|
-
}
|
|
26137
|
-
|
|
26138
|
-
interface PricingIndicatorDynamo {
|
|
26139
|
-
readonly organization_id: string;
|
|
26140
|
-
readonly item_number: string;
|
|
26141
|
-
readonly experience_key: string;
|
|
26142
|
-
readonly upserted_at: string;
|
|
26143
|
-
readonly time_elapsed_since_upserted: number;
|
|
26144
|
-
readonly event_identifier: string;
|
|
26145
|
-
readonly status: io.flow.pricing.indicator.internal.event.v0.enums.PricingIndicatorStatus;
|
|
26146
|
-
readonly published_at: string;
|
|
26147
|
-
readonly published_from: io.flow.pricing.indicator.internal.event.v0.enums.ServiceName;
|
|
26148
|
-
readonly expiration_time_in_epoch: number;
|
|
26149
|
-
readonly catalog_item: io.flow.common.v0.models.CatalogItemSummary;
|
|
26150
|
-
readonly experience?: io.flow.common.v0.models.ExperienceSummary;
|
|
26151
|
-
}
|
|
26152
|
-
|
|
26153
|
-
interface Principal {
|
|
26154
|
-
readonly type: io.flow.internal.v0.enums.PrincipalType;
|
|
26155
|
-
readonly amount: number;
|
|
26156
|
-
}
|
|
26157
|
-
|
|
26158
25672
|
interface PrioritizedCenterReference {
|
|
26159
25673
|
readonly center_key: string;
|
|
26160
25674
|
readonly position: number;
|
|
26161
25675
|
}
|
|
26162
25676
|
|
|
26163
|
-
interface ProcessedPaymentSummary {
|
|
26164
|
-
readonly type: io.flow.reference.v0.enums.PaymentMethodCapability;
|
|
26165
|
-
readonly amount: number;
|
|
26166
|
-
readonly currency: io.flow.reference.v0.models.Currency;
|
|
26167
|
-
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
26168
|
-
readonly card_issuer_country?: io.flow.reference.v0.models.Country;
|
|
26169
|
-
readonly shipping_address_country?: io.flow.reference.v0.models.Country;
|
|
26170
|
-
readonly billing_address_country?: io.flow.reference.v0.models.Country;
|
|
26171
|
-
}
|
|
26172
|
-
|
|
26173
25677
|
interface ProcessingTransaction {
|
|
26174
25678
|
readonly discriminator: 'processing_transaction';
|
|
26175
25679
|
readonly merchant_of_record: io.flow.common.v0.enums.MerchantOfRecord;
|
|
@@ -26375,49 +25879,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26375
25879
|
readonly quantity: number;
|
|
26376
25880
|
}
|
|
26377
25881
|
|
|
26378
|
-
interface Profit {
|
|
26379
|
-
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
26380
|
-
readonly principal: io.flow.internal.v0.models.Principal;
|
|
26381
|
-
readonly revenue: io.flow.internal.v0.models.Revenue[];
|
|
26382
|
-
readonly costs: io.flow.internal.v0.models.Cost[];
|
|
26383
|
-
readonly amount: number;
|
|
26384
|
-
readonly splits: io.flow.internal.v0.models.ProfitSplit[];
|
|
26385
|
-
}
|
|
26386
|
-
|
|
26387
|
-
interface ProfitShare {
|
|
26388
|
-
readonly order: io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
26389
|
-
readonly profits: io.flow.internal.v0.models.Profit[];
|
|
26390
|
-
}
|
|
26391
|
-
|
|
26392
|
-
interface ProfitShareOrderReference {
|
|
26393
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
26394
|
-
readonly number: string;
|
|
26395
|
-
}
|
|
26396
|
-
|
|
26397
|
-
interface ProfitSharePlan {
|
|
26398
|
-
readonly order: io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
26399
|
-
readonly streams: io.flow.internal.v0.models.ProfitStream[];
|
|
26400
|
-
}
|
|
26401
|
-
|
|
26402
|
-
interface ProfitSplit {
|
|
26403
|
-
readonly rule: io.flow.internal.v0.models.ProfitSplitRule;
|
|
26404
|
-
readonly amount: number;
|
|
26405
|
-
}
|
|
26406
|
-
|
|
26407
|
-
interface ProfitSplitRule {
|
|
26408
|
-
readonly payee: io.flow.internal.v0.enums.Party;
|
|
26409
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
26410
|
-
}
|
|
26411
|
-
|
|
26412
|
-
interface ProfitStream {
|
|
26413
|
-
readonly key: io.flow.internal.v0.enums.ProfitStreamKey;
|
|
26414
|
-
readonly description: string;
|
|
26415
|
-
readonly principal: io.flow.internal.v0.enums.PrincipalType;
|
|
26416
|
-
readonly revenue: io.flow.internal.v0.models.RevenueRule[];
|
|
26417
|
-
readonly costs: io.flow.internal.v0.models.CostRule[];
|
|
26418
|
-
readonly splits: io.flow.internal.v0.models.ProfitSplitRule[];
|
|
26419
|
-
}
|
|
26420
|
-
|
|
26421
25882
|
interface ProofOfPostingExternallyFulfilled {
|
|
26422
25883
|
readonly discriminator: 'external';
|
|
26423
25884
|
readonly external_fulfillment_proof_id: string;
|
|
@@ -26449,6 +25910,38 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26449
25910
|
readonly created_at: string;
|
|
26450
25911
|
}
|
|
26451
25912
|
|
|
25913
|
+
interface PspDistribution {
|
|
25914
|
+
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
25915
|
+
readonly percentage: number;
|
|
25916
|
+
}
|
|
25917
|
+
|
|
25918
|
+
interface PspRoutingDistribution {
|
|
25919
|
+
readonly name: string;
|
|
25920
|
+
readonly environment?: io.flow.common.v0.enums.Environment;
|
|
25921
|
+
readonly payment_methods: string[];
|
|
25922
|
+
readonly countries: string[];
|
|
25923
|
+
readonly currencies: string[];
|
|
25924
|
+
readonly region?: string;
|
|
25925
|
+
readonly mcc?: string;
|
|
25926
|
+
readonly is_returning_card?: boolean;
|
|
25927
|
+
readonly priority: number;
|
|
25928
|
+
readonly distributions: io.flow.internal.v0.models.PspDistribution[];
|
|
25929
|
+
}
|
|
25930
|
+
|
|
25931
|
+
interface PspRoutingDistributionRevision {
|
|
25932
|
+
readonly id: string;
|
|
25933
|
+
readonly description?: string;
|
|
25934
|
+
readonly psp_routing_distributions: io.flow.internal.v0.models.PspRoutingDistribution[];
|
|
25935
|
+
readonly created_at: string;
|
|
25936
|
+
readonly updated_at: string;
|
|
25937
|
+
}
|
|
25938
|
+
|
|
25939
|
+
interface PspRoutingDistributionRevisionForm {
|
|
25940
|
+
readonly previous_revision?: string;
|
|
25941
|
+
readonly description?: string;
|
|
25942
|
+
readonly psp_routing_distributions: io.flow.internal.v0.models.PspRoutingDistribution[];
|
|
25943
|
+
}
|
|
25944
|
+
|
|
26452
25945
|
interface PublicHub {
|
|
26453
25946
|
readonly id: string;
|
|
26454
25947
|
readonly code: string;
|
|
@@ -26971,6 +26464,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26971
26464
|
readonly account_number: string;
|
|
26972
26465
|
}
|
|
26973
26466
|
|
|
26467
|
+
interface ReportFilter {
|
|
26468
|
+
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
26469
|
+
}
|
|
26470
|
+
|
|
26974
26471
|
interface ReportForm {
|
|
26975
26472
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
26976
26473
|
readonly from?: string;
|
|
@@ -26979,6 +26476,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26979
26476
|
readonly organizations?: io.flow.internal.v0.models.ReportOrganizationReference[];
|
|
26980
26477
|
readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
26981
26478
|
readonly recipients?: string[];
|
|
26479
|
+
readonly filter?: io.flow.internal.v0.models.ReportFilter;
|
|
26982
26480
|
}
|
|
26983
26481
|
|
|
26984
26482
|
interface ReportMerchant {
|
|
@@ -27510,6 +27008,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27510
27008
|
readonly num_pending_decisions_transacting: number;
|
|
27511
27009
|
}
|
|
27512
27010
|
|
|
27011
|
+
interface RestrictionsDailyopsDeleted {
|
|
27012
|
+
readonly discriminator: 'restrictions_dailyops_deleted';
|
|
27013
|
+
readonly event_id: string;
|
|
27014
|
+
readonly timestamp: string;
|
|
27015
|
+
readonly organization: string;
|
|
27016
|
+
readonly id: string;
|
|
27017
|
+
}
|
|
27018
|
+
|
|
27019
|
+
interface RestrictionsDailyopsUpserted {
|
|
27020
|
+
readonly discriminator: 'restrictions_dailyops_upserted';
|
|
27021
|
+
readonly event_id: string;
|
|
27022
|
+
readonly timestamp: string;
|
|
27023
|
+
readonly restrictions_dailyops: io.flow.internal.v0.models.RestrictionsDailyops;
|
|
27024
|
+
}
|
|
27025
|
+
|
|
27513
27026
|
interface ResyncByDestinations {
|
|
27514
27027
|
readonly destinations: io.flow.reference.v0.models.Country[];
|
|
27515
27028
|
}
|
|
@@ -27596,11 +27109,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27596
27109
|
readonly refund: io.flow.payment.v0.models.RefundReference;
|
|
27597
27110
|
}
|
|
27598
27111
|
|
|
27599
|
-
interface Revenue {
|
|
27600
|
-
readonly source: io.flow.internal.v0.models.RevenueRule;
|
|
27601
|
-
readonly amount: number;
|
|
27602
|
-
}
|
|
27603
|
-
|
|
27604
27112
|
interface RevenueRecord {
|
|
27605
27113
|
readonly id: string;
|
|
27606
27114
|
readonly organization: io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
@@ -27634,11 +27142,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27634
27142
|
readonly revenue_record: io.flow.internal.v0.models.RevenueRecord;
|
|
27635
27143
|
}
|
|
27636
27144
|
|
|
27637
|
-
interface RevenueRule {
|
|
27638
|
-
readonly type: io.flow.internal.v0.enums.RevenueType;
|
|
27639
|
-
readonly rule: io.flow.internal.v0.unions.MoneyRule;
|
|
27640
|
-
}
|
|
27641
|
-
|
|
27642
27145
|
interface RoutingAccount {
|
|
27643
27146
|
readonly discriminator: 'routing_account';
|
|
27644
27147
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -27665,37 +27168,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27665
27168
|
readonly requested_by: string;
|
|
27666
27169
|
}
|
|
27667
27170
|
|
|
27668
|
-
interface SanjayItem {
|
|
27669
|
-
readonly id: string;
|
|
27670
|
-
readonly number: string;
|
|
27671
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
27672
|
-
readonly description?: string;
|
|
27673
|
-
readonly type: io.flow.internal.v0.enums.SanjayItemType;
|
|
27674
|
-
readonly added_on: string;
|
|
27675
|
-
}
|
|
27676
|
-
|
|
27677
|
-
interface SanjayItemDeleted {
|
|
27678
|
-
readonly discriminator: 'sanjay_item_deleted';
|
|
27679
|
-
readonly event_id: string;
|
|
27680
|
-
readonly timestamp: string;
|
|
27681
|
-
readonly id: string;
|
|
27682
|
-
}
|
|
27683
|
-
|
|
27684
|
-
interface SanjayItemForm {
|
|
27685
|
-
readonly number: string;
|
|
27686
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
27687
|
-
readonly description?: string;
|
|
27688
|
-
readonly type: io.flow.internal.v0.enums.SanjayItemType;
|
|
27689
|
-
readonly added_on: string;
|
|
27690
|
-
}
|
|
27691
|
-
|
|
27692
|
-
interface SanjayItemUpserted {
|
|
27693
|
-
readonly discriminator: 'sanjay_item_upserted';
|
|
27694
|
-
readonly event_id: string;
|
|
27695
|
-
readonly timestamp: string;
|
|
27696
|
-
readonly item: io.flow.internal.v0.models.SanjayItem;
|
|
27697
|
-
}
|
|
27698
|
-
|
|
27699
27171
|
interface ScheduledPayment {
|
|
27700
27172
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
27701
27173
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -27765,13 +27237,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27765
27237
|
readonly status: io.flow.experience.v0.enums.ExperienceStatus;
|
|
27766
27238
|
}
|
|
27767
27239
|
|
|
27768
|
-
interface SearchExperimentSummary {
|
|
27769
|
-
readonly discriminator: 'search_experiment_summary';
|
|
27770
|
-
readonly key: string;
|
|
27771
|
-
readonly name: string;
|
|
27772
|
-
readonly status: io.flow.experiment.internal.v0.enums.Status;
|
|
27773
|
-
}
|
|
27774
|
-
|
|
27775
27240
|
interface SearchItemSummary {
|
|
27776
27241
|
readonly discriminator: 'search_item_summary';
|
|
27777
27242
|
readonly number: string;
|
|
@@ -27964,6 +27429,49 @@ declare namespace io.flow.internal.v0.models {
|
|
|
27964
27429
|
readonly placeholder: string;
|
|
27965
27430
|
}
|
|
27966
27431
|
|
|
27432
|
+
interface ShopifyIncotermIncludes {
|
|
27433
|
+
readonly duties: boolean;
|
|
27434
|
+
readonly taxes: boolean;
|
|
27435
|
+
}
|
|
27436
|
+
|
|
27437
|
+
interface ShopifyIncotermSummaryErrorData {
|
|
27438
|
+
readonly id: string;
|
|
27439
|
+
readonly shopify_order_id: string;
|
|
27440
|
+
readonly order_number: string;
|
|
27441
|
+
readonly configuration: io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
|
|
27442
|
+
readonly includes: io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
27443
|
+
readonly reason: string;
|
|
27444
|
+
readonly order_submitted_at: string;
|
|
27445
|
+
}
|
|
27446
|
+
|
|
27447
|
+
interface ShopifyIncotermSummaryErrorPublished {
|
|
27448
|
+
readonly discriminator: 'shopify_incoterm_summary_error_published';
|
|
27449
|
+
readonly event_id: string;
|
|
27450
|
+
readonly timestamp: string;
|
|
27451
|
+
readonly organization: string;
|
|
27452
|
+
readonly data: io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
27453
|
+
}
|
|
27454
|
+
|
|
27455
|
+
interface ShopifyMarketsBestSellingProduct {
|
|
27456
|
+
readonly id: string;
|
|
27457
|
+
}
|
|
27458
|
+
|
|
27459
|
+
interface ShopifyMarketsBestSellingProductDeleted {
|
|
27460
|
+
readonly discriminator: 'shopify_markets_best_selling_product_deleted';
|
|
27461
|
+
readonly event_id: string;
|
|
27462
|
+
readonly timestamp: string;
|
|
27463
|
+
readonly organization: string;
|
|
27464
|
+
readonly id: string;
|
|
27465
|
+
}
|
|
27466
|
+
|
|
27467
|
+
interface ShopifyMarketsBestSellingProductUpserted {
|
|
27468
|
+
readonly discriminator: 'shopify_markets_best_selling_product_upserted';
|
|
27469
|
+
readonly event_id: string;
|
|
27470
|
+
readonly timestamp: string;
|
|
27471
|
+
readonly organization: string;
|
|
27472
|
+
readonly shopify_markets_best_selling_product: io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
27473
|
+
}
|
|
27474
|
+
|
|
27967
27475
|
interface ShopifyMarketsDiscrepancy {
|
|
27968
27476
|
readonly organization_id: string;
|
|
27969
27477
|
readonly count: number;
|
|
@@ -28532,37 +28040,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28532
28040
|
readonly total: number;
|
|
28533
28041
|
}
|
|
28534
28042
|
|
|
28535
|
-
interface ShrutiDemoItem {
|
|
28536
|
-
readonly id: string;
|
|
28537
|
-
readonly number: string;
|
|
28538
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
28539
|
-
readonly description?: string;
|
|
28540
|
-
readonly type: io.flow.internal.v0.enums.ShrutiDemoType;
|
|
28541
|
-
readonly added_on: string;
|
|
28542
|
-
}
|
|
28543
|
-
|
|
28544
|
-
interface ShrutiDemoItemDeleted {
|
|
28545
|
-
readonly discriminator: 'shruti_demo_item_deleted';
|
|
28546
|
-
readonly event_id: string;
|
|
28547
|
-
readonly timestamp: string;
|
|
28548
|
-
readonly id: string;
|
|
28549
|
-
}
|
|
28550
|
-
|
|
28551
|
-
interface ShrutiDemoItemForm {
|
|
28552
|
-
readonly number: string;
|
|
28553
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
28554
|
-
readonly description?: string;
|
|
28555
|
-
readonly type: io.flow.internal.v0.enums.ShrutiDemoType;
|
|
28556
|
-
readonly added_on: string;
|
|
28557
|
-
}
|
|
28558
|
-
|
|
28559
|
-
interface ShrutiDemoItemUpserted {
|
|
28560
|
-
readonly discriminator: 'shruti_demo_item_upserted';
|
|
28561
|
-
readonly event_id: string;
|
|
28562
|
-
readonly timestamp: string;
|
|
28563
|
-
readonly item: io.flow.internal.v0.models.ShrutiDemoItem;
|
|
28564
|
-
}
|
|
28565
|
-
|
|
28566
28043
|
interface SimpleAccountReference {
|
|
28567
28044
|
readonly id: string;
|
|
28568
28045
|
}
|
|
@@ -28688,6 +28165,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28688
28165
|
readonly spot_rate: io.flow.internal.v0.models.SpotRate;
|
|
28689
28166
|
}
|
|
28690
28167
|
|
|
28168
|
+
interface SppTrackerUpdateRequest {
|
|
28169
|
+
readonly id: string;
|
|
28170
|
+
readonly tracking_subscription: io.flow.internal.v0.models.TrackingSubscription;
|
|
28171
|
+
readonly created_at: string;
|
|
28172
|
+
}
|
|
28173
|
+
|
|
28174
|
+
interface SppTrackerUpdateRequestDeleted {
|
|
28175
|
+
readonly discriminator: 'spp_tracker_update_request_deleted';
|
|
28176
|
+
readonly event_id: string;
|
|
28177
|
+
readonly timestamp: string;
|
|
28178
|
+
readonly id: string;
|
|
28179
|
+
}
|
|
28180
|
+
|
|
28181
|
+
interface SppTrackerUpdateRequestUpserted {
|
|
28182
|
+
readonly discriminator: 'spp_tracker_update_request_upserted';
|
|
28183
|
+
readonly event_id: string;
|
|
28184
|
+
readonly timestamp: string;
|
|
28185
|
+
readonly spp_tracker_update_request: io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
28186
|
+
}
|
|
28187
|
+
|
|
28691
28188
|
interface StandaloneAttachment {
|
|
28692
28189
|
readonly id: string;
|
|
28693
28190
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
@@ -29026,70 +28523,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29026
28523
|
readonly values: io.flow.internal.v0.models.LabelAliases[];
|
|
29027
28524
|
}
|
|
29028
28525
|
|
|
29029
|
-
interface SvitlanaItem {
|
|
29030
|
-
readonly id: string;
|
|
29031
|
-
readonly number: string;
|
|
29032
|
-
readonly amount: number;
|
|
29033
|
-
readonly description?: string;
|
|
29034
|
-
readonly type: io.flow.internal.v0.enums.SvitlanaType;
|
|
29035
|
-
readonly added_on: string;
|
|
29036
|
-
}
|
|
29037
|
-
|
|
29038
|
-
interface SvitlanaItemDeleted {
|
|
29039
|
-
readonly discriminator: 'svitlana_item_deleted';
|
|
29040
|
-
readonly event_id: string;
|
|
29041
|
-
readonly timestamp: string;
|
|
29042
|
-
readonly id: string;
|
|
29043
|
-
}
|
|
29044
|
-
|
|
29045
|
-
interface SvitlanaItemForm {
|
|
29046
|
-
readonly number: string;
|
|
29047
|
-
readonly amount: number;
|
|
29048
|
-
readonly description?: string;
|
|
29049
|
-
readonly type: io.flow.internal.v0.enums.SvitlanaType;
|
|
29050
|
-
}
|
|
29051
|
-
|
|
29052
|
-
interface SvitlanaItemUpserted {
|
|
29053
|
-
readonly discriminator: 'svitlana_item_upserted';
|
|
29054
|
-
readonly event_id: string;
|
|
29055
|
-
readonly timestamp: string;
|
|
29056
|
-
readonly item: io.flow.internal.v0.models.SvitlanaItem;
|
|
29057
|
-
}
|
|
29058
|
-
|
|
29059
|
-
interface SvitlanaTest {
|
|
29060
|
-
readonly name: string;
|
|
29061
|
-
}
|
|
29062
|
-
|
|
29063
|
-
interface TamItem {
|
|
29064
|
-
readonly id: string;
|
|
29065
|
-
readonly number: string;
|
|
29066
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
29067
|
-
readonly description?: string;
|
|
29068
|
-
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
29069
|
-
readonly added_on: string;
|
|
29070
|
-
}
|
|
29071
|
-
|
|
29072
|
-
interface TamItemDeleted {
|
|
29073
|
-
readonly discriminator: 'tam_item_deleted';
|
|
29074
|
-
readonly event_id: string;
|
|
29075
|
-
readonly timestamp: string;
|
|
29076
|
-
readonly id: string;
|
|
29077
|
-
}
|
|
29078
|
-
|
|
29079
|
-
interface TamItemForm {
|
|
29080
|
-
readonly number: string;
|
|
29081
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
29082
|
-
readonly description?: string;
|
|
29083
|
-
readonly type: io.flow.internal.v0.enums.TamItemType;
|
|
29084
|
-
}
|
|
29085
|
-
|
|
29086
|
-
interface TamItemUpserted {
|
|
29087
|
-
readonly discriminator: 'tam_item_upserted';
|
|
29088
|
-
readonly event_id: string;
|
|
29089
|
-
readonly timestamp: string;
|
|
29090
|
-
readonly item: io.flow.internal.v0.models.TamItem;
|
|
29091
|
-
}
|
|
29092
|
-
|
|
29093
28526
|
interface TariffCodeDuty {
|
|
29094
28527
|
readonly tariff_code: string;
|
|
29095
28528
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
@@ -29282,37 +28715,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29282
28715
|
readonly name: string;
|
|
29283
28716
|
}
|
|
29284
28717
|
|
|
29285
|
-
interface ThiagoItem {
|
|
29286
|
-
readonly id: string;
|
|
29287
|
-
readonly number: string;
|
|
29288
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
29289
|
-
readonly description?: string;
|
|
29290
|
-
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
29291
|
-
readonly added_on: string;
|
|
29292
|
-
}
|
|
29293
|
-
|
|
29294
|
-
interface ThiagoItemDeleted {
|
|
29295
|
-
readonly discriminator: 'thiago_item_deleted';
|
|
29296
|
-
readonly event_id: string;
|
|
29297
|
-
readonly timestamp: string;
|
|
29298
|
-
readonly id: string;
|
|
29299
|
-
}
|
|
29300
|
-
|
|
29301
|
-
interface ThiagoItemForm {
|
|
29302
|
-
readonly number: string;
|
|
29303
|
-
readonly amount: io.flow.common.v0.models.Price;
|
|
29304
|
-
readonly description?: string;
|
|
29305
|
-
readonly type: io.flow.internal.v0.enums.ThiagoItemType;
|
|
29306
|
-
readonly added_on: string;
|
|
29307
|
-
}
|
|
29308
|
-
|
|
29309
|
-
interface ThiagoItemUpserted {
|
|
29310
|
-
readonly discriminator: 'thiago_item_upserted';
|
|
29311
|
-
readonly event_id: string;
|
|
29312
|
-
readonly timestamp: string;
|
|
29313
|
-
readonly item: io.flow.internal.v0.models.ThiagoItem;
|
|
29314
|
-
}
|
|
29315
|
-
|
|
29316
28718
|
interface ThirdPartyLogisticsPartner {
|
|
29317
28719
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
29318
28720
|
readonly warehouse_url?: string;
|
|
@@ -29448,6 +28850,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29448
28850
|
readonly job: io.flow.internal.v0.models.TrackingAssuranceJob;
|
|
29449
28851
|
}
|
|
29450
28852
|
|
|
28853
|
+
interface TrackingCarrierReturnLabel {
|
|
28854
|
+
readonly id: string;
|
|
28855
|
+
readonly carrier_tracking_number: string;
|
|
28856
|
+
readonly alternate_tracking_numbers: string[];
|
|
28857
|
+
readonly carrier_id: string;
|
|
28858
|
+
readonly outbound_label_id?: string;
|
|
28859
|
+
readonly s3file?: string;
|
|
28860
|
+
readonly origin?: any /*object*/;
|
|
28861
|
+
readonly destination?: any /*object*/;
|
|
28862
|
+
}
|
|
28863
|
+
|
|
28864
|
+
interface TrackingCarrierReturnLabelDeleted {
|
|
28865
|
+
readonly discriminator: 'tracking_carrier_return_label_deleted';
|
|
28866
|
+
readonly event_id: string;
|
|
28867
|
+
readonly timestamp: string;
|
|
28868
|
+
readonly id: string;
|
|
28869
|
+
}
|
|
28870
|
+
|
|
28871
|
+
interface TrackingCarrierReturnLabelUpserted {
|
|
28872
|
+
readonly discriminator: 'tracking_carrier_return_label_upserted';
|
|
28873
|
+
readonly event_id: string;
|
|
28874
|
+
readonly timestamp: string;
|
|
28875
|
+
readonly tracking_carrier_return_label: io.flow.internal.v0.models.TrackingCarrierReturnLabel;
|
|
28876
|
+
}
|
|
28877
|
+
|
|
29451
28878
|
interface TrackingDebugForceTransitForm {
|
|
29452
28879
|
readonly description: string;
|
|
29453
28880
|
}
|
|
@@ -29572,14 +28999,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29572
28999
|
readonly credentials: io.flow.internal.v0.unions.CarrierCredentials;
|
|
29573
29000
|
}
|
|
29574
29001
|
|
|
29575
|
-
interface TrackingRequestUpserted {
|
|
29576
|
-
readonly discriminator: 'tracking_request_upserted';
|
|
29577
|
-
readonly event_id: string;
|
|
29578
|
-
readonly timestamp: string;
|
|
29579
|
-
readonly organization: string;
|
|
29580
|
-
readonly tracking_request: io.flow.internal.v0.models.TrackingRequest;
|
|
29581
|
-
}
|
|
29582
|
-
|
|
29583
29002
|
interface TrackingResponse {
|
|
29584
29003
|
readonly carrier: string;
|
|
29585
29004
|
readonly carrier_tracking_number: string;
|
|
@@ -29587,14 +29006,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
29587
29006
|
readonly tracking_events: io.flow.internal.v0.models.TrackingEvent[];
|
|
29588
29007
|
}
|
|
29589
29008
|
|
|
29590
|
-
interface TrackingResponseUpserted {
|
|
29591
|
-
readonly discriminator: 'tracking_response_upserted';
|
|
29592
|
-
readonly event_id: string;
|
|
29593
|
-
readonly timestamp: string;
|
|
29594
|
-
readonly organization: string;
|
|
29595
|
-
readonly tracking_response: io.flow.internal.v0.models.TrackingResponse;
|
|
29596
|
-
}
|
|
29597
|
-
|
|
29598
29009
|
interface TrackingSubscription {
|
|
29599
29010
|
readonly id: string;
|
|
29600
29011
|
readonly organization_id: string;
|
|
@@ -30030,8 +29441,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30030
29441
|
| io.flow.internal.v0.models.AdyenRefundUpserted
|
|
30031
29442
|
| io.flow.internal.v0.models.AdyenDisputeUpserted
|
|
30032
29443
|
| io.flow.internal.v0.models.AdyenDisputeDeleted
|
|
30033
|
-
| io.flow.internal.v0.models.IndexAssignmentUpserted
|
|
30034
|
-
| io.flow.internal.v0.models.IndexAssignmentDeleted
|
|
30035
29444
|
| io.flow.internal.v0.models.FulfillmentUpserted
|
|
30036
29445
|
| io.flow.internal.v0.models.FulfillmentDeleted
|
|
30037
29446
|
| io.flow.internal.v0.models.MerchantUpserted
|
|
@@ -30127,18 +29536,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30127
29536
|
| io.flow.internal.v0.models.CustomerPurgeUpserted
|
|
30128
29537
|
| io.flow.internal.v0.models.CustomsDescriptionImport
|
|
30129
29538
|
| io.flow.internal.v0.models.CustomsDescriptionTariffsImport
|
|
30130
|
-
| io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2
|
|
30131
|
-
| io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2
|
|
30132
29539
|
| io.flow.internal.v0.models.DisputeUpserted
|
|
30133
29540
|
| io.flow.internal.v0.models.DisputeDeleted
|
|
30134
29541
|
| io.flow.internal.v0.models.DutyRatesPublishedV2
|
|
30135
|
-
| io.flow.internal.v0.models.DutyRateRequest
|
|
30136
|
-
| io.flow.internal.v0.models.DutyRateBulkRequest
|
|
30137
|
-
| io.flow.internal.v0.models.DutyRawUpserted
|
|
30138
|
-
| io.flow.internal.v0.models.DutyRawBulkUpserted
|
|
30139
|
-
| io.flow.internal.v0.models.DutyRateUpserted
|
|
30140
|
-
| io.flow.internal.v0.models.DutyRateResponse
|
|
30141
|
-
| io.flow.internal.v0.models.DutyRateBulkResponse
|
|
30142
29542
|
| io.flow.internal.v0.models.ItemSalesMarginDeleted
|
|
30143
29543
|
| io.flow.internal.v0.models.ItemSalesMarginUpserted
|
|
30144
29544
|
| io.flow.internal.v0.models.OrderAttributeDeleted
|
|
@@ -30210,7 +29610,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30210
29610
|
| io.flow.internal.v0.models.HarmonizationCodesImport
|
|
30211
29611
|
| io.flow.internal.v0.models.ItemClassificationCreated
|
|
30212
29612
|
| io.flow.internal.v0.models.HarmonizeFullyRequestV2
|
|
30213
|
-
| io.flow.internal.v0.models.HybrisCatalogItemsImportRequest
|
|
30214
29613
|
| io.flow.internal.v0.models.ImportCompleted
|
|
30215
29614
|
| io.flow.internal.v0.models.ImportFailed
|
|
30216
29615
|
| io.flow.internal.v0.models.TimeToClassifyUpserted
|
|
@@ -30276,6 +29675,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30276
29675
|
| io.flow.internal.v0.models.UnassignedMerchantGuidDeleted
|
|
30277
29676
|
| io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted
|
|
30278
29677
|
| io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted
|
|
29678
|
+
| io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted
|
|
29679
|
+
| io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted
|
|
30279
29680
|
| io.flow.internal.v0.models.InternalAuthorizationUpserted
|
|
30280
29681
|
| io.flow.internal.v0.models.InternalAuthorizationDeleted
|
|
30281
29682
|
| io.flow.internal.v0.models.AfterpayAuthorizationUpserted
|
|
@@ -30304,7 +29705,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30304
29705
|
| io.flow.internal.v0.models.PaypalRefundUpserted
|
|
30305
29706
|
| io.flow.internal.v0.models.PaypalDisputeUpserted
|
|
30306
29707
|
| io.flow.internal.v0.models.PaypalDisputeDeleted
|
|
30307
|
-
| io.flow.internal.v0.models.PricingIndicator
|
|
30308
29708
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted
|
|
30309
29709
|
| io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted
|
|
30310
29710
|
| io.flow.internal.v0.models.OrderRatesPublishedV3
|
|
@@ -30329,6 +29729,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30329
29729
|
| io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted
|
|
30330
29730
|
| io.flow.internal.v0.models.ScreeningStatusChangeUpserted
|
|
30331
29731
|
| io.flow.internal.v0.models.ScreeningStatusChangeDeleted
|
|
29732
|
+
| io.flow.internal.v0.models.RestrictionsDailyopsUpserted
|
|
29733
|
+
| io.flow.internal.v0.models.RestrictionsDailyopsDeleted
|
|
30332
29734
|
| io.flow.internal.v0.models.ShopifyShopUpserted
|
|
30333
29735
|
| io.flow.internal.v0.models.ShopifyShopDeleted
|
|
30334
29736
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted
|
|
@@ -30351,6 +29753,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30351
29753
|
| io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted
|
|
30352
29754
|
| io.flow.internal.v0.models.ShopifyProductBundleUpserted
|
|
30353
29755
|
| io.flow.internal.v0.models.ShopifyProductBundleDeleted
|
|
29756
|
+
| io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished
|
|
29757
|
+
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted
|
|
29758
|
+
| io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted
|
|
30354
29759
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
30355
29760
|
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
30356
29761
|
| io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted
|
|
@@ -30367,30 +29772,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30367
29772
|
| io.flow.internal.v0.models.StripeDisputeDeleted
|
|
30368
29773
|
| io.flow.internal.v0.models.LiabilityRemittancePlanUpserted
|
|
30369
29774
|
| io.flow.internal.v0.models.LiabilityRemittancePlanDeleted
|
|
30370
|
-
| io.flow.internal.v0.models.SvitlanaItemUpserted
|
|
30371
|
-
| io.flow.internal.v0.models.SvitlanaItemDeleted
|
|
30372
|
-
| io.flow.internal.v0.models.ColmItemUpserted
|
|
30373
|
-
| io.flow.internal.v0.models.ColmItemDeleted
|
|
30374
|
-
| io.flow.internal.v0.models.EldarItemUpserted
|
|
30375
|
-
| io.flow.internal.v0.models.EldarItemDeleted
|
|
30376
|
-
| io.flow.internal.v0.models.HarinathItemUpserted
|
|
30377
|
-
| io.flow.internal.v0.models.HarinathItemDeleted
|
|
30378
|
-
| io.flow.internal.v0.models.KonstantinItemUpserted
|
|
30379
|
-
| io.flow.internal.v0.models.KonstantinItemDeleted
|
|
30380
|
-
| io.flow.internal.v0.models.MatiasItemUpserted
|
|
30381
|
-
| io.flow.internal.v0.models.MatiasItemDeleted
|
|
30382
|
-
| io.flow.internal.v0.models.MichaelyanItemUpserted
|
|
30383
|
-
| io.flow.internal.v0.models.MichaelyanItemDeleted
|
|
30384
|
-
| io.flow.internal.v0.models.MiljenkoItemUpserted
|
|
30385
|
-
| io.flow.internal.v0.models.MiljenkoItemDeleted
|
|
30386
|
-
| io.flow.internal.v0.models.SanjayItemUpserted
|
|
30387
|
-
| io.flow.internal.v0.models.SanjayItemDeleted
|
|
30388
|
-
| io.flow.internal.v0.models.ShrutiDemoItemUpserted
|
|
30389
|
-
| io.flow.internal.v0.models.ShrutiDemoItemDeleted
|
|
30390
|
-
| io.flow.internal.v0.models.TamItemUpserted
|
|
30391
|
-
| io.flow.internal.v0.models.TamItemDeleted
|
|
30392
|
-
| io.flow.internal.v0.models.ThiagoItemUpserted
|
|
30393
|
-
| io.flow.internal.v0.models.ThiagoItemDeleted
|
|
30394
29775
|
| io.flow.internal.v0.models.TrackingProcessingErrorUpserted
|
|
30395
29776
|
| io.flow.internal.v0.models.TrackingProcessingErrorDeleted
|
|
30396
29777
|
| io.flow.internal.v0.models.TrackingLabelEventUpsertedV2
|
|
@@ -30405,10 +29786,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30405
29786
|
| io.flow.internal.v0.models.TrackingAssuranceJobDeleted
|
|
30406
29787
|
| io.flow.internal.v0.models.TrackingSubscriptionUpserted
|
|
30407
29788
|
| io.flow.internal.v0.models.TrackingSubscriptionDeleted
|
|
29789
|
+
| io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted
|
|
29790
|
+
| io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted
|
|
30408
29791
|
| io.flow.internal.v0.models.TrackingLabelDimensionsUpserted
|
|
30409
29792
|
| io.flow.internal.v0.models.TrackingLabelDimensionsDeleted
|
|
30410
|
-
| io.flow.internal.v0.models.TrackingRequestUpserted
|
|
30411
|
-
| io.flow.internal.v0.models.TrackingResponseUpserted
|
|
30412
29793
|
| io.flow.internal.v0.models.UserUpsertedV2
|
|
30413
29794
|
| io.flow.internal.v0.models.UserDeletedV2;
|
|
30414
29795
|
type ExplicitStatementForm =
|
|
@@ -30452,7 +29833,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30452
29833
|
| io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
30453
29834
|
type GlobalSearchResult =
|
|
30454
29835
|
| io.flow.internal.v0.models.SearchExperienceSummary
|
|
30455
|
-
| io.flow.internal.v0.models.SearchExperimentSummary
|
|
30456
29836
|
| io.flow.internal.v0.models.SearchOrderSummary
|
|
30457
29837
|
| io.flow.internal.v0.models.SearchItemSummary;
|
|
30458
29838
|
type IndexTaskType =
|
|
@@ -30497,7 +29877,6 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30497
29877
|
| io.flow.internal.v0.models.MarketingGatewayGoogleSourceSummary
|
|
30498
29878
|
| io.flow.internal.v0.models.MarketingGatewayFacebookSourceSummary
|
|
30499
29879
|
| io.flow.internal.v0.models.MarketingGatewayFlowSourceSummary;
|
|
30500
|
-
type MoneyRule = io.flow.internal.v0.models.MoneyPercentage;
|
|
30501
29880
|
type OptinPromptDisplay =
|
|
30502
29881
|
io.flow.internal.v0.models.OptinPromptCheckoutDisplay;
|
|
30503
29882
|
type OrderActionForm =
|
|
@@ -30801,6 +30180,9 @@ export type AfterpayRefundDeleted =
|
|
|
30801
30180
|
io.flow.internal.v0.models.AfterpayRefundDeleted;
|
|
30802
30181
|
export type AfterpayRefundUpserted =
|
|
30803
30182
|
io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
30183
|
+
export type AldoItem = io.flow.internal.v0.models.AldoItem;
|
|
30184
|
+
export type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
|
|
30185
|
+
export type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
|
|
30804
30186
|
export type AlertErrorSummary = io.flow.internal.v0.models.AlertErrorSummary;
|
|
30805
30187
|
export type AlertFailureSummary =
|
|
30806
30188
|
io.flow.internal.v0.models.AlertFailureSummary;
|
|
@@ -30809,8 +30191,6 @@ export type AlertFailureSummaryDetail =
|
|
|
30809
30191
|
export type AlertImportSummary = io.flow.internal.v0.models.AlertImportSummary;
|
|
30810
30192
|
export type AlertRequeueSummary =
|
|
30811
30193
|
io.flow.internal.v0.models.AlertRequeueSummary;
|
|
30812
|
-
export type AlgoliaIndexAssignment =
|
|
30813
|
-
io.flow.internal.v0.models.AlgoliaIndexAssignment;
|
|
30814
30194
|
export type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
30815
30195
|
export type AllOrganizationsMembership =
|
|
30816
30196
|
io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
@@ -30850,8 +30230,10 @@ export type AuthorizedShippingCharge =
|
|
|
30850
30230
|
io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
30851
30231
|
export type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
30852
30232
|
export type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
30233
|
+
export type BankAccount = io.flow.internal.v0.models.BankAccount;
|
|
30853
30234
|
export type BankAccountReference =
|
|
30854
30235
|
io.flow.internal.v0.models.BankAccountReference;
|
|
30236
|
+
export type BankAccountStatus = io.flow.internal.v0.enums.BankAccountStatus;
|
|
30855
30237
|
export type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
30856
30238
|
export type BankPaymentDeletedV2 =
|
|
30857
30239
|
io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
@@ -31096,6 +30478,8 @@ export type ChannelBillingStatement =
|
|
|
31096
30478
|
io.flow.internal.v0.models.ChannelBillingStatement;
|
|
31097
30479
|
export type ChannelCurrencyForm =
|
|
31098
30480
|
io.flow.internal.v0.models.ChannelCurrencyForm;
|
|
30481
|
+
export type ChannelCurrencyPairInternal =
|
|
30482
|
+
io.flow.internal.v0.models.ChannelCurrencyPairInternal;
|
|
31099
30483
|
export type ChannelCurrencySetting =
|
|
31100
30484
|
io.flow.internal.v0.models.ChannelCurrencySetting;
|
|
31101
30485
|
export type ChannelCurrencySettingDeleted =
|
|
@@ -31332,11 +30716,6 @@ export type CliLogEntry = io.flow.internal.v0.models.CliLogEntry;
|
|
|
31332
30716
|
export type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
|
|
31333
30717
|
export type ClothingAgeClassification =
|
|
31334
30718
|
io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
31335
|
-
export type ColmItem = io.flow.internal.v0.models.ColmItem;
|
|
31336
|
-
export type ColmItemDeleted = io.flow.internal.v0.models.ColmItemDeleted;
|
|
31337
|
-
export type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
|
|
31338
|
-
export type ColmItemType = io.flow.internal.v0.enums.ColmItemType;
|
|
31339
|
-
export type ColmItemUpserted = io.flow.internal.v0.models.ColmItemUpserted;
|
|
31340
30719
|
export type CommercialInvoiceComparison =
|
|
31341
30720
|
io.flow.internal.v0.models.CommercialInvoiceComparison;
|
|
31342
30721
|
export type CommercialInvoiceInternal =
|
|
@@ -31374,9 +30753,6 @@ export type ContentSchemaSummary =
|
|
|
31374
30753
|
export type ContentStatus = io.flow.internal.v0.enums.ContentStatus;
|
|
31375
30754
|
export type ContentType = io.flow.internal.v0.enums.ContentType;
|
|
31376
30755
|
export type ContentTypeCast = io.flow.internal.v0.enums.ContentTypeCast;
|
|
31377
|
-
export type Cost = io.flow.internal.v0.models.Cost;
|
|
31378
|
-
export type CostRule = io.flow.internal.v0.models.CostRule;
|
|
31379
|
-
export type CostType = io.flow.internal.v0.enums.CostType;
|
|
31380
30756
|
export type CountryPickerCountry =
|
|
31381
30757
|
io.flow.internal.v0.models.CountryPickerCountry;
|
|
31382
30758
|
export type CountryPickerCountryData =
|
|
@@ -31434,6 +30810,9 @@ export type DebugAccountingTransaction =
|
|
|
31434
30810
|
io.flow.internal.v0.models.DebugAccountingTransaction;
|
|
31435
30811
|
export type DebugAccountingTransactionType =
|
|
31436
30812
|
io.flow.internal.v0.enums.DebugAccountingTransactionType;
|
|
30813
|
+
export type DebugAdjustment = io.flow.internal.v0.models.DebugAdjustment;
|
|
30814
|
+
export type DebugBankingDetails =
|
|
30815
|
+
io.flow.internal.v0.models.DebugBankingDetails;
|
|
31437
30816
|
export type DebugDetails = io.flow.internal.v0.models.DebugDetails;
|
|
31438
30817
|
export type DebugFulfillmentDelta =
|
|
31439
30818
|
io.flow.internal.v0.models.DebugFulfillmentDelta;
|
|
@@ -31443,10 +30822,14 @@ export type DebugLabelTransactionSummary =
|
|
|
31443
30822
|
export type DebugOrder = io.flow.internal.v0.models.DebugOrder;
|
|
31444
30823
|
export type DebugOrderTransaction =
|
|
31445
30824
|
io.flow.internal.v0.models.DebugOrderTransaction;
|
|
30825
|
+
export type DebugOrderTransactionDetails =
|
|
30826
|
+
io.flow.internal.v0.models.DebugOrderTransactionDetails;
|
|
31446
30827
|
export type DebugOrderTransactionForm =
|
|
31447
30828
|
io.flow.internal.v0.models.DebugOrderTransactionForm;
|
|
31448
30829
|
export type DebugOrderTransactionFormOrderIdentifier =
|
|
31449
30830
|
io.flow.internal.v0.models.DebugOrderTransactionFormOrderIdentifier;
|
|
30831
|
+
export type DebugOriginalTransactionSummary =
|
|
30832
|
+
io.flow.internal.v0.models.DebugOriginalTransactionSummary;
|
|
31450
30833
|
export type DebugPaymentTransactionSummary =
|
|
31451
30834
|
io.flow.internal.v0.models.DebugPaymentTransactionSummary;
|
|
31452
30835
|
export type DebugTransactionDetails =
|
|
@@ -31485,9 +30868,10 @@ export type DeliveredDutyPreferenceForm =
|
|
|
31485
30868
|
export type DeminimisAdjustmentType =
|
|
31486
30869
|
io.flow.internal.v0.enums.DeminimisAdjustmentType;
|
|
31487
30870
|
export type DestinationError = io.flow.internal.v0.models.DestinationError;
|
|
31488
|
-
export type Details = io.flow.internal.v0.models.Details;
|
|
31489
30871
|
export type Dhl = io.flow.internal.v0.models.Dhl;
|
|
31490
30872
|
export type DhlEcommerce = io.flow.internal.v0.models.DhlEcommerce;
|
|
30873
|
+
export type DhlEcommerceWebhook =
|
|
30874
|
+
io.flow.internal.v0.models.DhlEcommerceWebhook;
|
|
31491
30875
|
export type Dict = io.flow.internal.v0.models.Dict;
|
|
31492
30876
|
export type DimensionEstimateOpsInput =
|
|
31493
30877
|
io.flow.internal.v0.models.DimensionEstimateOpsInput;
|
|
@@ -31557,28 +30941,17 @@ export type DutyExemptItemTypes = io.flow.internal.v0.enums.DutyExemptItemTypes;
|
|
|
31557
30941
|
export type DutyExpression = io.flow.internal.v0.unions.DutyExpression;
|
|
31558
30942
|
export type DutyInternalRate = io.flow.internal.v0.models.DutyInternalRate;
|
|
31559
30943
|
export type DutyRate = io.flow.internal.v0.models.DutyRate;
|
|
31560
|
-
export type DutyRateBulkRequest =
|
|
31561
|
-
io.flow.internal.v0.models.DutyRateBulkRequest;
|
|
31562
|
-
export type DutyRateBulkResponse =
|
|
31563
|
-
io.flow.internal.v0.models.DutyRateBulkResponse;
|
|
31564
|
-
export type DutyRateContext = io.flow.internal.v0.models.DutyRateContext;
|
|
31565
30944
|
export type DutyRateItemSummary =
|
|
31566
30945
|
io.flow.internal.v0.models.DutyRateItemSummary;
|
|
31567
|
-
export type DutyRateRequest = io.flow.internal.v0.models.DutyRateRequest;
|
|
31568
|
-
export type DutyRateResponse = io.flow.internal.v0.models.DutyRateResponse;
|
|
31569
30946
|
export type DutyRateSource = io.flow.internal.v0.enums.DutyRateSource;
|
|
31570
30947
|
export type DutyRateSummary = io.flow.internal.v0.models.DutyRateSummary;
|
|
31571
30948
|
export type DutyRateUnitOfMeasure =
|
|
31572
30949
|
io.flow.internal.v0.enums.DutyRateUnitOfMeasure;
|
|
31573
|
-
export type DutyRateUpserted = io.flow.internal.v0.models.DutyRateUpserted;
|
|
31574
30950
|
export type DutyRatesDataSummary =
|
|
31575
30951
|
io.flow.internal.v0.models.DutyRatesDataSummary;
|
|
31576
30952
|
export type DutyRatesPublishedV2 =
|
|
31577
30953
|
io.flow.internal.v0.models.DutyRatesPublishedV2;
|
|
31578
30954
|
export type DutyRaw = io.flow.internal.v0.models.DutyRaw;
|
|
31579
|
-
export type DutyRawBulkUpserted =
|
|
31580
|
-
io.flow.internal.v0.models.DutyRawBulkUpserted;
|
|
31581
|
-
export type DutyRawUpserted = io.flow.internal.v0.models.DutyRawUpserted;
|
|
31582
30955
|
export type DutySelectionRule = io.flow.internal.v0.enums.DutySelectionRule;
|
|
31583
30956
|
export type DutySimpleExpression =
|
|
31584
30957
|
io.flow.internal.v0.models.DutySimpleExpression;
|
|
@@ -31590,11 +30963,6 @@ export type DutyTransactionDeleted =
|
|
|
31590
30963
|
export type DutyTransactionType = io.flow.internal.v0.enums.DutyTransactionType;
|
|
31591
30964
|
export type DutyTransactionUpserted =
|
|
31592
30965
|
io.flow.internal.v0.models.DutyTransactionUpserted;
|
|
31593
|
-
export type EldarItem = io.flow.internal.v0.models.EldarItem;
|
|
31594
|
-
export type EldarItemDeleted = io.flow.internal.v0.models.EldarItemDeleted;
|
|
31595
|
-
export type EldarItemForm = io.flow.internal.v0.models.EldarItemForm;
|
|
31596
|
-
export type EldarItemType = io.flow.internal.v0.enums.EldarItemType;
|
|
31597
|
-
export type EldarItemUpserted = io.flow.internal.v0.models.EldarItemUpserted;
|
|
31598
30966
|
export type EmailForm = io.flow.internal.v0.models.EmailForm;
|
|
31599
30967
|
export type EmailModificationForm =
|
|
31600
30968
|
io.flow.internal.v0.models.EmailModificationForm;
|
|
@@ -31909,13 +31277,6 @@ export type GoogleShoppingSetting =
|
|
|
31909
31277
|
io.flow.internal.v0.models.GoogleShoppingSetting;
|
|
31910
31278
|
export type GoogleTagManager = io.flow.internal.v0.models.GoogleTagManager;
|
|
31911
31279
|
export type GraphqlServiceTypes = io.flow.internal.v0.enums.GraphqlServiceTypes;
|
|
31912
|
-
export type HarinathItem = io.flow.internal.v0.models.HarinathItem;
|
|
31913
|
-
export type HarinathItemDeleted =
|
|
31914
|
-
io.flow.internal.v0.models.HarinathItemDeleted;
|
|
31915
|
-
export type HarinathItemForm = io.flow.internal.v0.models.HarinathItemForm;
|
|
31916
|
-
export type HarinathItemType = io.flow.internal.v0.enums.HarinathItemType;
|
|
31917
|
-
export type HarinathItemUpserted =
|
|
31918
|
-
io.flow.internal.v0.models.HarinathItemUpserted;
|
|
31919
31280
|
export type HarmonizationClassificationStatisticsData =
|
|
31920
31281
|
io.flow.internal.v0.models.HarmonizationClassificationStatisticsData;
|
|
31921
31282
|
export type HarmonizationClassificationStatisticsPublished =
|
|
@@ -31952,16 +31313,8 @@ export type Href = io.flow.internal.v0.models.Href;
|
|
|
31952
31313
|
export type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
31953
31314
|
export type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
31954
31315
|
export type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
31955
|
-
export type HybrisCatalogItemsImportRequest =
|
|
31956
|
-
io.flow.internal.v0.models.HybrisCatalogItemsImportRequest;
|
|
31957
|
-
export type HybrisCatalogItemsImportRequestData =
|
|
31958
|
-
io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData;
|
|
31959
31316
|
export type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
|
|
31960
31317
|
export type ImportFailed = io.flow.internal.v0.models.ImportFailed;
|
|
31961
|
-
export type IndexAssignmentDeleted =
|
|
31962
|
-
io.flow.internal.v0.models.IndexAssignmentDeleted;
|
|
31963
|
-
export type IndexAssignmentUpserted =
|
|
31964
|
-
io.flow.internal.v0.models.IndexAssignmentUpserted;
|
|
31965
31318
|
export type IndexTaskType = io.flow.internal.v0.unions.IndexTaskType;
|
|
31966
31319
|
export type InlineAuthorizationParameters =
|
|
31967
31320
|
io.flow.internal.v0.unions.InlineAuthorizationParameters;
|
|
@@ -32038,16 +31391,11 @@ export type ItemClassificationV2 =
|
|
|
32038
31391
|
export type ItemCustomsDetails = io.flow.internal.v0.models.ItemCustomsDetails;
|
|
32039
31392
|
export type ItemDimensionEstimate =
|
|
32040
31393
|
io.flow.internal.v0.models.ItemDimensionEstimate;
|
|
32041
|
-
export type ItemDimensionEstimateDeletedV2 =
|
|
32042
|
-
io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2;
|
|
32043
|
-
export type ItemDimensionEstimateUpsertedV2 =
|
|
32044
|
-
io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2;
|
|
32045
31394
|
export type ItemFilterResponse = io.flow.internal.v0.models.ItemFilterResponse;
|
|
32046
31395
|
export type ItemFilterValueResponse =
|
|
32047
31396
|
io.flow.internal.v0.models.ItemFilterValueResponse;
|
|
32048
31397
|
export type ItemFilterValuesForm =
|
|
32049
31398
|
io.flow.internal.v0.models.ItemFilterValuesForm;
|
|
32050
|
-
export type ItemForm = io.flow.internal.v0.models.ItemForm;
|
|
32051
31399
|
export type ItemFormImportRequest =
|
|
32052
31400
|
io.flow.internal.v0.models.ItemFormImportRequest;
|
|
32053
31401
|
export type ItemHarmonization = io.flow.internal.v0.models.ItemHarmonization;
|
|
@@ -32089,13 +31437,6 @@ export type KlarnaAuthorizationParameters =
|
|
|
32089
31437
|
io.flow.internal.v0.models.KlarnaAuthorizationParameters;
|
|
32090
31438
|
export type KlarnaPaymentMethodCategory =
|
|
32091
31439
|
io.flow.internal.v0.models.KlarnaPaymentMethodCategory;
|
|
32092
|
-
export type KonstantinItem = io.flow.internal.v0.models.KonstantinItem;
|
|
32093
|
-
export type KonstantinItemDeleted =
|
|
32094
|
-
io.flow.internal.v0.models.KonstantinItemDeleted;
|
|
32095
|
-
export type KonstantinItemForm = io.flow.internal.v0.models.KonstantinItemForm;
|
|
32096
|
-
export type KonstantinItemType = io.flow.internal.v0.enums.KonstantinItemType;
|
|
32097
|
-
export type KonstantinItemUpserted =
|
|
32098
|
-
io.flow.internal.v0.models.KonstantinItemUpserted;
|
|
32099
31440
|
export type LabProjectSettings = io.flow.internal.v0.models.LabProjectSettings;
|
|
32100
31441
|
export type LabProjectSettingsForm =
|
|
32101
31442
|
io.flow.internal.v0.models.LabProjectSettingsForm;
|
|
@@ -32377,18 +31718,13 @@ export type MarketingGatewaySupportedChannelDetails =
|
|
|
32377
31718
|
export type MarketsOrder = io.flow.internal.v0.models.MarketsOrder;
|
|
32378
31719
|
export type MarketsOrderSummary =
|
|
32379
31720
|
io.flow.internal.v0.models.MarketsOrderSummary;
|
|
32380
|
-
export type MatiasItem = io.flow.internal.v0.models.MatiasItem;
|
|
32381
|
-
export type MatiasItemDeleted = io.flow.internal.v0.models.MatiasItemDeleted;
|
|
32382
|
-
export type MatiasItemForm = io.flow.internal.v0.models.MatiasItemForm;
|
|
32383
|
-
export type MatiasItemType = io.flow.internal.v0.enums.MatiasItemType;
|
|
32384
|
-
export type MatiasItemUpserted = io.flow.internal.v0.models.MatiasItemUpserted;
|
|
32385
31721
|
export type Merchant = io.flow.internal.v0.models.Merchant;
|
|
32386
31722
|
export type MerchantApplicationSummaries =
|
|
32387
31723
|
io.flow.internal.v0.models.MerchantApplicationSummaries;
|
|
32388
31724
|
export type MerchantApplicationSummary =
|
|
32389
31725
|
io.flow.internal.v0.models.MerchantApplicationSummary;
|
|
32390
|
-
export type MerchantCohort = io.flow.internal.v0.enums.MerchantCohort;
|
|
32391
31726
|
export type MerchantDeleted = io.flow.internal.v0.models.MerchantDeleted;
|
|
31727
|
+
export type MerchantDetails = io.flow.internal.v0.models.MerchantDetails;
|
|
32392
31728
|
export type MerchantFees = io.flow.internal.v0.models.MerchantFees;
|
|
32393
31729
|
export type MerchantGuidAssignment =
|
|
32394
31730
|
io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
@@ -32415,23 +31751,7 @@ export type MessageStamp = io.flow.internal.v0.models.MessageStamp;
|
|
|
32415
31751
|
export type MetadataProposition =
|
|
32416
31752
|
io.flow.internal.v0.models.MetadataProposition;
|
|
32417
31753
|
export type MetadataRatecard = io.flow.internal.v0.models.MetadataRatecard;
|
|
32418
|
-
export type MichaelyanItem = io.flow.internal.v0.models.MichaelyanItem;
|
|
32419
|
-
export type MichaelyanItemDeleted =
|
|
32420
|
-
io.flow.internal.v0.models.MichaelyanItemDeleted;
|
|
32421
|
-
export type MichaelyanItemForm = io.flow.internal.v0.models.MichaelyanItemForm;
|
|
32422
|
-
export type MichaelyanItemType = io.flow.internal.v0.enums.MichaelyanItemType;
|
|
32423
|
-
export type MichaelyanItemUpserted =
|
|
32424
|
-
io.flow.internal.v0.models.MichaelyanItemUpserted;
|
|
32425
|
-
export type MiljenkoItem = io.flow.internal.v0.models.MiljenkoItem;
|
|
32426
|
-
export type MiljenkoItemDeleted =
|
|
32427
|
-
io.flow.internal.v0.models.MiljenkoItemDeleted;
|
|
32428
|
-
export type MiljenkoItemForm = io.flow.internal.v0.models.MiljenkoItemForm;
|
|
32429
|
-
export type MiljenkoItemType = io.flow.internal.v0.enums.MiljenkoItemType;
|
|
32430
|
-
export type MiljenkoItemUpserted =
|
|
32431
|
-
io.flow.internal.v0.models.MiljenkoItemUpserted;
|
|
32432
31754
|
export type MixedBagWeight = io.flow.internal.v0.enums.MixedBagWeight;
|
|
32433
|
-
export type MoneyPercentage = io.flow.internal.v0.models.MoneyPercentage;
|
|
32434
|
-
export type MoneyRule = io.flow.internal.v0.unions.MoneyRule;
|
|
32435
31755
|
export type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
32436
31756
|
export type NegativeDebitMetrics =
|
|
32437
31757
|
io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
@@ -32526,6 +31846,7 @@ export type OrderCombinedShipmentForm =
|
|
|
32526
31846
|
export type OrderCombinedShipmentUpserted =
|
|
32527
31847
|
io.flow.internal.v0.models.OrderCombinedShipmentUpserted;
|
|
32528
31848
|
export type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
31849
|
+
export type OrderEditSummary = io.flow.internal.v0.models.OrderEditSummary;
|
|
32529
31850
|
export type OrderFulfillmentDeleted =
|
|
32530
31851
|
io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
32531
31852
|
export type OrderFulfillmentUpserted =
|
|
@@ -32727,6 +32048,8 @@ export type OtherRecordOrderSummary =
|
|
|
32727
32048
|
io.flow.internal.v0.models.OtherRecordOrderSummary;
|
|
32728
32049
|
export type OtherRecordOrderSummaryIdentifiers =
|
|
32729
32050
|
io.flow.internal.v0.models.OtherRecordOrderSummaryIdentifiers;
|
|
32051
|
+
export type OtherRecordOrganizationSummary =
|
|
32052
|
+
io.flow.internal.v0.models.OtherRecordOrganizationSummary;
|
|
32730
32053
|
export type OtherRecordUpserted =
|
|
32731
32054
|
io.flow.internal.v0.models.OtherRecordUpserted;
|
|
32732
32055
|
export type OtherRecordWithholdings =
|
|
@@ -32764,7 +32087,6 @@ export type PartnerTrackingSubscriptionDeleted =
|
|
|
32764
32087
|
io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted;
|
|
32765
32088
|
export type PartnerTrackingSubscriptionUpserted =
|
|
32766
32089
|
io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted;
|
|
32767
|
-
export type Party = io.flow.internal.v0.enums.Party;
|
|
32768
32090
|
export type Passphrase = io.flow.internal.v0.models.Passphrase;
|
|
32769
32091
|
export type PassphraseForm = io.flow.internal.v0.models.PassphraseForm;
|
|
32770
32092
|
export type PassphraseSummary = io.flow.internal.v0.models.PassphraseSummary;
|
|
@@ -32865,17 +32187,8 @@ export type PregeneratedQuote = io.flow.internal.v0.models.PregeneratedQuote;
|
|
|
32865
32187
|
export type PregeneratedRequestEvent =
|
|
32866
32188
|
io.flow.internal.v0.models.PregeneratedRequestEvent;
|
|
32867
32189
|
export type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
32868
|
-
export type PricingIndicator = io.flow.internal.v0.models.PricingIndicator;
|
|
32869
|
-
export type PricingIndicatorDynamo =
|
|
32870
|
-
io.flow.internal.v0.models.PricingIndicatorDynamo;
|
|
32871
|
-
export type PricingIndicatorStatus =
|
|
32872
|
-
io.flow.internal.v0.enums.PricingIndicatorStatus;
|
|
32873
|
-
export type Principal = io.flow.internal.v0.models.Principal;
|
|
32874
|
-
export type PrincipalType = io.flow.internal.v0.enums.PrincipalType;
|
|
32875
32190
|
export type PrioritizedCenterReference =
|
|
32876
32191
|
io.flow.internal.v0.models.PrioritizedCenterReference;
|
|
32877
|
-
export type ProcessedPaymentSummary =
|
|
32878
|
-
io.flow.internal.v0.models.ProcessedPaymentSummary;
|
|
32879
32192
|
export type ProcessingTransaction =
|
|
32880
32193
|
io.flow.internal.v0.models.ProcessingTransaction;
|
|
32881
32194
|
export type ProcessingTransactionDeleted =
|
|
@@ -32938,15 +32251,6 @@ export type ProductReviewHistory =
|
|
|
32938
32251
|
io.flow.internal.v0.models.ProductReviewHistory;
|
|
32939
32252
|
export type ProductStatus = io.flow.internal.v0.enums.ProductStatus;
|
|
32940
32253
|
export type ProductTransaction = io.flow.internal.v0.models.ProductTransaction;
|
|
32941
|
-
export type Profit = io.flow.internal.v0.models.Profit;
|
|
32942
|
-
export type ProfitShare = io.flow.internal.v0.models.ProfitShare;
|
|
32943
|
-
export type ProfitShareOrderReference =
|
|
32944
|
-
io.flow.internal.v0.models.ProfitShareOrderReference;
|
|
32945
|
-
export type ProfitSharePlan = io.flow.internal.v0.models.ProfitSharePlan;
|
|
32946
|
-
export type ProfitSplit = io.flow.internal.v0.models.ProfitSplit;
|
|
32947
|
-
export type ProfitSplitRule = io.flow.internal.v0.models.ProfitSplitRule;
|
|
32948
|
-
export type ProfitStream = io.flow.internal.v0.models.ProfitStream;
|
|
32949
|
-
export type ProfitStreamKey = io.flow.internal.v0.enums.ProfitStreamKey;
|
|
32950
32254
|
export type PromptAction = io.flow.internal.v0.enums.PromptAction;
|
|
32951
32255
|
export type PromptCheckoutDisplayPosition =
|
|
32952
32256
|
io.flow.internal.v0.enums.PromptCheckoutDisplayPosition;
|
|
@@ -32965,6 +32269,13 @@ export type ProofOfPostingShippingNotification =
|
|
|
32965
32269
|
io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
32966
32270
|
export type ProofOfPostingTimeElapsed =
|
|
32967
32271
|
io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
32272
|
+
export type PspDistribution = io.flow.internal.v0.models.PspDistribution;
|
|
32273
|
+
export type PspRoutingDistribution =
|
|
32274
|
+
io.flow.internal.v0.models.PspRoutingDistribution;
|
|
32275
|
+
export type PspRoutingDistributionRevision =
|
|
32276
|
+
io.flow.internal.v0.models.PspRoutingDistributionRevision;
|
|
32277
|
+
export type PspRoutingDistributionRevisionForm =
|
|
32278
|
+
io.flow.internal.v0.models.PspRoutingDistributionRevisionForm;
|
|
32968
32279
|
export type PublicHub = io.flow.internal.v0.models.PublicHub;
|
|
32969
32280
|
export type PublicHubForm = io.flow.internal.v0.models.PublicHubForm;
|
|
32970
32281
|
export type Quote = io.flow.internal.v0.models.Quote;
|
|
@@ -33086,6 +32397,7 @@ export type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
|
33086
32397
|
export type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
33087
32398
|
export type ReportBankAccountCleartext =
|
|
33088
32399
|
io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
32400
|
+
export type ReportFilter = io.flow.internal.v0.models.ReportFilter;
|
|
33089
32401
|
export type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
33090
32402
|
export type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
33091
32403
|
export type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
|
|
@@ -33211,6 +32523,10 @@ export type RestrictionStatusMetadata =
|
|
|
33211
32523
|
io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
33212
32524
|
export type RestrictionsDailyops =
|
|
33213
32525
|
io.flow.internal.v0.models.RestrictionsDailyops;
|
|
32526
|
+
export type RestrictionsDailyopsDeleted =
|
|
32527
|
+
io.flow.internal.v0.models.RestrictionsDailyopsDeleted;
|
|
32528
|
+
export type RestrictionsDailyopsUpserted =
|
|
32529
|
+
io.flow.internal.v0.models.RestrictionsDailyopsUpserted;
|
|
33214
32530
|
export type ResyncByDestinations =
|
|
33215
32531
|
io.flow.internal.v0.models.ResyncByDestinations;
|
|
33216
32532
|
export type ResyncByHs6Destinations =
|
|
@@ -33233,15 +32549,12 @@ export type ReturnSummary = io.flow.internal.v0.models.ReturnSummary;
|
|
|
33233
32549
|
export type ReturnTrigger = io.flow.internal.v0.unions.ReturnTrigger;
|
|
33234
32550
|
export type ReturnTriggerRefund =
|
|
33235
32551
|
io.flow.internal.v0.models.ReturnTriggerRefund;
|
|
33236
|
-
export type Revenue = io.flow.internal.v0.models.Revenue;
|
|
33237
32552
|
export type RevenueRecord = io.flow.internal.v0.models.RevenueRecord;
|
|
33238
32553
|
export type RevenueRecordDeleted =
|
|
33239
32554
|
io.flow.internal.v0.models.RevenueRecordDeleted;
|
|
33240
32555
|
export type RevenueRecordType = io.flow.internal.v0.enums.RevenueRecordType;
|
|
33241
32556
|
export type RevenueRecordUpserted =
|
|
33242
32557
|
io.flow.internal.v0.models.RevenueRecordUpserted;
|
|
33243
|
-
export type RevenueRule = io.flow.internal.v0.models.RevenueRule;
|
|
33244
|
-
export type RevenueType = io.flow.internal.v0.enums.RevenueType;
|
|
33245
32558
|
export type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
33246
32559
|
export type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
33247
32560
|
export type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
@@ -33250,11 +32563,6 @@ export type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
|
33250
32563
|
export type RoutingProcessor = io.flow.internal.v0.models.RoutingProcessor;
|
|
33251
32564
|
export type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
33252
32565
|
export type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
33253
|
-
export type SanjayItem = io.flow.internal.v0.models.SanjayItem;
|
|
33254
|
-
export type SanjayItemDeleted = io.flow.internal.v0.models.SanjayItemDeleted;
|
|
33255
|
-
export type SanjayItemForm = io.flow.internal.v0.models.SanjayItemForm;
|
|
33256
|
-
export type SanjayItemType = io.flow.internal.v0.enums.SanjayItemType;
|
|
33257
|
-
export type SanjayItemUpserted = io.flow.internal.v0.models.SanjayItemUpserted;
|
|
33258
32566
|
export type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
33259
32567
|
export type Screen = io.flow.internal.v0.models.Screen;
|
|
33260
32568
|
export type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -33270,15 +32578,12 @@ export type SearchCustomerSummary =
|
|
|
33270
32578
|
io.flow.internal.v0.models.SearchCustomerSummary;
|
|
33271
32579
|
export type SearchExperienceSummary =
|
|
33272
32580
|
io.flow.internal.v0.models.SearchExperienceSummary;
|
|
33273
|
-
export type SearchExperimentSummary =
|
|
33274
|
-
io.flow.internal.v0.models.SearchExperimentSummary;
|
|
33275
32581
|
export type SearchItemSummary = io.flow.internal.v0.models.SearchItemSummary;
|
|
33276
32582
|
export type SearchOrderSummary = io.flow.internal.v0.models.SearchOrderSummary;
|
|
33277
32583
|
export type SearchProviderExport =
|
|
33278
32584
|
io.flow.internal.v0.models.SearchProviderExport;
|
|
33279
32585
|
export type SearchTrackingSummary =
|
|
33280
32586
|
io.flow.internal.v0.models.SearchTrackingSummary;
|
|
33281
|
-
export type ServiceName = io.flow.internal.v0.enums.ServiceName;
|
|
33282
32587
|
export type SessionCountries = io.flow.internal.v0.models.SessionCountries;
|
|
33283
32588
|
export type SessionCountry = io.flow.internal.v0.models.SessionCountry;
|
|
33284
32589
|
export type SessionCountryForm = io.flow.internal.v0.models.SessionCountryForm;
|
|
@@ -33327,6 +32632,20 @@ export type ShopifyGiftCardReversalForm =
|
|
|
33327
32632
|
io.flow.internal.v0.models.ShopifyGiftCardReversalForm;
|
|
33328
32633
|
export type ShopifyGrantStatus = io.flow.internal.v0.enums.ShopifyGrantStatus;
|
|
33329
32634
|
export type ShopifyGrantsCheck = io.flow.internal.v0.models.ShopifyGrantsCheck;
|
|
32635
|
+
export type ShopifyIncotermConfiguration =
|
|
32636
|
+
io.flow.internal.v0.enums.ShopifyIncotermConfiguration;
|
|
32637
|
+
export type ShopifyIncotermIncludes =
|
|
32638
|
+
io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
32639
|
+
export type ShopifyIncotermSummaryErrorData =
|
|
32640
|
+
io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
32641
|
+
export type ShopifyIncotermSummaryErrorPublished =
|
|
32642
|
+
io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished;
|
|
32643
|
+
export type ShopifyMarketsBestSellingProduct =
|
|
32644
|
+
io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
32645
|
+
export type ShopifyMarketsBestSellingProductDeleted =
|
|
32646
|
+
io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
32647
|
+
export type ShopifyMarketsBestSellingProductUpserted =
|
|
32648
|
+
io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted;
|
|
33330
32649
|
export type ShopifyMarketsDangerousGoods =
|
|
33331
32650
|
io.flow.internal.v0.enums.ShopifyMarketsDangerousGoods;
|
|
33332
32651
|
export type ShopifyMarketsDiscrepancy =
|
|
@@ -33511,13 +32830,6 @@ export type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
|
|
33511
32830
|
export type ShopperLine = io.flow.internal.v0.models.ShopperLine;
|
|
33512
32831
|
export type ShopperLines = io.flow.internal.v0.models.ShopperLines;
|
|
33513
32832
|
export type ShopperSummary = io.flow.internal.v0.models.ShopperSummary;
|
|
33514
|
-
export type ShrutiDemoItem = io.flow.internal.v0.models.ShrutiDemoItem;
|
|
33515
|
-
export type ShrutiDemoItemDeleted =
|
|
33516
|
-
io.flow.internal.v0.models.ShrutiDemoItemDeleted;
|
|
33517
|
-
export type ShrutiDemoItemForm = io.flow.internal.v0.models.ShrutiDemoItemForm;
|
|
33518
|
-
export type ShrutiDemoItemUpserted =
|
|
33519
|
-
io.flow.internal.v0.models.ShrutiDemoItemUpserted;
|
|
33520
|
-
export type ShrutiDemoType = io.flow.internal.v0.enums.ShrutiDemoType;
|
|
33521
32833
|
export type SimpleAccountReference =
|
|
33522
32834
|
io.flow.internal.v0.models.SimpleAccountReference;
|
|
33523
32835
|
export type SimpleRoundingStrategy =
|
|
@@ -33542,6 +32854,7 @@ export type SnoozeNextActionWith =
|
|
|
33542
32854
|
io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
33543
32855
|
export type SnoozeSource = io.flow.internal.v0.models.SnoozeSource;
|
|
33544
32856
|
export type SnoozeSourceType = io.flow.internal.v0.enums.SnoozeSourceType;
|
|
32857
|
+
export type SourceTypeFilter = io.flow.internal.v0.enums.SourceTypeFilter;
|
|
33545
32858
|
export type SpotRate = io.flow.internal.v0.models.SpotRate;
|
|
33546
32859
|
export type SpotRateDeleted = io.flow.internal.v0.models.SpotRateDeleted;
|
|
33547
32860
|
export type SpotRateMetadata = io.flow.internal.v0.unions.SpotRateMetadata;
|
|
@@ -33551,6 +32864,12 @@ export type SpotRateMetadataRate =
|
|
|
33551
32864
|
io.flow.internal.v0.models.SpotRateMetadataRate;
|
|
33552
32865
|
export type SpotRateUpserted = io.flow.internal.v0.models.SpotRateUpserted;
|
|
33553
32866
|
export type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion;
|
|
32867
|
+
export type SppTrackerUpdateRequest =
|
|
32868
|
+
io.flow.internal.v0.models.SppTrackerUpdateRequest;
|
|
32869
|
+
export type SppTrackerUpdateRequestDeleted =
|
|
32870
|
+
io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted;
|
|
32871
|
+
export type SppTrackerUpdateRequestUpserted =
|
|
32872
|
+
io.flow.internal.v0.models.SppTrackerUpdateRequestUpserted;
|
|
33554
32873
|
export type StandaloneAttachment =
|
|
33555
32874
|
io.flow.internal.v0.models.StandaloneAttachment;
|
|
33556
32875
|
export type StandaloneAttachmentDeleted =
|
|
@@ -33630,19 +32949,6 @@ export type SubscriptionTransaction =
|
|
|
33630
32949
|
io.flow.internal.v0.models.SubscriptionTransaction;
|
|
33631
32950
|
export type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
33632
32951
|
export type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
33633
|
-
export type SvitlanaItem = io.flow.internal.v0.models.SvitlanaItem;
|
|
33634
|
-
export type SvitlanaItemDeleted =
|
|
33635
|
-
io.flow.internal.v0.models.SvitlanaItemDeleted;
|
|
33636
|
-
export type SvitlanaItemForm = io.flow.internal.v0.models.SvitlanaItemForm;
|
|
33637
|
-
export type SvitlanaItemUpserted =
|
|
33638
|
-
io.flow.internal.v0.models.SvitlanaItemUpserted;
|
|
33639
|
-
export type SvitlanaTest = io.flow.internal.v0.models.SvitlanaTest;
|
|
33640
|
-
export type SvitlanaType = io.flow.internal.v0.enums.SvitlanaType;
|
|
33641
|
-
export type TamItem = io.flow.internal.v0.models.TamItem;
|
|
33642
|
-
export type TamItemDeleted = io.flow.internal.v0.models.TamItemDeleted;
|
|
33643
|
-
export type TamItemForm = io.flow.internal.v0.models.TamItemForm;
|
|
33644
|
-
export type TamItemType = io.flow.internal.v0.enums.TamItemType;
|
|
33645
|
-
export type TamItemUpserted = io.flow.internal.v0.models.TamItemUpserted;
|
|
33646
32952
|
export type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
33647
32953
|
export type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
33648
32954
|
export type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|
|
@@ -33694,11 +33000,6 @@ export type TechOnboardingDescription =
|
|
|
33694
33000
|
io.flow.internal.v0.models.TechOnboardingDescription;
|
|
33695
33001
|
export type Test = io.flow.internal.v0.models.Test;
|
|
33696
33002
|
export type TestForm = io.flow.internal.v0.models.TestForm;
|
|
33697
|
-
export type ThiagoItem = io.flow.internal.v0.models.ThiagoItem;
|
|
33698
|
-
export type ThiagoItemDeleted = io.flow.internal.v0.models.ThiagoItemDeleted;
|
|
33699
|
-
export type ThiagoItemForm = io.flow.internal.v0.models.ThiagoItemForm;
|
|
33700
|
-
export type ThiagoItemType = io.flow.internal.v0.enums.ThiagoItemType;
|
|
33701
|
-
export type ThiagoItemUpserted = io.flow.internal.v0.models.ThiagoItemUpserted;
|
|
33702
33003
|
export type ThirdPartyLogisticsPartner =
|
|
33703
33004
|
io.flow.internal.v0.models.ThirdPartyLogisticsPartner;
|
|
33704
33005
|
export type ThirdPartyLogisticsPickUpTimeWindow =
|
|
@@ -33730,6 +33031,12 @@ export type TrackingAssuranceJobDeleted =
|
|
|
33730
33031
|
io.flow.internal.v0.models.TrackingAssuranceJobDeleted;
|
|
33731
33032
|
export type TrackingAssuranceJobUpserted =
|
|
33732
33033
|
io.flow.internal.v0.models.TrackingAssuranceJobUpserted;
|
|
33034
|
+
export type TrackingCarrierReturnLabel =
|
|
33035
|
+
io.flow.internal.v0.models.TrackingCarrierReturnLabel;
|
|
33036
|
+
export type TrackingCarrierReturnLabelDeleted =
|
|
33037
|
+
io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted;
|
|
33038
|
+
export type TrackingCarrierReturnLabelUpserted =
|
|
33039
|
+
io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted;
|
|
33733
33040
|
export type TrackingDebugForceTransitForm =
|
|
33734
33041
|
io.flow.internal.v0.models.TrackingDebugForceTransitForm;
|
|
33735
33042
|
export type TrackingDebugLabel = io.flow.internal.v0.models.TrackingDebugLabel;
|
|
@@ -33766,11 +33073,7 @@ export type TrackingProcessingErrorUpserted =
|
|
|
33766
33073
|
export type TrackingProcessingFailureClassification =
|
|
33767
33074
|
io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
33768
33075
|
export type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
33769
|
-
export type TrackingRequestUpserted =
|
|
33770
|
-
io.flow.internal.v0.models.TrackingRequestUpserted;
|
|
33771
33076
|
export type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|
|
33772
|
-
export type TrackingResponseUpserted =
|
|
33773
|
-
io.flow.internal.v0.models.TrackingResponseUpserted;
|
|
33774
33077
|
export type TrackingSubscription =
|
|
33775
33078
|
io.flow.internal.v0.models.TrackingSubscription;
|
|
33776
33079
|
export type TrackingSubscriptionDeleted =
|