@flowio/types 11.24.94 → 11.24.95
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 +327 -151
- package/dist/api.d.ts +88 -17
- package/package.json +2 -2
- package/src/api-internal.ts +415 -181
- package/src/api.ts +123 -20
package/dist/api-internal.d.ts
CHANGED
|
@@ -709,8 +709,9 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
709
709
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
710
710
|
readonly sequence_number: number;
|
|
711
711
|
readonly posting_cutoff: string;
|
|
712
|
-
readonly trigger
|
|
712
|
+
readonly trigger?: io.flow.billing.accounting.v0.unions.FulfillmentTrigger;
|
|
713
713
|
readonly fulfilled_at: string;
|
|
714
|
+
readonly carrier?: io.flow.billing.accounting.v0.models.FulfillmentCarrier;
|
|
714
715
|
readonly owner: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
715
716
|
readonly origin?: io.flow.billing.accounting.v0.models.FulfillmentOrigin;
|
|
716
717
|
readonly business?: io.flow.billing.accounting.v0.models.FulfillmentBusiness;
|
|
@@ -719,6 +720,11 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
719
720
|
interface FulfillmentBusiness {
|
|
720
721
|
readonly vat_registration_number: string;
|
|
721
722
|
}
|
|
723
|
+
interface FulfillmentCarrier {
|
|
724
|
+
readonly id: string;
|
|
725
|
+
readonly service_id?: string;
|
|
726
|
+
readonly tracking_number?: string;
|
|
727
|
+
}
|
|
722
728
|
interface FulfillmentOrigin {
|
|
723
729
|
readonly country: string;
|
|
724
730
|
readonly province_code?: string;
|
|
@@ -2515,6 +2521,9 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2515
2521
|
readonly currency: string;
|
|
2516
2522
|
readonly source?: io.flow.label.v0.enums.CostEstimateSource;
|
|
2517
2523
|
}
|
|
2524
|
+
interface BillingCsvMerchantReference {
|
|
2525
|
+
readonly id: string;
|
|
2526
|
+
}
|
|
2518
2527
|
interface BillingCsvOrder {
|
|
2519
2528
|
readonly number: string;
|
|
2520
2529
|
readonly primary_identifier?: string;
|
|
@@ -2649,6 +2658,7 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2649
2658
|
}
|
|
2650
2659
|
interface BillingCsvTransactionAccount {
|
|
2651
2660
|
readonly id: string;
|
|
2661
|
+
readonly merchant?: io.flow.billing.csv.v0.models.BillingCsvMerchantReference;
|
|
2652
2662
|
readonly environment: io.flow.common.v0.enums.Environment;
|
|
2653
2663
|
readonly source: io.flow.billing.csv.v0.models.BillingCsvTransactionAccountSourceSummary;
|
|
2654
2664
|
}
|
|
@@ -2679,8 +2689,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2679
2689
|
readonly shipping_label_revenue_share?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataShippingLabelRevenueShare;
|
|
2680
2690
|
readonly trueup?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataTrueup;
|
|
2681
2691
|
readonly carrier_charge?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierCharge;
|
|
2682
|
-
readonly carrier_fee?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataCarrierFee;
|
|
2683
2692
|
readonly manual?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataManual;
|
|
2693
|
+
readonly failed_payout?: io.flow.billing.csv.v0.models.BillingCsvTransactionMetadataFailedPayout;
|
|
2684
2694
|
}
|
|
2685
2695
|
interface BillingCsvTransactionMetadataCarrierCharge {
|
|
2686
2696
|
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
@@ -2690,19 +2700,17 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2690
2700
|
readonly revenue_share_percentage: number;
|
|
2691
2701
|
readonly outbound_transaction_id?: string;
|
|
2692
2702
|
}
|
|
2693
|
-
interface BillingCsvTransactionMetadataCarrierFee {
|
|
2694
|
-
readonly outbound_transaction_id: string;
|
|
2695
|
-
readonly estimate_fixed_ddp?: number;
|
|
2696
|
-
readonly estimate_fixed_currency_conversion?: number;
|
|
2697
|
-
readonly actual_fixed_ddp?: number;
|
|
2698
|
-
readonly actual_fixed_currency_conversion?: number;
|
|
2699
|
-
}
|
|
2700
2703
|
interface BillingCsvTransactionMetadataChannel {
|
|
2701
2704
|
readonly method: string;
|
|
2702
2705
|
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
2703
2706
|
}
|
|
2707
|
+
interface BillingCsvTransactionMetadataFailedPayout {
|
|
2708
|
+
readonly failed_payment: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
2709
|
+
}
|
|
2704
2710
|
interface BillingCsvTransactionMetadataManual {
|
|
2711
|
+
readonly description: string;
|
|
2705
2712
|
readonly original?: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
2713
|
+
readonly category?: io.flow.billing.internal.v0.enums.ManualTransactionCategory;
|
|
2706
2714
|
readonly url?: string;
|
|
2707
2715
|
}
|
|
2708
2716
|
interface BillingCsvTransactionMetadataShippingLabel {
|
|
@@ -3788,6 +3796,12 @@ declare namespace io.flow.label.v0.models {
|
|
|
3788
3796
|
readonly id: string;
|
|
3789
3797
|
readonly number: string;
|
|
3790
3798
|
}
|
|
3799
|
+
interface LabelProcessingModification {
|
|
3800
|
+
readonly id: string;
|
|
3801
|
+
readonly modifications: string[];
|
|
3802
|
+
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3803
|
+
readonly destination_provided_to_carrier?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3804
|
+
}
|
|
3791
3805
|
interface LabelReference {
|
|
3792
3806
|
readonly id: string;
|
|
3793
3807
|
}
|
|
@@ -4706,6 +4720,11 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4706
4720
|
readonly fulfillment_status: io.flow.shopify.markets.internal.v0.enums.ChannelOrderFulfillmentStatusCode;
|
|
4707
4721
|
readonly timestamp: string;
|
|
4708
4722
|
}
|
|
4723
|
+
interface ChannelOrganizationIdentifier {
|
|
4724
|
+
readonly id: string;
|
|
4725
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
4726
|
+
readonly identifier: string;
|
|
4727
|
+
}
|
|
4709
4728
|
interface FlowShopValidationError {
|
|
4710
4729
|
readonly message: string;
|
|
4711
4730
|
readonly reason: string;
|
|
@@ -4833,6 +4852,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
4833
4852
|
readonly initial_catalog_synced_at?: string;
|
|
4834
4853
|
readonly catalog_sync_duration?: number;
|
|
4835
4854
|
readonly catalog_products_count?: number;
|
|
4855
|
+
readonly initial_product_restrictions_synced_at?: string;
|
|
4836
4856
|
}
|
|
4837
4857
|
interface ThirdPartyLogisticsPartner {
|
|
4838
4858
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
@@ -6258,7 +6278,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
6258
6278
|
type ShopifyOrderFulfillmentStatusType = 'fulfilled' | 'null' | 'partial';
|
|
6259
6279
|
type ShopifyOrderInventoryBehaviour = 'bypass' | 'decrement_ignoring_policy' | 'decrement_obeying_policy';
|
|
6260
6280
|
type ShopifyOrderKindType = 'authorization' | 'capture' | 'sale' | 'void' | 'refund';
|
|
6261
|
-
type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments';
|
|
6281
|
+
type ShopifyOrderPaymentGatewayNames = 'flow_commerce' | 'gift_card' | 'manual' | 'shopify_payments' | 'shop_cash';
|
|
6262
6282
|
type ShopifyOrderProcessingMethodType = 'checkout' | 'direct' | 'manual' | 'offsite' | 'express' | 'deferred_payment';
|
|
6263
6283
|
type ShopifyOrderRestockType = 'no_restock' | 'cancel' | 'return';
|
|
6264
6284
|
type ShopifyOrderStatusType = 'open' | 'closed' | 'cancelled' | 'any';
|
|
@@ -7510,8 +7530,9 @@ declare namespace io.flow.common.v0.unions {
|
|
|
7510
7530
|
type RepeatSchedule = io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly;
|
|
7511
7531
|
}
|
|
7512
7532
|
declare namespace io.flow.billing.reporting.v0.enums {
|
|
7533
|
+
type ReportPaymentType = 'credit' | 'debit';
|
|
7513
7534
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
7514
|
-
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances';
|
|
7535
|
+
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants';
|
|
7515
7536
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
7516
7537
|
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
7517
7538
|
}
|
|
@@ -7542,8 +7563,9 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7542
7563
|
readonly id: string;
|
|
7543
7564
|
readonly status: io.flow.billing.reporting.v0.enums.ReportStatus;
|
|
7544
7565
|
readonly type: io.flow.billing.reporting.v0.enums.ReportType;
|
|
7545
|
-
readonly from
|
|
7546
|
-
readonly to
|
|
7566
|
+
readonly from?: string;
|
|
7567
|
+
readonly to?: string;
|
|
7568
|
+
readonly payment_type?: io.flow.billing.reporting.v0.enums.ReportPaymentType;
|
|
7547
7569
|
readonly url?: string;
|
|
7548
7570
|
readonly processed_at?: string;
|
|
7549
7571
|
}
|
|
@@ -7562,9 +7584,18 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7562
7584
|
readonly account_number: string;
|
|
7563
7585
|
}
|
|
7564
7586
|
interface ReportForm {
|
|
7565
|
-
readonly from: string;
|
|
7566
|
-
readonly to: string;
|
|
7567
7587
|
readonly type: io.flow.billing.reporting.v0.enums.ReportType;
|
|
7588
|
+
readonly from?: string;
|
|
7589
|
+
readonly to?: string;
|
|
7590
|
+
readonly payment_type?: io.flow.billing.reporting.v0.enums.ReportPaymentType;
|
|
7591
|
+
readonly orders?: io.flow.billing.reporting.v0.models.ReportOrderReference[];
|
|
7592
|
+
}
|
|
7593
|
+
interface ReportMerchant {
|
|
7594
|
+
readonly id: string;
|
|
7595
|
+
}
|
|
7596
|
+
interface ReportOrderReference {
|
|
7597
|
+
readonly organization_id: string;
|
|
7598
|
+
readonly order_number: string;
|
|
7568
7599
|
}
|
|
7569
7600
|
interface ReportOwner {
|
|
7570
7601
|
readonly name: string;
|
|
@@ -7676,7 +7707,6 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7676
7707
|
readonly tax: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7677
7708
|
readonly duty: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7678
7709
|
readonly freight: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7679
|
-
readonly refund: io.flow.billing.reporting.v0.models.ReportingMonetaryValue;
|
|
7680
7710
|
}
|
|
7681
7711
|
interface ReportingMonetaryValue {
|
|
7682
7712
|
readonly transaction: number;
|
|
@@ -7770,6 +7800,7 @@ declare namespace io.flow.billing.reporting.v0.models {
|
|
|
7770
7800
|
readonly payment: io.flow.billing.reporting.v0.models.ReportPayment;
|
|
7771
7801
|
readonly bank_account: io.flow.billing.reporting.v0.models.ReportBankAccountCleartext;
|
|
7772
7802
|
readonly account: io.flow.billing.reporting.v0.models.ReportAccount;
|
|
7803
|
+
readonly merchant: io.flow.billing.reporting.v0.models.ReportMerchant;
|
|
7773
7804
|
readonly owner: io.flow.billing.reporting.v0.models.ReportOwner;
|
|
7774
7805
|
readonly description: string;
|
|
7775
7806
|
}
|
|
@@ -8670,6 +8701,20 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8670
8701
|
readonly channel_id: string;
|
|
8671
8702
|
readonly channel_order_summary: io.flow.shopify.markets.internal.v0.models.ChannelOrderSummary;
|
|
8672
8703
|
}
|
|
8704
|
+
interface ChannelOrganizationIdentifierDeleted {
|
|
8705
|
+
readonly discriminator: 'channel_organization_identifier_deleted';
|
|
8706
|
+
readonly event_id: string;
|
|
8707
|
+
readonly timestamp: string;
|
|
8708
|
+
readonly channel_id: string;
|
|
8709
|
+
readonly id: string;
|
|
8710
|
+
}
|
|
8711
|
+
interface ChannelOrganizationIdentifierUpserted {
|
|
8712
|
+
readonly discriminator: 'channel_organization_identifier_upserted';
|
|
8713
|
+
readonly event_id: string;
|
|
8714
|
+
readonly timestamp: string;
|
|
8715
|
+
readonly channel_id: string;
|
|
8716
|
+
readonly channel_organization_identifier: io.flow.shopify.markets.internal.v0.models.ChannelOrganizationIdentifier;
|
|
8717
|
+
}
|
|
8673
8718
|
interface ShopifyMarketsMetricsDeleted {
|
|
8674
8719
|
readonly discriminator: 'shopify_markets_metrics_deleted';
|
|
8675
8720
|
readonly event_id: string;
|
|
@@ -8744,7 +8789,7 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8744
8789
|
}
|
|
8745
8790
|
}
|
|
8746
8791
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8747
|
-
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.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;
|
|
8792
|
+
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.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;
|
|
8748
8793
|
}
|
|
8749
8794
|
declare namespace io.flow.experience.v0.enums {
|
|
8750
8795
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -10535,7 +10580,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
10535
10580
|
}
|
|
10536
10581
|
declare namespace io.flow.trueup.v0.enums {
|
|
10537
10582
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
10538
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion';
|
|
10583
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup';
|
|
10539
10584
|
}
|
|
10540
10585
|
declare namespace io.flow.trueup.v0.models {
|
|
10541
10586
|
interface DeadWeight {
|
|
@@ -11480,18 +11525,17 @@ declare namespace io.flow.billing.internal.v0.enums {
|
|
|
11480
11525
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
11481
11526
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11482
11527
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
11483
|
-
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' | '
|
|
11528
|
+
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';
|
|
11484
11529
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
11485
|
-
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'
|
|
11530
|
+
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';
|
|
11486
11531
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
11487
|
-
type CarrierFeeTransactionType = 'adjustment' | 'reversal' | 'fee';
|
|
11488
11532
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
11489
11533
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
11490
11534
|
type DisputeTransactionType = 'adjustment' | 'dispute';
|
|
11491
11535
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
11492
11536
|
type FeesSource = 'settings' | 'authorization_bundle';
|
|
11493
11537
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
11494
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | '
|
|
11538
|
+
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';
|
|
11495
11539
|
type OrderCancellationInitiatedBy = 'flow' | 'organization';
|
|
11496
11540
|
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
11497
11541
|
type PreferredBillingSchedule = 'monthly' | 'bi-monthly';
|
|
@@ -11585,6 +11629,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11585
11629
|
readonly liabilities_method: io.flow.billing.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
11586
11630
|
readonly enable_fee_reversals: boolean;
|
|
11587
11631
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
11632
|
+
readonly enable_negative_debits: boolean;
|
|
11588
11633
|
}
|
|
11589
11634
|
interface AccountSource {
|
|
11590
11635
|
readonly id: string;
|
|
@@ -11651,6 +11696,14 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11651
11696
|
readonly transfer_transaction_ids: string[];
|
|
11652
11697
|
readonly attributes?: Record<string, string>;
|
|
11653
11698
|
}
|
|
11699
|
+
interface BankPaymentOrder {
|
|
11700
|
+
readonly id: string;
|
|
11701
|
+
readonly payment: io.flow.billing.internal.v0.models.BankPaymentReference;
|
|
11702
|
+
readonly order: io.flow.billing.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
11703
|
+
}
|
|
11704
|
+
interface BankPaymentReference {
|
|
11705
|
+
readonly id: string;
|
|
11706
|
+
}
|
|
11654
11707
|
interface BankPaymentStatusForm {
|
|
11655
11708
|
readonly code: io.flow.billing.internal.v0.enums.BankPaymentStatusCode;
|
|
11656
11709
|
readonly failure_reason?: io.flow.billing.v0.enums.PayoutStatusFailureCode;
|
|
@@ -11776,7 +11829,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11776
11829
|
readonly duty: io.flow.common.v0.models.Price;
|
|
11777
11830
|
readonly trueup: io.flow.common.v0.models.Price;
|
|
11778
11831
|
readonly carrier_charge: io.flow.common.v0.models.Price;
|
|
11779
|
-
readonly carrier_fee: io.flow.common.v0.models.Price;
|
|
11780
11832
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
11781
11833
|
}
|
|
11782
11834
|
interface BillingTransaction {
|
|
@@ -11806,21 +11858,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11806
11858
|
readonly statement?: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
11807
11859
|
readonly created_at: string;
|
|
11808
11860
|
}
|
|
11809
|
-
interface CarrierFeeTransaction {
|
|
11810
|
-
readonly discriminator: 'carrier_fee_transaction';
|
|
11811
|
-
readonly label_reference: io.flow.billing.internal.v0.models.CarrierFeeTransactionLabelReference;
|
|
11812
|
-
readonly id: string;
|
|
11813
|
-
readonly type: io.flow.billing.internal.v0.enums.BillingTransactionType;
|
|
11814
|
-
readonly status: io.flow.billing.internal.v0.enums.BillingTransactionStatus;
|
|
11815
|
-
readonly posted_at?: string;
|
|
11816
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
11817
|
-
readonly description: string;
|
|
11818
|
-
readonly statement?: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
11819
|
-
readonly created_at: string;
|
|
11820
|
-
}
|
|
11821
|
-
interface CarrierFeeTransactionLabelReference {
|
|
11822
|
-
readonly id: string;
|
|
11823
|
-
}
|
|
11824
11861
|
interface ChannelAccount {
|
|
11825
11862
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
11826
11863
|
readonly id: string;
|
|
@@ -11911,6 +11948,15 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11911
11948
|
readonly value: number;
|
|
11912
11949
|
readonly timestamp: string;
|
|
11913
11950
|
}
|
|
11951
|
+
interface CliLogEntry {
|
|
11952
|
+
readonly id: string;
|
|
11953
|
+
readonly user: io.flow.common.v0.models.UserReference;
|
|
11954
|
+
readonly task: string;
|
|
11955
|
+
}
|
|
11956
|
+
interface CliLogEntryForm {
|
|
11957
|
+
readonly user_id: string;
|
|
11958
|
+
readonly task: string;
|
|
11959
|
+
}
|
|
11914
11960
|
interface Components {
|
|
11915
11961
|
readonly vat: io.flow.common.v0.models.Price;
|
|
11916
11962
|
readonly duty: io.flow.common.v0.models.Price;
|
|
@@ -12466,7 +12512,7 @@ declare namespace io.flow.billing.internal.v0.unions {
|
|
|
12466
12512
|
type PlatformFee = io.flow.billing.internal.v0.models.PlatformFeePause | io.flow.billing.internal.v0.models.PlatformFeeFlat | io.flow.billing.internal.v0.models.PlatformFeePercentage | io.flow.billing.internal.v0.models.PlatformFeeDisabled;
|
|
12467
12513
|
type ProofOfPosting = io.flow.billing.internal.v0.models.ProofOfPostingFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.billing.internal.v0.models.ProofOfPostingShippingNotification | io.flow.billing.internal.v0.models.ProofOfPostingOrderCancellation | io.flow.billing.internal.v0.models.ProofOfPostingOrderCombinedShipment | io.flow.billing.internal.v0.models.ProofOfPostingTimeElapsed;
|
|
12468
12514
|
type SpotRateMetadata = io.flow.billing.internal.v0.models.SpotRateMetadataIdentity | io.flow.billing.internal.v0.models.SpotRateMetadataRate;
|
|
12469
|
-
type Transaction = io.flow.billing.internal.v0.models.InvoiceTransaction | io.flow.billing.internal.v0.models.ManualTransaction | io.flow.billing.internal.v0.models.ProcessingTransaction | io.flow.billing.internal.v0.models.SubscriptionTransaction | io.flow.billing.internal.v0.models.TaxRemittanceTransaction | io.flow.billing.internal.v0.models.TransferTransaction | io.flow.billing.internal.v0.models.VirtualCardTransaction | io.flow.billing.internal.v0.models.DisputeTransaction | io.flow.billing.internal.v0.models.ChannelTransaction | io.flow.billing.internal.v0.models.LabelTransaction | io.flow.billing.internal.v0.models.OrderTransaction | io.flow.billing.internal.v0.models.ChannelBilledTransaction | io.flow.billing.internal.v0.models.TaxTransaction | io.flow.billing.internal.v0.models.DutyTransaction | io.flow.billing.internal.v0.models.TrueupTransaction | io.flow.billing.internal.v0.models.CarrierChargeTransaction
|
|
12515
|
+
type Transaction = io.flow.billing.internal.v0.models.InvoiceTransaction | io.flow.billing.internal.v0.models.ManualTransaction | io.flow.billing.internal.v0.models.ProcessingTransaction | io.flow.billing.internal.v0.models.SubscriptionTransaction | io.flow.billing.internal.v0.models.TaxRemittanceTransaction | io.flow.billing.internal.v0.models.TransferTransaction | io.flow.billing.internal.v0.models.VirtualCardTransaction | io.flow.billing.internal.v0.models.DisputeTransaction | io.flow.billing.internal.v0.models.ChannelTransaction | io.flow.billing.internal.v0.models.LabelTransaction | io.flow.billing.internal.v0.models.OrderTransaction | io.flow.billing.internal.v0.models.ChannelBilledTransaction | io.flow.billing.internal.v0.models.TaxTransaction | io.flow.billing.internal.v0.models.DutyTransaction | io.flow.billing.internal.v0.models.TrueupTransaction | io.flow.billing.internal.v0.models.CarrierChargeTransaction;
|
|
12470
12516
|
}
|
|
12471
12517
|
declare namespace io.flow.billing.v0.enums {
|
|
12472
12518
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
@@ -12474,8 +12520,8 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
12474
12520
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
12475
12521
|
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';
|
|
12476
12522
|
type StatementAttachmentType = 'csv';
|
|
12477
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | '
|
|
12478
|
-
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
12523
|
+
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';
|
|
12524
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
12479
12525
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
12480
12526
|
}
|
|
12481
12527
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -12727,19 +12773,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12727
12773
|
readonly revenue_share_percentage: number;
|
|
12728
12774
|
readonly outbound?: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
|
|
12729
12775
|
}
|
|
12730
|
-
interface TransactionMetadataCarrierFee {
|
|
12731
|
-
readonly discriminator: 'carrier_fee';
|
|
12732
|
-
readonly outbound: io.flow.billing.v0.models.TransactionMetadataOutboundTransaction;
|
|
12733
|
-
readonly estimate: io.flow.billing.v0.models.TransactionMetadataCarrierFeeData;
|
|
12734
|
-
readonly actual: io.flow.billing.v0.models.TransactionMetadataCarrierFeeData;
|
|
12735
|
-
}
|
|
12736
|
-
interface TransactionMetadataCarrierFeeData {
|
|
12737
|
-
readonly surcharges: io.flow.billing.v0.models.TrueupLabelSurcharge[];
|
|
12738
|
-
}
|
|
12739
12776
|
interface TransactionMetadataChannel {
|
|
12740
12777
|
readonly discriminator: 'channel';
|
|
12741
12778
|
readonly method: string;
|
|
12742
12779
|
readonly card?: io.flow.billing.v0.models.TransactionMetadataChannelCardMetadata;
|
|
12780
|
+
readonly organization_transaction: io.flow.billing.v0.models.TransactionReference;
|
|
12743
12781
|
}
|
|
12744
12782
|
interface TransactionMetadataChannelCardMetadata {
|
|
12745
12783
|
readonly type: io.flow.payment.v0.enums.CardType;
|
|
@@ -12749,6 +12787,13 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12749
12787
|
readonly iin: string;
|
|
12750
12788
|
readonly country: string;
|
|
12751
12789
|
}
|
|
12790
|
+
interface TransactionMetadataFailedPayout {
|
|
12791
|
+
readonly discriminator: 'failed_payout';
|
|
12792
|
+
readonly failed_payout: io.flow.billing.v0.models.TransactionMetadataFailedPayoutReference;
|
|
12793
|
+
}
|
|
12794
|
+
interface TransactionMetadataFailedPayoutReference {
|
|
12795
|
+
readonly id: string;
|
|
12796
|
+
}
|
|
12752
12797
|
interface TransactionMetadataManual {
|
|
12753
12798
|
readonly discriminator: 'manual';
|
|
12754
12799
|
readonly description: string;
|
|
@@ -12763,6 +12808,7 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12763
12808
|
}
|
|
12764
12809
|
interface TransactionMetadataPaymentTransaction {
|
|
12765
12810
|
readonly discriminator: 'payment_transaction';
|
|
12811
|
+
readonly id?: string;
|
|
12766
12812
|
readonly key?: string;
|
|
12767
12813
|
}
|
|
12768
12814
|
interface TransactionMetadataShippingLabel {
|
|
@@ -12781,6 +12827,20 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12781
12827
|
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
12782
12828
|
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
12783
12829
|
}
|
|
12830
|
+
interface TransactionMetadataTrueupBase {
|
|
12831
|
+
readonly discriminator: 'trueup_base';
|
|
12832
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
12833
|
+
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupBaseData;
|
|
12834
|
+
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupBaseData;
|
|
12835
|
+
}
|
|
12836
|
+
interface TransactionMetadataTrueupBaseData {
|
|
12837
|
+
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
12838
|
+
readonly weights: io.flow.billing.v0.models.TrueupLabelWeights;
|
|
12839
|
+
readonly units: io.flow.billing.v0.models.TrueupLabelUnits;
|
|
12840
|
+
readonly base: io.flow.billing.v0.models.TrueupLabelBaseV2;
|
|
12841
|
+
readonly fuel?: io.flow.billing.v0.models.TrueupLabelFuel;
|
|
12842
|
+
readonly total: number;
|
|
12843
|
+
}
|
|
12784
12844
|
interface TransactionMetadataTrueupData {
|
|
12785
12845
|
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
12786
12846
|
readonly units: io.flow.billing.v0.models.TrueupLabelUnits;
|
|
@@ -12790,6 +12850,16 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12790
12850
|
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
12791
12851
|
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
12792
12852
|
}
|
|
12853
|
+
interface TransactionMetadataTrueupSurcharge {
|
|
12854
|
+
readonly discriminator: 'trueup_surcharge';
|
|
12855
|
+
readonly original: io.flow.billing.v0.models.TransactionMetadataOriginalTransaction;
|
|
12856
|
+
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
12857
|
+
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupSurchargeData;
|
|
12858
|
+
}
|
|
12859
|
+
interface TransactionMetadataTrueupSurchargeData {
|
|
12860
|
+
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
12861
|
+
readonly surcharge: io.flow.billing.v0.models.TrueupLabelSurcharge;
|
|
12862
|
+
}
|
|
12793
12863
|
interface TransactionReference {
|
|
12794
12864
|
readonly id: string;
|
|
12795
12865
|
}
|
|
@@ -12797,6 +12867,17 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12797
12867
|
readonly amount: number;
|
|
12798
12868
|
readonly weight: number;
|
|
12799
12869
|
}
|
|
12870
|
+
interface TrueupLabelBaseV2 {
|
|
12871
|
+
readonly amount: number;
|
|
12872
|
+
}
|
|
12873
|
+
interface TrueupLabelBaseWeight {
|
|
12874
|
+
readonly weight: number;
|
|
12875
|
+
}
|
|
12876
|
+
interface TrueupLabelFuel {
|
|
12877
|
+
readonly amount: number;
|
|
12878
|
+
readonly percentage?: number;
|
|
12879
|
+
readonly per_weight_unit?: number;
|
|
12880
|
+
}
|
|
12800
12881
|
interface TrueupLabelSurcharge {
|
|
12801
12882
|
readonly amount: number;
|
|
12802
12883
|
readonly type: io.flow.trueup.v0.enums.TrueupSurchargeType;
|
|
@@ -12807,6 +12888,11 @@ declare namespace io.flow.billing.v0.models {
|
|
|
12807
12888
|
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
12808
12889
|
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
12809
12890
|
}
|
|
12891
|
+
interface TrueupLabelWeights {
|
|
12892
|
+
readonly base: io.flow.billing.v0.models.TrueupLabelBaseWeight;
|
|
12893
|
+
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
12894
|
+
readonly dimensional?: io.flow.trueup.v0.models.DimensionalWeight;
|
|
12895
|
+
}
|
|
12810
12896
|
interface WithholdingDeduction {
|
|
12811
12897
|
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
12812
12898
|
readonly amount: number;
|
|
@@ -12817,7 +12903,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
12817
12903
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
12818
12904
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
12819
12905
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
12820
|
-
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.
|
|
12906
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataChannel | io.flow.billing.v0.models.TransactionMetadataTrueup | io.flow.billing.v0.models.TransactionMetadataTrueupBase | io.flow.billing.v0.models.TransactionMetadataTrueupSurcharge | io.flow.billing.v0.models.TransactionMetadataCarrierCharge | io.flow.billing.v0.models.TransactionMetadataManual | io.flow.billing.v0.models.TransactionMetadataFailedPayout | io.flow.billing.v0.models.TransactionMetadataPaymentTransaction;
|
|
12821
12907
|
}
|
|
12822
12908
|
declare namespace io.flow.harmonization.v0.enums {
|
|
12823
12909
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -14251,16 +14337,15 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14251
14337
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
14252
14338
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
14253
14339
|
type BillingAllocationKey = 'freight_cost' | 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'fuel_surcharge' | 'remote_area_surcharge';
|
|
14254
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | '
|
|
14255
|
-
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' | '
|
|
14340
|
+
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_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_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' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction';
|
|
14341
|
+
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';
|
|
14256
14342
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
14257
|
-
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'
|
|
14343
|
+
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';
|
|
14258
14344
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
14259
14345
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
14260
14346
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
14261
|
-
type CarrierChargeType = 'label' | 'other';
|
|
14262
|
-
type
|
|
14263
|
-
type CarrierFileType = 'charge' | 'fee';
|
|
14347
|
+
type CarrierChargeType = 'label' | 'tax' | 'other';
|
|
14348
|
+
type CarrierFileType = 'freight' | 'tax';
|
|
14264
14349
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
14265
14350
|
type CarrierValidationStatus = 'success' | 'error';
|
|
14266
14351
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
@@ -14272,7 +14357,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14272
14357
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
14273
14358
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
14274
14359
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
14275
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge';
|
|
14360
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge';
|
|
14276
14361
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
14277
14362
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
14278
14363
|
type CheckoutAssetType = 'stylesheet' | 'javascript';
|
|
@@ -14281,7 +14366,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14281
14366
|
type CheckoutRedirectMethod = 'get' | 'post';
|
|
14282
14367
|
type CheckoutShippingMethodPromptBehavior = 'always' | 'multiple';
|
|
14283
14368
|
type CheckoutUrlType = 'continue_shopping' | 'confirmation' | 'invalid_checkout';
|
|
14369
|
+
type ClassificationDecision = 'Accept' | 'Reject';
|
|
14284
14370
|
type ClassificationErrorCode = 'generic_error';
|
|
14371
|
+
type ClassificationPlatform = 'GlobalE' | 'Flow' | 'Borderfree';
|
|
14372
|
+
type ClassificationType = 'None' | 'Manual' | 'ML';
|
|
14373
|
+
type ClothingAgeClassification = 'None' | 'AgeKidsGeneral' | 'Age0_10' | 'Age10_13' | 'Age13_14';
|
|
14285
14374
|
type ColmItemType = 'physical' | 'digital';
|
|
14286
14375
|
type ComplianceType = 'weee';
|
|
14287
14376
|
type ContentElementType = 'markdown' | 'html' | 'plain_text' | 'href';
|
|
@@ -14312,7 +14401,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14312
14401
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
14313
14402
|
type EmptyAttribute = 'irrelevant';
|
|
14314
14403
|
type ErpFileType = 'vendor';
|
|
14315
|
-
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' | 'index_assignment_upserted' | 'index_assignment_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' | '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' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_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' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | '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' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | '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' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | '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' | 'carrier_fee_upserted' | 'carrier_fee_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_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' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | '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' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | '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_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | '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' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_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' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_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_lane_aggregate_upserted' | 'ratecard_lane_aggregate_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' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_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_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_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' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_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_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14404
|
+
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' | 'index_assignment_upserted' | 'index_assignment_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' | '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' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_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' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | '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' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | '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' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | '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_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' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | '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' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | '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_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | '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' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_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' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_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_lane_aggregate_upserted' | 'ratecard_lane_aggregate_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' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_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' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_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_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_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' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_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_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14316
14405
|
type ExperienceImportType = 'experience_with_settings';
|
|
14317
14406
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14318
14407
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14343,12 +14432,12 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14343
14432
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
14344
14433
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
14345
14434
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
14346
|
-
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
14435
|
+
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'merchant_operations' | 'globale_system';
|
|
14347
14436
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
14348
14437
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
14349
14438
|
type LogisticsCapability = 'logistics_address_correction';
|
|
14350
14439
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
14351
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | '
|
|
14440
|
+
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';
|
|
14352
14441
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
14353
14442
|
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
14354
14443
|
type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
|
|
@@ -14408,8 +14497,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14408
14497
|
type RedirectReason = 'three_d_secure';
|
|
14409
14498
|
type RejectionReason = 'merchant_policy' | 'previous_chargebacks' | 'restricted_party_screening' | 'risky_velocity' | 'suspicious_behavior' | 'suspicious_past_activity';
|
|
14410
14499
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14500
|
+
type ReportPaymentType = 'credit' | 'debit';
|
|
14411
14501
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
14412
|
-
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances';
|
|
14502
|
+
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants';
|
|
14413
14503
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
14414
14504
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
14415
14505
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -14427,7 +14517,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14427
14517
|
type ShopifyGrantStatus = 'pass' | 'fail';
|
|
14428
14518
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
14429
14519
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
14430
|
-
type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations';
|
|
14520
|
+
type ShopifyMarketsQueuedRecordType = 'card_payment' | 'catalog_publication_sync' | 'flow_shop' | 'online_payment' | 'order_update' | 'order_edit' | 'product_restriction_result' | 'product_sync' | 'webhook_registrations' | 'channel_organization_identifier';
|
|
14431
14521
|
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
14432
14522
|
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
14433
14523
|
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
@@ -14603,6 +14693,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14603
14693
|
readonly liabilities_method: io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
14604
14694
|
readonly enable_fee_reversals: boolean;
|
|
14605
14695
|
readonly record_reason_for_transactions_pending_payout: boolean;
|
|
14696
|
+
readonly enable_negative_debits: boolean;
|
|
14606
14697
|
}
|
|
14607
14698
|
interface AccountSettingsDeleted {
|
|
14608
14699
|
readonly discriminator: 'account_settings_deleted';
|
|
@@ -14665,12 +14756,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14665
14756
|
readonly timestamp: string;
|
|
14666
14757
|
readonly account: io.flow.internal.v0.models.FlowAccount;
|
|
14667
14758
|
}
|
|
14668
|
-
interface AccountingFulfillmentMetadata {
|
|
14669
|
-
readonly discriminator: 'accounting_fulfillment_metadata';
|
|
14670
|
-
readonly order: io.flow.internal.v0.models.OrderReference;
|
|
14671
|
-
readonly proof?: io.flow.internal.v0.unions.FulfillmentProof;
|
|
14672
|
-
readonly posting_cutoff: string;
|
|
14673
|
-
}
|
|
14674
14759
|
interface AccountingPendingOrderMetadata {
|
|
14675
14760
|
readonly discriminator: 'accounting_pending_order_metadata';
|
|
14676
14761
|
readonly order: io.flow.internal.v0.models.OrderReference;
|
|
@@ -15199,6 +15284,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15199
15284
|
readonly payment: io.flow.internal.v0.models.BankPaymentReference;
|
|
15200
15285
|
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
15201
15286
|
}
|
|
15287
|
+
interface BankPaymentOrderDeleted {
|
|
15288
|
+
readonly discriminator: 'bank_payment_order_deleted';
|
|
15289
|
+
readonly event_id: string;
|
|
15290
|
+
readonly timestamp: string;
|
|
15291
|
+
readonly id: string;
|
|
15292
|
+
}
|
|
15293
|
+
interface BankPaymentOrderUpserted {
|
|
15294
|
+
readonly discriminator: 'bank_payment_order_upserted';
|
|
15295
|
+
readonly event_id: string;
|
|
15296
|
+
readonly timestamp: string;
|
|
15297
|
+
readonly bank_payment_order: io.flow.internal.v0.models.BankPaymentOrder;
|
|
15298
|
+
}
|
|
15202
15299
|
interface BankPaymentReference {
|
|
15203
15300
|
readonly id: string;
|
|
15204
15301
|
}
|
|
@@ -15386,7 +15483,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15386
15483
|
readonly duty: io.flow.common.v0.models.Price;
|
|
15387
15484
|
readonly trueup: io.flow.common.v0.models.Price;
|
|
15388
15485
|
readonly carrier_charge: io.flow.common.v0.models.Price;
|
|
15389
|
-
readonly carrier_fee: io.flow.common.v0.models.Price;
|
|
15390
15486
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
15391
15487
|
}
|
|
15392
15488
|
interface BillingStatementUpserted {
|
|
@@ -15662,7 +15758,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15662
15758
|
readonly carrier_tracking_number: string;
|
|
15663
15759
|
readonly label_created_at: string;
|
|
15664
15760
|
readonly units: io.flow.internal.v0.models.CarrierChargeUnits;
|
|
15665
|
-
readonly base
|
|
15761
|
+
readonly base?: io.flow.trueup.v0.models.LabelBase;
|
|
15666
15762
|
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
15667
15763
|
readonly total: number;
|
|
15668
15764
|
readonly dead?: io.flow.trueup.v0.models.DeadWeight;
|
|
@@ -15728,7 +15824,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15728
15824
|
}
|
|
15729
15825
|
interface CarrierChargeUnits {
|
|
15730
15826
|
readonly currency: string;
|
|
15731
|
-
readonly weight
|
|
15827
|
+
readonly weight?: io.flow.units.v0.enums.UnitOfWeight;
|
|
15732
15828
|
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
15733
15829
|
}
|
|
15734
15830
|
interface CarrierChargeUpserted {
|
|
@@ -15738,54 +15834,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15738
15834
|
readonly organization: string;
|
|
15739
15835
|
readonly carrier_charge: io.flow.internal.v0.models.CarrierCharge;
|
|
15740
15836
|
}
|
|
15741
|
-
interface CarrierFee {
|
|
15742
|
-
readonly id: string;
|
|
15743
|
-
readonly label_invoice_request_id: string;
|
|
15744
|
-
readonly units: io.flow.internal.v0.models.CarrierFeeUnits;
|
|
15745
|
-
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
15746
|
-
readonly total: number;
|
|
15747
|
-
readonly attributes?: Record<string, string>;
|
|
15748
|
-
}
|
|
15749
|
-
interface CarrierFeeDeleted {
|
|
15750
|
-
readonly discriminator: 'carrier_fee_deleted';
|
|
15751
|
-
readonly event_id: string;
|
|
15752
|
-
readonly timestamp: string;
|
|
15753
|
-
readonly organization: string;
|
|
15754
|
-
readonly id: string;
|
|
15755
|
-
}
|
|
15756
|
-
interface CarrierFeeForm {
|
|
15757
|
-
readonly id: string;
|
|
15758
|
-
readonly label_invoice_request_id: string;
|
|
15759
|
-
readonly units: io.flow.internal.v0.models.CarrierFeeUnits;
|
|
15760
|
-
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
15761
|
-
readonly total: number;
|
|
15762
|
-
readonly attributes?: Record<string, string>;
|
|
15763
|
-
}
|
|
15764
|
-
interface CarrierFeeTransaction {
|
|
15765
|
-
readonly discriminator: 'carrier_fee_transaction';
|
|
15766
|
-
readonly label_reference: io.flow.internal.v0.models.CarrierFeeTransactionLabelReference;
|
|
15767
|
-
readonly id: string;
|
|
15768
|
-
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
15769
|
-
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
15770
|
-
readonly posted_at?: string;
|
|
15771
|
-
readonly value: io.flow.common.v0.models.Price;
|
|
15772
|
-
readonly description: string;
|
|
15773
|
-
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
15774
|
-
readonly created_at: string;
|
|
15775
|
-
}
|
|
15776
|
-
interface CarrierFeeTransactionLabelReference {
|
|
15777
|
-
readonly id: string;
|
|
15778
|
-
}
|
|
15779
|
-
interface CarrierFeeUnits {
|
|
15780
|
-
readonly currency: string;
|
|
15781
|
-
}
|
|
15782
|
-
interface CarrierFeeUpserted {
|
|
15783
|
-
readonly discriminator: 'carrier_fee_upserted';
|
|
15784
|
-
readonly event_id: string;
|
|
15785
|
-
readonly timestamp: string;
|
|
15786
|
-
readonly organization: string;
|
|
15787
|
-
readonly carrier_fee: io.flow.internal.v0.models.CarrierFee;
|
|
15788
|
-
}
|
|
15789
15837
|
interface CarrierFile {
|
|
15790
15838
|
readonly id: string;
|
|
15791
15839
|
readonly type: io.flow.internal.v0.enums.CarrierFileType;
|
|
@@ -15809,6 +15857,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15809
15857
|
readonly number: string;
|
|
15810
15858
|
readonly timestamp: string;
|
|
15811
15859
|
}
|
|
15860
|
+
interface CarrierTaxForm {
|
|
15861
|
+
readonly id: string;
|
|
15862
|
+
readonly label_invoice_request_id: string;
|
|
15863
|
+
readonly units: io.flow.internal.v0.models.CarrierTaxUnits;
|
|
15864
|
+
readonly surcharges: io.flow.internal.v0.models.LabelSurchargeForm;
|
|
15865
|
+
readonly total: number;
|
|
15866
|
+
readonly attributes?: Record<string, string>;
|
|
15867
|
+
}
|
|
15868
|
+
interface CarrierTaxUnits {
|
|
15869
|
+
readonly currency: string;
|
|
15870
|
+
}
|
|
15812
15871
|
interface CatalogImportRequest {
|
|
15813
15872
|
readonly discriminator: 'catalog_import_request';
|
|
15814
15873
|
readonly event_id: string;
|
|
@@ -16127,6 +16186,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16127
16186
|
readonly channel_id: string;
|
|
16128
16187
|
readonly channel_order_summary: io.flow.internal.v0.models.ChannelOrderSummary;
|
|
16129
16188
|
}
|
|
16189
|
+
interface ChannelOrganizationIdentifier {
|
|
16190
|
+
readonly id: string;
|
|
16191
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
16192
|
+
readonly identifier: string;
|
|
16193
|
+
}
|
|
16194
|
+
interface ChannelOrganizationIdentifierDeleted {
|
|
16195
|
+
readonly discriminator: 'channel_organization_identifier_deleted';
|
|
16196
|
+
readonly event_id: string;
|
|
16197
|
+
readonly timestamp: string;
|
|
16198
|
+
readonly channel_id: string;
|
|
16199
|
+
readonly id: string;
|
|
16200
|
+
}
|
|
16201
|
+
interface ChannelOrganizationIdentifierUpserted {
|
|
16202
|
+
readonly discriminator: 'channel_organization_identifier_upserted';
|
|
16203
|
+
readonly event_id: string;
|
|
16204
|
+
readonly timestamp: string;
|
|
16205
|
+
readonly channel_id: string;
|
|
16206
|
+
readonly channel_organization_identifier: io.flow.internal.v0.models.ChannelOrganizationIdentifier;
|
|
16207
|
+
}
|
|
16130
16208
|
interface ChannelOrganizationShopify {
|
|
16131
16209
|
readonly organization: io.flow.channel.v0.models.ChannelOrganization;
|
|
16132
16210
|
readonly tokens: io.flow.internal.v0.models.ShopifyChannelOrganizationTokens[];
|
|
@@ -16520,6 +16598,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16520
16598
|
readonly organization_id: string;
|
|
16521
16599
|
readonly product_id: string;
|
|
16522
16600
|
}
|
|
16601
|
+
interface ClassificationProductRequest {
|
|
16602
|
+
readonly merchant_id: string;
|
|
16603
|
+
readonly product_name: string;
|
|
16604
|
+
readonly product_description: string;
|
|
16605
|
+
readonly product_id_internal: string;
|
|
16606
|
+
readonly product_id_external: string;
|
|
16607
|
+
readonly product_group_code?: string;
|
|
16608
|
+
readonly product_url?: string;
|
|
16609
|
+
readonly product_image?: string;
|
|
16610
|
+
readonly product_attributes: Record<string, string>;
|
|
16611
|
+
readonly categories?: string[];
|
|
16612
|
+
readonly platform_id: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
16613
|
+
}
|
|
16614
|
+
interface ClassificationProductResult {
|
|
16615
|
+
readonly product_id: string;
|
|
16616
|
+
readonly merchant_id: string;
|
|
16617
|
+
readonly platform_id: io.flow.internal.v0.enums.ClassificationPlatform;
|
|
16618
|
+
readonly hs_code?: string;
|
|
16619
|
+
readonly probability?: number;
|
|
16620
|
+
readonly classification_decision: io.flow.internal.v0.enums.ClassificationDecision;
|
|
16621
|
+
readonly classification_type: io.flow.internal.v0.enums.ClassificationType;
|
|
16622
|
+
readonly clothing_age_classification: io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
16623
|
+
}
|
|
16523
16624
|
interface ClassificationProductSummary {
|
|
16524
16625
|
readonly product_id: string;
|
|
16525
16626
|
readonly organization_id: string;
|
|
@@ -16565,6 +16666,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16565
16666
|
readonly status: io.flow.internal.v0.enums.ItemClassificationStatus;
|
|
16566
16667
|
readonly classified_by: string;
|
|
16567
16668
|
}
|
|
16669
|
+
interface CliLogEntry {
|
|
16670
|
+
readonly id: string;
|
|
16671
|
+
readonly user: io.flow.common.v0.models.UserReference;
|
|
16672
|
+
readonly task: string;
|
|
16673
|
+
}
|
|
16674
|
+
interface CliLogEntryForm {
|
|
16675
|
+
readonly user_id: string;
|
|
16676
|
+
readonly task: string;
|
|
16677
|
+
}
|
|
16568
16678
|
interface ColmItem {
|
|
16569
16679
|
readonly id: string;
|
|
16570
16680
|
readonly number: string;
|
|
@@ -16955,6 +17065,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16955
17065
|
readonly labels: io.flow.internal.v0.models.DebugLabel[];
|
|
16956
17066
|
readonly captures: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
16957
17067
|
readonly refunds: io.flow.internal.v0.models.DebugPaymentTransactionSummary[];
|
|
17068
|
+
readonly allocation: io.flow.experience.v0.models.AllocationV2;
|
|
16958
17069
|
}
|
|
16959
17070
|
interface DebugFulfillmentDelta {
|
|
16960
17071
|
readonly posted_transactions_net: number;
|
|
@@ -16976,6 +17087,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16976
17087
|
interface DebugOrder {
|
|
16977
17088
|
readonly organization_id: string;
|
|
16978
17089
|
readonly number: string;
|
|
17090
|
+
readonly prices: io.flow.order.price.v0.models.OrderPriceDetail[];
|
|
17091
|
+
readonly total: io.flow.common.v0.models.MoneyWithBase;
|
|
16979
17092
|
readonly identifiers?: Record<string, string>;
|
|
16980
17093
|
readonly submitted_at?: string;
|
|
16981
17094
|
}
|
|
@@ -17130,14 +17243,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17130
17243
|
}
|
|
17131
17244
|
interface DimensionEstimateOpsInput {
|
|
17132
17245
|
readonly organization_id: string;
|
|
17133
|
-
readonly
|
|
17134
|
-
readonly
|
|
17135
|
-
readonly
|
|
17136
|
-
readonly
|
|
17137
|
-
readonly
|
|
17138
|
-
readonly
|
|
17139
|
-
readonly
|
|
17140
|
-
readonly
|
|
17246
|
+
readonly length_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17247
|
+
readonly length_value?: string;
|
|
17248
|
+
readonly width_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17249
|
+
readonly width_value?: string;
|
|
17250
|
+
readonly depth_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17251
|
+
readonly depth_value?: string;
|
|
17252
|
+
readonly weight_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
17253
|
+
readonly weight_value?: string;
|
|
17141
17254
|
}
|
|
17142
17255
|
interface Discount {
|
|
17143
17256
|
readonly amount: number;
|
|
@@ -17898,6 +18011,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17898
18011
|
readonly name?: string;
|
|
17899
18012
|
readonly tracker_id: string;
|
|
17900
18013
|
}
|
|
18014
|
+
interface FailedDimensionEstimateOpsInputWithReason {
|
|
18015
|
+
readonly organization_id: string;
|
|
18016
|
+
readonly length_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
18017
|
+
readonly length_value?: string;
|
|
18018
|
+
readonly width_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
18019
|
+
readonly width_value?: string;
|
|
18020
|
+
readonly depth_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
18021
|
+
readonly depth_value?: string;
|
|
18022
|
+
readonly weight_units?: io.flow.common.v0.enums.UnitOfMeasurement;
|
|
18023
|
+
readonly weight_value?: string;
|
|
18024
|
+
readonly reason?: string;
|
|
18025
|
+
}
|
|
17901
18026
|
interface Feature {
|
|
17902
18027
|
readonly id: string;
|
|
17903
18028
|
readonly key: string;
|
|
@@ -18228,6 +18353,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18228
18353
|
readonly reason: string;
|
|
18229
18354
|
readonly next_action_from: io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
|
|
18230
18355
|
}
|
|
18356
|
+
interface ForceTransitForm {
|
|
18357
|
+
readonly description: string;
|
|
18358
|
+
}
|
|
18231
18359
|
interface FraudPendingReview {
|
|
18232
18360
|
readonly id: string;
|
|
18233
18361
|
readonly fraud_review_id: string;
|
|
@@ -18427,8 +18555,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18427
18555
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
18428
18556
|
readonly sequence_number: number;
|
|
18429
18557
|
readonly posting_cutoff: string;
|
|
18430
|
-
readonly trigger
|
|
18558
|
+
readonly trigger?: io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
18431
18559
|
readonly fulfilled_at: string;
|
|
18560
|
+
readonly carrier?: io.flow.internal.v0.models.FulfillmentCarrier;
|
|
18432
18561
|
readonly owner: io.flow.internal.v0.enums.ResponsibleParty;
|
|
18433
18562
|
readonly origin?: io.flow.internal.v0.models.FulfillmentOrigin;
|
|
18434
18563
|
readonly business?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
@@ -18454,6 +18583,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18454
18583
|
readonly reason: io.flow.order.management.v0.enums.CancelReason;
|
|
18455
18584
|
readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
18456
18585
|
}
|
|
18586
|
+
interface FulfillmentCarrier {
|
|
18587
|
+
readonly id: string;
|
|
18588
|
+
readonly service_id?: string;
|
|
18589
|
+
readonly tracking_number?: string;
|
|
18590
|
+
}
|
|
18457
18591
|
interface FulfillmentDeleted {
|
|
18458
18592
|
readonly discriminator: 'fulfillment_deleted';
|
|
18459
18593
|
readonly event_id: string;
|
|
@@ -18914,6 +19048,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18914
19048
|
interface InvalidCheckoutData {
|
|
18915
19049
|
readonly order: io.flow.experience.v0.models.OrderPutForm;
|
|
18916
19050
|
}
|
|
19051
|
+
interface Invariant {
|
|
19052
|
+
readonly name: string;
|
|
19053
|
+
readonly count: number;
|
|
19054
|
+
readonly fired_at: string;
|
|
19055
|
+
readonly sql: string;
|
|
19056
|
+
}
|
|
18917
19057
|
interface InventoryOrganizationSettings {
|
|
18918
19058
|
readonly id: string;
|
|
18919
19059
|
readonly inventory_reservation: io.flow.internal.v0.enums.InventoryReservation;
|
|
@@ -19039,6 +19179,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19039
19179
|
}
|
|
19040
19180
|
interface ItemCustomsDetails {
|
|
19041
19181
|
readonly item_number: string;
|
|
19182
|
+
readonly product_title?: string;
|
|
19183
|
+
readonly sanitized_product_title?: string;
|
|
19184
|
+
readonly sanitized_rule_ids?: string[];
|
|
19042
19185
|
readonly sub_item_number?: string;
|
|
19043
19186
|
readonly customs_description?: string;
|
|
19044
19187
|
readonly origin: string;
|
|
@@ -19390,6 +19533,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19390
19533
|
readonly service?: io.flow.reference.v0.models.CarrierService;
|
|
19391
19534
|
}
|
|
19392
19535
|
interface LabelSurchargeForm {
|
|
19536
|
+
readonly all?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19537
|
+
readonly base_and_fuel?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19393
19538
|
readonly fuel?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19394
19539
|
readonly remote_area?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19395
19540
|
readonly oversize?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
@@ -19401,6 +19546,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19401
19546
|
readonly eei_filing?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19402
19547
|
readonly fixed_ddp?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19403
19548
|
readonly fixed_currency_conversion?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19549
|
+
readonly prohibited_item?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19550
|
+
readonly undeliverable_shipment?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19551
|
+
readonly signature_required?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19552
|
+
readonly direct_delivery?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19553
|
+
readonly saturday_stop?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19554
|
+
readonly residential_extended_area_pickup?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
19404
19555
|
}
|
|
19405
19556
|
interface LabelSurchargeSingleForm {
|
|
19406
19557
|
readonly amount: number;
|
|
@@ -21568,6 +21719,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21568
21719
|
readonly auto_review_status?: io.flow.internal.v0.enums.RestrictionStatus;
|
|
21569
21720
|
readonly manually_reviewed_at?: string;
|
|
21570
21721
|
readonly manually_reviewed_by?: string;
|
|
21722
|
+
readonly cause_rule_id?: string;
|
|
21571
21723
|
}
|
|
21572
21724
|
interface ProductRestrictionRuleDecisionDeleted {
|
|
21573
21725
|
readonly discriminator: 'product_restriction_rule_decision_deleted';
|
|
@@ -22030,8 +22182,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22030
22182
|
readonly id: string;
|
|
22031
22183
|
readonly status: io.flow.internal.v0.enums.ReportStatus;
|
|
22032
22184
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
22033
|
-
readonly from
|
|
22034
|
-
readonly to
|
|
22185
|
+
readonly from?: string;
|
|
22186
|
+
readonly to?: string;
|
|
22187
|
+
readonly payment_type?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
22035
22188
|
readonly url?: string;
|
|
22036
22189
|
readonly processed_at?: string;
|
|
22037
22190
|
}
|
|
@@ -22050,9 +22203,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22050
22203
|
readonly account_number: string;
|
|
22051
22204
|
}
|
|
22052
22205
|
interface ReportForm {
|
|
22053
|
-
readonly from: string;
|
|
22054
|
-
readonly to: string;
|
|
22055
22206
|
readonly type: io.flow.internal.v0.enums.ReportType;
|
|
22207
|
+
readonly from?: string;
|
|
22208
|
+
readonly to?: string;
|
|
22209
|
+
readonly payment_type?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
22210
|
+
readonly orders?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
22211
|
+
}
|
|
22212
|
+
interface ReportMerchant {
|
|
22213
|
+
readonly id: string;
|
|
22214
|
+
}
|
|
22215
|
+
interface ReportOrderReference {
|
|
22216
|
+
readonly organization_id: string;
|
|
22217
|
+
readonly order_number: string;
|
|
22056
22218
|
}
|
|
22057
22219
|
interface ReportOwner {
|
|
22058
22220
|
readonly name: string;
|
|
@@ -22180,7 +22342,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22180
22342
|
readonly tax: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22181
22343
|
readonly duty: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22182
22344
|
readonly freight: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22183
|
-
readonly refund: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
22184
22345
|
}
|
|
22185
22346
|
interface ReportingMonetaryValue {
|
|
22186
22347
|
readonly transaction: number;
|
|
@@ -22614,6 +22775,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22614
22775
|
readonly payment: io.flow.internal.v0.models.ReportPayment;
|
|
22615
22776
|
readonly bank_account: io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
22616
22777
|
readonly account: io.flow.internal.v0.models.ReportAccount;
|
|
22778
|
+
readonly merchant: io.flow.internal.v0.models.ReportMerchant;
|
|
22617
22779
|
readonly owner: io.flow.internal.v0.models.ReportOwner;
|
|
22618
22780
|
readonly description: string;
|
|
22619
22781
|
}
|
|
@@ -23219,6 +23381,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23219
23381
|
readonly initial_catalog_synced_at?: string;
|
|
23220
23382
|
readonly catalog_sync_duration?: number;
|
|
23221
23383
|
readonly catalog_products_count?: number;
|
|
23384
|
+
readonly initial_product_restrictions_synced_at?: string;
|
|
23222
23385
|
}
|
|
23223
23386
|
interface ShopifyShopUpserted {
|
|
23224
23387
|
readonly discriminator: 'shopify_shop_upserted';
|
|
@@ -23226,9 +23389,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23226
23389
|
readonly timestamp: string;
|
|
23227
23390
|
readonly shop: io.flow.internal.v0.models.Shop;
|
|
23228
23391
|
}
|
|
23229
|
-
interface
|
|
23230
|
-
readonly
|
|
23231
|
-
readonly
|
|
23392
|
+
interface ShopifyStoreDetail {
|
|
23393
|
+
readonly shopify_domain: string;
|
|
23394
|
+
readonly shop_id: string;
|
|
23232
23395
|
}
|
|
23233
23396
|
interface ShopifyWebhook {
|
|
23234
23397
|
readonly id: string;
|
|
@@ -23752,7 +23915,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23752
23915
|
readonly type_id: string;
|
|
23753
23916
|
readonly source_type?: string;
|
|
23754
23917
|
readonly source_id?: string;
|
|
23755
|
-
readonly environment
|
|
23918
|
+
readonly environment: io.flow.common.v0.enums.Environment;
|
|
23756
23919
|
readonly created_at: string;
|
|
23757
23920
|
readonly num_attempts: number;
|
|
23758
23921
|
readonly next_attempt_at: string;
|
|
@@ -24363,7 +24526,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24363
24526
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
24364
24527
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
24365
24528
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
24366
|
-
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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | 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.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.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | 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.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | 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.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | 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.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.CarrierFeeUpserted | io.flow.internal.v0.models.CarrierFeeDeleted | 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.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.PregeneratedRequestEvent | 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.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | 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.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | 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.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | 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.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | 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.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | 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.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.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | 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.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | 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.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | 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.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | 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.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | 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.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.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
24529
|
+
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.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | 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.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.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | 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.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | 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.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | 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.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | 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.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.PregeneratedRequestEvent | 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.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | 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.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | 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.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | 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.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | 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.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | 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.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.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | 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.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | 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.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | 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.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | 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.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.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | 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.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | 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.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
24367
24530
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
24368
24531
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
24369
24532
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
@@ -24417,10 +24580,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
24417
24580
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
24418
24581
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
24419
24582
|
type TaskData = io.flow.internal.v0.models.TaskProcessQueuedEvent | io.flow.internal.v0.models.TaskSummarizeCode | io.flow.internal.v0.models.TaskItemUpserted | io.flow.internal.v0.models.TaskImport;
|
|
24420
|
-
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.
|
|
24583
|
+
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
24421
24584
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
24422
24585
|
type Tracker = io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel;
|
|
24423
|
-
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction
|
|
24586
|
+
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction;
|
|
24424
24587
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
24425
24588
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
24426
24589
|
type Variant = io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant;
|
|
@@ -24457,7 +24620,6 @@ export declare type AccountTransactionsExportRequest = io.flow.internal.v0.model
|
|
|
24457
24620
|
export declare type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
24458
24621
|
export declare type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
|
|
24459
24622
|
export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
|
|
24460
|
-
export declare type AccountingFulfillmentMetadata = io.flow.internal.v0.models.AccountingFulfillmentMetadata;
|
|
24461
24623
|
export declare type AccountingPendingOrderMetadata = io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
24462
24624
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
24463
24625
|
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
@@ -24554,6 +24716,8 @@ export declare type BankPayment = io.flow.internal.v0.models.BankPayment;
|
|
|
24554
24716
|
export declare type BankPaymentDeletedV2 = io.flow.internal.v0.models.BankPaymentDeletedV2;
|
|
24555
24717
|
export declare type BankPaymentForm = io.flow.internal.v0.models.BankPaymentForm;
|
|
24556
24718
|
export declare type BankPaymentOrder = io.flow.internal.v0.models.BankPaymentOrder;
|
|
24719
|
+
export declare type BankPaymentOrderDeleted = io.flow.internal.v0.models.BankPaymentOrderDeleted;
|
|
24720
|
+
export declare type BankPaymentOrderUpserted = io.flow.internal.v0.models.BankPaymentOrderUpserted;
|
|
24557
24721
|
export declare type BankPaymentPromiseCompletedMethod = io.flow.internal.v0.enums.BankPaymentPromiseCompletedMethod;
|
|
24558
24722
|
export declare type BankPaymentReference = io.flow.internal.v0.models.BankPaymentReference;
|
|
24559
24723
|
export declare type BankPaymentStatusCode = io.flow.internal.v0.enums.BankPaymentStatusCode;
|
|
@@ -24647,20 +24811,14 @@ export declare type CarrierChargeType = io.flow.internal.v0.enums.CarrierChargeT
|
|
|
24647
24811
|
export declare type CarrierChargeUnits = io.flow.internal.v0.models.CarrierChargeUnits;
|
|
24648
24812
|
export declare type CarrierChargeUpserted = io.flow.internal.v0.models.CarrierChargeUpserted;
|
|
24649
24813
|
export declare type CarrierCredentials = io.flow.internal.v0.unions.CarrierCredentials;
|
|
24650
|
-
export declare type CarrierFee = io.flow.internal.v0.models.CarrierFee;
|
|
24651
|
-
export declare type CarrierFeeDeleted = io.flow.internal.v0.models.CarrierFeeDeleted;
|
|
24652
|
-
export declare type CarrierFeeForm = io.flow.internal.v0.models.CarrierFeeForm;
|
|
24653
|
-
export declare type CarrierFeeTransaction = io.flow.internal.v0.models.CarrierFeeTransaction;
|
|
24654
|
-
export declare type CarrierFeeTransactionLabelReference = io.flow.internal.v0.models.CarrierFeeTransactionLabelReference;
|
|
24655
|
-
export declare type CarrierFeeTransactionType = io.flow.internal.v0.enums.CarrierFeeTransactionType;
|
|
24656
|
-
export declare type CarrierFeeUnits = io.flow.internal.v0.models.CarrierFeeUnits;
|
|
24657
|
-
export declare type CarrierFeeUpserted = io.flow.internal.v0.models.CarrierFeeUpserted;
|
|
24658
24814
|
export declare type CarrierFile = io.flow.internal.v0.models.CarrierFile;
|
|
24659
24815
|
export declare type CarrierFileForm = io.flow.internal.v0.models.CarrierFileForm;
|
|
24660
24816
|
export declare type CarrierFileResult = io.flow.internal.v0.models.CarrierFileResult;
|
|
24661
24817
|
export declare type CarrierFileType = io.flow.internal.v0.enums.CarrierFileType;
|
|
24662
24818
|
export declare type CarrierInvoice = io.flow.internal.v0.models.CarrierInvoice;
|
|
24663
24819
|
export declare type CarrierLabelGenerationMethod = io.flow.internal.v0.enums.CarrierLabelGenerationMethod;
|
|
24820
|
+
export declare type CarrierTaxForm = io.flow.internal.v0.models.CarrierTaxForm;
|
|
24821
|
+
export declare type CarrierTaxUnits = io.flow.internal.v0.models.CarrierTaxUnits;
|
|
24664
24822
|
export declare type CarrierValidationStatus = io.flow.internal.v0.enums.CarrierValidationStatus;
|
|
24665
24823
|
export declare type CatalogImportRequest = io.flow.internal.v0.models.CatalogImportRequest;
|
|
24666
24824
|
export declare type CatalogImportType = io.flow.internal.v0.enums.CatalogImportType;
|
|
@@ -24719,6 +24877,9 @@ export declare type ChannelOrderSummary = io.flow.internal.v0.models.ChannelOrde
|
|
|
24719
24877
|
export declare type ChannelOrderSummaryDeleted = io.flow.internal.v0.models.ChannelOrderSummaryDeleted;
|
|
24720
24878
|
export declare type ChannelOrderSummaryFulfillmentDetails = io.flow.internal.v0.models.ChannelOrderSummaryFulfillmentDetails;
|
|
24721
24879
|
export declare type ChannelOrderSummaryUpserted = io.flow.internal.v0.models.ChannelOrderSummaryUpserted;
|
|
24880
|
+
export declare type ChannelOrganizationIdentifier = io.flow.internal.v0.models.ChannelOrganizationIdentifier;
|
|
24881
|
+
export declare type ChannelOrganizationIdentifierDeleted = io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted;
|
|
24882
|
+
export declare type ChannelOrganizationIdentifierUpserted = io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted;
|
|
24722
24883
|
export declare type ChannelOrganizationShopify = io.flow.internal.v0.models.ChannelOrganizationShopify;
|
|
24723
24884
|
export declare type ChannelOrganizationShopifyForm = io.flow.internal.v0.models.ChannelOrganizationShopifyForm;
|
|
24724
24885
|
export declare type ChannelOrganizationShopifyPostForm = io.flow.internal.v0.models.ChannelOrganizationShopifyPostForm;
|
|
@@ -24791,6 +24952,7 @@ export declare type Classification = io.flow.internal.v0.models.Classification;
|
|
|
24791
24952
|
export declare type ClassificationAction = io.flow.internal.v0.unions.ClassificationAction;
|
|
24792
24953
|
export declare type ClassificationActionForm = io.flow.internal.v0.unions.ClassificationActionForm;
|
|
24793
24954
|
export declare type ClassificationActionFormUndo = io.flow.internal.v0.models.ClassificationActionFormUndo;
|
|
24955
|
+
export declare type ClassificationDecision = io.flow.internal.v0.enums.ClassificationDecision;
|
|
24794
24956
|
export declare type ClassificationDetails = io.flow.internal.v0.models.ClassificationDetails;
|
|
24795
24957
|
export declare type ClassificationError = io.flow.internal.v0.models.ClassificationError;
|
|
24796
24958
|
export declare type ClassificationErrorCode = io.flow.internal.v0.enums.ClassificationErrorCode;
|
|
@@ -24799,9 +24961,12 @@ export declare type ClassificationFormWrapper = io.flow.internal.v0.models.Class
|
|
|
24799
24961
|
export declare type ClassificationItem = io.flow.internal.v0.models.ClassificationItem;
|
|
24800
24962
|
export declare type ClassificationJudgementForm = io.flow.internal.v0.unions.ClassificationJudgementForm;
|
|
24801
24963
|
export declare type ClassificationLabelAttribute = io.flow.internal.v0.unions.ClassificationLabelAttribute;
|
|
24964
|
+
export declare type ClassificationPlatform = io.flow.internal.v0.enums.ClassificationPlatform;
|
|
24802
24965
|
export declare type ClassificationProduct = io.flow.internal.v0.models.ClassificationProduct;
|
|
24803
24966
|
export declare type ClassificationProductHarmonization = io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
24804
24967
|
export declare type ClassificationProductId = io.flow.internal.v0.models.ClassificationProductId;
|
|
24968
|
+
export declare type ClassificationProductRequest = io.flow.internal.v0.models.ClassificationProductRequest;
|
|
24969
|
+
export declare type ClassificationProductResult = io.flow.internal.v0.models.ClassificationProductResult;
|
|
24805
24970
|
export declare type ClassificationProductSummary = io.flow.internal.v0.models.ClassificationProductSummary;
|
|
24806
24971
|
export declare type ClassificationProductSummaryPage = io.flow.internal.v0.models.ClassificationProductSummaryPage;
|
|
24807
24972
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
@@ -24809,9 +24974,13 @@ export declare type ClassificationResponse = io.flow.internal.v0.unions.Classifi
|
|
|
24809
24974
|
export declare type ClassificationStatistics = io.flow.internal.v0.models.ClassificationStatistics;
|
|
24810
24975
|
export declare type ClassificationSummaryReportPayload = io.flow.internal.v0.models.ClassificationSummaryReportPayload;
|
|
24811
24976
|
export declare type ClassificationTaxonomy = io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
24977
|
+
export declare type ClassificationType = io.flow.internal.v0.enums.ClassificationType;
|
|
24812
24978
|
export declare type ClassificationWrapper = io.flow.internal.v0.models.ClassificationWrapper;
|
|
24813
24979
|
export declare type ClassifiedProduct = io.flow.internal.v0.models.ClassifiedProduct;
|
|
24814
24980
|
export declare type ClassifiedProductDetail = io.flow.internal.v0.models.ClassifiedProductDetail;
|
|
24981
|
+
export declare type CliLogEntry = io.flow.internal.v0.models.CliLogEntry;
|
|
24982
|
+
export declare type CliLogEntryForm = io.flow.internal.v0.models.CliLogEntryForm;
|
|
24983
|
+
export declare type ClothingAgeClassification = io.flow.internal.v0.enums.ClothingAgeClassification;
|
|
24815
24984
|
export declare type ColmItem = io.flow.internal.v0.models.ColmItem;
|
|
24816
24985
|
export declare type ColmItemDeleted = io.flow.internal.v0.models.ColmItemDeleted;
|
|
24817
24986
|
export declare type ColmItemForm = io.flow.internal.v0.models.ColmItemForm;
|
|
@@ -25051,6 +25220,7 @@ export declare type ExternalFulfillmentProofForm = io.flow.internal.v0.models.Ex
|
|
|
25051
25220
|
export declare type ExternalFulfillmentProofTracking = io.flow.internal.v0.models.ExternalFulfillmentProofTracking;
|
|
25052
25221
|
export declare type ExternalFulfillmentProofTrackingForm = io.flow.internal.v0.models.ExternalFulfillmentProofTrackingForm;
|
|
25053
25222
|
export declare type FacebookPixel = io.flow.internal.v0.models.FacebookPixel;
|
|
25223
|
+
export declare type FailedDimensionEstimateOpsInputWithReason = io.flow.internal.v0.models.FailedDimensionEstimateOpsInputWithReason;
|
|
25054
25224
|
export declare type Feature = io.flow.internal.v0.models.Feature;
|
|
25055
25225
|
export declare type FeatureContextForm = io.flow.internal.v0.models.FeatureContextForm;
|
|
25056
25226
|
export declare type FeatureDefaultValue = io.flow.internal.v0.unions.FeatureDefaultValue;
|
|
@@ -25112,6 +25282,7 @@ export declare type FlowLabProjectPutForm = io.flow.internal.v0.models.FlowLabPr
|
|
|
25112
25282
|
export declare type FlowLabelSetting = io.flow.internal.v0.models.FlowLabelSetting;
|
|
25113
25283
|
export declare type FlowLabelSettingForm = io.flow.internal.v0.models.FlowLabelSettingForm;
|
|
25114
25284
|
export declare type FlowShopValidationError = io.flow.internal.v0.models.FlowShopValidationError;
|
|
25285
|
+
export declare type ForceTransitForm = io.flow.internal.v0.models.ForceTransitForm;
|
|
25115
25286
|
export declare type Format = io.flow.internal.v0.enums.Format;
|
|
25116
25287
|
export declare type FraudPendingReview = io.flow.internal.v0.models.FraudPendingReview;
|
|
25117
25288
|
export declare type FraudPendingReviewDeleted = io.flow.internal.v0.models.FraudPendingReviewDeleted;
|
|
@@ -25151,6 +25322,7 @@ export declare type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
|
25151
25322
|
export declare type FulfillmentActionForm = io.flow.internal.v0.models.FulfillmentActionForm;
|
|
25152
25323
|
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
25153
25324
|
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
25325
|
+
export declare type FulfillmentCarrier = io.flow.internal.v0.models.FulfillmentCarrier;
|
|
25154
25326
|
export declare type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
25155
25327
|
export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
25156
25328
|
export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
@@ -25244,6 +25416,7 @@ export declare type InternalStripeAuthorizationDetails = io.flow.internal.v0.mod
|
|
|
25244
25416
|
export declare type InternalTransactionDetails = io.flow.internal.v0.unions.InternalTransactionDetails;
|
|
25245
25417
|
export declare type InternalTransactionDetailsCard = io.flow.internal.v0.models.InternalTransactionDetailsCard;
|
|
25246
25418
|
export declare type InvalidCheckoutData = io.flow.internal.v0.models.InvalidCheckoutData;
|
|
25419
|
+
export declare type Invariant = io.flow.internal.v0.models.Invariant;
|
|
25247
25420
|
export declare type InventoryCheckService = io.flow.internal.v0.enums.InventoryCheckService;
|
|
25248
25421
|
export declare type InventoryOrganizationSettings = io.flow.internal.v0.models.InventoryOrganizationSettings;
|
|
25249
25422
|
export declare type InventoryOrganizationSettingsForm = io.flow.internal.v0.models.InventoryOrganizationSettingsForm;
|
|
@@ -25813,8 +25986,11 @@ export declare type ReportBankAccount = io.flow.internal.v0.models.ReportBankAcc
|
|
|
25813
25986
|
export declare type ReportBankAccountCleartext = io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
25814
25987
|
export declare type ReportForm = io.flow.internal.v0.models.ReportForm;
|
|
25815
25988
|
export declare type ReportInterval = io.flow.internal.v0.enums.ReportInterval;
|
|
25989
|
+
export declare type ReportMerchant = io.flow.internal.v0.models.ReportMerchant;
|
|
25990
|
+
export declare type ReportOrderReference = io.flow.internal.v0.models.ReportOrderReference;
|
|
25816
25991
|
export declare type ReportOwner = io.flow.internal.v0.models.ReportOwner;
|
|
25817
25992
|
export declare type ReportPayment = io.flow.internal.v0.models.ReportPayment;
|
|
25993
|
+
export declare type ReportPaymentType = io.flow.internal.v0.enums.ReportPaymentType;
|
|
25818
25994
|
export declare type ReportRuleDecision = io.flow.internal.v0.models.ReportRuleDecision;
|
|
25819
25995
|
export declare type ReportStatus = io.flow.internal.v0.enums.ReportStatus;
|
|
25820
25996
|
export declare type ReportSummary = io.flow.internal.v0.models.ReportSummary;
|
|
@@ -26047,7 +26223,7 @@ export declare type ShopifyService = io.flow.internal.v0.enums.ShopifyService;
|
|
|
26047
26223
|
export declare type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopDeleted;
|
|
26048
26224
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
26049
26225
|
export declare type ShopifyShopUpserted = io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
26050
|
-
export declare type
|
|
26226
|
+
export declare type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
|
|
26051
26227
|
export declare type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
26052
26228
|
export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebhookEvent;
|
|
26053
26229
|
export declare type ShopifyWebhookForm = io.flow.internal.v0.models.ShopifyWebhookForm;
|