@flowio/types 11.24.130 → 11.24.132
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 +952 -73
- package/dist/api.d.ts +366 -256
- package/package.json +2 -2
- package/src/api-internal.ts +1177 -91
- package/src/api.ts +451 -315
package/dist/api-internal.d.ts
CHANGED
|
@@ -721,6 +721,7 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
721
721
|
readonly supported_actions: io.flow.payment.gateway.v0.enums.PaymentActionType[];
|
|
722
722
|
readonly payment_capture_option?: io.flow.payment.gateway.v0.unions.PaymentCaptureOption;
|
|
723
723
|
readonly review?: io.flow.payment.gateway.v0.models.PaymentRequestReview;
|
|
724
|
+
readonly client_secret?: string;
|
|
724
725
|
}
|
|
725
726
|
interface PaymentRequestCancellationReasonOrderMissing {
|
|
726
727
|
readonly type: 'order_missing';
|
|
@@ -926,6 +927,42 @@ declare namespace io.flow.channel.v0.models {
|
|
|
926
927
|
readonly attributes?: Record<string, string>;
|
|
927
928
|
}
|
|
928
929
|
}
|
|
930
|
+
declare namespace io.flow.restrictions.v0.enums {
|
|
931
|
+
type RestrictedReviewStatus = 'in_review' | 'reviewed';
|
|
932
|
+
type RestrictionEnvironment = 'sandbox' | 'production' | 'qa';
|
|
933
|
+
type ReviewStatus = 'high_risk_in_review' | 'low_risk_in_review' | 'reviewed';
|
|
934
|
+
}
|
|
935
|
+
declare namespace io.flow.restrictions.v0.models {
|
|
936
|
+
interface CarrierRestrictions {
|
|
937
|
+
readonly carrier: string;
|
|
938
|
+
readonly regions: string[];
|
|
939
|
+
}
|
|
940
|
+
interface NeedsActionAttributes {
|
|
941
|
+
readonly reason_code: string;
|
|
942
|
+
readonly category_metafield_handles: string[];
|
|
943
|
+
readonly require_msds?: boolean;
|
|
944
|
+
}
|
|
945
|
+
interface ProductRestrictionResult {
|
|
946
|
+
readonly id: string;
|
|
947
|
+
readonly product_id: string;
|
|
948
|
+
readonly item_numbers: string[];
|
|
949
|
+
readonly prohibited_regions: string[];
|
|
950
|
+
readonly sellability_restricted_regions?: string[];
|
|
951
|
+
readonly reasons_per_region?: io.flow.restrictions.v0.models.ReasonsPerRegion[];
|
|
952
|
+
readonly review_status?: io.flow.restrictions.v0.enums.ReviewStatus;
|
|
953
|
+
readonly rules?: string[];
|
|
954
|
+
readonly updated_by?: string;
|
|
955
|
+
readonly product_restriction_id?: string;
|
|
956
|
+
readonly hs_code?: string;
|
|
957
|
+
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
958
|
+
readonly needs_action_attributes?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
|
|
959
|
+
}
|
|
960
|
+
interface ReasonsPerRegion {
|
|
961
|
+
readonly region: string;
|
|
962
|
+
readonly reasons: string[];
|
|
963
|
+
readonly review_status: io.flow.restrictions.v0.enums.RestrictedReviewStatus;
|
|
964
|
+
}
|
|
965
|
+
}
|
|
929
966
|
declare namespace io.flow.fulfillment.v0.enums {
|
|
930
967
|
type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
|
|
931
968
|
type DeliveryOptionCostDetailComponentKey = 'ratecard_base_cost' | 'ratecard_ddp_fee' | 'ratecard_fuel_surcharge' | 'ratecard_oversized_shipment_fee' | 'ratecard_rural_shipment_fee' | 'ratecard_emergency_situation_surcharge_fee' | 'ratecard_peak_surcharge_fee' | 'ratecard_duties_taxes_paid_surcharge_fee' | 'center_commercial_invoice_fee' | 'center_inbound_carton_fee' | 'center_outbound_carton_fee';
|
|
@@ -1715,7 +1752,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1715
1752
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1716
1753
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1717
1754
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1718
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
1755
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
1719
1756
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1720
1757
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1721
1758
|
type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
|
|
@@ -3808,6 +3845,7 @@ declare namespace io.flow.stripe.v0.unions {
|
|
|
3808
3845
|
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormIdeal | io.flow.stripe.v0.models.PaymentMethodFormKlarna | io.flow.stripe.v0.models.PaymentMethodFormBancontact;
|
|
3809
3846
|
}
|
|
3810
3847
|
declare namespace io.flow.label.v0.enums {
|
|
3848
|
+
type CommercialInvoiceMode = 'direct' | 'indirect';
|
|
3811
3849
|
type CostEstimateSource = 'flow' | 'channel';
|
|
3812
3850
|
type Direction = 'outbound' | 'return';
|
|
3813
3851
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
@@ -4961,6 +4999,13 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4961
4999
|
readonly shopify: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
4962
5000
|
readonly internal: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
4963
5001
|
readonly discrepancy_data: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
5002
|
+
readonly organization_metrics?: io.flow.shopify.markets.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
|
|
5003
|
+
}
|
|
5004
|
+
interface ShopifyMarketsOrganizationOrderMetrics {
|
|
5005
|
+
readonly organization_id: string;
|
|
5006
|
+
readonly shopify_order_count: number;
|
|
5007
|
+
readonly internal_order_count: number;
|
|
5008
|
+
readonly discrepancy_count?: number;
|
|
4964
5009
|
}
|
|
4965
5010
|
interface ShopifyMarketsQueuedRecord {
|
|
4966
5011
|
readonly id: string;
|
|
@@ -5069,6 +5114,9 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5069
5114
|
readonly catalog_products_count?: number;
|
|
5070
5115
|
readonly initial_product_restrictions_synced_at?: string;
|
|
5071
5116
|
}
|
|
5117
|
+
interface ShopifyTestOrder {
|
|
5118
|
+
readonly id: string;
|
|
5119
|
+
}
|
|
5072
5120
|
interface ThirdPartyLogisticsPartner {
|
|
5073
5121
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
5074
5122
|
readonly warehouse_url?: string;
|
|
@@ -5081,6 +5129,220 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5081
5129
|
readonly placeholder?: any;
|
|
5082
5130
|
}
|
|
5083
5131
|
}
|
|
5132
|
+
declare namespace io.flow.consumer.invoice.v0.enums {
|
|
5133
|
+
type B2BInvoiceType = 'self_bill_invoice' | 'invoice';
|
|
5134
|
+
type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
|
|
5135
|
+
type ConsumerInvoiceDocumentType = 'pdf';
|
|
5136
|
+
type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
|
|
5137
|
+
type TaxJurisdictionType = 'country' | 'province';
|
|
5138
|
+
type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
|
|
5139
|
+
}
|
|
5140
|
+
declare namespace io.flow.consumer.invoice.v0.models {
|
|
5141
|
+
interface B2BCreditMemo {
|
|
5142
|
+
readonly id: string;
|
|
5143
|
+
readonly number: string;
|
|
5144
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5145
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5146
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5147
|
+
readonly date: string;
|
|
5148
|
+
readonly key: string;
|
|
5149
|
+
readonly invoice: io.flow.consumer.invoice.v0.models.B2BInvoiceReference;
|
|
5150
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5151
|
+
readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
5152
|
+
readonly tax?: io.flow.common.v0.models.Money;
|
|
5153
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5154
|
+
readonly attributes: Record<string, string>;
|
|
5155
|
+
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
5156
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5157
|
+
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5158
|
+
}
|
|
5159
|
+
interface B2BInvoice {
|
|
5160
|
+
readonly id: string;
|
|
5161
|
+
readonly number: string;
|
|
5162
|
+
readonly buyer: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5163
|
+
readonly seller: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5164
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5165
|
+
readonly date: string;
|
|
5166
|
+
readonly key: string;
|
|
5167
|
+
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5168
|
+
readonly economic_title_location: io.flow.merchant.of.record.v0.enums.EconomicTitleLocation;
|
|
5169
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5170
|
+
readonly destination?: io.flow.experience.v0.models.OrderAddress;
|
|
5171
|
+
readonly tax: io.flow.common.v0.models.Money;
|
|
5172
|
+
readonly tax_lines?: io.flow.consumer.invoice.v0.models.InvoiceTaxLine[];
|
|
5173
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5174
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5175
|
+
readonly attributes: Record<string, string>;
|
|
5176
|
+
readonly estimated_delivery_date?: string;
|
|
5177
|
+
readonly b2b_invoice_type: io.flow.consumer.invoice.v0.enums.B2BInvoiceType;
|
|
5178
|
+
}
|
|
5179
|
+
interface B2BInvoiceReference {
|
|
5180
|
+
readonly id: string;
|
|
5181
|
+
readonly key: string;
|
|
5182
|
+
readonly number: string;
|
|
5183
|
+
}
|
|
5184
|
+
interface ConsumerInvoice {
|
|
5185
|
+
readonly id: string;
|
|
5186
|
+
readonly number: string;
|
|
5187
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5188
|
+
readonly date: string;
|
|
5189
|
+
readonly key: string;
|
|
5190
|
+
readonly order: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5191
|
+
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5192
|
+
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
5193
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5194
|
+
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
5195
|
+
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
5196
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5197
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5198
|
+
readonly attributes: Record<string, string>;
|
|
5199
|
+
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
5200
|
+
readonly customer_type?: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceCustomerType;
|
|
5201
|
+
readonly estimated_delivery_date?: string;
|
|
5202
|
+
}
|
|
5203
|
+
interface ConsumerInvoiceCenterReference {
|
|
5204
|
+
readonly id: string;
|
|
5205
|
+
readonly key: string;
|
|
5206
|
+
readonly name: string;
|
|
5207
|
+
readonly address: io.flow.common.v0.models.Address;
|
|
5208
|
+
}
|
|
5209
|
+
interface ConsumerInvoiceDocument {
|
|
5210
|
+
readonly type: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceDocumentType;
|
|
5211
|
+
readonly language: string;
|
|
5212
|
+
readonly url: string;
|
|
5213
|
+
}
|
|
5214
|
+
interface ConsumerInvoiceForm {
|
|
5215
|
+
readonly order_number: string;
|
|
5216
|
+
readonly attributes?: Record<string, string>;
|
|
5217
|
+
}
|
|
5218
|
+
interface ConsumerInvoiceFormByOrder {
|
|
5219
|
+
readonly attributes?: Record<string, string>;
|
|
5220
|
+
}
|
|
5221
|
+
interface ConsumerInvoiceLevy {
|
|
5222
|
+
readonly rate: number;
|
|
5223
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
5224
|
+
}
|
|
5225
|
+
interface ConsumerInvoiceLevyForm {
|
|
5226
|
+
readonly rate: number;
|
|
5227
|
+
readonly amount: number;
|
|
5228
|
+
}
|
|
5229
|
+
interface ConsumerInvoiceLineDiscount {
|
|
5230
|
+
readonly discriminator: 'discount';
|
|
5231
|
+
readonly line_id?: string;
|
|
5232
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
5233
|
+
}
|
|
5234
|
+
interface ConsumerInvoiceLineDiscountForm {
|
|
5235
|
+
readonly discriminator: 'discount';
|
|
5236
|
+
readonly price: number;
|
|
5237
|
+
}
|
|
5238
|
+
interface ConsumerInvoiceLineItem {
|
|
5239
|
+
readonly discriminator: 'item';
|
|
5240
|
+
readonly line_id?: string;
|
|
5241
|
+
readonly item: io.flow.common.v0.models.ItemReference;
|
|
5242
|
+
readonly description: string;
|
|
5243
|
+
readonly quantity: number;
|
|
5244
|
+
readonly unit_price: io.flow.common.v0.models.Price;
|
|
5245
|
+
readonly unit_discount?: io.flow.common.v0.models.Price;
|
|
5246
|
+
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
5247
|
+
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
5248
|
+
}
|
|
5249
|
+
interface ConsumerInvoiceLineItemForm {
|
|
5250
|
+
readonly discriminator: 'item';
|
|
5251
|
+
readonly item_number: string;
|
|
5252
|
+
readonly quantity: number;
|
|
5253
|
+
readonly unit_price: number;
|
|
5254
|
+
readonly unit_discount?: number;
|
|
5255
|
+
readonly unit_tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
5256
|
+
readonly unit_duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
5257
|
+
}
|
|
5258
|
+
interface ConsumerInvoiceLineShipping {
|
|
5259
|
+
readonly discriminator: 'shipping';
|
|
5260
|
+
readonly line_id?: string;
|
|
5261
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
5262
|
+
readonly discount?: io.flow.common.v0.models.Price;
|
|
5263
|
+
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
5264
|
+
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
5265
|
+
}
|
|
5266
|
+
interface ConsumerInvoiceLineShippingForm {
|
|
5267
|
+
readonly discriminator: 'shipping';
|
|
5268
|
+
readonly price: number;
|
|
5269
|
+
readonly discount?: number;
|
|
5270
|
+
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
5271
|
+
readonly duty?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
5272
|
+
}
|
|
5273
|
+
interface ConsumerInvoiceLineTip {
|
|
5274
|
+
readonly discriminator: 'tip';
|
|
5275
|
+
readonly line_id?: string;
|
|
5276
|
+
readonly price: io.flow.common.v0.models.Price;
|
|
5277
|
+
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevy;
|
|
5278
|
+
}
|
|
5279
|
+
interface ConsumerInvoiceLineTipForm {
|
|
5280
|
+
readonly discriminator: 'tip';
|
|
5281
|
+
readonly price: number;
|
|
5282
|
+
readonly tax?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceLevyForm;
|
|
5283
|
+
}
|
|
5284
|
+
interface ConsumerInvoiceOrderSummary {
|
|
5285
|
+
readonly id: string;
|
|
5286
|
+
readonly number: string;
|
|
5287
|
+
readonly submitted_at: string;
|
|
5288
|
+
}
|
|
5289
|
+
interface ConsumerInvoicePayment {
|
|
5290
|
+
readonly date: string;
|
|
5291
|
+
readonly description: string;
|
|
5292
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
5293
|
+
readonly billing_address?: io.flow.common.v0.models.BillingAddress;
|
|
5294
|
+
}
|
|
5295
|
+
interface ConsumerInvoiceReference {
|
|
5296
|
+
readonly id: string;
|
|
5297
|
+
readonly key: string;
|
|
5298
|
+
readonly number: string;
|
|
5299
|
+
}
|
|
5300
|
+
interface CreditMemo {
|
|
5301
|
+
readonly id: string;
|
|
5302
|
+
readonly number?: string;
|
|
5303
|
+
readonly status: io.flow.consumer.invoice.v0.enums.ConsumerInvoiceStatus;
|
|
5304
|
+
readonly date: string;
|
|
5305
|
+
readonly key: string;
|
|
5306
|
+
readonly invoice: io.flow.consumer.invoice.v0.models.ConsumerInvoiceReference;
|
|
5307
|
+
readonly entity: io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
5308
|
+
readonly payments: io.flow.consumer.invoice.v0.models.ConsumerInvoicePayment[];
|
|
5309
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLine[];
|
|
5310
|
+
readonly documents: io.flow.consumer.invoice.v0.models.ConsumerInvoiceDocument[];
|
|
5311
|
+
readonly attributes: Record<string, string>;
|
|
5312
|
+
readonly tax_registration?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
5313
|
+
readonly center?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceCenterReference;
|
|
5314
|
+
readonly order?: io.flow.consumer.invoice.v0.models.ConsumerInvoiceOrderSummary;
|
|
5315
|
+
}
|
|
5316
|
+
interface CreditMemoForm {
|
|
5317
|
+
readonly refund_id?: string;
|
|
5318
|
+
readonly refund_key?: string;
|
|
5319
|
+
readonly refund_identifier?: string;
|
|
5320
|
+
readonly lines: io.flow.consumer.invoice.v0.unions.ConsumerInvoiceLineForm[];
|
|
5321
|
+
readonly attributes?: Record<string, string>;
|
|
5322
|
+
}
|
|
5323
|
+
interface InvoiceExport {
|
|
5324
|
+
readonly id: string;
|
|
5325
|
+
}
|
|
5326
|
+
interface InvoiceExportForm {
|
|
5327
|
+
readonly date_from?: string;
|
|
5328
|
+
readonly date_to?: string;
|
|
5329
|
+
}
|
|
5330
|
+
interface InvoiceTaxLine {
|
|
5331
|
+
readonly line_id: string;
|
|
5332
|
+
readonly tax_breakdown: io.flow.consumer.invoice.v0.models.TaxBreakdown[];
|
|
5333
|
+
}
|
|
5334
|
+
interface TaxBreakdown {
|
|
5335
|
+
readonly label: string;
|
|
5336
|
+
readonly calculated_tax: io.flow.common.v0.models.Money;
|
|
5337
|
+
readonly rate: number;
|
|
5338
|
+
readonly line_total: io.flow.common.v0.models.Money;
|
|
5339
|
+
readonly jurisdiction_type: io.flow.consumer.invoice.v0.enums.TaxJurisdictionType;
|
|
5340
|
+
}
|
|
5341
|
+
}
|
|
5342
|
+
declare namespace io.flow.consumer.invoice.v0.unions {
|
|
5343
|
+
type ConsumerInvoiceLine = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItem | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscount | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShipping | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTip;
|
|
5344
|
+
type ConsumerInvoiceLineForm = io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineItemForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineDiscountForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineShippingForm | io.flow.consumer.invoice.v0.models.ConsumerInvoiceLineTipForm;
|
|
5345
|
+
}
|
|
5084
5346
|
declare namespace io.flow.adyen.v0.enums {
|
|
5085
5347
|
type Channel = 'web';
|
|
5086
5348
|
type Contract = 'RECURRING';
|
|
@@ -6679,6 +6941,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6679
6941
|
readonly tags?: string;
|
|
6680
6942
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
6681
6943
|
readonly taxes_included: boolean;
|
|
6944
|
+
readonly test?: boolean;
|
|
6682
6945
|
readonly token?: string;
|
|
6683
6946
|
readonly total_weight?: number;
|
|
6684
6947
|
readonly updated_at?: string;
|
|
@@ -6691,6 +6954,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6691
6954
|
readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafield[];
|
|
6692
6955
|
readonly merchant_of_record_app_id?: number;
|
|
6693
6956
|
readonly total_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
6957
|
+
readonly current_shipping_price_set?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
6694
6958
|
readonly total_tip_received?: string;
|
|
6695
6959
|
}
|
|
6696
6960
|
interface ShopifyOrderAddress {
|
|
@@ -7157,7 +7421,7 @@ declare namespace io.flow.channel.internal.v0.enums {
|
|
|
7157
7421
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
7158
7422
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
7159
7423
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
7160
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
7424
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
|
|
7161
7425
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
7162
7426
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
7163
7427
|
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
@@ -7203,6 +7467,7 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7203
7467
|
readonly order_updated_at?: string;
|
|
7204
7468
|
readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
|
|
7205
7469
|
readonly payment_source?: io.flow.channel.internal.v0.enums.OrderPaymentSourceType;
|
|
7470
|
+
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
7206
7471
|
}
|
|
7207
7472
|
interface ChannelOrderAcceptanceDetails {
|
|
7208
7473
|
readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
@@ -7610,6 +7875,8 @@ declare namespace io.flow.common.v0.models {
|
|
|
7610
7875
|
interface MerchantOfRecordEntityRegistration {
|
|
7611
7876
|
readonly number: string;
|
|
7612
7877
|
readonly country: string;
|
|
7878
|
+
readonly province_number?: string;
|
|
7879
|
+
readonly province?: string;
|
|
7613
7880
|
}
|
|
7614
7881
|
interface Money {
|
|
7615
7882
|
readonly amount: number;
|
|
@@ -7989,9 +8256,23 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
7989
8256
|
readonly timestamp: string;
|
|
7990
8257
|
readonly shopify_product_taxonomy_attribute_value: io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
7991
8258
|
}
|
|
8259
|
+
interface ShopifyTestOrderDeleted {
|
|
8260
|
+
readonly discriminator: 'shopify_test_order_deleted';
|
|
8261
|
+
readonly event_id: string;
|
|
8262
|
+
readonly timestamp: string;
|
|
8263
|
+
readonly organization: string;
|
|
8264
|
+
readonly id: string;
|
|
8265
|
+
}
|
|
8266
|
+
interface ShopifyTestOrderUpserted {
|
|
8267
|
+
readonly discriminator: 'shopify_test_order_upserted';
|
|
8268
|
+
readonly event_id: string;
|
|
8269
|
+
readonly timestamp: string;
|
|
8270
|
+
readonly organization: string;
|
|
8271
|
+
readonly shopify_test_order: io.flow.shopify.markets.internal.v0.models.ShopifyTestOrder;
|
|
8272
|
+
}
|
|
7992
8273
|
}
|
|
7993
8274
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
7994
|
-
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted;
|
|
8275
|
+
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted;
|
|
7995
8276
|
}
|
|
7996
8277
|
declare namespace io.flow.experience.v0.enums {
|
|
7997
8278
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -8015,6 +8296,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
8015
8296
|
type OrganizationPaymentMethodTag = 'deny';
|
|
8016
8297
|
type PaymentMethodRuleContentKey = 'description';
|
|
8017
8298
|
type PriceFacetBoundary = 'min' | 'max';
|
|
8299
|
+
type PricingType = 'inclusive_pricing';
|
|
8018
8300
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
8019
8301
|
}
|
|
8020
8302
|
declare namespace io.flow.experience.v0.models {
|
|
@@ -8551,6 +8833,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8551
8833
|
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
8552
8834
|
readonly edits?: io.flow.experience.v0.models.EditSummary[];
|
|
8553
8835
|
readonly rates?: io.flow.experience.v0.models.OrderRate[];
|
|
8836
|
+
readonly pricing_type?: io.flow.experience.v0.enums.PricingType;
|
|
8554
8837
|
}
|
|
8555
8838
|
interface OrderAddress {
|
|
8556
8839
|
readonly text?: string;
|
|
@@ -9027,6 +9310,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9027
9310
|
readonly amount: io.flow.common.v0.models.Money;
|
|
9028
9311
|
readonly origin_region?: io.flow.ratecard.v0.models.RatecardRegionReference;
|
|
9029
9312
|
readonly destination_region?: io.flow.ratecard.v0.models.RatecardRegionReference;
|
|
9313
|
+
readonly destination_regions?: io.flow.ratecard.v0.models.RatecardRegionReference[];
|
|
9030
9314
|
readonly interval_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
9031
9315
|
}
|
|
9032
9316
|
interface EstimatedDimensions {
|
|
@@ -9204,6 +9488,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9204
9488
|
readonly center_id?: string;
|
|
9205
9489
|
readonly taxes_owed?: io.flow.common.v0.models.Money;
|
|
9206
9490
|
readonly duties_owed?: io.flow.common.v0.models.Money;
|
|
9491
|
+
readonly commercial_invoice_mode?: io.flow.label.v0.enums.CommercialInvoiceMode;
|
|
9207
9492
|
}
|
|
9208
9493
|
interface RatecardEstimateSummaryForm {
|
|
9209
9494
|
readonly origin?: string;
|
|
@@ -9396,6 +9681,39 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9396
9681
|
readonly from: number;
|
|
9397
9682
|
readonly to: number;
|
|
9398
9683
|
}
|
|
9684
|
+
interface ShippingRateEstimate {
|
|
9685
|
+
readonly origin_address: io.flow.common.v0.models.Address;
|
|
9686
|
+
readonly destination_address: io.flow.common.v0.models.Address;
|
|
9687
|
+
readonly shipping_date_time: string;
|
|
9688
|
+
readonly services: string[];
|
|
9689
|
+
readonly available: io.flow.ratecard.v0.models.ShippingRateEstimateAvailable[];
|
|
9690
|
+
readonly unavailable?: io.flow.ratecard.v0.models.ShippingRateEstimateUnavailable[];
|
|
9691
|
+
}
|
|
9692
|
+
interface ShippingRateEstimateAvailable {
|
|
9693
|
+
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
9694
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
9695
|
+
readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
|
|
9696
|
+
readonly total_amount: io.flow.common.v0.models.Money;
|
|
9697
|
+
readonly base_amount: io.flow.common.v0.models.Money;
|
|
9698
|
+
readonly fees: io.flow.ratecard.v0.unions.RatecardFee[];
|
|
9699
|
+
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
9700
|
+
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
9701
|
+
readonly weight_break?: number;
|
|
9702
|
+
}
|
|
9703
|
+
interface ShippingRateEstimateRequest {
|
|
9704
|
+
readonly origin_address: io.flow.common.v0.models.Address;
|
|
9705
|
+
readonly destination_address: io.flow.common.v0.models.Address;
|
|
9706
|
+
readonly package_dimensions: io.flow.common.v0.models.Dimension;
|
|
9707
|
+
readonly shipping_date_time: string;
|
|
9708
|
+
readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
|
|
9709
|
+
readonly duties_owed?: io.flow.common.v0.models.Money;
|
|
9710
|
+
readonly taxes_owed?: io.flow.common.v0.models.Money;
|
|
9711
|
+
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
9712
|
+
}
|
|
9713
|
+
interface ShippingRateEstimateUnavailable {
|
|
9714
|
+
readonly service: string;
|
|
9715
|
+
readonly reason: string;
|
|
9716
|
+
}
|
|
9399
9717
|
}
|
|
9400
9718
|
declare namespace io.flow.ratecard.v0.unions {
|
|
9401
9719
|
type FuelSurchargeRate = io.flow.ratecard.v0.models.FuelSurchargePercent | io.flow.ratecard.v0.models.FuelSurchargeByWeight;
|
|
@@ -9618,6 +9936,30 @@ declare namespace io.flow.crypto.v0.models {
|
|
|
9618
9936
|
readonly object: io.flow.crypto.v0.models.Refund;
|
|
9619
9937
|
}
|
|
9620
9938
|
}
|
|
9939
|
+
declare namespace io.flow.channel.shopify.v0.enums {
|
|
9940
|
+
type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
|
|
9941
|
+
}
|
|
9942
|
+
declare namespace io.flow.channel.shopify.v0.models {
|
|
9943
|
+
interface ChannelShopifyOrderState {
|
|
9944
|
+
readonly id: string;
|
|
9945
|
+
readonly shopify_order_summary: io.flow.channel.shopify.v0.models.ChannelShopifyOrderSummary;
|
|
9946
|
+
readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
9947
|
+
readonly reasons?: io.flow.channel.shopify.v0.models.ChannelShopifyOrderStateReason[];
|
|
9948
|
+
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
9949
|
+
}
|
|
9950
|
+
interface ChannelShopifyOrderStateReason {
|
|
9951
|
+
readonly code: io.flow.channel.shopify.v0.enums.ChannelShopifyOrderStateReasonCode;
|
|
9952
|
+
readonly message: string;
|
|
9953
|
+
}
|
|
9954
|
+
interface ChannelShopifyOrderSummary {
|
|
9955
|
+
readonly order_id: number;
|
|
9956
|
+
readonly shop_id: number;
|
|
9957
|
+
}
|
|
9958
|
+
interface ExternalOrderSummary {
|
|
9959
|
+
readonly id: string;
|
|
9960
|
+
readonly edit_ids: string[];
|
|
9961
|
+
}
|
|
9962
|
+
}
|
|
9621
9963
|
declare namespace io.flow.shopify.merchant.config.v0.models {
|
|
9622
9964
|
interface Company {
|
|
9623
9965
|
readonly discriminator: 'company';
|
|
@@ -10103,6 +10445,73 @@ declare namespace io.flow.merchant.onboarding.v0.enums {
|
|
|
10103
10445
|
type RegionType = 'state' | 'province' | 'jurisdiction';
|
|
10104
10446
|
}
|
|
10105
10447
|
declare namespace io.flow.merchant.onboarding.v0.models {
|
|
10448
|
+
interface CommonMerchantApplication {
|
|
10449
|
+
readonly discriminator: 'common_merchant_application';
|
|
10450
|
+
readonly id: string;
|
|
10451
|
+
readonly organization_id: string;
|
|
10452
|
+
readonly organization_reference: io.flow.merchant.onboarding.v0.models.OnboardingOrganizationReference;
|
|
10453
|
+
readonly status: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
10454
|
+
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
10455
|
+
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
10456
|
+
readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
10457
|
+
readonly business_url?: string;
|
|
10458
|
+
readonly business_description?: string;
|
|
10459
|
+
readonly business_address?: io.flow.common.v0.models.Address;
|
|
10460
|
+
readonly refund_percentage?: number;
|
|
10461
|
+
readonly chargeback_percentage?: number;
|
|
10462
|
+
readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
10463
|
+
readonly other_trade_sector?: string;
|
|
10464
|
+
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
10465
|
+
readonly center_address?: io.flow.common.v0.models.Address;
|
|
10466
|
+
readonly average_order_weight?: number;
|
|
10467
|
+
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10468
|
+
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
10469
|
+
readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
10470
|
+
readonly default_country_of_origin?: string;
|
|
10471
|
+
readonly rate_card: string;
|
|
10472
|
+
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
10473
|
+
readonly created_at: string;
|
|
10474
|
+
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
10475
|
+
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
10476
|
+
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
10477
|
+
readonly mcc_codes?: number[];
|
|
10478
|
+
}
|
|
10479
|
+
interface CommonMerchantApplicationForm {
|
|
10480
|
+
readonly discriminator: 'common_merchant_application_form';
|
|
10481
|
+
readonly company?: io.flow.merchant.onboarding.v0.models.MerchantInfo;
|
|
10482
|
+
readonly indirect_tax?: io.flow.merchant.onboarding.v0.models.IndirectTax;
|
|
10483
|
+
readonly ultimate_beneficiary_owner?: io.flow.merchant.onboarding.v0.models.UltimateBeneficiaryOwner;
|
|
10484
|
+
readonly business_url?: string;
|
|
10485
|
+
readonly business_description?: string;
|
|
10486
|
+
readonly business_address?: io.flow.common.v0.models.Address;
|
|
10487
|
+
readonly refund_percentage?: number;
|
|
10488
|
+
readonly chargeback_percentage?: number;
|
|
10489
|
+
readonly beneficiary_details?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
|
|
10490
|
+
readonly other_trade_sector?: string;
|
|
10491
|
+
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
10492
|
+
readonly center_address?: io.flow.common.v0.models.Address;
|
|
10493
|
+
readonly average_order_weight?: number;
|
|
10494
|
+
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10495
|
+
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
10496
|
+
readonly monthly_average_volume_amount?: number;
|
|
10497
|
+
readonly monthly_average_volume_currency?: string;
|
|
10498
|
+
readonly monthly_average_number_transactions?: number;
|
|
10499
|
+
readonly default_country_of_origin?: string;
|
|
10500
|
+
readonly shop?: io.flow.merchant.onboarding.v0.models.Shop;
|
|
10501
|
+
readonly rate_card?: string;
|
|
10502
|
+
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
10503
|
+
readonly last_month_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
10504
|
+
readonly average_order_value?: io.flow.common.v0.models.Money;
|
|
10505
|
+
readonly mcc_codes?: number[];
|
|
10506
|
+
}
|
|
10507
|
+
interface CommonMerchantApplicationPutForm {
|
|
10508
|
+
readonly discriminator: 'common_merchant_application_put_form';
|
|
10509
|
+
readonly status?: io.flow.merchant.onboarding.v0.enums.OnboardingApplicationStatus;
|
|
10510
|
+
}
|
|
10511
|
+
interface CommonMerchantApplicationsSummary {
|
|
10512
|
+
readonly discriminator: 'common_merchant_applications_summary';
|
|
10513
|
+
readonly total: number;
|
|
10514
|
+
}
|
|
10106
10515
|
interface IndirectTax {
|
|
10107
10516
|
readonly number?: string;
|
|
10108
10517
|
readonly id?: string;
|
|
@@ -10117,6 +10526,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10117
10526
|
readonly region?: io.flow.merchant.onboarding.v0.enums.RegionType;
|
|
10118
10527
|
readonly region_value?: string;
|
|
10119
10528
|
readonly category_code?: string;
|
|
10529
|
+
readonly description?: string;
|
|
10120
10530
|
}
|
|
10121
10531
|
interface MerchantOnboardingAddress {
|
|
10122
10532
|
readonly full_name?: string;
|
|
@@ -10126,6 +10536,16 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10126
10536
|
readonly postal?: string;
|
|
10127
10537
|
readonly country?: string;
|
|
10128
10538
|
}
|
|
10539
|
+
interface MerchantOnboardingBeneficiaryDetails {
|
|
10540
|
+
readonly name?: string;
|
|
10541
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
10542
|
+
readonly phone?: string;
|
|
10543
|
+
readonly email?: string;
|
|
10544
|
+
readonly bank_account_number?: string;
|
|
10545
|
+
readonly bank_routing_number?: string;
|
|
10546
|
+
readonly bank_name?: string;
|
|
10547
|
+
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
10548
|
+
}
|
|
10129
10549
|
interface MonthlyAverage {
|
|
10130
10550
|
readonly volume?: io.flow.merchant.onboarding.v0.models.MonthlyAverageVolume;
|
|
10131
10551
|
readonly number_transactions?: number;
|
|
@@ -10182,6 +10602,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10182
10602
|
readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
10183
10603
|
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
10184
10604
|
readonly average_order_weight?: number;
|
|
10605
|
+
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10185
10606
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
10186
10607
|
readonly monthly_average?: io.flow.merchant.onboarding.v0.models.MonthlyAverage;
|
|
10187
10608
|
readonly default_country_of_origin?: string;
|
|
@@ -10214,6 +10635,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10214
10635
|
readonly third_party_logistics_partners?: io.flow.merchant.onboarding.v0.models.ThirdPartyLogisticsPartner[];
|
|
10215
10636
|
readonly center_contact?: io.flow.merchant.onboarding.v0.models.OperationsContact;
|
|
10216
10637
|
readonly average_order_weight?: number;
|
|
10638
|
+
readonly average_order_weight_unit?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
10217
10639
|
readonly package_dimensions?: io.flow.common.v0.models.Dimension[];
|
|
10218
10640
|
readonly monthly_average_volume_amount?: number;
|
|
10219
10641
|
readonly monthly_average_volume_currency?: string;
|
|
@@ -10249,10 +10671,10 @@ declare namespace io.flow.merchant.onboarding.v0.models {
|
|
|
10249
10671
|
}
|
|
10250
10672
|
}
|
|
10251
10673
|
declare namespace io.flow.merchant.onboarding.v0.unions {
|
|
10252
|
-
type MerchantApplication = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication;
|
|
10253
|
-
type MerchantApplicationForm = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm;
|
|
10254
|
-
type MerchantApplicationPutForm = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm;
|
|
10255
|
-
type MerchantApplicationsSummary = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary;
|
|
10674
|
+
type MerchantApplication = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplication | io.flow.merchant.onboarding.v0.models.CommonMerchantApplication;
|
|
10675
|
+
type MerchantApplicationForm = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationForm | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationForm;
|
|
10676
|
+
type MerchantApplicationPutForm = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationPutForm | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationPutForm;
|
|
10677
|
+
type MerchantApplicationsSummary = io.flow.merchant.onboarding.v0.models.ShopifyMerchantApplicationsSummary | io.flow.merchant.onboarding.v0.models.CommonMerchantApplicationsSummary;
|
|
10256
10678
|
}
|
|
10257
10679
|
declare namespace io.flow.catalog.v0.enums {
|
|
10258
10680
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
@@ -10793,10 +11215,11 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
10793
11215
|
type PayoutAttachmentType = 'transactions';
|
|
10794
11216
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
10795
11217
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
10796
|
-
type StatementAttachmentType = 'csv';
|
|
10797
|
-
type
|
|
10798
|
-
type
|
|
10799
|
-
type
|
|
11218
|
+
type StatementAttachmentType = 'csv' | 'pdf';
|
|
11219
|
+
type StatementStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11220
|
+
type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
|
|
11221
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund';
|
|
11222
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
|
|
10800
11223
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
10801
11224
|
}
|
|
10802
11225
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -11020,6 +11443,10 @@ declare namespace io.flow.billing.v0.models {
|
|
|
11020
11443
|
readonly attachments: io.flow.billing.v0.models.Attachment[];
|
|
11021
11444
|
readonly created_at: string;
|
|
11022
11445
|
}
|
|
11446
|
+
interface StatementStatusForm {
|
|
11447
|
+
readonly code: io.flow.billing.v0.enums.StatementStatusCode;
|
|
11448
|
+
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
11449
|
+
}
|
|
11023
11450
|
interface Transaction {
|
|
11024
11451
|
readonly statement?: io.flow.billing.v0.models.BillingChannelStatementReference;
|
|
11025
11452
|
readonly id: string;
|
|
@@ -11531,6 +11958,9 @@ declare namespace io.flow.sellability.v0.enums {
|
|
|
11531
11958
|
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
11532
11959
|
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
|
|
11533
11960
|
type SellabilityRequestStatus = 'commit';
|
|
11961
|
+
type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
|
|
11962
|
+
type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
|
|
11963
|
+
type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
|
|
11534
11964
|
}
|
|
11535
11965
|
declare namespace io.flow.sellability.v0.models {
|
|
11536
11966
|
interface ProductSellability {
|
|
@@ -11539,9 +11969,10 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11539
11969
|
readonly product_id?: string;
|
|
11540
11970
|
readonly request_id: string;
|
|
11541
11971
|
readonly hs6_code: string;
|
|
11542
|
-
readonly restricted_regions: io.flow.sellability.v0.models.
|
|
11972
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
11543
11973
|
}
|
|
11544
11974
|
interface ProductSellabilityForm {
|
|
11975
|
+
readonly discriminator: 'product_sellability_form';
|
|
11545
11976
|
readonly shop_id: string;
|
|
11546
11977
|
readonly product_id?: string;
|
|
11547
11978
|
readonly name: string;
|
|
@@ -11551,18 +11982,74 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11551
11982
|
readonly status?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
|
|
11552
11983
|
readonly dry_run?: boolean;
|
|
11553
11984
|
}
|
|
11985
|
+
interface ProductSellabilityResult {
|
|
11986
|
+
readonly merchant_id?: string;
|
|
11987
|
+
readonly product_id: string;
|
|
11988
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
11989
|
+
readonly restricted_reasons: io.flow.sellability.v0.models.SellabilityRestrictedReason[];
|
|
11990
|
+
readonly needs_action_attributes?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
|
|
11991
|
+
readonly request_id?: string;
|
|
11992
|
+
readonly hs6_code?: string;
|
|
11993
|
+
}
|
|
11554
11994
|
interface SellabilityError {
|
|
11555
11995
|
readonly discriminator: 'sellability_error';
|
|
11556
11996
|
readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
11557
11997
|
readonly messages: string[];
|
|
11558
11998
|
}
|
|
11999
|
+
interface SellabilityNeedsActionAttributes {
|
|
12000
|
+
readonly reason_code: string;
|
|
12001
|
+
readonly category_metafield_handles: string[];
|
|
12002
|
+
readonly require_msds?: boolean;
|
|
12003
|
+
}
|
|
12004
|
+
interface SellabilityReasonWithRegions {
|
|
12005
|
+
readonly reason: string;
|
|
12006
|
+
readonly regions: string[];
|
|
12007
|
+
}
|
|
12008
|
+
interface SellabilityRegionResult {
|
|
12009
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
12010
|
+
readonly regions: string[];
|
|
12011
|
+
}
|
|
12012
|
+
interface SellabilityRegionWithReasons {
|
|
12013
|
+
readonly region: string;
|
|
12014
|
+
readonly reasons: string[];
|
|
12015
|
+
}
|
|
12016
|
+
interface SellabilityRestrictedReason {
|
|
12017
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
12018
|
+
readonly reasons_with_regions: io.flow.sellability.v0.models.SellabilityReasonWithRegions[];
|
|
12019
|
+
}
|
|
12020
|
+
interface SellabilityRestrictedRegion {
|
|
12021
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
12022
|
+
readonly regions: string[];
|
|
12023
|
+
}
|
|
12024
|
+
interface SellabilityScreening {
|
|
12025
|
+
readonly discriminator: 'sellability_screening';
|
|
12026
|
+
readonly product_sellability_result?: io.flow.sellability.v0.models.ProductSellabilityResult;
|
|
12027
|
+
readonly request_id: string;
|
|
12028
|
+
readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
12029
|
+
readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
12030
|
+
readonly error_message?: string;
|
|
12031
|
+
}
|
|
12032
|
+
interface SellabilityScreeningForm {
|
|
12033
|
+
readonly discriminator: 'sellability_screening_form';
|
|
12034
|
+
readonly merchant_id: string;
|
|
12035
|
+
readonly product_id: string;
|
|
12036
|
+
readonly name: string;
|
|
12037
|
+
readonly price: io.flow.common.v0.models.Money;
|
|
12038
|
+
readonly description: string;
|
|
12039
|
+
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
12040
|
+
readonly mode: io.flow.sellability.v0.enums.SellabilityScreeningMode;
|
|
12041
|
+
readonly catalog_size?: number;
|
|
12042
|
+
readonly relative_ranking?: number;
|
|
12043
|
+
readonly dry_run?: boolean;
|
|
12044
|
+
}
|
|
11559
12045
|
interface SellablilityRegionResult {
|
|
11560
12046
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
11561
12047
|
readonly regions: string[];
|
|
11562
12048
|
}
|
|
11563
12049
|
}
|
|
11564
12050
|
declare namespace io.flow.sellability.v0.unions {
|
|
11565
|
-
type
|
|
12051
|
+
type SellabilityRequest = io.flow.sellability.v0.models.ProductSellabilityForm | io.flow.sellability.v0.models.SellabilityScreeningForm;
|
|
12052
|
+
type SellabilityResponse = io.flow.sellability.v0.models.ProductSellability | io.flow.sellability.v0.models.SellabilityError | io.flow.sellability.v0.models.SellabilityScreening;
|
|
11566
12053
|
}
|
|
11567
12054
|
declare namespace io.flow.currency.v0.models {
|
|
11568
12055
|
interface Rate {
|
|
@@ -11679,6 +12166,20 @@ declare namespace io.flow.organization.v0.models {
|
|
|
11679
12166
|
readonly defaults?: io.flow.common.v0.models.OrganizationDefaults;
|
|
11680
12167
|
readonly status?: io.flow.common.v0.enums.OrganizationStatus;
|
|
11681
12168
|
}
|
|
12169
|
+
interface OrganizationTaxRegistration {
|
|
12170
|
+
readonly id: string;
|
|
12171
|
+
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
12172
|
+
readonly address: io.flow.common.v0.models.BillingAddress;
|
|
12173
|
+
readonly registration: io.flow.organization.v0.models.TaxRegistrationDetail;
|
|
12174
|
+
readonly self_billing_agreement: io.flow.organization.v0.models.SelfBillingAgreement;
|
|
12175
|
+
}
|
|
12176
|
+
interface OrganizationTaxRegistrationForm {
|
|
12177
|
+
readonly tax_number: string;
|
|
12178
|
+
readonly country: string;
|
|
12179
|
+
readonly province?: string;
|
|
12180
|
+
readonly self_billing_agreement_effective_at: string;
|
|
12181
|
+
readonly self_billing_agreement_expires_at?: string;
|
|
12182
|
+
}
|
|
11682
12183
|
interface OrganizationVersion {
|
|
11683
12184
|
readonly id: string;
|
|
11684
12185
|
readonly timestamp: string;
|
|
@@ -11693,6 +12194,16 @@ declare namespace io.flow.organization.v0.models {
|
|
|
11693
12194
|
interface RegionSettingForm {
|
|
11694
12195
|
readonly status: io.flow.common.v0.enums.AvailabilityStatus;
|
|
11695
12196
|
}
|
|
12197
|
+
interface SelfBillingAgreement {
|
|
12198
|
+
readonly effective_at: string;
|
|
12199
|
+
readonly expires_at: string;
|
|
12200
|
+
}
|
|
12201
|
+
interface TaxRegistrationDetail {
|
|
12202
|
+
readonly tax_number: string;
|
|
12203
|
+
readonly country: string;
|
|
12204
|
+
readonly tax_code: string;
|
|
12205
|
+
readonly province?: string;
|
|
12206
|
+
}
|
|
11696
12207
|
}
|
|
11697
12208
|
declare namespace io.flow.billing.bank.account.v0.models {
|
|
11698
12209
|
interface BankAccountInfoCan {
|
|
@@ -11715,6 +12226,17 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
11715
12226
|
readonly swift_code: string;
|
|
11716
12227
|
readonly iban: string;
|
|
11717
12228
|
}
|
|
12229
|
+
interface BankAccountInfoKor {
|
|
12230
|
+
readonly discriminator: 'kor';
|
|
12231
|
+
readonly name?: string;
|
|
12232
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
12233
|
+
readonly phone?: string;
|
|
12234
|
+
readonly email?: string;
|
|
12235
|
+
readonly bank_account_number: string;
|
|
12236
|
+
readonly bank_routing_number?: string;
|
|
12237
|
+
readonly bank_name?: string;
|
|
12238
|
+
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
12239
|
+
}
|
|
11718
12240
|
interface BankAccountInfoUsa {
|
|
11719
12241
|
readonly discriminator: 'usa';
|
|
11720
12242
|
readonly routing_number: string;
|
|
@@ -11722,7 +12244,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
11722
12244
|
}
|
|
11723
12245
|
}
|
|
11724
12246
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
11725
|
-
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
12247
|
+
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
|
|
11726
12248
|
}
|
|
11727
12249
|
declare namespace io.flow.internal.v0.enums {
|
|
11728
12250
|
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
@@ -11731,12 +12253,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11731
12253
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
11732
12254
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
11733
12255
|
type AldoItemType = 'physical' | 'digital';
|
|
12256
|
+
type AmruthaItemType = 'physical' | 'digital';
|
|
11734
12257
|
type AnirbanItemType = 'physical' | 'digital';
|
|
11735
12258
|
type AnshItemType = 'physical' | 'digital';
|
|
11736
12259
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
11737
12260
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
11738
12261
|
type ApplicablePreferentialRate = 'baby' | 'children';
|
|
11739
12262
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95' | 'prr-36e1603f56e54eb889792637c29eed40' | 'prr-7ead2cc4bf2840a3a9b50d222eb0ed7e' | 'prr-ec2f3d608b7e43a49de88ac40e6b50a8' | 'prr-04ed078c39ca4447b171f767d71a481d' | 'prr-bb664a76d6d64a17843e720e6ccd401a' | 'prr-8ce63afcd48641eb9d44e04117348a96' | 'prr-76544617791b4ce8af96b3a7879474c6' | 'prr-566cc67167944bc4bd08167aa9c0beba' | 'prr-74e1320efb7741cf9ace400b69800f9b';
|
|
12263
|
+
type B2BTaxLedgerDocumentType = 'b2b_invoice' | 'b2b_credit_memo';
|
|
12264
|
+
type B2BTaxRateType = 'basic' | 'preferential' | 'exempt';
|
|
11740
12265
|
type BankAccountStatus = 'on_hold' | 'not_on_hold';
|
|
11741
12266
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
11742
12267
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
@@ -11744,7 +12269,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11744
12269
|
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio' | 'ge_revenue_share_standard_transactions_count' | 'ge_revenue_share_standard_transactions_total' | 'ge_revenue_share_standard_transactions_percentage' | 'ge_revenue_share_shopify_plus_transactions_count' | 'ge_revenue_share_shopify_plus_transactions_total' | 'ge_revenue_share_shopify_plus_transactions_percentage' | 'non_l4l_tax_duty_fx_transactions_count' | 'non_l4l_tax_duty_fx_transactions_total' | 'non_l4l_tax_duty_fx_transactions_percentage' | 'sp_adjustment_transactions_count' | 'sp_adjustment_transactions_total' | 'sp_billable_label_transactions_count' | 'sp_billable_label_transactions_count_for_unique_orders' | 'sp_billable_label_transactions_total' | 'capture_transactions_standard_count' | 'capture_transactions_standard_total' | 'capture_transactions_shopify_plus_count' | 'capture_transactions_shopify_plus_total' | 'sp_capture_transactions_count' | 'sp_capture_transactions_total' | 'sp_carrier_charge_transactions_count' | 'sp_carrier_charge_transactions_total' | 'sp_channel_transactions_count' | 'sp_channel_transactions_total' | 'sp_duty_transactions_count' | 'sp_duty_transactions_total' | 'sp_manual_transactions_count' | 'sp_manual_transactions_total' | 'sp_refund_transactions_count' | 'sp_refund_transactions_total' | 'sp_reversal_transactions_count' | 'sp_reversal_transactions_total' | 'sp_revenue_share_label_transactions_count' | 'sp_revenue_share_label_transactions_count_for_unique_orders' | 'sp_revenue_share_label_transactions_total' | 'sp_tax_transactions_count' | 'sp_tax_transactions_total' | 'sp_transfer_transactions_count' | 'sp_transfer_transactions_total' | 'sp_trueup_transactions_count' | 'sp_trueup_transactions_total';
|
|
11745
12270
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
11746
12271
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
11747
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund';
|
|
12272
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'non_l4l_tax_duty_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'merchant_fee' | 'merchant_payout' | 'merchant_refund' | 'b2b_tax' | 'b2b_tax_refund';
|
|
11748
12273
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
11749
12274
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
11750
12275
|
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
@@ -11758,7 +12283,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11758
12283
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
11759
12284
|
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
11760
12285
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
11761
|
-
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
12286
|
+
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_allocation_duties_mismatch' | 'order_missing';
|
|
11762
12287
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
11763
12288
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
11764
12289
|
type ChannelService = 'payment' | 'duty_tax_calculator' | 'sellability' | 'all';
|
|
@@ -11775,7 +12300,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11775
12300
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
11776
12301
|
type ClassificationDecision = 'Accept' | 'Reject';
|
|
11777
12302
|
type ClassificationErrorCode = 'generic_error';
|
|
11778
|
-
type
|
|
12303
|
+
type ClassificationFailureReason = 'low_confidence' | 'timeout';
|
|
12304
|
+
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'FlowOnboarding' | 'Borderfree';
|
|
11779
12305
|
type ClassificationScope = 'Item' | 'Product';
|
|
11780
12306
|
type ClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
11781
12307
|
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
@@ -11812,7 +12338,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11812
12338
|
type EmptyAttribute = 'irrelevant';
|
|
11813
12339
|
type ErpFileType = 'vendor';
|
|
11814
12340
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
11815
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12341
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'anirban_item_upserted' | 'anirban_item_deleted' | 'sarvesh_item_upserted' | 'sarvesh_item_deleted' | 'hosein_item_upserted' | 'hosein_item_deleted' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
11816
12342
|
type ExperienceImportType = 'experience_with_settings';
|
|
11817
12343
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
11818
12344
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -11825,12 +12351,14 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11825
12351
|
type FraudProvider = 'flow' | 'forter' | 'paypal' | 'riskified' | 'rps' | 'other' | 'none';
|
|
11826
12352
|
type FraudProviderStatus = 'active' | 'archived';
|
|
11827
12353
|
type FraudReviewResponsibleParty = 'flow' | 'organization';
|
|
12354
|
+
type GabrielItemType = 'physical' | 'digital';
|
|
11828
12355
|
type GeIngestionFileStatus = 'pending' | 'processed';
|
|
11829
12356
|
type GeRevenueShareTransactionType = 'adjustment' | 'reversal' | 'revenue_share';
|
|
11830
12357
|
type GoogleAnalyticsPlugin = 'ec';
|
|
11831
12358
|
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
11832
12359
|
type HarmonizationDecisionSource = 'human' | 'system' | 'legacy_model' | 'enterprise_model' | 'merchant';
|
|
11833
12360
|
type HoseinItemType = 'physical' | 'digital';
|
|
12361
|
+
type Hs6CodeSource = 'sellability' | 'classification' | 'human';
|
|
11834
12362
|
type HttpMethod = 'get' | 'post';
|
|
11835
12363
|
type InternalPaymentEntityType = 'authorization' | 'capture' | 'refund' | 'dispute';
|
|
11836
12364
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -11849,13 +12377,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11849
12377
|
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
11850
12378
|
type LabelRequestResultState = 'success' | 'failure';
|
|
11851
12379
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
12380
|
+
type LedgerReportType = 'periodic_mor_jurisdiction_report';
|
|
12381
|
+
type LedgerReportUrlType = 'sharepoint' | 's3';
|
|
11852
12382
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
11853
12383
|
type LogisticsCapability = 'logistics_address_correction';
|
|
11854
12384
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
11855
12385
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
11856
12386
|
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback';
|
|
11857
12387
|
type MerchantFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
11858
|
-
type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands';
|
|
12388
|
+
type MerchantOfRecord = 'global_e_united_states' | 'global_e_united_kingdom' | 'global_e_canada' | 'global_e_netherlands' | 'uk_global_e_canada' | 'uk_global_e_netherlands' | 'uk_global_e_united_states' | 'ca_global_e_united_kingdom' | 'ca_global_e_netherlands' | 'ca_global_e_united_states';
|
|
11859
12389
|
type MerchantOverrideStatus = 'pending' | 'in_review' | 'accepted' | 'rejected';
|
|
11860
12390
|
type MixedBagWeight = '0' | '1' | '2';
|
|
11861
12391
|
type NatureOfSale = 'consumer' | 'to_non_registered_business' | 'to_registered_business' | 'flash_title';
|
|
@@ -11864,7 +12394,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11864
12394
|
type NonL4LTaxDutyFxTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
11865
12395
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
11866
12396
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
11867
|
-
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | '
|
|
12397
|
+
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'integration_partner' | 'dtce' | 'restrictions' | 'organization_status' | 'miscellaneous';
|
|
11868
12398
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
11869
12399
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
11870
12400
|
type OnboardingStateSource = 'unknown' | 'unit_test' | 'api' | 'api_activation' | 'api_reject' | 'audit_auto_activation' | 'api_deactivation' | 'api_sandbox_setup' | 'api_internal' | 'api_internal_block' | 'api_internal_unblock' | 'api_internal_delete_transaction' | 'onboarding_application' | 'organization_state_change' | 'restriction_organization_status';
|
|
@@ -11895,6 +12425,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11895
12425
|
type PendingRecordType = 'verification' | 'classification' | 'restriction';
|
|
11896
12426
|
type PrateekItemType = 'physical' | 'digital';
|
|
11897
12427
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
12428
|
+
type PreonboardingClassificationDecision = 'Accept' | 'Reject';
|
|
12429
|
+
type PreonboardingClassificationPlatform = 'FlowOnboarding';
|
|
12430
|
+
type PreonboardingClassificationType = 'None' | 'Manual' | 'ML' | 'System';
|
|
12431
|
+
type PreonboardingRequestStatus = 'pending' | 'completed' | 'failed' | 'discarded';
|
|
11898
12432
|
type PriceSelector = 'minimum' | 'maximum';
|
|
11899
12433
|
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
11900
12434
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
@@ -11909,7 +12443,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11909
12443
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
11910
12444
|
type ReportPaymentType = 'credit' | 'debit';
|
|
11911
12445
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
11912
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
12446
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'scheduled_payment_citi' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes' | 'sales_payments_record';
|
|
11913
12447
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
11914
12448
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
11915
12449
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -11919,7 +12453,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11919
12453
|
type RestrictionAttributeOperator = 'and' | 'or';
|
|
11920
12454
|
type RestrictionAttributeResult = 'pending_classification' | 'pending_verification' | 'accepted' | 'restricted';
|
|
11921
12455
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
11922
|
-
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox';
|
|
12456
|
+
type RestrictionOrganizationChannel = 'shopify' | 'enterprise' | 'shopify-sandbox' | 'enterprise-sandbox' | 'enterprise-qa';
|
|
11923
12457
|
type RestrictionOrganizationSource = 'smb' | 'enterprise';
|
|
11924
12458
|
type RestrictionRuleActivationStatus = 'draft' | 'active' | 'inactive';
|
|
11925
12459
|
type RestrictionRuleCommunityExemption = 'domestic_exemption' | 'intra_eu_exemption';
|
|
@@ -11951,7 +12485,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11951
12485
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
11952
12486
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
11953
12487
|
type TariffEligibilityType = 'rex';
|
|
11954
|
-
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
12488
|
+
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults' | 'item_dimensions';
|
|
11955
12489
|
type TaxAndDutyInclusivitySetting = 'duty_exclusive_tax_exclusive' | 'duty_inclusive_tax_exclusive' | 'duty_exclusive_tax_inclusive' | 'duty_inclusive_tax_inclusive';
|
|
11956
12490
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
11957
12491
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
@@ -12578,6 +13112,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12578
13112
|
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
12579
13113
|
readonly added_on: string;
|
|
12580
13114
|
}
|
|
13115
|
+
interface AldoItemDeleted {
|
|
13116
|
+
readonly discriminator: 'aldo_item_deleted';
|
|
13117
|
+
readonly event_id: string;
|
|
13118
|
+
readonly timestamp: string;
|
|
13119
|
+
readonly id: string;
|
|
13120
|
+
}
|
|
12581
13121
|
interface AldoItemForm {
|
|
12582
13122
|
readonly number: string;
|
|
12583
13123
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -12585,6 +13125,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12585
13125
|
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
12586
13126
|
readonly added_on: string;
|
|
12587
13127
|
}
|
|
13128
|
+
interface AldoItemUpserted {
|
|
13129
|
+
readonly discriminator: 'aldo_item_upserted';
|
|
13130
|
+
readonly event_id: string;
|
|
13131
|
+
readonly timestamp: string;
|
|
13132
|
+
readonly item: io.flow.internal.v0.models.AldoItem;
|
|
13133
|
+
}
|
|
12588
13134
|
interface AllItemsExport {
|
|
12589
13135
|
readonly discriminator: 'all_items_export';
|
|
12590
13136
|
readonly event_id: string;
|
|
@@ -12603,6 +13149,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12603
13149
|
readonly name: string;
|
|
12604
13150
|
readonly labels: Record<string, string[]>;
|
|
12605
13151
|
}
|
|
13152
|
+
interface AmruthaItem {
|
|
13153
|
+
readonly id: string;
|
|
13154
|
+
readonly number: string;
|
|
13155
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
13156
|
+
readonly description?: string;
|
|
13157
|
+
readonly type: io.flow.internal.v0.enums.AmruthaItemType;
|
|
13158
|
+
readonly added_on: string;
|
|
13159
|
+
}
|
|
13160
|
+
interface AmruthaItemForm {
|
|
13161
|
+
readonly number: string;
|
|
13162
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
13163
|
+
readonly description?: string;
|
|
13164
|
+
readonly type: io.flow.internal.v0.enums.AmruthaItemType;
|
|
13165
|
+
readonly added_on: string;
|
|
13166
|
+
}
|
|
12606
13167
|
interface AnirbanItem {
|
|
12607
13168
|
readonly id: string;
|
|
12608
13169
|
readonly number: string;
|
|
@@ -12611,6 +13172,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12611
13172
|
readonly type: io.flow.internal.v0.enums.AnirbanItemType;
|
|
12612
13173
|
readonly added_on: string;
|
|
12613
13174
|
}
|
|
13175
|
+
interface AnirbanItemDeleted {
|
|
13176
|
+
readonly discriminator: 'anirban_item_deleted';
|
|
13177
|
+
readonly event_id: string;
|
|
13178
|
+
readonly timestamp: string;
|
|
13179
|
+
readonly id: string;
|
|
13180
|
+
}
|
|
12614
13181
|
interface AnirbanItemForm {
|
|
12615
13182
|
readonly number: string;
|
|
12616
13183
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -12618,6 +13185,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12618
13185
|
readonly type: io.flow.internal.v0.enums.AnirbanItemType;
|
|
12619
13186
|
readonly added_on: string;
|
|
12620
13187
|
}
|
|
13188
|
+
interface AnirbanItemUpserted {
|
|
13189
|
+
readonly discriminator: 'anirban_item_upserted';
|
|
13190
|
+
readonly event_id: string;
|
|
13191
|
+
readonly timestamp: string;
|
|
13192
|
+
readonly item: io.flow.internal.v0.models.AnirbanItem;
|
|
13193
|
+
}
|
|
12621
13194
|
interface AnshItem {
|
|
12622
13195
|
readonly id: string;
|
|
12623
13196
|
readonly number: string;
|
|
@@ -12626,6 +13199,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12626
13199
|
readonly type: io.flow.internal.v0.enums.AnshItemType;
|
|
12627
13200
|
readonly added_on: string;
|
|
12628
13201
|
}
|
|
13202
|
+
interface AnshItemDeleted {
|
|
13203
|
+
readonly discriminator: 'ansh_item_deleted';
|
|
13204
|
+
readonly event_id: string;
|
|
13205
|
+
readonly timestamp: string;
|
|
13206
|
+
readonly id: string;
|
|
13207
|
+
}
|
|
12629
13208
|
interface AnshItemForm {
|
|
12630
13209
|
readonly number: string;
|
|
12631
13210
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -12633,6 +13212,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12633
13212
|
readonly type: io.flow.internal.v0.enums.AnshItemType;
|
|
12634
13213
|
readonly added_on: string;
|
|
12635
13214
|
}
|
|
13215
|
+
interface AnshItemUpserted {
|
|
13216
|
+
readonly discriminator: 'ansh_item_upserted';
|
|
13217
|
+
readonly event_id: string;
|
|
13218
|
+
readonly timestamp: string;
|
|
13219
|
+
readonly item: io.flow.internal.v0.models.AnshItem;
|
|
13220
|
+
}
|
|
12636
13221
|
interface ApplePayAuthorizationPayload {
|
|
12637
13222
|
readonly discriminator: 'apple_pay_authorization_payload';
|
|
12638
13223
|
readonly apple_pay_token: string;
|
|
@@ -12720,6 +13305,41 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12720
13305
|
readonly keywords?: string[];
|
|
12721
13306
|
readonly action?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
12722
13307
|
}
|
|
13308
|
+
interface B2BTaxLedger {
|
|
13309
|
+
readonly id: string;
|
|
13310
|
+
readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
|
|
13311
|
+
readonly tax_amount: io.flow.common.v0.models.Money;
|
|
13312
|
+
readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
|
|
13313
|
+
readonly tax_rate: number;
|
|
13314
|
+
readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
|
|
13315
|
+
readonly organization_id: string;
|
|
13316
|
+
readonly organization_country: string;
|
|
13317
|
+
readonly organization_province?: string;
|
|
13318
|
+
readonly mor_tax_number: string;
|
|
13319
|
+
readonly mor_country: string;
|
|
13320
|
+
readonly mor_province?: string;
|
|
13321
|
+
readonly document_id: string;
|
|
13322
|
+
readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
13323
|
+
readonly document_date: string;
|
|
13324
|
+
readonly ledger_report_id?: string;
|
|
13325
|
+
}
|
|
13326
|
+
interface B2BTaxLedgerForm {
|
|
13327
|
+
readonly total_amount: io.flow.internal.v0.models.TaxTypeTotal;
|
|
13328
|
+
readonly tax_amount: io.flow.common.v0.models.Money;
|
|
13329
|
+
readonly tax_type: io.flow.consumer.invoice.v0.enums.TaxType;
|
|
13330
|
+
readonly tax_rate: number;
|
|
13331
|
+
readonly tax_rate_type: io.flow.internal.v0.enums.B2BTaxRateType;
|
|
13332
|
+
readonly organization_id: string;
|
|
13333
|
+
readonly organization_country: string;
|
|
13334
|
+
readonly organization_province?: string;
|
|
13335
|
+
readonly mor_tax_number: string;
|
|
13336
|
+
readonly mor_country: string;
|
|
13337
|
+
readonly mor_province?: string;
|
|
13338
|
+
readonly document_id: string;
|
|
13339
|
+
readonly document_type: io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
13340
|
+
readonly document_date: string;
|
|
13341
|
+
readonly ledger_report_id?: string;
|
|
13342
|
+
}
|
|
12723
13343
|
interface BankAccount {
|
|
12724
13344
|
readonly status: io.flow.internal.v0.enums.BankAccountStatus;
|
|
12725
13345
|
readonly hold_created_at?: string;
|
|
@@ -12986,6 +13606,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12986
13606
|
readonly non_l4l_tax_duty_fx: io.flow.common.v0.models.Price;
|
|
12987
13607
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
12988
13608
|
readonly tax_refund: io.flow.common.v0.models.Price;
|
|
13609
|
+
readonly b2b_tax: io.flow.common.v0.models.Price;
|
|
13610
|
+
readonly b2b_tax_refund: io.flow.common.v0.models.Price;
|
|
12989
13611
|
}
|
|
12990
13612
|
interface BillingStatementUpserted {
|
|
12991
13613
|
readonly discriminator: 'billing_statement_upserted';
|
|
@@ -13086,6 +13708,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13086
13708
|
readonly reason: string;
|
|
13087
13709
|
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
13088
13710
|
}
|
|
13711
|
+
interface Cafe24MarketsWebhook {
|
|
13712
|
+
readonly placeholder?: any;
|
|
13713
|
+
}
|
|
13089
13714
|
interface CalculatedTaxAmount {
|
|
13090
13715
|
readonly discriminator: 'calculated_tax_amount';
|
|
13091
13716
|
readonly amount: number;
|
|
@@ -13613,6 +14238,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13613
14238
|
readonly order_updated_at?: string;
|
|
13614
14239
|
readonly order_edit_summary?: io.flow.internal.v0.models.OrderEditSummary;
|
|
13615
14240
|
readonly payment_source?: io.flow.internal.v0.enums.OrderPaymentSourceType;
|
|
14241
|
+
readonly external_order_summary?: io.flow.channel.shopify.v0.models.ExternalOrderSummary;
|
|
13616
14242
|
}
|
|
13617
14243
|
interface ChannelOrderAcceptanceDeleted {
|
|
13618
14244
|
readonly discriminator: 'channel_order_acceptance_deleted';
|
|
@@ -15261,9 +15887,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15261
15887
|
readonly locale?: string;
|
|
15262
15888
|
readonly region?: string;
|
|
15263
15889
|
}
|
|
15264
|
-
interface FeatureIdReference {
|
|
15265
|
-
readonly id: string;
|
|
15266
|
-
}
|
|
15267
15890
|
interface FeatureReference {
|
|
15268
15891
|
readonly id: string;
|
|
15269
15892
|
readonly key: string;
|
|
@@ -15876,6 +16499,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15876
16499
|
readonly fulfilled_at: string;
|
|
15877
16500
|
readonly sequence_number: number;
|
|
15878
16501
|
readonly completes_order: boolean;
|
|
16502
|
+
readonly trigger?: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
15879
16503
|
}
|
|
15880
16504
|
interface FulfillmentStatusUpserted {
|
|
15881
16505
|
readonly discriminator: 'fulfillment_status_upserted';
|
|
@@ -15944,6 +16568,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15944
16568
|
readonly local: io.flow.common.v0.models.Money;
|
|
15945
16569
|
readonly transaction_created_at: string;
|
|
15946
16570
|
}
|
|
16571
|
+
interface GabrielItem {
|
|
16572
|
+
readonly id: string;
|
|
16573
|
+
readonly number: string;
|
|
16574
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
16575
|
+
readonly description?: string;
|
|
16576
|
+
readonly type: io.flow.internal.v0.enums.GabrielItemType;
|
|
16577
|
+
readonly added_on: string;
|
|
16578
|
+
}
|
|
16579
|
+
interface GabrielItemDeleted {
|
|
16580
|
+
readonly discriminator: 'gabriel_item_deleted';
|
|
16581
|
+
readonly event_id: string;
|
|
16582
|
+
readonly timestamp: string;
|
|
16583
|
+
readonly id: string;
|
|
16584
|
+
}
|
|
16585
|
+
interface GabrielItemForm {
|
|
16586
|
+
readonly number: string;
|
|
16587
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
16588
|
+
readonly description?: string;
|
|
16589
|
+
readonly type: io.flow.internal.v0.enums.GabrielItemType;
|
|
16590
|
+
readonly added_on: string;
|
|
16591
|
+
}
|
|
16592
|
+
interface GabrielItemUpserted {
|
|
16593
|
+
readonly discriminator: 'gabriel_item_upserted';
|
|
16594
|
+
readonly event_id: string;
|
|
16595
|
+
readonly timestamp: string;
|
|
16596
|
+
readonly item: io.flow.internal.v0.models.GabrielItem;
|
|
16597
|
+
}
|
|
15947
16598
|
interface GeRevenueShareTransaction {
|
|
15948
16599
|
readonly discriminator: 'ge_revenue_share_transaction';
|
|
15949
16600
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -16115,6 +16766,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16115
16766
|
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
16116
16767
|
readonly added_on: string;
|
|
16117
16768
|
}
|
|
16769
|
+
interface HoseinItemDeleted {
|
|
16770
|
+
readonly discriminator: 'hosein_item_deleted';
|
|
16771
|
+
readonly event_id: string;
|
|
16772
|
+
readonly timestamp: string;
|
|
16773
|
+
readonly id: string;
|
|
16774
|
+
}
|
|
16118
16775
|
interface HoseinItemForm {
|
|
16119
16776
|
readonly number: string;
|
|
16120
16777
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -16122,6 +16779,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16122
16779
|
readonly type: io.flow.internal.v0.enums.HoseinItemType;
|
|
16123
16780
|
readonly added_on: string;
|
|
16124
16781
|
}
|
|
16782
|
+
interface HoseinItemUpserted {
|
|
16783
|
+
readonly discriminator: 'hosein_item_upserted';
|
|
16784
|
+
readonly event_id: string;
|
|
16785
|
+
readonly timestamp: string;
|
|
16786
|
+
readonly item: io.flow.internal.v0.models.HoseinItem;
|
|
16787
|
+
}
|
|
16125
16788
|
interface Hs6 {
|
|
16126
16789
|
readonly code: string;
|
|
16127
16790
|
readonly description: string;
|
|
@@ -16319,8 +16982,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16319
16982
|
readonly customs_value: number;
|
|
16320
16983
|
readonly total_value: number;
|
|
16321
16984
|
readonly usa_exporter_identifier_number_if_value_over_threshold?: string;
|
|
16322
|
-
readonly feature_israel_notes_import_duty_and_taxes_due: boolean;
|
|
16323
|
-
readonly feature_new_export_declaration: boolean;
|
|
16324
16985
|
}
|
|
16325
16986
|
interface InvoiceDataLineItem {
|
|
16326
16987
|
readonly i: number;
|
|
@@ -16330,7 +16991,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16330
16991
|
readonly tariff_code: string;
|
|
16331
16992
|
readonly country_of_origin: string;
|
|
16332
16993
|
readonly display_country_of_origin: string;
|
|
16333
|
-
readonly
|
|
16994
|
+
readonly remitter: io.flow.internal.v0.enums.TaxParty;
|
|
16334
16995
|
readonly gst_paid_text: string;
|
|
16335
16996
|
readonly unit_price: number;
|
|
16336
16997
|
readonly vat_price: number;
|
|
@@ -16752,6 +17413,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16752
17413
|
readonly service_id?: string;
|
|
16753
17414
|
readonly errors: string[];
|
|
16754
17415
|
readonly direction?: io.flow.label.v0.enums.Direction;
|
|
17416
|
+
readonly origin?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
17417
|
+
readonly destination?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
16755
17418
|
}
|
|
16756
17419
|
interface LabelRequestErrorDeleted {
|
|
16757
17420
|
readonly discriminator: 'label_request_error_deleted';
|
|
@@ -16900,6 +17563,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16900
17563
|
readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
16901
17564
|
readonly errors: string[];
|
|
16902
17565
|
}
|
|
17566
|
+
interface LedgerReport {
|
|
17567
|
+
readonly id: string;
|
|
17568
|
+
readonly mor_tax_number: string;
|
|
17569
|
+
readonly jurisdiction: string;
|
|
17570
|
+
readonly start_date: string;
|
|
17571
|
+
readonly end_date: string;
|
|
17572
|
+
readonly report_type: io.flow.internal.v0.enums.LedgerReportType;
|
|
17573
|
+
readonly urls: io.flow.internal.v0.models.LedgerReportUrl[];
|
|
17574
|
+
}
|
|
17575
|
+
interface LedgerReportUrl {
|
|
17576
|
+
readonly url: string;
|
|
17577
|
+
readonly type: io.flow.internal.v0.enums.LedgerReportUrlType;
|
|
17578
|
+
}
|
|
16903
17579
|
interface LevyRateSummary {
|
|
16904
17580
|
readonly id: string;
|
|
16905
17581
|
readonly number: string;
|
|
@@ -17375,6 +18051,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17375
18051
|
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
17376
18052
|
readonly added_on: string;
|
|
17377
18053
|
}
|
|
18054
|
+
interface NiallItemDeleted {
|
|
18055
|
+
readonly discriminator: 'niall_item_deleted';
|
|
18056
|
+
readonly event_id: string;
|
|
18057
|
+
readonly timestamp: string;
|
|
18058
|
+
readonly id: string;
|
|
18059
|
+
}
|
|
17378
18060
|
interface NiallItemForm {
|
|
17379
18061
|
readonly number: string;
|
|
17380
18062
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -17382,6 +18064,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17382
18064
|
readonly type: io.flow.internal.v0.enums.NiallItemType;
|
|
17383
18065
|
readonly added_on: string;
|
|
17384
18066
|
}
|
|
18067
|
+
interface NiallItemUpserted {
|
|
18068
|
+
readonly discriminator: 'niall_item_upserted';
|
|
18069
|
+
readonly event_id: string;
|
|
18070
|
+
readonly timestamp: string;
|
|
18071
|
+
readonly item: io.flow.internal.v0.models.NiallItem;
|
|
18072
|
+
}
|
|
17385
18073
|
interface NoCalculatedTaxAmount {
|
|
17386
18074
|
readonly discriminator: 'no_calculated_tax_amount';
|
|
17387
18075
|
readonly amount: number;
|
|
@@ -17453,6 +18141,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17453
18141
|
readonly health_score?: number;
|
|
17454
18142
|
readonly audit_result?: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
17455
18143
|
readonly blocked_since?: string;
|
|
18144
|
+
readonly onboarding_segment?: string;
|
|
17456
18145
|
}
|
|
17457
18146
|
interface OnboardingStateForm {
|
|
17458
18147
|
readonly onboarding_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
@@ -17841,24 +18530,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17841
18530
|
readonly totals: io.flow.internal.v0.models.BillingStatementTotals;
|
|
17842
18531
|
readonly attachments: io.flow.internal.v0.models.BillingStatementAttachment[];
|
|
17843
18532
|
}
|
|
17844
|
-
interface OrganizationBooleanValue {
|
|
17845
|
-
readonly id: string;
|
|
17846
|
-
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
17847
|
-
readonly feature: io.flow.internal.v0.models.FeatureIdReference;
|
|
17848
|
-
readonly value: boolean;
|
|
17849
|
-
}
|
|
17850
|
-
interface OrganizationBooleanValueDeleted {
|
|
17851
|
-
readonly discriminator: 'organization_boolean_value_deleted';
|
|
17852
|
-
readonly event_id: string;
|
|
17853
|
-
readonly timestamp: string;
|
|
17854
|
-
readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
17855
|
-
}
|
|
17856
|
-
interface OrganizationBooleanValueUpserted {
|
|
17857
|
-
readonly discriminator: 'organization_boolean_value_upserted';
|
|
17858
|
-
readonly event_id: string;
|
|
17859
|
-
readonly timestamp: string;
|
|
17860
|
-
readonly value: io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
17861
|
-
}
|
|
17862
18533
|
interface OrganizationBusinessEntity {
|
|
17863
18534
|
readonly id: string;
|
|
17864
18535
|
readonly name: string;
|
|
@@ -18376,6 +19047,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18376
19047
|
interface PaymentIs {
|
|
18377
19048
|
readonly lvg: boolean;
|
|
18378
19049
|
readonly manual: boolean;
|
|
19050
|
+
readonly managed_pricing?: boolean;
|
|
18379
19051
|
}
|
|
18380
19052
|
interface PaymentMethodDetail {
|
|
18381
19053
|
readonly method: io.flow.reference.v0.models.PaymentMethod;
|
|
@@ -18782,6 +19454,70 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18782
19454
|
readonly construction?: string;
|
|
18783
19455
|
readonly item: string;
|
|
18784
19456
|
}
|
|
19457
|
+
interface PreonboardingClassificationRabbitmqEnvelope {
|
|
19458
|
+
readonly messageType: string[];
|
|
19459
|
+
readonly message: io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage;
|
|
19460
|
+
}
|
|
19461
|
+
interface PreonboardingClassificationRabbitmqMessage {
|
|
19462
|
+
readonly MerchantId: string;
|
|
19463
|
+
readonly ProductName: string;
|
|
19464
|
+
readonly ProductDescription: string;
|
|
19465
|
+
readonly ProductIdInternal: string;
|
|
19466
|
+
readonly ProductIdExternal: string;
|
|
19467
|
+
readonly ProductGroupCode?: string;
|
|
19468
|
+
readonly ProductUrl?: string;
|
|
19469
|
+
readonly ProductImage?: string;
|
|
19470
|
+
readonly ProductAttributes: Record<string, string>;
|
|
19471
|
+
readonly Categories?: string[];
|
|
19472
|
+
readonly PlatformId: io.flow.internal.v0.enums.PreonboardingClassificationPlatform;
|
|
19473
|
+
}
|
|
19474
|
+
interface PreonboardingClassificationRequest {
|
|
19475
|
+
readonly id: string;
|
|
19476
|
+
readonly merchant_id: string;
|
|
19477
|
+
readonly product_id: string;
|
|
19478
|
+
readonly channel: string;
|
|
19479
|
+
readonly request_id: string;
|
|
19480
|
+
readonly status: io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
19481
|
+
readonly name: string;
|
|
19482
|
+
readonly price: io.flow.common.v0.models.Money;
|
|
19483
|
+
readonly description: string;
|
|
19484
|
+
readonly relative_ranking: number;
|
|
19485
|
+
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19486
|
+
readonly fingerprint: string;
|
|
19487
|
+
}
|
|
19488
|
+
interface PreonboardingClassificationResult {
|
|
19489
|
+
readonly id: string;
|
|
19490
|
+
readonly merchant_id: string;
|
|
19491
|
+
readonly product_id: string;
|
|
19492
|
+
readonly channel: string;
|
|
19493
|
+
readonly hs6_code?: string;
|
|
19494
|
+
readonly probability?: number;
|
|
19495
|
+
readonly classification_decision: io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
19496
|
+
readonly classification_type: io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
19497
|
+
}
|
|
19498
|
+
interface PreonboardingMerchant {
|
|
19499
|
+
readonly merchant_id: string;
|
|
19500
|
+
readonly channel: string;
|
|
19501
|
+
readonly catalog_size: number;
|
|
19502
|
+
readonly processed_product_count: number;
|
|
19503
|
+
readonly last_request: string;
|
|
19504
|
+
}
|
|
19505
|
+
interface PreonboardingSellabilityResult {
|
|
19506
|
+
readonly merchant_id: string;
|
|
19507
|
+
readonly product_id: string;
|
|
19508
|
+
readonly channel: string;
|
|
19509
|
+
readonly request_id: string;
|
|
19510
|
+
readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
19511
|
+
readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
19512
|
+
readonly hs6_code?: string;
|
|
19513
|
+
readonly hs6_code_source?: io.flow.internal.v0.enums.Hs6CodeSource;
|
|
19514
|
+
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
19515
|
+
readonly rule_ids?: string[];
|
|
19516
|
+
readonly matching_positive_keywords?: string[];
|
|
19517
|
+
readonly classification_failure_reason?: io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
19518
|
+
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
19519
|
+
readonly fingerprint: string;
|
|
19520
|
+
}
|
|
18785
19521
|
interface PriceInclusivity {
|
|
18786
19522
|
readonly tax?: boolean;
|
|
18787
19523
|
readonly duty?: boolean;
|
|
@@ -19005,7 +19741,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19005
19741
|
readonly product_id?: string;
|
|
19006
19742
|
readonly request_id: string;
|
|
19007
19743
|
readonly hs6_code: string;
|
|
19008
|
-
readonly restricted_regions: io.flow.sellability.v0.models.
|
|
19744
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
19009
19745
|
readonly rule_ids: string[];
|
|
19010
19746
|
}
|
|
19011
19747
|
interface ProductSellabilityInternalForm {
|
|
@@ -19016,7 +19752,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19016
19752
|
readonly categories: string[];
|
|
19017
19753
|
}
|
|
19018
19754
|
interface ProductSellabilityInternalResult {
|
|
19019
|
-
readonly restricted_regions: io.flow.sellability.v0.models.
|
|
19755
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
19020
19756
|
readonly rule_ids: string[];
|
|
19021
19757
|
}
|
|
19022
19758
|
interface ProductSellabilityResult {
|
|
@@ -19025,7 +19761,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19025
19761
|
readonly request_id: string;
|
|
19026
19762
|
readonly hs6_code: string;
|
|
19027
19763
|
readonly restricted_regions?: string[];
|
|
19028
|
-
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.
|
|
19764
|
+
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
19029
19765
|
readonly rule_ids?: string[];
|
|
19030
19766
|
readonly taxonomy_category?: string;
|
|
19031
19767
|
}
|
|
@@ -19054,6 +19790,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19054
19790
|
readonly discriminator: 'shipping_notification';
|
|
19055
19791
|
readonly shipping_notification_id: string;
|
|
19056
19792
|
}
|
|
19793
|
+
interface ProofOfPostingSynthetic {
|
|
19794
|
+
readonly discriminator: 'synthetic';
|
|
19795
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
19796
|
+
readonly created_at: string;
|
|
19797
|
+
}
|
|
19057
19798
|
interface ProofOfPostingTimeElapsed {
|
|
19058
19799
|
readonly discriminator: 'time_elapsed';
|
|
19059
19800
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
@@ -19466,6 +20207,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19466
20207
|
readonly currency: string;
|
|
19467
20208
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
19468
20209
|
}
|
|
20210
|
+
interface ReportAmountRange {
|
|
20211
|
+
readonly min?: number;
|
|
20212
|
+
readonly max?: number;
|
|
20213
|
+
}
|
|
19469
20214
|
interface ReportBankAccount {
|
|
19470
20215
|
readonly id?: string;
|
|
19471
20216
|
readonly last4?: string;
|
|
@@ -19487,6 +20232,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19487
20232
|
interface ReportFilter {
|
|
19488
20233
|
readonly source_type?: io.flow.internal.v0.enums.SourceTypeFilter;
|
|
19489
20234
|
readonly order_payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
20235
|
+
readonly amount_range?: io.flow.internal.v0.models.ReportAmountRange;
|
|
19490
20236
|
}
|
|
19491
20237
|
interface ReportForm {
|
|
19492
20238
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
@@ -19868,7 +20614,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19868
20614
|
interface RestrictionOrganization {
|
|
19869
20615
|
readonly id: string;
|
|
19870
20616
|
readonly name: string;
|
|
19871
|
-
readonly environment: io.flow.
|
|
20617
|
+
readonly environment: io.flow.restrictions.v0.enums.RestrictionEnvironment;
|
|
19872
20618
|
readonly url?: string;
|
|
19873
20619
|
readonly approval_status?: io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
19874
20620
|
readonly screening_status?: io.flow.internal.v0.enums.OrganizationRestrictionScreeningStatus;
|
|
@@ -19914,7 +20660,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19914
20660
|
interface RestrictionOrganizationSummary {
|
|
19915
20661
|
readonly id: string;
|
|
19916
20662
|
readonly name: string;
|
|
19917
|
-
readonly environment: io.flow.
|
|
20663
|
+
readonly environment: io.flow.restrictions.v0.enums.RestrictionEnvironment;
|
|
19918
20664
|
readonly source: io.flow.internal.v0.enums.OrganizationSource;
|
|
19919
20665
|
}
|
|
19920
20666
|
interface RestrictionProduct {
|
|
@@ -19977,7 +20723,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19977
20723
|
readonly attribute_names?: string[];
|
|
19978
20724
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
19979
20725
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
19980
|
-
readonly activation_status
|
|
20726
|
+
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
19981
20727
|
}
|
|
19982
20728
|
interface RestrictionRuleDecisionForm {
|
|
19983
20729
|
readonly rule_id: string;
|
|
@@ -20031,7 +20777,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20031
20777
|
readonly attribute_names?: string[];
|
|
20032
20778
|
readonly attribute_rule_conditions?: io.flow.internal.v0.models.AttributeRule;
|
|
20033
20779
|
readonly keyword_cancelling?: io.flow.internal.v0.models.KeywordCancelling[];
|
|
20034
|
-
readonly activation_status
|
|
20780
|
+
readonly activation_status: io.flow.internal.v0.enums.RestrictionRuleActivationStatus;
|
|
20035
20781
|
}
|
|
20036
20782
|
interface RestrictionRuleLaneExemption {
|
|
20037
20783
|
readonly id: string;
|
|
@@ -20088,23 +20834,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20088
20834
|
readonly oldest_pv_product_date_transacting: string;
|
|
20089
20835
|
readonly oldest_pc_product_date_setup_complete: string;
|
|
20090
20836
|
readonly oldest_pc_product_date_transacting: string;
|
|
20091
|
-
readonly num_orgs_setup_complete_prs: number;
|
|
20092
|
-
readonly num_products_setup_complete_prs: number;
|
|
20093
|
-
readonly num_orgs_transacting_prs: number;
|
|
20094
|
-
readonly num_products_transacting_prs: number;
|
|
20095
|
-
readonly oldest_pr_product_date_setup_complete: string;
|
|
20096
|
-
readonly oldest_pr_date_transacting: string;
|
|
20097
20837
|
readonly percent_products_reviewed_transacting?: number;
|
|
20098
20838
|
readonly num_pv_inflow_net_new: number;
|
|
20099
20839
|
readonly num_pv_outflow_human_decisions: number;
|
|
20100
20840
|
readonly num_pv_outflow_auto_review_decisions: number;
|
|
20101
20841
|
readonly num_pv_outflow_side_effect_decisions: number;
|
|
20102
|
-
readonly num_pr_inflow_net_new: number;
|
|
20103
|
-
readonly num_pr_outflow_human_decisions: number;
|
|
20104
|
-
readonly num_pr_outflow_auto_review_decisions: number;
|
|
20105
|
-
readonly num_pr_outflow_side_effect_decisions: number;
|
|
20106
20842
|
readonly num_pending_decisions_transacting: number;
|
|
20107
|
-
readonly oldest_insufficient_details_pv_onboarding?: string;
|
|
20108
20843
|
readonly oldest_insufficient_details_pv_active?: string;
|
|
20109
20844
|
readonly oldest_insufficient_details_pv_transacting?: string;
|
|
20110
20845
|
readonly num_products_with_fs_result?: number;
|
|
@@ -20238,6 +20973,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20238
20973
|
readonly type: io.flow.internal.v0.enums.RohanItemType;
|
|
20239
20974
|
readonly added_on: string;
|
|
20240
20975
|
}
|
|
20976
|
+
interface RohanItemDeleted {
|
|
20977
|
+
readonly discriminator: 'rohan_item_deleted';
|
|
20978
|
+
readonly event_id: string;
|
|
20979
|
+
readonly timestamp: string;
|
|
20980
|
+
readonly id: string;
|
|
20981
|
+
}
|
|
20241
20982
|
interface RohanItemForm {
|
|
20242
20983
|
readonly number: string;
|
|
20243
20984
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -20245,6 +20986,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20245
20986
|
readonly type: io.flow.internal.v0.enums.RohanItemType;
|
|
20246
20987
|
readonly added_on: string;
|
|
20247
20988
|
}
|
|
20989
|
+
interface RohanItemUpserted {
|
|
20990
|
+
readonly discriminator: 'rohan_item_upserted';
|
|
20991
|
+
readonly event_id: string;
|
|
20992
|
+
readonly timestamp: string;
|
|
20993
|
+
readonly item: io.flow.internal.v0.models.RohanItem;
|
|
20994
|
+
}
|
|
20248
20995
|
interface RoutingAccount {
|
|
20249
20996
|
readonly discriminator: 'routing_account';
|
|
20250
20997
|
readonly processor: io.flow.internal.v0.enums.Processor;
|
|
@@ -20291,6 +21038,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20291
21038
|
readonly type: io.flow.internal.v0.enums.SarveshItemType;
|
|
20292
21039
|
readonly added_on: string;
|
|
20293
21040
|
}
|
|
21041
|
+
interface SarveshItemDeleted {
|
|
21042
|
+
readonly discriminator: 'sarvesh_item_deleted';
|
|
21043
|
+
readonly event_id: string;
|
|
21044
|
+
readonly timestamp: string;
|
|
21045
|
+
readonly id: string;
|
|
21046
|
+
}
|
|
20294
21047
|
interface SarveshItemForm {
|
|
20295
21048
|
readonly number: string;
|
|
20296
21049
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -20298,6 +21051,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20298
21051
|
readonly type: io.flow.internal.v0.enums.SarveshItemType;
|
|
20299
21052
|
readonly added_on: string;
|
|
20300
21053
|
}
|
|
21054
|
+
interface SarveshItemUpserted {
|
|
21055
|
+
readonly discriminator: 'sarvesh_item_upserted';
|
|
21056
|
+
readonly event_id: string;
|
|
21057
|
+
readonly timestamp: string;
|
|
21058
|
+
readonly item: io.flow.internal.v0.models.SarveshItem;
|
|
21059
|
+
}
|
|
20301
21060
|
interface ScheduledPayment {
|
|
20302
21061
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
20303
21062
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -20384,9 +21143,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20384
21143
|
readonly status: io.flow.internal.v0.enums.SellabilityCheckStatus;
|
|
20385
21144
|
readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
20386
21145
|
readonly current_rule_ids?: string[];
|
|
20387
|
-
readonly current_restricted_regions?: io.flow.sellability.v0.models.
|
|
21146
|
+
readonly current_restricted_regions?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
20388
21147
|
readonly merchant_rule_ids?: string[];
|
|
20389
|
-
readonly merchant_restricted_regions?: io.flow.sellability.v0.models.
|
|
21148
|
+
readonly merchant_restricted_regions?: io.flow.sellability.v0.models.SellabilityRegionResult[];
|
|
20390
21149
|
readonly current_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
20391
21150
|
readonly merchant_error?: io.flow.sellability.v0.models.SellabilityError[];
|
|
20392
21151
|
}
|
|
@@ -20430,6 +21189,48 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20430
21189
|
readonly freight_cost: number;
|
|
20431
21190
|
readonly customer_price: number;
|
|
20432
21191
|
}
|
|
21192
|
+
interface ShippingRateEstimateAvailableInternal {
|
|
21193
|
+
readonly service: io.flow.ratecard.v0.models.RatecardServiceSummary;
|
|
21194
|
+
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
21195
|
+
readonly shipment_window: io.flow.ratecard.v0.models.ShipmentWindow;
|
|
21196
|
+
readonly total_amount: io.flow.common.v0.models.Money;
|
|
21197
|
+
readonly base_amount: io.flow.common.v0.models.Money;
|
|
21198
|
+
readonly fees: io.flow.ratecard.v0.unions.RatecardFee[];
|
|
21199
|
+
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
21200
|
+
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
21201
|
+
readonly weight_break?: number;
|
|
21202
|
+
readonly ratecard_id?: string;
|
|
21203
|
+
readonly lane_id?: string;
|
|
21204
|
+
readonly rate_level_key?: string;
|
|
21205
|
+
readonly glbe_shipping_method_id?: string;
|
|
21206
|
+
readonly glbe_proposition_name?: string;
|
|
21207
|
+
readonly channel_revenue_share_percentage?: number;
|
|
21208
|
+
readonly distance_unit_of_measurement?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
21209
|
+
readonly weight_unit_of_measurement?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
21210
|
+
}
|
|
21211
|
+
interface ShippingRateEstimateInternal {
|
|
21212
|
+
readonly channel_id: string;
|
|
21213
|
+
readonly organization_id: string;
|
|
21214
|
+
readonly service: string;
|
|
21215
|
+
readonly origin_address: io.flow.common.v0.models.Address;
|
|
21216
|
+
readonly destination_address: io.flow.common.v0.models.Address;
|
|
21217
|
+
readonly shipping_date_time: string;
|
|
21218
|
+
readonly available: io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal[];
|
|
21219
|
+
}
|
|
21220
|
+
interface ShippingRateEstimateRequestInternal {
|
|
21221
|
+
readonly channel_id: string;
|
|
21222
|
+
readonly organization_id: string;
|
|
21223
|
+
readonly origin_address: io.flow.common.v0.models.Address;
|
|
21224
|
+
readonly destination_address: io.flow.common.v0.models.Address;
|
|
21225
|
+
readonly package_dimensions: io.flow.common.v0.models.Dimension;
|
|
21226
|
+
readonly shipping_date_time: string;
|
|
21227
|
+
readonly service: string;
|
|
21228
|
+
readonly delivered_duty?: io.flow.common.v0.enums.DeliveredDuty;
|
|
21229
|
+
readonly duties_owed?: io.flow.common.v0.models.Money;
|
|
21230
|
+
readonly taxes_owed?: io.flow.common.v0.models.Money;
|
|
21231
|
+
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
21232
|
+
readonly include_unpublished?: boolean;
|
|
21233
|
+
}
|
|
20433
21234
|
interface ShopifyCatalogPublication {
|
|
20434
21235
|
readonly owner: io.flow.internal.v0.enums.CatalogPublicationOwner;
|
|
20435
21236
|
}
|
|
@@ -20641,6 +21442,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20641
21442
|
readonly shopify: io.flow.internal.v0.models.ShopifyMarketsShopifyOrderMetrics;
|
|
20642
21443
|
readonly internal: io.flow.internal.v0.models.ShopifyMarketsInternalOrderMetrics;
|
|
20643
21444
|
readonly discrepancy_data: io.flow.internal.v0.models.ShopifyMarketsDiscrepancyData;
|
|
21445
|
+
readonly organization_metrics?: io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics[];
|
|
21446
|
+
}
|
|
21447
|
+
interface ShopifyMarketsOrganizationOrderMetrics {
|
|
21448
|
+
readonly organization_id: string;
|
|
21449
|
+
readonly shopify_order_count: number;
|
|
21450
|
+
readonly internal_order_count: number;
|
|
21451
|
+
readonly discrepancy_count?: number;
|
|
20644
21452
|
}
|
|
20645
21453
|
interface ShopifyMarketsQueuedRecord {
|
|
20646
21454
|
readonly id: string;
|
|
@@ -21047,8 +21855,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21047
21855
|
readonly default_hs6_code?: string;
|
|
21048
21856
|
readonly auto_correct: boolean;
|
|
21049
21857
|
}
|
|
21858
|
+
interface ShopifyTestOrder {
|
|
21859
|
+
readonly id: string;
|
|
21860
|
+
}
|
|
21861
|
+
interface ShopifyTestOrderDeleted {
|
|
21862
|
+
readonly discriminator: 'shopify_test_order_deleted';
|
|
21863
|
+
readonly event_id: string;
|
|
21864
|
+
readonly timestamp: string;
|
|
21865
|
+
readonly organization: string;
|
|
21866
|
+
readonly id: string;
|
|
21867
|
+
}
|
|
21868
|
+
interface ShopifyTestOrderUpserted {
|
|
21869
|
+
readonly discriminator: 'shopify_test_order_upserted';
|
|
21870
|
+
readonly event_id: string;
|
|
21871
|
+
readonly timestamp: string;
|
|
21872
|
+
readonly organization: string;
|
|
21873
|
+
readonly shopify_test_order: io.flow.internal.v0.models.ShopifyTestOrder;
|
|
21874
|
+
}
|
|
21050
21875
|
interface ShopperBreakdown {
|
|
21051
21876
|
readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21877
|
+
readonly product_purchase_price?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21052
21878
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21053
21879
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21054
21880
|
readonly discount: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -21362,6 +22188,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21362
22188
|
readonly mor_fees?: number;
|
|
21363
22189
|
readonly mor_foreign_exchange_fees?: number;
|
|
21364
22190
|
readonly sp_processing_fees?: number;
|
|
22191
|
+
readonly mor_fees_tax?: number;
|
|
21365
22192
|
}
|
|
21366
22193
|
interface StripeConnectReportRecordTransferMetadata {
|
|
21367
22194
|
readonly discriminator: 'stripe_connect_report_record_transfer_metadata';
|
|
@@ -21702,6 +22529,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21702
22529
|
readonly timestamp: string;
|
|
21703
22530
|
readonly tax_transaction: io.flow.internal.v0.models.TaxTransaction;
|
|
21704
22531
|
}
|
|
22532
|
+
interface TaxTypeTotal {
|
|
22533
|
+
readonly value: io.flow.common.v0.models.Money;
|
|
22534
|
+
}
|
|
21705
22535
|
interface TaxonomyAlignmentCheckResult {
|
|
21706
22536
|
readonly status: io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|
|
21707
22537
|
readonly result: io.flow.internal.v0.enums.EvaluationCheckResult;
|
|
@@ -22346,7 +23176,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22346
23176
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22347
23177
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22348
23178
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22349
|
-
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
23179
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.AnirbanItemUpserted | io.flow.internal.v0.models.AnirbanItemDeleted | io.flow.internal.v0.models.SarveshItemUpserted | io.flow.internal.v0.models.SarveshItemDeleted | io.flow.internal.v0.models.HoseinItemUpserted | io.flow.internal.v0.models.HoseinItemDeleted | io.flow.internal.v0.models.NiallItemUpserted | io.flow.internal.v0.models.NiallItemDeleted | io.flow.internal.v0.models.RohanItemUpserted | io.flow.internal.v0.models.RohanItemDeleted | io.flow.internal.v0.models.AldoItemUpserted | io.flow.internal.v0.models.AldoItemDeleted | io.flow.internal.v0.models.AnshItemUpserted | io.flow.internal.v0.models.AnshItemDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22350
23180
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22351
23181
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22352
23182
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22379,7 +23209,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22379
23209
|
type ProcessorMerchantForm = io.flow.internal.v0.models.StripeMerchantForm;
|
|
22380
23210
|
type ProcessorMerchantModificationForm = io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm;
|
|
22381
23211
|
type ProcessorMerchantPutForm = io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm;
|
|
22382
|
-
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment | io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
23212
|
+
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment | io.flow.internal.v0.models.ProofOfPostingTimeElapsed | io.flow.internal.v0.models.ProofOfPostingSynthetic;
|
|
22383
23213
|
type RestrictionAttributeRuleCondition = io.flow.internal.v0.models.RestrictionAttributeConditionSingle | io.flow.internal.v0.models.RestrictionAttributeConditionMultiple;
|
|
22384
23214
|
type ReturnTrigger = io.flow.internal.v0.models.ReturnTriggerRefund | io.flow.internal.v0.models.ReturnTriggerReversal;
|
|
22385
23215
|
type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
|
|
@@ -22489,18 +23319,27 @@ export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayR
|
|
|
22489
23319
|
export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
22490
23320
|
export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
22491
23321
|
export declare type AldoItem = io.flow.internal.v0.models.AldoItem;
|
|
23322
|
+
export declare type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
|
|
22492
23323
|
export declare type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
|
|
22493
23324
|
export declare type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
|
|
23325
|
+
export declare type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
|
|
22494
23326
|
export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
22495
23327
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
22496
23328
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
22497
23329
|
export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
23330
|
+
export declare type AmruthaItem = io.flow.internal.v0.models.AmruthaItem;
|
|
23331
|
+
export declare type AmruthaItemForm = io.flow.internal.v0.models.AmruthaItemForm;
|
|
23332
|
+
export declare type AmruthaItemType = io.flow.internal.v0.enums.AmruthaItemType;
|
|
22498
23333
|
export declare type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
|
|
23334
|
+
export declare type AnirbanItemDeleted = io.flow.internal.v0.models.AnirbanItemDeleted;
|
|
22499
23335
|
export declare type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
|
|
22500
23336
|
export declare type AnirbanItemType = io.flow.internal.v0.enums.AnirbanItemType;
|
|
23337
|
+
export declare type AnirbanItemUpserted = io.flow.internal.v0.models.AnirbanItemUpserted;
|
|
22501
23338
|
export declare type AnshItem = io.flow.internal.v0.models.AnshItem;
|
|
23339
|
+
export declare type AnshItemDeleted = io.flow.internal.v0.models.AnshItemDeleted;
|
|
22502
23340
|
export declare type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
|
|
22503
23341
|
export declare type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
|
|
23342
|
+
export declare type AnshItemUpserted = io.flow.internal.v0.models.AnshItemUpserted;
|
|
22504
23343
|
export declare type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
|
|
22505
23344
|
export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
22506
23345
|
export declare type ApplePayAuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload;
|
|
@@ -22523,6 +23362,10 @@ export declare type AuthorizedOrderCharge = io.flow.internal.v0.unions.Authorize
|
|
|
22523
23362
|
export declare type AuthorizedShippingCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
22524
23363
|
export declare type AutoRestrictRule = io.flow.internal.v0.enums.AutoRestrictRule;
|
|
22525
23364
|
export declare type AutoReviewCriteria = io.flow.internal.v0.models.AutoReviewCriteria;
|
|
23365
|
+
export declare type B2BTaxLedger = io.flow.internal.v0.models.B2BTaxLedger;
|
|
23366
|
+
export declare type B2BTaxLedgerDocumentType = io.flow.internal.v0.enums.B2BTaxLedgerDocumentType;
|
|
23367
|
+
export declare type B2BTaxLedgerForm = io.flow.internal.v0.models.B2BTaxLedgerForm;
|
|
23368
|
+
export declare type B2BTaxRateType = io.flow.internal.v0.enums.B2BTaxRateType;
|
|
22526
23369
|
export declare type BankAccount = io.flow.internal.v0.models.BankAccount;
|
|
22527
23370
|
export declare type BankAccountReference = io.flow.internal.v0.models.BankAccountReference;
|
|
22528
23371
|
export declare type BankAccountStatus = io.flow.internal.v0.enums.BankAccountStatus;
|
|
@@ -22588,6 +23431,7 @@ export declare type BrickWebhookEvent = io.flow.internal.v0.models.BrickWebhookE
|
|
|
22588
23431
|
export declare type BrickWebhookEventResponse = io.flow.internal.v0.models.BrickWebhookEventResponse;
|
|
22589
23432
|
export declare type BulkClassificationAction = io.flow.internal.v0.models.BulkClassificationAction;
|
|
22590
23433
|
export declare type BulkDutyUpdateValidationError = io.flow.internal.v0.models.BulkDutyUpdateValidationError;
|
|
23434
|
+
export declare type Cafe24MarketsWebhook = io.flow.internal.v0.models.Cafe24MarketsWebhook;
|
|
22591
23435
|
export declare type CalculatedTaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount;
|
|
22592
23436
|
export declare type CalculationStampingLineItem = io.flow.internal.v0.models.CalculationStampingLineItem;
|
|
22593
23437
|
export declare type CalculationStampingShippingLine = io.flow.internal.v0.models.CalculationStampingShippingLine;
|
|
@@ -22762,6 +23606,7 @@ export declare type ClassificationDecision = io.flow.internal.v0.enums.Classific
|
|
|
22762
23606
|
export declare type ClassificationDetails = io.flow.internal.v0.models.ClassificationDetails;
|
|
22763
23607
|
export declare type ClassificationError = io.flow.internal.v0.models.ClassificationError;
|
|
22764
23608
|
export declare type ClassificationErrorCode = io.flow.internal.v0.enums.ClassificationErrorCode;
|
|
23609
|
+
export declare type ClassificationFailureReason = io.flow.internal.v0.enums.ClassificationFailureReason;
|
|
22765
23610
|
export declare type ClassificationForm = io.flow.internal.v0.unions.ClassificationForm;
|
|
22766
23611
|
export declare type ClassificationFormWrapper = io.flow.internal.v0.models.ClassificationFormWrapper;
|
|
22767
23612
|
export declare type ClassificationItem = io.flow.internal.v0.models.ClassificationItem;
|
|
@@ -22999,7 +23844,6 @@ export declare type FeatureDefaultValue = io.flow.internal.v0.unions.FeatureDefa
|
|
|
22999
23844
|
export declare type FeatureDeleted = io.flow.internal.v0.models.FeatureDeleted;
|
|
23000
23845
|
export declare type FeatureForm = io.flow.internal.v0.models.FeatureForm;
|
|
23001
23846
|
export declare type FeatureGeoForm = io.flow.internal.v0.models.FeatureGeoForm;
|
|
23002
|
-
export declare type FeatureIdReference = io.flow.internal.v0.models.FeatureIdReference;
|
|
23003
23847
|
export declare type FeatureReference = io.flow.internal.v0.models.FeatureReference;
|
|
23004
23848
|
export declare type FeatureReleaseForm = io.flow.internal.v0.models.FeatureReleaseForm;
|
|
23005
23849
|
export declare type FeatureRule = io.flow.internal.v0.unions.FeatureRule;
|
|
@@ -23117,6 +23961,11 @@ export declare type FxRevenueRecognitionOrder = io.flow.internal.v0.models.FxRev
|
|
|
23117
23961
|
export declare type FxRevenueRecognitionOrganization = io.flow.internal.v0.models.FxRevenueRecognitionOrganization;
|
|
23118
23962
|
export declare type FxRevenueRecognitionRate = io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
23119
23963
|
export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
23964
|
+
export declare type GabrielItem = io.flow.internal.v0.models.GabrielItem;
|
|
23965
|
+
export declare type GabrielItemDeleted = io.flow.internal.v0.models.GabrielItemDeleted;
|
|
23966
|
+
export declare type GabrielItemForm = io.flow.internal.v0.models.GabrielItemForm;
|
|
23967
|
+
export declare type GabrielItemType = io.flow.internal.v0.enums.GabrielItemType;
|
|
23968
|
+
export declare type GabrielItemUpserted = io.flow.internal.v0.models.GabrielItemUpserted;
|
|
23120
23969
|
export declare type GeIngestionFileStatus = io.flow.internal.v0.enums.GeIngestionFileStatus;
|
|
23121
23970
|
export declare type GeRevenueShareTransaction = io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
23122
23971
|
export declare type GeRevenueShareTransactionType = io.flow.internal.v0.enums.GeRevenueShareTransactionType;
|
|
@@ -23152,9 +24001,12 @@ export declare type HarmonizationUnclassifiedStatistics = io.flow.internal.v0.mo
|
|
|
23152
24001
|
export declare type HarmonizeFullyRequestV2 = io.flow.internal.v0.models.HarmonizeFullyRequestV2;
|
|
23153
24002
|
export declare type HarmonizedItemsHs6Export = io.flow.internal.v0.models.HarmonizedItemsHs6Export;
|
|
23154
24003
|
export declare type HoseinItem = io.flow.internal.v0.models.HoseinItem;
|
|
24004
|
+
export declare type HoseinItemDeleted = io.flow.internal.v0.models.HoseinItemDeleted;
|
|
23155
24005
|
export declare type HoseinItemForm = io.flow.internal.v0.models.HoseinItemForm;
|
|
23156
24006
|
export declare type HoseinItemType = io.flow.internal.v0.enums.HoseinItemType;
|
|
24007
|
+
export declare type HoseinItemUpserted = io.flow.internal.v0.models.HoseinItemUpserted;
|
|
23157
24008
|
export declare type Hs6 = io.flow.internal.v0.models.Hs6;
|
|
24009
|
+
export declare type Hs6CodeSource = io.flow.internal.v0.enums.Hs6CodeSource;
|
|
23158
24010
|
export declare type Hs6Metadata = io.flow.internal.v0.models.Hs6Metadata;
|
|
23159
24011
|
export declare type HttpMethod = io.flow.internal.v0.enums.HttpMethod;
|
|
23160
24012
|
export declare type ImportCompleted = io.flow.internal.v0.models.ImportCompleted;
|
|
@@ -23282,6 +24134,10 @@ export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPredicti
|
|
|
23282
24134
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
23283
24135
|
export declare type Landmark = io.flow.internal.v0.models.Landmark;
|
|
23284
24136
|
export declare type LastFailureSummary = io.flow.internal.v0.models.LastFailureSummary;
|
|
24137
|
+
export declare type LedgerReport = io.flow.internal.v0.models.LedgerReport;
|
|
24138
|
+
export declare type LedgerReportType = io.flow.internal.v0.enums.LedgerReportType;
|
|
24139
|
+
export declare type LedgerReportUrl = io.flow.internal.v0.models.LedgerReportUrl;
|
|
24140
|
+
export declare type LedgerReportUrlType = io.flow.internal.v0.enums.LedgerReportUrlType;
|
|
23285
24141
|
export declare type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
|
|
23286
24142
|
export declare type LevyRateSummaryUpserted = io.flow.internal.v0.models.LevyRateSummaryUpserted;
|
|
23287
24143
|
export declare type Liability = io.flow.internal.v0.models.Liability;
|
|
@@ -23361,8 +24217,10 @@ export declare type NatureOfSale = io.flow.internal.v0.enums.NatureOfSale;
|
|
|
23361
24217
|
export declare type NegativeDebitMetrics = io.flow.internal.v0.models.NegativeDebitMetrics;
|
|
23362
24218
|
export declare type NextBillingStatement = io.flow.internal.v0.models.NextBillingStatement;
|
|
23363
24219
|
export declare type NiallItem = io.flow.internal.v0.models.NiallItem;
|
|
24220
|
+
export declare type NiallItemDeleted = io.flow.internal.v0.models.NiallItemDeleted;
|
|
23364
24221
|
export declare type NiallItemForm = io.flow.internal.v0.models.NiallItemForm;
|
|
23365
24222
|
export declare type NiallItemType = io.flow.internal.v0.enums.NiallItemType;
|
|
24223
|
+
export declare type NiallItemUpserted = io.flow.internal.v0.models.NiallItemUpserted;
|
|
23366
24224
|
export declare type NoCalculatedTaxAmount = io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
23367
24225
|
export declare type NoClassificationForm = io.flow.internal.v0.models.NoClassificationForm;
|
|
23368
24226
|
export declare type NoLiabilityReasonCode = io.flow.internal.v0.enums.NoLiabilityReasonCode;
|
|
@@ -23449,9 +24307,6 @@ export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.O
|
|
|
23449
24307
|
export declare type OrganizationBankAccountDeleted = io.flow.internal.v0.models.OrganizationBankAccountDeleted;
|
|
23450
24308
|
export declare type OrganizationBankAccountUpserted = io.flow.internal.v0.models.OrganizationBankAccountUpserted;
|
|
23451
24309
|
export declare type OrganizationBillingStatement = io.flow.internal.v0.models.OrganizationBillingStatement;
|
|
23452
|
-
export declare type OrganizationBooleanValue = io.flow.internal.v0.models.OrganizationBooleanValue;
|
|
23453
|
-
export declare type OrganizationBooleanValueDeleted = io.flow.internal.v0.models.OrganizationBooleanValueDeleted;
|
|
23454
|
-
export declare type OrganizationBooleanValueUpserted = io.flow.internal.v0.models.OrganizationBooleanValueUpserted;
|
|
23455
24310
|
export declare type OrganizationBusinessEntity = io.flow.internal.v0.models.OrganizationBusinessEntity;
|
|
23456
24311
|
export declare type OrganizationBusinessEntityDeleted = io.flow.internal.v0.models.OrganizationBusinessEntityDeleted;
|
|
23457
24312
|
export declare type OrganizationBusinessEntityUpserted = io.flow.internal.v0.models.OrganizationBusinessEntityUpserted;
|
|
@@ -23608,6 +24463,16 @@ export declare type PrateekItemForm = io.flow.internal.v0.models.PrateekItemForm
|
|
|
23608
24463
|
export declare type PrateekItemType = io.flow.internal.v0.enums.PrateekItemType;
|
|
23609
24464
|
export declare type Prediction = io.flow.internal.v0.models.Prediction;
|
|
23610
24465
|
export declare type PreferredBillingSchedule = io.flow.internal.v0.enums.PreferredBillingSchedule;
|
|
24466
|
+
export declare type PreonboardingClassificationDecision = io.flow.internal.v0.enums.PreonboardingClassificationDecision;
|
|
24467
|
+
export declare type PreonboardingClassificationPlatform = io.flow.internal.v0.enums.PreonboardingClassificationPlatform;
|
|
24468
|
+
export declare type PreonboardingClassificationRabbitmqEnvelope = io.flow.internal.v0.models.PreonboardingClassificationRabbitmqEnvelope;
|
|
24469
|
+
export declare type PreonboardingClassificationRabbitmqMessage = io.flow.internal.v0.models.PreonboardingClassificationRabbitmqMessage;
|
|
24470
|
+
export declare type PreonboardingClassificationRequest = io.flow.internal.v0.models.PreonboardingClassificationRequest;
|
|
24471
|
+
export declare type PreonboardingClassificationResult = io.flow.internal.v0.models.PreonboardingClassificationResult;
|
|
24472
|
+
export declare type PreonboardingClassificationType = io.flow.internal.v0.enums.PreonboardingClassificationType;
|
|
24473
|
+
export declare type PreonboardingMerchant = io.flow.internal.v0.models.PreonboardingMerchant;
|
|
24474
|
+
export declare type PreonboardingRequestStatus = io.flow.internal.v0.enums.PreonboardingRequestStatus;
|
|
24475
|
+
export declare type PreonboardingSellabilityResult = io.flow.internal.v0.models.PreonboardingSellabilityResult;
|
|
23611
24476
|
export declare type PriceInclusivity = io.flow.internal.v0.models.PriceInclusivity;
|
|
23612
24477
|
export declare type PriceSelector = io.flow.internal.v0.enums.PriceSelector;
|
|
23613
24478
|
export declare type PrioritizedCenterReference = io.flow.internal.v0.models.PrioritizedCenterReference;
|
|
@@ -23660,6 +24525,7 @@ export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOf
|
|
|
23660
24525
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
23661
24526
|
export declare type ProofOfPostingOrderCombinedShipment = io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
23662
24527
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
24528
|
+
export declare type ProofOfPostingSynthetic = io.flow.internal.v0.models.ProofOfPostingSynthetic;
|
|
23663
24529
|
export declare type ProofOfPostingTimeElapsed = io.flow.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
23664
24530
|
export declare type PspDistribution = io.flow.internal.v0.models.PspDistribution;
|
|
23665
24531
|
export declare type PspRoutingDistribution = io.flow.internal.v0.models.PspRoutingDistribution;
|
|
@@ -23731,6 +24597,7 @@ export declare type RejectionReason = io.flow.internal.v0.enums.RejectionReason;
|
|
|
23731
24597
|
export declare type RemittanceResponsibility = io.flow.internal.v0.models.RemittanceResponsibility;
|
|
23732
24598
|
export declare type Report = io.flow.internal.v0.models.Report;
|
|
23733
24599
|
export declare type ReportAccount = io.flow.internal.v0.models.ReportAccount;
|
|
24600
|
+
export declare type ReportAmountRange = io.flow.internal.v0.models.ReportAmountRange;
|
|
23734
24601
|
export declare type ReportBankAccount = io.flow.internal.v0.models.ReportBankAccount;
|
|
23735
24602
|
export declare type ReportBankAccountCleartext = io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
23736
24603
|
export declare type ReportFile = io.flow.internal.v0.models.ReportFile;
|
|
@@ -23861,8 +24728,10 @@ export declare type RevenueRecordUpserted = io.flow.internal.v0.models.RevenueRe
|
|
|
23861
24728
|
export declare type RiskCheck = io.flow.internal.v0.enums.RiskCheck;
|
|
23862
24729
|
export declare type RiskEvaluation = io.flow.internal.v0.enums.RiskEvaluation;
|
|
23863
24730
|
export declare type RohanItem = io.flow.internal.v0.models.RohanItem;
|
|
24731
|
+
export declare type RohanItemDeleted = io.flow.internal.v0.models.RohanItemDeleted;
|
|
23864
24732
|
export declare type RohanItemForm = io.flow.internal.v0.models.RohanItemForm;
|
|
23865
24733
|
export declare type RohanItemType = io.flow.internal.v0.enums.RohanItemType;
|
|
24734
|
+
export declare type RohanItemUpserted = io.flow.internal.v0.models.RohanItemUpserted;
|
|
23866
24735
|
export declare type RoutingAccount = io.flow.internal.v0.models.RoutingAccount;
|
|
23867
24736
|
export declare type RoutingEntity = io.flow.internal.v0.unions.RoutingEntity;
|
|
23868
24737
|
export declare type RoutingMerchant = io.flow.internal.v0.models.RoutingMerchant;
|
|
@@ -23871,8 +24740,10 @@ export declare type SalesPaymentRecord = io.flow.internal.v0.models.SalesPayment
|
|
|
23871
24740
|
export declare type SandboxSetup = io.flow.internal.v0.models.SandboxSetup;
|
|
23872
24741
|
export declare type SandboxSetupForm = io.flow.internal.v0.models.SandboxSetupForm;
|
|
23873
24742
|
export declare type SarveshItem = io.flow.internal.v0.models.SarveshItem;
|
|
24743
|
+
export declare type SarveshItemDeleted = io.flow.internal.v0.models.SarveshItemDeleted;
|
|
23874
24744
|
export declare type SarveshItemForm = io.flow.internal.v0.models.SarveshItemForm;
|
|
23875
24745
|
export declare type SarveshItemType = io.flow.internal.v0.enums.SarveshItemType;
|
|
24746
|
+
export declare type SarveshItemUpserted = io.flow.internal.v0.models.SarveshItemUpserted;
|
|
23876
24747
|
export declare type ScheduledPayment = io.flow.internal.v0.models.ScheduledPayment;
|
|
23877
24748
|
export declare type Screen = io.flow.internal.v0.models.Screen;
|
|
23878
24749
|
export declare type ScreenForm = io.flow.internal.v0.models.ScreenForm;
|
|
@@ -23896,6 +24767,9 @@ export declare type ShipmentCostSummary = io.flow.internal.v0.models.ShipmentCos
|
|
|
23896
24767
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
23897
24768
|
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
23898
24769
|
export declare type ShippingPricing = io.flow.internal.v0.models.ShippingPricing;
|
|
24770
|
+
export declare type ShippingRateEstimateAvailableInternal = io.flow.internal.v0.models.ShippingRateEstimateAvailableInternal;
|
|
24771
|
+
export declare type ShippingRateEstimateInternal = io.flow.internal.v0.models.ShippingRateEstimateInternal;
|
|
24772
|
+
export declare type ShippingRateEstimateRequestInternal = io.flow.internal.v0.models.ShippingRateEstimateRequestInternal;
|
|
23899
24773
|
export declare type ShopifyCatalogPublication = io.flow.internal.v0.models.ShopifyCatalogPublication;
|
|
23900
24774
|
export declare type ShopifyChannelOrganizationToken = io.flow.internal.v0.models.ShopifyChannelOrganizationToken;
|
|
23901
24775
|
export declare type ShopifyChannelOrganizationTokens = io.flow.internal.v0.models.ShopifyChannelOrganizationTokens;
|
|
@@ -23935,6 +24809,7 @@ export declare type ShopifyMarketsOrderDeleted = io.flow.internal.v0.models.Shop
|
|
|
23935
24809
|
export declare type ShopifyMarketsOrderUpserted = io.flow.internal.v0.models.ShopifyMarketsOrderUpserted;
|
|
23936
24810
|
export declare type ShopifyMarketsOrderVersionWithShopId = io.flow.internal.v0.models.ShopifyMarketsOrderVersionWithShopId;
|
|
23937
24811
|
export declare type ShopifyMarketsOrdersMetrics = io.flow.internal.v0.models.ShopifyMarketsOrdersMetrics;
|
|
24812
|
+
export declare type ShopifyMarketsOrganizationOrderMetrics = io.flow.internal.v0.models.ShopifyMarketsOrganizationOrderMetrics;
|
|
23938
24813
|
export declare type ShopifyMarketsQueuedRecord = io.flow.internal.v0.models.ShopifyMarketsQueuedRecord;
|
|
23939
24814
|
export declare type ShopifyMarketsQueuedRecordType = io.flow.internal.v0.enums.ShopifyMarketsQueuedRecordType;
|
|
23940
24815
|
export declare type ShopifyMarketsShop = io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
@@ -24009,6 +24884,9 @@ export declare type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStore
|
|
|
24009
24884
|
export declare type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
|
|
24010
24885
|
export declare type ShopifyTaxonomyAlignmentConfig = io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig;
|
|
24011
24886
|
export declare type ShopifyTaxonomyAlignmentConfigForm = io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm;
|
|
24887
|
+
export declare type ShopifyTestOrder = io.flow.internal.v0.models.ShopifyTestOrder;
|
|
24888
|
+
export declare type ShopifyTestOrderDeleted = io.flow.internal.v0.models.ShopifyTestOrderDeleted;
|
|
24889
|
+
export declare type ShopifyTestOrderUpserted = io.flow.internal.v0.models.ShopifyTestOrderUpserted;
|
|
24012
24890
|
export declare type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
|
|
24013
24891
|
export declare type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
24014
24892
|
export declare type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
|
@@ -24115,6 +24993,7 @@ export declare type TaxTransaction = io.flow.internal.v0.models.TaxTransaction;
|
|
|
24115
24993
|
export declare type TaxTransactionDeleted = io.flow.internal.v0.models.TaxTransactionDeleted;
|
|
24116
24994
|
export declare type TaxTransactionType = io.flow.internal.v0.enums.TaxTransactionType;
|
|
24117
24995
|
export declare type TaxTransactionUpserted = io.flow.internal.v0.models.TaxTransactionUpserted;
|
|
24996
|
+
export declare type TaxTypeTotal = io.flow.internal.v0.models.TaxTypeTotal;
|
|
24118
24997
|
export declare type TaxonomyAlignmentCheckResult = io.flow.internal.v0.models.TaxonomyAlignmentCheckResult;
|
|
24119
24998
|
export declare type TaxonomyCategory = io.flow.internal.v0.models.TaxonomyCategory;
|
|
24120
24999
|
export declare type TaxonomyCategoryClassificationAlignment = io.flow.internal.v0.enums.TaxonomyCategoryClassificationAlignment;
|