@flowio/api-types 0.0.199 → 0.0.201

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.
@@ -1,6 +1,5 @@
1
1
  declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.enums {
2
- type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
3
- type WeightSelection = 'dead' | 'dimensional';
2
+ type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
4
3
  }
5
4
 
6
5
  declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
@@ -24,11 +23,44 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
24
23
  readonly 'metadata': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelMetadata;
25
24
  }
26
25
 
26
+ interface LabelInvoiceResponseFile {
27
+ readonly 'id': string;
28
+ readonly 'url': string;
29
+ readonly 'created_at': string;
30
+ readonly 'result'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelInvoiceResponseFileResult;
31
+ }
32
+
33
+ interface LabelInvoiceResponseFileForm {
34
+ readonly 'url': string;
35
+ }
36
+
37
+ interface LabelInvoiceResponseFileResult {
38
+ readonly 'processed_at': string;
39
+ readonly 'number_lines_successful': number;
40
+ readonly 'number_lines_with_errors': number;
41
+ readonly 'errors_url'?: string;
42
+ }
43
+
44
+ interface LabelInvoiceResponseForm {
45
+ readonly 'id': string;
46
+ readonly 'label_invoice_request_id': string;
47
+ readonly 'units': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelResponseUnits;
48
+ readonly 'base': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelBase;
49
+ readonly 'surcharges': io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeForm;
50
+ readonly 'total': number;
51
+ }
52
+
27
53
  interface LabelMetadata {
28
54
  readonly 'ratecard': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataRatecard;
29
55
  readonly 'weights': io.flow.billing.RESERVED_WORD_true.up.v0.models.MetadataWeights;
30
56
  }
31
57
 
58
+ interface LabelResponseUnits {
59
+ readonly 'currency': string;
60
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
61
+ readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
62
+ }
63
+
32
64
  interface LabelSurcharge {
33
65
  readonly 'amount': number;
34
66
  readonly 'type': io.flow.billing.RESERVED_WORD_true.up.v0.enums.TrueUpSurchargeType;
@@ -50,6 +82,22 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
50
82
  readonly 'percentage': number;
51
83
  }
52
84
 
