@flowio/types 11.24.109 → 11.24.110
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +315 -31
- package/dist/api.d.ts +328 -94
- package/package.json +2 -2
- package/src/api-internal.ts +466 -38
- package/src/api.ts +514 -153
package/dist/api-internal.d.ts
CHANGED
|
@@ -4163,7 +4163,7 @@ declare namespace io.flow.shopify.markets.internal.v0.enums {
|
|
|
4163
4163
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
4164
4164
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
4165
4165
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
4166
|
-
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog';
|
|
4166
|
+
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
4167
4167
|
type ProductStatus = 'active' | 'archived' | 'draft';
|
|
4168
4168
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
4169
4169
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -4840,6 +4840,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4840
4840
|
interface GraphqlMeasurement {
|
|
4841
4841
|
readonly weight?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
4842
4842
|
}
|
|
4843
|
+
interface GraphqlMetafield {
|
|
4844
|
+
readonly key: string;
|
|
4845
|
+
readonly value: string;
|
|
4846
|
+
}
|
|
4843
4847
|
interface GraphqlOption {
|
|
4844
4848
|
readonly id: string;
|
|
4845
4849
|
readonly values: string[];
|
|
@@ -4864,6 +4868,8 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4864
4868
|
readonly createdAt: string;
|
|
4865
4869
|
readonly updatedAt: string;
|
|
4866
4870
|
readonly hasVariantsThatRequiresComponents?: boolean;
|
|
4871
|
+
readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
|
|
4872
|
+
readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
|
|
4867
4873
|
}
|
|
4868
4874
|
interface GraphqlProductImage {
|
|
4869
4875
|
readonly id: string;
|
|
@@ -4884,6 +4890,10 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4884
4890
|
readonly image?: io.flow.shopify.external.v0.models.GraphqlVariantImage;
|
|
4885
4891
|
readonly inventoryItem: io.flow.shopify.external.v0.models.GraphqlInventoryItem;
|
|
4886
4892
|
}
|
|
4893
|
+
interface GraphqlTaxonomyCategory {
|
|
4894
|
+
readonly name: string;
|
|
4895
|
+
readonly fullName: string;
|
|
4896
|
+
}
|
|
4887
4897
|
interface GraphqlVariantImage {
|
|
4888
4898
|
readonly id: string;
|
|
4889
4899
|
}
|
|
@@ -4989,6 +4999,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
4989
4999
|
readonly created_at: string;
|
|
4990
5000
|
readonly updated_at: string;
|
|
4991
5001
|
readonly has_variants_that_requires_components?: boolean;
|
|
5002
|
+
readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
4992
5003
|
}
|
|
4993
5004
|
interface ProductDelete {
|
|
4994
5005
|
readonly id: number;
|
|
@@ -8180,11 +8191,13 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
8180
8191
|
readonly q: string;
|
|
8181
8192
|
readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
8182
8193
|
readonly position: number;
|
|
8194
|
+
readonly block_bulk_update?: boolean;
|
|
8183
8195
|
}
|
|
8184
8196
|
interface DimensionEstimateForm {
|
|
8185
8197
|
readonly q: string;
|
|
8186
8198
|
readonly dimensions: io.flow.ratecard.v0.models.EstimatedDimensions;
|
|
8187
8199
|
readonly position?: number;
|
|
8200
|
+
readonly block_bulk_update?: boolean;
|
|
8188
8201
|
}
|
|
8189
8202
|
interface DimensionEstimateVersion {
|
|
8190
8203
|
readonly id: string;
|
|
@@ -9135,7 +9148,27 @@ declare namespace io.flow.reference.v0.models {
|
|
|
9135
9148
|
readonly offset: number;
|
|
9136
9149
|
}
|
|
9137
9150
|
}
|
|
9151
|
+
declare namespace io.flow.product.v0.models {
|
|
9152
|
+
interface Product {
|
|
9153
|
+
readonly organization_id: string;
|
|
9154
|
+
readonly number: string;
|
|
9155
|
+
readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
9156
|
+
readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
|
|
9157
|
+
readonly item_numbers: string[];
|
|
9158
|
+
readonly updated_at: string;
|
|
9159
|
+
readonly deleted_at?: string;
|
|
9160
|
+
}
|
|
9161
|
+
interface ProductTaxonomyCategory {
|
|
9162
|
+
readonly name: string;
|
|
9163
|
+
readonly full_name: string;
|
|
9164
|
+
}
|
|
9165
|
+
interface ProductTaxonomyData {
|
|
9166
|
+
readonly key: string;
|
|
9167
|
+
readonly value: string[];
|
|
9168
|
+
}
|
|
9169
|
+
}
|
|
9138
9170
|
declare namespace io.flow.tracking.v0.enums {
|
|
9171
|
+
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
9139
9172
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
9140
9173
|
}
|
|
9141
9174
|
declare namespace io.flow.tracking.v0.models {
|
|
@@ -9947,7 +9980,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
9947
9980
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
9948
9981
|
type PendingPayoutTransactionReasonCode = 'waiting_for_full_refund' | 'waiting_for_fulfillment' | 'waiting_for_in_transit' | 'waiting_for_next_payout_date' | 'waiting_for_tracking_info' | 'waiting_for_positive_account_balance' | 'unfulfilled_amount_greater_than_negative_balance' | 'account_payment_hold';
|
|
9949
9982
|
type StatementAttachmentType = 'csv';
|
|
9950
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund';
|
|
9983
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'order_fx' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
9951
9984
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
9952
9985
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
9953
9986
|
}
|
|
@@ -11491,6 +11524,35 @@ declare namespace io.flow.fraud.v0.models {
|
|
|
11491
11524
|
declare namespace io.flow.fraud.v0.unions {
|
|
11492
11525
|
type FraudOrderReference = io.flow.fraud.v0.models.FraudFlowOrderReference | io.flow.fraud.v0.models.FraudPaymentRequestReference;
|
|
11493
11526
|
}
|
|
11527
|
+
declare namespace io.flow.sellability.v0.enums {
|
|
11528
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
11529
|
+
}
|
|
11530
|
+
declare namespace io.flow.sellability.v0.models {
|
|
11531
|
+
interface ProductSellability {
|
|
11532
|
+
readonly organization_id: string;
|
|
11533
|
+
readonly product_id?: string;
|
|
11534
|
+
readonly product_correlation_id: string;
|
|
11535
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
11536
|
+
readonly in_review_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
11537
|
+
}
|
|
11538
|
+
interface ProductSellabilityForm {
|
|
11539
|
+
readonly organization_id: string;
|
|
11540
|
+
readonly product_id?: string;
|
|
11541
|
+
readonly product_correlation_id: string;
|
|
11542
|
+
readonly name: string;
|
|
11543
|
+
readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
11544
|
+
readonly description: string;
|
|
11545
|
+
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
11546
|
+
}
|
|
11547
|
+
interface ProductSellabilityPrice {
|
|
11548
|
+
readonly currency: string;
|
|
11549
|
+
readonly amount: number;
|
|
11550
|
+
}
|
|
11551
|
+
interface SellablilityRegionResult {
|
|
11552
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
11553
|
+
readonly regions: string[];
|
|
11554
|
+
}
|
|
11555
|
+
}
|
|
11494
11556
|
declare namespace io.flow.currency.v0.models {
|
|
11495
11557
|
interface Rate {
|
|
11496
11558
|
readonly id: string;
|
|
@@ -11749,6 +11811,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11749
11811
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
11750
11812
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
11751
11813
|
type AldoItemType = 'physical' | 'digital';
|
|
11814
|
+
type AnshItemType = 'physical' | 'digital';
|
|
11752
11815
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
11753
11816
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
11754
11817
|
type AutoRestrictRule = 'prr-3ce7d556f2464314ab0a3e8eee33e0ce' | 'prr-599c6246a1a24752aeb85e8f79030781' | 'prr-79e41878ea564f9c81cc432a0e84703f' | 'prr-f29c26dc09e04536bc77f9c32786ed70' | 'prr-b186129720f0446eb452a68518437c95';
|
|
@@ -11759,7 +11822,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11759
11822
|
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' | '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';
|
|
11760
11823
|
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';
|
|
11761
11824
|
type BillingTransactionStatus = 'pending_proof' | 'posted';
|
|
11762
|
-
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';
|
|
11825
|
+
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' | 'order_fx' | 'tax_refund' | 'duty_refund' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
11763
11826
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
11764
11827
|
type CalculatorEngine = 'dtce_with_deminimis' | 'dtce_with_inclusive_pricing' | 'dtce_and_us_tax';
|
|
11765
11828
|
type CarrierChargeTransactionType = 'adjustment' | 'reversal' | 'charge' | 'revenue_share';
|
|
@@ -11777,7 +11840,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11777
11840
|
type ChannelOrderFulfillmentStatusCode = 'unfulfilled' | 'fulfilled' | 'partial' | 'cancelled';
|
|
11778
11841
|
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
11779
11842
|
type ChargeEstimateSource = 'global-e' | 'shopify';
|
|
11780
|
-
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge';
|
|
11843
|
+
type ChargeInputType = 'fuelsc' | 'incoterm_ddp' | 'delivery_confirmation' | 'base_charge' | 'package_pickup' | 'insurance' | 'usps_first_mile' | 'oversize_piece' | 'incoterm_dap' | 'emergency_situation' | 'remote_area_delivery' | 'customs_clearance_surcharge' | 'security_surcharge' | 'duties_fx_surcharge' | 'electronic_export_information_surcharge' | 'additional_handling' | 'large_package_surcharge' | 'peak_surcharge';
|
|
11781
11844
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
11782
11845
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
11783
11846
|
type CheckoutAssetType = 'stylesheet' | 'javascript';
|
|
@@ -11823,7 +11886,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11823
11886
|
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
11824
11887
|
type EmptyAttribute = 'irrelevant';
|
|
11825
11888
|
type ErpFileType = 'vendor';
|
|
11826
|
-
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'final_estimate_upserted' | 'final_estimate_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' | 'aldo_item_upserted' | 'aldo_item_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' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | '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' | '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' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_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' | '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' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_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_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_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' | '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_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
11889
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'final_estimate_upserted' | 'final_estimate_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' | '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' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | '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' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | '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' | 'spp_tracker_update_request_upserted' | 'spp_tracker_update_request_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' | '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' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_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_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_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' | '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_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
11827
11890
|
type ExperienceImportType = 'experience_with_settings';
|
|
11828
11891
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
11829
11892
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -11841,7 +11904,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11841
11904
|
type FtpIntent = 'orders_from_flow' | 'pricebooks_from_flow' | 'pricebooks_to_flow' | 'catalog_to_flow' | 'inventory_to_flow';
|
|
11842
11905
|
type FtpProtocol = 'sftp' | 'ftp';
|
|
11843
11906
|
type GoogleAnalyticsPlugin = 'ec';
|
|
11844
|
-
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog';
|
|
11907
|
+
type GraphqlServiceTypes = 'order_update_mutation' | 'shipping_address_validation' | 'bulk_publication_status' | 'country_catalog_sync' | 'inventory_item' | 'product_bundle' | 'shopify_location' | 'shopify_order' | 'sync_product_catalog' | 'shopify_webhook';
|
|
11845
11908
|
type HarmonizationDecisionSource = 'human' | 'legacy_model' | 'enterprise_model';
|
|
11846
11909
|
type HttpMethod = 'get' | 'post';
|
|
11847
11910
|
type ItemClassificationAction = 'ACCEPT' | 'MANUAL' | 'REJECT';
|
|
@@ -11853,6 +11916,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11853
11916
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
11854
11917
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
11855
11918
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
11919
|
+
type LabelEventSource = 'aftership' | 'carrier' | 'flow';
|
|
11856
11920
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system';
|
|
11857
11921
|
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
11858
11922
|
type LabelRequestResultState = 'success' | 'failure';
|
|
@@ -11945,7 +12009,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11945
12009
|
type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
|
|
11946
12010
|
type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
|
|
11947
12011
|
type ShopifyPromotionStatus = 'active' | 'inactive';
|
|
11948
|
-
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
12012
|
+
type ShopifyService = 'payment' | 'duty_tax_calculator' | 'sellability';
|
|
11949
12013
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
11950
12014
|
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
11951
12015
|
type SnoozeSourceType = 'task' | 'invariant';
|
|
@@ -12605,12 +12669,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12605
12669
|
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
12606
12670
|
readonly added_on: string;
|
|
12607
12671
|
}
|
|
12608
|
-
interface AldoItemDeleted {
|
|
12609
|
-
readonly discriminator: 'aldo_item_deleted';
|
|
12610
|
-
readonly event_id: string;
|
|
12611
|
-
readonly timestamp: string;
|
|
12612
|
-
readonly id: string;
|
|
12613
|
-
}
|
|
12614
12672
|
interface AldoItemForm {
|
|
12615
12673
|
readonly number: string;
|
|
12616
12674
|
readonly amount: io.flow.common.v0.models.Price;
|
|
@@ -12618,12 +12676,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12618
12676
|
readonly type: io.flow.internal.v0.enums.AldoItemType;
|
|
12619
12677
|
readonly added_on: string;
|
|
12620
12678
|
}
|
|
12621
|
-
interface AldoItemUpserted {
|
|
12622
|
-
readonly discriminator: 'aldo_item_upserted';
|
|
12623
|
-
readonly event_id: string;
|
|
12624
|
-
readonly timestamp: string;
|
|
12625
|
-
readonly item: io.flow.internal.v0.models.AldoItem;
|
|
12626
|
-
}
|
|
12627
12679
|
interface AlertErrorSummary {
|
|
12628
12680
|
readonly event_id: number;
|
|
12629
12681
|
readonly error: string;
|
|
@@ -12665,6 +12717,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12665
12717
|
readonly name: string;
|
|
12666
12718
|
readonly labels: Record<string, string[]>;
|
|
12667
12719
|
}
|
|
12720
|
+
interface AnshItem {
|
|
12721
|
+
readonly id: string;
|
|
12722
|
+
readonly number: string;
|
|
12723
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
12724
|
+
readonly description?: string;
|
|
12725
|
+
readonly type: io.flow.internal.v0.enums.AnshItemType;
|
|
12726
|
+
readonly added_on: string;
|
|
12727
|
+
}
|
|
12728
|
+
interface AnshItemForm {
|
|
12729
|
+
readonly number: string;
|
|
12730
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
12731
|
+
readonly description?: string;
|
|
12732
|
+
readonly type: io.flow.internal.v0.enums.AnshItemType;
|
|
12733
|
+
readonly added_on: string;
|
|
12734
|
+
}
|
|
12668
12735
|
interface ApmContent {
|
|
12669
12736
|
readonly processor_description: io.flow.internal.v0.unions.ContentItem;
|
|
12670
12737
|
}
|
|
@@ -16171,6 +16238,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16171
16238
|
readonly local: io.flow.common.v0.models.Money;
|
|
16172
16239
|
readonly transaction_created_at: string;
|
|
16173
16240
|
}
|
|
16241
|
+
interface GeRevenueShareTransaction {
|
|
16242
|
+
readonly discriminator: 'ge_revenue_share_transaction';
|
|
16243
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
16244
|
+
readonly ge_revenue_share: io.flow.internal.v0.models.Fee;
|
|
16245
|
+
readonly id: string;
|
|
16246
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
16247
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
16248
|
+
readonly posted_at?: string;
|
|
16249
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
16250
|
+
readonly description: string;
|
|
16251
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
16252
|
+
readonly created_at: string;
|
|
16253
|
+
}
|
|
16174
16254
|
interface GenerateLoadMultipleOrgs {
|
|
16175
16255
|
readonly discriminator: 'generate_load_multiple_orgs';
|
|
16176
16256
|
readonly organization_ids: string[];
|
|
@@ -17350,6 +17430,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17350
17430
|
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
17351
17431
|
readonly value: io.flow.common.v0.models.Price;
|
|
17352
17432
|
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
17433
|
+
readonly paid_at?: string;
|
|
17353
17434
|
readonly posted_at?: string;
|
|
17354
17435
|
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
17355
17436
|
readonly created_at: string;
|
|
@@ -18064,6 +18145,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18064
18145
|
readonly items: io.flow.order.management.v0.models.FulfillmentItem[];
|
|
18065
18146
|
readonly center?: io.flow.fulfillment.v0.models.CenterSummary;
|
|
18066
18147
|
}
|
|
18148
|
+
interface OrderFxTransaction {
|
|
18149
|
+
readonly discriminator: 'order_fx_transaction';
|
|
18150
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
18151
|
+
readonly fx: io.flow.internal.v0.models.Fee;
|
|
18152
|
+
readonly id: string;
|
|
18153
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
18154
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
18155
|
+
readonly posted_at?: string;
|
|
18156
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
18157
|
+
readonly description: string;
|
|
18158
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
18159
|
+
readonly created_at: string;
|
|
18160
|
+
}
|
|
18067
18161
|
interface OrderNote {
|
|
18068
18162
|
readonly id: string;
|
|
18069
18163
|
readonly note: string;
|
|
@@ -20326,12 +20420,42 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20326
20420
|
readonly negative_keywords: string[];
|
|
20327
20421
|
readonly value_threshold_usd?: number;
|
|
20328
20422
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
20423
|
+
readonly effects?: string[];
|
|
20329
20424
|
}
|
|
20330
20425
|
interface RestrictionRuleDecisionForm {
|
|
20331
20426
|
readonly rule_id: string;
|
|
20332
20427
|
readonly decision: io.flow.internal.v0.enums.RestrictionDecision;
|
|
20333
20428
|
readonly product_id: string;
|
|
20334
20429
|
}
|
|
20430
|
+
interface RestrictionRuleDeleted {
|
|
20431
|
+
readonly discriminator: 'restriction_rule_deleted';
|
|
20432
|
+
readonly event_id: string;
|
|
20433
|
+
readonly timestamp: string;
|
|
20434
|
+
readonly id: string;
|
|
20435
|
+
}
|
|
20436
|
+
interface RestrictionRuleEffect {
|
|
20437
|
+
readonly id: string;
|
|
20438
|
+
readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
|
|
20439
|
+
readonly regions: string[];
|
|
20440
|
+
readonly description?: string;
|
|
20441
|
+
}
|
|
20442
|
+
interface RestrictionRuleEffectDeleted {
|
|
20443
|
+
readonly discriminator: 'restriction_rule_effect_deleted';
|
|
20444
|
+
readonly event_id: string;
|
|
20445
|
+
readonly timestamp: string;
|
|
20446
|
+
readonly id: string;
|
|
20447
|
+
}
|
|
20448
|
+
interface RestrictionRuleEffectForm {
|
|
20449
|
+
readonly effect: io.flow.sellability.v0.enums.RuleEffectType;
|
|
20450
|
+
readonly regions: string[];
|
|
20451
|
+
readonly description?: string;
|
|
20452
|
+
}
|
|
20453
|
+
interface RestrictionRuleEffectUpserted {
|
|
20454
|
+
readonly discriminator: 'restriction_rule_effect_upserted';
|
|
20455
|
+
readonly event_id: string;
|
|
20456
|
+
readonly timestamp: string;
|
|
20457
|
+
readonly restriction_rule_effect: io.flow.internal.v0.models.RestrictionRuleEffect;
|
|
20458
|
+
}
|
|
20335
20459
|
interface RestrictionRuleForm {
|
|
20336
20460
|
readonly name: string;
|
|
20337
20461
|
readonly description: string;
|
|
@@ -20341,6 +20465,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20341
20465
|
readonly negative_keywords: string[];
|
|
20342
20466
|
readonly value_threshold_usd?: number;
|
|
20343
20467
|
readonly auto_review_criteria?: io.flow.internal.v0.models.AutoReviewCriteria[];
|
|
20468
|
+
readonly effects?: string[];
|
|
20344
20469
|
}
|
|
20345
20470
|
interface RestrictionRuleMetadata {
|
|
20346
20471
|
readonly rule: io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
@@ -20358,6 +20483,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20358
20483
|
readonly name: string;
|
|
20359
20484
|
readonly description: string;
|
|
20360
20485
|
}
|
|
20486
|
+
interface RestrictionRuleUpserted {
|
|
20487
|
+
readonly discriminator: 'restriction_rule_upserted';
|
|
20488
|
+
readonly event_id: string;
|
|
20489
|
+
readonly timestamp: string;
|
|
20490
|
+
readonly restriction_rule: io.flow.internal.v0.models.RestrictionRule;
|
|
20491
|
+
}
|
|
20361
20492
|
interface RestrictionStatusMetadata {
|
|
20362
20493
|
readonly status: io.flow.internal.v0.enums.RestrictionStatus;
|
|
20363
20494
|
readonly count: number;
|
|
@@ -20641,6 +20772,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20641
20772
|
readonly product_code: string;
|
|
20642
20773
|
readonly customer_id: string;
|
|
20643
20774
|
}
|
|
20775
|
+
interface ShawnRoundtableWorkshopRate {
|
|
20776
|
+
readonly origin_country: string;
|
|
20777
|
+
readonly destination_country: string;
|
|
20778
|
+
readonly weight: number;
|
|
20779
|
+
readonly amount: number;
|
|
20780
|
+
}
|
|
20644
20781
|
interface ShippedItemValue {
|
|
20645
20782
|
readonly item: io.flow.common.v0.models.CatalogItemReference;
|
|
20646
20783
|
readonly taxes: io.flow.common.v0.models.PriceWithBase;
|
|
@@ -20764,6 +20901,60 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20764
20901
|
readonly organization: string;
|
|
20765
20902
|
readonly data: io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
20766
20903
|
}
|
|
20904
|
+
interface ShopifyInventoryItemCreateDeleted {
|
|
20905
|
+
readonly discriminator: 'shopify_inventory_item_create_deleted';
|
|
20906
|
+
readonly event_id: string;
|
|
20907
|
+
readonly timestamp: string;
|
|
20908
|
+
readonly organization: string;
|
|
20909
|
+
readonly id: string;
|
|
20910
|
+
}
|
|
20911
|
+
interface ShopifyInventoryItemCreateUpserted {
|
|
20912
|
+
readonly discriminator: 'shopify_inventory_item_create_upserted';
|
|
20913
|
+
readonly event_id: string;
|
|
20914
|
+
readonly timestamp: string;
|
|
20915
|
+
readonly organization: string;
|
|
20916
|
+
readonly shopify_inventory_item_create: io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent;
|
|
20917
|
+
}
|
|
20918
|
+
interface ShopifyInventoryItemCreateWebhookEvent {
|
|
20919
|
+
readonly id: string;
|
|
20920
|
+
readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
20921
|
+
}
|
|
20922
|
+
interface ShopifyInventoryItemDeleteDeleted {
|
|
20923
|
+
readonly discriminator: 'shopify_inventory_item_delete_deleted';
|
|
20924
|
+
readonly event_id: string;
|
|
20925
|
+
readonly timestamp: string;
|
|
20926
|
+
readonly organization: string;
|
|
20927
|
+
readonly id: string;
|
|
20928
|
+
}
|
|
20929
|
+
interface ShopifyInventoryItemDeleteUpserted {
|
|
20930
|
+
readonly discriminator: 'shopify_inventory_item_delete_upserted';
|
|
20931
|
+
readonly event_id: string;
|
|
20932
|
+
readonly timestamp: string;
|
|
20933
|
+
readonly organization: string;
|
|
20934
|
+
readonly shopify_inventory_item_delete: io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
20935
|
+
}
|
|
20936
|
+
interface ShopifyInventoryItemDeleteWebhookEvent {
|
|
20937
|
+
readonly id: string;
|
|
20938
|
+
readonly inventory_item_delete: io.flow.shopify.external.v0.models.ShopifyInventoryItemDelete;
|
|
20939
|
+
}
|
|
20940
|
+
interface ShopifyInventoryItemUpdateDeleted {
|
|
20941
|
+
readonly discriminator: 'shopify_inventory_item_update_deleted';
|
|
20942
|
+
readonly event_id: string;
|
|
20943
|
+
readonly timestamp: string;
|
|
20944
|
+
readonly organization: string;
|
|
20945
|
+
readonly id: string;
|
|
20946
|
+
}
|
|
20947
|
+
interface ShopifyInventoryItemUpdateUpserted {
|
|
20948
|
+
readonly discriminator: 'shopify_inventory_item_update_upserted';
|
|
20949
|
+
readonly event_id: string;
|
|
20950
|
+
readonly timestamp: string;
|
|
20951
|
+
readonly organization: string;
|
|
20952
|
+
readonly shopify_inventory_item_update: io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
20953
|
+
}
|
|
20954
|
+
interface ShopifyInventoryItemUpdateWebhookEvent {
|
|
20955
|
+
readonly id: string;
|
|
20956
|
+
readonly inventory_item: io.flow.shopify.markets.v0.models.ShopifyInventoryItem;
|
|
20957
|
+
}
|
|
20767
20958
|
interface ShopifyMarketsBestSellingProduct {
|
|
20768
20959
|
readonly id: string;
|
|
20769
20960
|
}
|
|
@@ -21108,6 +21299,60 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21108
21299
|
readonly organization: string;
|
|
21109
21300
|
readonly shopify_product_bundle: io.flow.internal.v0.models.ShopifyProductBundle;
|
|
21110
21301
|
}
|
|
21302
|
+
interface ShopifyProductCreateDeleted {
|
|
21303
|
+
readonly discriminator: 'shopify_product_create_deleted';
|
|
21304
|
+
readonly event_id: string;
|
|
21305
|
+
readonly timestamp: string;
|
|
21306
|
+
readonly organization: string;
|
|
21307
|
+
readonly id: string;
|
|
21308
|
+
}
|
|
21309
|
+
interface ShopifyProductCreateUpserted {
|
|
21310
|
+
readonly discriminator: 'shopify_product_create_upserted';
|
|
21311
|
+
readonly event_id: string;
|
|
21312
|
+
readonly timestamp: string;
|
|
21313
|
+
readonly organization: string;
|
|
21314
|
+
readonly shopify_product_create: io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
|
|
21315
|
+
}
|
|
21316
|
+
interface ShopifyProductCreateWebhookEvent {
|
|
21317
|
+
readonly id: string;
|
|
21318
|
+
readonly product: io.flow.shopify.external.v0.models.Product;
|
|
21319
|
+
}
|
|
21320
|
+
interface ShopifyProductDeleteDeleted {
|
|
21321
|
+
readonly discriminator: 'shopify_product_delete_deleted';
|
|
21322
|
+
readonly event_id: string;
|
|
21323
|
+
readonly timestamp: string;
|
|
21324
|
+
readonly organization: string;
|
|
21325
|
+
readonly id: string;
|
|
21326
|
+
}
|
|
21327
|
+
interface ShopifyProductDeleteUpserted {
|
|
21328
|
+
readonly discriminator: 'shopify_product_delete_upserted';
|
|
21329
|
+
readonly event_id: string;
|
|
21330
|
+
readonly timestamp: string;
|
|
21331
|
+
readonly organization: string;
|
|
21332
|
+
readonly shopify_product_delete: io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
21333
|
+
}
|
|
21334
|
+
interface ShopifyProductDeleteWebhookEvent {
|
|
21335
|
+
readonly id: string;
|
|
21336
|
+
readonly product_delete: io.flow.shopify.external.v0.models.ProductDelete;
|
|
21337
|
+
}
|
|
21338
|
+
interface ShopifyProductUpdateDeleted {
|
|
21339
|
+
readonly discriminator: 'shopify_product_update_deleted';
|
|
21340
|
+
readonly event_id: string;
|
|
21341
|
+
readonly timestamp: string;
|
|
21342
|
+
readonly organization: string;
|
|
21343
|
+
readonly id: string;
|
|
21344
|
+
}
|
|
21345
|
+
interface ShopifyProductUpdateUpserted {
|
|
21346
|
+
readonly discriminator: 'shopify_product_update_upserted';
|
|
21347
|
+
readonly event_id: string;
|
|
21348
|
+
readonly timestamp: string;
|
|
21349
|
+
readonly organization: string;
|
|
21350
|
+
readonly shopify_product_update: io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
21351
|
+
}
|
|
21352
|
+
interface ShopifyProductUpdateWebhookEvent {
|
|
21353
|
+
readonly id: string;
|
|
21354
|
+
readonly product: io.flow.shopify.external.v0.models.Product;
|
|
21355
|
+
}
|
|
21111
21356
|
interface ShopifyProductWrapper {
|
|
21112
21357
|
readonly shopify_product: io.flow.shopify.external.v0.models.Product;
|
|
21113
21358
|
readonly deleted_at?: string;
|
|
@@ -21211,6 +21456,10 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21211
21456
|
readonly shopify_domain: string;
|
|
21212
21457
|
readonly shop_id: string;
|
|
21213
21458
|
}
|
|
21459
|
+
interface ShopifyStripeEvent {
|
|
21460
|
+
readonly id: string;
|
|
21461
|
+
readonly request?: any;
|
|
21462
|
+
}
|
|
21214
21463
|
interface ShopifyWebhook {
|
|
21215
21464
|
readonly id: string;
|
|
21216
21465
|
readonly shop_id: string;
|
|
@@ -21692,13 +21941,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21692
21941
|
readonly tariff_code: string;
|
|
21693
21942
|
readonly duties: Record<string, io.flow.internal.v0.models.Duties>;
|
|
21694
21943
|
}
|
|
21695
|
-
interface TariffCodesExport {
|
|
21696
|
-
readonly discriminator: 'tariff_codes_export';
|
|
21697
|
-
readonly event_id: string;
|
|
21698
|
-
readonly timestamp: string;
|
|
21699
|
-
readonly organization: string;
|
|
21700
|
-
readonly export_id: string;
|
|
21701
|
-
}
|
|
21702
21944
|
interface TariffEligibility {
|
|
21703
21945
|
readonly id: string;
|
|
21704
21946
|
readonly data: io.flow.internal.v0.unions.TariffEligibilityData;
|
|
@@ -21785,6 +22027,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21785
22027
|
readonly description?: string;
|
|
21786
22028
|
readonly category_code?: string;
|
|
21787
22029
|
}
|
|
22030
|
+
interface TaxDutyDeltaTransaction {
|
|
22031
|
+
readonly discriminator: 'tax_duty_delta_transaction';
|
|
22032
|
+
readonly order: io.flow.internal.v0.models.BillingOrderTransactionOrderReference;
|
|
22033
|
+
readonly id: string;
|
|
22034
|
+
readonly type: io.flow.internal.v0.enums.BillingTransactionType;
|
|
22035
|
+
readonly status: io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
22036
|
+
readonly posted_at?: string;
|
|
22037
|
+
readonly value: io.flow.common.v0.models.Price;
|
|
22038
|
+
readonly description: string;
|
|
22039
|
+
readonly statement?: io.flow.internal.v0.models.BillingStatementReference;
|
|
22040
|
+
readonly created_at: string;
|
|
22041
|
+
}
|
|
21788
22042
|
interface TaxRemittanceTransaction {
|
|
21789
22043
|
readonly discriminator: 'tax_remittance_transaction';
|
|
21790
22044
|
readonly order: io.flow.internal.v0.models.BillingOrderSummary;
|
|
@@ -22434,7 +22688,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22434
22688
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
22435
22689
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
22436
22690
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
22437
|
-
type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.FinalEstimateUpserted | io.flow.internal.v0.models.FinalEstimateDeleted | 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.AldoItemUpserted | io.flow.internal.v0.models.AldoItemDeleted | 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.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | 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.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.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | 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.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.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | 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.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | 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.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.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22691
|
+
type Event = io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.FinalEstimateUpserted | io.flow.internal.v0.models.FinalEstimateDeleted | 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.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.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | 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.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | 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.SppTrackerUpdateRequestUpserted | io.flow.internal.v0.models.SppTrackerUpdateRequestDeleted | 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.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.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | 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.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | 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.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.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
22438
22692
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
22439
22693
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
22440
22694
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -22490,7 +22744,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
22490
22744
|
type TaskMetadata = io.flow.internal.v0.models.StatementCreationMetadata | io.flow.internal.v0.models.AccountingPendingOrderMetadata;
|
|
22491
22745
|
type TaxAmount = io.flow.internal.v0.models.CalculatedTaxAmount | io.flow.internal.v0.models.NoCalculatedTaxAmount;
|
|
22492
22746
|
type Tracker = io.flow.internal.v0.models.GoogleAnalytics | io.flow.internal.v0.models.GoogleGlobalSiteTag | io.flow.internal.v0.models.GoogleTagManager | io.flow.internal.v0.models.FacebookPixel | io.flow.internal.v0.models.SnapchatPixel;
|
|
22493
|
-
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction;
|
|
22747
|
+
type Transaction = io.flow.internal.v0.models.InvoiceTransaction | io.flow.internal.v0.models.ManualTransaction | io.flow.internal.v0.models.ProcessingTransaction | io.flow.internal.v0.models.SubscriptionTransaction | io.flow.internal.v0.models.TaxRemittanceTransaction | io.flow.internal.v0.models.TransferTransaction | io.flow.internal.v0.models.VirtualCardTransaction | io.flow.internal.v0.models.DisputeTransaction | io.flow.internal.v0.models.ChannelTransaction | io.flow.internal.v0.models.LabelTransaction | io.flow.internal.v0.models.OrderTransaction | io.flow.internal.v0.models.ChannelBilledTransaction | io.flow.internal.v0.models.TaxTransaction | io.flow.internal.v0.models.DutyTransaction | io.flow.internal.v0.models.TrueupTransaction | io.flow.internal.v0.models.CarrierChargeTransaction | io.flow.internal.v0.models.OrderFxTransaction | io.flow.internal.v0.models.GeRevenueShareTransaction | io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
22494
22748
|
type TransactionSummary = io.flow.internal.v0.models.PaymentSummaryV2 | io.flow.internal.v0.models.FraudSummary;
|
|
22495
22749
|
type ValidationRule = io.flow.internal.v0.models.ValidationCharacterLength;
|
|
22496
22750
|
}
|
|
@@ -22593,10 +22847,8 @@ export declare type AfterpayRefundDeleted = io.flow.internal.v0.models.AfterpayR
|
|
|
22593
22847
|
export declare type AfterpayRefundUpserted = io.flow.internal.v0.models.AfterpayRefundUpserted;
|
|
22594
22848
|
export declare type AftershipWebhook = io.flow.internal.v0.models.AftershipWebhook;
|
|
22595
22849
|
export declare type AldoItem = io.flow.internal.v0.models.AldoItem;
|
|
22596
|
-
export declare type AldoItemDeleted = io.flow.internal.v0.models.AldoItemDeleted;
|
|
22597
22850
|
export declare type AldoItemForm = io.flow.internal.v0.models.AldoItemForm;
|
|
22598
22851
|
export declare type AldoItemType = io.flow.internal.v0.enums.AldoItemType;
|
|
22599
|
-
export declare type AldoItemUpserted = io.flow.internal.v0.models.AldoItemUpserted;
|
|
22600
22852
|
export declare type AlertErrorSummary = io.flow.internal.v0.models.AlertErrorSummary;
|
|
22601
22853
|
export declare type AlertFailureSummary = io.flow.internal.v0.models.AlertFailureSummary;
|
|
22602
22854
|
export declare type AlertFailureSummaryDetail = io.flow.internal.v0.models.AlertFailureSummaryDetail;
|
|
@@ -22606,6 +22858,9 @@ export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
|
22606
22858
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
22607
22859
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
22608
22860
|
export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
22861
|
+
export declare type AnshItem = io.flow.internal.v0.models.AnshItem;
|
|
22862
|
+
export declare type AnshItemForm = io.flow.internal.v0.models.AnshItemForm;
|
|
22863
|
+
export declare type AnshItemType = io.flow.internal.v0.enums.AnshItemType;
|
|
22609
22864
|
export declare type AnyDangerousGoods = io.flow.internal.v0.enums.AnyDangerousGoods;
|
|
22610
22865
|
export declare type ApiCallReferenceId = io.flow.internal.v0.enums.ApiCallReferenceId;
|
|
22611
22866
|
export declare type ApmContent = io.flow.internal.v0.models.ApmContent;
|
|
@@ -23255,6 +23510,7 @@ export declare type FxRevenueRecognitionOrder = io.flow.internal.v0.models.FxRev
|
|
|
23255
23510
|
export declare type FxRevenueRecognitionOrganization = io.flow.internal.v0.models.FxRevenueRecognitionOrganization;
|
|
23256
23511
|
export declare type FxRevenueRecognitionRate = io.flow.internal.v0.models.FxRevenueRecognitionRate;
|
|
23257
23512
|
export declare type FxRevenueRecognitionSource = io.flow.internal.v0.models.FxRevenueRecognitionSource;
|
|
23513
|
+
export declare type GeRevenueShareTransaction = io.flow.internal.v0.models.GeRevenueShareTransaction;
|
|
23258
23514
|
export declare type GenerateLoad = io.flow.internal.v0.unions.GenerateLoad;
|
|
23259
23515
|
export declare type GenerateLoadMultipleOrgs = io.flow.internal.v0.models.GenerateLoadMultipleOrgs;
|
|
23260
23516
|
export declare type GenerateLoadSingleOrg = io.flow.internal.v0.models.GenerateLoadSingleOrg;
|
|
@@ -23383,6 +23639,7 @@ export declare type LabelCreationJobSummary = io.flow.internal.v0.models.LabelCr
|
|
|
23383
23639
|
export declare type LabelCreationRequestForm = io.flow.internal.v0.models.LabelCreationRequestForm;
|
|
23384
23640
|
export declare type LabelCreationStatus = io.flow.internal.v0.enums.LabelCreationStatus;
|
|
23385
23641
|
export declare type LabelDestination = io.flow.internal.v0.models.LabelDestination;
|
|
23642
|
+
export declare type LabelEventSource = io.flow.internal.v0.enums.LabelEventSource;
|
|
23386
23643
|
export declare type LabelGenerationSettings = io.flow.internal.v0.models.LabelGenerationSettings;
|
|
23387
23644
|
export declare type LabelGenerationSettingsDeleted = io.flow.internal.v0.models.LabelGenerationSettingsDeleted;
|
|
23388
23645
|
export declare type LabelGenerationSettingsForm = io.flow.internal.v0.models.LabelGenerationSettingsForm;
|
|
@@ -23611,6 +23868,7 @@ export declare type OrderDetail = io.flow.internal.v0.models.OrderDetail;
|
|
|
23611
23868
|
export declare type OrderEditSummary = io.flow.internal.v0.models.OrderEditSummary;
|
|
23612
23869
|
export declare type OrderFulfillmentDeleted = io.flow.internal.v0.models.OrderFulfillmentDeleted;
|
|
23613
23870
|
export declare type OrderFulfillmentUpserted = io.flow.internal.v0.models.OrderFulfillmentUpserted;
|
|
23871
|
+
export declare type OrderFxTransaction = io.flow.internal.v0.models.OrderFxTransaction;
|
|
23614
23872
|
export declare type OrderLifecycleEvent = io.flow.internal.v0.enums.OrderLifecycleEvent;
|
|
23615
23873
|
export declare type OrderNote = io.flow.internal.v0.models.OrderNote;
|
|
23616
23874
|
export declare type OrderNoteForm = io.flow.internal.v0.models.OrderNoteForm;
|
|
@@ -24000,10 +24258,16 @@ export declare type RestrictionProductRequestForm = io.flow.internal.v0.models.R
|
|
|
24000
24258
|
export declare type RestrictionProductSummary = io.flow.internal.v0.models.RestrictionProductSummary;
|
|
24001
24259
|
export declare type RestrictionRule = io.flow.internal.v0.models.RestrictionRule;
|
|
24002
24260
|
export declare type RestrictionRuleDecisionForm = io.flow.internal.v0.models.RestrictionRuleDecisionForm;
|
|
24261
|
+
export declare type RestrictionRuleDeleted = io.flow.internal.v0.models.RestrictionRuleDeleted;
|
|
24262
|
+
export declare type RestrictionRuleEffect = io.flow.internal.v0.models.RestrictionRuleEffect;
|
|
24263
|
+
export declare type RestrictionRuleEffectDeleted = io.flow.internal.v0.models.RestrictionRuleEffectDeleted;
|
|
24264
|
+
export declare type RestrictionRuleEffectForm = io.flow.internal.v0.models.RestrictionRuleEffectForm;
|
|
24265
|
+
export declare type RestrictionRuleEffectUpserted = io.flow.internal.v0.models.RestrictionRuleEffectUpserted;
|
|
24003
24266
|
export declare type RestrictionRuleForm = io.flow.internal.v0.models.RestrictionRuleForm;
|
|
24004
24267
|
export declare type RestrictionRuleMetadata = io.flow.internal.v0.models.RestrictionRuleMetadata;
|
|
24005
24268
|
export declare type RestrictionRuleOverride = io.flow.internal.v0.models.RestrictionRuleOverride;
|
|
24006
24269
|
export declare type RestrictionRuleSummary = io.flow.internal.v0.models.RestrictionRuleSummary;
|
|
24270
|
+
export declare type RestrictionRuleUpserted = io.flow.internal.v0.models.RestrictionRuleUpserted;
|
|
24007
24271
|
export declare type RestrictionStatus = io.flow.internal.v0.enums.RestrictionStatus;
|
|
24008
24272
|
export declare type RestrictionStatusMetadata = io.flow.internal.v0.models.RestrictionStatusMetadata;
|
|
24009
24273
|
export declare type RestrictionsDailyops = io.flow.internal.v0.models.RestrictionsDailyops;
|
|
@@ -24057,6 +24321,7 @@ export declare type SessionRollout = io.flow.internal.v0.models.SessionRollout;
|
|
|
24057
24321
|
export declare type SessionRolloutForm = io.flow.internal.v0.models.SessionRolloutForm;
|
|
24058
24322
|
export declare type SetupBlockPutForm = io.flow.internal.v0.models.SetupBlockPutForm;
|
|
24059
24323
|
export declare type SfExpress = io.flow.internal.v0.models.SfExpress;
|
|
24324
|
+
export declare type ShawnRoundtableWorkshopRate = io.flow.internal.v0.models.ShawnRoundtableWorkshopRate;
|
|
24060
24325
|
export declare type ShippedItemValue = io.flow.internal.v0.models.ShippedItemValue;
|
|
24061
24326
|
export declare type ShippingLane = io.flow.internal.v0.models.ShippingLane;
|
|
24062
24327
|
export declare type ShippingMethodReference = io.flow.internal.v0.models.ShippingMethodReference;
|
|
@@ -24084,6 +24349,15 @@ export declare type ShopifyIncotermConfiguration = io.flow.internal.v0.enums.Sho
|
|
|
24084
24349
|
export declare type ShopifyIncotermIncludes = io.flow.internal.v0.models.ShopifyIncotermIncludes;
|
|
24085
24350
|
export declare type ShopifyIncotermSummaryErrorData = io.flow.internal.v0.models.ShopifyIncotermSummaryErrorData;
|
|
24086
24351
|
export declare type ShopifyIncotermSummaryErrorPublished = io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished;
|
|
24352
|
+
export declare type ShopifyInventoryItemCreateDeleted = io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted;
|
|
24353
|
+
export declare type ShopifyInventoryItemCreateUpserted = io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted;
|
|
24354
|
+
export declare type ShopifyInventoryItemCreateWebhookEvent = io.flow.internal.v0.models.ShopifyInventoryItemCreateWebhookEvent;
|
|
24355
|
+
export declare type ShopifyInventoryItemDeleteDeleted = io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted;
|
|
24356
|
+
export declare type ShopifyInventoryItemDeleteUpserted = io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted;
|
|
24357
|
+
export declare type ShopifyInventoryItemDeleteWebhookEvent = io.flow.internal.v0.models.ShopifyInventoryItemDeleteWebhookEvent;
|
|
24358
|
+
export declare type ShopifyInventoryItemUpdateDeleted = io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted;
|
|
24359
|
+
export declare type ShopifyInventoryItemUpdateUpserted = io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted;
|
|
24360
|
+
export declare type ShopifyInventoryItemUpdateWebhookEvent = io.flow.internal.v0.models.ShopifyInventoryItemUpdateWebhookEvent;
|
|
24087
24361
|
export declare type ShopifyMarketsBestSellingProduct = io.flow.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
24088
24362
|
export declare type ShopifyMarketsBestSellingProductDeleted = io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted;
|
|
24089
24363
|
export declare type ShopifyMarketsBestSellingProductUpserted = io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted;
|
|
@@ -24151,6 +24425,15 @@ export declare type ShopifyProductBundle = io.flow.internal.v0.models.ShopifyPro
|
|
|
24151
24425
|
export declare type ShopifyProductBundleDeleted = io.flow.internal.v0.models.ShopifyProductBundleDeleted;
|
|
24152
24426
|
export declare type ShopifyProductBundleUnderlying = io.flow.internal.v0.models.ShopifyProductBundleUnderlying;
|
|
24153
24427
|
export declare type ShopifyProductBundleUpserted = io.flow.internal.v0.models.ShopifyProductBundleUpserted;
|
|
24428
|
+
export declare type ShopifyProductCreateDeleted = io.flow.internal.v0.models.ShopifyProductCreateDeleted;
|
|
24429
|
+
export declare type ShopifyProductCreateUpserted = io.flow.internal.v0.models.ShopifyProductCreateUpserted;
|
|
24430
|
+
export declare type ShopifyProductCreateWebhookEvent = io.flow.internal.v0.models.ShopifyProductCreateWebhookEvent;
|
|
24431
|
+
export declare type ShopifyProductDeleteDeleted = io.flow.internal.v0.models.ShopifyProductDeleteDeleted;
|
|
24432
|
+
export declare type ShopifyProductDeleteUpserted = io.flow.internal.v0.models.ShopifyProductDeleteUpserted;
|
|
24433
|
+
export declare type ShopifyProductDeleteWebhookEvent = io.flow.internal.v0.models.ShopifyProductDeleteWebhookEvent;
|
|
24434
|
+
export declare type ShopifyProductUpdateDeleted = io.flow.internal.v0.models.ShopifyProductUpdateDeleted;
|
|
24435
|
+
export declare type ShopifyProductUpdateUpserted = io.flow.internal.v0.models.ShopifyProductUpdateUpserted;
|
|
24436
|
+
export declare type ShopifyProductUpdateWebhookEvent = io.flow.internal.v0.models.ShopifyProductUpdateWebhookEvent;
|
|
24154
24437
|
export declare type ShopifyProductWrapper = io.flow.internal.v0.models.ShopifyProductWrapper;
|
|
24155
24438
|
export declare type ShopifyPromoForm = io.flow.internal.v0.models.ShopifyPromoForm;
|
|
24156
24439
|
export declare type ShopifyPromotion = io.flow.internal.v0.models.ShopifyPromotion;
|
|
@@ -24179,6 +24462,7 @@ export declare type ShopifyShopDeleted = io.flow.internal.v0.models.ShopifyShopD
|
|
|
24179
24462
|
export declare type ShopifyShopStatistics = io.flow.internal.v0.models.ShopifyShopStatistics;
|
|
24180
24463
|
export declare type ShopifyShopUpserted = io.flow.internal.v0.models.ShopifyShopUpserted;
|
|
24181
24464
|
export declare type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStoreDetail;
|
|
24465
|
+
export declare type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
|
|
24182
24466
|
export declare type ShopifyWebhook = io.flow.internal.v0.models.ShopifyWebhook;
|
|
24183
24467
|
export declare type ShopifyWebhookEvent = io.flow.internal.v0.models.ShopifyWebhookEvent;
|
|
24184
24468
|
export declare type ShopifyWebhookForm = io.flow.internal.v0.models.ShopifyWebhookForm;
|
|
@@ -24259,7 +24543,6 @@ export declare type SubscriptionTransaction = io.flow.internal.v0.models.Subscri
|
|
|
24259
24543
|
export declare type SuggestionAction = io.flow.internal.v0.enums.SuggestionAction;
|
|
24260
24544
|
export declare type SupportedLabels = io.flow.internal.v0.models.SupportedLabels;
|
|
24261
24545
|
export declare type TariffCodeDuty = io.flow.internal.v0.models.TariffCodeDuty;
|
|
24262
|
-
export declare type TariffCodesExport = io.flow.internal.v0.models.TariffCodesExport;
|
|
24263
24546
|
export declare type TariffEligibility = io.flow.internal.v0.models.TariffEligibility;
|
|
24264
24547
|
export declare type TariffEligibilityData = io.flow.internal.v0.unions.TariffEligibilityData;
|
|
24265
24548
|
export declare type TariffEligibilityForm = io.flow.internal.v0.unions.TariffEligibilityForm;
|
|
@@ -24281,6 +24564,7 @@ export declare type TaxCalculationErrorCode = io.flow.internal.v0.enums.TaxCalcu
|
|
|
24281
24564
|
export declare type TaxCalculationForm = io.flow.internal.v0.models.TaxCalculationForm;
|
|
24282
24565
|
export declare type TaxCalculationLineItem = io.flow.internal.v0.models.TaxCalculationLineItem;
|
|
24283
24566
|
export declare type TaxCalculationLineItemForm = io.flow.internal.v0.models.TaxCalculationLineItemForm;
|
|
24567
|
+
export declare type TaxDutyDeltaTransaction = io.flow.internal.v0.models.TaxDutyDeltaTransaction;
|
|
24284
24568
|
export declare type TaxParty = io.flow.internal.v0.enums.TaxParty;
|
|
24285
24569
|
export declare type TaxRemittanceTransaction = io.flow.internal.v0.models.TaxRemittanceTransaction;
|
|
24286
24570
|
export declare type TaxRemittanceTransactionDeleted = io.flow.internal.v0.models.TaxRemittanceTransactionDeleted;
|