@flowio/api-internal-prop-types 9.24.100 → 9.24.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +327 -5
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +327 -5
- package/src/api-internal.js +409 -50
package/lib/api-internal.d.ts
CHANGED
|
@@ -3887,6 +3887,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
3887
3887
|
readonly 'package'?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
3888
3888
|
readonly 'origin'?: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3889
3889
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
3890
|
+
readonly 'reference_id'?: string;
|
|
3891
|
+
readonly 'hub_code'?: string;
|
|
3890
3892
|
}
|
|
3891
3893
|
|
|
3892
3894
|
interface CrossdockShipment {
|
|
@@ -3909,6 +3911,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
3909
3911
|
readonly 'service'?: string;
|
|
3910
3912
|
readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3911
3913
|
readonly 'package_dimensions_source'?: io.flow.label.v0.enums.PackageDimensionsSource;
|
|
3914
|
+
readonly 'reference_id'?: string;
|
|
3912
3915
|
}
|
|
3913
3916
|
|
|
3914
3917
|
interface DetailedShippingNotificationForm {
|
|
@@ -4087,6 +4090,7 @@ declare namespace io.flow.label.v0.models {
|
|
|
4087
4090
|
readonly 'items': io.flow.common.v0.models.LineItemForm[];
|
|
4088
4091
|
readonly 'center_key'?: string;
|
|
4089
4092
|
readonly 'direction'?: io.flow.label.v0.enums.Direction;
|
|
4093
|
+
readonly 'reference_id'?: string;
|
|
4090
4094
|
}
|
|
4091
4095
|
|
|
4092
4096
|
interface SummaryShippingNotificationForm {
|
|
@@ -4267,6 +4271,7 @@ declare namespace io.flow.external.paypal.v1.models {
|
|
|
4267
4271
|
readonly 'supporting_info'?: io.flow.external.paypal.v1.models.SupportingInfo;
|
|
4268
4272
|
readonly 'allowed_response_options'?: io.flow.external.paypal.v1.models.AllowedResponseOptions;
|
|
4269
4273
|
readonly 'links'?: io.flow.external.paypal.v1.models.Link[];
|
|
4274
|
+
readonly 'previous_status'?: io.flow.external.paypal.v1.enums.DisputeStatus;
|
|
4270
4275
|
}
|
|
4271
4276
|
|
|
4272
4277
|
interface DisputeExtension {
|
|
@@ -5209,6 +5214,7 @@ declare namespace io.flow.adyen.v0.enums {
|
|
|
5209
5214
|
type Channel = 'web';
|
|
5210
5215
|
type Contract = 'RECURRING';
|
|
5211
5216
|
type DeviceChannel = 'app' | 'browser';
|
|
5217
|
+
type DisputeStatus = 'Accepted' | 'Expired' | 'Lost' | 'Pending' | 'Responded' | 'Undefended' | 'Unresponded' | 'Won';
|
|
5212
5218
|
type EventCode = 'AUTHORISATION' | 'CANCELLATION' | 'REFUND' | 'CANCEL_OR_REFUND' | 'CAPTURE' | 'CAPTURE_FAILED' | 'REFUND_FAILED' | 'REFUNDED_REVERSED' | 'PAIDOUT_REVERSED' | 'REQUEST_FOR_INFORMATION' | 'CHARGEBACK' | 'CHARGEBACK_REVERSED' | 'NOTIFICATION_OF_CHARGEBACK' | 'NOTIFICATION_OF_FRAUD' | 'MANUAL_REVIEW_ACCEPT' | 'MANUAL_REVIEW_REJECT' | 'RECURRING_CONTRACT' | 'PAYOUT_EXPIRE' | 'PAYOUT_DECLINE' | 'PAYOUT_THIRDPARTY' | 'REFUND_WITH_DATA' | 'AUTHORISE_REFERRAL' | 'EXPIRE' | 'FRAUD_ONLY' | 'FUND_TRANSFER' | 'HANDLED_EXTERNALLY' | 'OFFER_CLOSED' | 'ORDER_OPENED' | 'ORDER_CLOSED' | 'PENDING' | 'PROCESS_RETRY' | 'REPORT_AVAILABLE' | 'SECOND_CHARGEBACK' | 'PREARBITRATION_WON' | 'PREARBITRATION_LOST' | 'INFORMATION_SUPPLIED' | 'DISPUTE_DEFENSE_PERIOD_ENDED' | 'ISSUER_RESPONSE_TIMEFRAME_EXPIRED';
|
|
5213
5219
|
type HttpRedirectMethod = 'GET' | 'POST';
|
|
5214
5220
|
type Operation = 'cancel' | 'capture' | 'refund';
|
|
@@ -5367,6 +5373,8 @@ declare namespace io.flow.adyen.v0.models {
|
|
|
5367
5373
|
readonly 'modificationMerchantReferences': string;
|
|
5368
5374
|
readonly 'chargebackSchemeCode': string;
|
|
5369
5375
|
readonly 'defensePeriodEndsAt'?: string;
|
|
5376
|
+
readonly 'disputeStatus'?: io.flow.adyen.v0.enums.DisputeStatus;
|
|
5377
|
+
readonly 'defendable'?: string;
|
|
5370
5378
|
}
|
|
5371
5379
|
|
|
5372
5380
|
interface Error {
|
|
@@ -7220,6 +7228,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
7220
7228
|
readonly 'location_id'?: number;
|
|
7221
7229
|
readonly 'subtotal'?: number;
|
|
7222
7230
|
readonly 'total_tax'?: number;
|
|
7231
|
+
readonly 'total_tax_set'?: io.flow.shopify.markets.v0.models.ShopifyOrderMoneySet;
|
|
7223
7232
|
}
|
|
7224
7233
|
|
|
7225
7234
|
interface ShopifyOrderShippingLine {
|
|
@@ -7458,6 +7467,7 @@ declare namespace io.flow.order.price.v0.models {
|
|
|
7458
7467
|
|
|
7459
7468
|
declare namespace io.flow.channel.internal.v0.enums {
|
|
7460
7469
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
7470
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
7461
7471
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
7462
7472
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
7463
7473
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
@@ -7513,6 +7523,15 @@ declare namespace io.flow.channel.internal.v0.models {
|
|
|
7513
7523
|
readonly 'external_order': any/*object*/;
|
|
7514
7524
|
}
|
|
7515
7525
|
|
|
7526
|
+
interface ChannelOrderAcceptanceFailure {
|
|
7527
|
+
readonly 'id': string;
|
|
7528
|
+
readonly 'organization_id': string;
|
|
7529
|
+
readonly 'channel_id': string;
|
|
7530
|
+
readonly 'payment_request_id': string;
|
|
7531
|
+
readonly 'code': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
7532
|
+
readonly 'reason': string;
|
|
7533
|
+
}
|
|
7534
|
+
|
|
7516
7535
|
interface ChannelOrderAcceptanceForm {
|
|
7517
7536
|
readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
7518
7537
|
}
|
|
@@ -8642,6 +8661,12 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8642
8661
|
readonly 'display'?: io.flow.experience.v0.enums.DeliveredDutyDisplayType;
|
|
8643
8662
|
}
|
|
8644
8663
|
|
|
8664
|
+
interface DestinationContactDetail {
|
|
8665
|
+
readonly 'title': string;
|
|
8666
|
+
readonly 'country': string;
|
|
8667
|
+
readonly 'import_identifier': string;
|
|
8668
|
+
}
|
|
8669
|
+
|
|
8645
8670
|
interface Discount {
|
|
8646
8671
|
readonly 'discriminator': 'discount';
|
|
8647
8672
|
readonly 'id': string;
|
|
@@ -9004,6 +9029,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
9004
9029
|
readonly 'tax_registration'?: io.flow.harmonization.v0.models.TaxRegistration;
|
|
9005
9030
|
readonly 'geo'?: io.flow.experience.v0.models.OrderGeo;
|
|
9006
9031
|
readonly 'device_details'?: io.flow.payment.v0.unions.DeviceDetails;
|
|
9032
|
+
readonly 'destination_contact_details'?: io.flow.experience.v0.models.DestinationContactDetail[];
|
|
9007
9033
|
}
|
|
9008
9034
|
|
|
9009
9035
|
interface OrderAddress {
|
|
@@ -10656,6 +10682,10 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
10656
10682
|
readonly 'in_transit': io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10657
10683
|
readonly 'delivered'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10658
10684
|
readonly 'rejected'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10685
|
+
readonly 'returned'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10686
|
+
readonly 'crossed_border'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10687
|
+
readonly 'destroyed'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10688
|
+
readonly 'return_reversal'?: io.flow.tracking.v0.models.LabelTrackingSummaryUpdate;
|
|
10659
10689
|
}
|
|
10660
10690
|
|
|
10661
10691
|
interface LabelTrackingSummaryUpdate {
|
|
@@ -11036,6 +11066,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11036
11066
|
readonly 'local'?: io.flow.catalog.v0.models.Local;
|
|
11037
11067
|
readonly 'created_at'?: string;
|
|
11038
11068
|
readonly 'updated_at'?: string;
|
|
11069
|
+
readonly 'deleted_at'?: string;
|
|
11039
11070
|
}
|
|
11040
11071
|
|
|
11041
11072
|
interface ItemAttributesPatchForm {
|
|
@@ -11053,6 +11084,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11053
11084
|
readonly 'attributes'?: Record<string, string>;
|
|
11054
11085
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
11055
11086
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
11087
|
+
readonly 'deleted_at'?: string;
|
|
11056
11088
|
}
|
|
11057
11089
|
|
|
11058
11090
|
interface ItemFormOverlay {
|
|
@@ -11066,6 +11098,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11066
11098
|
readonly 'attributes'?: Record<string, string>;
|
|
11067
11099
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
11068
11100
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
11101
|
+
readonly 'deleted_at'?: string;
|
|
11069
11102
|
}
|
|
11070
11103
|
|
|
11071
11104
|
interface ItemFormOverlayForm {
|
|
@@ -11078,6 +11111,7 @@ declare namespace io.flow.catalog.v0.models {
|
|
|
11078
11111
|
readonly 'attributes'?: Record<string, string>;
|
|
11079
11112
|
readonly 'dimensions'?: io.flow.common.v0.models.Dimensions;
|
|
11080
11113
|
readonly 'images'?: io.flow.catalog.v0.models.ImageForm[];
|
|
11114
|
+
readonly 'deleted_at'?: string;
|
|
11081
11115
|
}
|
|
11082
11116
|
|
|
11083
11117
|
interface ItemPriceUpdateForm {
|
|
@@ -11567,7 +11601,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
11567
11601
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee';
|
|
11568
11602
|
type PayoutAttachmentType = 'transactions';
|
|
11569
11603
|
type PayoutStatusFailureCode = 'invalid_account_number' | 'account_closed' | 'could_not_process';
|
|
11570
|
-
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';
|
|
11604
|
+
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';
|
|
11571
11605
|
type StatementAttachmentType = 'csv';
|
|
11572
11606
|
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';
|
|
11573
11607
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
@@ -13904,6 +13938,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13904
13938
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
13905
13939
|
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
13906
13940
|
type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
|
|
13941
|
+
type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
|
|
13907
13942
|
type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
|
|
13908
13943
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
|
|
13909
13944
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
|
|
@@ -13939,6 +13974,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13939
13974
|
type DiscountRequestOrderEntitlementKey = 'subtotal';
|
|
13940
13975
|
type DisputeBillable = 'flow' | 'organization';
|
|
13941
13976
|
type DisputeCategory = 'friendly_fraud' | 'true_fraud' | 'processing_error';
|
|
13977
|
+
type DisputeDefenseOutcome = 'defended' | 'undefended' | 'undefendable';
|
|
13942
13978
|
type DisputeEvidence = 'proof_of_delivery' | 'proof_of_fulfillment' | 'other';
|
|
13943
13979
|
type DisputeImportStatus = 'new' | 'processing' | 'completed' | 'failed';
|
|
13944
13980
|
type DisputeImportType = 'adyen_dispute' | 'paypal_dispute';
|
|
@@ -13958,7 +13994,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13958
13994
|
type EldarItemType = 'digital' | 'physical';
|
|
13959
13995
|
type EmptyAttribute = 'irrelevant';
|
|
13960
13996
|
type ErpFileType = 'vendor';
|
|
13961
|
-
type EventType = 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | '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' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13997
|
+
type EventType = 'adjusted_estimates_upserted' | 'adjusted_estimates_deleted' | 'adyen_authorization_deleted' | 'adyen_authorization_upserted' | 'adyen_cancel_deleted' | 'adyen_cancel_upserted' | 'adyen_capture_deleted' | 'adyen_capture_upserted' | 'adyen_refund_deleted' | 'adyen_refund_upserted' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'index_assignment_upserted' | 'index_assignment_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'transaction_statement_upserted' | 'transaction_statement_deleted' | 'daily_value_upserted' | 'daily_value_deleted' | 'revenue_record_upserted' | 'revenue_record_deleted' | 'other_record_upserted' | 'other_record_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_deleted' | 'label_generation_settings_upserted' | 'label_generation_settings_deleted' | 'catalog_import_request' | 'exclusion_rule_upserted' | 'exclusion_rule_deleted' | 'exclusion_rule_export_request' | 'catalog_item_region_availabilities_published' | 'return_policy_upserted' | 'return_policy_deleted' | 'return_policy_item_result_upserted' | 'return_policy_item_result_deleted' | 'catalog_settings_upserted' | 'catalog_settings_deleted' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'channel_order_acceptance_failed' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'standalone_attachment_upserted' | 'standalone_attachment_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'organization_bank_account_upserted' | 'organization_bank_account_deleted' | 'billing_csv_transaction_upserted' | 'billing_csv_transaction_deleted' | 'label_invoice_request_upserted' | 'label_invoice_request_deleted' | 'carrier_charge_upserted' | 'carrier_charge_deleted' | 'bank_payment_order_upserted' | 'bank_payment_order_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_review_authorization_upserted' | 'fraud_review_authorization_deleted' | 'fraud_pending_review_authorization_upserted' | 'fraud_pending_review_authorization_deleted' | 'fraud_review_authorization_decision_upserted' | 'fraud_review_authorization_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'manual_review_rule_upserted' | 'manual_review_rule_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'center_defaults_upserted' | 'center_defaults_deleted' | 'fulfillment_fallbacks_upserted' | 'fulfillment_fallbacks_deleted' | 'pregenerated_request_event' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'harmonization_classification_statistics_published' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_request_error_upserted' | 'label_request_error_deleted' | 'order_validation_failure_upserted' | 'order_validation_failure_deleted' | 'order_validation_upserted' | 'order_validation_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'ratecard_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_markets_webhook_registration_upserted' | 'shopify_markets_webhook_registration_deleted' | 'shopify_markets_shop_statistics_upserted' | 'shopify_markets_shop_statistics_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'svitlana_item_upserted' | 'svitlana_item_deleted' | 'colm_item_upserted' | 'colm_item_deleted' | 'eldar_item_upserted' | 'eldar_item_deleted' | 'harinath_item_upserted' | 'harinath_item_deleted' | 'konstantin_item_upserted' | 'konstantin_item_deleted' | 'matias_item_upserted' | 'matias_item_deleted' | 'michaelyan_item_upserted' | 'michaelyan_item_deleted' | 'miljenko_item_upserted' | 'miljenko_item_deleted' | 'shruti_demo_item_upserted' | 'shruti_demo_item_deleted' | 'tam_item_upserted' | 'tam_item_deleted' | 'thiago_item_upserted' | 'thiago_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
13962
13998
|
type ExperienceImportType = 'experience_with_settings';
|
|
13963
13999
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
13964
14000
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13993,6 +14029,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13993
14029
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
13994
14030
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
13995
14031
|
type LabelRequestErrorHandlingResponsibility = 'merchant' | 'merchant_integration' | 'shopify_integration' | 'globale_cx' | 'globale_address_repair' | 'merchant_operations' | 'globale_system';
|
|
14032
|
+
type LabelRequestResultOrganizationType = 'all' | 'legacy_production' | 'managed_markets_production' | 'sandbox';
|
|
14033
|
+
type LabelRequestResultState = 'success' | 'failure';
|
|
13996
14034
|
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
13997
14035
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
13998
14036
|
type LogisticsCapability = 'logistics_address_correction';
|
|
@@ -14066,7 +14104,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14066
14104
|
type ReportInterval = 'hourly' | 'daily' | 'weekly' | 'monthly';
|
|
14067
14105
|
type ReportPaymentType = 'credit' | 'debit';
|
|
14068
14106
|
type ReportStatus = 'created' | 'completed' | 'completed_no_records' | 'failed';
|
|
14069
|
-
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments';
|
|
14107
|
+
type ReportType = 'sales_record' | 'refund_record' | 'other_record' | 'pending_record' | 'trueup_overview' | 'non_channel_payment_bank_account' | 'scheduled_payment' | 'account_quarterly_balances' | 'invariants' | 'payments' | 'reconcile_not_recorded' | 'products_record';
|
|
14070
14108
|
type ReportingFulfillmentIsVirtual = 'all' | 'mixed' | 'none';
|
|
14071
14109
|
type ReportingScheme = 'immediate_reporting_to_tax_authority' | 'periodic_reporting_to_tax_authority' | 'paid_at_border' | 'paid_on_delivery';
|
|
14072
14110
|
type ResponsibleParty = 'flow' | 'organization';
|
|
@@ -14112,6 +14150,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14112
14150
|
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax' | 'refund';
|
|
14113
14151
|
type ThiagoItemType = 'digital' | 'physical';
|
|
14114
14152
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
14153
|
+
type TrackingLabelDimensionsSource = 'aftership' | 'carrier_api';
|
|
14115
14154
|
type TrackingProcessingFailureClassification = 'tracking_expired' | 'expired_tracking_number_new_event' | 'new_tracking_number_expired_event' | 'origin_mismatch' | 'destination_mismatch' | 'other';
|
|
14116
14155
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
14117
14156
|
type TransferMethod = 'ach';
|
|
@@ -14383,6 +14422,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14383
14422
|
readonly 'province_code': io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode;
|
|
14384
14423
|
}
|
|
14385
14424
|
|
|
14425
|
+
interface AdjustedEstimates {
|
|
14426
|
+
readonly 'id': string;
|
|
14427
|
+
readonly 'organization_id': string;
|
|
14428
|
+
readonly 'label_id': string;
|
|
14429
|
+
readonly 'estimates': io.flow.label.v0.models.ShippingLabelHopSummary[];
|
|
14430
|
+
}
|
|
14431
|
+
|
|
14432
|
+
interface AdjustedEstimatesDeleted {
|
|
14433
|
+
readonly 'discriminator': 'adjusted_estimates_deleted';
|
|
14434
|
+
readonly 'event_id': string;
|
|
14435
|
+
readonly 'timestamp': string;
|
|
14436
|
+
readonly 'organization': string;
|
|
14437
|
+
readonly 'id': string;
|
|
14438
|
+
}
|
|
14439
|
+
|
|
14440
|
+
interface AdjustedEstimatesUpserted {
|
|
14441
|
+
readonly 'discriminator': 'adjusted_estimates_upserted';
|
|
14442
|
+
readonly 'event_id': string;
|
|
14443
|
+
readonly 'timestamp': string;
|
|
14444
|
+
readonly 'organization': string;
|
|
14445
|
+
readonly 'adjusted_estimates': io.flow.internal.v0.models.AdjustedEstimates;
|
|
14446
|
+
}
|
|
14447
|
+
|
|
14386
14448
|
interface AdjustmentAmountFixed {
|
|
14387
14449
|
readonly 'discriminator': 'fixed';
|
|
14388
14450
|
readonly 'amount': io.flow.common.v0.models.Money;
|
|
@@ -14514,6 +14576,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14514
14576
|
readonly 'capture': io.flow.internal.v0.models.AdyenInternalCapture;
|
|
14515
14577
|
}
|
|
14516
14578
|
|
|
14579
|
+
interface AdyenDisputeDeleted {
|
|
14580
|
+
readonly 'discriminator': 'adyen_dispute_deleted';
|
|
14581
|
+
readonly 'event_id': string;
|
|
14582
|
+
readonly 'timestamp': string;
|
|
14583
|
+
readonly 'id': string;
|
|
14584
|
+
}
|
|
14585
|
+
|
|
14586
|
+
interface AdyenDisputeUpserted {
|
|
14587
|
+
readonly 'discriminator': 'adyen_dispute_upserted';
|
|
14588
|
+
readonly 'event_id': string;
|
|
14589
|
+
readonly 'timestamp': string;
|
|
14590
|
+
readonly 'dispute': io.flow.internal.v0.models.AdyenInternalDispute;
|
|
14591
|
+
}
|
|
14592
|
+
|
|
14517
14593
|
interface AdyenInternalAuthorization {
|
|
14518
14594
|
readonly 'id': string;
|
|
14519
14595
|
readonly 'flow_authorization_id': string;
|
|
@@ -14555,6 +14631,32 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14555
14631
|
readonly 'response': string;
|
|
14556
14632
|
}
|
|
14557
14633
|
|
|
14634
|
+
interface AdyenInternalDispute {
|
|
14635
|
+
readonly 'id': string;
|
|
14636
|
+
readonly 'amount': number;
|
|
14637
|
+
readonly 'currency': string;
|
|
14638
|
+
readonly 'psp_reference': string;
|
|
14639
|
+
readonly 'original_reference'?: string;
|
|
14640
|
+
readonly 'event_code': string;
|
|
14641
|
+
readonly 'event_date': string;
|
|
14642
|
+
readonly 'chargeback_reason_code'?: string;
|
|
14643
|
+
readonly 'modification_merchant_references'?: string;
|
|
14644
|
+
readonly 'chargeback_scheme_code'?: string;
|
|
14645
|
+
readonly 'defense_period_ends_at'?: string;
|
|
14646
|
+
readonly 'dispute_status'?: string;
|
|
14647
|
+
readonly 'defendable'?: string;
|
|
14648
|
+
readonly 'merchant_account_code': string;
|
|
14649
|
+
readonly 'operations'?: string[];
|
|
14650
|
+
readonly 'merchant_reference': string;
|
|
14651
|
+
readonly 'payment_method'?: string;
|
|
14652
|
+
readonly 'reason'?: string;
|
|
14653
|
+
readonly 'success': string;
|
|
14654
|
+
readonly 'livemode': boolean;
|
|
14655
|
+
readonly 'updated_by_user_id': string;
|
|
14656
|
+
readonly 'created_at': string;
|
|
14657
|
+
readonly 'updated_at': string;
|
|
14658
|
+
}
|
|
14659
|
+
|
|
14558
14660
|
interface AdyenInternalRefund {
|
|
14559
14661
|
readonly 'id': string;
|
|
14560
14662
|
readonly 'flow_refund_id': string;
|
|
@@ -14836,6 +14938,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14836
14938
|
readonly 'value': string;
|
|
14837
14939
|
}
|
|
14838
14940
|
|
|
14941
|
+
interface AttemptStatistics {
|
|
14942
|
+
readonly 'merchant_count': number;
|
|
14943
|
+
readonly 'amount': number;
|
|
14944
|
+
readonly 'failed_merchant_count': number;
|
|
14945
|
+
readonly 'failed_amount': number;
|
|
14946
|
+
readonly 'success_ratio': number;
|
|
14947
|
+
}
|
|
14948
|
+
|
|
14839
14949
|
interface AttributeLabel {
|
|
14840
14950
|
readonly 'value': string;
|
|
14841
14951
|
readonly 'unverified': boolean;
|
|
@@ -15948,6 +16058,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
15948
16058
|
readonly 'external_order': any/*object*/;
|
|
15949
16059
|
}
|
|
15950
16060
|
|
|
16061
|
+
interface ChannelOrderAcceptanceFailed {
|
|
16062
|
+
readonly 'discriminator': 'channel_order_acceptance_failed';
|
|
16063
|
+
readonly 'event_id': string;
|
|
16064
|
+
readonly 'timestamp': string;
|
|
16065
|
+
readonly 'organization': string;
|
|
16066
|
+
readonly 'channel_id': string;
|
|
16067
|
+
readonly 'channel_order_acceptance_failure': io.flow.internal.v0.models.ChannelOrderAcceptanceFailure;
|
|
16068
|
+
}
|
|
16069
|
+
|
|
16070
|
+
interface ChannelOrderAcceptanceFailure {
|
|
16071
|
+
readonly 'id': string;
|
|
16072
|
+
readonly 'organization_id': string;
|
|
16073
|
+
readonly 'channel_id': string;
|
|
16074
|
+
readonly 'payment_request_id': string;
|
|
16075
|
+
readonly 'code': io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
|
|
16076
|
+
readonly 'reason': string;
|
|
16077
|
+
}
|
|
16078
|
+
|
|
15951
16079
|
interface ChannelOrderAcceptanceForm {
|
|
15952
16080
|
readonly 'status': io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus;
|
|
15953
16081
|
}
|
|
@@ -16448,6 +16576,19 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16448
16576
|
readonly 'customs_description_suggestions': io.flow.internal.v0.models.CustomsDescriptionSuggestion[];
|
|
16449
16577
|
}
|
|
16450
16578
|
|
|
16579
|
+
interface ClassificationMerchant {
|
|
16580
|
+
readonly 'MerchantId': string;
|
|
16581
|
+
readonly 'PlatformId': io.flow.internal.v0.enums.ClassificationPlatform;
|
|
16582
|
+
readonly 'Name': string;
|
|
16583
|
+
readonly 'DateLastUpdated'?: string;
|
|
16584
|
+
readonly 'Order': number;
|
|
16585
|
+
}
|
|
16586
|
+
|
|
16587
|
+
interface ClassificationMerchantEnvelope {
|
|
16588
|
+
readonly 'messageType': string[];
|
|
16589
|
+
readonly 'message': io.flow.internal.v0.models.ClassificationMerchant;
|
|
16590
|
+
}
|
|
16591
|
+
|
|
16451
16592
|
interface ClassificationProduct {
|
|
16452
16593
|
readonly 'organization_id': string;
|
|
16453
16594
|
readonly 'product_id'?: string;
|
|
@@ -16627,6 +16768,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
16627
16768
|
readonly 'rex_number'?: string;
|
|
16628
16769
|
readonly 'wee_number'?: string;
|
|
16629
16770
|
readonly 'business_gst_numbers': string[];
|
|
16771
|
+
readonly 'destination_gst_numbers'?: string[];
|
|
16630
16772
|
readonly 'vat_name': string;
|
|
16631
16773
|
readonly 'shipping_price': string;
|
|
16632
16774
|
readonly 'shipment_recipient'?: string;
|
|
@@ -17251,7 +17393,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17251
17393
|
interface Dispute {
|
|
17252
17394
|
readonly 'id': string;
|
|
17253
17395
|
readonly 'organization_id': string;
|
|
17254
|
-
readonly 'order'
|
|
17396
|
+
readonly 'order'?: io.flow.internal.v0.models.DisputeOrderReference;
|
|
17255
17397
|
readonly 'authorization': io.flow.internal.v0.models.DisputeAuthorizationReference;
|
|
17256
17398
|
readonly 'processor': io.flow.internal.v0.enums.DisputeProcessor;
|
|
17257
17399
|
readonly 'key': string;
|
|
@@ -17264,10 +17406,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17264
17406
|
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
17265
17407
|
readonly 'liability': io.flow.internal.v0.enums.DisputeLiability;
|
|
17266
17408
|
readonly 'billable': io.flow.internal.v0.enums.DisputeBillable;
|
|
17409
|
+
readonly 'defense_outcome'?: io.flow.internal.v0.enums.DisputeDefenseOutcome;
|
|
17267
17410
|
readonly 'details': io.flow.internal.v0.unions.DisputeDetails;
|
|
17268
17411
|
readonly 'issued_at': string;
|
|
17269
17412
|
readonly 'expires_at'?: string;
|
|
17270
17413
|
readonly 'created_at': string;
|
|
17414
|
+
readonly 'updated_at'?: string;
|
|
17271
17415
|
}
|
|
17272
17416
|
|
|
17273
17417
|
interface DisputeAuthorizationReference {
|
|
@@ -17283,6 +17427,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17283
17427
|
readonly 'id': string;
|
|
17284
17428
|
}
|
|
17285
17429
|
|
|
17430
|
+
interface DisputeDetail {
|
|
17431
|
+
readonly 'authorization': io.flow.internal.v0.models.SearchAuthorization;
|
|
17432
|
+
readonly 'dispute': io.flow.internal.v0.models.Dispute;
|
|
17433
|
+
}
|
|
17434
|
+
|
|
17286
17435
|
interface DisputeDetailsAdyen {
|
|
17287
17436
|
readonly 'discriminator': 'adyen';
|
|
17288
17437
|
readonly 'psp_reference': string;
|
|
@@ -17334,6 +17483,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17334
17483
|
readonly 'id': string;
|
|
17335
17484
|
}
|
|
17336
17485
|
|
|
17486
|
+
interface DisputeOverrideUpdateForm {
|
|
17487
|
+
readonly 'billable'?: io.flow.internal.v0.enums.DisputeBillable;
|
|
17488
|
+
readonly 'reporting_category'?: io.flow.internal.v0.enums.DisputeReportingCategory;
|
|
17489
|
+
readonly 'category'?: io.flow.internal.v0.enums.DisputeCategory;
|
|
17490
|
+
readonly 'status'?: io.flow.internal.v0.enums.DisputeStatus;
|
|
17491
|
+
}
|
|
17492
|
+
|
|
17337
17493
|
interface DisputeStatusForm {
|
|
17338
17494
|
readonly 'status': io.flow.internal.v0.enums.DisputeStatus;
|
|
17339
17495
|
}
|
|
@@ -17918,6 +18074,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17918
18074
|
readonly 'description'?: string;
|
|
17919
18075
|
readonly 'order_number'?: string;
|
|
17920
18076
|
readonly 'raw_carrier_event_code'?: string;
|
|
18077
|
+
readonly 'aggregator_status_code'?: string;
|
|
17921
18078
|
readonly 'created_at'?: string;
|
|
17922
18079
|
}
|
|
17923
18080
|
|
|
@@ -18672,6 +18829,29 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18672
18829
|
readonly 'id': string;
|
|
18673
18830
|
}
|
|
18674
18831
|
|
|
18832
|
+
interface FulfillmentFallbacks {
|
|
18833
|
+
readonly 'id': string;
|
|
18834
|
+
readonly 'packaging': io.flow.fulfillment.v0.models.Packaging[];
|
|
18835
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
18836
|
+
readonly 'location'?: io.flow.common.v0.models.Address;
|
|
18837
|
+
}
|
|
18838
|
+
|
|
18839
|
+
interface FulfillmentFallbacksDeleted {
|
|
18840
|
+
readonly 'discriminator': 'fulfillment_fallbacks_deleted';
|
|
18841
|
+
readonly 'event_id': string;
|
|
18842
|
+
readonly 'timestamp': string;
|
|
18843
|
+
readonly 'organization': string;
|
|
18844
|
+
readonly 'id': string;
|
|
18845
|
+
}
|
|
18846
|
+
|
|
18847
|
+
interface FulfillmentFallbacksUpserted {
|
|
18848
|
+
readonly 'discriminator': 'fulfillment_fallbacks_upserted';
|
|
18849
|
+
readonly 'event_id': string;
|
|
18850
|
+
readonly 'timestamp': string;
|
|
18851
|
+
readonly 'organization': string;
|
|
18852
|
+
readonly 'fulfillment_fallbacks': io.flow.internal.v0.models.FulfillmentFallbacks;
|
|
18853
|
+
}
|
|
18854
|
+
|
|
18675
18855
|
interface FulfillmentInternalExperienceReference {
|
|
18676
18856
|
readonly 'id': string;
|
|
18677
18857
|
readonly 'key': string;
|
|
@@ -19815,6 +19995,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19815
19995
|
readonly 'label_request_error': io.flow.internal.v0.models.LabelRequestError;
|
|
19816
19996
|
}
|
|
19817
19997
|
|
|
19998
|
+
interface LabelRequestResult {
|
|
19999
|
+
readonly 'id': string;
|
|
20000
|
+
readonly 'created_at': string;
|
|
20001
|
+
readonly 'state': io.flow.internal.v0.enums.LabelRequestResultState;
|
|
20002
|
+
readonly 'organization_id': string;
|
|
20003
|
+
readonly 'order_number': string;
|
|
20004
|
+
readonly 'label_request_method': io.flow.label.v0.enums.LabelRequestMethod;
|
|
20005
|
+
readonly 'carrier_id'?: string;
|
|
20006
|
+
readonly 'carrier_tracking_number'?: string;
|
|
20007
|
+
readonly 'url'?: string;
|
|
20008
|
+
readonly 'error'?: string;
|
|
20009
|
+
readonly 'suggested_responsibility'?: io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility;
|
|
20010
|
+
readonly 'origin_country'?: string;
|
|
20011
|
+
readonly 'destination_country'?: string;
|
|
20012
|
+
readonly 'reference_id'?: string;
|
|
20013
|
+
readonly 'logistics_integration_provider'?: string;
|
|
20014
|
+
}
|
|
20015
|
+
|
|
19818
20016
|
interface LabelSummary {
|
|
19819
20017
|
readonly 'id': string;
|
|
19820
20018
|
readonly 'commercial_invoice'?: string;
|
|
@@ -20745,6 +20943,20 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20745
20943
|
readonly 'merchant_guid_assignment': io.flow.internal.v0.models.MerchantGuidAssignment;
|
|
20746
20944
|
}
|
|
20747
20945
|
|
|
20946
|
+
interface MerchantHubOverride {
|
|
20947
|
+
readonly 'id': string;
|
|
20948
|
+
readonly 'organization_id': string;
|
|
20949
|
+
readonly 'code': string;
|
|
20950
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
20951
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
20952
|
+
}
|
|
20953
|
+
|
|
20954
|
+
interface MerchantHubOverrideForm {
|
|
20955
|
+
readonly 'code': string;
|
|
20956
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
20957
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
20958
|
+
}
|
|
20959
|
+
|
|
20748
20960
|
interface MerchantOfRecordEntitySettings {
|
|
20749
20961
|
readonly 'id': string;
|
|
20750
20962
|
readonly 'merchant_of_record_entity': io.flow.common.v0.models.MerchantOfRecordEntity;
|
|
@@ -20892,6 +21104,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20892
21104
|
readonly 'percent': number;
|
|
20893
21105
|
}
|
|
20894
21106
|
|
|
21107
|
+
interface NegativeDebitMetrics {
|
|
21108
|
+
readonly 'current_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21109
|
+
readonly 'second_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21110
|
+
readonly 'third_attempt': io.flow.internal.v0.models.AttemptStatistics;
|
|
21111
|
+
}
|
|
21112
|
+
|
|
20895
21113
|
interface NextBillingStatement {
|
|
20896
21114
|
readonly 'date': string;
|
|
20897
21115
|
readonly 'amount': io.flow.common.v0.models.Price;
|
|
@@ -21168,6 +21386,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21168
21386
|
readonly 'created_at': string;
|
|
21169
21387
|
readonly 'updated_at': string;
|
|
21170
21388
|
readonly 'shopify_order_id'?: string;
|
|
21389
|
+
readonly 'disputes': io.flow.internal.v0.models.DisputeDetail[];
|
|
21171
21390
|
}
|
|
21172
21391
|
|
|
21173
21392
|
interface OrderFulfillmentDeleted {
|
|
@@ -22034,6 +22253,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22034
22253
|
readonly 'partner_organization_settings': io.flow.internal.v0.models.PartnerOrganizationSettings;
|
|
22035
22254
|
}
|
|
22036
22255
|
|
|
22256
|
+
interface PartnerRequest {
|
|
22257
|
+
readonly 'id': string;
|
|
22258
|
+
readonly 'partner_id': string;
|
|
22259
|
+
readonly 'organization_id': string;
|
|
22260
|
+
readonly 'request_body'?: any/*json*/;
|
|
22261
|
+
}
|
|
22262
|
+
|
|
22037
22263
|
interface Passphrase {
|
|
22038
22264
|
readonly 'id': string;
|
|
22039
22265
|
readonly 'tribe': io.flow.internal.v0.models.Tribe;
|
|
@@ -22600,6 +22826,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22600
22826
|
readonly 'next_product'?: io.flow.internal.v0.models.ClassificationProductId;
|
|
22601
22827
|
}
|
|
22602
22828
|
|
|
22829
|
+
interface ProductCurrencies {
|
|
22830
|
+
readonly 'transaction': string;
|
|
22831
|
+
readonly 'destination': string;
|
|
22832
|
+
}
|
|
22833
|
+
|
|
22603
22834
|
interface ProductDetailSettingsForm {
|
|
22604
22835
|
readonly 'keys': string[];
|
|
22605
22836
|
}
|
|
@@ -22627,6 +22858,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22627
22858
|
readonly 'column_settings': io.flow.internal.v0.models.HarmonizationColumnSetting[];
|
|
22628
22859
|
}
|
|
22629
22860
|
|
|
22861
|
+
interface ProductRecord {
|
|
22862
|
+
readonly 'organization_id': string;
|
|
22863
|
+
readonly 'order_number': string;
|
|
22864
|
+
readonly 'fulfillment_id': string;
|
|
22865
|
+
readonly 'currencies': io.flow.internal.v0.models.ProductCurrencies;
|
|
22866
|
+
readonly 'products': io.flow.internal.v0.models.ProductTransaction[];
|
|
22867
|
+
}
|
|
22868
|
+
|
|
22630
22869
|
interface ProductRestrictionResultValidationError {
|
|
22631
22870
|
readonly 'message': string;
|
|
22632
22871
|
readonly 'reason': string;
|
|
@@ -22672,6 +22911,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22672
22911
|
readonly 'reviews': io.flow.internal.v0.models.RestrictionHistoryItemReviewDecision[];
|
|
22673
22912
|
}
|
|
22674
22913
|
|
|
22914
|
+
interface ProductTransaction {
|
|
22915
|
+
readonly 'transaction_amount': number;
|
|
22916
|
+
readonly 'destination_amount': number;
|
|
22917
|
+
readonly 'quantity': number;
|
|
22918
|
+
}
|
|
22919
|
+
|
|
22675
22920
|
interface Profit {
|
|
22676
22921
|
readonly 'key': io.flow.internal.v0.enums.ProfitStreamKey;
|
|
22677
22922
|
readonly 'principal': io.flow.internal.v0.models.Principal;
|
|
@@ -22746,6 +22991,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22746
22991
|
readonly 'created_at': string;
|
|
22747
22992
|
}
|
|
22748
22993
|
|
|
22994
|
+
interface PublicHub {
|
|
22995
|
+
readonly 'id': string;
|
|
22996
|
+
readonly 'code': string;
|
|
22997
|
+
readonly 'third_party_logistics_reference': string;
|
|
22998
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
22999
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
23000
|
+
}
|
|
23001
|
+
|
|
23002
|
+
interface PublicHubForm {
|
|
23003
|
+
readonly 'code': string;
|
|
23004
|
+
readonly 'third_party_logistics_reference': string;
|
|
23005
|
+
readonly 'contact': io.flow.common.v0.models.Contact;
|
|
23006
|
+
readonly 'location': io.flow.common.v0.models.Address;
|
|
23007
|
+
}
|
|
23008
|
+
|
|
22749
23009
|
interface Quote {
|
|
22750
23010
|
readonly 'id': string;
|
|
22751
23011
|
readonly 'base': string;
|
|
@@ -23304,6 +23564,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23304
23564
|
interface ReportingConversionRates {
|
|
23305
23565
|
readonly 'merchant': number;
|
|
23306
23566
|
readonly 'entity': number;
|
|
23567
|
+
readonly 'destination_country': number;
|
|
23307
23568
|
readonly 'usd': number;
|
|
23308
23569
|
readonly 'eur': number;
|
|
23309
23570
|
}
|
|
@@ -23317,6 +23578,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23317
23578
|
readonly 'transaction': string;
|
|
23318
23579
|
readonly 'merchant': string;
|
|
23319
23580
|
readonly 'entity': string;
|
|
23581
|
+
readonly 'destination_country'?: string;
|
|
23320
23582
|
}
|
|
23321
23583
|
|
|
23322
23584
|
interface ReportingDebug {
|
|
@@ -23438,6 +23700,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23438
23700
|
readonly 'transaction': number;
|
|
23439
23701
|
readonly 'merchant': number;
|
|
23440
23702
|
readonly 'entity': number;
|
|
23703
|
+
readonly 'destination_country': number;
|
|
23441
23704
|
readonly 'usd': number;
|
|
23442
23705
|
readonly 'eur': number;
|
|
23443
23706
|
}
|
|
@@ -25661,6 +25924,31 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25661
25924
|
readonly 'tracking_label': io.flow.internal.v0.models.ExportTrackingLabel;
|
|
25662
25925
|
}
|
|
25663
25926
|
|
|
25927
|
+
interface TrackingLabelDimensions {
|
|
25928
|
+
readonly 'id': string;
|
|
25929
|
+
readonly 'organization_id': string;
|
|
25930
|
+
readonly 'tracking_label_id': string;
|
|
25931
|
+
readonly 'source': io.flow.internal.v0.enums.TrackingLabelDimensionsSource;
|
|
25932
|
+
readonly 'created_at': string;
|
|
25933
|
+
readonly 'dimensions': io.flow.common.v0.models.Dimensions;
|
|
25934
|
+
}
|
|
25935
|
+
|
|
25936
|
+
interface TrackingLabelDimensionsDeleted {
|
|
25937
|
+
readonly 'discriminator': 'tracking_label_dimensions_deleted';
|
|
25938
|
+
readonly 'event_id': string;
|
|
25939
|
+
readonly 'timestamp': string;
|
|
25940
|
+
readonly 'organization': string;
|
|
25941
|
+
readonly 'id': string;
|
|
25942
|
+
}
|
|
25943
|
+
|
|
25944
|
+
interface TrackingLabelDimensionsUpserted {
|
|
25945
|
+
readonly 'discriminator': 'tracking_label_dimensions_upserted';
|
|
25946
|
+
readonly 'event_id': string;
|
|
25947
|
+
readonly 'timestamp': string;
|
|
25948
|
+
readonly 'organization': string;
|
|
25949
|
+
readonly 'tracking_label_dimensions': io.flow.internal.v0.models.TrackingLabelDimensions;
|
|
25950
|
+
}
|
|
25951
|
+
|
|
25664
25952
|
interface TrackingLabelEventDeletedV2 {
|
|
25665
25953
|
readonly 'discriminator': 'tracking_label_event_deleted_v2';
|
|
25666
25954
|
readonly 'event_id': string;
|
|
@@ -26080,7 +26368,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26080
26368
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
26081
26369
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe);
|
|
26082
26370
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
26083
|
-
type Event = (io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.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.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26371
|
+
type Event = (io.flow.internal.v0.models.AdjustedEstimatesUpserted | io.flow.internal.v0.models.AdjustedEstimatesDeleted | io.flow.internal.v0.models.AdyenAuthorizationDeleted | io.flow.internal.v0.models.AdyenAuthorizationUpserted | io.flow.internal.v0.models.AdyenCancelDeleted | io.flow.internal.v0.models.AdyenCancelUpserted | io.flow.internal.v0.models.AdyenCaptureDeleted | io.flow.internal.v0.models.AdyenCaptureUpserted | io.flow.internal.v0.models.AdyenRefundDeleted | io.flow.internal.v0.models.AdyenRefundUpserted | io.flow.internal.v0.models.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.IndexAssignmentUpserted | io.flow.internal.v0.models.IndexAssignmentDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.TransactionStatementUpserted | io.flow.internal.v0.models.TransactionStatementDeleted | io.flow.internal.v0.models.DailyValueUpserted | io.flow.internal.v0.models.DailyValueDeleted | io.flow.internal.v0.models.RevenueRecordUpserted | io.flow.internal.v0.models.RevenueRecordDeleted | io.flow.internal.v0.models.OtherRecordUpserted | io.flow.internal.v0.models.OtherRecordDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | io.flow.internal.v0.models.LabelGenerationSettingsUpserted | io.flow.internal.v0.models.LabelGenerationSettingsDeleted | io.flow.internal.v0.models.CatalogImportRequest | io.flow.internal.v0.models.ExclusionRuleUpserted | io.flow.internal.v0.models.ExclusionRuleDeleted | io.flow.internal.v0.models.ExclusionRuleExportRequest | io.flow.internal.v0.models.CatalogItemRegionAvailabilitiesPublished | io.flow.internal.v0.models.ReturnPolicyUpserted | io.flow.internal.v0.models.ReturnPolicyDeleted | io.flow.internal.v0.models.ReturnPolicyItemResultUpserted | io.flow.internal.v0.models.ReturnPolicyItemResultDeleted | io.flow.internal.v0.models.CatalogSettingsUpserted | io.flow.internal.v0.models.CatalogSettingsDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.ChannelOrderAcceptanceFailed | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.StandaloneAttachmentUpserted | io.flow.internal.v0.models.StandaloneAttachmentDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.OrganizationBankAccountUpserted | io.flow.internal.v0.models.OrganizationBankAccountDeleted | io.flow.internal.v0.models.BillingCsvTransactionUpserted | io.flow.internal.v0.models.BillingCsvTransactionDeleted | io.flow.internal.v0.models.LabelInvoiceRequestUpserted | io.flow.internal.v0.models.LabelInvoiceRequestDeleted | io.flow.internal.v0.models.CarrierChargeUpserted | io.flow.internal.v0.models.CarrierChargeDeleted | io.flow.internal.v0.models.BankPaymentOrderUpserted | io.flow.internal.v0.models.BankPaymentOrderDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationUpserted | io.flow.internal.v0.models.FraudPendingReviewAuthorizationDeleted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionUpserted | io.flow.internal.v0.models.FraudReviewAuthorizationDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.ManualReviewRuleUpserted | io.flow.internal.v0.models.ManualReviewRuleDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.CenterDefaultsUpserted | io.flow.internal.v0.models.CenterDefaultsDeleted | io.flow.internal.v0.models.FulfillmentFallbacksUpserted | io.flow.internal.v0.models.FulfillmentFallbacksDeleted | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelRequestErrorUpserted | io.flow.internal.v0.models.LabelRequestErrorDeleted | io.flow.internal.v0.models.OrderValidationFailureUpserted | io.flow.internal.v0.models.OrderValidationFailureDeleted | io.flow.internal.v0.models.OrderValidationUpserted | io.flow.internal.v0.models.OrderValidationDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderCombinedShipmentUpserted | io.flow.internal.v0.models.OrderCombinedShipmentDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.internal.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.internal.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.SvitlanaItemUpserted | io.flow.internal.v0.models.SvitlanaItemDeleted | io.flow.internal.v0.models.ColmItemUpserted | io.flow.internal.v0.models.ColmItemDeleted | io.flow.internal.v0.models.EldarItemUpserted | io.flow.internal.v0.models.EldarItemDeleted | io.flow.internal.v0.models.HarinathItemUpserted | io.flow.internal.v0.models.HarinathItemDeleted | io.flow.internal.v0.models.KonstantinItemUpserted | io.flow.internal.v0.models.KonstantinItemDeleted | io.flow.internal.v0.models.MatiasItemUpserted | io.flow.internal.v0.models.MatiasItemDeleted | io.flow.internal.v0.models.MichaelyanItemUpserted | io.flow.internal.v0.models.MichaelyanItemDeleted | io.flow.internal.v0.models.MiljenkoItemUpserted | io.flow.internal.v0.models.MiljenkoItemDeleted | io.flow.internal.v0.models.ShrutiDemoItemUpserted | io.flow.internal.v0.models.ShrutiDemoItemDeleted | io.flow.internal.v0.models.TamItemUpserted | io.flow.internal.v0.models.TamItemDeleted | io.flow.internal.v0.models.ThiagoItemUpserted | io.flow.internal.v0.models.ThiagoItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
26084
26372
|
type ExplicitStatementForm = (io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions);
|
|
26085
26373
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
26086
26374
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -26168,6 +26456,7 @@ export const carrierValidationStatus: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26168
26456
|
export const catalogImportType: PropTypes.Requireable<io.flow.internal.v0.enums.CatalogImportType>;
|
|
26169
26457
|
export const channelBilledTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelBilledTransactionType>;
|
|
26170
26458
|
export const channelOrderAcceptanceErrorAction: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceErrorAction>;
|
|
26459
|
+
export const channelOrderAcceptanceFailureReasonCode: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode>;
|
|
26171
26460
|
export const channelOrderAcceptanceNextActionFrom: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom>;
|
|
26172
26461
|
export const channelOrderAcceptanceRejectionReason: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceRejectionReason>;
|
|
26173
26462
|
export const channelOrderAcceptanceStatus: PropTypes.Requireable<io.flow.internal.v0.enums.ChannelOrderAcceptanceStatus>;
|
|
@@ -26203,6 +26492,7 @@ export const deminimisAdjustmentType: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
26203
26492
|
export const discountRequestOrderEntitlementKey: PropTypes.Requireable<io.flow.internal.v0.enums.DiscountRequestOrderEntitlementKey>;
|
|
26204
26493
|
export const disputeBillable: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeBillable>;
|
|
26205
26494
|
export const disputeCategory: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeCategory>;
|
|
26495
|
+
export const disputeDefenseOutcome: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeDefenseOutcome>;
|
|
26206
26496
|
export const disputeEvidence: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeEvidence>;
|
|
26207
26497
|
export const disputeImportStatus: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeImportStatus>;
|
|
26208
26498
|
export const disputeImportType: PropTypes.Requireable<io.flow.internal.v0.enums.DisputeImportType>;
|
|
@@ -26257,6 +26547,8 @@ export const labelBillingStrategy: PropTypes.Requireable<io.flow.internal.v0.enu
|
|
|
26257
26547
|
export const labelCancellationErrorCode: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCancellationErrorCode>;
|
|
26258
26548
|
export const labelCreationStatus: PropTypes.Requireable<io.flow.internal.v0.enums.LabelCreationStatus>;
|
|
26259
26549
|
export const labelRequestErrorHandlingResponsibility: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestErrorHandlingResponsibility>;
|
|
26550
|
+
export const labelRequestResultOrganizationType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultOrganizationType>;
|
|
26551
|
+
export const labelRequestResultState: PropTypes.Requireable<io.flow.internal.v0.enums.LabelRequestResultState>;
|
|
26260
26552
|
export const labelTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.LabelTransactionType>;
|
|
26261
26553
|
export const liabilityType: PropTypes.Requireable<io.flow.internal.v0.enums.LiabilityType>;
|
|
26262
26554
|
export const logisticsCapability: PropTypes.Requireable<io.flow.internal.v0.enums.LogisticsCapability>;
|
|
@@ -26376,6 +26668,7 @@ export const taxParty: PropTypes.Requireable<io.flow.internal.v0.enums.TaxParty>
|
|
|
26376
26668
|
export const taxTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.TaxTransactionType>;
|
|
26377
26669
|
export const thiagoItemType: PropTypes.Requireable<io.flow.internal.v0.enums.ThiagoItemType>;
|
|
26378
26670
|
export const trackingIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingIntegrationType>;
|
|
26671
|
+
export const trackingLabelDimensionsSource: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingLabelDimensionsSource>;
|
|
26379
26672
|
export const trackingProcessingFailureClassification: PropTypes.Requireable<io.flow.internal.v0.enums.TrackingProcessingFailureClassification>;
|
|
26380
26673
|
export const transactionPostingMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransactionPostingMethod>;
|
|
26381
26674
|
export const transferMethod: PropTypes.Requireable<io.flow.internal.v0.enums.TransferMethod>;
|
|
@@ -26415,6 +26708,9 @@ export const additionalImportTax: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26415
26708
|
export const addressConfigurationProvinceSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationProvinceSetting>;
|
|
26416
26709
|
export const addressConfigurationSetting: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSetting>;
|
|
26417
26710
|
export const addressConfigurationSettingForm: PropTypes.Requireable<io.flow.internal.v0.models.AddressConfigurationSettingForm>;
|
|
26711
|
+
export const adjustedEstimates: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimates>;
|
|
26712
|
+
export const adjustedEstimatesDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesDeleted>;
|
|
26713
|
+
export const adjustedEstimatesUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdjustedEstimatesUpserted>;
|
|
26418
26714
|
export const adjustmentAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountFixed>;
|
|
26419
26715
|
export const adjustmentAmountPercentage: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentAmountPercentage>;
|
|
26420
26716
|
export const adjustmentDetailsAmountFixed: PropTypes.Requireable<io.flow.internal.v0.models.AdjustmentDetailsAmountFixed>;
|
|
@@ -26434,9 +26730,12 @@ export const adyenCancelDeleted: PropTypes.Requireable<io.flow.internal.v0.model
|
|
|
26434
26730
|
export const adyenCancelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdyenCancelUpserted>;
|
|
26435
26731
|
export const adyenCaptureDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdyenCaptureDeleted>;
|
|
26436
26732
|
export const adyenCaptureUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdyenCaptureUpserted>;
|
|
26733
|
+
export const adyenDisputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.AdyenDisputeDeleted>;
|
|
26734
|
+
export const adyenDisputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.AdyenDisputeUpserted>;
|
|
26437
26735
|
export const adyenInternalAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.AdyenInternalAuthorization>;
|
|
26438
26736
|
export const adyenInternalCancel: PropTypes.Requireable<io.flow.internal.v0.models.AdyenInternalCancel>;
|
|
26439
26737
|
export const adyenInternalCapture: PropTypes.Requireable<io.flow.internal.v0.models.AdyenInternalCapture>;
|
|
26738
|
+
export const adyenInternalDispute: PropTypes.Requireable<io.flow.internal.v0.models.AdyenInternalDispute>;
|
|
26440
26739
|
export const adyenInternalRefund: PropTypes.Requireable<io.flow.internal.v0.models.AdyenInternalRefund>;
|
|
26441
26740
|
export const adyenMerchant: PropTypes.Requireable<io.flow.internal.v0.models.AdyenMerchant>;
|
|
26442
26741
|
export const adyenMerchantAccount: PropTypes.Requireable<io.flow.internal.v0.models.AdyenMerchantAccount>;
|
|
@@ -26476,6 +26775,7 @@ export const allowedLabels: PropTypes.Requireable<io.flow.internal.v0.models.All
|
|
|
26476
26775
|
export const apmContent: PropTypes.Requireable<io.flow.internal.v0.models.ApmContent>;
|
|
26477
26776
|
export const applePayAuthorizationPayload: PropTypes.Requireable<io.flow.internal.v0.models.ApplePayAuthorizationPayload>;
|
|
26478
26777
|
export const applyAtValueForm: PropTypes.Requireable<io.flow.internal.v0.models.ApplyAtValueForm>;
|
|
26778
|
+
export const attemptStatistics: PropTypes.Requireable<io.flow.internal.v0.models.AttemptStatistics>;
|
|
26479
26779
|
export const attributeLabel: PropTypes.Requireable<io.flow.internal.v0.models.AttributeLabel>;
|
|
26480
26780
|
export const authenticationForm: PropTypes.Requireable<io.flow.internal.v0.models.AuthenticationForm>;
|
|
26481
26781
|
export const authorizationBundle: PropTypes.Requireable<io.flow.internal.v0.models.AuthorizationBundle>;
|
|
@@ -26623,6 +26923,8 @@ export const channelOrder: PropTypes.Requireable<io.flow.internal.v0.models.Chan
|
|
|
26623
26923
|
export const channelOrderAcceptance: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptance>;
|
|
26624
26924
|
export const channelOrderAcceptanceDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted>;
|
|
26625
26925
|
export const channelOrderAcceptanceDetails: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceDetails>;
|
|
26926
|
+
export const channelOrderAcceptanceFailed: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceFailed>;
|
|
26927
|
+
export const channelOrderAcceptanceFailure: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceFailure>;
|
|
26626
26928
|
export const channelOrderAcceptanceForm: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceForm>;
|
|
26627
26929
|
export const channelOrderAcceptanceReason: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceReason>;
|
|
26628
26930
|
export const channelOrderAcceptanceUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ChannelOrderAcceptanceUpserted>;
|
|
@@ -26692,6 +26994,8 @@ export const classificationDetails: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
26692
26994
|
export const classificationError: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationError>;
|
|
26693
26995
|
export const classificationFormWrapper: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationFormWrapper>;
|
|
26694
26996
|
export const classificationItem: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationItem>;
|
|
26997
|
+
export const classificationMerchant: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationMerchant>;
|
|
26998
|
+
export const classificationMerchantEnvelope: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationMerchantEnvelope>;
|
|
26695
26999
|
export const classificationProduct: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProduct>;
|
|
26696
27000
|
export const classificationProductHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductHarmonization>;
|
|
26697
27001
|
export const classificationProductId: PropTypes.Requireable<io.flow.internal.v0.models.ClassificationProductId>;
|
|
@@ -26804,6 +27108,7 @@ export const discountRequestOrderForm: PropTypes.Requireable<io.flow.internal.v0
|
|
|
26804
27108
|
export const dispute: PropTypes.Requireable<io.flow.internal.v0.models.Dispute>;
|
|
26805
27109
|
export const disputeAuthorizationReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeAuthorizationReference>;
|
|
26806
27110
|
export const disputeDeleted: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDeleted>;
|
|
27111
|
+
export const disputeDetail: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetail>;
|
|
26807
27112
|
export const disputeDetailsAdyen: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetailsAdyen>;
|
|
26808
27113
|
export const disputeDetailsPaypal: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetailsPaypal>;
|
|
26809
27114
|
export const disputeDetailsStripe: PropTypes.Requireable<io.flow.internal.v0.models.DisputeDetailsStripe>;
|
|
@@ -26813,6 +27118,7 @@ export const disputeImportErrors: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26813
27118
|
export const disputeImportForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeImportForm>;
|
|
26814
27119
|
export const disputeOrderReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOrderReference>;
|
|
26815
27120
|
export const disputeOrganizationReference: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOrganizationReference>;
|
|
27121
|
+
export const disputeOverrideUpdateForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeOverrideUpdateForm>;
|
|
26816
27122
|
export const disputeStatusForm: PropTypes.Requireable<io.flow.internal.v0.models.DisputeStatusForm>;
|
|
26817
27123
|
export const disputeTransaction: PropTypes.Requireable<io.flow.internal.v0.models.DisputeTransaction>;
|
|
26818
27124
|
export const disputeUpserted: PropTypes.Requireable<io.flow.internal.v0.models.DisputeUpserted>;
|
|
@@ -26969,6 +27275,9 @@ export const fulfillmentBusiness: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
26969
27275
|
export const fulfillmentCancel: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCancel>;
|
|
26970
27276
|
export const fulfillmentCarrier: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentCarrier>;
|
|
26971
27277
|
export const fulfillmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentDeleted>;
|
|
27278
|
+
export const fulfillmentFallbacks: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacks>;
|
|
27279
|
+
export const fulfillmentFallbacksDeleted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacksDeleted>;
|
|
27280
|
+
export const fulfillmentFallbacksUpserted: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentFallbacksUpserted>;
|
|
26972
27281
|
export const fulfillmentInternalExperienceReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentInternalExperienceReference>;
|
|
26973
27282
|
export const fulfillmentOrigin: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentOrigin>;
|
|
26974
27283
|
export const fulfillmentProofExternalFulfillmentProofReference: PropTypes.Requireable<io.flow.internal.v0.models.FulfillmentProofExternalFulfillmentProofReference>;
|
|
@@ -27126,6 +27435,7 @@ export const labelMetadata: PropTypes.Requireable<io.flow.internal.v0.models.Lab
|
|
|
27126
27435
|
export const labelRequestError: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestError>;
|
|
27127
27436
|
export const labelRequestErrorDeleted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorDeleted>;
|
|
27128
27437
|
export const labelRequestErrorUpserted: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestErrorUpserted>;
|
|
27438
|
+
export const labelRequestResult: PropTypes.Requireable<io.flow.internal.v0.models.LabelRequestResult>;
|
|
27129
27439
|
export const labelSummary: PropTypes.Requireable<io.flow.internal.v0.models.LabelSummary>;
|
|
27130
27440
|
export const labelSurchargeForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeForm>;
|
|
27131
27441
|
export const labelSurchargeSingleForm: PropTypes.Requireable<io.flow.internal.v0.models.LabelSurchargeSingleForm>;
|
|
@@ -27249,6 +27559,8 @@ export const merchantFees: PropTypes.Requireable<io.flow.internal.v0.models.Merc
|
|
|
27249
27559
|
export const merchantGuidAssignment: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignment>;
|
|
27250
27560
|
export const merchantGuidAssignmentDeleted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentDeleted>;
|
|
27251
27561
|
export const merchantGuidAssignmentUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MerchantGuidAssignmentUpserted>;
|
|
27562
|
+
export const merchantHubOverride: PropTypes.Requireable<io.flow.internal.v0.models.MerchantHubOverride>;
|
|
27563
|
+
export const merchantHubOverrideForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantHubOverrideForm>;
|
|
27252
27564
|
export const merchantOfRecordEntitySettings: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettings>;
|
|
27253
27565
|
export const merchantOfRecordEntitySettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.MerchantOfRecordEntitySettingsForm>;
|
|
27254
27566
|
export const merchantSearchResult: PropTypes.Requireable<io.flow.internal.v0.models.MerchantSearchResult>;
|
|
@@ -27268,6 +27580,7 @@ export const miljenkoItemDeleted: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
27268
27580
|
export const miljenkoItemForm: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemForm>;
|
|
27269
27581
|
export const miljenkoItemUpserted: PropTypes.Requireable<io.flow.internal.v0.models.MiljenkoItemUpserted>;
|
|
27270
27582
|
export const moneyPercentage: PropTypes.Requireable<io.flow.internal.v0.models.MoneyPercentage>;
|
|
27583
|
+
export const negativeDebitMetrics: PropTypes.Requireable<io.flow.internal.v0.models.NegativeDebitMetrics>;
|
|
27271
27584
|
export const nextBillingStatement: PropTypes.Requireable<io.flow.internal.v0.models.NextBillingStatement>;
|
|
27272
27585
|
export const noCalculatedTaxAmount: PropTypes.Requireable<io.flow.internal.v0.models.NoCalculatedTaxAmount>;
|
|
27273
27586
|
export const noClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.NoClassificationForm>;
|
|
@@ -27420,6 +27733,7 @@ export const partnerOrganizationSettings: PropTypes.Requireable<io.flow.internal
|
|
|
27420
27733
|
export const partnerOrganizationSettingsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted>;
|
|
27421
27734
|
export const partnerOrganizationSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsForm>;
|
|
27422
27735
|
export const partnerOrganizationSettingsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted>;
|
|
27736
|
+
export const partnerRequest: PropTypes.Requireable<io.flow.internal.v0.models.PartnerRequest>;
|
|
27423
27737
|
export const passphrase: PropTypes.Requireable<io.flow.internal.v0.models.Passphrase>;
|
|
27424
27738
|
export const passphraseForm: PropTypes.Requireable<io.flow.internal.v0.models.PassphraseForm>;
|
|
27425
27739
|
export const passphraseSummary: PropTypes.Requireable<io.flow.internal.v0.models.PassphraseSummary>;
|
|
@@ -27486,16 +27800,19 @@ export const productClassification: PropTypes.Requireable<io.flow.internal.v0.mo
|
|
|
27486
27800
|
export const productClassificationForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductClassificationForm>;
|
|
27487
27801
|
export const productClassificationJudgementForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductClassificationJudgementForm>;
|
|
27488
27802
|
export const productClassificationResult: PropTypes.Requireable<io.flow.internal.v0.models.ProductClassificationResult>;
|
|
27803
|
+
export const productCurrencies: PropTypes.Requireable<io.flow.internal.v0.models.ProductCurrencies>;
|
|
27489
27804
|
export const productDetailSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductDetailSettingsForm>;
|
|
27490
27805
|
export const productHarmonization: PropTypes.Requireable<io.flow.internal.v0.models.ProductHarmonization>;
|
|
27491
27806
|
export const productHarmonizationForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductHarmonizationForm>;
|
|
27492
27807
|
export const productLabels: PropTypes.Requireable<io.flow.internal.v0.models.ProductLabels>;
|
|
27493
27808
|
export const productListSettingsForm: PropTypes.Requireable<io.flow.internal.v0.models.ProductListSettingsForm>;
|
|
27809
|
+
export const productRecord: PropTypes.Requireable<io.flow.internal.v0.models.ProductRecord>;
|
|
27494
27810
|
export const productRestrictionResultValidationError: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionResultValidationError>;
|
|
27495
27811
|
export const productRestrictionRuleDecision: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecision>;
|
|
27496
27812
|
export const productRestrictionRuleDecisionDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted>;
|
|
27497
27813
|
export const productRestrictionRuleDecisionUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted>;
|
|
27498
27814
|
export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
|
|
27815
|
+
export const productTransaction: PropTypes.Requireable<io.flow.internal.v0.models.ProductTransaction>;
|
|
27499
27816
|
export const profit: PropTypes.Requireable<io.flow.internal.v0.models.Profit>;
|
|
27500
27817
|
export const profitShare: PropTypes.Requireable<io.flow.internal.v0.models.ProfitShare>;
|
|
27501
27818
|
export const profitShareOrderReference: PropTypes.Requireable<io.flow.internal.v0.models.ProfitShareOrderReference>;
|
|
@@ -27509,6 +27826,8 @@ export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.inte
|
|
|
27509
27826
|
export const proofOfPostingOrderCombinedShipment: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCombinedShipment>;
|
|
27510
27827
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
27511
27828
|
export const proofOfPostingTimeElapsed: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingTimeElapsed>;
|
|
27829
|
+
export const publicHub: PropTypes.Requireable<io.flow.internal.v0.models.PublicHub>;
|
|
27830
|
+
export const publicHubForm: PropTypes.Requireable<io.flow.internal.v0.models.PublicHubForm>;
|
|
27512
27831
|
export const quote: PropTypes.Requireable<io.flow.internal.v0.models.Quote>;
|
|
27513
27832
|
export const quoteDeleted: PropTypes.Requireable<io.flow.internal.v0.models.QuoteDeleted>;
|
|
27514
27833
|
export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
|
|
@@ -27913,6 +28232,9 @@ export const trackingDebugLabelLocation: PropTypes.Requireable<io.flow.internal.
|
|
|
27913
28232
|
export const trackingDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingDeleted>;
|
|
27914
28233
|
export const trackingEvent: PropTypes.Requireable<io.flow.internal.v0.models.TrackingEvent>;
|
|
27915
28234
|
export const trackingLabelDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDeleted>;
|
|
28235
|
+
export const trackingLabelDimensions: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDimensions>;
|
|
28236
|
+
export const trackingLabelDimensionsDeleted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDimensionsDeleted>;
|
|
28237
|
+
export const trackingLabelDimensionsUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelDimensionsUpserted>;
|
|
27916
28238
|
export const trackingLabelEventDeletedV2: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelEventDeletedV2>;
|
|
27917
28239
|
export const trackingLabelEventUpsertedV2: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelEventUpsertedV2>;
|
|
27918
28240
|
export const trackingLabelUpserted: PropTypes.Requireable<io.flow.internal.v0.models.TrackingLabelUpserted>;
|