@flowio/types 11.24.90 → 11.24.91
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 +174 -97
- package/dist/api.d.ts +2 -2
- package/package.json +2 -2
- package/src/api-internal.ts +249 -132
- package/src/api.ts +9 -5
package/dist/api-internal.d.ts
CHANGED
|
@@ -265,6 +265,10 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
265
265
|
readonly freight: number;
|
|
266
266
|
readonly total: number;
|
|
267
267
|
}
|
|
268
|
+
interface OrderReference {
|
|
269
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
270
|
+
readonly number: string;
|
|
271
|
+
}
|
|
268
272
|
interface OrderSummary {
|
|
269
273
|
readonly id: string;
|
|
270
274
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
@@ -274,6 +278,15 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
274
278
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
275
279
|
readonly currency: string;
|
|
276
280
|
}
|
|
281
|
+
interface PendingOrder {
|
|
282
|
+
readonly id: string;
|
|
283
|
+
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
284
|
+
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
285
|
+
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
286
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
287
|
+
readonly sequence_number: number;
|
|
288
|
+
readonly posting_cutoff: string;
|
|
289
|
+
}
|
|
277
290
|
interface RemittanceResponsibility {
|
|
278
291
|
readonly tax: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
279
292
|
readonly duty: io.flow.billing.internal.v0.enums.ResponsibleParty;
|
|
@@ -282,8 +295,8 @@ declare namespace io.flow.billing.accounting.v0.models {
|
|
|
282
295
|
readonly id: string;
|
|
283
296
|
readonly order: io.flow.billing.accounting.v0.models.OrderSummary;
|
|
284
297
|
readonly shopper: io.flow.billing.accounting.v0.models.ShopperSummary;
|
|
285
|
-
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
286
298
|
readonly merchant: io.flow.billing.accounting.v0.models.MerchantSummary;
|
|
299
|
+
readonly remittance: io.flow.billing.accounting.v0.models.RemittanceResponsibility;
|
|
287
300
|
readonly sequence_number: number;
|
|
288
301
|
readonly posting_cutoff: string;
|
|
289
302
|
readonly trigger: io.flow.billing.accounting.v0.unions.ReturnTrigger;
|
|
@@ -2044,6 +2057,8 @@ declare namespace io.flow.billing.csv.v0.models {
|
|
|
2044
2057
|
readonly fx_fee_description?: string;
|
|
2045
2058
|
readonly duty_guarantee_fee?: number;
|
|
2046
2059
|
readonly duty_guarantee_fee_description?: string;
|
|
2060
|
+
readonly negative_balance_fee?: number;
|
|
2061
|
+
readonly negative_balance_fee_description?: string;
|
|
2047
2062
|
}
|
|
2048
2063
|
interface BillingCsvProcessingTransactionDelivery {
|
|
2049
2064
|
readonly delivery_option_id: string;
|
|
@@ -3161,7 +3176,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
3161
3176
|
type Direction = 'outbound' | 'return';
|
|
3162
3177
|
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
|
|
3163
3178
|
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3164
|
-
type PackageDimensionsSource = 'provided' | 'dimensions_estimated';
|
|
3179
|
+
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
3165
3180
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3166
3181
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
3167
3182
|
}
|
|
@@ -7622,7 +7637,7 @@ declare namespace io.flow.billing.reporting.v0.enums {
|
|
|
7622
7637
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
7623
7638
|
type ReportType = 'sales_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment';
|
|
7624
7639
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
7625
|
-
type RevenueRecordType = 'sales' | 'refund';
|
|
7640
|
+
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
7626
7641
|
}
|
|
7627
7642
|
declare namespace io.flow.billing.reporting.v0.models {
|
|
7628
7643
|
interface FulfillmentShopperBreakdown {
|
|
@@ -10652,7 +10667,7 @@ declare namespace io.flow.price.v0.unions {
|
|
|
10652
10667
|
}
|
|
10653
10668
|
declare namespace io.flow.trueup.v0.enums {
|
|
10654
10669
|
type CarrierChargeReason = 'return_to_origin' | 'rejection' | 'other';
|
|
10655
|
-
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | '
|
|
10670
|
+
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion';
|
|
10656
10671
|
}
|
|
10657
10672
|
declare namespace io.flow.trueup.v0.models {
|
|
10658
10673
|
interface DeadWeight {
|
|
@@ -11590,15 +11605,14 @@ declare namespace io.flow.item.v0.models {
|
|
|
11590
11605
|
}
|
|
11591
11606
|
}
|
|
11592
11607
|
declare namespace io.flow.billing.internal.v0.enums {
|
|
11608
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
11593
11609
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
11594
|
-
type AccountStatus = 'active' | 'inactive';
|
|
11595
11610
|
type AccountType = 'channel' | 'organization';
|
|
11596
11611
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
11597
11612
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
11598
11613
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
11599
11614
|
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';
|
|
11600
11615
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
11601
|
-
type BillingStatementBatchFileKey = 'summary';
|
|
11602
11616
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
11603
11617
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
11604
11618
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -11648,6 +11662,15 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11648
11662
|
interface AccountOrigin {
|
|
11649
11663
|
readonly country: string;
|
|
11650
11664
|
}
|
|
11665
|
+
interface AccountPaymentHold {
|
|
11666
|
+
readonly id: string;
|
|
11667
|
+
readonly account: io.flow.billing.internal.v0.models.SimpleAccountReference;
|
|
11668
|
+
readonly reason: io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
|
|
11669
|
+
}
|
|
11670
|
+
interface AccountPaymentHoldForm {
|
|
11671
|
+
readonly account_id: string;
|
|
11672
|
+
readonly reason: io.flow.billing.internal.v0.enums.AccountPaymentHoldReason;
|
|
11673
|
+
}
|
|
11651
11674
|
interface AccountProcessingRateForm {
|
|
11652
11675
|
readonly query: string;
|
|
11653
11676
|
readonly capture: number;
|
|
@@ -11848,17 +11871,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11848
11871
|
readonly name: string;
|
|
11849
11872
|
readonly url: string;
|
|
11850
11873
|
}
|
|
11851
|
-
interface BillingStatementBatch {
|
|
11852
|
-
readonly id: string;
|
|
11853
|
-
}
|
|
11854
|
-
interface BillingStatementBatchReference {
|
|
11855
|
-
readonly id: string;
|
|
11856
|
-
}
|
|
11857
|
-
interface BillingStatementBatchStatement {
|
|
11858
|
-
readonly id: string;
|
|
11859
|
-
readonly batch: io.flow.billing.internal.v0.models.BillingStatementBatchReference;
|
|
11860
|
-
readonly statement: io.flow.billing.internal.v0.models.BillingStatementReference;
|
|
11861
|
-
}
|
|
11862
11874
|
interface BillingStatementReference {
|
|
11863
11875
|
readonly id: string;
|
|
11864
11876
|
}
|
|
@@ -11926,7 +11938,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
11926
11938
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
11927
11939
|
readonly id: string;
|
|
11928
11940
|
readonly key?: string;
|
|
11929
|
-
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
11930
11941
|
readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
11931
11942
|
readonly currency: string;
|
|
11932
11943
|
readonly updated_at: string;
|
|
@@ -12095,6 +12106,7 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
12095
12106
|
readonly fx?: io.flow.billing.internal.v0.models.Fee;
|
|
12096
12107
|
readonly duty_guarantee?: io.flow.billing.internal.v0.models.Fee;
|
|
12097
12108
|
readonly transfer?: io.flow.billing.internal.v0.models.Fee;
|
|
12109
|
+
readonly negative_balance?: io.flow.billing.internal.v0.models.Fee;
|
|
12098
12110
|
}
|
|
12099
12111
|
interface FinanceBankAccount {
|
|
12100
12112
|
readonly id: string;
|
|
@@ -12117,7 +12129,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
12117
12129
|
readonly source: io.flow.billing.internal.v0.models.AccountSource;
|
|
12118
12130
|
readonly id: string;
|
|
12119
12131
|
readonly key?: string;
|
|
12120
|
-
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
12121
12132
|
readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
12122
12133
|
readonly currency: string;
|
|
12123
12134
|
readonly updated_at: string;
|
|
@@ -12131,9 +12142,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
12131
12142
|
readonly bank_account?: io.flow.billing.internal.v0.models.BankAccountReference;
|
|
12132
12143
|
readonly created_at: string;
|
|
12133
12144
|
}
|
|
12134
|
-
interface FlowAccountStatusForm {
|
|
12135
|
-
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
12136
|
-
}
|
|
12137
12145
|
interface FlowBillingStatement {
|
|
12138
12146
|
readonly id: string;
|
|
12139
12147
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -12290,7 +12298,6 @@ declare namespace io.flow.billing.internal.v0.models {
|
|
|
12290
12298
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
12291
12299
|
readonly id: string;
|
|
12292
12300
|
readonly key?: string;
|
|
12293
|
-
readonly status: io.flow.billing.internal.v0.enums.AccountStatus;
|
|
12294
12301
|
readonly origin?: io.flow.billing.internal.v0.models.AccountOrigin;
|
|
12295
12302
|
readonly currency: string;
|
|
12296
12303
|
readonly updated_at: string;
|
|
@@ -14315,8 +14322,8 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
14315
14322
|
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
14316
14323
|
}
|
|
14317
14324
|
declare namespace io.flow.internal.v0.enums {
|
|
14325
|
+
type AccountPaymentHoldReason = 'fraudulent' | 'invalid_bank_account';
|
|
14318
14326
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
14319
|
-
type AccountStatus = 'active' | 'inactive';
|
|
14320
14327
|
type AccountType = 'channel' | 'organization';
|
|
14321
14328
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
14322
14329
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
@@ -14327,9 +14334,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14327
14334
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
14328
14335
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
14329
14336
|
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';
|
|
14330
|
-
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_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_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_queued_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' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | '
|
|
14337
|
+
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_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_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_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_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' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total';
|
|
14331
14338
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
14332
|
-
type BillingStatementBatchFileKey = 'summary';
|
|
14333
14339
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
14334
14340
|
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge';
|
|
14335
14341
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
@@ -14349,7 +14355,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14349
14355
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
14350
14356
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
14351
14357
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
14352
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery';
|
|
14358
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge';
|
|
14353
14359
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
14354
14360
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
14355
14361
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -14456,7 +14462,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14456
14462
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
14457
14463
|
type EmptyAttribute = 'irrelevant';
|
|
14458
14464
|
type ErpFileType = 'vendor';
|
|
14459
|
-
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' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | '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' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | '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' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_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';
|
|
14465
|
+
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'sales_record_upserted' | 'sales_record_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | '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' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14460
14466
|
type ExperienceImportType = 'experience_with_settings';
|
|
14461
14467
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14462
14468
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14562,7 +14568,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14562
14568
|
type RestrictionAction = 'prohibited' | 'restricted';
|
|
14563
14569
|
type RestrictionDecision = 'accept' | 'escalate' | 'reject' | 'review';
|
|
14564
14570
|
type RestrictionStatus = 'pending' | 'in_review' | 'escalated' | 'accepted' | 'restricted';
|
|
14565
|
-
type RevenueRecordType = 'sales' | 'refund';
|
|
14571
|
+
type RevenueRecordType = 'pending' | 'sales' | 'refund';
|
|
14566
14572
|
type RiskCheck = 'three_d_secure';
|
|
14567
14573
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
14568
14574
|
type Scope = 'organization' | 'global';
|
|
@@ -14586,7 +14592,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14586
14592
|
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
14587
14593
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
14588
14594
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
14589
|
-
type SnoozeSourceType = '
|
|
14595
|
+
type SnoozeSourceType = 'task';
|
|
14590
14596
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
14591
14597
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
14592
14598
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
@@ -14602,6 +14608,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14602
14608
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
14603
14609
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
14604
14610
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
14611
|
+
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
14605
14612
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
14606
14613
|
type TransferMethod = 'ach';
|
|
14607
14614
|
type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
|
|
@@ -14678,6 +14685,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14678
14685
|
interface AccountOrigin {
|
|
14679
14686
|
readonly country: string;
|
|
14680
14687
|
}
|
|
14688
|
+
interface AccountPaymentHold {
|
|
14689
|
+
readonly id: string;
|
|
14690
|
+
readonly account: io.flow.internal.v0.models.SimpleAccountReference;
|
|
14691
|
+
readonly reason: io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
14692
|
+
}
|
|
14693
|
+
interface AccountPaymentHoldForm {
|
|
14694
|
+
readonly account_id: string;
|
|
14695
|
+
readonly reason: io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
14696
|
+
}
|
|
14681
14697
|
interface AccountProcessingRateForm {
|
|
14682
14698
|
readonly query: string;
|
|
14683
14699
|
readonly capture: number;
|
|
@@ -14801,6 +14817,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14801
14817
|
readonly timestamp: string;
|
|
14802
14818
|
readonly account: io.flow.internal.v0.models.FlowAccount;
|
|
14803
14819
|
}
|
|
14820
|
+
interface AccountingFulfillmentMetadata {
|
|
14821
|
+
readonly discriminator: 'accounting_fulfillment_metadata';
|
|
14822
|
+
readonly order: io.flow.internal.v0.models.OrderReference;
|
|
14823
|
+
readonly proof: io.flow.internal.v0.unions.FulfillmentProof;
|
|
14824
|
+
}
|
|
14804
14825
|
interface ActionQuantity {
|
|
14805
14826
|
readonly action: io.flow.internal.v0.enums.ItemQuantityAction;
|
|
14806
14827
|
readonly quantity: number;
|
|
@@ -15460,41 +15481,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15460
15481
|
readonly name: string;
|
|
15461
15482
|
readonly url: string;
|
|
15462
15483
|
}
|
|
15463
|
-
interface BillingStatementBatch {
|
|
15464
|
-
readonly id: string;
|
|
15465
|
-
}
|
|
15466
|
-
interface BillingStatementBatchDeleted {
|
|
15467
|
-
readonly discriminator: 'billing_statement_batch_deleted';
|
|
15468
|
-
readonly event_id: string;
|
|
15469
|
-
readonly timestamp: string;
|
|
15470
|
-
readonly id: string;
|
|
15471
|
-
}
|
|
15472
|
-
interface BillingStatementBatchReference {
|
|
15473
|
-
readonly id: string;
|
|
15474
|
-
}
|
|
15475
|
-
interface BillingStatementBatchStatement {
|
|
15476
|
-
readonly id: string;
|
|
15477
|
-
readonly batch: io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
15478
|
-
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
15479
|
-
}
|
|
15480
|
-
interface BillingStatementBatchStatementDeleted {
|
|
15481
|
-
readonly discriminator: 'billing_statement_batch_statement_deleted';
|
|
15482
|
-
readonly event_id: string;
|
|
15483
|
-
readonly timestamp: string;
|
|
15484
|
-
readonly id: string;
|
|
15485
|
-
}
|
|
15486
|
-
interface BillingStatementBatchStatementUpserted {
|
|
15487
|
-
readonly discriminator: 'billing_statement_batch_statement_upserted';
|
|
15488
|
-
readonly event_id: string;
|
|
15489
|
-
readonly timestamp: string;
|
|
15490
|
-
readonly billing_statement_batch_statement: io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
15491
|
-
}
|
|
15492
|
-
interface BillingStatementBatchUpserted {
|
|
15493
|
-
readonly discriminator: 'billing_statement_batch_upserted';
|
|
15494
|
-
readonly event_id: string;
|
|
15495
|
-
readonly timestamp: string;
|
|
15496
|
-
readonly billing_statement_batch: io.flow.internal.v0.models.BillingStatementBatch;
|
|
15497
|
-
}
|
|
15498
15484
|
interface BillingStatementDeleted {
|
|
15499
15485
|
readonly discriminator: 'billing_statement_deleted';
|
|
15500
15486
|
readonly event_id: string;
|
|
@@ -15980,6 +15966,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15980
15966
|
interface CarrierChargeFormOther {
|
|
15981
15967
|
readonly discriminator: 'other';
|
|
15982
15968
|
readonly id: string;
|
|
15969
|
+
readonly label_invoice_request_id?: string;
|
|
15983
15970
|
readonly reason: io.flow.trueup.v0.enums.CarrierChargeReason;
|
|
15984
15971
|
readonly organization_id: string;
|
|
15985
15972
|
readonly order_number: string;
|
|
@@ -16128,7 +16115,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16128
16115
|
readonly channel: io.flow.common.v0.models.ChannelReference;
|
|
16129
16116
|
readonly id: string;
|
|
16130
16117
|
readonly key?: string;
|
|
16131
|
-
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
16132
16118
|
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
16133
16119
|
readonly currency: string;
|
|
16134
16120
|
readonly updated_at: string;
|
|
@@ -19916,7 +19902,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19916
19902
|
readonly source: io.flow.internal.v0.models.AccountSource;
|
|
19917
19903
|
readonly id: string;
|
|
19918
19904
|
readonly key?: string;
|
|
19919
|
-
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
19920
19905
|
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
19921
19906
|
readonly currency: string;
|
|
19922
19907
|
readonly updated_at: string;
|
|
@@ -19930,9 +19915,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19930
19915
|
readonly bank_account?: io.flow.internal.v0.models.BankAccountReference;
|
|
19931
19916
|
readonly created_at: string;
|
|
19932
19917
|
}
|
|
19933
|
-
interface FlowAccountStatusForm {
|
|
19934
|
-
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
19935
|
-
}
|
|
19936
19918
|
interface FlowBillingStatement {
|
|
19937
19919
|
readonly id: string;
|
|
19938
19920
|
readonly account: io.flow.billing.v0.models.AccountReference;
|
|
@@ -20195,6 +20177,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20195
20177
|
readonly reason: io.flow.order.management.v0.enums.CancelReason;
|
|
20196
20178
|
readonly cancelled_lines: io.flow.order.management.v0.models.FulfillmentLineCancelForm[];
|
|
20197
20179
|
}
|
|
20180
|
+
interface FulfillmentDeleted {
|
|
20181
|
+
readonly discriminator: 'fulfillment_deleted';
|
|
20182
|
+
readonly event_id: string;
|
|
20183
|
+
readonly timestamp: string;
|
|
20184
|
+
readonly organization: string;
|
|
20185
|
+
readonly id: string;
|
|
20186
|
+
}
|
|
20198
20187
|
interface FulfillmentInternalExperienceReference {
|
|
20199
20188
|
readonly id: string;
|
|
20200
20189
|
readonly key: string;
|
|
@@ -20281,6 +20270,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20281
20270
|
readonly discriminator: 'by_time';
|
|
20282
20271
|
readonly placeholder?: string;
|
|
20283
20272
|
}
|
|
20273
|
+
interface FulfillmentUpserted {
|
|
20274
|
+
readonly discriminator: 'fulfillment_upserted';
|
|
20275
|
+
readonly event_id: string;
|
|
20276
|
+
readonly timestamp: string;
|
|
20277
|
+
readonly organization: string;
|
|
20278
|
+
readonly fulfillment: io.flow.internal.v0.models.Fulfillment;
|
|
20279
|
+
}
|
|
20284
20280
|
interface FxFee {
|
|
20285
20281
|
readonly base: io.flow.common.v0.models.Money;
|
|
20286
20282
|
readonly local: io.flow.common.v0.models.Money;
|
|
@@ -21752,6 +21748,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21752
21748
|
readonly emergency?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21753
21749
|
readonly peak?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21754
21750
|
readonly address_correction?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21751
|
+
readonly security?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21752
|
+
readonly eei_filing?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21753
|
+
readonly fixed_ddp?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21754
|
+
readonly fixed_currency_conversion?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
|
|
21755
21755
|
}
|
|
21756
21756
|
interface LabelSurchargeSingleForm {
|
|
21757
21757
|
readonly amount: number;
|
|
@@ -22843,6 +22843,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22843
22843
|
readonly organization: string;
|
|
22844
22844
|
readonly data: io.flow.internal.v0.models.OrderRatesDataV3;
|
|
22845
22845
|
}
|
|
22846
|
+
interface OrderReference {
|
|
22847
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
22848
|
+
readonly number: string;
|
|
22849
|
+
}
|
|
22846
22850
|
interface OrderRevenueRegionChart {
|
|
22847
22851
|
readonly total: io.flow.common.v0.models.Price;
|
|
22848
22852
|
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
@@ -22922,6 +22926,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22922
22926
|
readonly service_id: string;
|
|
22923
22927
|
readonly status: io.flow.internal.v0.enums.OrderValidationStatus;
|
|
22924
22928
|
readonly updated_by_user_id: string;
|
|
22929
|
+
readonly created_at: string;
|
|
22930
|
+
readonly resolved_at?: string;
|
|
22931
|
+
}
|
|
22932
|
+
interface OrderValidationDeleted {
|
|
22933
|
+
readonly discriminator: 'order_validation_deleted';
|
|
22934
|
+
readonly event_id: string;
|
|
22935
|
+
readonly timestamp: string;
|
|
22936
|
+
readonly organization: string;
|
|
22937
|
+
readonly id: string;
|
|
22925
22938
|
}
|
|
22926
22939
|
interface OrderValidationError {
|
|
22927
22940
|
readonly message: string;
|
|
@@ -22941,6 +22954,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22941
22954
|
readonly suggested_responsibility: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
22942
22955
|
readonly errors: string[];
|
|
22943
22956
|
}
|
|
22957
|
+
interface OrderValidationFailureDeleted {
|
|
22958
|
+
readonly discriminator: 'order_validation_failure_deleted';
|
|
22959
|
+
readonly event_id: string;
|
|
22960
|
+
readonly timestamp: string;
|
|
22961
|
+
readonly organization: string;
|
|
22962
|
+
readonly id: string;
|
|
22963
|
+
}
|
|
22944
22964
|
interface OrderValidationFailureSummary {
|
|
22945
22965
|
readonly organization_id: string;
|
|
22946
22966
|
readonly order_number: string;
|
|
@@ -22950,11 +22970,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22950
22970
|
readonly error: string;
|
|
22951
22971
|
readonly created_at: string;
|
|
22952
22972
|
}
|
|
22973
|
+
interface OrderValidationFailureUpserted {
|
|
22974
|
+
readonly discriminator: 'order_validation_failure_upserted';
|
|
22975
|
+
readonly event_id: string;
|
|
22976
|
+
readonly timestamp: string;
|
|
22977
|
+
readonly organization: string;
|
|
22978
|
+
readonly order_validation_failure: io.flow.internal.v0.models.OrderValidationFailure;
|
|
22979
|
+
}
|
|
22980
|
+
interface OrderValidationUpserted {
|
|
22981
|
+
readonly discriminator: 'order_validation_upserted';
|
|
22982
|
+
readonly event_id: string;
|
|
22983
|
+
readonly timestamp: string;
|
|
22984
|
+
readonly organization: string;
|
|
22985
|
+
readonly order_validation: io.flow.internal.v0.models.OrderValidation;
|
|
22986
|
+
}
|
|
22953
22987
|
interface OrganizationAccount {
|
|
22954
22988
|
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
22955
22989
|
readonly id: string;
|
|
22956
22990
|
readonly key?: string;
|
|
22957
|
-
readonly status: io.flow.internal.v0.enums.AccountStatus;
|
|
22958
22991
|
readonly origin?: io.flow.internal.v0.models.AccountOrigin;
|
|
22959
22992
|
readonly currency: string;
|
|
22960
22993
|
readonly updated_at: string;
|
|
@@ -23614,6 +23647,15 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23614
23647
|
readonly transaction: io.flow.internal.v0.models.TransactionReference;
|
|
23615
23648
|
readonly statement: io.flow.internal.v0.models.BillingStatementReference;
|
|
23616
23649
|
}
|
|
23650
|
+
interface PendingOrder {
|
|
23651
|
+
readonly id: string;
|
|
23652
|
+
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
23653
|
+
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
23654
|
+
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
23655
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
23656
|
+
readonly sequence_number: number;
|
|
23657
|
+
readonly posting_cutoff: string;
|
|
23658
|
+
}
|
|
23617
23659
|
interface PhraseClassified {
|
|
23618
23660
|
readonly event_id: string;
|
|
23619
23661
|
readonly timestamp: string;
|
|
@@ -23904,19 +23946,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23904
23946
|
readonly discriminator: 'shipping_notification';
|
|
23905
23947
|
readonly shipping_notification_id: string;
|
|
23906
23948
|
}
|
|
23907
|
-
interface QueuedRecord {
|
|
23908
|
-
readonly type: string;
|
|
23909
|
-
readonly type_id: string;
|
|
23910
|
-
readonly source_type?: string;
|
|
23911
|
-
readonly source_id?: string;
|
|
23912
|
-
readonly environment?: string;
|
|
23913
|
-
readonly created_at: string;
|
|
23914
|
-
readonly num_attempts: number;
|
|
23915
|
-
readonly next_attempt_at: string;
|
|
23916
|
-
readonly errors?: string[];
|
|
23917
|
-
readonly stacktrace?: string;
|
|
23918
|
-
readonly snooze_id?: string;
|
|
23919
|
-
}
|
|
23920
23949
|
interface Quote {
|
|
23921
23950
|
readonly id: string;
|
|
23922
23951
|
readonly base: string;
|
|
@@ -24794,8 +24823,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24794
24823
|
readonly id: string;
|
|
24795
24824
|
readonly order: io.flow.internal.v0.models.OrderSummary;
|
|
24796
24825
|
readonly shopper: io.flow.internal.v0.models.ShopperSummary;
|
|
24797
|
-
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24798
24826
|
readonly merchant: io.flow.internal.v0.models.MerchantSummary;
|
|
24827
|
+
readonly remittance: io.flow.internal.v0.models.RemittanceResponsibility;
|
|
24799
24828
|
readonly sequence_number: number;
|
|
24800
24829
|
readonly posting_cutoff: string;
|
|
24801
24830
|
readonly trigger: io.flow.internal.v0.unions.ReturnTrigger;
|
|
@@ -25731,6 +25760,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25731
25760
|
readonly timestamp: string;
|
|
25732
25761
|
readonly attachment: io.flow.internal.v0.models.StandaloneAttachment;
|
|
25733
25762
|
}
|
|
25763
|
+
interface StatementCreationMetadata {
|
|
25764
|
+
readonly discriminator: 'statement_creation_metadata';
|
|
25765
|
+
readonly period: io.flow.common.v0.models.DatetimeRange;
|
|
25766
|
+
}
|
|
25734
25767
|
interface StoreConnection {
|
|
25735
25768
|
readonly organization?: io.flow.common.v0.models.OrganizationReference;
|
|
25736
25769
|
readonly id: string;
|
|
@@ -26066,6 +26099,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26066
26099
|
readonly id: string;
|
|
26067
26100
|
readonly data: io.flow.internal.v0.unions.TariffEligibilityData;
|
|
26068
26101
|
}
|
|
26102
|
+
interface Task {
|
|
26103
|
+
readonly type: string;
|
|
26104
|
+
readonly type_id: string;
|
|
26105
|
+
readonly source_type?: string;
|
|
26106
|
+
readonly source_id?: string;
|
|
26107
|
+
readonly environment?: string;
|
|
26108
|
+
readonly created_at: string;
|
|
26109
|
+
readonly num_attempts: number;
|
|
26110
|
+
readonly next_attempt_at: string;
|
|
26111
|
+
readonly errors?: string[];
|
|
26112
|
+
readonly stacktrace?: string;
|
|
26113
|
+
readonly snooze_id?: string;
|
|
26114
|
+
}
|
|
26069
26115
|
interface TaskCount {
|
|
26070
26116
|
readonly discriminator: string;
|
|
26071
26117
|
readonly count: number;
|
|
@@ -26326,6 +26372,28 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26326
26372
|
readonly organization: string;
|
|
26327
26373
|
readonly tracking_label: io.flow.internal.v0.models.ExportTrackingLabel;
|
|
26328
26374
|
}
|
|
26375
|
+
interface TrackingProcessingError {
|
|
26376
|
+
readonly id: string;
|
|
26377
|
+
readonly aftership_webhook_id: string;
|
|
26378
|
+
readonly carrier_id: string;
|
|
26379
|
+
readonly carrier_tracking_number: string;
|
|
26380
|
+
readonly organization_id?: string;
|
|
26381
|
+
readonly tracking_label_id?: string;
|
|
26382
|
+
readonly errors: string[];
|
|
26383
|
+
readonly failure_classification: io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
26384
|
+
}
|
|
26385
|
+
interface TrackingProcessingErrorDeleted {
|
|
26386
|
+
readonly discriminator: 'tracking_processing_error_deleted';
|
|
26387
|
+
readonly event_id: string;
|
|
26388
|
+
readonly timestamp: string;
|
|
26389
|
+
readonly id: string;
|
|
26390
|
+
}
|
|
26391
|
+
interface TrackingProcessingErrorUpserted {
|
|
26392
|
+
readonly discriminator: 'tracking_processing_error_upserted';
|
|
26393
|
+
readonly event_id: string;
|
|
26394
|
+
readonly timestamp: string;
|
|
26395
|
+
readonly tracking_processing_error: io.flow.internal.v0.models.TrackingProcessingError;
|
|
26396
|
+
}
|
|
26329
26397
|
interface TrackingRequest {
|
|
26330
26398
|
readonly carrier: string;
|
|
26331
26399
|
readonly carrier_tracking_number: string;
|
|
@@ -26754,7 +26822,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26754
26822
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
26755
26823
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
26756
26824
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
26757
|
-
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.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.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.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.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.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.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;
|
|
26825
|
+
type Event = io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.SalesRecordUpserted | io.flow.internal.v0.models.SalesRecordDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.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.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
26758
26826
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
26759
26827
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
26760
26828
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -26808,6 +26876,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26808
26876
|
type TariffEligibilityData = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityData;
|
|
26809
26877
|
type TariffEligibilityForm = io.flow.internal.v0.models.RegisteredExporterTariffEligibilityForm;
|
|
26810
26878
|
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;
|
|
26879
|
+
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingFulfillmentMetadata;
|
|
26811
26880
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
26812
26881
|
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;
|
|
26813
26882
|
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction;
|
|
@@ -26826,6 +26895,9 @@ export declare type AccountDepositRule = io.flow.internal.v0.models.AccountDepos
|
|
|
26826
26895
|
export declare type AccountDepositRuleForm = io.flow.internal.v0.models.AccountDepositRuleForm;
|
|
26827
26896
|
export declare type AccountOrdersExportRequest = io.flow.internal.v0.models.AccountOrdersExportRequest;
|
|
26828
26897
|
export declare type AccountOrigin = io.flow.internal.v0.models.AccountOrigin;
|
|
26898
|
+
export declare type AccountPaymentHold = io.flow.internal.v0.models.AccountPaymentHold;
|
|
26899
|
+
export declare type AccountPaymentHoldForm = io.flow.internal.v0.models.AccountPaymentHoldForm;
|
|
26900
|
+
export declare type AccountPaymentHoldReason = io.flow.internal.v0.enums.AccountPaymentHoldReason;
|
|
26829
26901
|
export declare type AccountProcessingRateForm = io.flow.internal.v0.models.AccountProcessingRateForm;
|
|
26830
26902
|
export declare type AccountProcessingRates = io.flow.internal.v0.models.AccountProcessingRates;
|
|
26831
26903
|
export declare type AccountProcessingRatesDeleted = io.flow.internal.v0.models.AccountProcessingRatesDeleted;
|
|
@@ -26839,12 +26911,12 @@ export declare type AccountSettingsDeleted = io.flow.internal.v0.models.AccountS
|
|
|
26839
26911
|
export declare type AccountSettingsUpserted = io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
26840
26912
|
export declare type AccountSource = io.flow.internal.v0.models.AccountSource;
|
|
26841
26913
|
export declare type AccountStatistics = io.flow.internal.v0.models.AccountStatistics;
|
|
26842
|
-
export declare type AccountStatus = io.flow.internal.v0.enums.AccountStatus;
|
|
26843
26914
|
export declare type AccountSummary = io.flow.internal.v0.models.AccountSummary;
|
|
26844
26915
|
export declare type AccountTransactionsExportRequest = io.flow.internal.v0.models.AccountTransactionsExportRequest;
|
|
26845
26916
|
export declare type AccountType = io.flow.internal.v0.enums.AccountType;
|
|
26846
26917
|
export declare type AccountUpserted = io.flow.internal.v0.models.AccountUpserted;
|
|
26847
26918
|
export declare type AccountUpsertedV2 = io.flow.internal.v0.models.AccountUpsertedV2;
|
|
26919
|
+
export declare type AccountingFulfillmentMetadata = io.flow.internal.v0.models.AccountingFulfillmentMetadata;
|
|
26848
26920
|
export declare type ActionQuantity = io.flow.internal.v0.models.ActionQuantity;
|
|
26849
26921
|
export declare type AdditionalImportTax = io.flow.internal.v0.models.AdditionalImportTax;
|
|
26850
26922
|
export declare type AddressConfigurationProvinceSetting = io.flow.internal.v0.models.AddressConfigurationProvinceSetting;
|
|
@@ -26968,14 +27040,6 @@ export declare type BillingOrganizationSettingsDeleted = io.flow.internal.v0.mod
|
|
|
26968
27040
|
export declare type BillingOrganizationSettingsUpserted = io.flow.internal.v0.models.BillingOrganizationSettingsUpserted;
|
|
26969
27041
|
export declare type BillingStatementAttachment = io.flow.internal.v0.models.BillingStatementAttachment;
|
|
26970
27042
|
export declare type BillingStatementAttachmentKey = io.flow.internal.v0.enums.BillingStatementAttachmentKey;
|
|
26971
|
-
export declare type BillingStatementBatch = io.flow.internal.v0.models.BillingStatementBatch;
|
|
26972
|
-
export declare type BillingStatementBatchDeleted = io.flow.internal.v0.models.BillingStatementBatchDeleted;
|
|
26973
|
-
export declare type BillingStatementBatchFileKey = io.flow.internal.v0.enums.BillingStatementBatchFileKey;
|
|
26974
|
-
export declare type BillingStatementBatchReference = io.flow.internal.v0.models.BillingStatementBatchReference;
|
|
26975
|
-
export declare type BillingStatementBatchStatement = io.flow.internal.v0.models.BillingStatementBatchStatement;
|
|
26976
|
-
export declare type BillingStatementBatchStatementDeleted = io.flow.internal.v0.models.BillingStatementBatchStatementDeleted;
|
|
26977
|
-
export declare type BillingStatementBatchStatementUpserted = io.flow.internal.v0.models.BillingStatementBatchStatementUpserted;
|
|
26978
|
-
export declare type BillingStatementBatchUpserted = io.flow.internal.v0.models.BillingStatementBatchUpserted;
|
|
26979
27043
|
export declare type BillingStatementDeleted = io.flow.internal.v0.models.BillingStatementDeleted;
|
|
26980
27044
|
export declare type BillingStatementReference = io.flow.internal.v0.models.BillingStatementReference;
|
|
26981
27045
|
export declare type BillingStatementSummary = io.flow.internal.v0.models.BillingStatementSummary;
|
|
@@ -27996,7 +28060,6 @@ export declare type FiservMerchant = io.flow.internal.v0.models.FiservMerchant;
|
|
|
27996
28060
|
export declare type FiservMerchantModificationForm = io.flow.internal.v0.models.FiservMerchantModificationForm;
|
|
27997
28061
|
export declare type FiservMerchantPutForm = io.flow.internal.v0.models.FiservMerchantPutForm;
|
|
27998
28062
|
export declare type FlowAccount = io.flow.internal.v0.models.FlowAccount;
|
|
27999
|
-
export declare type FlowAccountStatusForm = io.flow.internal.v0.models.FlowAccountStatusForm;
|
|
28000
28063
|
export declare type FlowApp = io.flow.internal.v0.enums.FlowApp;
|
|
28001
28064
|
export declare type FlowBillingStatement = io.flow.internal.v0.models.FlowBillingStatement;
|
|
28002
28065
|
export declare type FlowChannelOrganization = io.flow.internal.v0.models.FlowChannelOrganization;
|
|
@@ -28045,6 +28108,7 @@ export declare type Fulfillment = io.flow.internal.v0.models.Fulfillment;
|
|
|
28045
28108
|
export declare type FulfillmentActionForm = io.flow.internal.v0.models.FulfillmentActionForm;
|
|
28046
28109
|
export declare type FulfillmentBusiness = io.flow.internal.v0.models.FulfillmentBusiness;
|
|
28047
28110
|
export declare type FulfillmentCancel = io.flow.internal.v0.models.FulfillmentCancel;
|
|
28111
|
+
export declare type FulfillmentDeleted = io.flow.internal.v0.models.FulfillmentDeleted;
|
|
28048
28112
|
export declare type FulfillmentInternalExperienceReference = io.flow.internal.v0.models.FulfillmentInternalExperienceReference;
|
|
28049
28113
|
export declare type FulfillmentOrigin = io.flow.internal.v0.models.FulfillmentOrigin;
|
|
28050
28114
|
export declare type FulfillmentProof = io.flow.internal.v0.unions.FulfillmentProof;
|
|
@@ -28060,6 +28124,7 @@ export declare type FulfillmentSubsidyBreakdown = io.flow.internal.v0.models.Ful
|
|
|
28060
28124
|
export declare type FulfillmentTrigger = io.flow.internal.v0.unions.FulfillmentTrigger;
|
|
28061
28125
|
export declare type FulfillmentTriggerProof = io.flow.internal.v0.models.FulfillmentTriggerProof;
|
|
28062
28126
|
export declare type FulfillmentTriggerTime = io.flow.internal.v0.models.FulfillmentTriggerTime;
|
|
28127
|
+
export declare type FulfillmentUpserted = io.flow.internal.v0.models.FulfillmentUpserted;
|
|
28063
28128
|
export declare type FxFee = io.flow.internal.v0.models.FxFee;
|
|
28064
28129
|
export declare type FxRevenueRecognition = io.flow.internal.v0.models.FxRevenueRecognition;
|
|
28065
28130
|
export declare type FxRevenueRecognitionAccount = io.flow.internal.v0.models.FxRevenueRecognitionAccount;
|
|
@@ -28480,6 +28545,7 @@ export declare type OrderPaymentAuthorization = io.flow.internal.v0.models.Order
|
|
|
28480
28545
|
export declare type OrderPlaced = io.flow.internal.v0.models.OrderPlaced;
|
|
28481
28546
|
export declare type OrderRatesDataV3 = io.flow.internal.v0.models.OrderRatesDataV3;
|
|
28482
28547
|
export declare type OrderRatesPublishedV3 = io.flow.internal.v0.models.OrderRatesPublishedV3;
|
|
28548
|
+
export declare type OrderReference = io.flow.internal.v0.models.OrderReference;
|
|
28483
28549
|
export declare type OrderRevenueRegionChart = io.flow.internal.v0.models.OrderRevenueRegionChart;
|
|
28484
28550
|
export declare type OrderRevenueRegionDataPoint = io.flow.internal.v0.models.OrderRevenueRegionDataPoint;
|
|
28485
28551
|
export declare type OrderRevenueTimelineChart = io.flow.internal.v0.models.OrderRevenueTimelineChart;
|
|
@@ -28493,10 +28559,14 @@ export declare type OrderTransactionDeleted = io.flow.internal.v0.models.OrderTr
|
|
|
28493
28559
|
export declare type OrderTransactionType = io.flow.internal.v0.enums.OrderTransactionType;
|
|
28494
28560
|
export declare type OrderTransactionUpserted = io.flow.internal.v0.models.OrderTransactionUpserted;
|
|
28495
28561
|
export declare type OrderValidation = io.flow.internal.v0.models.OrderValidation;
|
|
28562
|
+
export declare type OrderValidationDeleted = io.flow.internal.v0.models.OrderValidationDeleted;
|
|
28496
28563
|
export declare type OrderValidationError = io.flow.internal.v0.models.OrderValidationError;
|
|
28497
28564
|
export declare type OrderValidationFailure = io.flow.internal.v0.models.OrderValidationFailure;
|
|
28565
|
+
export declare type OrderValidationFailureDeleted = io.flow.internal.v0.models.OrderValidationFailureDeleted;
|
|
28498
28566
|
export declare type OrderValidationFailureSummary = io.flow.internal.v0.models.OrderValidationFailureSummary;
|
|
28567
|
+
export declare type OrderValidationFailureUpserted = io.flow.internal.v0.models.OrderValidationFailureUpserted;
|
|
28499
28568
|
export declare type OrderValidationStatus = io.flow.internal.v0.enums.OrderValidationStatus;
|
|
28569
|
+
export declare type OrderValidationUpserted = io.flow.internal.v0.models.OrderValidationUpserted;
|
|
28500
28570
|
export declare type OrganizationAccount = io.flow.internal.v0.models.OrganizationAccount;
|
|
28501
28571
|
export declare type OrganizationAccountDeleted = io.flow.internal.v0.models.OrganizationAccountDeleted;
|
|
28502
28572
|
export declare type OrganizationAccountUpsertedV2 = io.flow.internal.v0.models.OrganizationAccountUpsertedV2;
|
|
@@ -28608,6 +28678,7 @@ export declare type PaypalRefundDeleted = io.flow.internal.v0.models.PaypalRefun
|
|
|
28608
28678
|
export declare type PaypalRefundUpserted = io.flow.internal.v0.models.PaypalRefundUpserted;
|
|
28609
28679
|
export declare type PendingBankPayment = io.flow.internal.v0.models.PendingBankPayment;
|
|
28610
28680
|
export declare type PendingBankPaymentDetail = io.flow.internal.v0.models.PendingBankPaymentDetail;
|
|
28681
|
+
export declare type PendingOrder = io.flow.internal.v0.models.PendingOrder;
|
|
28611
28682
|
export declare type PhraseClassified = io.flow.internal.v0.models.PhraseClassified;
|
|
28612
28683
|
export declare type PhrasePropagated = io.flow.internal.v0.models.PhrasePropagated;
|
|
28613
28684
|
export declare type PingRequestForm = io.flow.internal.v0.models.PingRequestForm;
|
|
@@ -28673,7 +28744,6 @@ export declare type ProofOfPostingFulfilled = io.flow.internal.v0.models.ProofOf
|
|
|
28673
28744
|
export declare type ProofOfPostingOrderCancellation = io.flow.internal.v0.models.ProofOfPostingOrderCancellation;
|
|
28674
28745
|
export declare type ProofOfPostingOrderCombinedShipment = io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment;
|
|
28675
28746
|
export declare type ProofOfPostingShippingNotification = io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
28676
|
-
export declare type QueuedRecord = io.flow.internal.v0.models.QueuedRecord;
|
|
28677
28747
|
export declare type Quote = io.flow.internal.v0.models.Quote;
|
|
28678
28748
|
export declare type QuoteDeleted = io.flow.internal.v0.models.QuoteDeleted;
|
|
28679
28749
|
export declare type QuoteRequest = io.flow.internal.v0.models.QuoteRequest;
|
|
@@ -29024,6 +29094,7 @@ export declare type SpotRateVersion = io.flow.internal.v0.models.SpotRateVersion
|
|
|
29024
29094
|
export declare type StandaloneAttachment = io.flow.internal.v0.models.StandaloneAttachment;
|
|
29025
29095
|
export declare type StandaloneAttachmentDeleted = io.flow.internal.v0.models.StandaloneAttachmentDeleted;
|
|
29026
29096
|
export declare type StandaloneAttachmentUpserted = io.flow.internal.v0.models.StandaloneAttachmentUpserted;
|
|
29097
|
+
export declare type StatementCreationMetadata = io.flow.internal.v0.models.StatementCreationMetadata;
|
|
29027
29098
|
export declare type StatementStatus = io.flow.internal.v0.enums.StatementStatus;
|
|
29028
29099
|
export declare type StatementTransferTransactionLocation = io.flow.internal.v0.enums.StatementTransferTransactionLocation;
|
|
29029
29100
|
export declare type StatisticType = io.flow.internal.v0.enums.StatisticType;
|
|
@@ -29083,10 +29154,12 @@ export declare type TariffEligibility = io.flow.internal.v0.models.TariffEligibi
|
|
|
29083
29154
|
export declare type TariffEligibilityData = io.flow.internal.v0.unions.TariffEligibilityData;
|
|
29084
29155
|
export declare type TariffEligibilityForm = io.flow.internal.v0.unions.TariffEligibilityForm;
|
|
29085
29156
|
export declare type TariffEligibilityType = io.flow.internal.v0.enums.TariffEligibilityType;
|
|
29157
|
+
export declare type Task = io.flow.internal.v0.models.Task;
|
|
29086
29158
|
export declare type TaskCount = io.flow.internal.v0.models.TaskCount;
|
|
29087
29159
|
export declare type TaskData = io.flow.internal.v0.unions.TaskData;
|
|
29088
29160
|
export declare type TaskImport = io.flow.internal.v0.models.TaskImport;
|
|
29089
29161
|
export declare type TaskItemUpserted = io.flow.internal.v0.models.TaskItemUpserted;
|
|
29162
|
+
export declare type TaskMetadata = io.flow.internal.v0.unions.TaskMetadata;
|
|
29090
29163
|
export declare type TaskProcessQueuedEvent = io.flow.internal.v0.models.TaskProcessQueuedEvent;
|
|
29091
29164
|
export declare type TaskProcessorKey = io.flow.internal.v0.enums.TaskProcessorKey;
|
|
29092
29165
|
export declare type TaskSummarizeCode = io.flow.internal.v0.models.TaskSummarizeCode;
|
|
@@ -29133,6 +29206,10 @@ export declare type TrackingLabelDeleted = io.flow.internal.v0.models.TrackingLa
|
|
|
29133
29206
|
export declare type TrackingLabelEventDeletedV2 = io.flow.internal.v0.models.TrackingLabelEventDeletedV2;
|
|
29134
29207
|
export declare type TrackingLabelEventUpsertedV2 = io.flow.internal.v0.models.TrackingLabelEventUpsertedV2;
|
|
29135
29208
|
export declare type TrackingLabelUpserted = io.flow.internal.v0.models.TrackingLabelUpserted;
|
|
29209
|
+
export declare type TrackingProcessingError = io.flow.internal.v0.models.TrackingProcessingError;
|
|
29210
|
+
export declare type TrackingProcessingErrorDeleted = io.flow.internal.v0.models.TrackingProcessingErrorDeleted;
|
|
29211
|
+
export declare type TrackingProcessingErrorUpserted = io.flow.internal.v0.models.TrackingProcessingErrorUpserted;
|
|
29212
|
+
export declare type TrackingProcessingFailureClassification = io.flow.internal.v0.enums.TrackingProcessingFailureClassification;
|
|
29136
29213
|
export declare type TrackingRequest = io.flow.internal.v0.models.TrackingRequest;
|
|
29137
29214
|
export declare type TrackingRequestUpserted = io.flow.internal.v0.models.TrackingRequestUpserted;
|
|
29138
29215
|
export declare type TrackingResponse = io.flow.internal.v0.models.TrackingResponse;
|