85
+ interface LabelSurchargeForm {
86
+ readonly 'fuel'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
87
+ readonly 'remote_area'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
88
+ readonly 'oversize'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
89
+ readonly 'duties_paid'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
90
+ readonly 'emergency'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
91
+ readonly 'peak'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
92
+ readonly 'address_correction'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.LabelSurchargeSingleForm;
93
+ }
94
+
95
+ interface LabelSurchargeSingleForm {
96
+ readonly 'amount': number;
97
+ readonly 'percentage'?: number;
98
+ readonly 'fee_per_weight_unit'?: number;
99
+ }
100
+
53
101
  interface LabelUnits {
54
102
  readonly 'currency': string;
55
103
  readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
@@ -67,7 +115,6 @@ declare namespace io.flow.billing.RESERVED_WORD_true.up.v0.models {
67
115
  }
68
116
 
69
117
  interface MetadataWeights {
70
- readonly 'selected': io.flow.billing.RESERVED_WORD_true.up.v0.enums.WeightSelection;
71
118
  readonly 'dead'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDead;
72
119
  readonly 'dimensional'?: io.flow.billing.RESERVED_WORD_true.up.v0.models.WeightsDimensional;
73
120
  }
@@ -4,7 +4,9 @@ declare namespace io.flow.billing.v0.enums {
4
4
  type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
5
5
  type StatementAttachmentType = 'csv';
6
6
  type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
7
- type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
7
+ type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
8
+ type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
9
+ type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
8
10
  type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
9
11
  }
10
12
 
@@ -249,10 +251,41 @@ declare namespace io.flow.billing.v0.models {
249
251
  readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
250
252
  }
251
253
 
254
+ interface TransactionMetadataTrueup {
255
+ readonly 'discriminator': 'trueup';
256
+ readonly 'estimate': io.flow.billing.v0.models.TransactionMetadataTrueupData;
257
+ readonly 'actual': io.flow.billing.v0.models.TransactionMetadataTrueupData;
258
+ }
259
+
260
+ interface TransactionMetadataTrueupData {
261
+ readonly 'source': io.flow.billing.v0.enums.TrueupSource;
262
+ readonly 'units': io.flow.billing.v0.models.TrueupLabelUnits;
263
+ readonly 'base': io.flow.billing.v0.models.TrueupLabelBase;
264
+ readonly 'surcharges': io.flow.billing.v0.models.TrueupLabelSurcharge[];
265
+ readonly 'total': number;
266
+ }
267
+
252
268
  interface TransactionReference {
253
269
  readonly 'id': string;
254
270
  }
255
271
 
272
+ interface TrueupLabelBase {
273
+ readonly 'amount': number;
274
+ readonly 'weight': number;
275
+ }
276
+
277
+ interface TrueupLabelSurcharge {
278
+ readonly 'amount': number;
279
+ readonly 'type': io.flow.billing.v0.enums.TrueupSurchargeType;
280
+ readonly 'percentage'?: number;
281
+ readonly 'per_weight_unit'?: number;
282
+ }
283
+
284
+ interface TrueupLabelUnits {
285
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
286
+ readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
287
+ }
288
+
256
289
  interface WithholdingDeduction {
257
290
  readonly 'type': io.flow.billing.v0.enums.WithholdingDeductionType;
258
291
  readonly 'amount': number;
@@ -264,5 +297,5 @@ declare namespace io.flow.billing.v0.unions {
264
297
  type BankAccountForm = (io.flow.billing.v0.models.BankAccountFormInfo | io.flow.billing.v0.models.BankAccountFormSimple);
265
298
  type PayoutStatus = (io.flow.billing.v0.models.PayoutStatusScheduled | io.flow.billing.v0.models.PayoutStatusSent | io.flow.billing.v0.models.PayoutStatusFailed);
266
299
  type Settlement = (io.flow.billing.v0.models.SettlementNoPayout | io.flow.billing.v0.models.SettlementPayout);
267
- type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel);
300
+ type TransactionMetadata = (io.flow.billing.v0.models.TransactionMetadataShippingLabel | io.flow.billing.v0.models.TransactionMetadataTrueup);
268
301
  }
@@ -9,7 +9,7 @@ declare namespace io.flow.experience.v0.enums {
9
9
  type ExperiencePaymentMethodTag = 'display';
10
10
  type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
11
11
  type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
12
- type OrderPaymentType = 'card' | 'online' | 'credit' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
12
+ type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
13
13
  type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
14
14
  type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
15
15
  type OrderStatus = 'open' | 'submitted';
@@ -9,11 +9,11 @@ declare namespace io.flow.internal.v0.enums {
9
9
  type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-0522d426a5b741c791ba05496c35297a';
10
10
  type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
11
11
  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';
12
- type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_total' | 'channel_transactions_capture_count' | 'channel_transactions_capture_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_transactions_other_count' | 'channel_transactions_other_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_capture_deletion_unprocessed_count' | 'queued_channel_transaction_unprocessed_count' | 'queued_channel_organization_unprocessed_count' | 'queued_consumer_invoice_unprocessed_count' | 'queued_fulfillment_external_unprocessed_count' | 'queued_fulfillment_in_transit_unprocessed_count' | 'queued_fulfillment_shipping_notification_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_label_tracking_summary_unprocessed_count' | 'queued_label_origin_unprocessed_count' | 'queued_order_unprocessed_count' | 'queued_order_identifier_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_refund_deletion_unprocessed_count' | 'queued_refund_over_capture_unprocessed_count' | 'queued_sales_record_unprocessed_count' | 'queued_statement_batch_unprocessed_count' | 'queued_statement_email_unprocessed_count' | 'queued_statement_summary_email_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'pending_payouts_max_age' | 'average_payout_amount' | 'orders_with_payments_count' | 'orders_without_payments_count' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
12
+ type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_transactions_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_record_snooze_count' | 'queued_record_snooze_ending_in_48_hours_count' | 'statements_no_payout_count' | 'statements_no_payout_total' | 'statements_pending_payout_count' | 'statements_pending_payout_total' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count';
13
13
  type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'all';
14
14
  type BillingStatementBatchFileKey = 'summary';
15
15
  type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
16
- 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';
16
+ 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';
17
17
  type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
18
18
  type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
19
19
  type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
@@ -23,7 +23,7 @@ declare namespace io.flow.internal.v0.enums {
23
23
  type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
24
24
  type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
25
25
  type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
26
- type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tlc_team';
26
+ type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
27
27
  type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies';
28
28
  type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
29
29
  type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
@@ -131,7 +131,7 @@ declare namespace io.flow.internal.v0.enums {
131
131
  type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
132
132
  type EmptyAttribute = 'irrelevant';
133
133
  type ErpFileType = 'vendor';
134
- type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
134
+ type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
135
135
  type ExperienceImportType = 'experience_with_settings';
136
136
  type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
137
137
  type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
@@ -164,7 +164,6 @@ declare namespace io.flow.internal.v0.enums {
164
164
  type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
165
165
  type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
166
166
  type LabelGenerationAddressFailureStatus = 'in_review' | 'resolved' | 'unresolved';
167
- type LabelInputSource = 'estimate';
168
167
  type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_system';
169
168
  type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
170
169
  type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
@@ -220,7 +219,7 @@ declare namespace io.flow.internal.v0.enums {
220
219
  type PromptCheckoutDisplayPosition = 'email' | 'submission';
221
220
  type PromptOptions = 'notice_only' | 'require_consent' | 'consent_by_default';
222
221
  type PromptTarget = 'browse' | 'checkout';
223
- type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'channel_organization' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'label_tracking_summary' | 'label_invoice_request' | 'label_origin' | 'order' | 'order_identifier' | 'refund' | 'refund_deletion' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email' | 'wash';
222
+ type QueuedRecordType = 'capture' | 'capture_deletion' | 'channel_transaction' | 'consumer_invoice' | 'fulfillment_in_transit' | 'fulfillment_shipping_notification' | 'fulfillment_external' | 'label_tracking_summary' | 'label_invoice_request' | 'label_invoice_response' | 'label_invoice_response_file' | 'label_origin' | 'order' | 'order_identifier' | 'organization_onboarding_state' | 'refund' | 'refund_deletion' | 'refund_over_capture' | 'sales_record' | 'statement_batch' | 'statement_email' | 'statement_summary_email';
224
223
  type QuoteRequestType = 'generate' | 'delete' | 'update_currency_rate' | 'update_country';
225
224
  type RateLevelKey = 'shopify_small_usa' | 'shopify_medium_usa' | 'shopify_enterprise_usa' | 'shopify_small_sdc_usa';
226
225
  type RateSource = 'calculated' | 'market';
@@ -263,7 +262,6 @@ declare namespace io.flow.internal.v0.enums {
263
262
  type Status = 'draft' | 'scheduled' | 'live' | 'ended' | 'archived';
264
263
  type SubscriptionFrequency = 'yearly' | 'monthly';
265
264
  type SuggestionAction = 'accept' | 'validate' | 'review';
266
- type SurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid';
267
265
  type TariffEligibilityType = 'rex';
268
266
  type TaskProcessorKey = 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'rate_levels' | 'center_defaults';
269
267
  type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
@@ -273,10 +271,9 @@ declare namespace io.flow.internal.v0.enums {
273
271
  type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
274
272
  type TransactionPostingMethod = 'time' | 'proof';
275
273
  type TransferMethod = 'ach';
276
- type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak';
274
+ type TrueUpSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
275
+ type TrueupTransactionType = 'adjustment' | 'reversal' | 'trueup';
277
276
  type UnclassifiedProductStatus = 'ignored' | 'escalated' | 'requeued' | 'unverified' | 'queued' | 'unconfident';
278
- type WashCarrierActualFileStatus = 'pending' | 'processing' | 'processed' | 'failed';
279
- type WeightSelection = 'dead' | 'dimensional';
280
277
  }
281
278
 
282
279
  declare namespace io.flow.internal.v0.models {
@@ -332,15 +329,6 @@ declare namespace io.flow.internal.v0.models {
332
329
  readonly 'rate': number;
333
330
  }
334
331
 
335
- interface AccountForm {
336
- readonly 'timezone': string;
337
- readonly 'payment_schedule': io.flow.common.v0.unions.RepeatSchedule;
338
- readonly 'payment_conditions'?: string;
339
- readonly 'deposit_rule'?: io.flow.internal.v0.models.AccountDepositRuleForm;
340
- readonly 'center_key'?: string;
341
- readonly 'bank_account_id'?: string;
342
- }
343
-
344
332
  interface AccountOrdersExportRequest {
345
333
  readonly 'discriminator': 'account_orders_export_request';
346
334
  readonly 'event_id': string;
@@ -365,6 +353,10 @@ declare namespace io.flow.internal.v0.models {
365
353
  readonly 'transaction_created_before'?: string;
366
354
  }
367
355
 
356
+ interface AccountOrigin {
357
+ readonly 'country': string;
358
+ }
359
+
368
360
  interface AccountProcessingRateForm {
369
361
  readonly 'query': string;
370
362
  readonly 'capture': number;
@@ -1303,6 +1295,7 @@ declare namespace io.flow.internal.v0.models {
1303
1295
  readonly 'channel_billed': io.flow.common.v0.models.Price;
1304
1296
  readonly 'tax': io.flow.common.v0.models.Price;
1305
1297
  readonly 'duty': io.flow.common.v0.models.Price;
1298
+ readonly 'trueup': io.flow.common.v0.models.Price;
1306
1299
  readonly 'ending_balance': io.flow.common.v0.models.Price;
1307
1300
  }
1308
1301
 
@@ -1833,6 +1826,8 @@ declare namespace io.flow.internal.v0.models {
1833
1826
  interface ChannelAccount {
1834
1827
  readonly 'channel': io.flow.common.v0.models.ChannelReference;
1835
1828
  readonly 'id': string;
1829
+ readonly 'key'?: string;
1830
+ readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
1836
1831
  readonly 'currency': string;
1837
1832
  readonly 'updated_at': string;
1838
1833
  readonly 'timezone': io.flow.reference.v0.models.Timezone;
@@ -4556,132 +4551,6 @@ declare namespace io.flow.internal.v0.models {
4556
4551
  readonly 'signature_secret': string;
4557
4552
  }
4558
4553
 
4559
- interface CsvActual {
4560
- readonly 'id': string;
4561
- readonly 'currency': string;
4562
- readonly 'base_amount': number;
4563
- readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
4564
- readonly 'total': number;
4565
- readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
4566
- readonly 'weight': number;
4567
- readonly 'ratecard': io.flow.internal.v0.models.CsvActualRatecard;
4568
- }
4569
-
4570
- interface CsvActualRatecard {
4571
- readonly 'base_amount'?: number;
4572
- }
4573
-
4574
- interface CsvDimensions {
4575
- readonly 'unit': io.flow.units.v0.enums.UnitOfLength;
4576
- readonly 'length': number;
4577
- readonly 'width': number;
4578
- readonly 'depth': number;
4579
- }
4580
-
4581
- interface CsvFlowRatecard {
4582
- readonly 'id': string;
4583
- readonly 'number': string;
4584
- readonly 'owner': io.flow.fulfillment.v0.enums.RatecardOwner;
4585
- readonly 'lane': io.flow.internal.v0.models.LaneReference;
4586
- readonly 'dim_factor': number;
4587
- readonly 'surcharges': io.flow.internal.v0.models.CsvFlowRatecardSurcharges;
4588
- readonly 'base_amount'?: number;
4589
- }
4590
-
4591
- interface CsvFlowRatecardSurcharges {
4592
- readonly 'fuel'?: io.flow.internal.v0.models.CsvServiceFee;
4593
- readonly 'remote_area'?: io.flow.internal.v0.models.CsvServiceFee;
4594
- readonly 'oversize'?: io.flow.internal.v0.models.CsvServiceFee;
4595
- readonly 'duties_paid'?: io.flow.internal.v0.models.CsvServiceFee;
4596
- }
4597
-
4598
- interface CsvGlobalEProposition {
4599
- readonly 'name': string;
4600
- }
4601
-
4602
- interface CsvGlobalEShippingMethod {
4603
- readonly 'id': string;
4604
- readonly 'proposition': io.flow.internal.v0.models.CsvGlobalEProposition;
4605
- }
4606
-
4607
- interface CsvInput {
4608
- readonly 'id': string;
4609
- readonly 'source': io.flow.internal.v0.enums.LabelInputSource;
4610
- readonly 'currency': string;
4611
- readonly 'base_amount': number;
4612
- readonly 'surcharges': io.flow.internal.v0.models.CsvSurcharges;
4613
- readonly 'total': number;
4614
- readonly 'weight_unit': io.flow.units.v0.enums.UnitOfWeight;
4615
- readonly 'weight': number;
4616
- readonly 'variance': number;
4617
- }
4618
-
4619
- interface CsvLabel {
4620
- readonly 'id': string;
4621
- readonly 'cost': io.flow.internal.v0.models.CsvLabelCost;
4622
- readonly 'created_at': string;
4623
- readonly 'request_method'?: io.flow.label.v0.enums.LabelRequestMethod;
4624
- readonly 'trigger_method'?: io.flow.label.v0.enums.LabelTriggerMethod;
4625
- }
4626
-
4627
- interface CsvLabelCost {
4628
- readonly 'amount': number;
4629
- readonly 'currency': string;
4630
- readonly 'source': io.flow.label.v0.enums.CostEstimateSource;
4631
- }
4632
-
4633
- interface CsvOrder {
4634
- readonly 'organization': io.flow.internal.v0.models.OrganizationReference;
4635
- readonly 'number': string;
4636
- readonly 'destination': io.flow.experience.v0.models.OrderAddress;
4637
- readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
4638
- readonly 'tax': io.flow.common.v0.models.Money;
4639
- readonly 'duty': io.flow.common.v0.models.Money;
4640
- readonly 'total': io.flow.common.v0.models.Money;
4641
- readonly 'number_items': number;
4642
- }
4643
-
4644
- interface CsvRecord {
4645
- readonly 'label': io.flow.internal.v0.models.CsvLabel;
4646
- readonly 'carrier_service_id': string;
4647
- readonly 'carrier_tracking_number': string;
4648
- readonly 'order': io.flow.internal.v0.models.CsvOrder;
4649
- readonly 'flow_ratecard': io.flow.internal.v0.models.CsvFlowRatecard;
4650
- readonly 'global_e_shipping_method'?: io.flow.internal.v0.models.CsvGlobalEShippingMethod;
4651
- readonly 'weight': io.flow.internal.v0.models.CsvWeight;
4652
- readonly 'dimensions': io.flow.internal.v0.models.CsvDimensions;
4653
- readonly 'input'?: io.flow.internal.v0.models.CsvInput;
4654
- readonly 'actual'?: io.flow.internal.v0.models.CsvActual;
4655
- readonly 'variance'?: number;
4656
- readonly 'deltas': string[];
4657
- readonly 'outliers': string[];
4658
- }
4659
-
4660
- interface CsvServiceFee {
4661
- readonly 'amount'?: number;
4662
- readonly 'currency'?: string;
4663
- readonly 'percentage'?: number;
4664
- }
4665
-
4666
- interface CsvSurchargePercentage {
4667
- readonly 'percentage': number;
4668
- readonly 'amount': number;
4669
- }
4670
-
4671
- interface CsvSurcharges {
4672
- readonly 'fuel': io.flow.internal.v0.models.CsvSurchargePercentage;
4673
- readonly 'remote_area': number;
4674
- readonly 'oversize': number;
4675
- readonly 'duties_paid': number;
4676
- }
4677
-
4678
- interface CsvWeight {
4679
- readonly 'unit': io.flow.units.v0.enums.UnitOfWeight;
4680
- readonly 'provided': number;
4681
- readonly 'dimensional': number;
4682
- readonly 'lookup': number;
4683
- }
4684
-
4685
4554
  interface CurrencyInternalRate {
4686
4555
  readonly 'id': string;
4687
4556
  readonly 'organization_id': string;
@@ -4899,6 +4768,8 @@ declare namespace io.flow.internal.v0.models {
4899
4768
  readonly 'authorization_id'?: string;
4900
4769
  readonly 'posting_proof_id'?: string;
4901
4770
  readonly 'label_tracking_summary_id'?: string;
4771
+ readonly 'shipping_notification_id'?: string;
4772
+ readonly 'external_fulfillment_proof_id'?: string;
4902
4773
  }
4903
4774
 
4904
4775
  interface DebugOrderTransactionFormOrderIdentifier {
@@ -6220,6 +6091,8 @@ declare namespace io.flow.internal.v0.models {
6220
6091
  interface FlowAccount {
6221
6092
  readonly 'source': io.flow.internal.v0.models.AccountSource;
6222
6093
  readonly 'id': string;
6094
+ readonly 'key'?: string;
6095
+ readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
6223
6096
  readonly 'currency': string;
6224
6097
  readonly 'updated_at': string;
6225
6098
  readonly 'timezone': io.flow.reference.v0.models.Timezone;
@@ -6495,6 +6368,8 @@ declare namespace io.flow.internal.v0.models {
6495
6368
  readonly 'shipping': io.flow.internal.v0.models.FulfillmentShipping;
6496
6369
  readonly 'shopper': io.flow.internal.v0.models.ShopperSummary;
6497
6370
  readonly 'merchant': io.flow.internal.v0.models.MerchantSummary;
6371
+ readonly 'proof': io.flow.internal.v0.unions.FulfillmentProof;
6372
+ readonly 'responsible_party': io.flow.internal.v0.enums.ResponsibleParty;
6498
6373
  readonly 'completes_order': boolean;
6499
6374
  readonly 'sequence_number': number;
6500
6375
  readonly 'business'?: io.flow.internal.v0.models.FulfillmentBusiness;
@@ -8185,6 +8060,33 @@ declare namespace io.flow.internal.v0.models {
8185
8060
  readonly 'label_invoice_request': io.flow.internal.v0.models.LabelInvoiceRequest;
8186
8061
  }
8187
8062
 
8063
+ interface LabelInvoiceResponseFile {
8064
+ readonly 'id': string;
8065
+ readonly 'url': string;
8066
+ readonly 'created_at': string;
8067
+ readonly 'result'?: io.flow.internal.v0.models.LabelInvoiceResponseFileResult;
8068
+ }
8069
+
8070
+ interface LabelInvoiceResponseFileForm {
8071
+ readonly 'url': string;
8072
+ }
8073
+
8074
+ interface LabelInvoiceResponseFileResult {
8075
+ readonly 'processed_at': string;
8076
+ readonly 'number_lines_successful': number;
8077
+ readonly 'number_lines_with_errors': number;
8078
+ readonly 'errors_url'?: string;
8079
+ }
8080
+
8081
+ interface LabelInvoiceResponseForm {
8082
+ readonly 'id': string;
8083
+ readonly 'label_invoice_request_id': string;
8084
+ readonly 'units': io.flow.internal.v0.models.LabelResponseUnits;
8085
+ readonly 'base': io.flow.internal.v0.models.LabelBase;
8086
+ readonly 'surcharges': io.flow.internal.v0.models.LabelSurchargeForm;
8087
+ readonly 'total': number;
8088
+ }
8089
+
8188
8090
  interface LabelMetadata {
8189
8091
  readonly 'ratecard': io.flow.internal.v0.models.MetadataRatecard;
8190
8092
  readonly 'weights': io.flow.internal.v0.models.MetadataWeights;
@@ -8220,6 +8122,12 @@ declare namespace io.flow.internal.v0.models {
8220
8122
  readonly 'label_request_error': io.flow.internal.v0.models.LabelRequestError;
8221
8123
  }
8222
8124
 
8125
+ interface LabelResponseUnits {
8126
+ readonly 'currency': string;
8127
+ readonly 'weight': io.flow.units.v0.enums.UnitOfWeight;
8128
+ readonly 'length'?: io.flow.units.v0.enums.UnitOfLength;
8129
+ }
8130
+
8223
8131
  interface LabelSummary {
8224
8132
  readonly 'id': string;
8225
8133
  readonly 'commercial_invoice'?: string;
@@ -8255,6 +8163,22 @@ declare namespace io.flow.internal.v0.models {
8255
8163
  readonly 'percentage': number;
8256
8164
  }
8257
8165
 
8166
+ interface LabelSurchargeForm {
8167
+ readonly 'fuel'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
8168
+ readonly 'remote_area'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
8169
+ readonly 'oversize'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
8170
+ readonly 'duties_paid'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
8171
+ readonly 'emergency'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
8172
+ readonly 'peak'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
8173
+ readonly 'address_correction'?: io.flow.internal.v0.models.LabelSurchargeSingleForm;
8174
+ }
8175
+
8176
+ interface LabelSurchargeSingleForm {
8177
+ readonly 'amount': number;
8178
+ readonly 'percentage'?: number;
8179
+ readonly 'fee_per_weight_unit'?: number;
8180
+ }
8181
+
8258
8182
  interface LabelTaxonomy {
8259
8183
  readonly 'discriminator': 'item';
8260
8184
  readonly 'item_type': string;
@@ -8343,10 +8267,6 @@ declare namespace io.flow.internal.v0.models {
8343
8267
  readonly 'region': string;
8344
8268
  }
8345
8269
 
8346
- interface LaneReference {
8347
- readonly 'id': string;
8348
- }
8349
-
8350
8270
  interface LevyRateSummary {
8351
8271
  readonly 'id': string;
8352
8272
  readonly 'number': string;
@@ -9081,7 +9001,6 @@ declare namespace io.flow.internal.v0.models {
9081
9001
 
9082
9002
  interface MerchantSubsidies {
9083
9003
  readonly 'fees': io.flow.internal.v0.models.ShopperFees;
9084
- readonly 'shipping': number;
9085
9004
  readonly 'tax': number;
9086
9005
  readonly 'duty': number;
9087
9006
  readonly 'total': number;
@@ -9105,7 +9024,6 @@ declare namespace io.flow.internal.v0.models {
9105
9024
  }
9106
9025
 
9107
9026
  interface MetadataWeights {
9108
- readonly 'selected': io.flow.internal.v0.enums.WeightSelection;
9109
9027
  readonly 'dead'?: io.flow.internal.v0.models.WeightsDead;
9110
9028
  readonly 'dimensional'?: io.flow.internal.v0.models.WeightsDimensional;
9111
9029
  }
@@ -9166,6 +9084,7 @@ declare namespace io.flow.internal.v0.models {
9166
9084
 
9167
9085
  interface OnboardingOrganization {
9168
9086
  readonly 'age': number;
9087
+ readonly 'setup_time': number;
9169
9088
  readonly 'compliance_approved': boolean;
9170
9089
  readonly 'compliance_full_review_required': boolean;
9171
9090
  readonly 'application_received': string;
@@ -9322,6 +9241,38 @@ declare namespace io.flow.internal.v0.models {
9322
9241
  readonly 'evidence': io.flow.internal.v0.unions.OrderCancellationEvidence;
9323
9242
  }
9324
9243
 
9244
+ interface OrderCombinedShipment {
9245
+ readonly 'id': string;
9246
+ readonly 'label_id': string;
9247
+ readonly 'carrier_id': string;
9248
+ readonly 'service_id': string;
9249
+ readonly 'order_number': string;
9250
+ readonly 'provided_carrier_name'?: string;
9251
+ readonly 'carrier_tracking_number': string;
9252
+ }
9253
+
9254
+ interface OrderCombinedShipmentDeleted {
9255
+ readonly 'discriminator': 'order_combined_shipment_deleted';
9256
+ readonly 'event_id': string;
9257
+ readonly 'timestamp': string;
9258
+ readonly 'organization': string;
9259
+ readonly 'id': string;
9260
+ }
9261
+
9262
+ interface OrderCombinedShipmentForm {
9263
+ readonly 'order_number': string;
9264
+ readonly 'provided_carrier_name'?: string;
9265
+ readonly 'carrier_tracking_number': string;
9266
+ }
9267
+
9268
+ interface OrderCombinedShipmentUpserted {
9269
+ readonly 'discriminator': 'order_combined_shipment_upserted';
9270
+ readonly 'event_id': string;
9271
+ readonly 'timestamp': string;
9272
+ readonly 'organization': string;
9273
+ readonly 'order_combined_shipment': io.flow.internal.v0.models.OrderCombinedShipment;
9274
+ }
9275
+
9325
9276
  interface OrderDetail {
9326
9277
  readonly 'order': io.flow.experience.v0.models.Order;
9327
9278
  readonly 'status': io.flow.experience.v0.enums.OrderStatus;
@@ -9492,6 +9443,8 @@ declare namespace io.flow.internal.v0.models {
9492
9443
  interface OrganizationAccount {
9493
9444
  readonly 'organization': io.flow.common.v0.models.OrganizationReference;
9494
9445
  readonly 'id': string;
9446
+ readonly 'key'?: string;
9447
+ readonly 'origin'?: io.flow.internal.v0.models.AccountOrigin;
9495
9448
  readonly 'currency': string;
9496
9449
  readonly 'updated_at': string;
9497
9450
  readonly 'timezone': io.flow.reference.v0.models.Timezone;
@@ -9727,10 +9680,6 @@ declare namespace io.flow.internal.v0.models {
9727
9680
  readonly 'organization_payment_setting': io.flow.internal.v0.models.OrganizationPaymentSetting;
9728
9681
  }
9729
9682
 
9730
- interface OrganizationReference {
9731
- readonly 'id': string;
9732
- }
9733
-
9734
9683
  interface OrganizationRestrictionNoteForm {
9735
9684
  readonly 'note': string;
9736
9685
  readonly 'note_type': io.flow.internal.v0.enums.OrganizationRestrictionNoteType;
@@ -11125,11 +11074,14 @@ declare namespace io.flow.internal.v0.models {
11125
11074
  readonly 'hs_code'?: string;
11126
11075
  readonly 'merchant_category_code'?: string;
11127
11076
  readonly 'notes': io.flow.internal.v0.models.OrganizationRestrictionStatusNote[];
11077
+ readonly 'last_year_xborder_gmv'?: io.flow.common.v0.models.Money;
11078
+ readonly 'last_year_domestic_gmv'?: io.flow.common.v0.models.Money;
11128
11079
  }
11129
11080
 
11130
11081
  interface RestrictionOrganizationDecisionSummary {
11131
11082
  readonly 'organization': io.flow.internal.v0.models.RestrictionOrganization;
11132
11083
  readonly 'earliest_pending_date': string;
11084
+ readonly 'priority_score': number;
11133
11085
  readonly 'date': string;
11134
11086
  readonly 'statuses': io.flow.internal.v0.models.RestrictionStatusMetadata[];
11135
11087
  readonly 'rules': io.flow.internal.v0.models.RestrictionRuleMetadata[];
@@ -11750,6 +11702,7 @@ declare namespace io.flow.internal.v0.models {
11750
11702
  readonly 'shopify_tracking_number': io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
11751
11703
  readonly 'shopify_carrier_service'?: io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
11752
11704
  readonly 'fulfillment_created_at'?: string;
11705
+ readonly 'flow_label_id'?: string;
11753
11706
  }
11754
11707
 
11755
11708
  interface ShopifyMonitoringFulfillmentMissingDetails {
@@ -12035,6 +11988,8 @@ declare namespace io.flow.internal.v0.models {
12035
11988
  readonly 'remote_area': number;
12036
11989
  readonly 'oversize': number;
12037
11990
  readonly 'ccf': number;
11991
+ readonly 'emergency': number;
11992
+ readonly 'peak': number;
12038
11993
  readonly 'total': number;
12039
11994
  }
12040
11995
 
@@ -12458,12 +12413,6 @@ declare namespace io.flow.internal.v0.models {
12458
12413
  readonly 'values': io.flow.internal.v0.models.LabelAliases[];
12459
12414
  }
12460
12415
 
12461
- interface Surcharge {
12462
- readonly 'amount'?: number;
12463
- readonly 'percentage'?: number;
12464
- readonly 'type': io.flow.internal.v0.enums.SurchargeType;
12465
- }
12466
-
12467
12416
  interface SvbVirtualCardClearing {
12468
12417
  readonly 'id': string;
12469
12418
  readonly 'virtual_card_id': string;
@@ -12927,6 +12876,19 @@ declare namespace io.flow.internal.v0.models {
12927
12876
  readonly 'created_at': string;
12928
12877
  }
12929
12878
 
12879
+ interface TrueupTransaction {
12880
+ readonly 'discriminator': 'trueup_transaction';
12881
+ readonly 'label_transaction': io.flow.internal.v0.models.TransactionReference;
12882
+ readonly 'id': string;
12883
+ readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
12884
+ readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
12885
+ readonly 'posted_at'?: string;
12886
+ readonly 'value': io.flow.common.v0.models.Price;
12887
+ readonly 'description': string;
12888
+ readonly 'statement'?: io.flow.internal.v0.models.BillingStatementReference;
12889
+ readonly 'created_at': string;
12890
+ }
12891
+
12930
12892
  interface UnassignedMerchantGuid {
12931
12893
  readonly 'id': string;
12932
12894
  readonly 'merchant_guid': string;
@@ -13168,20 +13130,6 @@ declare namespace io.flow.internal.v0.models {
13168
13130
  readonly 'created_at': string;
13169
13131
  }
13170
13132
 
13171
- interface WashCarrierActualFile {
13172
- readonly 'id': string;
13173
- readonly 'url': string;
13174
- readonly 'status': io.flow.internal.v0.enums.WashCarrierActualFileStatus;
13175
- }
13176
-
13177
- interface WashCarrierActualFileForm {
13178
- readonly 'url': string;
13179
- }
13180
-
13181
- interface WashExportRequest {
13182
- readonly 'url': string;
13183
- }
13184
-
13185
13133
  interface WasteElectricalAndElectronicEquipmentComplianceData {
13186
13134
  readonly 'discriminator': 'weee';
13187
13135
  readonly 'label': string;
@@ -13318,7 +13266,7 @@ declare namespace io.flow.internal.v0.unions {
13318
13266
  type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
13319
13267
  type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
13320
13268
  type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
13321
- type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
13269
+ type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
13322
13270
  type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
13323
13271
  type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
13324
13272
  type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
@@ -13373,7 +13321,7 @@ declare namespace io.flow.internal.v0.unions {
13373
13321
  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);
13374
13322
  type TaxAmount = (io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount);
13375
13323
  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);
13376
- 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);
13324
+ 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);
13377
13325
  type TransactionSummary = (io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary);
13378
13326
  type ValidationRule = (io.flow.internal.v0.models.ValidationCharacterLength);
13379
13327
  type Variant = (io.flow.internal.v0.models.ExperienceVariant | io.flow.internal.v0.models.FeatureVariant);
@@ -46,6 +46,7 @@ declare namespace io.flow.organization.onboarding.state.v0.models {
46
46
  readonly 'current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
47
47
  readonly 'started_at'?: string;
48
48
  readonly 'time_blocked'?: number;
49
+ readonly 'time_in_setup'?: number;
49
50
  readonly 'blocked_since'?: string;
50
51
  readonly 'completed_at'?: string;
51
52
  readonly 'onboarding_started_at'?: string;
@@ -4,7 +4,7 @@ declare namespace io.flow.payment.gateway.v0.enums {
4
4
  type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
5
5
  type PaymentMethodDataOptionType = 'ideal_issuer_option';
6
6
  type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
7
- type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic';
7
+ type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies';
8
8
  type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
9
9
  type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
10
10
  type PaymentType = 'card' | 'klarna' | 'googlepay' | 'paypal' | 'applepay' | 'ideal' | 'sofort' | 'afterpay' | 'bancontact';
@@ -618,4 +618,4 @@ declare namespace io.flow.payment.gateway.v0.unions {
618
618
  type PaymentMethodStoredDetailsCard = (io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardInitial | io.flow.payment.gateway.v0.models.PaymentMethodStoredDetailsCardSubsequent);
619
619
  type PaymentMethodSummary = (io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact);
620
620
  type SdkAdyenV3AuthenticationToken = (io.flow.payment.gateway.v0.models.AdyenV3FingerprintToken | io.flow.payment.gateway.v0.models.AdyenV3ChallengeToken);
621
- }
621
+ }
@@ -487,7 +487,7 @@ declare namespace io.flow.shopify.markets.v0.models {
487
487
  readonly 'key': string;
488
488
  readonly 'namespace': string;
489
489
  readonly 'value': string;
490
- readonly 'value_type': io.flow.shopify.markets.v0.enums.ShopifyOrderValueType;
490
+ readonly 'type': io.flow.shopify.markets.v0.enums.ShopifyOrderValueType;
491
491
  readonly 'description'?: string;
492
492
  }
493
493
 
@@ -651,6 +651,7 @@ declare namespace io.flow.shopify.markets.v0.models {
651
651
  readonly 'id': number;
652
652
  readonly 'shipping_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
653
653
  readonly 'note_attributes'?: io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
654
+ readonly 'metafields'?: io.flow.shopify.markets.v0.models.ShopifyOrderMetafieldForm[];
654
655
  }
655
656
 
656
657
  interface ShopifyWebhookCustomersDataRequest {
@@ -26,6 +26,7 @@ declare namespace io.flow.shopify.merchant.config.v0.models {
26
26
  readonly 'discriminator': 'know_your_business_usa';
27
27
  readonly 'id': string;
28
28
  readonly 'organization_id': string;
29
+ readonly 'shop'?: io.flow.merchant.onboarding.v0.models.Shop;
29
30
  readonly 'primary_entity': io.flow.shopify.merchant.config.v0.unions.Entity;
30
31
  readonly 'parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
31
32
  readonly 'ultimate_parent_company'?: io.flow.shopify.merchant.config.v0.models.Company;
@@ -148,6 +148,7 @@ declare namespace io.flow.stripe.v0.models {
148
148
  readonly 'id': string;
149
149
  readonly 'amount': number;
150
150
  readonly 'amount_refunded': number;
151
+ readonly 'authorization_code'?: string;
151
152
  readonly 'captured': boolean;
152
153
  readonly 'created': number;
153
154
  readonly 'currency': string;
@@ -198,6 +199,7 @@ declare namespace io.flow.stripe.v0.models {
198
199
  readonly 'id': string;
199
200
  readonly 'amount': number;
200
201
  readonly 'amount_refunded': number;
202
+ readonly 'authorization_code'?: string;
201
203
  readonly 'captured': boolean;
202
204
  readonly 'created': number;
203
205
  readonly 'currency': string;
@@ -769,9 +771,11 @@ declare namespace io.flow.stripe.v0.models {
769
771
  }
770
772
 
771
773
  interface ThreeDSecureCharge {
774
+ readonly 'authenticated'?: boolean;
772
775
  readonly 'authentication_flow'?: io.flow.stripe.v0.enums.ThreeDsAuthenticationFlow;
773
776
  readonly 'result'?: io.flow.stripe.v0.enums.ThreeDsResult;
774
777
  readonly 'result_reason'?: io.flow.stripe.v0.enums.ThreeDsResultReason;
778
+ readonly 'succeeded'?: boolean;
775
779
  readonly 'version'?: string;
776
780
  }
777
781
 
@@ -110,7 +110,7 @@ declare namespace io.flow.v0.enums {
110
110
  type OrderChangeSource = 'consumer' | 'retailer' | 'fulfillment' | 'flow' | 'carrier';
111
111
  type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
112
112
  type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
113
- type OrderPaymentType = 'card' | 'online' | 'credit' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
113
+ type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
114
114
  type OrderPriceDetailComponentKey = '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' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge';
115
115
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges';
116
116
  type OrderQuoteAddressType = 'shipping';
@@ -133,7 +133,7 @@ declare namespace io.flow.v0.enums {
133
133
  type PaymentMethodRuleContentKey = 'description';
134
134
  type PaymentMethodType = 'card' | 'online' | 'offline';
135
135
  type PaymentRequestReviewCheckStatus = 'passed' | 'failed';
136
- type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic';
136
+ type PaymentRequestReviewCheckType = 'restricted_party_screening' | 'fraud_suspicious_behavior' | 'fraud_suspicious_past_activity' | 'fraud_risky_velocity' | 'fraud_previous_chargebacks' | 'order_restricted_goods' | 'order_unsupported_destination' | 'order_missing_information' | 'order_domestic' | 'order_mismatched_currencies';
137
137
  type PaymentRequestReviewStatus = 'pending' | 'approved' | 'rejected';
138
138
  type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
139
139
  type PaymentStatus = 'requires_payment_method' | 'requires_action' | 'processing' | 'cancelled' | 'expired' | 'authorized' | 'reversed' | 'captured' | 'refunded' | 'in_dispute' | 'charged_back';
@@ -199,7 +199,9 @@ declare namespace io.flow.v0.enums {
199
199
  type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
200
200
  type TradeAgreementStatus = 'supported' | 'not_supported';
201
201
  type TransactionPayoutPendingReason = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'external_fulfillment_missing_tracking_info' | 'waiting_for_positive_account_balance';
202
- type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
202
+ type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'trueup' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
203
+ type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl';
204
+ type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction';
203
205
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
204
206
  type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
205
207
  type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
@@ -4512,6 +4514,7 @@ declare namespace io.flow.v0.models {
4512
4514
  readonly 'discriminator': 'know_your_business_usa';
4513
4515
  readonly 'id': string;
4514
4516
  readonly 'organization_id': string;
4517
+ readonly 'shop'?: io.flow.v0.models.Shop;
4515
4518
  readonly 'primary_entity': io.flow.v0.unions.Entity;
4516
4519
  readonly 'parent_company'?: io.flow.v0.models.Company;
4517
4520
  readonly 'ultimate_parent_company'?: io.flow.v0.models.Company;
@@ -6123,6 +6126,7 @@ declare namespace io.flow.v0.models {
6123
6126
  readonly 'current_state': io.flow.v0.unions.OnboardingState;
6124
6127
  readonly 'started_at'?: string;
6125
6128
  readonly 'time_blocked'?: number;
6129
+ readonly 'time_in_setup'?: number;
6126
6130
  readonly 'blocked_since'?: string;
6127
6131
  readonly 'completed_at'?: string;
6128
6132
  readonly 'onboarding_started_at'?: string;
@@ -9940,6 +9944,20 @@ declare namespace io.flow.v0.models {
9940
9944
  readonly 'request_method'?: io.flow.v0.enums.LabelRequestMethod;
9941
9945
  }
9942
9946
 
9947
+ interface TransactionMetadataTrueup {
9948
+ readonly 'discriminator': 'trueup';
9949
+ readonly 'estimate': io.flow.v0.models.TransactionMetadataTrueupData;
9950
+ readonly 'actual': io.flow.v0.models.TransactionMetadataTrueupData;
9951
+ }
9952
+
9953
+ interface TransactionMetadataTrueupData {
9954
+ readonly 'source': io.flow.v0.enums.TrueupSource;
9955
+ readonly 'units': io.flow.v0.models.TrueupLabelUnits;
9956
+ readonly 'base': io.flow.v0.models.TrueupLabelBase;
9957
+ readonly 'surcharges': io.flow.v0.models.TrueupLabelSurcharge[];
9958
+ readonly 'total': number;
9959
+ }
9960
+
9943
9961
  interface TransactionNetworkDetailsCard {
9944
9962
  readonly 'network_transaction_id'?: string;
9945
9963
  readonly 'network'?: io.flow.v0.enums.CardType;
@@ -9972,6 +9990,23 @@ declare namespace io.flow.v0.models {
9972
9990
  readonly 'to': number;
9973
9991
  }
9974
9992
 
9993
+ interface TrueupLabelBase {
9994
+ readonly 'amount': number;
9995
+ readonly 'weight': number;
9996
+ }
9997
+
9998
+ interface TrueupLabelSurcharge {
9999
+ readonly 'amount': number;
10000
+ readonly 'type': io.flow.v0.enums.TrueupSurchargeType;
10001
+ readonly 'percentage'?: number;
10002
+ readonly 'per_weight_unit'?: number;
10003
+ }
10004
+
10005
+ interface TrueupLabelUnits {
10006
+ readonly 'weight': io.flow.v0.enums.UnitOfWeight;
10007
+ readonly 'length'?: io.flow.v0.enums.UnitOfLength;
10008
+ }
10009
+
9975
10010
  interface UltimateBeneficiaryOwner {
9976
10011
  readonly 'name': string;
9977
10012
  readonly 'dob': string;
@@ -10310,5 +10345,5 @@ declare namespace io.flow.v0.unions {
10310
10345
  type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
10311
10346
  type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
10312
10347
  type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
10313
- type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel);
10348
+ type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataTrueup);
10314
10349
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-types",
3
- "version": "0.0.199",
3
+ "version": "0.0.201",
4
4
  "description": "Global TypeScript typings for Flow Commerce API",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,5 +14,5 @@
14
14
  "scripts": {
15
15
  "generate": "apibuilder update && node scripts/generate-index.js"
16
16
  },
17
- "gitHead": "2ec4e55423f8c68d0d75db7df7825e96a4433e9b"
17
+ "gitHead": "1c87d63f654d1b7f4aa3ef5237a2cf0558fda3d5"
18
18
  }