@flowio/types 11.24.69 → 11.24.70
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 +173 -183
- package/dist/api.d.ts +84 -6
- package/package.json +2 -2
- package/src/api-internal.ts +220 -215
- package/src/api.ts +108 -4
package/dist/api-internal.d.ts
CHANGED
|
@@ -1866,6 +1866,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1866
1866
|
readonly id: string;
|
|
1867
1867
|
readonly amount: number;
|
|
1868
1868
|
readonly amount_refunded: number;
|
|
1869
|
+
readonly authorization_code?: string;
|
|
1869
1870
|
readonly captured: boolean;
|
|
1870
1871
|
readonly created: number;
|
|
1871
1872
|
readonly currency: string;
|
|
@@ -1913,6 +1914,7 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1913
1914
|
readonly id: string;
|
|
1914
1915
|
readonly amount: number;
|
|
1915
1916
|
readonly amount_refunded: number;
|
|
1917
|
+
readonly authorization_code?: string;
|
|
1916
1918
|
readonly captured: boolean;
|
|
1917
1919
|
readonly created: number;
|
|
1918
1920
|
readonly currency: string;
|
|
@@ -5114,7 +5116,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5114
5116
|
readonly key: string;
|
|
5115
5117
|
readonly namespace: string;
|
|
5116
5118
|
readonly value: string;
|
|
5117
|
-
readonly
|
|
5119
|
+
readonly type: io.flow.shopify.markets.v0.enums.ShopifyOrderValueType;
|
|
5118
5120
|
readonly description?: string;
|
|
5119
5121
|
}
|
|
5120
5122
|
interface ShopifyOrderMoney {
|
|
@@ -5258,6 +5260,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5258
5260
|
readonly id: number;
|
|
5259
5261
|
readonly shipping_address?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5260
5262
|
readonly note_attributes?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
5263
|
+
readonly metafields?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafieldForm[];
|
|
5261
5264
|
}
|
|
5262
5265
|
interface ShopifyWebhookCustomersDataRequest {
|
|
5263
5266
|
readonly shop_id: number;
|
|
@@ -6630,7 +6633,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
6630
6633
|
type ExperiencePaymentMethodTag = 'display';
|
|
6631
6634
|
type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
|
|
6632
6635
|
type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
|
|
6633
|
-
type OrderPaymentType = 'card' | 'online' | 'credit' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
6636
|
+
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
6634
6637
|
type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
|
|
6635
6638
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
6636
6639
|
type OrderStatus = 'open' | 'submitted';
|
|
@@ -8141,8 +8144,7 @@ declare namespace io.flow.error.v0.models {
|
|
|
8141
8144
|
}
|
|
8142
8145
|
}
|
|
8143
8146
|
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
|
|
8144
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
8145
|
-
type WeightSelection = 'dead' | 'dimensional';
|
|
8147
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
8146
8148
|
}
|
|
8147
8149
|
declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
8148
8150
|
interface LabelBase {
|
|
@@ -8162,10 +8164,38 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
8162
8164
|
readonly destination: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelDestination;
|
|
8163
8165
|
readonly metadata: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
|
|
8164
8166
|
}
|
|
8167
|
+
interface LabelInvoiceResponseFile {
|
|
8168
|
+
readonly id: string;
|
|
8169
|
+
readonly url: string;
|
|
8170
|
+
readonly created_at: string;
|
|
8171
|
+
readonly result?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelInvoiceResponseFileResult;
|
|
8172
|
+
}
|
|
8173
|
+
interface LabelInvoiceResponseFileForm {
|
|
8174
|
+
readonly url: string;
|
|
8175
|
+
}
|
|
8176
|
+
interface LabelInvoiceResponseFileResult {
|
|
8177
|
+
readonly processed_at: string;
|
|
8178
|
+
readonly number_lines_successful: number;
|
|
8179
|
+
readonly number_lines_with_errors: number;
|
|
8180
|
+
readonly errors_url?: string;
|
|
8181
|
+
}
|
|
8182
|
+
interface LabelInvoiceResponseForm {
|
|
8183
|
+
readonly id: string;
|
|
8184
|
+
readonly label_invoice_request_id: string;
|
|
8185
|
+
readonly units: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelResponseUnits;
|
|
8186
|
+
readonly base: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
|
|
8187
|
+
readonly surcharges: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
|
|
8188
|
+
readonly total: number;
|
|
8189
|
+
}
|
|
8165
8190
|
interface LabelMetadata {
|
|
8166
8191
|
readonly ratecard: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
|
|
8167
8192
|
readonly weights: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
|
|
8168
8193
|
}
|
|
8194
|
+
interface LabelResponseUnits {
|
|
8195
|
+
readonly currency: string;
|
|
8196
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
8197
|
+
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
8198
|
+
}
|
|
8169
8199
|
interface LabelSurcharge {
|
|
8170
8200
|
readonly amount: number;
|
|
8171
8201
|
readonly type: io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
|
|
@@ -8183,6 +8213,20 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
8183
8213
|
readonly discriminator: 'percentage';
|
|
8184
8214
|
readonly percentage: number;
|
|
8185
8215
|
}
|
|
8216
|
+
interface LabelSurchargeForm {
|
|
8217
|
+
readonly fuel?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8218
|
+
readonly remote_area?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8219
|
+
readonly oversize?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8220
|
+
readonly duties_paid?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8221
|
+
readonly emergency?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8222
|
+
readonly peak?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8223
|
+
readonly address_correction?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
|
|
8224
|
+
}
|
|
8225
|
+
interface LabelSurchargeSingleForm {
|
|
8226
|
+
readonly amount: number;
|
|
8227
|
+
readonly percentage?: number;
|
|
8228
|
+
readonly fee_per_weight_unit?: number;
|
|
8229
|
+
}
|
|
8186
8230
|
interface LabelUnits {
|
|
8187
8231
|
readonly currency: string;
|
|
8188
8232
|
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
@@ -8197,7 +8241,6 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
|
|
|
8197
8241
|
readonly proposition: io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataProposition;
|
|
8198
8242
|
}
|
|
8199
8243
|
interface MetadataWeights {
|
|
8200
|
-
readonly selected: io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
|
|
8201
8244
|
readonly dead?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
|
|
8202
8245
|
readonly dimensional?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
|
|
8203
8246
|
}
|
|
@@ -9220,7 +9263,9 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
9220
9263
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
9221
9264
|
type StatementAttachmentType = 'csv';
|
|
9222
9265
|
type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
|
|
9223
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
9266
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
9267
|
+
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
|
|
9268
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
9224
9269
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
9225
9270
|
}
|
|
9226
9271
|
declare namespace io.flow.billing.v0.models {
|
|
@@ -9429,9 +9474,35 @@ declare namespace io.flow.billing.v0.models {
|
|
|
9429
9474
|
readonly discriminator: 'shipping_label';
|
|
9430
9475
|
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
9431
9476
|
}
|
|
9477
|
+
interface TransactionMetadataTrueup {
|
|
9478
|
+
readonly discriminator: 'trueup';
|
|
9479
|
+
readonly estimate: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
9480
|
+
readonly actual: io.flow.billing.v0.models.TransactionMetadataTrueupData;
|
|
9481
|
+
}
|
|
9482
|
+
interface TransactionMetadataTrueupData {
|
|
9483
|
+
readonly source: io.flow.billing.v0.enums.TrueupSource;
|
|
9484
|
+
readonly units: io.flow.billing.v0.models.TrueupLabelUnits;
|
|
9485
|
+
readonly base: io.flow.billing.v0.models.TrueupLabelBase;
|
|
9486
|
+
readonly surcharges: io.flow.billing.v0.models.TrueupLabelSurcharge[];
|
|
9487
|
+
readonly total: number;
|
|
9488
|
+
}
|
|
9432
9489
|
interface TransactionReference {
|
|
9433
9490
|
readonly id: string;
|
|
9434
9491
|
}
|
|
9492
|
+
interface TrueupLabelBase {
|
|
9493
|
+
readonly amount: number;
|
|
9494
|
+
readonly weight: number;
|
|
9495
|
+
}
|
|
9496
|
+
interface TrueupLabelSurcharge {
|
|
9497
|
+
readonly amount: number;
|
|
9498
|
+
readonly type: io.flow.billing.v0.enums.TrueupSurchargeType;
|
|
9499
|
+
readonly percentage?: number;
|
|
9500
|
+
readonly per_weight_unit?: number;
|
|
9501
|
+
}
|
|
9502
|
+
interface TrueupLabelUnits {
|
|
9503
|
+
readonly weight: io.flow.units.v0.enums.UnitOfWeight;
|
|
9504
|
+
readonly length?: io.flow.units.v0.enums.UnitOfLength;
|
|
9505
|
+
}
|
|
9435
9506
|
interface WithholdingDeduction {
|
|
9436
9507
|
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
9437
9508
|
readonly amount: number;
|
|
@@ -9442,7 +9513,7 @@ declare namespace io.flow.billing.v0.unions {
|
|
|
9442
9513
|
type BankAccountForm = io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple;
|
|
9443
9514
|
type PayoutStatus = io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed;
|
|
9444
9515
|
type Settlement = io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout;
|
|
9445
|
-
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel;
|
|
9516
|
+
type TransactionMetadata = io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataTrueup;
|
|
9446
9517
|
}
|
|
9447
9518
|
declare namespace io.flow.harmonization.v0.enums {
|
|
9448
9519
|
type TaxApplicability = 'none' | 'all';
|
|
@@ -10536,6 +10607,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
|
10536
10607
|
readonly current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
10537
10608
|
readonly started_at?: string;
|
|
10538
10609
|
readonly time_blocked?: number;
|
|
10610
|
+
readonly time_in_setup?: number;
|
|
10539
10611
|
readonly blocked_since?: string;
|
|
10540
10612
|
readonly completed_at?: string;
|
|
10541
10613
|
readonly onboarding_started_at?: string;
|
|
@@ -10865,11 +10937,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10865
10937
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
|
|
10866
10938
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
10867
10939
|
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';
|
|
10868
|
-
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_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_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_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_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_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_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_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_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | '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';
|
|
10940
|
+
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' | 'capture_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_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_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_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_transactions_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_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_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_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | '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';
|
|
10869
10941
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
|
|
10870
10942
|
type BillingStatementBatchFileKey = 'summary';
|
|
10871
10943
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
10872
|
-
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';
|
|
10944
|
+
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';
|
|
10873
10945
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
10874
10946
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
10875
10947
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
@@ -10987,7 +11059,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10987
11059
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
10988
11060
|
type EmptyAttribute = 'irrelevant';
|
|
10989
11061
|
type ErpFileType = 'vendor';
|
|
10990
|
-
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' | '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_deleted' | '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' | 'label_invoice_request_upserted' | 'label_invoice_request_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' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_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' | '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' | '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_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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_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' | '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' | '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' | '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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_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';
|
|
11062
|
+
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' | '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_deleted' | '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' | 'label_invoice_request_upserted' | 'label_invoice_request_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' | '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' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_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' | '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' | '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' | 'virtual_card_provider_upserted' | 'virtual_card_provider_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' | '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' | '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' | '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' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_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';
|
|
10991
11063
|
type ExperienceImportType = 'experience_with_settings';
|
|
10992
11064
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10993
11065
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -11020,7 +11092,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11020
11092
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
11021
11093
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
11022
11094
|
type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
|
|
11023
|
-
type LabelInputSource = 'estimate';
|
|
11024
11095
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
|
|
11025
11096
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
11026
11097
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
@@ -11076,7 +11147,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11076
11147
|
type PromptCheckoutDisplayPosition = 'email' | 'submission';
|
|
11077
11148
|
type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
|
|
11078
11149
|
type PromptTarget = 'browse' | 'checkout';
|
|
11079
|
-
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | '
|
|
11150
|
+
type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'label_tracking_summary' | 'label_invoice_request' | 'label_invoice_response' | 'label_invoice_response_file' | 'label_origin' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'refund' | 'refund_deletion' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email';
|
|
11080
11151
|
type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
|
|
11081
11152
|
type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
|
|
11082
11153
|
type RateSource = 'calculated' | 'market';
|
|
@@ -11119,7 +11190,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11119
11190
|
type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
|
|
11120
11191
|
type SubscriptionFrequency = 'yearly' | 'monthly';
|
|
11121
11192
|
type SuggestionAction = 'accept' | 'validate' | 'review';
|
|
11122
|
-
type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
|
|
11123
11193
|
type TariffEligibilityType = 'rex';
|
|
11124
11194
|
type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
|
|
11125
11195
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
@@ -11129,9 +11199,9 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11129
11199
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
11130
11200
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
11131
11201
|
type TransferMethod = 'ach';
|
|
11132
|
-
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
|
|
11202
|
+
type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
|
|
11203
|
+
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
11133
11204
|
type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
|
|
11134
|
-
type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
|
|
11135
11205
|
}
|
|
11136
11206
|
declare namespace io.flow.internal.v0.models {
|
|
11137
11207
|
interface Acceptance {
|
|
@@ -11178,14 +11248,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11178
11248
|
readonly target: number;
|
|
11179
11249
|
readonly rate: number;
|
|
11180
11250
|
}
|
|
11181
|
-
interface AccountForm {
|
|
11182
|
-
readonly timezone: string;
|
|
11183
|
-
readonly payment_schedule: io.flow.common.v0.unions.RepeatSchedule;
|
|
11184
|
-
readonly payment_conditions?: string;
|
|
11185
|
-
readonly deposit_rule?: io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
11186
|
-
readonly center_key?: string;
|
|
11187
|
-
readonly bank_account_id?: string;
|
|
11188
|
-
}
|
|
11189
11251
|
interface AccountOrdersExportRequest {
|
|
11190
11252
|
readonly discriminator: 'account_orders_export_request';
|
|
11191
11253
|
readonly event_id: string;
|
|
@@ -11209,6 +11271,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
11209
11271
|
readonly transaction_created_on_or_before?: string;
|
|
11210
11272
|
readonly transaction_created_before?: string;
|
|
11211
11273
|
}
|
|
11274
|
+
interface AccountOrigin {
|
|
11275
|
+
readonly country: string;
|
|
11276
|
+
}
|
|
11212
11277
|
interface AccountProcessingRateForm {
|
|
11213
11278
|
readonly query: string;
|
|
11214
11279
|
readonly capture: number;
|
|
@@ -12022,6 +12087,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12022
12087
|
readonly channel_billed: io.flow.common.v0.models.Price;
|
|
12023
12088
|
readonly tax: io.flow.common.v0.models.Price;
|
|
12024
12089
|
readonly duty: io.flow.common.v0.models.Price;
|
|
12090
|
+
readonly trueup: io.flow.common.v0.models.Price;
|
|
12025
12091
|
readonly ending_balance: io.flow.common.v0.models.Price;
|
|
12026
12092
|
}
|
|
12027
12093
|
interface BillingStatementUpserted {
|
|
@@ -12471,6 +12537,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12471
12537
|
interface ChannelAccount {
|
|
12472
12538
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
12473
12539
|
readonly id: string;
|
|
12540
|
+
readonly key?: string;
|
|
12541
|
+
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
12474
12542
|
readonly currency: string;
|
|
12475
12543
|
readonly updated_at: string;
|
|
12476
12544
|
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
@@ -14730,116 +14798,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14730
14798
|
readonly secret_key: string;
|
|
14731
14799
|
readonly signature_secret: string;
|
|
14732
14800
|
}
|
|
14733
|
-
interface CsvActual {
|
|
14734
|
-
readonly id: string;
|
|
14735
|
-
readonly currency: string;
|
|
14736
|
-
readonly base_amount: number;
|
|
14737
|
-
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14738
|
-
readonly total: number;
|
|
14739
|
-
readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14740
|
-
readonly weight: number;
|
|
14741
|
-
readonly ratecard: io.flow.internal.v0.models.CsvActualRatecard;
|
|
14742
|
-
}
|
|
14743
|
-
interface CsvActualRatecard {
|
|
14744
|
-
readonly base_amount?: number;
|
|
14745
|
-
}
|
|
14746
|
-
interface CsvDimensions {
|
|
14747
|
-
readonly unit: io.flow.units.v0.enums.UnitOfLength;
|
|
14748
|
-
readonly length: number;
|
|
14749
|
-
readonly width: number;
|
|
14750
|
-
readonly depth: number;
|
|
14751
|
-
}
|
|
14752
|
-
interface CsvFlowRatecard {
|
|
14753
|
-
readonly id: string;
|
|
14754
|
-
readonly number: string;
|
|
14755
|
-
readonly owner: io.flow.fulfillment.v0.enums.RatecardOwner;
|
|
14756
|
-
readonly lane: io.flow.internal.v0.models.LaneReference;
|
|
14757
|
-
readonly dim_factor: number;
|
|
14758
|
-
readonly surcharges: io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
14759
|
-
readonly base_amount?: number;
|
|
14760
|
-
}
|
|
14761
|
-
interface CsvFlowRatecardSurcharges {
|
|
14762
|
-
readonly fuel?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14763
|
-
readonly remote_area?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14764
|
-
readonly oversize?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14765
|
-
readonly duties_paid?: io.flow.internal.v0.models.CsvServiceFee;
|
|
14766
|
-
}
|
|
14767
|
-
interface CsvGlobalEProposition {
|
|
14768
|
-
readonly name: string;
|
|
14769
|
-
}
|
|
14770
|
-
interface CsvGlobalEShippingMethod {
|
|
14771
|
-
readonly id: string;
|
|
14772
|
-
readonly proposition: io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
14773
|
-
}
|
|
14774
|
-
interface CsvInput {
|
|
14775
|
-
readonly id: string;
|
|
14776
|
-
readonly source: io.flow.internal.v0.enums.LabelInputSource;
|
|
14777
|
-
readonly currency: string;
|
|
14778
|
-
readonly base_amount: number;
|
|
14779
|
-
readonly surcharges: io.flow.internal.v0.models.CsvSurcharges;
|
|
14780
|
-
readonly total: number;
|
|
14781
|
-
readonly weight_unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14782
|
-
readonly weight: number;
|
|
14783
|
-
readonly variance: number;
|
|
14784
|
-
}
|
|
14785
|
-
interface CsvLabel {
|
|
14786
|
-
readonly id: string;
|
|
14787
|
-
readonly cost: io.flow.internal.v0.models.CsvLabelCost;
|
|
14788
|
-
readonly created_at: string;
|
|
14789
|
-
readonly request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
14790
|
-
readonly trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
14791
|
-
}
|
|
14792
|
-
interface CsvLabelCost {
|
|
14793
|
-
readonly amount: number;
|
|
14794
|
-
readonly currency: string;
|
|
14795
|
-
readonly source: io.flow.label.v0.enums.CostEstimateSource;
|
|
14796
|
-
}
|
|
14797
|
-
interface CsvOrder {
|
|
14798
|
-
readonly organization: io.flow.internal.v0.models.OrganizationReference;
|
|
14799
|
-
readonly number: string;
|
|
14800
|
-
readonly destination: io.flow.experience.v0.models.OrderAddress;
|
|
14801
|
-
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
14802
|
-
readonly tax: io.flow.common.v0.models.Money;
|
|
14803
|
-
readonly duty: io.flow.common.v0.models.Money;
|
|
14804
|
-
readonly total: io.flow.common.v0.models.Money;
|
|
14805
|
-
readonly number_items: number;
|
|
14806
|
-
}
|
|
14807
|
-
interface CsvRecord {
|
|
14808
|
-
readonly label: io.flow.internal.v0.models.CsvLabel;
|
|
14809
|
-
readonly carrier_service_id: string;
|
|
14810
|
-
readonly carrier_tracking_number: string;
|
|
14811
|
-
readonly order: io.flow.internal.v0.models.CsvOrder;
|
|
14812
|
-
readonly flow_ratecard: io.flow.internal.v0.models.CsvFlowRatecard;
|
|
14813
|
-
readonly global_e_shipping_method?: io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
14814
|
-
readonly weight: io.flow.internal.v0.models.CsvWeight;
|
|
14815
|
-
readonly dimensions: io.flow.internal.v0.models.CsvDimensions;
|
|
14816
|
-
readonly input?: io.flow.internal.v0.models.CsvInput;
|
|
14817
|
-
readonly actual?: io.flow.internal.v0.models.CsvActual;
|
|
14818
|
-
readonly variance?: number;
|
|
14819
|
-
readonly deltas: string[];
|
|
14820
|
-
readonly outliers: string[];
|
|
14821
|
-
}
|
|
14822
|
-
interface CsvServiceFee {
|
|
14823
|
-
readonly amount?: number;
|
|
14824
|
-
readonly currency?: string;
|
|
14825
|
-
readonly percentage?: number;
|
|
14826
|
-
}
|
|
14827
|
-
interface CsvSurchargePercentage {
|
|
14828
|
-
readonly percentage: number;
|
|
14829
|
-
readonly amount: number;
|
|
14830
|
-
}
|
|
14831
|
-
interface CsvSurcharges {
|
|
14832
|
-
readonly fuel: io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
14833
|
-
readonly remote_area: number;
|
|
14834
|
-
readonly oversize: number;
|
|
14835
|
-
readonly duties_paid: number;
|
|
14836
|
-
}
|
|
14837
|
-
interface CsvWeight {
|
|
14838
|
-
readonly unit: io.flow.units.v0.enums.UnitOfWeight;
|
|
14839
|
-
readonly provided: number;
|
|
14840
|
-
readonly dimensional: number;
|
|
14841
|
-
readonly lookup: number;
|
|
14842
|
-
}
|
|
14843
14801
|
interface CurrencyInternalRate {
|
|
14844
14802
|
readonly id: string;
|
|
14845
14803
|
readonly organization_id: string;
|
|
@@ -15032,6 +14990,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15032
14990
|
readonly authorization_id?: string;
|
|
15033
14991
|
readonly posting_proof_id?: string;
|
|
15034
14992
|
readonly label_tracking_summary_id?: string;
|
|
14993
|
+
readonly shipping_notification_id?: string;
|
|
14994
|
+
readonly external_fulfillment_proof_id?: string;
|
|
15035
14995
|
}
|
|
15036
14996
|
interface DebugOrderTransactionFormOrderIdentifier {
|
|
15037
14997
|
readonly key?: string;
|
|
@@ -16183,6 +16143,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16183
16143
|
interface FlowAccount {
|
|
16184
16144
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
16185
16145
|
readonly id: string;
|
|
16146
|
+
readonly key?: string;
|
|
16147
|
+
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
16186
16148
|
readonly currency: string;
|
|
16187
16149
|
readonly updated_at: string;
|
|
16188
16150
|
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
@@ -16424,6 +16386,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16424
16386
|
readonly shipping: io.flow.internal.v0.models.FulfillmentShipping;
|
|
16425
16387
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
16426
16388
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
16389
|
+
readonly proof: io.flow.internal.v0.unions.FulfillmentProof;
|
|
16390
|
+
readonly responsible_party: io.flow.internal.v0.enums.ResponsibleParty;
|
|
16427
16391
|
readonly completes_order: boolean;
|
|
16428
16392
|
readonly sequence_number: number;
|
|
16429
16393
|
readonly business?: io.flow.internal.v0.models.FulfillmentBusiness;
|
|
@@ -17918,6 +17882,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17918
17882
|
readonly organization: string;
|
|
17919
17883
|
readonly label_invoice_request: io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
17920
17884
|
}
|
|
17885
|
+
interface LabelInvoiceResponseFile {
|
|
17886
|
+
readonly id: string;
|
|
17887
|
+
readonly url: string;
|
|
17888
|
+
readonly created_at: string;
|
|
17889
|
+
readonly result?: io.flow.internal.v0.models.LabelInvoiceResponseFileResult;
|
|
17890
|
+
}
|
|
17891
|
+
interface LabelInvoiceResponseFileForm {
|
|
17892
|
+
readonly url: string;
|
|
17893
|
+
}
|
|
17894
|
+
interface LabelInvoiceResponseFileResult {
|
|
17895
|
+
readonly processed_at: string;
|
|
17896
|
+
readonly number_lines_successful: number;
|
|
17897
|
+
readonly number_lines_with_errors: number;
|
|
17898
|
+
readonly errors_url?: string;
|
|
17899
|
+
}
|
|
17921
17900
|
interface LabelInvoiceResponseForm {
|
|
17922
17901
|
readonly id: string;
|
|
17923
17902
|
readonly label_invoice_request_id: string;
|
|
@@ -17999,6 +17978,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17999
17978
|
readonly duties_paid?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18000
17979
|
readonly emergency?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18001
17980
|
readonly peak?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
17981
|
+
readonly address_correction?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
18002
17982
|
}
|
|
18003
17983
|
interface LabelSurchargeSingleForm {
|
|
18004
17984
|
readonly amount: number;
|
|
@@ -18082,9 +18062,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18082
18062
|
readonly client_id: string;
|
|
18083
18063
|
readonly region: string;
|
|
18084
18064
|
}
|
|
18085
|
-
interface LaneReference {
|
|
18086
|
-
readonly id: string;
|
|
18087
|
-
}
|
|
18088
18065
|
interface LevyRateSummary {
|
|
18089
18066
|
readonly id: string;
|
|
18090
18067
|
readonly number: string;
|
|
@@ -18790,6 +18767,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18790
18767
|
}
|
|
18791
18768
|
interface OnboardingOrganization {
|
|
18792
18769
|
readonly age: number;
|
|
18770
|
+
readonly setup_time: number;
|
|
18793
18771
|
readonly compliance_approved: boolean;
|
|
18794
18772
|
readonly compliance_full_review_required: boolean;
|
|
18795
18773
|
readonly application_received: string;
|
|
@@ -18924,6 +18902,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18924
18902
|
interface OrderCancellationForm {
|
|
18925
18903
|
readonly evidence: io.flow.internal.v0.unions.OrderCancellationEvidence;
|
|
18926
18904
|
}
|
|
18905
|
+
interface OrderCombinedShipment {
|
|
18906
|
+
readonly id: string;
|
|
18907
|
+
readonly label_id: string;
|
|
18908
|
+
readonly carrier_id: string;
|
|
18909
|
+
readonly service_id: string;
|
|
18910
|
+
readonly order_number: string;
|
|
18911
|
+
readonly provided_carrier_name?: string;
|
|
18912
|
+
readonly carrier_tracking_number: string;
|
|
18913
|
+
}
|
|
18914
|
+
interface OrderCombinedShipmentDeleted {
|
|
18915
|
+
readonly discriminator: 'order_combined_shipment_deleted';
|
|
18916
|
+
readonly event_id: string;
|
|
18917
|
+
readonly timestamp: string;
|
|
18918
|
+
readonly organization: string;
|
|
18919
|
+
readonly id: string;
|
|
18920
|
+
}
|
|
18921
|
+
interface OrderCombinedShipmentForm {
|
|
18922
|
+
readonly order_number: string;
|
|
18923
|
+
readonly provided_carrier_name?: string;
|
|
18924
|
+
readonly carrier_tracking_number: string;
|
|
18925
|
+
}
|
|
18926
|
+
interface OrderCombinedShipmentUpserted {
|
|
18927
|
+
readonly discriminator: 'order_combined_shipment_upserted';
|
|
18928
|
+
readonly event_id: string;
|
|
18929
|
+
readonly timestamp: string;
|
|
18930
|
+
readonly organization: string;
|
|
18931
|
+
readonly order_combined_shipment: io.flow.internal.v0.models.OrderCombinedShipment;
|
|
18932
|
+
}
|
|
18927
18933
|
interface OrderDetail {
|
|
18928
18934
|
readonly order: io.flow.experience.v0.models.Order;
|
|
18929
18935
|
readonly status: io.flow.experience.v0.enums.OrderStatus;
|
|
@@ -19072,6 +19078,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19072
19078
|
interface OrganizationAccount {
|
|
19073
19079
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
19074
19080
|
readonly id: string;
|
|
19081
|
+
readonly key?: string;
|
|
19082
|
+
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
19075
19083
|
readonly currency: string;
|
|
19076
19084
|
readonly updated_at: string;
|
|
19077
19085
|
readonly timezone: io.flow.reference.v0.models.Timezone;
|
|
@@ -19275,9 +19283,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19275
19283
|
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
19276
19284
|
readonly organization_payment_setting: io.flow.internal.v0.models.OrganizationPaymentSetting;
|
|
19277
19285
|
}
|
|
19278
|
-
interface OrganizationReference {
|
|
19279
|
-
readonly id: string;
|
|
19280
|
-
}
|
|
19281
19286
|
interface OrganizationRestrictionNoteForm {
|
|
19282
19287
|
readonly note: string;
|
|
19283
19288
|
readonly note_type: io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -20493,6 +20498,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20493
20498
|
readonly hs_code?: string;
|
|
20494
20499
|
readonly merchant_category_code?: string;
|
|
20495
20500
|
readonly notes: io.flow.internal.v0.models.OrganizationRestrictionStatusNote[];
|
|
20501
|
+
readonly last_year_xborder_gmv?: io.flow.common.v0.models.Money;
|
|
20502
|
+
readonly last_year_domestic_gmv?: io.flow.common.v0.models.Money;
|
|
20496
20503
|
}
|
|
20497
20504
|
interface RestrictionOrganizationDecisionSummary {
|
|
20498
20505
|
readonly organization: io.flow.internal.v0.models.RestrictionOrganization;
|
|
@@ -21024,6 +21031,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21024
21031
|
readonly shopify_tracking_number: io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
21025
21032
|
readonly shopify_carrier_service?: io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
21026
21033
|
readonly fulfillment_created_at?: string;
|
|
21034
|
+
readonly flow_label_id?: string;
|
|
21027
21035
|
}
|
|
21028
21036
|
interface ShopifyMonitoringFulfillmentMissingDetails {
|
|
21029
21037
|
readonly discriminator: 'fulfillment_missing_details';
|
|
@@ -21264,6 +21272,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21264
21272
|
readonly remote_area: number;
|
|
21265
21273
|
readonly oversize: number;
|
|
21266
21274
|
readonly ccf: number;
|
|
21275
|
+
readonly emergency: number;
|
|
21276
|
+
readonly peak: number;
|
|
21267
21277
|
readonly total: number;
|
|
21268
21278
|
}
|
|
21269
21279
|
interface ShopperSummary {
|
|
@@ -21632,11 +21642,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21632
21642
|
readonly discriminator: 'supported_labels';
|
|
21633
21643
|
readonly values: io.flow.internal.v0.models.LabelAliases[];
|
|
21634
21644
|
}
|
|
21635
|
-
interface Surcharge {
|
|
21636
|
-
readonly amount?: number;
|
|
21637
|
-
readonly percentage?: number;
|
|
21638
|
-
readonly type: io.flow.internal.v0.enums.SurchargeType;
|
|
21639
|
-
}
|
|
21640
21645
|
interface SvbVirtualCardClearing {
|
|
21641
21646
|
readonly id: string;
|
|
21642
21647
|
readonly virtual_card_id: string;
|
|
@@ -22039,6 +22044,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22039
22044
|
readonly flow_tracking_number: string;
|
|
22040
22045
|
readonly created_at: string;
|
|
22041
22046
|
}
|
|
22047
|
+
interface TrueupTransaction {
|
|
22048
|
+
readonly discriminator: 'trueup_transaction';
|
|
22049
|
+
readonly label_transaction: io.flow.internal.v0.models.TransactionReference;
|
|
22050
|
+
readonly id: string;
|
|
22051
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22052
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
22053
|
+
readonly posted_at?: string;
|
|
22054
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
22055
|
+
readonly description: string;
|
|
22056
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22057
|
+
readonly created_at: string;
|
|
22058
|
+
}
|
|
22042
22059
|
interface UnassignedMerchantGuid {
|
|
22043
22060
|
readonly id: string;
|
|
22044
22061
|
readonly merchant_guid: string;
|
|
@@ -22247,17 +22264,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22247
22264
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22248
22265
|
readonly created_at: string;
|
|
22249
22266
|
}
|
|
22250
|
-
interface WashCarrierActualFile {
|
|
22251
|
-
readonly id: string;
|
|
22252
|
-
readonly url: string;
|
|
22253
|
-
readonly status: io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
22254
|
-
}
|
|
22255
|
-
interface WashCarrierActualFileForm {
|
|
22256
|
-
readonly url: string;
|
|
22257
|
-
}
|
|
22258
|
-
interface WashExportRequest {
|
|
22259
|
-
readonly url: string;
|
|
22260
|
-
}
|
|
22261
22267
|
interface WasteElectricalAndElectronicEquipmentComplianceData {
|
|
22262
22268
|
readonly discriminator: 'weee';
|
|
22263
22269
|
readonly label: string;
|
|
@@ -22386,7 +22392,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22386
22392
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22387
22393
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
22388
22394
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22389
|
-
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.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.BankPaymentDeleted | 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.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | 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.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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | 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.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.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.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.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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.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.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.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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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;
|
|
22395
|
+
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.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.BankPaymentDeleted | 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.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | 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.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.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | 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.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.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.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.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | 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.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.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.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.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | 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;
|
|
22390
22396
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
22391
22397
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22392
22398
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22441,7 +22447,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22441
22447
|
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;
|
|
22442
22448
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
22443
22449
|
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;
|
|
22444
|
-
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;
|
|
22450
|
+
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;
|
|
22445
22451
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
22446
22452
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
22447
22453
|
type Variant = io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant;
|
|
@@ -22455,8 +22461,8 @@ export declare type AccountContactUpserted = io.flow.internal.v0.models.AccountC
|
|
|
22455
22461
|
export declare type AccountDeletedV2 = io.flow.internal.v0.models.AccountDeletedV2;
|
|
22456
22462
|
export declare type AccountDepositRule = io.flow.internal.v0.models.AccountDepositRule;
|
|
22457
22463
|
export declare type AccountDepositRuleForm = io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
22458
|
-
export declare type AccountForm = io.flow.internal.v0.models.AccountForm;
|
|
22459
22464
|
export declare type AccountOrdersExportRequest = io.flow.internal.v0.models.AccountOrdersExportRequest;
|
|
22465
|
+
export declare type AccountOrigin = io.flow.internal.v0.models.AccountOrigin;
|
|
22460
22466
|
export declare type AccountProcessingRateForm = io.flow.internal.v0.models.AccountProcessingRateForm;
|
|
22461
22467
|
export declare type AccountProcessingRates = io.flow.internal.v0.models.AccountProcessingRates;
|
|
22462
22468
|
export declare type AccountProcessingRatesDeleted = io.flow.internal.v0.models.AccountProcessingRatesDeleted;
|
|
@@ -23330,22 +23336,6 @@ export declare type CryptoAccountModificationForm = io.flow.internal.v0.models.C
|
|
|
23330
23336
|
export declare type CryptoAccountPutForm = io.flow.internal.v0.models.CryptoAccountPutForm;
|
|
23331
23337
|
export declare type CryptoAuthentication = io.flow.internal.v0.models.CryptoAuthentication;
|
|
23332
23338
|
export declare type CryptoAuthenticationForm = io.flow.internal.v0.models.CryptoAuthenticationForm;
|
|
23333
|
-
export declare type CsvActual = io.flow.internal.v0.models.CsvActual;
|
|
23334
|
-
export declare type CsvActualRatecard = io.flow.internal.v0.models.CsvActualRatecard;
|
|
23335
|
-
export declare type CsvDimensions = io.flow.internal.v0.models.CsvDimensions;
|
|
23336
|
-
export declare type CsvFlowRatecard = io.flow.internal.v0.models.CsvFlowRatecard;
|
|
23337
|
-
export declare type CsvFlowRatecardSurcharges = io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
|
|
23338
|
-
export declare type CsvGlobalEProposition = io.flow.internal.v0.models.CsvGlobalEProposition;
|
|
23339
|
-
export declare type CsvGlobalEShippingMethod = io.flow.internal.v0.models.CsvGlobalEShippingMethod;
|
|
23340
|
-
export declare type CsvInput = io.flow.internal.v0.models.CsvInput;
|
|
23341
|
-
export declare type CsvLabel = io.flow.internal.v0.models.CsvLabel;
|
|
23342
|
-
export declare type CsvLabelCost = io.flow.internal.v0.models.CsvLabelCost;
|
|
23343
|
-
export declare type CsvOrder = io.flow.internal.v0.models.CsvOrder;
|
|
23344
|
-
export declare type CsvRecord = io.flow.internal.v0.models.CsvRecord;
|
|
23345
|
-
export declare type CsvServiceFee = io.flow.internal.v0.models.CsvServiceFee;
|
|
23346
|
-
export declare type CsvSurchargePercentage = io.flow.internal.v0.models.CsvSurchargePercentage;
|
|
23347
|
-
export declare type CsvSurcharges = io.flow.internal.v0.models.CsvSurcharges;
|
|
23348
|
-
export declare type CsvWeight = io.flow.internal.v0.models.CsvWeight;
|
|
23349
23339
|
export declare type CurrencyInternalRate = io.flow.internal.v0.models.CurrencyInternalRate;
|
|
23350
23340
|
export declare type CustomerPurgeUpserted = io.flow.internal.v0.models.CustomerPurgeUpserted;
|
|
23351
23341
|
export declare type CustomerSecret = io.flow.internal.v0.models.CustomerSecret;
|
|
@@ -23848,10 +23838,12 @@ export declare type LabelGenerationSettings = io.flow.internal.v0.models.LabelGe
|
|
|
23848
23838
|
export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
|
|
23849
23839
|
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
23850
23840
|
export declare type LabelGenerationSettingsUpserted = io.flow.internal.v0.models.LabelGenerationSettingsUpserted;
|
|
23851
|
-
export declare type LabelInputSource = io.flow.internal.v0.enums.LabelInputSource;
|
|
23852
23841
|
export declare type LabelInvoiceRequest = io.flow.internal.v0.models.LabelInvoiceRequest;
|
|
23853
23842
|
export declare type LabelInvoiceRequestDeleted = io.flow.internal.v0.models.LabelInvoiceRequestDeleted;
|
|
23854
23843
|
export declare type LabelInvoiceRequestUpserted = io.flow.internal.v0.models.LabelInvoiceRequestUpserted;
|
|
23844
|
+
export declare type LabelInvoiceResponseFile = io.flow.internal.v0.models.LabelInvoiceResponseFile;
|
|
23845
|
+
export declare type LabelInvoiceResponseFileForm = io.flow.internal.v0.models.LabelInvoiceResponseFileForm;
|
|
23846
|
+
export declare type LabelInvoiceResponseFileResult = io.flow.internal.v0.models.LabelInvoiceResponseFileResult;
|
|
23855
23847
|
export declare type LabelInvoiceResponseForm = io.flow.internal.v0.models.LabelInvoiceResponseForm;
|
|
23856
23848
|
export declare type LabelMetadata = io.flow.internal.v0.models.LabelMetadata;
|
|
23857
23849
|
export declare type LabelRequestError = io.flow.internal.v0.models.LabelRequestError;
|
|
@@ -23879,7 +23871,6 @@ export declare type LabeledContent = io.flow.internal.v0.models.LabeledContent;
|
|
|
23879
23871
|
export declare type LabelsPrediction = io.flow.internal.v0.models.LabelsPrediction;
|
|
23880
23872
|
export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
23881
23873
|
export declare type Landmark = io.flow.internal.v0.models.Landmark;
|
|
23882
|
-
export declare type LaneReference = io.flow.internal.v0.models.LaneReference;
|
|
23883
23874
|
export declare type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
|
|
23884
23875
|
export declare type LevyRateSummaryUpserted = io.flow.internal.v0.models.LevyRateSummaryUpserted;
|
|
23885
23876
|
export declare type Liability = io.flow.internal.v0.models.Liability;
|
|
@@ -24050,6 +24041,10 @@ export declare type OrderCancellationEvidenceReturnToSender = io.flow.internal.v
|
|
|
24050
24041
|
export declare type OrderCancellationForm = io.flow.internal.v0.models.OrderCancellationForm;
|
|
24051
24042
|
export declare type OrderCancellationInitiatedBy = io.flow.internal.v0.enums.OrderCancellationInitiatedBy;
|
|
24052
24043
|
export declare type OrderChargeTrigger = io.flow.internal.v0.enums.OrderChargeTrigger;
|
|
24044
|
+
export declare type OrderCombinedShipment = io.flow.internal.v0.models.OrderCombinedShipment;
|
|
24045
|
+
export declare type OrderCombinedShipmentDeleted = io.flow.internal.v0.models.OrderCombinedShipmentDeleted;
|
|
24046
|
+
export declare type OrderCombinedShipmentForm = io.flow.internal.v0.models.OrderCombinedShipmentForm;
|
|
24047
|
+
export declare type OrderCombinedShipmentUpserted = io.flow.internal.v0.models.OrderCombinedShipmentUpserted;
|
|
24053
24048
|
export declare type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
24054
24049
|
export declare type OrderFulfillmentDeleted = io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
24055
24050
|
export declare type OrderFulfillmentUpserted = io.flow.internal.v0.models.OrderFulfillmentUpserted;
|
|
@@ -24109,7 +24104,6 @@ export declare type OrganizationPaymentSettingForm = io.flow.internal.v0.models.
|
|
|
24109
24104
|
export declare type OrganizationPaymentSettingUpserted = io.flow.internal.v0.models.OrganizationPaymentSettingUpserted;
|
|
24110
24105
|
export declare type OrganizationPaymentSettingVersion = io.flow.internal.v0.models.OrganizationPaymentSettingVersion;
|
|
24111
24106
|
export declare type OrganizationPaymentStatus = io.flow.internal.v0.enums.OrganizationPaymentStatus;
|
|
24112
|
-
export declare type OrganizationReference = io.flow.internal.v0.models.OrganizationReference;
|
|
24113
24107
|
export declare type OrganizationRestrictionApprovalStatus = io.flow.internal.v0.enums.OrganizationRestrictionApprovalStatus;
|
|
24114
24108
|
export declare type OrganizationRestrictionNoteForm = io.flow.internal.v0.models.OrganizationRestrictionNoteForm;
|
|
24115
24109
|
export declare type OrganizationRestrictionNoteType = io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
|
|
@@ -24567,8 +24561,6 @@ export declare type SubscriptionFrequency = io.flow.internal.v0.enums.Subscripti
|
|
|
24567
24561
|
export declare type SubscriptionTransaction = io.flow.internal.v0.models.SubscriptionTransaction;
|
|
24568
24562
|
export declare type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
24569
24563
|
export declare type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
24570
|
-
export declare type Surcharge = io.flow.internal.v0.models.Surcharge;
|
|
24571
|
-
export declare type SurchargeType = io.flow.internal.v0.enums.SurchargeType;
|
|
24572
24564
|
export declare type SvbVirtualCardClearing = io.flow.internal.v0.models.SvbVirtualCardClearing;
|
|
24573
24565
|
export declare type SvbVirtualCardClearingDeleted = io.flow.internal.v0.models.SvbVirtualCardClearingDeleted;
|
|
24574
24566
|
export declare type SvbVirtualCardClearingUpserted = io.flow.internal.v0.models.SvbVirtualCardClearingUpserted;
|
|
@@ -24647,6 +24639,8 @@ export declare type TransferTransactionUpsertedV2 = io.flow.internal.v0.models.T
|
|
|
24647
24639
|
export declare type Tribe = io.flow.internal.v0.models.Tribe;
|
|
24648
24640
|
export declare type TrueUpLabelSummary = io.flow.internal.v0.models.TrueUpLabelSummary;
|
|
24649
24641
|
export declare type TrueUpSurchargeType = io.flow.internal.v0.enums.TrueUpSurchargeType;
|
|
24642
|
+
export declare type TrueupTransaction = io.flow.internal.v0.models.TrueupTransaction;
|
|
24643
|
+
export declare type TrueupTransactionType = io.flow.internal.v0.enums.TrueupTransactionType;
|
|
24650
24644
|
export declare type UnassignedMerchantGuid = io.flow.internal.v0.models.UnassignedMerchantGuid;
|
|
24651
24645
|
export declare type UnassignedMerchantGuidDeleted = io.flow.internal.v0.models.UnassignedMerchantGuidDeleted;
|
|
24652
24646
|
export declare type UnassignedMerchantGuidUpserted = io.flow.internal.v0.models.UnassignedMerchantGuidUpserted;
|
|
@@ -24684,10 +24678,6 @@ export declare type VirtualCardProvider = io.flow.internal.v0.models.VirtualCard
|
|
|
24684
24678
|
export declare type VirtualCardProviderDeleted = io.flow.internal.v0.models.VirtualCardProviderDeleted;
|
|
24685
24679
|
export declare type VirtualCardProviderUpserted = io.flow.internal.v0.models.VirtualCardProviderUpserted;
|
|
24686
24680
|
export declare type VirtualCardTransaction = io.flow.internal.v0.models.VirtualCardTransaction;
|
|
24687
|
-
export declare type WashCarrierActualFile = io.flow.internal.v0.models.WashCarrierActualFile;
|
|
24688
|
-
export declare type WashCarrierActualFileForm = io.flow.internal.v0.models.WashCarrierActualFileForm;
|
|
24689
|
-
export declare type WashCarrierActualFileStatus = io.flow.internal.v0.enums.WashCarrierActualFileStatus;
|
|
24690
|
-
export declare type WashExportRequest = io.flow.internal.v0.models.WashExportRequest;
|
|
24691
24681
|
export declare type WasteElectricalAndElectronicEquipmentComplianceData = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceData;
|
|
24692
24682
|
export declare type WasteElectricalAndElectronicEquipmentComplianceForm = io.flow.internal.v0.models.WasteElectricalAndElectronicEquipmentComplianceForm;
|
|
24693
24683
|
export declare type Webhook = io.flow.internal.v0.models.Webhook;
|