@flowio/api-internal-prop-types 9.24.47 → 9.24.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api-internal.d.ts +131 -30
- package/lib/api-internal.js +1 -1
- package/package.json +2 -2
- package/src/api-internal.d.ts +131 -30
- package/src/api-internal.js +234 -86
package/lib/api-internal.d.ts
CHANGED
|
@@ -5735,7 +5735,9 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5735
5735
|
type CancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
5736
5736
|
type FulfillmentOrderDeliveryMethodType = 'local' | 'none' | 'pick_up' | 'retail' | 'shipping';
|
|
5737
5737
|
type IncotermDuties = 'DAP' | 'DDP';
|
|
5738
|
+
type ShopifyDiscountValueType = 'fixed_amount' | 'percentage';
|
|
5738
5739
|
type ShopifyDiscrepancyReason = 'restock' | 'damage' | 'customer' | 'other';
|
|
5740
|
+
type ShopifyDraftOrderStatus = 'open' | 'invoice_sent' | 'completed' | 'pending' | 'authorized' | 'partially_paid' | 'paid' | 'partially_refunded' | 'refunded' | 'voided';
|
|
5739
5741
|
type ShopifyOrderCancelReason = 'customer' | 'fraud' | 'inventory' | 'declined' | 'other';
|
|
5740
5742
|
type ShopifyOrderDiscountAllocationMethod = 'across' | 'each' | 'one';
|
|
5741
5743
|
type ShopifyOrderDiscountApplicationTargetSelection = 'all' | 'entitled' | 'explicit';
|
|
@@ -5757,6 +5759,7 @@ declare namespace io.flow.shopify.markets.v0.enums {
|
|
|
5757
5759
|
type ShopifyOrderTransactionErrorCode = 'incorrect_number' | 'invalid_number' | 'invalid_expiry_date' | 'invalid_cvc' | 'expired_card' | 'incorrect_cvc' | 'incorrect_zip' | 'incorrect_address' | 'card_declined' | 'processing_error' | 'call_issuer' | 'pick_up_card';
|
|
5758
5760
|
type ShopifyOrderTransactionStatus = 'pending' | 'failure' | 'success' | 'error';
|
|
5759
5761
|
type ShopifyOrderValueType = 'string' | 'integer';
|
|
5762
|
+
type ShopifyTaxExemptions = 'EXEMPT_ALL' | 'CA_STATUS_CARD_EXEMPTION' | 'CA_DIPLOMAT_EXEMPTION' | 'CA_BC_RESELLER_EXEMPTION' | 'CA_MB_RESELLER_EXEMPTION' | 'CA_SK_RESELLER_EXEMPTION' | 'CA_BC_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_MB_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_NS_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_PE_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_SK_COMMERCIAL_FISHERY_EXEMPTION' | 'CA_BC_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_SK_PRODUCTION_AND_MACHINERY_EXEMPTION' | 'CA_BC_SUB_CONTRACTOR_EXEMPTION' | 'CA_SK_SUB_CONTRACTOR_EXEMPTION' | 'CA_BC_CONTRACTOR_EXEMPTION' | 'CA_SK_CONTRACTOR_EXEMPTION' | 'CA_ON_PURCHASE_EXEMPTION' | 'CA_MB_FARMER_EXEMPTION' | 'CA_NS_FARMER_EXEMPTION' | 'CA_SK_FARMER_EXEMPTION';
|
|
5760
5763
|
type ShopifyWebhookFormat = 'json' | 'xml';
|
|
5761
5764
|
type ShopifyWebhookTopic = 'customers/redact' | 'customers/data_request' | 'locations/create' | 'locations/update' | 'locations/delete' | 'orders/cancelled' | 'orders/create' | 'orders/fulfilled' | 'orders/paid' | 'orders/partially_fulfilled' | 'orders/updated' | 'orders/delete' | 'orders/edited' | 'products/create' | 'products/delete' | 'products/update' | 'inventory_items/create' | 'inventory_items/update' | 'inventory_items/delete' | 'refunds/create' | 'fulfillment_events/create' | 'fulfillment_events/delete' | 'shop/redact' | 'themes/create' | 'themes/publish' | 'themes/update';
|
|
5762
5765
|
}
|
|
@@ -5824,11 +5827,58 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
5824
5827
|
readonly 'shop': io.flow.shopify.markets.v0.models.Shop;
|
|
5825
5828
|
}
|
|
5826
5829
|
|
|
5830
|
+
interface ShopifyAppliedDiscount {
|
|
5831
|
+
readonly 'title'?: string;
|
|
5832
|
+
readonly 'description'?: string;
|
|
5833
|
+
readonly 'value'?: string;
|
|
5834
|
+
readonly 'value_type'?: io.flow.shopify.markets.v0.enums.ShopifyDiscountValueType;
|
|
5835
|
+
readonly 'amount'?: number;
|
|
5836
|
+
}
|
|
5837
|
+
|
|
5827
5838
|
interface ShopifyCountryHarmonizedSystemCode {
|
|
5828
5839
|
readonly 'country_code': string;
|
|
5829
5840
|
readonly 'harmonized_system_code': string;
|
|
5830
5841
|
}
|
|
5831
5842
|
|
|
5843
|
+
interface ShopifyDraftOrder {
|
|
5844
|
+
readonly 'applied_discount': io.flow.shopify.markets.v0.models.ShopifyAppliedDiscount;
|
|
5845
|
+
readonly 'billing_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5846
|
+
readonly 'completed_at'?: string;
|
|
5847
|
+
readonly 'created_at'?: string;
|
|
5848
|
+
readonly 'currency'?: string;
|
|
5849
|
+
readonly 'customer'?: io.flow.shopify.markets.v0.models.ShopifyOrderCustomer;
|
|
5850
|
+
readonly 'email'?: string;
|
|
5851
|
+
readonly 'id'?: number;
|
|
5852
|
+
readonly 'invoice_sent_at'?: string;
|
|
5853
|
+
readonly 'invoice_url'?: string;
|
|
5854
|
+
readonly 'line_items': io.flow.shopify.markets.v0.models.ShopifyOrderLineItem[];
|
|
5855
|
+
readonly 'name'?: string;
|
|
5856
|
+
readonly 'note'?: string;
|
|
5857
|
+
readonly 'note_attributes': io.flow.shopify.markets.v0.models.ShopifyOrderAttribute[];
|
|
5858
|
+
readonly 'order_id': io.flow.shopify.markets.v0.models.ShopifyOrderId;
|
|
5859
|
+
readonly 'payment_terms': io.flow.shopify.markets.v0.models.ShopifyPaymentTerms;
|
|
5860
|
+
readonly 'shipping_address'?: io.flow.shopify.markets.v0.models.ShopifyOrderAddress;
|
|
5861
|
+
readonly 'shipping_lines': io.flow.shopify.markets.v0.models.ShopifyOrderShippingLine[];
|
|
5862
|
+
readonly 'source_name'?: string;
|
|
5863
|
+
readonly 'subtotal_price'?: string;
|
|
5864
|
+
readonly 'status'?: io.flow.shopify.markets.v0.enums.ShopifyDraftOrderStatus;
|
|
5865
|
+
readonly 'tags'?: string;
|
|
5866
|
+
readonly 'tax_exemptions'?: io.flow.shopify.markets.v0.enums.ShopifyTaxExemptions[];
|
|
5867
|
+
readonly 'tax_lines': io.flow.shopify.markets.v0.models.ShopifyOrderTaxLine[];
|
|
5868
|
+
readonly 'taxes_included': boolean;
|
|
5869
|
+
readonly 'total_price'?: string;
|
|
5870
|
+
readonly 'total_tax'?: string;
|
|
5871
|
+
readonly 'updated_at'?: string;
|
|
5872
|
+
}
|
|
5873
|
+
|
|
5874
|
+
interface ShopifyDraftOrderCount {
|
|
5875
|
+
readonly 'count': number;
|
|
5876
|
+
}
|
|
5877
|
+
|
|
5878
|
+
interface ShopifyDraftOrdersWrapper {
|
|
5879
|
+
readonly 'draft_orders': io.flow.shopify.markets.v0.models.ShopifyDraftOrder[];
|
|
5880
|
+
}
|
|
5881
|
+
|
|
5832
5882
|
interface ShopifyError {
|
|
5833
5883
|
readonly 'errors': any/*object*/;
|
|
5834
5884
|
}
|
|
@@ -6017,6 +6067,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6017
6067
|
readonly 'user_agent'?: string;
|
|
6018
6068
|
}
|
|
6019
6069
|
|
|
6070
|
+
interface ShopifyOrderCount {
|
|
6071
|
+
readonly 'count': number;
|
|
6072
|
+
}
|
|
6073
|
+
|
|
6020
6074
|
interface ShopifyOrderCustomer {
|
|
6021
6075
|
readonly 'id'?: number;
|
|
6022
6076
|
readonly 'email'?: string;
|
|
@@ -6120,6 +6174,10 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6120
6174
|
readonly 'variant_inventory_management'?: string;
|
|
6121
6175
|
}
|
|
6122
6176
|
|
|
6177
|
+
interface ShopifyOrderId {
|
|
6178
|
+
readonly 'id': number;
|
|
6179
|
+
}
|
|
6180
|
+
|
|
6123
6181
|
interface ShopifyOrderLineItem {
|
|
6124
6182
|
readonly 'fulfillable_quantity'?: number;
|
|
6125
6183
|
readonly 'fulfillment_service': string;
|
|
@@ -6279,6 +6337,24 @@ declare namespace io.flow.shopify.markets.v0.models {
|
|
|
6279
6337
|
readonly 'orders': io.flow.shopify.markets.v0.models.ShopifyOrder[];
|
|
6280
6338
|
}
|
|
6281
6339
|
|
|
6340
|
+
interface ShopifyPaymentSchedules {
|
|
6341
|
+
readonly 'amount'?: number;
|
|
6342
|
+
readonly 'currency'?: string;
|
|
6343
|
+
readonly 'issued_at'?: string;
|
|
6344
|
+
readonly 'due_at'?: string;
|
|
6345
|
+
readonly 'completed_at'?: string;
|
|
6346
|
+
readonly 'expected_payment_method'?: string;
|
|
6347
|
+
}
|
|
6348
|
+
|
|
6349
|
+
interface ShopifyPaymentTerms {
|
|
6350
|
+
readonly 'amount'?: number;
|
|
6351
|
+
readonly 'currency'?: string;
|
|
6352
|
+
readonly 'payment_terms_name'?: string;
|
|
6353
|
+
readonly 'payment_terms_type'?: number;
|
|
6354
|
+
readonly 'due_in_days'?: number;
|
|
6355
|
+
readonly 'payment_schedules'?: io.flow.shopify.markets.v0.models.ShopifyPaymentSchedules;
|
|
6356
|
+
}
|
|
6357
|
+
|
|
6282
6358
|
interface ShopifyRefund {
|
|
6283
6359
|
readonly 'notify_x': boolean;
|
|
6284
6360
|
readonly 'note'?: string;
|
|
@@ -6876,6 +6952,16 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6876
6952
|
|
|
6877
6953
|
interface PaymentMethodDataAuthorizeApplepay {
|
|
6878
6954
|
readonly 'type': 'authorize_applepay';
|
|
6955
|
+
readonly 'result': io.flow.payment.gateway.v0.unions.PaymentMethodDataAuthorizeApplepayResult;
|
|
6956
|
+
}
|
|
6957
|
+
|
|
6958
|
+
interface PaymentMethodDataAuthorizeApplepayResultFailure {
|
|
6959
|
+
readonly 'type': 'failure';
|
|
6960
|
+
readonly 'placeholder'?: string;
|
|
6961
|
+
}
|
|
6962
|
+
|
|
6963
|
+
interface PaymentMethodDataAuthorizeApplepayResultSuccess {
|
|
6964
|
+
readonly 'type': 'success';
|
|
6879
6965
|
readonly 'token': string;
|
|
6880
6966
|
}
|
|
6881
6967
|
|
|
@@ -7156,6 +7242,7 @@ declare namespace io.flow.payment.gateway.v0.unions {
|
|
|
7156
7242
|
type PaymentCaptureOption = (io.flow.payment.gateway.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.payment.gateway.v0.models.PaymentCaptureOptionManual);
|
|
7157
7243
|
type PaymentMethodCard = (io.flow.payment.gateway.v0.models.PaymentMethodCardPciDetails | io.flow.payment.gateway.v0.models.PaymentMethodCardToken);
|
|
7158
7244
|
type PaymentMethodData = (io.flow.payment.gateway.v0.models.PaymentMethodDataInitKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataInitAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataInitPaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitIdeal | io.flow.payment.gateway.v0.models.PaymentMethodDataInitSofort | io.flow.payment.gateway.v0.models.PaymentMethodDataInitBancontact | io.flow.payment.gateway.v0.models.PaymentMethodDataValidateApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeCard | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepay | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizePaypal | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarna | io.flow.payment.gateway.v0.models.PaymentMethodDataSelectedPaymentOption | io.flow.payment.gateway.v0.models.PaymentMethodDataCompleteAuthorizationCard);
|
|
7245
|
+
type PaymentMethodDataAuthorizeApplepayResult = (io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeApplepayResultFailure);
|
|
7159
7246
|
type PaymentMethodDataAuthorizeKlarnaResult = (io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultSuccess | io.flow.payment.gateway.v0.models.PaymentMethodDataAuthorizeKlarnaResultFailure);
|
|
7160
7247
|
type PaymentMethodDataOptionLogo = (io.flow.payment.gateway.v0.models.PaymentMethodDataOptionLogoSvg);
|
|
7161
7248
|
type PaymentMethodSummary = (io.flow.payment.gateway.v0.models.PaymentMethodSummaryCard | io.flow.payment.gateway.v0.models.PaymentMethodSummaryKlarna | io.flow.payment.gateway.v0.models.PaymentMethodSummaryAfterpay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryApplepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryGooglepay | io.flow.payment.gateway.v0.models.PaymentMethodSummaryPaypal | io.flow.payment.gateway.v0.models.PaymentMethodSummaryIdeal | io.flow.payment.gateway.v0.models.PaymentMethodSummarySofort | io.flow.payment.gateway.v0.models.PaymentMethodSummaryBancontact);
|
|
@@ -9941,7 +10028,7 @@ declare namespace io.flow.billing.v0.enums {
|
|
|
9941
10028
|
type AttachmentType = 'csv';
|
|
9942
10029
|
type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'fx' | 'processing' | 'rate_lock' | 'transfer';
|
|
9943
10030
|
type PayoutStatusCode = 'scheduled' | 'sent' | 'cancelled' | 'failed' | 'succeeded';
|
|
9944
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | '
|
|
10031
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund';
|
|
9945
10032
|
type WithholdingDeductionType = 'tax' | 'duty' | 'freight' | 'insurance';
|
|
9946
10033
|
}
|
|
9947
10034
|
|
|
@@ -11685,6 +11772,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11685
11772
|
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
11686
11773
|
type AccountType = 'channel' | 'organization';
|
|
11687
11774
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
11775
|
+
type AdjustmentTransactionType = 'adjustment' | 'reversal';
|
|
11688
11776
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
11689
11777
|
type AnyDangerousGoods = 'yes' | 'no' | 'i_dont_know';
|
|
11690
11778
|
type ApiCallReferenceId = 'duty_rates_data_event' | 'integration_test' | 'unit_test';
|
|
@@ -11693,17 +11781,17 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11693
11781
|
type BillingStatementBatchFileKey = 'archive' | 'summary';
|
|
11694
11782
|
type BillingStatementReviewStatus = 'approved' | 'pending';
|
|
11695
11783
|
type BillingTransactionStatus = 'pending' | 'pending_proof' | 'posted';
|
|
11696
|
-
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
|
|
11784
|
+
type BillingTransactionType = 'manual' | 'subscription' | 'invoice' | 'transfer' | 'adjustment' | 'reversal' | 'capture' | 'refund' | 'virtual_card_capture' | 'virtual_card_refund' | 'tax_remittance' | 'fully_subsidized_order' | 'credit_payment' | 'dispute' | 'channel' | 'label' | 'order' | 'channel_billed' | 'tax' | 'duty';
|
|
11697
11785
|
type BlazeCheckoutEvent = 'begin_checkout' | 'select_promotion' | 'add_shipping_info' | 'add_payment_info' | 'purchase';
|
|
11698
11786
|
type BlazeCheckoutStep = 'customer_info' | 'delivery' | 'payment';
|
|
11699
11787
|
type BrowserBundleErrorCode = 'generic_error' | 'country_invalid';
|
|
11700
11788
|
type CalculatorEngine = 'flow_rate_and_rule' | 'dtce' | 'dtce_two_calls' | 'dtce_with_deminimis' | 'dtce_merged_with_tax';
|
|
11701
11789
|
type CarrierLabelGenerationMethod = 'direct' | 'easypost';
|
|
11702
11790
|
type CatalogImportType = 'catalog_items' | 'item_form_overlays' | 'item_prices' | 'price_book_items_import' | 'price_book_items_query_import';
|
|
11703
|
-
type ChannelBilledTransactionType = 'adjustment' | 'channel_initiated';
|
|
11791
|
+
type ChannelBilledTransactionType = 'adjustment' | 'reversal' | 'channel_initiated';
|
|
11704
11792
|
type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'unsupported_payment_information';
|
|
11705
11793
|
type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review';
|
|
11706
|
-
type ChannelTransactionType = 'adjustment' | 'processing';
|
|
11794
|
+
type ChannelTransactionType = 'adjustment' | 'reversal' | 'processing';
|
|
11707
11795
|
type ChargebackPaymentStatus = 'captured' | 'refunded';
|
|
11708
11796
|
type ChargebackProcessStatus = 'inquiry' | 'open' | 'closed';
|
|
11709
11797
|
type CheckoutAddAuthorizationErrorCode = 'checkout_not_found' | 'authorization_not_found';
|
|
@@ -11804,10 +11892,10 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11804
11892
|
type DutyRateUnitOfMeasure = 'kg' | 'sq m' | 'item' | 'pair';
|
|
11805
11893
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
11806
11894
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
11807
|
-
type DutyTransactionType = 'adjustment' | 'duty';
|
|
11895
|
+
type DutyTransactionType = 'adjustment' | 'reversal' | 'duty';
|
|
11808
11896
|
type EmptyAttribute = 'irrelevant';
|
|
11809
11897
|
type ErpFileType = 'vendor';
|
|
11810
|
-
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' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_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' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
11898
|
+
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' | 'account_upserted' | 'account_upserted_v2' | 'account_deleted_v2' | 'account_contact_upserted' | 'account_contact_deleted' | 'billing_statement_upserted' | 'billing_statement_deleted' | 'tax_remittance_transaction_upserted' | 'tax_remittance_transaction_deleted' | 'channel_account_upserted_v2' | 'channel_account_deleted' | 'organization_account_upserted_v2' | 'organization_account_deleted' | 'account_transactions_export_request' | 'account_orders_export_request' | 'main_transaction_upserted' | 'main_transaction_deleted' | 'main_transaction_upserted_v2' | 'main_transaction_deleted_v2' | 'transfer_transaction_upserted' | 'transfer_transaction_deleted' | 'transfer_transaction_upserted_v2' | 'transfer_transaction_deleted_v2' | 'processing_transaction_upserted' | 'processing_transaction_deleted' | 'bank_payment_upserted' | 'bank_payment_deleted' | 'bank_payment_upserted_v2' | 'bank_payment_deleted_v2' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'order_transaction_upserted' | 'order_transaction_deleted' | 'label_transaction_upserted' | 'label_transaction_deleted' | 'channel_billed_transaction_upserted' | 'channel_billed_transaction_deleted' | 'tax_transaction_upserted' | 'tax_transaction_deleted' | 'duty_transaction_upserted' | 'duty_transaction_deleted' | 'calculator_organization_settings_upserted' | 'calculator_organization_settings_deleted' | 'carrier_account_upserted_v2' | 'carrier_account_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' | 'channel_order_acceptance_upserted' | 'channel_order_acceptance_deleted' | 'checkout_configuration_upserted' | 'checkout_configuration_deleted' | 'localized_content_upserted' | 'localization_upserted' | 'internal_channel_rate_deleted' | 'internal_channel_rate_upserted' | 'rate_deleted' | 'rate_upserted' | 'spot_rate_deleted' | 'spot_rate_upserted' | 'usd_spot_rate_deleted' | 'usd_spot_rate_upserted' | 'rate_deleted_v2' | 'rate_upserted_v2' | 'organization_currency_setting_upserted' | 'organization_currency_setting_deleted' | 'channel_currency_setting_upserted' | 'channel_currency_setting_deleted' | 'customer_purge_upserted' | 'customs_description_import' | 'customs_description_tariffs_import' | 'item_dimension_estimate_upserted_v2' | 'item_dimension_estimate_deleted_v2' | 'dispute_upserted' | 'dispute_deleted' | 'duty_rates_published_v2' | 'duty_rate_request' | 'duty_rate_bulk_request' | 'duty_raw_upserted' | 'duty_raw_bulk_upserted' | 'duty_rate_upserted' | 'duty_rate_response' | 'duty_rate_bulk_response' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'order_attribute_deleted' | 'order_attribute_upserted' | 'experience_export_request' | 'experience_import_request' | 'submitted_order_upserted' | 'levy_rate_summary_upserted' | 'experiment_upserted' | 'experiment_deleted' | 'experiment_results_upserted' | 'experiment_results_deleted' | 'daily_experiment_results_upserted' | 'daily_experiment_results_deleted' | 'experiment_milestone_upserted' | 'experiment_milestone_deleted' | 'export_completed' | 'export_failed' | 'feature_upserted' | 'feature_deleted' | 'organization_boolean_value_upserted' | 'organization_boolean_value_deleted' | 'account_settings_upserted' | 'account_settings_deleted' | 'account_processing_rates_upserted' | 'account_processing_rates_deleted' | 'billing_organization_processing_rates_upserted' | 'billing_organization_processing_rates_deleted' | 'billing_organization_settings_upserted' | 'billing_organization_settings_deleted' | 'billing_statement_batch_upserted' | 'billing_statement_batch_deleted' | 'billing_statement_batch_statement_upserted' | 'billing_statement_batch_statement_deleted' | 'platform_fee_change_upserted' | 'platform_fee_change_deleted' | 'fraud_review_upserted' | 'fraud_review_deleted' | 'fraud_pending_review_upserted' | 'fraud_pending_review_deleted' | 'fraud_review_decision_upserted' | 'fraud_review_decision_deleted' | 'fraud_provider_configuration_upserted' | 'fraud_provider_configuration_deleted' | 'ftp_file_upserted' | 'ftp_file_deleted' | 'ftp_file_to_process_uploaded' | 'pregenerated_request_event' | 'all_items_export' | 'harmonized_items_hs6_export' | 'unharmonized_items_export' | 'dutied_items_export' | 'tariff_codes_export' | 'harmonization_phrase_suggestion_request_import' | 'harmonization_codes_import' | 'item_classification_created' | 'harmonize_fully_request_v2' | 'hybris_catalog_items_import_request' | 'import_completed' | 'import_failed' | 'time_to_classify_upserted' | 'time_to_classify_deleted' | 'time_to_classify_aggregated_upserted' | 'time_to_classify_aggregated_deleted' | 'rate_source_summary_upserted' | 'rate_source_summary_deleted' | 'rate_freshness_summary_upserted' | 'rate_freshness_summary_deleted' | 'item_harmonization_upserted' | 'item_harmonization_deleted' | 'harmonization_item_classification_upserted' | 'harmonization_item_classification_deleted' | 'issuer_upserted' | 'issuer_deleted' | 'item_form_import_request' | 'label_tracking_summary_upserted' | 'label_tracking_summary_deleted' | 'localized_item_upserted_v2' | 'localized_item_deleted' | 'localized_item_deleted_v2' | 'localized_item_snapshot' | 'localized_price_book_item_upserted' | 'localized_price_book_item_deleted' | 'feed_upserted' | 'feed_deleted' | 'feeds_export' | 'localized_item_prices_export_request' | 'optin_prompt_upserted' | 'optin_prompt_deleted' | 'order_fulfillment_deleted' | 'order_fulfillment_upserted' | 'order_placed' | 'ready_to_fulfill' | 'fulfillment_cancel' | 'order_shipped' | 'items_shipped' | 'organization_restriction_approval_upserted' | 'organization_restriction_approval_deleted' | 'organization_restriction_snapshot_upserted' | 'organization_restriction_snapshot_deleted' | 'organization_restriction_status_upserted' | 'organization_restriction_status_deleted' | 'internal_authorization_upserted' | 'internal_authorization_deleted' | 'afterpay_authorization_upserted' | 'afterpay_authorization_deleted' | 'afterpay_capture_upserted' | 'afterpay_capture_deleted' | 'afterpay_refund_upserted' | 'afterpay_refund_deleted' | 'adyen_merchant_account_upserted' | 'adyen_merchant_account_deleted' | 'chargeback_upserted' | 'chargeback_deleted' | 'payment_processor_account_upserted' | 'payment_processor_account_deleted' | 'payment_processor_merchant_upserted' | 'payment_processor_merchant_deleted' | 'virtual_card_provider_upserted' | 'virtual_card_provider_deleted' | 'authorization_bundle_upserted' | 'authorization_bundle_deleted' | 'organization_payment_setting_upserted' | 'organization_payment_setting_deleted' | 'paypal_payment_deleted' | 'paypal_payment_upserted' | 'paypal_execution_deleted' | 'paypal_execution_upserted' | 'paypal_refund_deleted' | 'paypal_refund_upserted' | 'pricing_indicator' | 'order_rates_published_v3' | 'ratecard_dimension_estimate_upserted' | 'ratecard_dimension_estimate_deleted' | 'ratecard_lanes_import_request' | 'ratecard_standard_configuration_upserted' | 'ratecard_standard_configuration_deleted' | 'ratecard_service_fee_upserted' | 'ratecard_service_fee_deleted' | 'ratecard_lane_aggregate_upserted' | 'ratecard_lane_aggregate_deleted' | 'shopify_shop_upserted' | 'shopify_shop_deleted' | 'shopify_experience_short_id_upserted' | 'shopify_experience_short_id_deleted' | 'shopify_markets_order_upserted' | 'shopify_markets_order_deleted' | 'shopify_markets_shop_upserted' | 'shopify_markets_shop_deleted' | 'shopify_monitoring_order_monitor_event_upserted' | 'shopify_monitoring_order_monitor_event_deleted' | 'stripe_authorization_deleted' | 'stripe_authorization_upserted' | 'stripe_reversal_deleted' | 'stripe_reversal_upserted' | 'stripe_capture_deleted' | 'stripe_capture_upserted' | 'stripe_refund_deleted' | 'stripe_refund_upserted' | 'svb_virtual_card_clearing_upserted' | 'svb_virtual_card_clearing_deleted' | 'liability_remittance_plan_upserted' | 'liability_remittance_plan_deleted' | 'tracking_label_event_upserted_v2' | 'tracking_label_event_deleted_v2' | 'tracking_label_upserted' | 'tracking_label_deleted' | 'tracking_upserted' | 'tracking_deleted' | 'tracking_request_upserted' | 'tracking_response_upserted' | 'user_upserted_v2' | 'user_deleted_v2';
|
|
11811
11899
|
type ExperienceImportType = 'experience_with_settings';
|
|
11812
11900
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
11813
11901
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -11839,7 +11927,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11839
11927
|
type LabelBillingStrategy = 'quote' | 'carrier';
|
|
11840
11928
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
11841
11929
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
11842
|
-
type LabelTransactionType = 'adjustment' | 'billable_label' | 'fee' | 'revenue_share';
|
|
11930
|
+
type LabelTransactionType = 'adjustment' | 'reversal' | 'billable_label' | 'fee' | 'revenue_share';
|
|
11843
11931
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
11844
11932
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
11845
11933
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
@@ -11865,7 +11953,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11865
11953
|
type OrderAttributeIntent = 'discount_code';
|
|
11866
11954
|
type OrderChargeTrigger = 'first_shipment' | 'last_shipment' | 'shipment_exhausted';
|
|
11867
11955
|
type OrderLifecycleEvent = 'order_placed' | 'ready_to_fulfill';
|
|
11868
|
-
type OrderTransactionType = 'adjustment' | 'order_service';
|
|
11956
|
+
type OrderTransactionType = 'adjustment' | 'reversal' | 'order_service';
|
|
11869
11957
|
type OrganizationCapability = 'organization' | 'flow' | 'dynamic';
|
|
11870
11958
|
type OrganizationPaymentStatus = 'active' | 'archived';
|
|
11871
11959
|
type OrganizationRestrictionApprovalStatus = 'ready' | 'not-ready';
|
|
@@ -11881,7 +11969,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11881
11969
|
type PregenDataKeyField = 'shipping_country' | 'shipping_province' | 'invoicing_country' | 'delivery_option_id';
|
|
11882
11970
|
type PriceSelector = 'minimum' | 'maximum';
|
|
11883
11971
|
type PricingIndicatorStatus = 'complete' | 'in_progress';
|
|
11884
|
-
type ProcessingTransactionType = 'adjustment' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
11972
|
+
type ProcessingTransactionType = 'adjustment' | 'reversal' | 'capture' | 'refund' | 'fully_subsidized_order' | 'credit_payment';
|
|
11885
11973
|
type Processor = 'adyen' | 'afterpay' | 'bitpay' | 'stripe' | 'paypal' | 'flow_sandbox' | 'fiserv' | 'crypto';
|
|
11886
11974
|
type ProcessorEntityStatus = 'active' | 'draft' | 'archived';
|
|
11887
11975
|
type PromptAction = 'prompt_displayed' | 'consent_granted' | 'consent_denied';
|
|
@@ -11930,7 +12018,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
11930
12018
|
type TaskProcessorKey = 'billing_account' | 'order_messenger' | 'harmonization' | 'fraud_review' | 'carrier_account' | 'payment' | 'label_generation_settings' | 'ratecard';
|
|
11931
12019
|
type TaxCalculationErrorCode = 'generic_error' | 'outside_of_jurisdiction';
|
|
11932
12020
|
type TaxParty = 'consumer' | 'organization' | 'flow' | 'carrier';
|
|
11933
|
-
type TaxTransactionType = 'adjustment' | 'tax';
|
|
12021
|
+
type TaxTransactionType = 'adjustment' | 'reversal' | 'tax';
|
|
11934
12022
|
type TimeseriesType = 'daily' | 'weekly' | 'monthly' | 'yearly';
|
|
11935
12023
|
type TrackingIntegrationType = 'api' | 'bulk' | 'aftership';
|
|
11936
12024
|
type TransactionPostingMethod = 'time' | 'proof';
|
|
@@ -12964,6 +13052,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
12964
13052
|
readonly 'adjustment': io.flow.common.v0.models.Price;
|
|
12965
13053
|
readonly 'capture': io.flow.common.v0.models.Price;
|
|
12966
13054
|
readonly 'refund': io.flow.common.v0.models.Price;
|
|
13055
|
+
readonly 'reversal': io.flow.common.v0.models.Price;
|
|
12967
13056
|
readonly 'credit_payment': io.flow.common.v0.models.Price;
|
|
12968
13057
|
readonly 'fully_subsidized_order': io.flow.common.v0.models.Price;
|
|
12969
13058
|
readonly 'virtual_card_capture': io.flow.common.v0.models.Price;
|
|
@@ -13645,6 +13734,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13645
13734
|
interface ChannelTransaction {
|
|
13646
13735
|
readonly 'discriminator': 'channel_transaction';
|
|
13647
13736
|
readonly 'transaction': io.flow.internal.v0.models.TransactionReference;
|
|
13737
|
+
readonly 'fees': io.flow.internal.v0.models.Fee[];
|
|
13648
13738
|
readonly 'id': string;
|
|
13649
13739
|
readonly 'type': io.flow.internal.v0.enums.BillingTransactionType;
|
|
13650
13740
|
readonly 'status': io.flow.internal.v0.enums.BillingTransactionStatus;
|
|
@@ -18610,6 +18700,11 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18610
18700
|
readonly 'url': string;
|
|
18611
18701
|
}
|
|
18612
18702
|
|
|
18703
|
+
interface Hs6 {
|
|
18704
|
+
readonly 'code': string;
|
|
18705
|
+
readonly 'description': string;
|
|
18706
|
+
}
|
|
18707
|
+
|
|
18613
18708
|
interface Hs6Metadata {
|
|
18614
18709
|
readonly 'description': string;
|
|
18615
18710
|
}
|
|
@@ -19191,6 +19286,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19191
19286
|
}
|
|
19192
19287
|
|
|
19193
19288
|
interface LabelSummary {
|
|
19289
|
+
readonly 'id': string;
|
|
19194
19290
|
readonly 'commercial_invoice'?: string;
|
|
19195
19291
|
readonly 'pdf'?: string;
|
|
19196
19292
|
readonly 'png'?: string;
|
|
@@ -20015,7 +20111,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20015
20111
|
readonly 'legal_name': string;
|
|
20016
20112
|
readonly 'shop_name': string;
|
|
20017
20113
|
readonly 'organization_id': string;
|
|
20018
|
-
readonly 'onboarding_state': io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
20019
20114
|
readonly 'onboarding_current_state': io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
20020
20115
|
readonly 'gmv': number;
|
|
20021
20116
|
}
|
|
@@ -21222,12 +21317,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
21222
21317
|
readonly 'label_tracking_summary_id': string;
|
|
21223
21318
|
}
|
|
21224
21319
|
|
|
21225
|
-
interface ProofOfPostingFullyRefunded {
|
|
21226
|
-
readonly 'discriminator': 'fully_refunded';
|
|
21227
|
-
readonly 'capture_id': string;
|
|
21228
|
-
readonly 'refund_ids': string[];
|
|
21229
|
-
}
|
|
21230
|
-
|
|
21231
21320
|
interface ProofOfPostingOrderCancellation {
|
|
21232
21321
|
readonly 'discriminator': 'order_cancellation';
|
|
21233
21322
|
readonly 'order_cancellation_id': string;
|
|
@@ -22117,6 +22206,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22117
22206
|
readonly 'access_token_masked'?: string;
|
|
22118
22207
|
}
|
|
22119
22208
|
|
|
22209
|
+
interface ShopifyMarketsShopDeleted {
|
|
22210
|
+
readonly 'discriminator': 'shopify_markets_shop_deleted';
|
|
22211
|
+
readonly 'event_id': string;
|
|
22212
|
+
readonly 'timestamp': string;
|
|
22213
|
+
readonly 'organization': string;
|
|
22214
|
+
readonly 'id': string;
|
|
22215
|
+
}
|
|
22216
|
+
|
|
22120
22217
|
interface ShopifyMarketsShopForm {
|
|
22121
22218
|
readonly 'shop': string;
|
|
22122
22219
|
readonly 'domain': string;
|
|
@@ -22132,6 +22229,14 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22132
22229
|
readonly 'channel': io.flow.common.v0.models.ChannelReference;
|
|
22133
22230
|
}
|
|
22134
22231
|
|
|
22232
|
+
interface ShopifyMarketsShopUpserted {
|
|
22233
|
+
readonly 'discriminator': 'shopify_markets_shop_upserted';
|
|
22234
|
+
readonly 'event_id': string;
|
|
22235
|
+
readonly 'timestamp': string;
|
|
22236
|
+
readonly 'organization': string;
|
|
22237
|
+
readonly 'shopify_markets_shop': io.flow.internal.v0.models.ShopifyMarketsShop;
|
|
22238
|
+
}
|
|
22239
|
+
|
|
22135
22240
|
interface ShopifyMarketsSubsidiaryCompany {
|
|
22136
22241
|
readonly 'legal_name'?: string;
|
|
22137
22242
|
readonly 'incorporation_country'?: io.flow.internal.v0.models.ShopifyMarketsIncorporationCountry;
|
|
@@ -22175,7 +22280,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22175
22280
|
readonly 'organization_reference': io.flow.common.v0.models.OrganizationReference;
|
|
22176
22281
|
readonly 'order_number': string;
|
|
22177
22282
|
readonly 'monitor': io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
22178
|
-
readonly 'created_at': string;
|
|
22179
22283
|
}
|
|
22180
22284
|
|
|
22181
22285
|
interface ShopifyMonitoringOrderMonitorEventDeleted {
|
|
@@ -22197,15 +22301,9 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22197
22301
|
interface ShopifyMonitoringOrderMonitorReview {
|
|
22198
22302
|
readonly 'id': string;
|
|
22199
22303
|
readonly 'order_monitor': io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
22200
|
-
readonly 'order_details': io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
22201
22304
|
readonly 'status': io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
22202
22305
|
}
|
|
22203
22306
|
|
|
22204
|
-
interface ShopifyMonitoringOrderMonitorReviewOrderDetails {
|
|
22205
|
-
readonly 'organization': string;
|
|
22206
|
-
readonly 'shopify_order': io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
22207
|
-
}
|
|
22208
|
-
|
|
22209
22307
|
interface ShopifyMonitoringTrackingNumber {
|
|
22210
22308
|
readonly 'number': string;
|
|
22211
22309
|
}
|
|
@@ -23185,8 +23283,8 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23185
23283
|
|
|
23186
23284
|
interface TransactionAdjustment {
|
|
23187
23285
|
readonly 'id': string;
|
|
23188
|
-
readonly 'original_transaction': io.flow.internal.v0.models.
|
|
23189
|
-
readonly 'adjustment_transaction'
|
|
23286
|
+
readonly 'original_transaction': io.flow.internal.v0.models.TransactionReference;
|
|
23287
|
+
readonly 'adjustment_transaction'?: io.flow.internal.v0.models.TransactionReference;
|
|
23190
23288
|
readonly 'description': string;
|
|
23191
23289
|
readonly 'details': io.flow.internal.v0.unions.AdjustmentDetails;
|
|
23192
23290
|
}
|
|
@@ -23195,6 +23293,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23195
23293
|
readonly 'original_transaction_id': string;
|
|
23196
23294
|
readonly 'description': string;
|
|
23197
23295
|
readonly 'details': io.flow.internal.v0.unions.AdjustmentDetails;
|
|
23296
|
+
readonly 'type'?: io.flow.internal.v0.enums.AdjustmentTransactionType;
|
|
23198
23297
|
}
|
|
23199
23298
|
|
|
23200
23299
|
interface TransactionReference {
|
|
@@ -23595,7 +23694,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23595
23694
|
type DiscountRequestOfferForm = (io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm);
|
|
23596
23695
|
type DisputeDetails = (io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal);
|
|
23597
23696
|
type DutyExpression = (io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression);
|
|
23598
|
-
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.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | 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.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
23697
|
+
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.AccountUpserted | io.flow.internal.v0.models.AccountUpsertedV2 | io.flow.internal.v0.models.AccountDeletedV2 | io.flow.internal.v0.models.AccountContactUpserted | io.flow.internal.v0.models.AccountContactDeleted | io.flow.internal.v0.models.BillingStatementUpserted | io.flow.internal.v0.models.BillingStatementDeleted | io.flow.internal.v0.models.TaxRemittanceTransactionUpserted | io.flow.internal.v0.models.TaxRemittanceTransactionDeleted | io.flow.internal.v0.models.ChannelAccountUpsertedV2 | io.flow.internal.v0.models.ChannelAccountDeleted | io.flow.internal.v0.models.OrganizationAccountUpsertedV2 | io.flow.internal.v0.models.OrganizationAccountDeleted | io.flow.internal.v0.models.AccountTransactionsExportRequest | io.flow.internal.v0.models.AccountOrdersExportRequest | io.flow.internal.v0.models.MainTransactionUpserted | io.flow.internal.v0.models.MainTransactionDeleted | io.flow.internal.v0.models.MainTransactionUpsertedV2 | io.flow.internal.v0.models.MainTransactionDeletedV2 | io.flow.internal.v0.models.TransferTransactionUpserted | io.flow.internal.v0.models.TransferTransactionDeleted | io.flow.internal.v0.models.TransferTransactionUpsertedV2 | io.flow.internal.v0.models.TransferTransactionDeletedV2 | io.flow.internal.v0.models.ProcessingTransactionUpserted | io.flow.internal.v0.models.ProcessingTransactionDeleted | io.flow.internal.v0.models.BankPaymentUpserted | io.flow.internal.v0.models.BankPaymentDeleted | io.flow.internal.v0.models.BankPaymentUpsertedV2 | io.flow.internal.v0.models.BankPaymentDeletedV2 | io.flow.internal.v0.models.ChannelTransactionUpserted | io.flow.internal.v0.models.ChannelTransactionDeleted | io.flow.internal.v0.models.OrderTransactionUpserted | io.flow.internal.v0.models.OrderTransactionDeleted | io.flow.internal.v0.models.LabelTransactionUpserted | io.flow.internal.v0.models.LabelTransactionDeleted | io.flow.internal.v0.models.ChannelBilledTransactionUpserted | io.flow.internal.v0.models.ChannelBilledTransactionDeleted | io.flow.internal.v0.models.TaxTransactionUpserted | io.flow.internal.v0.models.TaxTransactionDeleted | io.flow.internal.v0.models.DutyTransactionUpserted | io.flow.internal.v0.models.DutyTransactionDeleted | io.flow.internal.v0.models.CalculatorOrganizationSettingsUpserted | io.flow.internal.v0.models.CalculatorOrganizationSettingsDeleted | io.flow.internal.v0.models.CarrierAccountUpsertedV2 | io.flow.internal.v0.models.CarrierAccountDeleted | 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.ChannelOrderAcceptanceUpserted | io.flow.internal.v0.models.ChannelOrderAcceptanceDeleted | io.flow.internal.v0.models.CheckoutConfigurationUpserted | io.flow.internal.v0.models.CheckoutConfigurationDeleted | io.flow.internal.v0.models.LocalizedContentUpserted | io.flow.internal.v0.models.LocalizationUpserted | io.flow.internal.v0.models.InternalChannelRateDeleted | io.flow.internal.v0.models.InternalChannelRateUpserted | io.flow.internal.v0.models.RateDeleted | io.flow.internal.v0.models.RateUpserted | io.flow.internal.v0.models.SpotRateDeleted | io.flow.internal.v0.models.SpotRateUpserted | io.flow.internal.v0.models.UsdSpotRateDeleted | io.flow.internal.v0.models.UsdSpotRateUpserted | io.flow.internal.v0.models.RateDeletedV2 | io.flow.internal.v0.models.RateUpsertedV2 | io.flow.internal.v0.models.OrganizationCurrencySettingUpserted | io.flow.internal.v0.models.OrganizationCurrencySettingDeleted | io.flow.internal.v0.models.ChannelCurrencySettingUpserted | io.flow.internal.v0.models.ChannelCurrencySettingDeleted | io.flow.internal.v0.models.CustomerPurgeUpserted | io.flow.internal.v0.models.CustomsDescriptionImport | io.flow.internal.v0.models.CustomsDescriptionTariffsImport | io.flow.internal.v0.models.ItemDimensionEstimateUpsertedV2 | io.flow.internal.v0.models.ItemDimensionEstimateDeletedV2 | io.flow.internal.v0.models.DisputeUpserted | io.flow.internal.v0.models.DisputeDeleted | io.flow.internal.v0.models.DutyRatesPublishedV2 | io.flow.internal.v0.models.DutyRateRequest | io.flow.internal.v0.models.DutyRateBulkRequest | io.flow.internal.v0.models.DutyRawUpserted | io.flow.internal.v0.models.DutyRawBulkUpserted | io.flow.internal.v0.models.DutyRateUpserted | io.flow.internal.v0.models.DutyRateResponse | io.flow.internal.v0.models.DutyRateBulkResponse | io.flow.internal.v0.models.ItemSalesMarginDeleted | io.flow.internal.v0.models.ItemSalesMarginUpserted | io.flow.internal.v0.models.OrderAttributeDeleted | io.flow.internal.v0.models.OrderAttributeUpserted | io.flow.internal.v0.models.ExperienceExportRequest | io.flow.internal.v0.models.ExperienceImportRequest | io.flow.internal.v0.models.SubmittedOrderUpserted | io.flow.internal.v0.models.LevyRateSummaryUpserted | io.flow.internal.v0.models.ExperimentUpserted | io.flow.internal.v0.models.ExperimentDeleted | io.flow.internal.v0.models.ExperimentResultsUpserted | io.flow.internal.v0.models.ExperimentResultsDeleted | io.flow.internal.v0.models.DailyExperimentResultsUpserted | io.flow.internal.v0.models.DailyExperimentResultsDeleted | io.flow.internal.v0.models.ExperimentMilestoneUpserted | io.flow.internal.v0.models.ExperimentMilestoneDeleted | io.flow.internal.v0.models.ExportCompleted | io.flow.internal.v0.models.ExportFailed | io.flow.internal.v0.models.FeatureUpserted | io.flow.internal.v0.models.FeatureDeleted | io.flow.internal.v0.models.OrganizationBooleanValueUpserted | io.flow.internal.v0.models.OrganizationBooleanValueDeleted | io.flow.internal.v0.models.AccountSettingsUpserted | io.flow.internal.v0.models.AccountSettingsDeleted | io.flow.internal.v0.models.AccountProcessingRatesUpserted | io.flow.internal.v0.models.AccountProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesUpserted | io.flow.internal.v0.models.BillingOrganizationProcessingRatesDeleted | io.flow.internal.v0.models.BillingOrganizationSettingsUpserted | io.flow.internal.v0.models.BillingOrganizationSettingsDeleted | io.flow.internal.v0.models.BillingStatementBatchUpserted | io.flow.internal.v0.models.BillingStatementBatchDeleted | io.flow.internal.v0.models.BillingStatementBatchStatementUpserted | io.flow.internal.v0.models.BillingStatementBatchStatementDeleted | io.flow.internal.v0.models.PlatformFeeChangeUpserted | io.flow.internal.v0.models.PlatformFeeChangeDeleted | io.flow.internal.v0.models.FraudReviewUpserted | io.flow.internal.v0.models.FraudReviewDeleted | io.flow.internal.v0.models.FraudPendingReviewUpserted | io.flow.internal.v0.models.FraudPendingReviewDeleted | io.flow.internal.v0.models.FraudReviewDecisionUpserted | io.flow.internal.v0.models.FraudReviewDecisionDeleted | io.flow.internal.v0.models.FraudProviderConfigurationUpserted | io.flow.internal.v0.models.FraudProviderConfigurationDeleted | io.flow.internal.v0.models.FtpFileUpserted | io.flow.internal.v0.models.FtpFileDeleted | io.flow.internal.v0.models.FtpFileToProcessUploaded | io.flow.internal.v0.models.PregeneratedRequestEvent | io.flow.internal.v0.models.AllItemsExport | io.flow.internal.v0.models.HarmonizedItemsHs6Export | io.flow.internal.v0.models.UnharmonizedItemsExport | io.flow.internal.v0.models.DutiedItemsExport | io.flow.internal.v0.models.TariffCodesExport | io.flow.internal.v0.models.HarmonizationPhraseSuggestionRequestImport | io.flow.internal.v0.models.HarmonizationCodesImport | io.flow.internal.v0.models.ItemClassificationCreated | io.flow.internal.v0.models.HarmonizeFullyRequestV2 | io.flow.internal.v0.models.HybrisCatalogItemsImportRequest | io.flow.internal.v0.models.ImportCompleted | io.flow.internal.v0.models.ImportFailed | io.flow.internal.v0.models.TimeToClassifyUpserted | io.flow.internal.v0.models.TimeToClassifyDeleted | io.flow.internal.v0.models.TimeToClassifyAggregatedUpserted | io.flow.internal.v0.models.TimeToClassifyAggregatedDeleted | io.flow.internal.v0.models.RateSourceSummaryUpserted | io.flow.internal.v0.models.RateSourceSummaryDeleted | io.flow.internal.v0.models.RateFreshnessSummaryUpserted | io.flow.internal.v0.models.RateFreshnessSummaryDeleted | io.flow.internal.v0.models.ItemHarmonizationUpserted | io.flow.internal.v0.models.ItemHarmonizationDeleted | io.flow.internal.v0.models.HarmonizationItemClassificationUpserted | io.flow.internal.v0.models.HarmonizationItemClassificationDeleted | io.flow.internal.v0.models.IssuerUpserted | io.flow.internal.v0.models.IssuerDeleted | io.flow.internal.v0.models.ItemFormImportRequest | io.flow.internal.v0.models.LabelTrackingSummaryUpserted | io.flow.internal.v0.models.LabelTrackingSummaryDeleted | io.flow.internal.v0.models.LocalizedItemUpsertedV2 | io.flow.internal.v0.models.LocalizedItemDeleted | io.flow.internal.v0.models.LocalizedItemDeletedV2 | io.flow.internal.v0.models.LocalizedItemSnapshot | io.flow.internal.v0.models.LocalizedPriceBookItemUpserted | io.flow.internal.v0.models.LocalizedPriceBookItemDeleted | io.flow.internal.v0.models.FeedUpserted | io.flow.internal.v0.models.FeedDeleted | io.flow.internal.v0.models.FeedsExport | io.flow.internal.v0.models.LocalizedItemPricesExportRequest | io.flow.internal.v0.models.OptinPromptUpserted | io.flow.internal.v0.models.OptinPromptDeleted | io.flow.internal.v0.models.OrderFulfillmentDeleted | io.flow.internal.v0.models.OrderFulfillmentUpserted | io.flow.internal.v0.models.OrderPlaced | io.flow.internal.v0.models.ReadyToFulfill | io.flow.internal.v0.models.FulfillmentCancel | io.flow.internal.v0.models.OrderShipped | io.flow.internal.v0.models.ItemsShipped | io.flow.internal.v0.models.OrganizationRestrictionApprovalUpserted | io.flow.internal.v0.models.OrganizationRestrictionApprovalDeleted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotUpserted | io.flow.internal.v0.models.OrganizationRestrictionSnapshotDeleted | io.flow.internal.v0.models.OrganizationRestrictionStatusUpserted | io.flow.internal.v0.models.OrganizationRestrictionStatusDeleted | io.flow.internal.v0.models.InternalAuthorizationUpserted | io.flow.internal.v0.models.InternalAuthorizationDeleted | io.flow.internal.v0.models.AfterpayAuthorizationUpserted | io.flow.internal.v0.models.AfterpayAuthorizationDeleted | io.flow.internal.v0.models.AfterpayCaptureUpserted | io.flow.internal.v0.models.AfterpayCaptureDeleted | io.flow.internal.v0.models.AfterpayRefundUpserted | io.flow.internal.v0.models.AfterpayRefundDeleted | io.flow.internal.v0.models.AdyenMerchantAccountUpserted | io.flow.internal.v0.models.AdyenMerchantAccountDeleted | io.flow.internal.v0.models.ChargebackUpserted | io.flow.internal.v0.models.ChargebackDeleted | io.flow.internal.v0.models.PaymentProcessorAccountUpserted | io.flow.internal.v0.models.PaymentProcessorAccountDeleted | io.flow.internal.v0.models.PaymentProcessorMerchantUpserted | io.flow.internal.v0.models.PaymentProcessorMerchantDeleted | io.flow.internal.v0.models.VirtualCardProviderUpserted | io.flow.internal.v0.models.VirtualCardProviderDeleted | io.flow.internal.v0.models.AuthorizationBundleUpserted | io.flow.internal.v0.models.AuthorizationBundleDeleted | io.flow.internal.v0.models.OrganizationPaymentSettingUpserted | io.flow.internal.v0.models.OrganizationPaymentSettingDeleted | io.flow.internal.v0.models.PaypalPaymentDeleted | io.flow.internal.v0.models.PaypalPaymentUpserted | io.flow.internal.v0.models.PaypalExecutionDeleted | io.flow.internal.v0.models.PaypalExecutionUpserted | io.flow.internal.v0.models.PaypalRefundDeleted | io.flow.internal.v0.models.PaypalRefundUpserted | io.flow.internal.v0.models.PricingIndicator | io.flow.internal.v0.models.OrderRatesPublishedV3 | io.flow.internal.v0.models.RatecardDimensionEstimateUpserted | io.flow.internal.v0.models.RatecardDimensionEstimateDeleted | io.flow.internal.v0.models.RatecardLanesImportRequest | io.flow.internal.v0.models.RatecardStandardConfigurationUpserted | io.flow.internal.v0.models.RatecardStandardConfigurationDeleted | io.flow.internal.v0.models.RatecardServiceFeeUpserted | io.flow.internal.v0.models.RatecardServiceFeeDeleted | io.flow.internal.v0.models.RatecardLaneAggregateUpserted | io.flow.internal.v0.models.RatecardLaneAggregateDeleted | io.flow.internal.v0.models.ShopifyShopUpserted | io.flow.internal.v0.models.ShopifyShopDeleted | io.flow.internal.v0.models.ShopifyExperienceShortIdUpserted | io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted | io.flow.internal.v0.models.ShopifyMarketsOrderUpserted | io.flow.internal.v0.models.ShopifyMarketsOrderDeleted | io.flow.internal.v0.models.ShopifyMarketsShopUpserted | io.flow.internal.v0.models.ShopifyMarketsShopDeleted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted | io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted | io.flow.internal.v0.models.StripeAuthorizationDeleted | io.flow.internal.v0.models.StripeAuthorizationUpserted | io.flow.internal.v0.models.StripeReversalDeleted | io.flow.internal.v0.models.StripeReversalUpserted | io.flow.internal.v0.models.StripeCaptureDeleted | io.flow.internal.v0.models.StripeCaptureUpserted | io.flow.internal.v0.models.StripeRefundDeleted | io.flow.internal.v0.models.StripeRefundUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingUpserted | io.flow.internal.v0.models.SvbVirtualCardClearingDeleted | io.flow.internal.v0.models.LiabilityRemittancePlanUpserted | io.flow.internal.v0.models.LiabilityRemittancePlanDeleted | io.flow.internal.v0.models.TrackingLabelEventUpsertedV2 | io.flow.internal.v0.models.TrackingLabelEventDeletedV2 | io.flow.internal.v0.models.TrackingLabelUpserted | io.flow.internal.v0.models.TrackingLabelDeleted | io.flow.internal.v0.models.TrackingUpserted | io.flow.internal.v0.models.TrackingDeleted | io.flow.internal.v0.models.TrackingRequestUpserted | io.flow.internal.v0.models.TrackingResponseUpserted | io.flow.internal.v0.models.UserUpsertedV2 | io.flow.internal.v0.models.UserDeletedV2);
|
|
23599
23698
|
type Experiment = (io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment);
|
|
23600
23699
|
type ExportSchedule = (io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated);
|
|
23601
23700
|
type FeatureDefaultValue = (io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue);
|
|
@@ -23632,7 +23731,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23632
23731
|
type ProcessorMerchantForm = (io.flow.internal.v0.models.StripeMerchantForm);
|
|
23633
23732
|
type ProcessorMerchantModificationForm = (io.flow.internal.v0.models.StripeMerchantModificationForm | io.flow.internal.v0.models.AdyenMerchantModificationForm | io.flow.internal.v0.models.FiservMerchantModificationForm | io.flow.internal.v0.models.PaypalMerchantModificationForm);
|
|
23634
23733
|
type ProcessorMerchantPutForm = (io.flow.internal.v0.models.StripeMerchantPutForm | io.flow.internal.v0.models.AdyenMerchantPutForm | io.flow.internal.v0.models.FiservMerchantPutForm | io.flow.internal.v0.models.PaypalMerchantPutForm);
|
|
23635
|
-
type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.
|
|
23734
|
+
type ProofOfPosting = (io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingShippingNotification | io.flow.internal.v0.models.ProofOfPostingOrderCancellation);
|
|
23636
23735
|
type RoutingEntity = (io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant);
|
|
23637
23736
|
type ShopifyMonitoringOrderMonitorType = (io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails);
|
|
23638
23737
|
type ShopifyPromotionOfferDiscount = (io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent);
|
|
@@ -23656,6 +23755,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
23656
23755
|
export const accountSettingLiabilitiesMethod: PropTypes.Requireable<io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod>;
|
|
23657
23756
|
export const accountType: PropTypes.Requireable<io.flow.internal.v0.enums.AccountType>;
|
|
23658
23757
|
export const addressConfigurationSettingProvinceCode: PropTypes.Requireable<io.flow.internal.v0.enums.AddressConfigurationSettingProvinceCode>;
|
|
23758
|
+
export const adjustmentTransactionType: PropTypes.Requireable<io.flow.internal.v0.enums.AdjustmentTransactionType>;
|
|
23659
23759
|
export const adyenIntegrationType: PropTypes.Requireable<io.flow.internal.v0.enums.AdyenIntegrationType>;
|
|
23660
23760
|
export const anyDangerousGoods: PropTypes.Requireable<io.flow.internal.v0.enums.AnyDangerousGoods>;
|
|
23661
23761
|
export const apiCallReferenceId: PropTypes.Requireable<io.flow.internal.v0.enums.ApiCallReferenceId>;
|
|
@@ -24874,6 +24974,7 @@ export const heapWebsocketRequest: PropTypes.Requireable<io.flow.internal.v0.mod
|
|
|
24874
24974
|
export const heapWebsocketResponse: PropTypes.Requireable<io.flow.internal.v0.models.HeapWebsocketResponse>;
|
|
24875
24975
|
export const heapWebsocketRetry: PropTypes.Requireable<io.flow.internal.v0.models.HeapWebsocketRetry>;
|
|
24876
24976
|
export const href: PropTypes.Requireable<io.flow.internal.v0.models.Href>;
|
|
24977
|
+
export const hs6: PropTypes.Requireable<io.flow.internal.v0.models.Hs6>;
|
|
24877
24978
|
export const hs6Metadata: PropTypes.Requireable<io.flow.internal.v0.models.Hs6Metadata>;
|
|
24878
24979
|
export const hybrisCatalogItemsImportRequest: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequest>;
|
|
24879
24980
|
export const hybrisCatalogItemsImportRequestData: PropTypes.Requireable<io.flow.internal.v0.models.HybrisCatalogItemsImportRequestData>;
|
|
@@ -25222,7 +25323,6 @@ export const productListSettingsForm: PropTypes.Requireable<io.flow.internal.v0.
|
|
|
25222
25323
|
export const productReviewHistory: PropTypes.Requireable<io.flow.internal.v0.models.ProductReviewHistory>;
|
|
25223
25324
|
export const proofOfPostingExternallyFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled>;
|
|
25224
25325
|
export const proofOfPostingFulfilled: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFulfilled>;
|
|
25225
|
-
export const proofOfPostingFullyRefunded: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingFullyRefunded>;
|
|
25226
25326
|
export const proofOfPostingOrderCancellation: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingOrderCancellation>;
|
|
25227
25327
|
export const proofOfPostingShippingNotification: PropTypes.Requireable<io.flow.internal.v0.models.ProofOfPostingShippingNotification>;
|
|
25228
25328
|
export const quoteRequest: PropTypes.Requireable<io.flow.internal.v0.models.QuoteRequest>;
|
|
@@ -25347,8 +25447,10 @@ export const shopifyMarketsOrder: PropTypes.Requireable<io.flow.internal.v0.mode
|
|
|
25347
25447
|
export const shopifyMarketsOrderDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderDeleted>;
|
|
25348
25448
|
export const shopifyMarketsOrderUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsOrderUpserted>;
|
|
25349
25449
|
export const shopifyMarketsShop: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShop>;
|
|
25450
|
+
export const shopifyMarketsShopDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopDeleted>;
|
|
25350
25451
|
export const shopifyMarketsShopForm: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopForm>;
|
|
25351
25452
|
export const shopifyMarketsShopSummary: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopSummary>;
|
|
25453
|
+
export const shopifyMarketsShopUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsShopUpserted>;
|
|
25352
25454
|
export const shopifyMarketsSubsidiaryCompany: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSubsidiaryCompany>;
|
|
25353
25455
|
export const shopifyMarketsSync: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsSync>;
|
|
25354
25456
|
export const shopifyMarketsWebhookRegistration: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration>;
|
|
@@ -25360,7 +25462,6 @@ export const shopifyMonitoringOrderMonitor: PropTypes.Requireable<io.flow.intern
|
|
|
25360
25462
|
export const shopifyMonitoringOrderMonitorEventDeleted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted>;
|
|
25361
25463
|
export const shopifyMonitoringOrderMonitorEventUpserted: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted>;
|
|
25362
25464
|
export const shopifyMonitoringOrderMonitorReview: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview>;
|
|
25363
|
-
export const shopifyMonitoringOrderMonitorReviewOrderDetails: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails>;
|
|
25364
25465
|
export const shopifyMonitoringTrackingNumber: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber>;
|
|
25365
25466
|
export const shopifyMonitoringTrackingUrl: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyMonitoringTrackingUrl>;
|
|
25366
25467
|
export const shopifyOrderAuthorization: PropTypes.Requireable<io.flow.internal.v0.models.ShopifyOrderAuthorization>;
|