@flowio/api-internal-prop-types 9.24.103 → 9.24.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +237 -35
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +237 -35
- package/src/api-internal.js +328 -79
package/lib/api-internal.d.ts
CHANGED
|
@@ -2423,6 +2423,11 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2423
2423
|
readonly 'eci'?: string;
|
|
2424
2424
|
readonly 'liability_sift'?: boolean;
|
|
2425
2425
|
readonly 'version'?: string;
|
|
2426
|
+
readonly 'authenticated'?: boolean;
|
|
2427
|
+
readonly 'authenticated_result'?: string;
|
|
2428
|
+
readonly 'offered'?: boolean;
|
|
2429
|
+
readonly 'offered_result'?: string;
|
|
2430
|
+
readonly 'sca_exemption'?: string;
|
|
2426
2431
|
}
|
|
2427
2432
|
|
|
2428
2433
|
interface ThreedsChallengeActionDetails {
|
|
@@ -5031,6 +5036,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5031
5036
|
readonly 'inventory_item_id': number;
|
|
5032
5037
|
readonly 'shopify_shop_id': number;
|
|
5033
5038
|
readonly 'shopify_inventory_item': io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
5039
|
+
readonly 'deleted_at'?: string;
|
|
5034
5040
|
}
|
|
5035
5041
|
|
|
5036
5042
|
interface MarketsOrder {
|
|
@@ -5220,6 +5226,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
5220
5226
|
type DisputeStatus = 'Accepted' | 'Expired' | 'Lost' | 'Pending' | 'Responded' | 'Undefended' | 'Unresponded' | 'Won';
|
|
5221
5227
|
type EventCode = 'AUTHORISATION' | 'CANCELLATION' | 'REFUND' | 'CANCEL_OR_REFUND' | 'CAPTURE' | 'CAPTURE_FAILED' | 'REFUND_FAILED' | 'REFUNDED_REVERSED' | 'PAIDOUT_REVERSED' | 'REQUEST_FOR_INFORMATION' | 'CHARGEBACK' | 'CHARGEBACK_REVERSED' | 'NOTIFICATION_OF_CHARGEBACK' | 'NOTIFICATION_OF_FRAUD' | 'MANUAL_REVIEW_ACCEPT' | 'MANUAL_REVIEW_REJECT' | 'RECURRING_CONTRACT' | 'PAYOUT_EXPIRE' | 'PAYOUT_DECLINE' | 'PAYOUT_THIRDPARTY' | 'REFUND_WITH_DATA' | 'AUTHORISE_REFERRAL' | 'EXPIRE' | 'FRAUD_ONLY' | 'FUND_TRANSFER' | 'HANDLED_EXTERNALLY' | 'OFFER_CLOSED' | 'ORDER_OPENED' | 'ORDER_CLOSED' | 'PENDING' | 'PROCESS_RETRY' | 'REPORT_AVAILABLE' | 'SECOND_CHARGEBACK' | 'PREARBITRATION_WON' | 'PREARBITRATION_LOST' | 'INFORMATION_SUPPLIED' | 'DISPUTE_DEFENSE_PERIOD_ENDED' | 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED';
|
|
5222
5228
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
5229
|
+
type LifecycleStage = 'INQUIRY' | 'CHARGEBACK';
|
|
5223
5230
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
5224
5231
|
type PaymentMethod = 'ach' | 'alipay' | 'alipay_hk' | 'alipay_wap' | 'amex' | 'bankTransfer_IBAN' | 'bcmc' | 'bcmc_mobile' | 'blik' | 'cartebancaire' | 'cup' | 'diners' | 'directEbanking' | 'discover' | 'dotpay' | 'dragonpay_ebanking' | 'dragonpay_gcash' | 'dragonpay_otc_banking' | 'ebanking_FI' | 'gcash' | 'giropay' | 'grabpay_MY' | 'grabpay_PH' | 'grabpay_SG' | 'ideal' | 'interac' | 'jcb' | 'kakaopay' | 'kcp_banktransfer' | 'kcp_creditcard' | 'kcp_payco' | 'maestro' | 'mbway' | 'mc' | 'mobilepay' | 'molpay_points' | 'multibanco' | 'onlineBanking_PL' | 'paywithgoogle' | 'qiwiwallet' | 'sepadirectdebit' | 'trustly' | 'trustpay' | 'twint' | 'unionpay' | 'vipps' | 'visa' | 'wechatpay' | 'unknowncard';
|
|
5225
5232
|
type RecurringProcessingModel = 'Subscription' | 'CardOnFile' | 'UnscheduledCardOnFile';
|
|
@@ -5407,6 +5414,7 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5407
5414
|
readonly 'paymentMethod'?: io.flow.adyen.v0.enums.PaymentMethod;
|
|
5408
5415
|
readonly 'reason'?: string;
|
|
5409
5416
|
readonly 'success': string;
|
|
5417
|
+
readonly 'lifecycleStage'?: io.flow.adyen.v0.enums.LifecycleStage;
|
|
5410
5418
|
}
|
|
5411
5419
|
|
|
5412
5420
|
interface ModificationRequest {
|
|
@@ -7678,6 +7686,15 @@ declare namespace io.flow.partner.v0.models {
|
|
|
7678
7686
|
readonly 'id': string;
|
|
7679
7687
|
}
|
|
7680
7688
|
|
|
7689
|
+
interface PartnerTrackingSubscription {
|
|
7690
|
+
readonly 'id': string;
|
|
7691
|
+
readonly 'carrier_tracking_number': string;
|
|
7692
|
+
readonly 'carrier_id': string;
|
|
7693
|
+
readonly 'source': string;
|
|
7694
|
+
readonly 'reference_key': string;
|
|
7695
|
+
readonly 'created_at': string;
|
|
7696
|
+
}
|
|
7697
|
+
|
|
7681
7698
|
interface SummaryLabelForm {
|
|
7682
7699
|
readonly 'discriminator': 'summary_label_form';
|
|
7683
7700
|
readonly 'organization': string;
|
|
@@ -7703,7 +7720,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
7703
7720
|
type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
|
|
7704
7721
|
type DeliveredDuty = 'paid' | 'unpaid';
|
|
7705
7722
|
type DiscountTarget = 'item' | 'shipping';
|
|
7706
|
-
type EntityIdentifierType = 'ioss' | 'voec';
|
|
7723
|
+
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
7707
7724
|
type Environment = 'sandbox' | 'production';
|
|
7708
7725
|
type ExceptionType = 'open' | 'closed';
|
|
7709
7726
|
type GoodsSupply = 'export' | 'intra_community' | 'local';
|
|
@@ -13927,10 +13944,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13927
13944
|
type BankPaymentPromiseCompletedMethod = 'credit' | 'time';
|
|
13928
13945
|
type BankPaymentStatusCode = 'scheduled' | 'sent' | 'failed';
|
|
13929
13946
|
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';
|
|
13930
|
-
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate';
|
|
13947
|
+
type BillingMetricKey = 'adjustment_transactions_count' | 'adjustment_transactions_total' | 'capture_transactions_count' | 'capture_transactions_reconcile_payments_count' | 'capture_transactions_ignored_fraud_count' | 'capture_transactions_ignored_fully_refunded_count' | 'capture_transactions_ignored_other_count' | 'capture_transactions_ignored_previously_processed_count' | 'capture_transactions_succeeded_then_failed_count' | 'capture_transactions_succeeded_then_failed_total' | 'capture_transactions_succeeded_then_failed_same_day_count' | 'capture_transactions_succeeded_then_failed_same_day_total' | 'capture_queued_count' | 'capture_transactions_total' | 'carrier_charge_transactions_count' | 'carrier_charge_transactions_total' | 'channel_transactions_processing_count' | 'channel_transactions_processing_total' | 'channel_transactions_adjustment_count' | 'channel_transactions_adjustment_total' | 'channel_transactions_reversal_count' | 'channel_transactions_reversal_total' | 'channel_billed_transactions_count' | 'channel_billed_transactions_total' | 'credit_payment_transactions_count' | 'credit_payment_transactions_total' | 'duty_to_labels_ratio' | 'duty_transactions_count' | 'duty_transactions_total' | 'fully_subsidized_order_transactions_count' | 'fully_subsidized_order_transactions_total' | 'billable_label_transactions_count' | 'billable_label_transactions_count_for_unique_orders' | 'billable_label_transactions_count_with_revenue_share' | 'billable_label_transactions_count_without_revenue_share' | 'billable_label_transactions_total' | 'revenue_share_label_transactions_count' | 'revenue_share_label_transactions_count_for_unique_orders' | 'revenue_share_label_transactions_total' | 'manual_transactions_count' | 'manual_transactions_total' | 'order_transactions_count' | 'order_transactions_total' | 'refund_transactions_count' | 'refund_transactions_reconcile_payments_count' | 'refund_transactions_ignored_fraud_count' | 'refund_transactions_ignored_fully_refunded_count' | 'refund_transactions_ignored_other_count' | 'refund_transactions_ignored_previously_processed_count' | 'refund_queued_count' | 'refund_transactions_total' | 'refund_transactions_succeeded_then_failed_count' | 'refund_transactions_succeeded_then_failed_total' | 'refund_transactions_succeeded_then_failed_same_day_count' | 'refund_transactions_succeeded_then_failed_same_day_total' | 'reversal_order_cancellations_transactions_count' | 'reversal_order_cancellations_transactions_total' | 'reversal_external_fulfillment_transactions_count' | 'reversal_external_fulfillment_transactions_total' | 'reversal_other_transactions_count' | 'reversal_other_transactions_total' | 'reversal_all_transactions_count' | 'reversal_all_transactions_total' | 'tax_to_labels_ratio' | 'tax_transactions_count' | 'tax_transactions_total' | 'transfer_transactions_count' | 'transfer_transactions_total' | 'trueup_transactions_count' | 'trueup_transactions_total' | 'fulfillments_count' | 'fulfilled_via_replacement_order_count' | 'percentage_orders_with_fulfillment_proof_2_weeks' | 'percentage_orders_with_fulfillment_proof_4_weeks' | 'percentage_orders_with_fulfillment_proof_6_weeks' | 'percentage_orders_with_fulfillment_proof_all' | 'pending_payouts_max_age_in_millis' | 'shipping_notifications_count' | 'queued_capture_unprocessed_count' | 'queued_refund_unprocessed_count' | 'queued_label_invoice_request_unprocessed_count' | 'queued_other_unprocessed_count' | 'task_snooze_count' | 'task_snooze_ending_in_48_hours_count' | 'payouts_scheduled_count' | 'payouts_scheduled_total' | 'payouts_sent_count' | 'payouts_sent_total' | 'payouts_failed_count' | 'payouts_failed_total' | 'average_payout_amount' | 'capture_transaction_with_zero_fees_and_no_channel_transaction_count' | 'percentage_billable_label_transactions_with_carrier_charge_10_days' | 'percentage_billable_label_transactions_with_carrier_charge_20_days' | 'percentage_billable_label_transactions_with_carrier_charge_30_days' | 'percentage_billable_label_transactions_with_carrier_charge_60_days' | 'percentage_billable_label_transactions_with_carrier_charge_90_days' | 'percentage_bank_account_inserts' | 'percentage_bank_account_updates' | 'percentage_bank_account_unique_updates' | 'percentage_bank_account_deletes' | 'negative_balance_number_accounts' | 'negative_balance_number_accounts_with_order_in_past_30_days' | 'negative_balance_number_accounts_without_order_in_past_30_days' | 'negative_balance_number_offboarded_accounts' | 'negative_balance_number_active_accounts_with_balance_over_1000' | 'negative_balance_total' | 'negative_balance_total_with_order_in_past_30_days' | 'negative_balance_total_without_order_in_past_30_days' | 'negative_balance_total_offboarded_accounts' | 'negative_balance_single_account_max' | 'negative_balance_single_active_account_max' | 'negative_balance_fee_total' | 'accounts_with_payment_holds_count' | 'accounts_with_payment_holds_pending_payment_promise_count' | 'accounts_with_payment_holds_pending_payment_promise_total' | 'accounts_with_final_statements_count' | 'accounts_with_final_statements_pending_transaction_count' | 'accounts_with_final_statements_pending_transaction_total' | 'edited_order_tax_amount_exceeding_transaction' | 'edited_order_duty_amount_exceeding_transaction' | 'negative_balance_scheduled_count' | 'negative_balance_scheduled_total' | 'negative_balance_sent_count' | 'negative_balance_sent_total' | 'negative_balance_failed_count' | 'negative_balance_failed_total' | 'negative_debit_success_rate' | 'current_attempt_merchant_count' | 'current_attempt_amount_total' | 'current_attempt_failed_merchant_count' | 'current_attempt_failed_amount_total' | 'current_attempt_success_ratio' | 'first_attempt_merchant_count' | 'first_attempt_amount_total' | 'first_attempt_failed_merchant_count' | 'first_attempt_failed_amount_total' | 'first_attempt_success_ratio' | 'second_attempt_merchant_count' | 'second_attempt_amount_total' | 'second_attempt_failed_merchant_count' | 'second_attempt_failed_amount_total' | 'second_attempt_success_ratio' | 'third_attempt_merchant_count' | 'third_attempt_amount_total' | 'third_attempt_failed_merchant_count' | 'third_attempt_failed_amount_total' | 'third_attempt_success_ratio' | 'fourth_plus_attempt_merchant_count' | 'fourth_plus_attempt_amount_total' | 'fourth_plus_attempt_failed_merchant_count' | 'fourth_plus_attempt_failed_amount_total' | 'fourth_plus_attempt_success_ratio';
|
|
13931
13948
|
type BillingStatementAttachmentKey = 'invoice' | 'statement' | 'consumer_invoice' | 'credit_memo' | 'channel_billed' | 'transactions' | 'virtual_card' | 'tax_remittance' | 'manual' | 'orders' | 'label' | 'order_service' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'all';
|
|
13932
13949
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
13933
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'tax_refund';
|
|
13950
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty' | 'trueup' | 'carrier_charge' | 'tax_refund' | 'duty_refund';
|
|
13934
13951
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
13935
13952
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax' | 'dtce_with_inclusive_pricing';
|
|
13936
13953
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -13997,7 +14014,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13997
14014
|
type EldarItemType = 'digital' | 'physical';
|
|
13998
14015
|
type EmptyAttribute = 'irrelevant';
|
|
13999
14016
|
type ErpFileType = 'vendor';
|
|
14000
|
-
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_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' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_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' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14017
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_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' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_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' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'sanjay_item_upserted' | 'sanjay_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
14001
14018
|
type ExperienceImportType = 'experience_with_settings';
|
|
14002
14019
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
14003
14020
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -14019,8 +14036,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14019
14036
|
type HarinathItemType = 'digital' | 'physical';
|
|
14020
14037
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
14021
14038
|
type HttpMethod = 'get' | 'post';
|
|
14022
|
-
type InventoryCheckService = 'sfcc' | 'gymboree';
|
|
14023
|
-
type InventoryReservation = 'synchronous-on-submit';
|
|
14024
14039
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
14025
14040
|
type ItemClassificationStatus = 'unknown' | 'manual' | 'manually_accepted' | 'manually_overridden' | 'automatically_accepted' | 'pending';
|
|
14026
14041
|
type ItemHarmonizationStatus = 'waiting_for_classification' | 'classified' | 'non_classifiable_not_enough_information' | 'exempt';
|
|
@@ -14039,7 +14054,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14039
14054
|
type LogisticsCapability = 'logistics_address_correction';
|
|
14040
14055
|
type LogisticsPayoutResolutionMethod = 'order_combined_shipment' | 'intransit_label_event' | 'shipping_notification';
|
|
14041
14056
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
14042
|
-
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure';
|
|
14057
|
+
type ManualTransactionCategory = 'cancelled_order_refund' | 'client_accepted_chargeback' | 'fee_reimbursement' | 'platform_fee' | 'shipping_true_up' | 'tax_credit' | 'carrier_credit' | 'negative_balance_guarantee' | 'bank_payment_failure' | 'non_fraud_chargeback';
|
|
14043
14058
|
type MarketingGatewayAccountConnectionStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
|
|
14044
14059
|
type MarketingGatewayChannelIntegrationType = 'automated' | 'manual';
|
|
14045
14060
|
type MarketingGatewayChannelStatus = 'not_connected' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'unavailable';
|
|
@@ -14107,7 +14122,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14107
14122
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14108
14123
|
type ReportPaymentType = 'credit' | 'debit';
|
|
14109
14124
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
14110
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record';
|
|
14125
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record' | 'disputes';
|
|
14111
14126
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
14112
14127
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
14113
14128
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -14118,7 +14133,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14118
14133
|
type RevenueType = 'mor' | 'fx' | 'duty_assurance';
|
|
14119
14134
|
type RiskCheck = 'three_d_secure';
|
|
14120
14135
|
type RiskEvaluation = 'Pending' | 'High-Risk' | 'Low-Risk' | 'Restricted-Party' | 'none';
|
|
14121
|
-
type
|
|
14136
|
+
type SanjayItemType = 'digital' | 'physical';
|
|
14122
14137
|
type ServiceName = 'catalog' | 'demandware' | 'metric';
|
|
14123
14138
|
type SessionCountryStatus = 'enabled' | 'disabled';
|
|
14124
14139
|
type ShopifyCheckInventoryErrorCode = 'inventory_out_of_stock';
|
|
@@ -14349,6 +14364,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14349
14364
|
readonly 'transfers': io.flow.common.v0.models.Price;
|
|
14350
14365
|
readonly 'balance': io.flow.common.v0.models.Price;
|
|
14351
14366
|
readonly 'pending': io.flow.common.v0.models.Price;
|
|
14367
|
+
readonly 'additional_balances'?: io.flow.internal.v0.models.AccountStatisticsAdditionalBalances;
|
|
14368
|
+
}
|
|
14369
|
+
|
|
14370
|
+
interface AccountStatisticsAdditionalBalances {
|
|
14371
|
+
readonly 'on_hold': io.flow.common.v0.models.Price;
|
|
14352
14372
|
}
|
|
14353
14373
|
|
|
14354
14374
|
interface AccountSummary {
|
|
@@ -15571,7 +15591,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15571
15591
|
|
|
15572
15592
|
interface CallRecord {
|
|
15573
15593
|
readonly 'id': string;
|
|
15574
|
-
readonly 'request_body'?:
|
|
15594
|
+
readonly 'request_body'?: string;
|
|
15575
15595
|
}
|
|
15576
15596
|
|
|
15577
15597
|
interface CarrierAccount {
|
|
@@ -17500,6 +17520,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17500
17520
|
readonly 'status'?: io.flow.internal.v0.enums.DisputeStatus;
|
|
17501
17521
|
}
|
|
17502
17522
|
|
|
17523
|
+
interface DisputeRecord {
|
|
17524
|
+
readonly 'id': string;
|
|
17525
|
+
readonly 'organization': io.flow.internal.v0.models.ReportingOrganizationSummary;
|
|
17526
|
+
readonly 'order': io.flow.internal.v0.models.ReportingOrderSummary;
|
|
17527
|
+
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
17528
|
+
readonly 'processor': io.flow.internal.v0.enums.DisputeProcessor;
|
|
17529
|
+
readonly 'reporting_category'?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
17530
|
+
readonly 'defense_outcome'?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
17531
|
+
readonly 'chargeback_amount': io.flow.common.v0.models.MoneyWithBase;
|
|
17532
|
+
}
|
|
17533
|
+
|
|
17503
17534
|
interface DisputeStatusForm {
|
|
17504
17535
|
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
17505
17536
|
}
|
|
@@ -18593,6 +18624,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18593
18624
|
readonly 'payment_authorization_id'?: string;
|
|
18594
18625
|
readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
|
|
18595
18626
|
readonly 'created_at'?: string;
|
|
18627
|
+
readonly 'has_provider_link'?: boolean;
|
|
18596
18628
|
}
|
|
18597
18629
|
|
|
18598
18630
|
interface FraudReviewAuthorization {
|
|
@@ -18611,6 +18643,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18611
18643
|
readonly 'payment_authorization_id'?: string;
|
|
18612
18644
|
readonly 'decline_reason'?: io.flow.internal.v0.unions.DeclineReason;
|
|
18613
18645
|
readonly 'created_at'?: string;
|
|
18646
|
+
readonly 'has_provider_link'?: boolean;
|
|
18614
18647
|
}
|
|
18615
18648
|
|
|
18616
18649
|
interface FraudReviewAuthorizationDecision {
|
|
@@ -19438,19 +19471,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19438
19471
|
readonly 'inventory_item_id': number;
|
|
19439
19472
|
readonly 'shopify_shop_id': number;
|
|
19440
19473
|
readonly 'shopify_inventory_item': io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
19441
|
-
|
|
19442
|
-
|
|
19443
|
-
interface InventoryOrganizationSettings {
|
|
19444
|
-
readonly 'id': string;
|
|
19445
|
-
readonly 'inventory_reservation': io.flow.internal.v0.enums.InventoryReservation;
|
|
19446
|
-
readonly 'inventory_check_service': io.flow.internal.v0.enums.InventoryCheckService;
|
|
19447
|
-
readonly 'inventory_check_service_root_url'?: string;
|
|
19448
|
-
}
|
|
19449
|
-
|
|
19450
|
-
interface InventoryOrganizationSettingsForm {
|
|
19451
|
-
readonly 'inventory_reservation': io.flow.internal.v0.enums.InventoryReservation;
|
|
19452
|
-
readonly 'inventory_check_service': io.flow.internal.v0.enums.InventoryCheckService;
|
|
19453
|
-
readonly 'inventory_check_service_root_url'?: string;
|
|
19474
|
+
readonly 'deleted_at'?: string;
|
|
19454
19475
|
}
|
|
19455
19476
|
|
|
19456
19477
|
interface Invoice {
|
|
@@ -21116,8 +21137,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21116
21137
|
|
|
21117
21138
|
interface NegativeDebitMetrics {
|
|
21118
21139
|
readonly 'current_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21140
|
+
readonly 'first_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21119
21141
|
readonly 'second_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21120
21142
|
readonly 'third_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21143
|
+
readonly 'forth_plus_attempts': io.flow.internal.v0.models.AttemptStatistics;
|
|
21121
21144
|
}
|
|
21122
21145
|
|
|
21123
21146
|
interface NextBillingStatement {
|
|
@@ -21860,6 +21883,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21860
21883
|
readonly 'product_count': number;
|
|
21861
21884
|
readonly 'restricted_product_count': number;
|
|
21862
21885
|
readonly 'last_order_submitted_at'?: string;
|
|
21886
|
+
readonly 'matching_positive_keywords': string[];
|
|
21887
|
+
readonly 'product_categories': string[];
|
|
21863
21888
|
}
|
|
21864
21889
|
|
|
21865
21890
|
interface OrganizationMetadataDeleted {
|
|
@@ -22263,6 +22288,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22263
22288
|
readonly 'partner_organization_settings': io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
22264
22289
|
}
|
|
22265
22290
|
|
|
22291
|
+
interface PartnerTrackingSubscriptionDeleted {
|
|
22292
|
+
readonly 'discriminator': 'partner_tracking_subscription_deleted';
|
|
22293
|
+
readonly 'event_id': string;
|
|
22294
|
+
readonly 'timestamp': string;
|
|
22295
|
+
readonly 'id': string;
|
|
22296
|
+
}
|
|
22297
|
+
|
|
22298
|
+
interface PartnerTrackingSubscriptionUpserted {
|
|
22299
|
+
readonly 'discriminator': 'partner_tracking_subscription_upserted';
|
|
22300
|
+
readonly 'event_id': string;
|
|
22301
|
+
readonly 'timestamp': string;
|
|
22302
|
+
readonly 'partner_tracking_subscription': io.flow.partner.v0.models.PartnerTrackingSubscription;
|
|
22303
|
+
}
|
|
22304
|
+
|
|
22266
22305
|
interface Passphrase {
|
|
22267
22306
|
readonly 'id': string;
|
|
22268
22307
|
readonly 'tribe': io.flow.internal.v0.models.Tribe;
|
|
@@ -22425,6 +22464,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22425
22464
|
readonly 'payer_id': string;
|
|
22426
22465
|
}
|
|
22427
22466
|
|
|
22467
|
+
interface PaypalDisputeDeleted {
|
|
22468
|
+
readonly 'discriminator': 'paypal_dispute_deleted';
|
|
22469
|
+
readonly 'event_id': string;
|
|
22470
|
+
readonly 'timestamp': string;
|
|
22471
|
+
readonly 'id': string;
|
|
22472
|
+
}
|
|
22473
|
+
|
|
22474
|
+
interface PaypalDisputeUpserted {
|
|
22475
|
+
readonly 'discriminator': 'paypal_dispute_upserted';
|
|
22476
|
+
readonly 'event_id': string;
|
|
22477
|
+
readonly 'timestamp': string;
|
|
22478
|
+
readonly 'dispute': io.flow.internal.v0.models.PaypalInternalDispute;
|
|
22479
|
+
}
|
|
22480
|
+
|
|
22428
22481
|
interface PaypalExecutionDeleted {
|
|
22429
22482
|
readonly 'discriminator': 'paypal_execution_deleted';
|
|
22430
22483
|
readonly 'event_id': string;
|
|
@@ -22439,6 +22492,47 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22439
22492
|
readonly 'execution': io.flow.internal.v0.models.PaypalInternalExecution;
|
|
22440
22493
|
}
|
|
22441
22494
|
|
|
22495
|
+
interface PaypalInternalDispute {
|
|
22496
|
+
readonly 'id': string;
|
|
22497
|
+
readonly 'dispute_id': string;
|
|
22498
|
+
readonly 'create_time': string;
|
|
22499
|
+
readonly 'update_time': string;
|
|
22500
|
+
readonly 'buyer_transaction_id'?: string;
|
|
22501
|
+
readonly 'seller_transaction_id'?: string;
|
|
22502
|
+
readonly 'transaction_reference_id'?: string;
|
|
22503
|
+
readonly 'transaction_create_time'?: string;
|
|
22504
|
+
readonly 'transaction_status'?: string;
|
|
22505
|
+
readonly 'transaction_gross_amount'?: string;
|
|
22506
|
+
readonly 'transaction_gross_currency'?: string;
|
|
22507
|
+
readonly 'transaction_invoice_number'?: string;
|
|
22508
|
+
readonly 'transaction_custom'?: string;
|
|
22509
|
+
readonly 'buyer_name'?: string;
|
|
22510
|
+
readonly 'seller_merchant_id'?: string;
|
|
22511
|
+
readonly 'seller_merchant_name'?: string;
|
|
22512
|
+
readonly 'items'?: any/*object*/[];
|
|
22513
|
+
readonly 'other_disputed_transactions'?: any/*object*/[];
|
|
22514
|
+
readonly 'reason': string;
|
|
22515
|
+
readonly 'status': string;
|
|
22516
|
+
readonly 'dispute_amount': string;
|
|
22517
|
+
readonly 'dispute_currency': string;
|
|
22518
|
+
readonly 'dispute_outcome_code'?: string;
|
|
22519
|
+
readonly 'dispute_outcome_amount_refunded'?: string;
|
|
22520
|
+
readonly 'dispute_outcome_currency'?: string;
|
|
22521
|
+
readonly 'dispute_life_cycle_stage': string;
|
|
22522
|
+
readonly 'dispute_channel': string;
|
|
22523
|
+
readonly 'messages'?: any/*object*/[];
|
|
22524
|
+
readonly 'evidences'?: any/*object*/[];
|
|
22525
|
+
readonly 'buyer_response_due_date'?: string;
|
|
22526
|
+
readonly 'seller_response_due_date'?: string;
|
|
22527
|
+
readonly 'offer'?: any/*object*/;
|
|
22528
|
+
readonly 'communication_details'?: any/*object*/;
|
|
22529
|
+
readonly 'links'?: any/*object*/[];
|
|
22530
|
+
readonly 'previous_status'?: string;
|
|
22531
|
+
readonly 'updated_by_user_id': string;
|
|
22532
|
+
readonly 'created_at': string;
|
|
22533
|
+
readonly 'updated_at': string;
|
|
22534
|
+
}
|
|
22535
|
+
|
|
22442
22536
|
interface PaypalInternalExecution {
|
|
22443
22537
|
readonly 'id': string;
|
|
22444
22538
|
readonly 'currency': string;
|
|
@@ -23521,6 +23615,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23521
23615
|
readonly 'from'?: string;
|
|
23522
23616
|
readonly 'to'?: string;
|
|
23523
23617
|
readonly 'payment_type'?: io.flow.internal.v0.enums.ReportPaymentType;
|
|
23618
|
+
readonly 'organizations'?: io.flow.internal.v0.models.ReportOrganizationReference[];
|
|
23524
23619
|
readonly 'orders'?: io.flow.internal.v0.models.ReportOrderReference[];
|
|
23525
23620
|
readonly 'recipients'?: string[];
|
|
23526
23621
|
}
|
|
@@ -23534,6 +23629,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23534
23629
|
readonly 'order_number': string;
|
|
23535
23630
|
}
|
|
23536
23631
|
|
|
23632
|
+
interface ReportOrganizationReference {
|
|
23633
|
+
readonly 'organization_id': string;
|
|
23634
|
+
}
|
|
23635
|
+
|
|
23537
23636
|
interface ReportOwner {
|
|
23538
23637
|
readonly 'name': string;
|
|
23539
23638
|
}
|
|
@@ -23611,10 +23710,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23611
23710
|
readonly 'refund_records'?: any/*object*/[];
|
|
23612
23711
|
}
|
|
23613
23712
|
|
|
23614
|
-
interface ReportingEntity {
|
|
23615
|
-
readonly 'id': string;
|
|
23616
|
-
}
|
|
23617
|
-
|
|
23618
23713
|
interface ReportingFulfillment {
|
|
23619
23714
|
readonly 'id': string;
|
|
23620
23715
|
readonly 'sequence_number': number;
|
|
@@ -23697,6 +23792,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23697
23792
|
readonly 'discount'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23698
23793
|
readonly 'total'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23699
23794
|
readonly 'tax_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23795
|
+
readonly 'duty_refund'?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
23700
23796
|
}
|
|
23701
23797
|
|
|
23702
23798
|
interface ReportingMonetaryValue {
|
|
@@ -24026,6 +24122,33 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24026
24122
|
readonly 'count': number;
|
|
24027
24123
|
}
|
|
24028
24124
|
|
|
24125
|
+
interface RestrictionsDailyops {
|
|
24126
|
+
readonly 'id': string;
|
|
24127
|
+
readonly 'report_date': string;
|
|
24128
|
+
readonly 'num_orgs_setup_complete_with_pvs': number;
|
|
24129
|
+
readonly 'num_products_setup_complete_with_pvs': number;
|
|
24130
|
+
readonly 'num_orgs_transacting_with_pvs': number;
|
|
24131
|
+
readonly 'num_products_transacting_with_pvs': number;
|
|
24132
|
+
readonly 'oldest_pv_product_date_setup_complete': string;
|
|
24133
|
+
readonly 'oldest_pv_product_date_transacting': string;
|
|
24134
|
+
readonly 'num_orgs_setup_complete_prs': number;
|
|
24135
|
+
readonly 'num_products_setup_complete_prs': number;
|
|
24136
|
+
readonly 'num_orgs_transacting_prs': number;
|
|
24137
|
+
readonly 'num_products_transacting_prs': number;
|
|
24138
|
+
readonly 'oldest_pr_product_date_setup_complete': string;
|
|
24139
|
+
readonly 'oldest_pr_date_transacting': string;
|
|
24140
|
+
readonly 'percent_products_reviewed_transacting': number;
|
|
24141
|
+
readonly 'num_pv_inflow_net_new': number;
|
|
24142
|
+
readonly 'num_pv_outflow_human_decisions': number;
|
|
24143
|
+
readonly 'num_pv_outflow_auto_review_decisions': number;
|
|
24144
|
+
readonly 'num_pv_outflow_side_effect_decisions': number;
|
|
24145
|
+
readonly 'num_pr_inflow_net_new': number;
|
|
24146
|
+
readonly 'num_pr_outflow_human_decisions': number;
|
|
24147
|
+
readonly 'num_pr_outflow_auto_review_decisions': number;
|
|
24148
|
+
readonly 'num_pr_outflow_side_effect_decisions': number;
|
|
24149
|
+
readonly 'num_pending_decisions_transacting': number;
|
|
24150
|
+
}
|
|
24151
|
+
|
|
24029
24152
|
interface ResyncByDestinations {
|
|
24030
24153
|
readonly 'destinations': io.flow.reference.v0.models.Country[];
|
|
24031
24154
|
}
|
|
@@ -24123,7 +24246,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24123
24246
|
readonly 'parent'?: io.flow.internal.v0.models.RecordReference;
|
|
24124
24247
|
readonly 'type': io.flow.internal.v0.enums.RevenueRecordType;
|
|
24125
24248
|
readonly 'order': io.flow.internal.v0.models.ReportingOrderSummary;
|
|
24126
|
-
readonly 'entity': io.flow.internal.v0.models.ReportingEntity;
|
|
24127
24249
|
readonly 'vendor': io.flow.internal.v0.models.ReportingVendor;
|
|
24128
24250
|
readonly 'currencies': io.flow.internal.v0.models.ReportingCurrencies;
|
|
24129
24251
|
readonly 'conversion_rate': io.flow.internal.v0.models.ReportingConversionRates;
|
|
@@ -24182,6 +24304,37 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24182
24304
|
readonly 'requested_by': string;
|
|
24183
24305
|
}
|
|
24184
24306
|
|
|
24307
|
+
interface SanjayItem {
|
|
24308
|
+
readonly 'id': string;
|
|
24309
|
+
readonly 'number': string;
|
|
24310
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
24311
|
+
readonly 'description'?: string;
|
|
24312
|
+
readonly 'type': io.flow.internal.v0.enums.SanjayItemType;
|
|
24313
|
+
readonly 'added_on': string;
|
|
24314
|
+
}
|
|
24315
|
+
|
|
24316
|
+
interface SanjayItemDeleted {
|
|
24317
|
+
readonly 'discriminator': 'sanjay_item_deleted';
|
|
24318
|
+
readonly 'event_id': string;
|
|
24319
|
+
readonly 'timestamp': string;
|
|
24320
|
+
readonly 'id': string;
|
|
24321
|
+
}
|
|
24322
|
+
|
|
24323
|
+
interface SanjayItemForm {
|
|
24324
|
+
readonly 'number': string;
|
|
24325
|
+
readonly 'amount': io.flow.common.v0.models.Price;
|
|
24326
|
+
readonly 'description'?: string;
|
|
24327
|
+
readonly 'type': io.flow.internal.v0.enums.SanjayItemType;
|
|
24328
|
+
readonly 'added_on': string;
|
|
24329
|
+
}
|
|
24330
|
+
|
|
24331
|
+
interface SanjayItemUpserted {
|
|
24332
|
+
readonly 'discriminator': 'sanjay_item_upserted';
|
|
24333
|
+
readonly 'event_id': string;
|
|
24334
|
+
readonly 'timestamp': string;
|
|
24335
|
+
readonly 'item': io.flow.internal.v0.models.SanjayItem;
|
|
24336
|
+
}
|
|
24337
|
+
|
|
24185
24338
|
interface ScheduledPayment {
|
|
24186
24339
|
readonly 'payment': io.flow.internal.v0.models.ReportPayment;
|
|
24187
24340
|
readonly 'bank_account': io.flow.internal.v0.models.ReportBankAccountCleartext;
|
|
@@ -24795,6 +24948,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24795
24948
|
readonly 'send_inventory_update': boolean;
|
|
24796
24949
|
}
|
|
24797
24950
|
|
|
24951
|
+
interface ShopifyPartnerWebhook {
|
|
24952
|
+
readonly 'placeholder'?: boolean;
|
|
24953
|
+
}
|
|
24954
|
+
|
|
24955
|
+
interface ShopifyPartnerWebhookRaw {
|
|
24956
|
+
readonly 'placeholder'?: boolean;
|
|
24957
|
+
}
|
|
24958
|
+
|
|
24798
24959
|
interface ShopifyPaymentSummary {
|
|
24799
24960
|
readonly 'description': string;
|
|
24800
24961
|
readonly 'address'?: io.flow.common.v0.models.Address;
|
|
@@ -26073,6 +26234,34 @@ declare namespace io.flow.internal.v0.models {
|
|
|
26073
26234
|
readonly 'tracking_response': io.flow.internal.v0.models.TrackingResponse;
|
|
26074
26235
|
}
|
|
26075
26236
|
|
|
26237
|
+
interface TrackingSubscription {
|
|
26238
|
+
readonly 'id': string;
|
|
26239
|
+
readonly 'organization_id': string;
|
|
26240
|
+
readonly 'carrier_tracking_number': string;
|
|
26241
|
+
readonly 'carrier_id': string;
|
|
26242
|
+
readonly 'label_id': string;
|
|
26243
|
+
readonly 'label_origin': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
26244
|
+
readonly 'label_destination': io.flow.fulfillment.v0.models.ShippingAddress;
|
|
26245
|
+
readonly 'status': io.flow.tracking.v0.enums.TrackingStatus;
|
|
26246
|
+
readonly 'events': io.flow.tracking.v0.models.TrackingEvent[];
|
|
26247
|
+
readonly 'external_reference_key'?: string;
|
|
26248
|
+
readonly 'external_reference_source'?: string;
|
|
26249
|
+
}
|
|
26250
|
+
|
|
26251
|
+
interface TrackingSubscriptionDeleted {
|
|
26252
|
+
readonly 'discriminator': 'tracking_subscription_deleted';
|
|
26253
|
+
readonly 'event_id': string;
|
|
26254
|
+
readonly 'timestamp': string;
|
|
26255
|
+
readonly 'id': string;
|
|
26256
|
+
}
|
|
26257
|
+
|
|
26258
|
+
interface TrackingSubscriptionUpserted {
|
|
26259
|
+
readonly 'discriminator': 'tracking_subscription_upserted';
|
|
26260
|
+
readonly 'event_id': string;
|
|
26261
|
+
readonly 'timestamp': string;
|
|
26262
|
+
readonly 'tracking_subscription': io.flow.internal.v0.models.TrackingSubscription;
|
|
26263
|
+
}
|
|
26264
|
+
|
|
26076
26265
|
interface TrackingUpserted {
|
|
26077
26266
|
readonly 'discriminator': 'tracking_upserted';
|
|
26078
26267
|
readonly 'event_id': string;
|
|
@@ -26413,7 +26602,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26413
26602
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
26414
26603
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
26415
26604
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
26416
|
-
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | 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.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | 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.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26605
|
+
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | 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.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | 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.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.SanjayItemUpserted | io.flow.internal.v0.models.SanjayItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26417
26606
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
26418
26607
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
26419
26608
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26579,8 +26768,6 @@ export const graphqlServiceTypes: PropTypes.Requireable<io.flow.internal.v0.enum
|
|
|
26579
26768
|
export const harinathItemType: PropTypes.Requireable<io.flow.internal.v0.enums.HarinathItemType>;
|
|
26580
26769
|
export const harmonizationDecisionSource: PropTypes.Requireable<io.flow.internal.v0.enums.HarmonizationDecisionSource>;
|
|
26581
26770
|
export const httpMethod: PropTypes.Requireable<io.flow.internal.v0.enums.HttpMethod>;
|
|
26582
|
-
export const inventoryCheckService: PropTypes.Requireable<io.flow.internal.v0.enums.InventoryCheckService>;
|
|
26583
|
-
export const inventoryReservation: PropTypes.Requireable<io.flow.internal.v0.enums.InventoryReservation>;
|
|
26584
26771
|
export const itemClassificationAction: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationAction>;
|
|
26585
26772
|
export const itemClassificationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ItemClassificationStatus>;
|
|
26586
26773
|
export const itemHarmonizationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ItemHarmonizationStatus>;
|
|
@@ -26678,7 +26865,7 @@ export const revenueRecordType: PropTypes.Requireable<io.flow.internal.v0.enums.
|
|
|
26678
26865
|
export const revenueType: PropTypes.Requireable<io.flow.internal.v0.enums.RevenueType>;
|
|
26679
26866
|
export const riskCheck: PropTypes.Requireable<io.flow.internal.v0.enums.RiskCheck>;
|
|
26680
26867
|
export const riskEvaluation: PropTypes.Requireable<io.flow.internal.v0.enums.RiskEvaluation>;
|
|
26681
|
-
export const
|
|
26868
|
+
export const sanjayItemType: PropTypes.Requireable<io.flow.internal.v0.enums.SanjayItemType>;
|
|
26682
26869
|
export const serviceName: PropTypes.Requireable<io.flow.internal.v0.enums.ServiceName>;
|
|
26683
26870
|
export const sessionCountryStatus: PropTypes.Requireable<io.flow.internal.v0.enums.SessionCountryStatus>;
|
|
26684
26871
|
export const shopifyCheckInventoryErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.ShopifyCheckInventoryErrorCode>;
|
|
@@ -26743,6 +26930,7 @@ export const accountSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
26743
26930
|
export const accountSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountSettingsUpserted>;
|
|
26744
26931
|
export const accountSource: PropTypes.Requireable<io.flow.internal.v0.models.AccountSource>;
|
|
26745
26932
|
export const accountStatistics: PropTypes.Requireable<io.flow.internal.v0.models.AccountStatistics>;
|
|
26933
|
+
export const accountStatisticsAdditionalBalances: PropTypes.Requireable<io.flow.internal.v0.models.AccountStatisticsAdditionalBalances>;
|
|
26746
26934
|
export const accountSummary: PropTypes.Requireable<io.flow.internal.v0.models.AccountSummary>;
|
|
26747
26935
|
export const accountTransactionsExportRequest: PropTypes.Requireable<io.flow.internal.v0.models.AccountTransactionsExportRequest>;
|
|
26748
26936
|
export const accountUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AccountUpserted>;
|
|
@@ -27165,6 +27353,7 @@ export const disputeImportForm: PropTypes.Requireable<io.flow.internal.v0.models
|
|
|
27165
27353
|
export const disputeOrderReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOrderReference>;
|
|
27166
27354
|
export const disputeOrganizationReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOrganizationReference>;
|
|
27167
27355
|
export const disputeOverrideUpdateForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOverrideUpdateForm>;
|
|
27356
|
+
export const disputeRecord: PropTypes.Requireable<io.flow.internal.v0.models.DisputeRecord>;
|
|
27168
27357
|
export const disputeStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeStatusForm>;
|
|
27169
27358
|
export const disputeTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DisputeTransaction>;
|
|
27170
27359
|
export const disputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DisputeUpserted>;
|
|
@@ -27410,8 +27599,6 @@ export const internalTransactionDetailsCard: PropTypes.Requireable<io.flow.inter
|
|
|
27410
27599
|
export const invalidCheckoutData: PropTypes.Requireable<io.flow.internal.v0.models.InvalidCheckoutData>;
|
|
27411
27600
|
export const invariant: PropTypes.Requireable<io.flow.internal.v0.models.Invariant>;
|
|
27412
27601
|
export const inventoryItemWrapper: PropTypes.Requireable<io.flow.internal.v0.models.InventoryItemWrapper>;
|
|
27413
|
-
export const inventoryOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.InventoryOrganizationSettings>;
|
|
27414
|
-
export const inventoryOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.InventoryOrganizationSettingsForm>;
|
|
27415
27602
|
export const invoice: PropTypes.Requireable<io.flow.internal.v0.models.Invoice>;
|
|
27416
27603
|
export const invoiceInfoForm: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceInfoForm>;
|
|
27417
27604
|
export const invoiceLine: PropTypes.Requireable<io.flow.internal.v0.models.InvoiceLine>;
|
|
@@ -27779,6 +27966,8 @@ export const partnerOrganizationSettings: PropTypes.Requireable<io.flow.internal
|
|
|
27779
27966
|
export const partnerOrganizationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted>;
|
|
27780
27967
|
export const partnerOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsForm>;
|
|
27781
27968
|
export const partnerOrganizationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted>;
|
|
27969
|
+
export const partnerTrackingSubscriptionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted>;
|
|
27970
|
+
export const partnerTrackingSubscriptionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted>;
|
|
27782
27971
|
export const passphrase: PropTypes.Requireable<io.flow.internal.v0.models.Passphrase>;
|
|
27783
27972
|
export const passphraseForm: PropTypes.Requireable<io.flow.internal.v0.models.PassphraseForm>;
|
|
27784
27973
|
export const passphraseSummary: PropTypes.Requireable<io.flow.internal.v0.models.PassphraseSummary>;
|
|
@@ -27800,8 +27989,11 @@ export const paypalAccountReference: PropTypes.Requireable<io.flow.internal.v0.m
|
|
|
27800
27989
|
export const paypalAuthentication: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAuthentication>;
|
|
27801
27990
|
export const paypalAuthenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAuthenticationForm>;
|
|
27802
27991
|
export const paypalAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.PaypalAuthorizationPayload>;
|
|
27992
|
+
export const paypalDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalDisputeDeleted>;
|
|
27993
|
+
export const paypalDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalDisputeUpserted>;
|
|
27803
27994
|
export const paypalExecutionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalExecutionDeleted>;
|
|
27804
27995
|
export const paypalExecutionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PaypalExecutionUpserted>;
|
|
27996
|
+
export const paypalInternalDispute: PropTypes.Requireable<io.flow.internal.v0.models.PaypalInternalDispute>;
|
|
27805
27997
|
export const paypalInternalExecution: PropTypes.Requireable<io.flow.internal.v0.models.PaypalInternalExecution>;
|
|
27806
27998
|
export const paypalInternalPayment: PropTypes.Requireable<io.flow.internal.v0.models.PaypalInternalPayment>;
|
|
27807
27999
|
export const paypalInternalRefund: PropTypes.Requireable<io.flow.internal.v0.models.PaypalInternalRefund>;
|
|
@@ -27945,6 +28137,7 @@ export const reportBankAccountCleartext: PropTypes.Requireable<io.flow.internal.
|
|
|
27945
28137
|
export const reportForm: PropTypes.Requireable<io.flow.internal.v0.models.ReportForm>;
|
|
27946
28138
|
export const reportMerchant: PropTypes.Requireable<io.flow.internal.v0.models.ReportMerchant>;
|
|
27947
28139
|
export const reportOrderReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportOrderReference>;
|
|
28140
|
+
export const reportOrganizationReference: PropTypes.Requireable<io.flow.internal.v0.models.ReportOrganizationReference>;
|
|
27948
28141
|
export const reportOwner: PropTypes.Requireable<io.flow.internal.v0.models.ReportOwner>;
|
|
27949
28142
|
export const reportPayment: PropTypes.Requireable<io.flow.internal.v0.models.ReportPayment>;
|
|
27950
28143
|
export const reportRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ReportRuleDecision>;
|
|
@@ -27958,7 +28151,6 @@ export const reportingDebug: PropTypes.Requireable<io.flow.internal.v0.models.Re
|
|
|
27958
28151
|
export const reportingDebugMissingSubsidies: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDebugMissingSubsidies>;
|
|
27959
28152
|
export const reportingDestination: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDestination>;
|
|
27960
28153
|
export const reportingDetails: PropTypes.Requireable<io.flow.internal.v0.models.ReportingDetails>;
|
|
27961
|
-
export const reportingEntity: PropTypes.Requireable<io.flow.internal.v0.models.ReportingEntity>;
|
|
27962
28154
|
export const reportingFulfillment: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillment>;
|
|
27963
28155
|
export const reportingFulfillmentHas: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentHas>;
|
|
27964
28156
|
export const reportingFulfillmentIs: PropTypes.Requireable<io.flow.internal.v0.models.ReportingFulfillmentIs>;
|
|
@@ -28009,6 +28201,7 @@ export const restrictionRuleMetadata: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
28009
28201
|
export const restrictionRuleOverride: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleOverride>;
|
|
28010
28202
|
export const restrictionRuleSummary: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionRuleSummary>;
|
|
28011
28203
|
export const restrictionStatusMetadata: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionStatusMetadata>;
|
|
28204
|
+
export const restrictionsDailyops: PropTypes.Requireable<io.flow.internal.v0.models.RestrictionsDailyops>;
|
|
28012
28205
|
export const resyncByDestinations: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByDestinations>;
|
|
28013
28206
|
export const resyncByHs6Destinations: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Destinations>;
|
|
28014
28207
|
export const resyncByHs6Origin: PropTypes.Requireable<io.flow.internal.v0.models.ResyncByHs6Origin>;
|
|
@@ -28032,6 +28225,10 @@ export const routingMerchant: PropTypes.Requireable<io.flow.internal.v0.models.R
|
|
|
28032
28225
|
export const routingProcessor: PropTypes.Requireable<io.flow.internal.v0.models.RoutingProcessor>;
|
|
28033
28226
|
export const sandboxSetup: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetup>;
|
|
28034
28227
|
export const sandboxSetupForm: PropTypes.Requireable<io.flow.internal.v0.models.SandboxSetupForm>;
|
|
28228
|
+
export const sanjayItem: PropTypes.Requireable<io.flow.internal.v0.models.SanjayItem>;
|
|
28229
|
+
export const sanjayItemDeleted: PropTypes.Requireable<io.flow.internal.v0.models.SanjayItemDeleted>;
|
|
28230
|
+
export const sanjayItemForm: PropTypes.Requireable<io.flow.internal.v0.models.SanjayItemForm>;
|
|
28231
|
+
export const sanjayItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.SanjayItemUpserted>;
|
|
28035
28232
|
export const scheduledPayment: PropTypes.Requireable<io.flow.internal.v0.models.ScheduledPayment>;
|
|
28036
28233
|
export const screen: PropTypes.Requireable<io.flow.internal.v0.models.Screen>;
|
|
28037
28234
|
export const screenForm: PropTypes.Requireable<io.flow.internal.v0.models.ScreenForm>;
|
|
@@ -28125,6 +28322,8 @@ export const shopifyOrderLineAttribute: PropTypes.Requireable<io.flow.internal.v
|
|
|
28125
28322
|
export const shopifyOrderLineContent: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderLineContent>;
|
|
28126
28323
|
export const shopifyOrganizationSettings: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrganizationSettings>;
|
|
28127
28324
|
export const shopifyOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrganizationSettingsForm>;
|
|
28325
|
+
export const shopifyPartnerWebhook: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyPartnerWebhook>;
|
|
28326
|
+
export const shopifyPartnerWebhookRaw: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyPartnerWebhookRaw>;
|
|
28128
28327
|
export const shopifyPaymentSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyPaymentSummary>;
|
|
28129
28328
|
export const shopifyProductBundle: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductBundle>;
|
|
28130
28329
|
export const shopifyProductBundleDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyProductBundleDeleted>;
|
|
@@ -28293,6 +28492,9 @@ export const trackingRequest: PropTypes.Requireable<io.flow.internal.v0.models.T
|
|
|
28293
28492
|
export const trackingRequestUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingRequestUpserted>;
|
|
28294
28493
|
export const trackingResponse: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponse>;
|
|
28295
28494
|
export const trackingResponseUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingResponseUpserted>;
|
|
28495
|
+
export const trackingSubscription: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscription>;
|
|
28496
|
+
export const trackingSubscriptionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionDeleted>;
|
|
28497
|
+
export const trackingSubscriptionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingSubscriptionUpserted>;
|
|
28296
28498
|
export const trackingUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingUpserted>;
|
|
28297
28499
|
export const transactionAdjustment: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustment>;
|
|
28298
28500
|
export const transactionAdjustmentForm: PropTypes.Requireable<io.flow.internal.v0.models.TransactionAdjustmentForm>;
|