@flowio/types 11.24.131 → 11.24.132
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +88 -7
- package/dist/api.d.ts +30 -4
- package/package.json +2 -2
- package/src/api-internal.ts +106 -5
- package/src/api.ts +36 -4
package/dist/api-internal.d.ts
CHANGED
|
@@ -1752,7 +1752,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1752
1752
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1753
1753
|
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1754
1754
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1755
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
1755
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
1756
1756
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1757
1757
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
1758
1758
|
type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
|
|
@@ -5114,6 +5114,9 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
5114
5114
|
readonly catalog_products_count?: number;
|
|
5115
5115
|
readonly initial_product_restrictions_synced_at?: string;
|
|
5116
5116
|
}
|
|
5117
|
+
interface ShopifyTestOrder {
|
|
5118
|
+
readonly id: string;
|
|
5119
|
+
}
|
|
5117
5120
|
interface ThirdPartyLogisticsPartner {
|
|
5118
5121
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
5119
5122
|
readonly warehouse_url?: string;
|
|
@@ -6938,6 +6941,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6938
6941
|
readonly tags?: string;
|
|
6939
6942
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
6940
6943
|
readonly taxes_included: boolean;
|
|
6944
|
+
readonly test?: boolean;
|
|
6941
6945
|
readonly token?: string;
|
|
6942
6946
|
readonly total_weight?: number;
|
|
6943
6947
|
readonly updated_at?: string;
|
|
@@ -8252,9 +8256,23 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
8252
8256
|
readonly timestamp: string;
|
|
8253
8257
|
readonly shopify_product_taxonomy_attribute_value: io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
8254
8258
|
}
|
|
8259
|
+
interface ShopifyTestOrderDeleted {
|
|
8260
|
+
readonly discriminator: 'shopify_test_order_deleted';
|
|
8261
|
+
readonly event_id: string;
|
|
8262
|
+
readonly timestamp: string;
|
|
8263
|
+
readonly organization: string;
|
|
8264
|
+
readonly id: string;
|
|
8265
|
+
}
|
|
8266
|
+
interface ShopifyTestOrderUpserted {
|
|
8267
|
+
readonly discriminator: 'shopify_test_order_upserted';
|
|
8268
|
+
readonly event_id: string;
|
|
8269
|
+
readonly timestamp: string;
|
|
8270
|
+
readonly organization: string;
|
|
8271
|
+
readonly shopify_test_order: io.flow.shopify.markets.internal.v0.models.ShopifyTestOrder;
|
|
8272
|
+
}
|
|
8255
8273
|
}
|
|
8256
8274
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
8257
|
-
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted;
|
|
8275
|
+
type ShopifyMarketsInternalEvent = io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted;
|
|
8258
8276
|
}
|
|
8259
8277
|
declare namespace io.flow.experience.v0.enums {
|
|
8260
8278
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
@@ -8278,6 +8296,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
8278
8296
|
type OrganizationPaymentMethodTag = 'deny';
|
|
8279
8297
|
type PaymentMethodRuleContentKey = 'description';
|
|
8280
8298
|
type PriceFacetBoundary = 'min' | 'max';
|
|
8299
|
+
type PricingType = 'inclusive_pricing';
|
|
8281
8300
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
8282
8301
|
}
|
|
8283
8302
|
declare namespace io.flow.experience.v0.models {
|
|
@@ -8814,6 +8833,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
8814
8833
|
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
8815
8834
|
readonly edits?: io.flow.experience.v0.models.EditSummary[];
|
|
8816
8835
|
readonly rates?: io.flow.experience.v0.models.OrderRate[];
|
|
8836
|
+
readonly pricing_type?: io.flow.experience.v0.enums.PricingType;
|
|
8817
8837
|
}
|
|
8818
8838
|
interface OrderAddress {
|
|
8819
8839
|
readonly text?: string;
|
|
@@ -11966,8 +11986,10 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11966
11986
|
readonly merchant_id?: string;
|
|
11967
11987
|
readonly product_id: string;
|
|
11968
11988
|
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
11989
|
+
readonly restricted_reasons: io.flow.sellability.v0.models.SellabilityRestrictedReason[];
|
|
11969
11990
|
readonly needs_action_attributes?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
|
|
11970
11991
|
readonly request_id?: string;
|
|
11992
|
+
readonly hs6_code?: string;
|
|
11971
11993
|
}
|
|
11972
11994
|
interface SellabilityError {
|
|
11973
11995
|
readonly discriminator: 'sellability_error';
|
|
@@ -11979,6 +12001,10 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11979
12001
|
readonly category_metafield_handles: string[];
|
|
11980
12002
|
readonly require_msds?: boolean;
|
|
11981
12003
|
}
|
|
12004
|
+
interface SellabilityReasonWithRegions {
|
|
12005
|
+
readonly reason: string;
|
|
12006
|
+
readonly regions: string[];
|
|
12007
|
+
}
|
|
11982
12008
|
interface SellabilityRegionResult {
|
|
11983
12009
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
11984
12010
|
readonly regions: string[];
|
|
@@ -11987,13 +12013,17 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
11987
12013
|
readonly region: string;
|
|
11988
12014
|
readonly reasons: string[];
|
|
11989
12015
|
}
|
|
12016
|
+
interface SellabilityRestrictedReason {
|
|
12017
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
12018
|
+
readonly reasons_with_regions: io.flow.sellability.v0.models.SellabilityReasonWithRegions[];
|
|
12019
|
+
}
|
|
11990
12020
|
interface SellabilityRestrictedRegion {
|
|
11991
12021
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
11992
|
-
readonly
|
|
12022
|
+
readonly regions: string[];
|
|
11993
12023
|
}
|
|
11994
12024
|
interface SellabilityScreening {
|
|
11995
12025
|
readonly discriminator: 'sellability_screening';
|
|
11996
|
-
readonly
|
|
12026
|
+
readonly product_sellability_result?: io.flow.sellability.v0.models.ProductSellabilityResult;
|
|
11997
12027
|
readonly request_id: string;
|
|
11998
12028
|
readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
11999
12029
|
readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
@@ -12196,6 +12226,17 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12196
12226
|
readonly swift_code: string;
|
|
12197
12227
|
readonly iban: string;
|
|
12198
12228
|
}
|
|
12229
|
+
interface BankAccountInfoKor {
|
|
12230
|
+
readonly discriminator: 'kor';
|
|
12231
|
+
readonly name?: string;
|
|
12232
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
12233
|
+
readonly phone?: string;
|
|
12234
|
+
readonly email?: string;
|
|
12235
|
+
readonly bank_account_number: string;
|
|
12236
|
+
readonly bank_routing_number?: string;
|
|
12237
|
+
readonly bank_name?: string;
|
|
12238
|
+
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
12239
|
+
}
|
|
12199
12240
|
interface BankAccountInfoUsa {
|
|
12200
12241
|
readonly discriminator: 'usa';
|
|
12201
12242
|
readonly routing_number: string;
|
|
@@ -12203,7 +12244,7 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
12203
12244
|
}
|
|
12204
12245
|
}
|
|
12205
12246
|
declare namespace io.flow.billing.bank.account.v0.unions {
|
|
12206
|
-
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta;
|
|
12247
|
+
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa | io.flow.billing.bank.account.v0.models.BankAccountInfoCan | io.flow.billing.bank.account.v0.models.BankAccountInfoGbr | io.flow.billing.bank.account.v0.models.BankAccountInfoFra | io.flow.billing.bank.account.v0.models.BankAccountInfoIta | io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
|
|
12207
12248
|
}
|
|
12208
12249
|
declare namespace io.flow.internal.v0.enums {
|
|
12209
12250
|
type AccountPaymentHoldReason = 'fraudulent' | 'frozen' | 'invalid_bank_account';
|
|
@@ -12212,6 +12253,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12212
12253
|
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
12213
12254
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
12214
12255
|
type AldoItemType = 'physical' | 'digital';
|
|
12256
|
+
type AmruthaItemType = 'physical' | 'digital';
|
|
12215
12257
|
type AnirbanItemType = 'physical' | 'digital';
|
|
12216
12258
|
type AnshItemType = 'physical' | 'digital';
|
|
12217
12259
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -12296,7 +12338,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
12296
12338
|
type EmptyAttribute = 'irrelevant';
|
|
12297
12339
|
type ErpFileType = 'vendor';
|
|
12298
12340
|
type EvaluationCheckResult = 'pass' | 'fail';
|
|
12299
|
-
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' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | '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' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | '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' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | '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' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | '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_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_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_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_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_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'anirban_item_upserted' | 'anirban_item_deleted' | 'sarvesh_item_upserted' | 'sarvesh_item_deleted' | 'hosein_item_upserted' | 'hosein_item_deleted' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12341
|
+
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' | 'adyen_dispute_upserted' | 'adyen_dispute_deleted' | 'fulfillment_upserted' | 'fulfillment_deleted' | 'merchant_upserted' | 'merchant_deleted' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'fulfillment_status_upserted' | 'fulfillment_status_deleted' | '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' | 'commercial_invoice_internal_upserted' | 'commercial_invoice_internal_deleted' | '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' | 'customs_description_import' | 'customs_description_tariffs_import' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | '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' | 'quote_upserted' | 'quote_deleted' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'harmonize_fully_request_v2' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'merchant_override_upserted' | 'merchant_override_deleted' | 'harmonization_classification_statistics_published' | '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_creation_job_upserted' | 'label_creation_job_deleted' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'logistics_capabilities_upserted' | 'logistics_capabilities_deleted' | 'localized_item_prices_export_request' | 'order_combined_shipment_upserted' | 'order_combined_shipment_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'organization_business_entity_deleted' | 'organization_business_entity_upserted' | 'organization_status_change_upserted' | 'organization_status_change_deleted' | 'organization_deactivation_upserted' | 'organization_deactivation_deleted' | 'merchant_guid_assignment_upserted' | 'merchant_guid_assignment_deleted' | 'organization_metadata_upserted' | 'organization_metadata_deleted' | 'partner_organization_settings_upserted' | 'partner_organization_settings_deleted' | 'unassigned_merchant_guid_upserted' | 'unassigned_merchant_guid_deleted' | 'partner_tracking_subscription_upserted' | 'partner_tracking_subscription_deleted' | 'partner_request_upserted' | 'partner_request_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'order_refund_transaction_upserted' | 'order_refund_transaction_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'paypal_dispute_upserted' | 'paypal_dispute_deleted' | 'product_restriction_rule_decision_upserted' | 'product_restriction_rule_decision_deleted' | 'product_restriction_state_inserted' | 'product_restriction_state_updated' | 'product_restriction_state_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_rate_level_upserted' | 'ratecard_rate_level_deleted' | 'ratecard_rate_level_ratecard_upserted' | 'ratecard_rate_level_ratecard_deleted' | 'ratecard_rate_level_organization_upserted' | 'ratecard_rate_level_organization_deleted' | 'restriction_organization_status_upserted' | 'restriction_organization_status_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'screening_status_change_upserted' | 'screening_status_change_deleted' | 'restrictions_dailyops_upserted' | 'restrictions_dailyops_deleted' | 'restriction_rule_upserted' | 'restriction_rule_deleted' | 'restriction_rule_effect_upserted' | 'restriction_rule_effect_deleted' | 'taxonomy_category_hs6_ref_upserted' | 'taxonomy_category_hs6_ref_deleted' | 'shopify_hs10_codes_upserted' | 'shopify_hs10_codes_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_product_taxonomy_attribute_upserted' | 'shopify_product_taxonomy_attribute_deleted' | 'shopify_product_taxonomy_attribute_value_upserted' | 'shopify_product_taxonomy_attribute_value_deleted' | 'shopify_markets_metrics_upserted' | 'shopify_markets_metrics_deleted' | 'channel_order_summary_upserted' | 'channel_order_summary_deleted' | 'channel_organization_identifier_upserted' | 'channel_organization_identifier_deleted' | 'order_tax_and_duty_inclusivity_setting_upserted' | 'order_tax_and_duty_inclusivity_setting_deleted' | 'shopify_product_bundle_upserted' | 'shopify_product_bundle_deleted' | 'shopify_incoterm_summary_error_published' | 'shopify_markets_best_selling_product_upserted' | 'shopify_markets_best_selling_product_deleted' | 'shopify_order_risk_assessment_upserted' | 'shopify_order_risk_assessment_deleted' | 'shopify_order_transaction_upserted' | 'shopify_order_transaction_deleted' | 'shopify_test_order_upserted' | 'shopify_test_order_deleted' | 'shopify_product_create_upserted' | 'shopify_product_create_deleted' | 'shopify_product_update_upserted' | 'shopify_product_update_deleted' | 'shopify_product_delete_upserted' | 'shopify_product_delete_deleted' | 'shopify_inventory_item_create_upserted' | 'shopify_inventory_item_create_deleted' | 'shopify_inventory_item_update_upserted' | 'shopify_inventory_item_update_deleted' | 'shopify_inventory_item_delete_upserted' | 'shopify_inventory_item_delete_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'shopify_order_fulfillments_snapshot_upserted' | 'shopify_order_fulfillments_snapshot_deleted' | 'shopify_merchant_plan_upserted' | 'shopify_merchant_plan_deleted' | 'shopify_dispute_upserted' | 'shopify_dispute_deleted' | 'shopify_report_file_upserted' | 'shopify_report_file_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'stripe_dispute_upserted' | 'stripe_dispute_deleted' | 'stripe_connect_report_record_upserted' | 'stripe_connect_report_record_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'anirban_item_upserted' | 'anirban_item_deleted' | 'sarvesh_item_upserted' | 'sarvesh_item_deleted' | 'hosein_item_upserted' | 'hosein_item_deleted' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'gabriel_item_upserted' | 'gabriel_item_deleted' | 'tracking_processing_error_upserted' | 'tracking_processing_error_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_assurance_analysis_upserted' | 'tracking_assurance_analysis_deleted' | 'tracking_assurance_job_upserted' | 'tracking_assurance_job_deleted' | 'tracking_subscription_upserted' | 'tracking_subscription_deleted' | 'tracking_carrier_return_label_upserted' | 'tracking_carrier_return_label_deleted' | 'tracking_label_dimensions_upserted' | 'tracking_label_dimensions_deleted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
12300
12342
|
type ExperienceImportType = 'experience_with_settings';
|
|
12301
12343
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
12302
12344
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -13107,6 +13149,21 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13107
13149
|
readonly name: string;
|
|
13108
13150
|
readonly labels: Record<string, string[]>;
|
|
13109
13151
|
}
|
|
13152
|
+
interface AmruthaItem {
|
|
13153
|
+
readonly id: string;
|
|
13154
|
+
readonly number: string;
|
|
13155
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
13156
|
+
readonly description?: string;
|
|
13157
|
+
readonly type: io.flow.internal.v0.enums.AmruthaItemType;
|
|
13158
|
+
readonly added_on: string;
|
|
13159
|
+
}
|
|
13160
|
+
interface AmruthaItemForm {
|
|
13161
|
+
readonly number: string;
|
|
13162
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
13163
|
+
readonly description?: string;
|
|
13164
|
+
readonly type: io.flow.internal.v0.enums.AmruthaItemType;
|
|
13165
|
+
readonly added_on: string;
|
|
13166
|
+
}
|
|
13110
13167
|
interface AnirbanItem {
|
|
13111
13168
|
readonly id: string;
|
|
13112
13169
|
readonly number: string;
|
|
@@ -21798,6 +21855,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21798
21855
|
readonly default_hs6_code?: string;
|
|
21799
21856
|
readonly auto_correct: boolean;
|
|
21800
21857
|
}
|
|
21858
|
+
interface ShopifyTestOrder {
|
|
21859
|
+
readonly id: string;
|
|
21860
|
+
}
|
|
21861
|
+
interface ShopifyTestOrderDeleted {
|
|
21862
|
+
readonly discriminator: 'shopify_test_order_deleted';
|
|
21863
|
+
readonly event_id: string;
|
|
21864
|
+
readonly timestamp: string;
|
|
21865
|
+
readonly organization: string;
|
|
21866
|
+
readonly id: string;
|
|
21867
|
+
}
|
|
21868
|
+
interface ShopifyTestOrderUpserted {
|
|
21869
|
+
readonly discriminator: 'shopify_test_order_upserted';
|
|
21870
|
+
readonly event_id: string;
|
|
21871
|
+
readonly timestamp: string;
|
|
21872
|
+
readonly organization: string;
|
|
21873
|
+
readonly shopify_test_order: io.flow.internal.v0.models.ShopifyTestOrder;
|
|
21874
|
+
}
|
|
21801
21875
|
interface ShopperBreakdown {
|
|
21802
21876
|
readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
21803
21877
|
readonly product_purchase_price?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -22114,6 +22188,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22114
22188
|
readonly mor_fees?: number;
|
|
22115
22189
|
readonly mor_foreign_exchange_fees?: number;
|
|
22116
22190
|
readonly sp_processing_fees?: number;
|
|
22191
|
+
readonly mor_fees_tax?: number;
|
|
22117
22192
|
}
|
|
22118
22193
|
interface StripeConnectReportRecordTransferMetadata {
|
|
22119
22194
|
readonly discriminator: 'stripe_connect_report_record_transfer_metadata';
|
|
@@ -23101,7 +23176,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23101
23176
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
23102
23177
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal | io.flow.internal.v0.models.DisputeDetailsStripe;
|
|
23103
23178
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
23104
|
-
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.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | 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.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | 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.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.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.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | 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.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | 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.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | 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.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | 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.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | 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.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.AnirbanItemUpserted | io.flow.internal.v0.models.AnirbanItemDeleted | io.flow.internal.v0.models.SarveshItemUpserted | io.flow.internal.v0.models.SarveshItemDeleted | io.flow.internal.v0.models.HoseinItemUpserted | io.flow.internal.v0.models.HoseinItemDeleted | io.flow.internal.v0.models.NiallItemUpserted | io.flow.internal.v0.models.NiallItemDeleted | io.flow.internal.v0.models.RohanItemUpserted | io.flow.internal.v0.models.RohanItemDeleted | io.flow.internal.v0.models.AldoItemUpserted | io.flow.internal.v0.models.AldoItemDeleted | io.flow.internal.v0.models.AnshItemUpserted | io.flow.internal.v0.models.AnshItemDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
23179
|
+
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.AdyenDisputeUpserted | io.flow.internal.v0.models.AdyenDisputeDeleted | io.flow.internal.v0.models.FulfillmentUpserted | io.flow.internal.v0.models.FulfillmentDeleted | io.flow.internal.v0.models.MerchantUpserted | io.flow.internal.v0.models.MerchantDeleted | io.flow.internal.v0.models.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.FulfillmentStatusUpserted | io.flow.internal.v0.models.FulfillmentStatusDeleted | 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.CommercialInvoiceInternalUpserted | io.flow.internal.v0.models.CommercialInvoiceInternalDeleted | 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.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.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.QuoteUpserted | io.flow.internal.v0.models.QuoteDeleted | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.MerchantOverrideUpserted | io.flow.internal.v0.models.MerchantOverrideDeleted | io.flow.internal.v0.models.HarmonizationClassificationStatisticsPublished | 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.LabelCreationJobUpserted | io.flow.internal.v0.models.LabelCreationJobDeleted | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LogisticsCapabilitiesUpserted | io.flow.internal.v0.models.LogisticsCapabilitiesDeleted | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | 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.OrganizationBusinessEntityDeleted | io.flow.internal.v0.models.OrganizationBusinessEntityUpserted | io.flow.internal.v0.models.OrganizationStatusChangeUpserted | io.flow.internal.v0.models.OrganizationStatusChangeDeleted | io.flow.internal.v0.models.OrganizationDeactivationUpserted | io.flow.internal.v0.models.OrganizationDeactivationDeleted | io.flow.internal.v0.models.MerchantGuidAssignmentUpserted | io.flow.internal.v0.models.MerchantGuidAssignmentDeleted | io.flow.internal.v0.models.OrganizationMetadataUpserted | io.flow.internal.v0.models.OrganizationMetadataDeleted | io.flow.internal.v0.models.PartnerOrganizationSettingsUpserted | io.flow.internal.v0.models.PartnerOrganizationSettingsDeleted | io.flow.internal.v0.models.UnassignedMerchantGuidUpserted | io.flow.internal.v0.models.UnassignedMerchantGuidDeleted | io.flow.internal.v0.models.PartnerTrackingSubscriptionUpserted | io.flow.internal.v0.models.PartnerTrackingSubscriptionDeleted | io.flow.internal.v0.models.PartnerRequestUpserted | io.flow.internal.v0.models.PartnerRequestDeleted | 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.OrderRefundTransactionUpserted | io.flow.internal.v0.models.OrderRefundTransactionDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PaypalDisputeUpserted | io.flow.internal.v0.models.PaypalDisputeDeleted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionUpserted | io.flow.internal.v0.models.ProductRestrictionRuleDecisionDeleted | io.flow.internal.v0.models.ProductRestrictionStateInserted | io.flow.internal.v0.models.ProductRestrictionStateUpdated | io.flow.internal.v0.models.ProductRestrictionStateDeleted | 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.RatecardRateLevelUpserted | io.flow.internal.v0.models.RatecardRateLevelDeleted | io.flow.internal.v0.models.RatecardRateLevelRatecardUpserted | io.flow.internal.v0.models.RatecardRateLevelRatecardDeleted | io.flow.internal.v0.models.RatecardRateLevelOrganizationUpserted | io.flow.internal.v0.models.RatecardRateLevelOrganizationDeleted | io.flow.internal.v0.models.RestrictionOrganizationStatusUpserted | io.flow.internal.v0.models.RestrictionOrganizationStatusDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.ScreeningStatusChangeUpserted | io.flow.internal.v0.models.ScreeningStatusChangeDeleted | io.flow.internal.v0.models.RestrictionsDailyopsUpserted | io.flow.internal.v0.models.RestrictionsDailyopsDeleted | io.flow.internal.v0.models.RestrictionRuleUpserted | io.flow.internal.v0.models.RestrictionRuleDeleted | io.flow.internal.v0.models.RestrictionRuleEffectUpserted | io.flow.internal.v0.models.RestrictionRuleEffectDeleted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefUpserted | io.flow.internal.v0.models.TaxonomyCategoryHs6RefDeleted | io.flow.internal.v0.models.ShopifyHs10CodesUpserted | io.flow.internal.v0.models.ShopifyHs10CodesDeleted | 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.ShopifyProductTaxonomyAttributeUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeDeleted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueUpserted | io.flow.internal.v0.models.ShopifyProductTaxonomyAttributeValueDeleted | io.flow.internal.v0.models.ShopifyMarketsMetricsUpserted | io.flow.internal.v0.models.ShopifyMarketsMetricsDeleted | io.flow.internal.v0.models.ChannelOrderSummaryUpserted | io.flow.internal.v0.models.ChannelOrderSummaryDeleted | io.flow.internal.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.internal.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.internal.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.internal.v0.models.ShopifyProductBundleUpserted | io.flow.internal.v0.models.ShopifyProductBundleDeleted | io.flow.internal.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.internal.v0.models.ShopifyMarketsBestSellingProductDeleted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted | io.flow.internal.v0.models.ShopifyOrderTransactionUpserted | io.flow.internal.v0.models.ShopifyOrderTransactionDeleted | io.flow.internal.v0.models.ShopifyTestOrderUpserted | io.flow.internal.v0.models.ShopifyTestOrderDeleted | io.flow.internal.v0.models.ShopifyProductCreateUpserted | io.flow.internal.v0.models.ShopifyProductCreateDeleted | io.flow.internal.v0.models.ShopifyProductUpdateUpserted | io.flow.internal.v0.models.ShopifyProductUpdateDeleted | io.flow.internal.v0.models.ShopifyProductDeleteUpserted | io.flow.internal.v0.models.ShopifyProductDeleteDeleted | io.flow.internal.v0.models.ShopifyInventoryItemCreateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemCreateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateUpserted | io.flow.internal.v0.models.ShopifyInventoryItemUpdateDeleted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteUpserted | io.flow.internal.v0.models.ShopifyInventoryItemDeleteDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotUpserted | io.flow.internal.v0.models.ShopifyOrderFulfillmentsSnapshotDeleted | io.flow.internal.v0.models.ShopifyMerchantPlanUpserted | io.flow.internal.v0.models.ShopifyMerchantPlanDeleted | io.flow.internal.v0.models.ShopifyDisputeUpserted | io.flow.internal.v0.models.ShopifyDisputeDeleted | io.flow.internal.v0.models.ShopifyReportFileUpserted | io.flow.internal.v0.models.ShopifyReportFileDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.StripeDisputeUpserted | io.flow.internal.v0.models.StripeDisputeDeleted | io.flow.internal.v0.models.StripeConnectReportRecordUpserted | io.flow.internal.v0.models.StripeConnectReportRecordDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.AnirbanItemUpserted | io.flow.internal.v0.models.AnirbanItemDeleted | io.flow.internal.v0.models.SarveshItemUpserted | io.flow.internal.v0.models.SarveshItemDeleted | io.flow.internal.v0.models.HoseinItemUpserted | io.flow.internal.v0.models.HoseinItemDeleted | io.flow.internal.v0.models.NiallItemUpserted | io.flow.internal.v0.models.NiallItemDeleted | io.flow.internal.v0.models.RohanItemUpserted | io.flow.internal.v0.models.RohanItemDeleted | io.flow.internal.v0.models.AldoItemUpserted | io.flow.internal.v0.models.AldoItemDeleted | io.flow.internal.v0.models.AnshItemUpserted | io.flow.internal.v0.models.AnshItemDeleted | io.flow.internal.v0.models.GabrielItemUpserted | io.flow.internal.v0.models.GabrielItemDeleted | io.flow.internal.v0.models.TrackingProcessingErrorUpserted | io.flow.internal.v0.models.TrackingProcessingErrorDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingAssuranceAnalysisUpserted | io.flow.internal.v0.models.TrackingAssuranceAnalysisDeleted | io.flow.internal.v0.models.TrackingAssuranceJobUpserted | io.flow.internal.v0.models.TrackingAssuranceJobDeleted | io.flow.internal.v0.models.TrackingSubscriptionUpserted | io.flow.internal.v0.models.TrackingSubscriptionDeleted | io.flow.internal.v0.models.TrackingCarrierReturnLabelUpserted | io.flow.internal.v0.models.TrackingCarrierReturnLabelDeleted | io.flow.internal.v0.models.TrackingLabelDimensionsUpserted | io.flow.internal.v0.models.TrackingLabelDimensionsDeleted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2;
|
|
23105
23180
|
type ExplicitStatementForm = io.flow.internal.v0.models.ExplicitStatementFormTransactionIds | io.flow.internal.v0.models.ExplicitStatementFormAllPendingPostedTransactions;
|
|
23106
23181
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
23107
23182
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -23252,6 +23327,9 @@ export declare type AllItemsExport = io.flow.internal.v0.models.AllItemsExport;
|
|
|
23252
23327
|
export declare type AllOrganizationsMembership = io.flow.internal.v0.models.AllOrganizationsMembership;
|
|
23253
23328
|
export declare type AllocationItemReference = io.flow.internal.v0.models.AllocationItemReference;
|
|
23254
23329
|
export declare type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
23330
|
+
export declare type AmruthaItem = io.flow.internal.v0.models.AmruthaItem;
|
|
23331
|
+
export declare type AmruthaItemForm = io.flow.internal.v0.models.AmruthaItemForm;
|
|
23332
|
+
export declare type AmruthaItemType = io.flow.internal.v0.enums.AmruthaItemType;
|
|
23255
23333
|
export declare type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
|
|
23256
23334
|
export declare type AnirbanItemDeleted = io.flow.internal.v0.models.AnirbanItemDeleted;
|
|
23257
23335
|
export declare type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
|
|
@@ -24806,6 +24884,9 @@ export declare type ShopifyStoreDetail = io.flow.internal.v0.models.ShopifyStore
|
|
|
24806
24884
|
export declare type ShopifyStripeEvent = io.flow.internal.v0.models.ShopifyStripeEvent;
|
|
24807
24885
|
export declare type ShopifyTaxonomyAlignmentConfig = io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig;
|
|
24808
24886
|
export declare type ShopifyTaxonomyAlignmentConfigForm = io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm;
|
|
24887
|
+
export declare type ShopifyTestOrder = io.flow.internal.v0.models.ShopifyTestOrder;
|
|
24888
|
+
export declare type ShopifyTestOrderDeleted = io.flow.internal.v0.models.ShopifyTestOrderDeleted;
|
|
24889
|
+
export declare type ShopifyTestOrderUpserted = io.flow.internal.v0.models.ShopifyTestOrderUpserted;
|
|
24809
24890
|
export declare type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
|
|
24810
24891
|
export declare type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
24811
24892
|
export declare type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
package/dist/api.d.ts
CHANGED
|
@@ -3022,7 +3022,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3022
3022
|
type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
|
|
3023
3023
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
3024
3024
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
3025
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
3025
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
3026
3026
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
3027
3027
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
3028
3028
|
type PaymentMethodRuleContentKey = 'description';
|
|
@@ -3047,6 +3047,7 @@ declare namespace io.flow.v0.enums {
|
|
|
3047
3047
|
type PriceDetailKey = 'item_price' | 'margins' | 'vat' | 'duty' | 'rounding' | 'adjustment';
|
|
3048
3048
|
type PriceFacetBoundary = 'min' | 'max';
|
|
3049
3049
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
3050
|
+
type PricingType = 'inclusive_pricing';
|
|
3050
3051
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
3051
3052
|
type ProvinceType = 'area' | 'city' | 'county' | 'department' | 'dependency' | 'district' | 'do_si' | 'emirate' | 'entity' | 'island' | 'municipality' | 'oblast' | 'outlying_area' | 'parish' | 'prefecture' | 'province' | 'state' | 'territory' | 'other';
|
|
3052
3053
|
type QuoteErrorCode = 'generic_error' | 'items_not_available' | 'shipping_unavailable';
|
|
@@ -3842,6 +3843,17 @@ declare namespace io.flow.v0.models {
|
|
|
3842
3843
|
readonly swift_code: string;
|
|
3843
3844
|
readonly iban: string;
|
|
3844
3845
|
}
|
|
3846
|
+
interface BankAccountInfoKor {
|
|
3847
|
+
readonly discriminator: 'kor';
|
|
3848
|
+
readonly name?: string;
|
|
3849
|
+
readonly address?: io.flow.v0.models.Address;
|
|
3850
|
+
readonly phone?: string;
|
|
3851
|
+
readonly email?: string;
|
|
3852
|
+
readonly bank_account_number: string;
|
|
3853
|
+
readonly bank_routing_number?: string;
|
|
3854
|
+
readonly bank_name?: string;
|
|
3855
|
+
readonly bank_address?: io.flow.v0.models.Address;
|
|
3856
|
+
}
|
|
3845
3857
|
interface BankAccountInfoUsa {
|
|
3846
3858
|
readonly discriminator: 'usa';
|
|
3847
3859
|
readonly routing_number: string;
|
|
@@ -7529,6 +7541,7 @@ declare namespace io.flow.v0.models {
|
|
|
7529
7541
|
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
7530
7542
|
readonly edits?: io.flow.v0.models.EditSummary[];
|
|
7531
7543
|
readonly rates?: io.flow.v0.models.OrderRate[];
|
|
7544
|
+
readonly pricing_type?: io.flow.v0.enums.PricingType;
|
|
7532
7545
|
}
|
|
7533
7546
|
interface OrderAddress {
|
|
7534
7547
|
readonly text?: string;
|
|
@@ -9330,6 +9343,7 @@ declare namespace io.flow.v0.models {
|
|
|
9330
9343
|
readonly merchant_id?: string;
|
|
9331
9344
|
readonly product_id: string;
|
|
9332
9345
|
readonly restricted_regions: io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
9346
|
+
readonly restricted_reasons: io.flow.v0.models.SellabilityRestrictedReason[];
|
|
9333
9347
|
readonly needs_action_attributes?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
|
|
9334
9348
|
readonly request_id?: string;
|
|
9335
9349
|
readonly hs6_code?: string;
|
|
@@ -10184,6 +10198,10 @@ declare namespace io.flow.v0.models {
|
|
|
10184
10198
|
readonly category_metafield_handles: string[];
|
|
10185
10199
|
readonly require_msds?: boolean;
|
|
10186
10200
|
}
|
|
10201
|
+
interface SellabilityReasonWithRegions {
|
|
10202
|
+
readonly reason: string;
|
|
10203
|
+
readonly regions: string[];
|
|
10204
|
+
}
|
|
10187
10205
|
interface SellabilityRegionResult {
|
|
10188
10206
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10189
10207
|
readonly regions: string[];
|
|
@@ -10192,13 +10210,17 @@ declare namespace io.flow.v0.models {
|
|
|
10192
10210
|
readonly region: string;
|
|
10193
10211
|
readonly reasons: string[];
|
|
10194
10212
|
}
|
|
10213
|
+
interface SellabilityRestrictedReason {
|
|
10214
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10215
|
+
readonly reasons_with_regions: io.flow.v0.models.SellabilityReasonWithRegions[];
|
|
10216
|
+
}
|
|
10195
10217
|
interface SellabilityRestrictedRegion {
|
|
10196
10218
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
10197
|
-
readonly
|
|
10219
|
+
readonly regions: string[];
|
|
10198
10220
|
}
|
|
10199
10221
|
interface SellabilityScreening {
|
|
10200
10222
|
readonly discriminator: 'sellability_screening';
|
|
10201
|
-
readonly
|
|
10223
|
+
readonly product_sellability_result?: io.flow.v0.models.ProductSellabilityResult;
|
|
10202
10224
|
readonly request_id: string;
|
|
10203
10225
|
readonly status: io.flow.v0.enums.SellabilityResultStatus;
|
|
10204
10226
|
readonly error_code?: io.flow.v0.enums.SellabilityResultErrorCode;
|
|
@@ -11959,7 +11981,7 @@ declare namespace io.flow.v0.unions {
|
|
|
11959
11981
|
type AuthorizationResultActionDetails = io.flow.v0.models.AdyenNativeActionDetails | io.flow.v0.models.StripeAuthorizationResultActionDetails | io.flow.v0.models.ThreedsIdentifyActionDetails | io.flow.v0.models.ThreedsChallengeActionDetails | io.flow.v0.models.ApplepaySdkCreateResultActionDetails | io.flow.v0.models.ApplepaySdkValidateResultActionDetails | io.flow.v0.models.KlarnaSdkAuthorizationResultActionDetails | io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
11960
11982
|
type AvailableFilter = io.flow.v0.models.AvailableFilterStructured | io.flow.v0.models.AvailableFilterUnstructured;
|
|
11961
11983
|
type BankAccountForm = io.flow.v0.models.BankAccountFormInfo | io.flow.v0.models.BankAccountFormSimple;
|
|
11962
|
-
type BankAccountInfo = io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta;
|
|
11984
|
+
type BankAccountInfo = io.flow.v0.models.BankAccountInfoUsa | io.flow.v0.models.BankAccountInfoCan | io.flow.v0.models.BankAccountInfoGbr | io.flow.v0.models.BankAccountInfoFra | io.flow.v0.models.BankAccountInfoIta | io.flow.v0.models.BankAccountInfoKor;
|
|
11963
11985
|
type BrowserActionConfiguration = io.flow.v0.models.CardBrowserActionConfiguration;
|
|
11964
11986
|
type CardAuthorizationActionResult = io.flow.v0.models.AuthorizationActionResultAdyenV3 | io.flow.v0.models.AuthorizationActionResultAdyenV4;
|
|
11965
11987
|
type CardNumber = io.flow.v0.models.PaymentMethodCardNumberCleartext | io.flow.v0.models.PaymentMethodCardNumberCipher;
|
|
@@ -12208,6 +12230,7 @@ export declare type BankAccountInfoCan = io.flow.v0.models.BankAccountInfoCan;
|
|
|
12208
12230
|
export declare type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
12209
12231
|
export declare type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
12210
12232
|
export declare type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
12233
|
+
export declare type BankAccountInfoKor = io.flow.v0.models.BankAccountInfoKor;
|
|
12211
12234
|
export declare type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
12212
12235
|
export declare type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
12213
12236
|
export declare type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -13304,6 +13327,7 @@ export declare type PriceWithBaseAndDetails = io.flow.v0.models.PriceWithBaseAnd
|
|
|
13304
13327
|
export declare type Pricing = io.flow.v0.models.Pricing;
|
|
13305
13328
|
export declare type PricingLevySetting = io.flow.v0.enums.PricingLevySetting;
|
|
13306
13329
|
export declare type PricingSettings = io.flow.v0.models.PricingSettings;
|
|
13330
|
+
export declare type PricingType = io.flow.v0.enums.PricingType;
|
|
13307
13331
|
export declare type PricingVersion = io.flow.v0.models.PricingVersion;
|
|
13308
13332
|
export declare type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
|
|
13309
13333
|
export declare type Product = io.flow.v0.models.Product;
|
|
@@ -13478,11 +13502,13 @@ export declare type SelfBillingAgreement = io.flow.v0.models.SelfBillingAgreemen
|
|
|
13478
13502
|
export declare type SellabilityError = io.flow.v0.models.SellabilityError;
|
|
13479
13503
|
export declare type SellabilityErrorCode = io.flow.v0.enums.SellabilityErrorCode;
|
|
13480
13504
|
export declare type SellabilityNeedsActionAttributes = io.flow.v0.models.SellabilityNeedsActionAttributes;
|
|
13505
|
+
export declare type SellabilityReasonWithRegions = io.flow.v0.models.SellabilityReasonWithRegions;
|
|
13481
13506
|
export declare type SellabilityRegionResult = io.flow.v0.models.SellabilityRegionResult;
|
|
13482
13507
|
export declare type SellabilityRegionWithReasons = io.flow.v0.models.SellabilityRegionWithReasons;
|
|
13483
13508
|
export declare type SellabilityRequest = io.flow.v0.unions.SellabilityRequest;
|
|
13484
13509
|
export declare type SellabilityRequestStatus = io.flow.v0.enums.SellabilityRequestStatus;
|
|
13485
13510
|
export declare type SellabilityResponse = io.flow.v0.unions.SellabilityResponse;
|
|
13511
|
+
export declare type SellabilityRestrictedReason = io.flow.v0.models.SellabilityRestrictedReason;
|
|
13486
13512
|
export declare type SellabilityRestrictedRegion = io.flow.v0.models.SellabilityRestrictedRegion;
|
|
13487
13513
|
export declare type SellabilityResultErrorCode = io.flow.v0.enums.SellabilityResultErrorCode;
|
|
13488
13514
|
export declare type SellabilityResultStatus = io.flow.v0.enums.SellabilityResultStatus;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.132",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "2db30f8eba758d78a8a5f36c767fbddd2b9f4f94"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -2334,7 +2334,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
2334
2334
|
| 'invalid_customer'
|
|
2335
2335
|
| 'invalid_destination'
|
|
2336
2336
|
| 'unknown';
|
|
2337
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
2337
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
2338
2338
|
type PaymentSourceConfirmationActionType =
|
|
2339
2339
|
| 'cvv'
|
|
2340
2340
|
| 'billing_address'
|
|
@@ -7216,6 +7216,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
7216
7216
|
readonly initial_product_restrictions_synced_at?: string;
|
|
7217
7217
|
}
|
|
7218
7218
|
|
|
7219
|
+
interface ShopifyTestOrder {
|
|
7220
|
+
readonly id: string;
|
|
7221
|
+
}
|
|
7222
|
+
|
|
7219
7223
|
interface ThirdPartyLogisticsPartner {
|
|
7220
7224
|
readonly warehouse_address: io.flow.common.v0.models.BillingAddress;
|
|
7221
7225
|
readonly warehouse_url?: string;
|
|
@@ -9722,6 +9726,7 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
9722
9726
|
readonly tags?: string;
|
|
9723
9727
|
readonly tax_lines: io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
9724
9728
|
readonly taxes_included: boolean;
|
|
9729
|
+
readonly test?: boolean;
|
|
9725
9730
|
readonly token?: string;
|
|
9726
9731
|
readonly total_weight?: number;
|
|
9727
9732
|
readonly updated_at?: string;
|
|
@@ -11392,6 +11397,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
11392
11397
|
readonly timestamp: string;
|
|
11393
11398
|
readonly shopify_product_taxonomy_attribute_value: io.flow.shopify.markets.internal.v0.models.ShopifyProductTaxonomyAttributeValue;
|
|
11394
11399
|
}
|
|
11400
|
+
|
|
11401
|
+
interface ShopifyTestOrderDeleted {
|
|
11402
|
+
readonly discriminator: 'shopify_test_order_deleted';
|
|
11403
|
+
readonly event_id: string;
|
|
11404
|
+
readonly timestamp: string;
|
|
11405
|
+
readonly organization: string;
|
|
11406
|
+
readonly id: string;
|
|
11407
|
+
}
|
|
11408
|
+
|
|
11409
|
+
interface ShopifyTestOrderUpserted {
|
|
11410
|
+
readonly discriminator: 'shopify_test_order_upserted';
|
|
11411
|
+
readonly event_id: string;
|
|
11412
|
+
readonly timestamp: string;
|
|
11413
|
+
readonly organization: string;
|
|
11414
|
+
readonly shopify_test_order: io.flow.shopify.markets.internal.v0.models.ShopifyTestOrder;
|
|
11415
|
+
}
|
|
11395
11416
|
}
|
|
11396
11417
|
|
|
11397
11418
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
@@ -11424,7 +11445,9 @@ declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
|
11424
11445
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted
|
|
11425
11446
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted
|
|
11426
11447
|
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionUpserted
|
|
11427
|
-
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted
|
|
11448
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderTransactionDeleted
|
|
11449
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderUpserted
|
|
11450
|
+
| io.flow.shopify.markets.internal.event.v0.models.ShopifyTestOrderDeleted;
|
|
11428
11451
|
}
|
|
11429
11452
|
|
|
11430
11453
|
declare namespace io.flow.experience.v0.enums {
|
|
@@ -11493,6 +11516,7 @@ declare namespace io.flow.experience.v0.enums {
|
|
|
11493
11516
|
type OrganizationPaymentMethodTag = 'deny';
|
|
11494
11517
|
type PaymentMethodRuleContentKey = 'description';
|
|
11495
11518
|
type PriceFacetBoundary = 'min' | 'max';
|
|
11519
|
+
type PricingType = 'inclusive_pricing';
|
|
11496
11520
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
11497
11521
|
}
|
|
11498
11522
|
|
|
@@ -12114,6 +12138,7 @@ declare namespace io.flow.experience.v0.models {
|
|
|
12114
12138
|
readonly payment_source?: io.flow.experience.v0.enums.OrderPaymentSourceType;
|
|
12115
12139
|
readonly edits?: io.flow.experience.v0.models.EditSummary[];
|
|
12116
12140
|
readonly rates?: io.flow.experience.v0.models.OrderRate[];
|
|
12141
|
+
readonly pricing_type?: io.flow.experience.v0.enums.PricingType;
|
|
12117
12142
|
}
|
|
12118
12143
|
|
|
12119
12144
|
interface OrderAddress {
|
|
@@ -16236,8 +16261,10 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
16236
16261
|
readonly merchant_id?: string;
|
|
16237
16262
|
readonly product_id: string;
|
|
16238
16263
|
readonly restricted_regions: io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
|
|
16264
|
+
readonly restricted_reasons: io.flow.sellability.v0.models.SellabilityRestrictedReason[];
|
|
16239
16265
|
readonly needs_action_attributes?: io.flow.sellability.v0.models.SellabilityNeedsActionAttributes[];
|
|
16240
16266
|
readonly request_id?: string;
|
|
16267
|
+
readonly hs6_code?: string;
|
|
16241
16268
|
}
|
|
16242
16269
|
|
|
16243
16270
|
interface SellabilityError {
|
|
@@ -16252,6 +16279,11 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
16252
16279
|
readonly require_msds?: boolean;
|
|
16253
16280
|
}
|
|
16254
16281
|
|
|
16282
|
+
interface SellabilityReasonWithRegions {
|
|
16283
|
+
readonly reason: string;
|
|
16284
|
+
readonly regions: string[];
|
|
16285
|
+
}
|
|
16286
|
+
|
|
16255
16287
|
interface SellabilityRegionResult {
|
|
16256
16288
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
16257
16289
|
readonly regions: string[];
|
|
@@ -16262,14 +16294,19 @@ declare namespace io.flow.sellability.v0.models {
|
|
|
16262
16294
|
readonly reasons: string[];
|
|
16263
16295
|
}
|
|
16264
16296
|
|
|
16297
|
+
interface SellabilityRestrictedReason {
|
|
16298
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
16299
|
+
readonly reasons_with_regions: io.flow.sellability.v0.models.SellabilityReasonWithRegions[];
|
|
16300
|
+
}
|
|
16301
|
+
|
|
16265
16302
|
interface SellabilityRestrictedRegion {
|
|
16266
16303
|
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
16267
|
-
readonly
|
|
16304
|
+
readonly regions: string[];
|
|
16268
16305
|
}
|
|
16269
16306
|
|
|
16270
16307
|
interface SellabilityScreening {
|
|
16271
16308
|
readonly discriminator: 'sellability_screening';
|
|
16272
|
-
readonly
|
|
16309
|
+
readonly product_sellability_result?: io.flow.sellability.v0.models.ProductSellabilityResult;
|
|
16273
16310
|
readonly request_id: string;
|
|
16274
16311
|
readonly status: io.flow.sellability.v0.enums.SellabilityResultStatus;
|
|
16275
16312
|
readonly error_code?: io.flow.sellability.v0.enums.SellabilityResultErrorCode;
|
|
@@ -16521,6 +16558,18 @@ declare namespace io.flow.billing.bank.account.v0.models {
|
|
|
16521
16558
|
readonly iban: string;
|
|
16522
16559
|
}
|
|
16523
16560
|
|
|
16561
|
+
interface BankAccountInfoKor {
|
|
16562
|
+
readonly discriminator: 'kor';
|
|
16563
|
+
readonly name?: string;
|
|
16564
|
+
readonly address?: io.flow.common.v0.models.Address;
|
|
16565
|
+
readonly phone?: string;
|
|
16566
|
+
readonly email?: string;
|
|
16567
|
+
readonly bank_account_number: string;
|
|
16568
|
+
readonly bank_routing_number?: string;
|
|
16569
|
+
readonly bank_name?: string;
|
|
16570
|
+
readonly bank_address?: io.flow.common.v0.models.Address;
|
|
16571
|
+
}
|
|
16572
|
+
|
|
16524
16573
|
interface BankAccountInfoUsa {
|
|
16525
16574
|
readonly discriminator: 'usa';
|
|
16526
16575
|
readonly routing_number: string;
|
|
@@ -16534,7 +16583,8 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
16534
16583
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoCan
|
|
16535
16584
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoGbr
|
|
16536
16585
|
| io.flow.billing.bank.account.v0.models.BankAccountInfoFra
|
|
16537
|
-
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta
|
|
16586
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoIta
|
|
16587
|
+
| io.flow.billing.bank.account.v0.models.BankAccountInfoKor;
|
|
16538
16588
|
}
|
|
16539
16589
|
|
|
16540
16590
|
declare namespace io.flow.internal.v0.enums {
|
|
@@ -16550,6 +16600,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
16550
16600
|
| 'checkout_payments_api'
|
|
16551
16601
|
| 'classic_authorise_api';
|
|
16552
16602
|
type AldoItemType = 'physical' | 'digital';
|
|
16603
|
+
type AmruthaItemType = 'physical' | 'digital';
|
|
16553
16604
|
type AnirbanItemType = 'physical' | 'digital';
|
|
16554
16605
|
type AnshItemType = 'physical' | 'digital';
|
|
16555
16606
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
@@ -17353,6 +17404,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
17353
17404
|
| 'shopify_order_risk_assessment_deleted'
|
|
17354
17405
|
| 'shopify_order_transaction_upserted'
|
|
17355
17406
|
| 'shopify_order_transaction_deleted'
|
|
17407
|
+
| 'shopify_test_order_upserted'
|
|
17408
|
+
| 'shopify_test_order_deleted'
|
|
17356
17409
|
| 'shopify_product_create_upserted'
|
|
17357
17410
|
| 'shopify_product_create_deleted'
|
|
17358
17411
|
| 'shopify_product_update_upserted'
|
|
@@ -18666,6 +18719,23 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18666
18719
|
readonly labels: Record<string, string[]>;
|
|
18667
18720
|
}
|
|
18668
18721
|
|
|
18722
|
+
interface AmruthaItem {
|
|
18723
|
+
readonly id: string;
|
|
18724
|
+
readonly number: string;
|
|
18725
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18726
|
+
readonly description?: string;
|
|
18727
|
+
readonly type: io.flow.internal.v0.enums.AmruthaItemType;
|
|
18728
|
+
readonly added_on: string;
|
|
18729
|
+
}
|
|
18730
|
+
|
|
18731
|
+
interface AmruthaItemForm {
|
|
18732
|
+
readonly number: string;
|
|
18733
|
+
readonly amount: io.flow.common.v0.models.Price;
|
|
18734
|
+
readonly description?: string;
|
|
18735
|
+
readonly type: io.flow.internal.v0.enums.AmruthaItemType;
|
|
18736
|
+
readonly added_on: string;
|
|
18737
|
+
}
|
|
18738
|
+
|
|
18669
18739
|
interface AnirbanItem {
|
|
18670
18740
|
readonly id: string;
|
|
18671
18741
|
readonly number: string;
|
|
@@ -28638,6 +28708,26 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28638
28708
|
readonly auto_correct: boolean;
|
|
28639
28709
|
}
|
|
28640
28710
|
|
|
28711
|
+
interface ShopifyTestOrder {
|
|
28712
|
+
readonly id: string;
|
|
28713
|
+
}
|
|
28714
|
+
|
|
28715
|
+
interface ShopifyTestOrderDeleted {
|
|
28716
|
+
readonly discriminator: 'shopify_test_order_deleted';
|
|
28717
|
+
readonly event_id: string;
|
|
28718
|
+
readonly timestamp: string;
|
|
28719
|
+
readonly organization: string;
|
|
28720
|
+
readonly id: string;
|
|
28721
|
+
}
|
|
28722
|
+
|
|
28723
|
+
interface ShopifyTestOrderUpserted {
|
|
28724
|
+
readonly discriminator: 'shopify_test_order_upserted';
|
|
28725
|
+
readonly event_id: string;
|
|
28726
|
+
readonly timestamp: string;
|
|
28727
|
+
readonly organization: string;
|
|
28728
|
+
readonly shopify_test_order: io.flow.internal.v0.models.ShopifyTestOrder;
|
|
28729
|
+
}
|
|
28730
|
+
|
|
28641
28731
|
interface ShopperBreakdown {
|
|
28642
28732
|
readonly product: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
28643
28733
|
readonly product_purchase_price?: io.flow.internal.v0.models.ReportingMonetaryValue;
|
|
@@ -28997,6 +29087,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
28997
29087
|
readonly mor_fees?: number;
|
|
28998
29088
|
readonly mor_foreign_exchange_fees?: number;
|
|
28999
29089
|
readonly sp_processing_fees?: number;
|
|
29090
|
+
readonly mor_fees_tax?: number;
|
|
29000
29091
|
}
|
|
29001
29092
|
|
|
29002
29093
|
interface StripeConnectReportRecordTransferMetadata {
|
|
@@ -30489,6 +30580,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
30489
30580
|
| io.flow.internal.v0.models.ShopifyOrderRiskAssessmentDeleted
|
|
30490
30581
|
| io.flow.internal.v0.models.ShopifyOrderTransactionUpserted
|
|
30491
30582
|
| io.flow.internal.v0.models.ShopifyOrderTransactionDeleted
|
|
30583
|
+
| io.flow.internal.v0.models.ShopifyTestOrderUpserted
|
|
30584
|
+
| io.flow.internal.v0.models.ShopifyTestOrderDeleted
|
|
30492
30585
|
| io.flow.internal.v0.models.ShopifyProductCreateUpserted
|
|
30493
30586
|
| io.flow.internal.v0.models.ShopifyProductCreateDeleted
|
|
30494
30587
|
| io.flow.internal.v0.models.ShopifyProductUpdateUpserted
|
|
@@ -30932,6 +31025,9 @@ export type AllOrganizationsMembership =
|
|
|
30932
31025
|
export type AllocationItemReference =
|
|
30933
31026
|
io.flow.internal.v0.models.AllocationItemReference;
|
|
30934
31027
|
export type AllowedLabels = io.flow.internal.v0.models.AllowedLabels;
|
|
31028
|
+
export type AmruthaItem = io.flow.internal.v0.models.AmruthaItem;
|
|
31029
|
+
export type AmruthaItemForm = io.flow.internal.v0.models.AmruthaItemForm;
|
|
31030
|
+
export type AmruthaItemType = io.flow.internal.v0.enums.AmruthaItemType;
|
|
30935
31031
|
export type AnirbanItem = io.flow.internal.v0.models.AnirbanItem;
|
|
30936
31032
|
export type AnirbanItemDeleted = io.flow.internal.v0.models.AnirbanItemDeleted;
|
|
30937
31033
|
export type AnirbanItemForm = io.flow.internal.v0.models.AnirbanItemForm;
|
|
@@ -33524,6 +33620,11 @@ export type ShopifyTaxonomyAlignmentConfig =
|
|
|
33524
33620
|
io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfig;
|
|
33525
33621
|
export type ShopifyTaxonomyAlignmentConfigForm =
|
|
33526
33622
|
io.flow.internal.v0.models.ShopifyTaxonomyAlignmentConfigForm;
|
|
33623
|
+
export type ShopifyTestOrder = io.flow.internal.v0.models.ShopifyTestOrder;
|
|
33624
|
+
export type ShopifyTestOrderDeleted =
|
|
33625
|
+
io.flow.internal.v0.models.ShopifyTestOrderDeleted;
|
|
33626
|
+
export type ShopifyTestOrderUpserted =
|
|
33627
|
+
io.flow.internal.v0.models.ShopifyTestOrderUpserted;
|
|
33527
33628
|
export type ShopperBreakdown = io.flow.internal.v0.models.ShopperBreakdown;
|
|
33528
33629
|
export type ShopperFees = io.flow.internal.v0.models.ShopperFees;
|
|
33529
33630
|
export type ShopperFreight = io.flow.internal.v0.models.ShopperFreight;
|
package/src/api.ts
CHANGED
|
@@ -4735,7 +4735,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4735
4735
|
| 'fraudulent'
|
|
4736
4736
|
| 'error'
|
|
4737
4737
|
| 'payment_checks_declined';
|
|
4738
|
-
type PaymentFeeType = 'fx' | 'mor' | 'sp';
|
|
4738
|
+
type PaymentFeeType = 'fx' | 'mor' | 'sp' | 'mor_tax';
|
|
4739
4739
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
4740
4740
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
4741
4741
|
type PaymentMethodRuleContentKey = 'description';
|
|
@@ -4845,6 +4845,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4845
4845
|
| 'adjustment';
|
|
4846
4846
|
type PriceFacetBoundary = 'min' | 'max';
|
|
4847
4847
|
type PricingLevySetting = 'included' | 'displayed' | 'ignored';
|
|
4848
|
+
type PricingType = 'inclusive_pricing';
|
|
4848
4849
|
type PromotionTriggerType = 'automatic' | 'order_subtotal';
|
|
4849
4850
|
type ProvinceType =
|
|
4850
4851
|
| 'area'
|
|
@@ -6020,6 +6021,18 @@ declare namespace io.flow.v0.models {
|
|
|
6020
6021
|
readonly iban: string;
|
|
6021
6022
|
}
|
|
6022
6023
|
|
|
6024
|
+
interface BankAccountInfoKor {
|
|
6025
|
+
readonly discriminator: 'kor';
|
|
6026
|
+
readonly name?: string;
|
|
6027
|
+
readonly address?: io.flow.v0.models.Address;
|
|
6028
|
+
readonly phone?: string;
|
|
6029
|
+
readonly email?: string;
|
|
6030
|
+
readonly bank_account_number: string;
|
|
6031
|
+
readonly bank_routing_number?: string;
|
|
6032
|
+
readonly bank_name?: string;
|
|
6033
|
+
readonly bank_address?: io.flow.v0.models.Address;
|
|
6034
|
+
}
|
|
6035
|
+
|
|
6023
6036
|
interface BankAccountInfoUsa {
|
|
6024
6037
|
readonly discriminator: 'usa';
|
|
6025
6038
|
readonly routing_number: string;
|
|
@@ -10305,6 +10318,7 @@ declare namespace io.flow.v0.models {
|
|
|
10305
10318
|
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
10306
10319
|
readonly edits?: io.flow.v0.models.EditSummary[];
|
|
10307
10320
|
readonly rates?: io.flow.v0.models.OrderRate[];
|
|
10321
|
+
readonly pricing_type?: io.flow.v0.enums.PricingType;
|
|
10308
10322
|
}
|
|
10309
10323
|
|
|
10310
10324
|
interface OrderAddress {
|
|
@@ -12405,6 +12419,7 @@ declare namespace io.flow.v0.models {
|
|
|
12405
12419
|
readonly merchant_id?: string;
|
|
12406
12420
|
readonly product_id: string;
|
|
12407
12421
|
readonly restricted_regions: io.flow.v0.models.SellabilityRestrictedRegion[];
|
|
12422
|
+
readonly restricted_reasons: io.flow.v0.models.SellabilityRestrictedReason[];
|
|
12408
12423
|
readonly needs_action_attributes?: io.flow.v0.models.SellabilityNeedsActionAttributes[];
|
|
12409
12424
|
readonly request_id?: string;
|
|
12410
12425
|
readonly hs6_code?: string;
|
|
@@ -13391,6 +13406,11 @@ declare namespace io.flow.v0.models {
|
|
|
13391
13406
|
readonly require_msds?: boolean;
|
|
13392
13407
|
}
|
|
13393
13408
|
|
|
13409
|
+
interface SellabilityReasonWithRegions {
|
|
13410
|
+
readonly reason: string;
|
|
13411
|
+
readonly regions: string[];
|
|
13412
|
+
}
|
|
13413
|
+
|
|
13394
13414
|
interface SellabilityRegionResult {
|
|
13395
13415
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13396
13416
|
readonly regions: string[];
|
|
@@ -13401,14 +13421,19 @@ declare namespace io.flow.v0.models {
|
|
|
13401
13421
|
readonly reasons: string[];
|
|
13402
13422
|
}
|
|
13403
13423
|
|
|
13424
|
+
interface SellabilityRestrictedReason {
|
|
13425
|
+
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13426
|
+
readonly reasons_with_regions: io.flow.v0.models.SellabilityReasonWithRegions[];
|
|
13427
|
+
}
|
|
13428
|
+
|
|
13404
13429
|
interface SellabilityRestrictedRegion {
|
|
13405
13430
|
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
13406
|
-
readonly
|
|
13431
|
+
readonly regions: string[];
|
|
13407
13432
|
}
|
|
13408
13433
|
|
|
13409
13434
|
interface SellabilityScreening {
|
|
13410
13435
|
readonly discriminator: 'sellability_screening';
|
|
13411
|
-
readonly
|
|
13436
|
+
readonly product_sellability_result?: io.flow.v0.models.ProductSellabilityResult;
|
|
13412
13437
|
readonly request_id: string;
|
|
13413
13438
|
readonly status: io.flow.v0.enums.SellabilityResultStatus;
|
|
13414
13439
|
readonly error_code?: io.flow.v0.enums.SellabilityResultErrorCode;
|
|
@@ -15491,7 +15516,8 @@ declare namespace io.flow.v0.unions {
|
|
|
15491
15516
|
| io.flow.v0.models.BankAccountInfoCan
|
|
15492
15517
|
| io.flow.v0.models.BankAccountInfoGbr
|
|
15493
15518
|
| io.flow.v0.models.BankAccountInfoFra
|
|
15494
|
-
| io.flow.v0.models.BankAccountInfoIta
|
|
15519
|
+
| io.flow.v0.models.BankAccountInfoIta
|
|
15520
|
+
| io.flow.v0.models.BankAccountInfoKor;
|
|
15495
15521
|
type BrowserActionConfiguration =
|
|
15496
15522
|
io.flow.v0.models.CardBrowserActionConfiguration;
|
|
15497
15523
|
type CardAuthorizationActionResult =
|
|
@@ -16230,6 +16256,7 @@ export type BankAccountInfoCan = io.flow.v0.models.BankAccountInfoCan;
|
|
|
16230
16256
|
export type BankAccountInfoFra = io.flow.v0.models.BankAccountInfoFra;
|
|
16231
16257
|
export type BankAccountInfoGbr = io.flow.v0.models.BankAccountInfoGbr;
|
|
16232
16258
|
export type BankAccountInfoIta = io.flow.v0.models.BankAccountInfoIta;
|
|
16259
|
+
export type BankAccountInfoKor = io.flow.v0.models.BankAccountInfoKor;
|
|
16233
16260
|
export type BankAccountInfoUsa = io.flow.v0.models.BankAccountInfoUsa;
|
|
16234
16261
|
export type BankAccountReference = io.flow.v0.models.BankAccountReference;
|
|
16235
16262
|
export type BankAccountSummary = io.flow.v0.models.BankAccountSummary;
|
|
@@ -17661,6 +17688,7 @@ export type PriceWithBaseAndDetails = io.flow.v0.models.PriceWithBaseAndDetails;
|
|
|
17661
17688
|
export type Pricing = io.flow.v0.models.Pricing;
|
|
17662
17689
|
export type PricingLevySetting = io.flow.v0.enums.PricingLevySetting;
|
|
17663
17690
|
export type PricingSettings = io.flow.v0.models.PricingSettings;
|
|
17691
|
+
export type PricingType = io.flow.v0.enums.PricingType;
|
|
17664
17692
|
export type PricingVersion = io.flow.v0.models.PricingVersion;
|
|
17665
17693
|
export type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
|
|
17666
17694
|
export type Product = io.flow.v0.models.Product;
|
|
@@ -17855,6 +17883,8 @@ export type SellabilityError = io.flow.v0.models.SellabilityError;
|
|
|
17855
17883
|
export type SellabilityErrorCode = io.flow.v0.enums.SellabilityErrorCode;
|
|
17856
17884
|
export type SellabilityNeedsActionAttributes =
|
|
17857
17885
|
io.flow.v0.models.SellabilityNeedsActionAttributes;
|
|
17886
|
+
export type SellabilityReasonWithRegions =
|
|
17887
|
+
io.flow.v0.models.SellabilityReasonWithRegions;
|
|
17858
17888
|
export type SellabilityRegionResult = io.flow.v0.models.SellabilityRegionResult;
|
|
17859
17889
|
export type SellabilityRegionWithReasons =
|
|
17860
17890
|
io.flow.v0.models.SellabilityRegionWithReasons;
|
|
@@ -17862,6 +17892,8 @@ export type SellabilityRequest = io.flow.v0.unions.SellabilityRequest;
|
|
|
17862
17892
|
export type SellabilityRequestStatus =
|
|
17863
17893
|
io.flow.v0.enums.SellabilityRequestStatus;
|
|
17864
17894
|
export type SellabilityResponse = io.flow.v0.unions.SellabilityResponse;
|
|
17895
|
+
export type SellabilityRestrictedReason =
|
|
17896
|
+
io.flow.v0.models.SellabilityRestrictedReason;
|
|
17865
17897
|
export type SellabilityRestrictedRegion =
|
|
17866
17898
|
io.flow.v0.models.SellabilityRestrictedRegion;
|
|
17867
17899
|
export type SellabilityResultErrorCode =
|