@flowio/types 11.24.44 → 11.24.45
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 +209 -14
- package/dist/api.d.ts +19 -5
- package/package.json +2 -2
- package/src/api-internal.ts +295 -12
- package/src/api.ts +29 -5
package/dist/api-internal.d.ts
CHANGED
|
@@ -1385,7 +1385,7 @@ declare namespace io.flow.flexe.v0.models {
|
|
|
1385
1385
|
}
|
|
1386
1386
|
}
|
|
1387
1387
|
declare namespace io.flow.payment.v0.enums {
|
|
1388
|
-
type AddressVerificationResultFieldCode = '
|
|
1388
|
+
type AddressVerificationResultFieldCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1389
1389
|
type AuthorizationDeclineCode = 'expired' | 'invalid_name' | 'invalid_number' | 'invalid_expiration' | 'invalid_address' | 'invalid_token_type' | 'invalid_token' | 'no_account' | 'avs' | 'cvv' | 'fraud' | 'duplicate' | 'not_supported' | 'unknown' | 'online_payment_error';
|
|
1390
1390
|
type AuthorizationOption = 'store_card';
|
|
1391
1391
|
type AuthorizationResultActionType = 'native' | 'redirect' | 'wait';
|
|
@@ -1396,7 +1396,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1396
1396
|
type CardErrorCode = 'invalid_address' | 'invalid_currency' | 'invalid_name' | 'invalid_number' | 'invalid_expiration' | 'invalid_token_type' | 'avs' | 'cvv' | 'fraud' | 'unknown';
|
|
1397
1397
|
type CardType = 'american_express' | 'cartes_bancaires' | 'china_union_pay' | 'dankort' | 'diners_club' | 'discover' | 'jcb' | 'maestro' | 'mastercard' | 'visa';
|
|
1398
1398
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1399
|
-
type CvvResultCode = '
|
|
1399
|
+
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1400
1400
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1401
1401
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1402
1402
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
@@ -2943,6 +2943,8 @@ declare namespace io.flow.customer.v0.models {
|
|
|
2943
2943
|
declare namespace io.flow.label.v0.enums {
|
|
2944
2944
|
type CostEstimateSource = 'flow' | 'channel';
|
|
2945
2945
|
type Direction = 'outbound' | 'return';
|
|
2946
|
+
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'autogenerated';
|
|
2947
|
+
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
2946
2948
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
2947
2949
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
2948
2950
|
}
|
|
@@ -3028,6 +3030,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
3028
3030
|
readonly order_identifier?: string;
|
|
3029
3031
|
readonly fulfillment_key?: string;
|
|
3030
3032
|
readonly shipment_recipient: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3033
|
+
readonly label_request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
3034
|
+
readonly label_trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
3031
3035
|
readonly created_at?: string;
|
|
3032
3036
|
readonly updated_at?: string;
|
|
3033
3037
|
}
|
|
@@ -3075,9 +3079,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
3075
3079
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3076
3080
|
readonly flow_tracking_number: string;
|
|
3077
3081
|
readonly origin: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3078
|
-
readonly package
|
|
3079
|
-
readonly service: io.flow.fulfillment.v0.
|
|
3080
|
-
readonly window
|
|
3082
|
+
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
3083
|
+
readonly service: io.flow.fulfillment.v0.unions.ServiceDescription;
|
|
3084
|
+
readonly window?: io.flow.common.v0.models.DatetimeRange;
|
|
3081
3085
|
readonly order?: io.flow.label.v0.models.LabelOrderSummary;
|
|
3082
3086
|
readonly order_identifier?: string;
|
|
3083
3087
|
readonly fulfillment_key?: string;
|
|
@@ -7503,6 +7507,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7503
7507
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
7504
7508
|
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
7505
7509
|
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
7510
|
+
readonly ratecard_id?: string;
|
|
7506
7511
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
7507
7512
|
}
|
|
7508
7513
|
interface RatecardForm {
|
|
@@ -9472,11 +9477,16 @@ declare namespace io.flow.fulfillment.v0.models {
|
|
|
9472
9477
|
readonly id: string;
|
|
9473
9478
|
}
|
|
9474
9479
|
interface ServiceSummary {
|
|
9480
|
+
readonly discriminator: 'service_summary';
|
|
9475
9481
|
readonly id: string;
|
|
9476
9482
|
readonly carrier: io.flow.fulfillment.v0.models.CarrierReference;
|
|
9477
9483
|
readonly name: string;
|
|
9478
9484
|
readonly center_code?: string;
|
|
9479
9485
|
}
|
|
9486
|
+
interface ServiceUnknown {
|
|
9487
|
+
readonly discriminator: 'service_unknown';
|
|
9488
|
+
readonly name: string;
|
|
9489
|
+
}
|
|
9480
9490
|
interface ShippingAddress {
|
|
9481
9491
|
readonly contact: io.flow.common.v0.models.Contact;
|
|
9482
9492
|
readonly location: io.flow.common.v0.models.Address;
|
|
@@ -9676,6 +9686,7 @@ declare namespace io.flow.fulfillment.v0.unions {
|
|
|
9676
9686
|
type Delivery = io.flow.fulfillment.v0.models.DigitalDelivery | io.flow.fulfillment.v0.models.PhysicalDelivery;
|
|
9677
9687
|
type ExpandableCenter = io.flow.fulfillment.v0.models.Center | io.flow.fulfillment.v0.models.CenterReference;
|
|
9678
9688
|
type PartnerCenterFee = io.flow.fulfillment.v0.models.CommercialInvoiceFee | io.flow.fulfillment.v0.models.InboundCartonFee | io.flow.fulfillment.v0.models.OutboundCartonFee;
|
|
9689
|
+
type ServiceDescription = io.flow.fulfillment.v0.models.ServiceSummary | io.flow.fulfillment.v0.models.ServiceUnknown;
|
|
9679
9690
|
type TierRuleOutcome = io.flow.fulfillment.v0.models.AmountMargin | io.flow.fulfillment.v0.models.AtCost | io.flow.fulfillment.v0.models.FlatRate | io.flow.fulfillment.v0.models.PercentMargin;
|
|
9680
9691
|
type TierRuleOutcomeForm = io.flow.fulfillment.v0.models.AmountMarginForm | io.flow.fulfillment.v0.models.FlatRateForm | io.flow.fulfillment.v0.models.AtCost | io.flow.fulfillment.v0.models.PercentMargin;
|
|
9681
9692
|
}
|
|
@@ -9820,6 +9831,56 @@ declare namespace io.flow.checkout.v0.models {
|
|
|
9820
9831
|
declare namespace io.flow.checkout.v0.unions {
|
|
9821
9832
|
type CheckoutTokenForm = io.flow.checkout.v0.models.CheckoutTokenOrderForm | io.flow.checkout.v0.models.CheckoutTokenReferenceForm;
|
|
9822
9833
|
}
|
|
9834
|
+
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
9835
|
+
type MerchantRejectedReason = 'merchant_ubo_is_pep' | 'merchant_catalog_is_unsupportable' | 'merchant_failed_kyb_review';
|
|
9836
|
+
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box';
|
|
9837
|
+
}
|
|
9838
|
+
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
9839
|
+
interface ActivationPutForm {
|
|
9840
|
+
readonly placeholder?: boolean;
|
|
9841
|
+
}
|
|
9842
|
+
interface ApplicationReceived {
|
|
9843
|
+
readonly discriminator: 'application_received';
|
|
9844
|
+
readonly placeholder?: boolean;
|
|
9845
|
+
}
|
|
9846
|
+
interface InComplianceReview {
|
|
9847
|
+
readonly discriminator: 'in_compliance_review';
|
|
9848
|
+
readonly placeholder?: boolean;
|
|
9849
|
+
}
|
|
9850
|
+
interface MerchantActivated {
|
|
9851
|
+
readonly discriminator: 'merchant_activated';
|
|
9852
|
+
readonly placeholder?: boolean;
|
|
9853
|
+
}
|
|
9854
|
+
interface MerchantRejected {
|
|
9855
|
+
readonly discriminator: 'merchant_rejected';
|
|
9856
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
9857
|
+
readonly description?: string;
|
|
9858
|
+
}
|
|
9859
|
+
interface OnboardingStateTransition {
|
|
9860
|
+
readonly state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
9861
|
+
readonly started_at: string;
|
|
9862
|
+
}
|
|
9863
|
+
interface OrganizationOnboardingState {
|
|
9864
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
9865
|
+
readonly transitions: io.flow.organization.onboarding.state.v0.models.OnboardingStateTransition[];
|
|
9866
|
+
readonly current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
9867
|
+
}
|
|
9868
|
+
interface SetupBlocked {
|
|
9869
|
+
readonly discriminator: 'setup_blocked';
|
|
9870
|
+
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
9871
|
+
}
|
|
9872
|
+
interface SetupCompleted {
|
|
9873
|
+
readonly discriminator: 'setup_completed';
|
|
9874
|
+
readonly placeholder?: boolean;
|
|
9875
|
+
}
|
|
9876
|
+
interface SetupInProgress {
|
|
9877
|
+
readonly discriminator: 'setup_in_progress';
|
|
9878
|
+
readonly placeholder?: boolean;
|
|
9879
|
+
}
|
|
9880
|
+
}
|
|
9881
|
+
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
9882
|
+
type OnboardingState = io.flow.organization.onboarding.state.v0.models.ApplicationReceived | io.flow.organization.onboarding.state.v0.models.InComplianceReview | io.flow.organization.onboarding.state.v0.models.SetupInProgress | io.flow.organization.onboarding.state.v0.models.MerchantRejected | io.flow.organization.onboarding.state.v0.models.SetupBlocked | io.flow.organization.onboarding.state.v0.models.SetupCompleted | io.flow.organization.onboarding.state.v0.models.MerchantActivated;
|
|
9883
|
+
}
|
|
9823
9884
|
declare namespace io.flow.fraud.v0.enums {
|
|
9824
9885
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
9825
9886
|
type FraudLiability = 'flow' | 'organization';
|
|
@@ -10222,7 +10283,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10222
10283
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
10223
10284
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
10224
10285
|
type EmptyAttribute = 'irrelevant';
|
|
10225
|
-
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' | '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' | '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';
|
|
10286
|
+
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' | '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';
|
|
10226
10287
|
type ExperienceImportType = 'experience_with_settings';
|
|
10227
10288
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10228
10289
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10273,7 +10334,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10273
10334
|
type NoLiabilityReasonCode = 'zero_basis' | 'zero_rate_on_goods' | 'zero_rate_on_sale' | 'goods_above_value_threshold' | 'goods_below_value_threshold' | 'order_below_de_minimis_threshold' | 'amount_below_de_minimis_threshold' | 'delivered_unpaid' | 'duty_free_domestic' | 'duty_free_intra_community' | 'duty_free_by_trade_agreement';
|
|
10274
10335
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
10275
10336
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
10276
|
-
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'miscellaneous';
|
|
10337
|
+
type OnboardingAuditThemeKey = 'billing' | 'b2b_invoicing' | 'catalog' | 'currency' | 'checkout' | 'fraud' | 'logistics' | 'payments' | 'shopify_markets' | 'integration_partner' | 'dtce' | 'restrictions' | 'miscellaneous';
|
|
10277
10338
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10278
10339
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10279
10340
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
@@ -10324,6 +10385,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10324
10385
|
type ShopifyMarketsDangerousGoods = 'aerosols' | 'air_bag_inflators_or_seat_belt_pretensioners' | 'alcoholic_beverages_containing_more_than_24_percent_alcohol_by_volume' | 'batteries' | 'carbon_dioxide_or_dry_ice' | 'corrosives' | 'cannabidiol_products' | 'cologne_or_perfume' | 'currency_or_gift_cards_or_monetary_instruments' | 'exotic_leather_goods' | 'environmental_waste' | 'explosives_or_ammunition' | 'flammable_liquids' | 'gases' | 'hazardous_or_combustible_materials' | 'infectious_or_biological_substances' | 'knives' | 'matches_or_lighter_or_lighter_refills' | 'nail_polish' | 'oxidizing_materials_or_organic_peroxides' | 'pornography' | 'prohibited_carriage' | 'pesticides_or_toxic_herbicides_or_insecticides_or_poisonous_toxic_substances';
|
|
10325
10386
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
10326
10387
|
type ShopifyMarketsTradeSector = 'apparel_and_accessories' | 'beauty_and_cosmetics' | 'electronics' | 'food_or_perishables' | 'jewellery_and_watches' | 'paper_and_art' | 'sports_and_fitness' | 'toys_hobbies_gifts' | 'other';
|
|
10388
|
+
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
10389
|
+
type ShopifyMonitoringTrackingField = 'tracking_number' | 'carrier_service' | 'tracking_url';
|
|
10327
10390
|
type ShopifyPromotionBehavior = 'disable_discount_codes';
|
|
10328
10391
|
type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
|
|
10329
10392
|
type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
|
|
@@ -10331,6 +10394,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10331
10394
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
10332
10395
|
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
10333
10396
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
10397
|
+
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
10398
|
+
type SnoozeSourceType = 'queued_capture' | 'queued_refund';
|
|
10334
10399
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
10335
10400
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
10336
10401
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
@@ -10575,6 +10640,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10575
10640
|
readonly discriminator: 'percentage';
|
|
10576
10641
|
readonly percentage: number;
|
|
10577
10642
|
}
|
|
10643
|
+
interface AdjustmentDetailsAmountFixed {
|
|
10644
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
10645
|
+
}
|
|
10646
|
+
interface AdjustmentDetailsAmountPercentage {
|
|
10647
|
+
readonly percentage: number;
|
|
10648
|
+
}
|
|
10649
|
+
interface AdjustmentDetailsProcessingTransaction {
|
|
10650
|
+
readonly discriminator: 'processing_transaction';
|
|
10651
|
+
readonly withholdings?: io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionWithholding[];
|
|
10652
|
+
readonly fees?: io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionFee[];
|
|
10653
|
+
}
|
|
10654
|
+
interface AdjustmentDetailsProcessingTransactionFee {
|
|
10655
|
+
readonly type: io.flow.billing.v0.enums.FeeDeductionType;
|
|
10656
|
+
readonly amount: io.flow.internal.v0.unions.AdjustmentAmount;
|
|
10657
|
+
}
|
|
10658
|
+
interface AdjustmentDetailsProcessingTransactionWithholding {
|
|
10659
|
+
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
10660
|
+
readonly amount: io.flow.internal.v0.unions.AdjustmentAmount;
|
|
10661
|
+
}
|
|
10578
10662
|
interface AdyenAccount {
|
|
10579
10663
|
readonly discriminator: 'adyen_account';
|
|
10580
10664
|
readonly id: string;
|
|
@@ -13623,6 +13707,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13623
13707
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
13624
13708
|
readonly categories: string[];
|
|
13625
13709
|
readonly model_id?: string;
|
|
13710
|
+
readonly classified_by?: string;
|
|
13626
13711
|
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
13627
13712
|
readonly status?: io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
13628
13713
|
readonly suggested_action?: io.flow.internal.v0.enums.ItemClassificationAction;
|
|
@@ -17196,6 +17281,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17196
17281
|
readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
17197
17282
|
readonly lines: io.flow.internal.v0.models.OnboardingAuditReportLine[];
|
|
17198
17283
|
}
|
|
17284
|
+
interface OnboardingOrganization {
|
|
17285
|
+
readonly age: number;
|
|
17286
|
+
readonly compliance_approved: boolean;
|
|
17287
|
+
readonly compliance_full_review_required: boolean;
|
|
17288
|
+
readonly application_received: string;
|
|
17289
|
+
readonly legal_name: string;
|
|
17290
|
+
readonly shop_name: string;
|
|
17291
|
+
readonly organization_id: string;
|
|
17292
|
+
readonly onboarding_state: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
17293
|
+
readonly gmv: number;
|
|
17294
|
+
}
|
|
17199
17295
|
interface OneTimeTokenRedemptionForm {
|
|
17200
17296
|
readonly token: string;
|
|
17201
17297
|
}
|
|
@@ -18632,6 +18728,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18632
18728
|
interface RestrictionOrganizationDecisionSummary {
|
|
18633
18729
|
readonly organization: io.flow.internal.v0.models.RestrictionOrganization;
|
|
18634
18730
|
readonly earliest_pending_date: string;
|
|
18731
|
+
readonly date: string;
|
|
18635
18732
|
readonly statuses: io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
18636
18733
|
readonly rules: io.flow.internal.v0.models.RestrictionRuleMetadata[];
|
|
18637
18734
|
readonly count: number;
|
|
@@ -19019,6 +19116,59 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19019
19116
|
readonly myshopify_domain: string;
|
|
19020
19117
|
readonly token: string;
|
|
19021
19118
|
}
|
|
19119
|
+
interface ShopifyMonitoringCarrierService {
|
|
19120
|
+
readonly service: string;
|
|
19121
|
+
}
|
|
19122
|
+
interface ShopifyMonitoringFulfillmentExternal {
|
|
19123
|
+
readonly discriminator: 'fulfillment_external';
|
|
19124
|
+
readonly shopify_fulfillment_id: string;
|
|
19125
|
+
readonly flow_tracking_numbers: io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber[];
|
|
19126
|
+
readonly flow_carrier_service: io.flow.internal.v0.models.ShopifyMonitoringCarrierService[];
|
|
19127
|
+
readonly shopify_tracking_number: io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
19128
|
+
readonly shopify_carrier_service?: io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
19129
|
+
}
|
|
19130
|
+
interface ShopifyMonitoringFulfillmentMissingDetails {
|
|
19131
|
+
readonly discriminator: 'fulfillment_missing_details';
|
|
19132
|
+
readonly shopify_fulfillment_id: string;
|
|
19133
|
+
readonly missing_details: io.flow.internal.v0.enums.ShopifyMonitoringTrackingField[];
|
|
19134
|
+
}
|
|
19135
|
+
interface ShopifyMonitoringOrderMonitor {
|
|
19136
|
+
readonly id: string;
|
|
19137
|
+
readonly organization_reference: io.flow.common.v0.models.OrganizationReference;
|
|
19138
|
+
readonly order_number: string;
|
|
19139
|
+
readonly monitor: io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
19140
|
+
readonly created_at: string;
|
|
19141
|
+
}
|
|
19142
|
+
interface ShopifyMonitoringOrderMonitorEventDeleted {
|
|
19143
|
+
readonly discriminator: 'shopify_monitoring_order_monitor_event_deleted';
|
|
19144
|
+
readonly event_id: string;
|
|
19145
|
+
readonly timestamp: string;
|
|
19146
|
+
readonly organization: string;
|
|
19147
|
+
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
19148
|
+
}
|
|
19149
|
+
interface ShopifyMonitoringOrderMonitorEventUpserted {
|
|
19150
|
+
readonly discriminator: 'shopify_monitoring_order_monitor_event_upserted';
|
|
19151
|
+
readonly event_id: string;
|
|
19152
|
+
readonly timestamp: string;
|
|
19153
|
+
readonly organization: string;
|
|
19154
|
+
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
19155
|
+
}
|
|
19156
|
+
interface ShopifyMonitoringOrderMonitorReview {
|
|
19157
|
+
readonly id: string;
|
|
19158
|
+
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
19159
|
+
readonly order_details: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
19160
|
+
readonly status: io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
19161
|
+
}
|
|
19162
|
+
interface ShopifyMonitoringOrderMonitorReviewOrderDetails {
|
|
19163
|
+
readonly organization: string;
|
|
19164
|
+
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
19165
|
+
}
|
|
19166
|
+
interface ShopifyMonitoringTrackingNumber {
|
|
19167
|
+
readonly number: string;
|
|
19168
|
+
}
|
|
19169
|
+
interface ShopifyMonitoringTrackingUrl {
|
|
19170
|
+
readonly url: string;
|
|
19171
|
+
}
|
|
19022
19172
|
interface ShopifyOrderAuthorization {
|
|
19023
19173
|
readonly result: io.flow.payment.v0.models.AuthorizationResult;
|
|
19024
19174
|
readonly detail?: io.flow.internal.v0.models.ShopifyOrderDetail;
|
|
@@ -19213,7 +19363,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19213
19363
|
readonly product_harmonization: io.flow.internal.v0.models.ProductHarmonizationForm;
|
|
19214
19364
|
readonly initial_customs_description?: string;
|
|
19215
19365
|
}
|
|
19216
|
-
interface
|
|
19366
|
+
interface SmpTaxCalculation {
|
|
19217
19367
|
readonly quote_reference: string;
|
|
19218
19368
|
readonly target_currency_code: string;
|
|
19219
19369
|
readonly total: number;
|
|
@@ -19223,7 +19373,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19223
19373
|
readonly shipping_tax: io.flow.internal.v0.unions.TaxAmount;
|
|
19224
19374
|
readonly customer_code?: string;
|
|
19225
19375
|
}
|
|
19226
|
-
interface
|
|
19376
|
+
interface SmpTaxCalculationForm {
|
|
19227
19377
|
readonly quote_reference: string;
|
|
19228
19378
|
readonly target_currency_code: string;
|
|
19229
19379
|
readonly destination: io.flow.common.v0.models.Address;
|
|
@@ -19237,6 +19387,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19237
19387
|
readonly name?: string;
|
|
19238
19388
|
readonly tracker_id: string;
|
|
19239
19389
|
}
|
|
19390
|
+
interface Snooze {
|
|
19391
|
+
readonly id: string;
|
|
19392
|
+
readonly until: string;
|
|
19393
|
+
readonly reason: string;
|
|
19394
|
+
readonly next_action_with: io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
19395
|
+
readonly source: io.flow.internal.v0.models.SnoozeSource;
|
|
19396
|
+
}
|
|
19397
|
+
interface SnoozeForm {
|
|
19398
|
+
readonly until: string;
|
|
19399
|
+
readonly reason: string;
|
|
19400
|
+
readonly next_action_with: io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
19401
|
+
readonly source_type: io.flow.internal.v0.enums.SnoozeSourceType;
|
|
19402
|
+
readonly source_id: string;
|
|
19403
|
+
}
|
|
19404
|
+
interface SnoozeSource {
|
|
19405
|
+
readonly type: io.flow.internal.v0.enums.SnoozeSourceType;
|
|
19406
|
+
readonly id: string;
|
|
19407
|
+
}
|
|
19240
19408
|
interface SpotRate {
|
|
19241
19409
|
readonly id: string;
|
|
19242
19410
|
readonly effective_at: string;
|
|
@@ -19843,12 +20011,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19843
20011
|
readonly original_transaction: io.flow.internal.v0.models.ProcessingTransactionReference;
|
|
19844
20012
|
readonly adjustment_transaction: io.flow.internal.v0.models.ProcessingTransactionReference;
|
|
19845
20013
|
readonly description: string;
|
|
19846
|
-
readonly
|
|
20014
|
+
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
19847
20015
|
}
|
|
19848
20016
|
interface TransactionAdjustmentForm {
|
|
19849
20017
|
readonly original_transaction_id: string;
|
|
19850
20018
|
readonly description: string;
|
|
19851
|
-
readonly
|
|
20019
|
+
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
19852
20020
|
}
|
|
19853
20021
|
interface TransactionReference {
|
|
19854
20022
|
readonly id: string;
|
|
@@ -20106,6 +20274,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20106
20274
|
}
|
|
20107
20275
|
declare namespace io.flow.internal.v0.unions {
|
|
20108
20276
|
type AdjustmentAmount = io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
20277
|
+
type AdjustmentDetails = io.flow.internal.v0.models.AdjustmentAmountPercentage | io.flow.internal.v0.models.AdjustmentAmountFixed | io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
20109
20278
|
type AuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload | io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
20110
20279
|
type AuthorizedOrderCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
20111
20280
|
type BlazeConsumerMessage = io.flow.internal.v0.models.BlazeAddOrderAttributesMessage | io.flow.internal.v0.models.BlazeAddToCartMessage | io.flow.internal.v0.models.BlazeCreateByCartToken | io.flow.internal.v0.models.BlazeInitializeByOrderQuoteMessage | io.flow.internal.v0.models.BlazeInitializeBySessionMessage | io.flow.internal.v0.models.BlazeInitializeMessage | io.flow.internal.v0.models.BlazeSetCartItemsMessage | io.flow.internal.v0.models.BlazeSetCheckoutIdMessage | io.flow.internal.v0.models.BlazeStartCheckoutMessage | io.flow.internal.v0.models.BlazeUpdateCartItemsMessage | io.flow.internal.v0.models.BlazeApplepayAvailabilityResponse | io.flow.internal.v0.models.BlazeSetPromotionCodeMessage;
|
|
@@ -20204,7 +20373,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20204
20373
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
20205
20374
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
20206
20375
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
20207
|
-
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.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.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;
|
|
20376
|
+
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.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;
|
|
20208
20377
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
20209
20378
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
20210
20379
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -20242,6 +20411,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20242
20411
|
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;
|
|
20243
20412
|
type ProofOfPosting = io.flow.internal.v0.models.ProofOfPostingFulfilled | io.flow.internal.v0.models.ProofOfPostingExternallyFulfilled | io.flow.internal.v0.models.ProofOfPostingFullyRefunded | io.flow.internal.v0.models.ProofOfPostingShippingNotification;
|
|
20244
20413
|
type RoutingEntity = io.flow.internal.v0.models.RoutingProcessor | io.flow.internal.v0.models.RoutingAccount | io.flow.internal.v0.models.RoutingMerchant;
|
|
20414
|
+
type ShopifyMonitoringOrderMonitorType = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal | io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
20245
20415
|
type ShopifyPromotionOfferDiscount = io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
20246
20416
|
type ShopifyPromotionOfferEntitlement = io.flow.internal.v0.models.ShopifyPromotionItemEntitlement | io.flow.internal.v0.models.ShopifyPromotionOrderEntitlement;
|
|
20247
20417
|
type ShopifyPromotionOfferMax = io.flow.internal.v0.models.ShopifyPromotionMaxLimit | io.flow.internal.v0.models.ShopifyPromotionMaxAmount;
|
|
@@ -20295,6 +20465,12 @@ export declare type AddressConfigurationSettingProvinceCode = io.flow.internal.v
|
|
|
20295
20465
|
export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
20296
20466
|
export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
20297
20467
|
export declare type AdjustmentAmountPercentage = io.flow.internal.v0.models.AdjustmentAmountPercentage;
|
|
20468
|
+
export declare type AdjustmentDetails = io.flow.internal.v0.unions.AdjustmentDetails;
|
|
20469
|
+
export declare type AdjustmentDetailsAmountFixed = io.flow.internal.v0.models.AdjustmentDetailsAmountFixed;
|
|
20470
|
+
export declare type AdjustmentDetailsAmountPercentage = io.flow.internal.v0.models.AdjustmentDetailsAmountPercentage;
|
|
20471
|
+
export declare type AdjustmentDetailsProcessingTransaction = io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
20472
|
+
export declare type AdjustmentDetailsProcessingTransactionFee = io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionFee;
|
|
20473
|
+
export declare type AdjustmentDetailsProcessingTransactionWithholding = io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionWithholding;
|
|
20298
20474
|
export declare type AdyenAccount = io.flow.internal.v0.models.AdyenAccount;
|
|
20299
20475
|
export declare type AdyenAccountModificationForm = io.flow.internal.v0.models.AdyenAccountModificationForm;
|
|
20300
20476
|
export declare type AdyenAccountPutForm = io.flow.internal.v0.models.AdyenAccountPutForm;
|
|
@@ -21702,6 +21878,7 @@ export declare type OnboardingAuditThemeKey = io.flow.internal.v0.enums.Onboardi
|
|
|
21702
21878
|
export declare type OnboardingAuditThemeReport = io.flow.internal.v0.models.OnboardingAuditThemeReport;
|
|
21703
21879
|
export declare type OnboardingAutomationProcessState = io.flow.internal.v0.enums.OnboardingAutomationProcessState;
|
|
21704
21880
|
export declare type OnboardingAutomationTaskState = io.flow.internal.v0.enums.OnboardingAutomationTaskState;
|
|
21881
|
+
export declare type OnboardingOrganization = io.flow.internal.v0.models.OnboardingOrganization;
|
|
21705
21882
|
export declare type OneTimeTokenRedemptionForm = io.flow.internal.v0.models.OneTimeTokenRedemptionForm;
|
|
21706
21883
|
export declare type OnlineAuthorizationCompleted = io.flow.internal.v0.models.OnlineAuthorizationCompleted;
|
|
21707
21884
|
export declare type OptinAttribute = io.flow.internal.v0.models.OptinAttribute;
|
|
@@ -22047,6 +22224,19 @@ export declare type ShopifyMarketsSync = io.flow.internal.v0.models.ShopifyMarke
|
|
|
22047
22224
|
export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.ShopifyMarketsTradeSector;
|
|
22048
22225
|
export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
22049
22226
|
export declare type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
22227
|
+
export declare type ShopifyMonitoringCarrierService = io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
22228
|
+
export declare type ShopifyMonitoringFulfillmentExternal = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal;
|
|
22229
|
+
export declare type ShopifyMonitoringFulfillmentMissingDetails = io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
22230
|
+
export declare type ShopifyMonitoringMonitorReviewStatus = io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
22231
|
+
export declare type ShopifyMonitoringOrderMonitor = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
22232
|
+
export declare type ShopifyMonitoringOrderMonitorEventDeleted = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted;
|
|
22233
|
+
export declare type ShopifyMonitoringOrderMonitorEventUpserted = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted;
|
|
22234
|
+
export declare type ShopifyMonitoringOrderMonitorReview = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview;
|
|
22235
|
+
export declare type ShopifyMonitoringOrderMonitorReviewOrderDetails = io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
22236
|
+
export declare type ShopifyMonitoringOrderMonitorType = io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
22237
|
+
export declare type ShopifyMonitoringTrackingField = io.flow.internal.v0.enums.ShopifyMonitoringTrackingField;
|
|
22238
|
+
export declare type ShopifyMonitoringTrackingNumber = io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
22239
|
+
export declare type ShopifyMonitoringTrackingUrl = io.flow.internal.v0.models.ShopifyMonitoringTrackingUrl;
|
|
22050
22240
|
export declare type ShopifyOrderAuthorization = io.flow.internal.v0.models.ShopifyOrderAuthorization;
|
|
22051
22241
|
export declare type ShopifyOrderCancelForm = io.flow.internal.v0.models.ShopifyOrderCancelForm;
|
|
22052
22242
|
export declare type ShopifyOrderCancelResponse = io.flow.internal.v0.models.ShopifyOrderCancelResponse;
|
|
@@ -22096,9 +22286,14 @@ export declare type SimplifiedItemLabel = io.flow.internal.v0.models.SimplifiedI
|
|
|
22096
22286
|
export declare type SimplifiedTaxonomyCategory = io.flow.internal.v0.models.SimplifiedTaxonomyCategory;
|
|
22097
22287
|
export declare type SingleClassificationAction = io.flow.internal.v0.models.SingleClassificationAction;
|
|
22098
22288
|
export declare type SingleClassificationForm = io.flow.internal.v0.models.SingleClassificationForm;
|
|
22099
|
-
export declare type
|
|
22100
|
-
export declare type
|
|
22289
|
+
export declare type SmpTaxCalculation = io.flow.internal.v0.models.SmpTaxCalculation;
|
|
22290
|
+
export declare type SmpTaxCalculationForm = io.flow.internal.v0.models.SmpTaxCalculationForm;
|
|
22101
22291
|
export declare type SnapchatPixel = io.flow.internal.v0.models.SnapchatPixel;
|
|
22292
|
+
export declare type Snooze = io.flow.internal.v0.models.Snooze;
|
|
22293
|
+
export declare type SnoozeForm = io.flow.internal.v0.models.SnoozeForm;
|
|
22294
|
+
export declare type SnoozeNextActionWith = io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
22295
|
+
export declare type SnoozeSource = io.flow.internal.v0.models.SnoozeSource;
|
|
22296
|
+
export declare type SnoozeSourceType = io.flow.internal.v0.enums.SnoozeSourceType;
|
|
22102
22297
|
export declare type SpotRate = io.flow.internal.v0.models.SpotRate;
|
|
22103
22298
|
export declare type SpotRateDeleted = io.flow.internal.v0.models.SpotRateDeleted;
|
|
22104
22299
|
export declare type SpotRateMetadata = io.flow.internal.v0.unions.SpotRateMetadata;
|
package/dist/api.d.ts
CHANGED
|
@@ -1647,7 +1647,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1647
1647
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
1648
1648
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
1649
1649
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
1650
|
-
type AddressVerificationResultFieldCode = '
|
|
1650
|
+
type AddressVerificationResultFieldCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1651
1651
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
1652
1652
|
type Aggregate = 'maximum' | 'minimum';
|
|
1653
1653
|
type AttachmentType = 'csv';
|
|
@@ -1682,7 +1682,7 @@ declare namespace io.flow.v0.enums {
|
|
|
1682
1682
|
type CurrencySymbolFormat = 'narrow' | 'primary';
|
|
1683
1683
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
1684
1684
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1685
|
-
type CvvResultCode = '
|
|
1685
|
+
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1686
1686
|
type DayOfWeek = 'sunday' | 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday';
|
|
1687
1687
|
type DeliveredDuty = 'paid' | 'unpaid';
|
|
1688
1688
|
type DeliveredDutyDisplayType = 'all' | 'single';
|
|
@@ -1732,6 +1732,8 @@ declare namespace io.flow.v0.enums {
|
|
|
1732
1732
|
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
1733
1733
|
type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
|
|
1734
1734
|
type ItemIdentifier = 'item_number' | 'sku';
|
|
1735
|
+
type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'autogenerated';
|
|
1736
|
+
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
1735
1737
|
type LaneDirection = 'outbound' | 'return';
|
|
1736
1738
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
1737
1739
|
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
@@ -8563,11 +8565,16 @@ declare namespace io.flow.v0.models {
|
|
|
8563
8565
|
readonly id: string;
|
|
8564
8566
|
}
|
|
8565
8567
|
interface ServiceSummary {
|
|
8568
|
+
readonly discriminator: 'service_summary';
|
|
8566
8569
|
readonly id: string;
|
|
8567
8570
|
readonly carrier: io.flow.v0.models.CarrierReference;
|
|
8568
8571
|
readonly name: string;
|
|
8569
8572
|
readonly center_code?: string;
|
|
8570
8573
|
}
|
|
8574
|
+
interface ServiceUnknown {
|
|
8575
|
+
readonly discriminator: 'service_unknown';
|
|
8576
|
+
readonly name: string;
|
|
8577
|
+
}
|
|
8571
8578
|
interface SessionAuthorizationForm {
|
|
8572
8579
|
readonly session: string;
|
|
8573
8580
|
}
|
|
@@ -8774,6 +8781,8 @@ declare namespace io.flow.v0.models {
|
|
|
8774
8781
|
readonly order_identifier?: string;
|
|
8775
8782
|
readonly fulfillment_key?: string;
|
|
8776
8783
|
readonly shipment_recipient: io.flow.v0.enums.ShipmentRecipient;
|
|
8784
|
+
readonly label_request_method?: io.flow.v0.enums.LabelRequestMethod;
|
|
8785
|
+
readonly label_trigger_method?: io.flow.v0.enums.LabelTriggerMethod;
|
|
8777
8786
|
readonly created_at?: string;
|
|
8778
8787
|
readonly updated_at?: string;
|
|
8779
8788
|
}
|
|
@@ -8870,9 +8879,9 @@ declare namespace io.flow.v0.models {
|
|
|
8870
8879
|
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
8871
8880
|
readonly flow_tracking_number: string;
|
|
8872
8881
|
readonly origin: io.flow.v0.models.ShippingAddress;
|
|
8873
|
-
readonly package
|
|
8874
|
-
readonly service: io.flow.v0.
|
|
8875
|
-
readonly window
|
|
8882
|
+
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
8883
|
+
readonly service: io.flow.v0.unions.ServiceDescription;
|
|
8884
|
+
readonly window?: io.flow.v0.models.DatetimeRange;
|
|
8876
8885
|
readonly order?: io.flow.v0.models.LabelOrderSummary;
|
|
8877
8886
|
readonly order_identifier?: string;
|
|
8878
8887
|
readonly fulfillment_key?: string;
|
|
@@ -10150,6 +10159,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10150
10159
|
type ReservationError = io.flow.v0.models.NoInventoryReservationError | io.flow.v0.models.ExternalApiTimeoutReservationError | io.flow.v0.models.GenericReservationError;
|
|
10151
10160
|
type ReturnSource = io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor;
|
|
10152
10161
|
type SdkAdyenV3AuthenticationToken = io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken;
|
|
10162
|
+
type ServiceDescription = io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown;
|
|
10153
10163
|
type ServiceFee = io.flow.v0.models.FuelSurchargeServiceFee | io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee | io.flow.v0.models.RemoteAreaServiceFee | io.flow.v0.models.EmergencySituationSurchargeServiceFee | io.flow.v0.models.PeakSurchargeServiceFee | io.flow.v0.models.PeakSurchargeByWeightServiceFee | io.flow.v0.models.DutiesTaxesPaidSurchargeServiceFee;
|
|
10154
10164
|
type Session = io.flow.v0.models.OrganizationSession;
|
|
10155
10165
|
type SessionAuthorization = io.flow.v0.models.OrganizationSessionAuthorization;
|
|
@@ -10888,9 +10898,11 @@ export declare type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
|
|
|
10888
10898
|
export declare type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
|
|
10889
10899
|
export declare type LabelOrderSummary = io.flow.v0.models.LabelOrderSummary;
|
|
10890
10900
|
export declare type LabelReference = io.flow.v0.models.LabelReference;
|
|
10901
|
+
export declare type LabelRequestMethod = io.flow.v0.enums.LabelRequestMethod;
|
|
10891
10902
|
export declare type LabelTrackingCarrierService = io.flow.v0.models.LabelTrackingCarrierService;
|
|
10892
10903
|
export declare type LabelTrackingSummary = io.flow.v0.models.LabelTrackingSummary;
|
|
10893
10904
|
export declare type LabelTrackingSummaryUpdate = io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
10905
|
+
export declare type LabelTriggerMethod = io.flow.v0.enums.LabelTriggerMethod;
|
|
10894
10906
|
export declare type LabelUpserted = io.flow.v0.models.LabelUpserted;
|
|
10895
10907
|
export declare type LabelUpsertedV2 = io.flow.v0.models.LabelUpsertedV2;
|
|
10896
10908
|
export declare type LandedCostItem = io.flow.v0.models.LandedCostItem;
|
|
@@ -11508,9 +11520,11 @@ export declare type ScheduledExportForm = io.flow.v0.models.ScheduledExportForm;
|
|
|
11508
11520
|
export declare type ScheduledPickup = io.flow.v0.models.ScheduledPickup;
|
|
11509
11521
|
export declare type SdkAdyenV3AuthenticationToken = io.flow.v0.unions.SdkAdyenV3AuthenticationToken;
|
|
11510
11522
|
export declare type SelectIssuerOptionActionDetails = io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
11523
|
+
export declare type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
11511
11524
|
export declare type ServiceFee = io.flow.v0.unions.ServiceFee;
|
|
11512
11525
|
export declare type ServiceReference = io.flow.v0.models.ServiceReference;
|
|
11513
11526
|
export declare type ServiceSummary = io.flow.v0.models.ServiceSummary;
|
|
11527
|
+
export declare type ServiceUnknown = io.flow.v0.models.ServiceUnknown;
|
|
11514
11528
|
export declare type Session = io.flow.v0.unions.Session;
|
|
11515
11529
|
export declare type SessionAuthorization = io.flow.v0.unions.SessionAuthorization;
|
|
11516
11530
|
export declare type SessionAuthorizationForm = io.flow.v0.models.SessionAuthorizationForm;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.45",
|
|
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": "e212da9c13b98bb1daf825e26a2d10b45117d35f"
|
|
29
29
|
}
|
package/src/api-internal.ts
CHANGED
|
@@ -1819,7 +1819,7 @@ declare namespace io.flow.flexe.v0.models {
|
|
|
1819
1819
|
|
|
1820
1820
|
declare namespace io.flow.payment.v0.enums {
|
|
1821
1821
|
type AddressVerificationResultFieldCode =
|
|
1822
|
-
| '
|
|
1822
|
+
| 'matched'
|
|
1823
1823
|
| 'not_available'
|
|
1824
1824
|
| 'not_checked'
|
|
1825
1825
|
| 'not_matched';
|
|
@@ -1881,7 +1881,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1881
1881
|
| 'visa';
|
|
1882
1882
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1883
1883
|
type CvvResultCode =
|
|
1884
|
-
| '
|
|
1884
|
+
| 'matched'
|
|
1885
1885
|
| 'not_available'
|
|
1886
1886
|
| 'not_checked'
|
|
1887
1887
|
| 'not_matched';
|
|
@@ -3847,6 +3847,15 @@ declare namespace io.flow.customer.v0.models {
|
|
|
3847
3847
|
declare namespace io.flow.label.v0.enums {
|
|
3848
3848
|
type CostEstimateSource = 'flow' | 'channel';
|
|
3849
3849
|
type Direction = 'outbound' | 'return';
|
|
3850
|
+
type LabelRequestMethod =
|
|
3851
|
+
| 'flow_web_sync'
|
|
3852
|
+
| 'channel_web_async'
|
|
3853
|
+
| 'direct_api_sync'
|
|
3854
|
+
| 'direct_api_async'
|
|
3855
|
+
| 'bridge_api_sync'
|
|
3856
|
+
| 'partner_api_sync'
|
|
3857
|
+
| 'autogenerated';
|
|
3858
|
+
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
3850
3859
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
3851
3860
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
3852
3861
|
}
|
|
@@ -3942,6 +3951,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
3942
3951
|
readonly order_identifier?: string;
|
|
3943
3952
|
readonly fulfillment_key?: string;
|
|
3944
3953
|
readonly shipment_recipient: io.flow.label.v0.enums.ShipmentRecipient;
|
|
3954
|
+
readonly label_request_method?: io.flow.label.v0.enums.LabelRequestMethod;
|
|
3955
|
+
readonly label_trigger_method?: io.flow.label.v0.enums.LabelTriggerMethod;
|
|
3945
3956
|
readonly created_at?: string;
|
|
3946
3957
|
readonly updated_at?: string;
|
|
3947
3958
|
}
|
|
@@ -3997,9 +4008,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
3997
4008
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3998
4009
|
readonly flow_tracking_number: string;
|
|
3999
4010
|
readonly origin: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
4000
|
-
readonly package
|
|
4001
|
-
readonly service: io.flow.fulfillment.v0.
|
|
4002
|
-
readonly window
|
|
4011
|
+
readonly package?: io.flow.label.v0.models.ShippingLabelPackage;
|
|
4012
|
+
readonly service: io.flow.fulfillment.v0.unions.ServiceDescription;
|
|
4013
|
+
readonly window?: io.flow.common.v0.models.DatetimeRange;
|
|
4003
4014
|
readonly order?: io.flow.label.v0.models.LabelOrderSummary;
|
|
4004
4015
|
readonly order_identifier?: string;
|
|
4005
4016
|
readonly fulfillment_key?: string;
|
|
@@ -9886,6 +9897,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
9886
9897
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
9887
9898
|
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
9888
9899
|
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
9900
|
+
readonly ratecard_id?: string;
|
|
9889
9901
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
9890
9902
|
}
|
|
9891
9903
|
|
|
@@ -12405,12 +12417,18 @@ declare namespace io.flow.fulfillment.v0.models {
|
|
|
12405
12417
|
}
|
|
12406
12418
|
|
|
12407
12419
|
interface ServiceSummary {
|
|
12420
|
+
readonly discriminator: 'service_summary';
|
|
12408
12421
|
readonly id: string;
|
|
12409
12422
|
readonly carrier: io.flow.fulfillment.v0.models.CarrierReference;
|
|
12410
12423
|
readonly name: string;
|
|
12411
12424
|
readonly center_code?: string;
|
|
12412
12425
|
}
|
|
12413
12426
|
|
|
12427
|
+
interface ServiceUnknown {
|
|
12428
|
+
readonly discriminator: 'service_unknown';
|
|
12429
|
+
readonly name: string;
|
|
12430
|
+
}
|
|
12431
|
+
|
|
12414
12432
|
interface ShippingAddress {
|
|
12415
12433
|
readonly contact: io.flow.common.v0.models.Contact;
|
|
12416
12434
|
readonly location: io.flow.common.v0.models.Address;
|
|
@@ -12649,6 +12667,9 @@ declare namespace io.flow.fulfillment.v0.unions {
|
|
|
12649
12667
|
| io.flow.fulfillment.v0.models.CommercialInvoiceFee
|
|
12650
12668
|
| io.flow.fulfillment.v0.models.InboundCartonFee
|
|
12651
12669
|
| io.flow.fulfillment.v0.models.OutboundCartonFee;
|
|
12670
|
+
type ServiceDescription =
|
|
12671
|
+
| io.flow.fulfillment.v0.models.ServiceSummary
|
|
12672
|
+
| io.flow.fulfillment.v0.models.ServiceUnknown;
|
|
12652
12673
|
type TierRuleOutcome =
|
|
12653
12674
|
| io.flow.fulfillment.v0.models.AmountMargin
|
|
12654
12675
|
| io.flow.fulfillment.v0.models.AtCost
|
|
@@ -12843,6 +12864,82 @@ declare namespace io.flow.checkout.v0.unions {
|
|
|
12843
12864
|
| io.flow.checkout.v0.models.CheckoutTokenReferenceForm;
|
|
12844
12865
|
}
|
|
12845
12866
|
|
|
12867
|
+
declare namespace io.flow.organization.onboarding.state.v0.enums {
|
|
12868
|
+
type MerchantRejectedReason =
|
|
12869
|
+
| 'merchant_ubo_is_pep'
|
|
12870
|
+
| 'merchant_catalog_is_unsupportable'
|
|
12871
|
+
| 'merchant_failed_kyb_review';
|
|
12872
|
+
type OnboardingBlockedReason =
|
|
12873
|
+
| 'street_address_is_blank_3pl'
|
|
12874
|
+
| 'street_address_is_po_box_3pl'
|
|
12875
|
+
| 'business_street_address_is_blank'
|
|
12876
|
+
| 'business_street_address_is_po_box';
|
|
12877
|
+
}
|
|
12878
|
+
|
|
12879
|
+
declare namespace io.flow.organization.onboarding.state.v0.models {
|
|
12880
|
+
interface ActivationPutForm {
|
|
12881
|
+
readonly placeholder?: boolean;
|
|
12882
|
+
}
|
|
12883
|
+
|
|
12884
|
+
interface ApplicationReceived {
|
|
12885
|
+
readonly discriminator: 'application_received';
|
|
12886
|
+
readonly placeholder?: boolean;
|
|
12887
|
+
}
|
|
12888
|
+
|
|
12889
|
+
interface InComplianceReview {
|
|
12890
|
+
readonly discriminator: 'in_compliance_review';
|
|
12891
|
+
readonly placeholder?: boolean;
|
|
12892
|
+
}
|
|
12893
|
+
|
|
12894
|
+
interface MerchantActivated {
|
|
12895
|
+
readonly discriminator: 'merchant_activated';
|
|
12896
|
+
readonly placeholder?: boolean;
|
|
12897
|
+
}
|
|
12898
|
+
|
|
12899
|
+
interface MerchantRejected {
|
|
12900
|
+
readonly discriminator: 'merchant_rejected';
|
|
12901
|
+
readonly reason: io.flow.organization.onboarding.state.v0.enums.MerchantRejectedReason;
|
|
12902
|
+
readonly description?: string;
|
|
12903
|
+
}
|
|
12904
|
+
|
|
12905
|
+
interface OnboardingStateTransition {
|
|
12906
|
+
readonly state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
12907
|
+
readonly started_at: string;
|
|
12908
|
+
}
|
|
12909
|
+
|
|
12910
|
+
interface OrganizationOnboardingState {
|
|
12911
|
+
readonly organization: io.flow.common.v0.models.OrganizationReference;
|
|
12912
|
+
readonly transitions: io.flow.organization.onboarding.state.v0.models.OnboardingStateTransition[];
|
|
12913
|
+
readonly current_state: io.flow.organization.onboarding.state.v0.unions.OnboardingState;
|
|
12914
|
+
}
|
|
12915
|
+
|
|
12916
|
+
interface SetupBlocked {
|
|
12917
|
+
readonly discriminator: 'setup_blocked';
|
|
12918
|
+
readonly reasons: io.flow.organization.onboarding.state.v0.enums.OnboardingBlockedReason[];
|
|
12919
|
+
}
|
|
12920
|
+
|
|
12921
|
+
interface SetupCompleted {
|
|
12922
|
+
readonly discriminator: 'setup_completed';
|
|
12923
|
+
readonly placeholder?: boolean;
|
|
12924
|
+
}
|
|
12925
|
+
|
|
12926
|
+
interface SetupInProgress {
|
|
12927
|
+
readonly discriminator: 'setup_in_progress';
|
|
12928
|
+
readonly placeholder?: boolean;
|
|
12929
|
+
}
|
|
12930
|
+
}
|
|
12931
|
+
|
|
12932
|
+
declare namespace io.flow.organization.onboarding.state.v0.unions {
|
|
12933
|
+
type OnboardingState =
|
|
12934
|
+
| io.flow.organization.onboarding.state.v0.models.ApplicationReceived
|
|
12935
|
+
| io.flow.organization.onboarding.state.v0.models.InComplianceReview
|
|
12936
|
+
| io.flow.organization.onboarding.state.v0.models.SetupInProgress
|
|
12937
|
+
| io.flow.organization.onboarding.state.v0.models.MerchantRejected
|
|
12938
|
+
| io.flow.organization.onboarding.state.v0.models.SetupBlocked
|
|
12939
|
+
| io.flow.organization.onboarding.state.v0.models.SetupCompleted
|
|
12940
|
+
| io.flow.organization.onboarding.state.v0.models.MerchantActivated;
|
|
12941
|
+
}
|
|
12942
|
+
|
|
12846
12943
|
declare namespace io.flow.fraud.v0.enums {
|
|
12847
12944
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
12848
12945
|
type FraudLiability = 'flow' | 'organization';
|
|
@@ -13868,6 +13965,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
13868
13965
|
| 'shopify_experience_short_id_deleted'
|
|
13869
13966
|
| 'shopify_markets_order_upserted'
|
|
13870
13967
|
| 'shopify_markets_order_deleted'
|
|
13968
|
+
| 'shopify_monitoring_order_monitor_event_upserted'
|
|
13969
|
+
| 'shopify_monitoring_order_monitor_event_deleted'
|
|
13871
13970
|
| 'stripe_authorization_deleted'
|
|
13872
13971
|
| 'stripe_authorization_upserted'
|
|
13873
13972
|
| 'stripe_reversal_deleted'
|
|
@@ -14050,6 +14149,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14050
14149
|
| 'shopify_markets'
|
|
14051
14150
|
| 'integration_partner'
|
|
14052
14151
|
| 'dtce'
|
|
14152
|
+
| 'restrictions'
|
|
14053
14153
|
| 'miscellaneous';
|
|
14054
14154
|
type OnboardingAutomationProcessState =
|
|
14055
14155
|
| 'not_started'
|
|
@@ -14209,6 +14309,11 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14209
14309
|
| 'sports_and_fitness'
|
|
14210
14310
|
| 'toys_hobbies_gifts'
|
|
14211
14311
|
| 'other';
|
|
14312
|
+
type ShopifyMonitoringMonitorReviewStatus = 'in_review' | 'reviewed';
|
|
14313
|
+
type ShopifyMonitoringTrackingField =
|
|
14314
|
+
| 'tracking_number'
|
|
14315
|
+
| 'carrier_service'
|
|
14316
|
+
| 'tracking_url';
|
|
14212
14317
|
type ShopifyPromotionBehavior = 'disable_discount_codes';
|
|
14213
14318
|
type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
|
|
14214
14319
|
type ShopifyPromotionOrderEntitlementComponent =
|
|
@@ -14223,6 +14328,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
14223
14328
|
| 'end_and_revert'
|
|
14224
14329
|
| 'do_nothing';
|
|
14225
14330
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
14331
|
+
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
14332
|
+
type SnoozeSourceType = 'queued_capture' | 'queued_refund';
|
|
14226
14333
|
type StatementStatus =
|
|
14227
14334
|
| 'created'
|
|
14228
14335
|
| 'no_transactions'
|
|
@@ -14524,6 +14631,30 @@ declare namespace io.flow.internal.v0.models {
|
|
|
14524
14631
|
readonly percentage: number;
|
|
14525
14632
|
}
|
|
14526
14633
|
|
|
14634
|
+
interface AdjustmentDetailsAmountFixed {
|
|
14635
|
+
readonly amount: io.flow.common.v0.models.Money;
|
|
14636
|
+
}
|
|
14637
|
+
|
|
14638
|
+
interface AdjustmentDetailsAmountPercentage {
|
|
14639
|
+
readonly percentage: number;
|
|
14640
|
+
}
|
|
14641
|
+
|
|
14642
|
+
interface AdjustmentDetailsProcessingTransaction {
|
|
14643
|
+
readonly discriminator: 'processing_transaction';
|
|
14644
|
+
readonly withholdings?: io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionWithholding[];
|
|
14645
|
+
readonly fees?: io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionFee[];
|
|
14646
|
+
}
|
|
14647
|
+
|
|
14648
|
+
interface AdjustmentDetailsProcessingTransactionFee {
|
|
14649
|
+
readonly type: io.flow.billing.v0.enums.FeeDeductionType;
|
|
14650
|
+
readonly amount: io.flow.internal.v0.unions.AdjustmentAmount;
|
|
14651
|
+
}
|
|
14652
|
+
|
|
14653
|
+
interface AdjustmentDetailsProcessingTransactionWithholding {
|
|
14654
|
+
readonly type: io.flow.billing.v0.enums.WithholdingDeductionType;
|
|
14655
|
+
readonly amount: io.flow.internal.v0.unions.AdjustmentAmount;
|
|
14656
|
+
}
|
|
14657
|
+
|
|
14527
14658
|
interface AdyenAccount {
|
|
14528
14659
|
readonly discriminator: 'adyen_account';
|
|
14529
14660
|
readonly id: string;
|
|
@@ -18170,6 +18301,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18170
18301
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
18171
18302
|
readonly categories: string[];
|
|
18172
18303
|
readonly model_id?: string;
|
|
18304
|
+
readonly classified_by?: string;
|
|
18173
18305
|
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
18174
18306
|
readonly status?: io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
18175
18307
|
readonly suggested_action?: io.flow.internal.v0.enums.ItemClassificationAction;
|
|
@@ -22283,6 +22415,18 @@ declare namespace io.flow.internal.v0.models {
|
|
|
22283
22415
|
readonly lines: io.flow.internal.v0.models.OnboardingAuditReportLine[];
|
|
22284
22416
|
}
|
|
22285
22417
|
|
|
22418
|
+
interface OnboardingOrganization {
|
|
22419
|
+
readonly age: number;
|
|
22420
|
+
readonly compliance_approved: boolean;
|
|
22421
|
+
readonly compliance_full_review_required: boolean;
|
|
22422
|
+
readonly application_received: string;
|
|
22423
|
+
readonly legal_name: string;
|
|
22424
|
+
readonly shop_name: string;
|
|
22425
|
+
readonly organization_id: string;
|
|
22426
|
+
readonly onboarding_state: io.flow.organization.onboarding.state.v0.models.OrganizationOnboardingState;
|
|
22427
|
+
readonly gmv: number;
|
|
22428
|
+
}
|
|
22429
|
+
|
|
22286
22430
|
interface OneTimeTokenRedemptionForm {
|
|
22287
22431
|
readonly token: string;
|
|
22288
22432
|
}
|
|
@@ -23931,6 +24075,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
23931
24075
|
interface RestrictionOrganizationDecisionSummary {
|
|
23932
24076
|
readonly organization: io.flow.internal.v0.models.RestrictionOrganization;
|
|
23933
24077
|
readonly earliest_pending_date: string;
|
|
24078
|
+
readonly date: string;
|
|
23934
24079
|
readonly statuses: io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
23935
24080
|
readonly rules: io.flow.internal.v0.models.RestrictionRuleMetadata[];
|
|
23936
24081
|
readonly count: number;
|
|
@@ -24389,6 +24534,69 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24389
24534
|
readonly token: string;
|
|
24390
24535
|
}
|
|
24391
24536
|
|
|
24537
|
+
interface ShopifyMonitoringCarrierService {
|
|
24538
|
+
readonly service: string;
|
|
24539
|
+
}
|
|
24540
|
+
|
|
24541
|
+
interface ShopifyMonitoringFulfillmentExternal {
|
|
24542
|
+
readonly discriminator: 'fulfillment_external';
|
|
24543
|
+
readonly shopify_fulfillment_id: string;
|
|
24544
|
+
readonly flow_tracking_numbers: io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber[];
|
|
24545
|
+
readonly flow_carrier_service: io.flow.internal.v0.models.ShopifyMonitoringCarrierService[];
|
|
24546
|
+
readonly shopify_tracking_number: io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
24547
|
+
readonly shopify_carrier_service?: io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
24548
|
+
}
|
|
24549
|
+
|
|
24550
|
+
interface ShopifyMonitoringFulfillmentMissingDetails {
|
|
24551
|
+
readonly discriminator: 'fulfillment_missing_details';
|
|
24552
|
+
readonly shopify_fulfillment_id: string;
|
|
24553
|
+
readonly missing_details: io.flow.internal.v0.enums.ShopifyMonitoringTrackingField[];
|
|
24554
|
+
}
|
|
24555
|
+
|
|
24556
|
+
interface ShopifyMonitoringOrderMonitor {
|
|
24557
|
+
readonly id: string;
|
|
24558
|
+
readonly organization_reference: io.flow.common.v0.models.OrganizationReference;
|
|
24559
|
+
readonly order_number: string;
|
|
24560
|
+
readonly monitor: io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
24561
|
+
readonly created_at: string;
|
|
24562
|
+
}
|
|
24563
|
+
|
|
24564
|
+
interface ShopifyMonitoringOrderMonitorEventDeleted {
|
|
24565
|
+
readonly discriminator: 'shopify_monitoring_order_monitor_event_deleted';
|
|
24566
|
+
readonly event_id: string;
|
|
24567
|
+
readonly timestamp: string;
|
|
24568
|
+
readonly organization: string;
|
|
24569
|
+
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
24570
|
+
}
|
|
24571
|
+
|
|
24572
|
+
interface ShopifyMonitoringOrderMonitorEventUpserted {
|
|
24573
|
+
readonly discriminator: 'shopify_monitoring_order_monitor_event_upserted';
|
|
24574
|
+
readonly event_id: string;
|
|
24575
|
+
readonly timestamp: string;
|
|
24576
|
+
readonly organization: string;
|
|
24577
|
+
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
24578
|
+
}
|
|
24579
|
+
|
|
24580
|
+
interface ShopifyMonitoringOrderMonitorReview {
|
|
24581
|
+
readonly id: string;
|
|
24582
|
+
readonly order_monitor: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
24583
|
+
readonly order_details: io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
24584
|
+
readonly status: io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
24585
|
+
}
|
|
24586
|
+
|
|
24587
|
+
interface ShopifyMonitoringOrderMonitorReviewOrderDetails {
|
|
24588
|
+
readonly organization: string;
|
|
24589
|
+
readonly shopify_order: io.flow.shopify.markets.v0.models.ShopifyOrder;
|
|
24590
|
+
}
|
|
24591
|
+
|
|
24592
|
+
interface ShopifyMonitoringTrackingNumber {
|
|
24593
|
+
readonly number: string;
|
|
24594
|
+
}
|
|
24595
|
+
|
|
24596
|
+
interface ShopifyMonitoringTrackingUrl {
|
|
24597
|
+
readonly url: string;
|
|
24598
|
+
}
|
|
24599
|
+
|
|
24392
24600
|
interface ShopifyOrderAuthorization {
|
|
24393
24601
|
readonly result: io.flow.payment.v0.models.AuthorizationResult;
|
|
24394
24602
|
readonly detail?: io.flow.internal.v0.models.ShopifyOrderDetail;
|
|
@@ -24620,7 +24828,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24620
24828
|
readonly initial_customs_description?: string;
|
|
24621
24829
|
}
|
|
24622
24830
|
|
|
24623
|
-
interface
|
|
24831
|
+
interface SmpTaxCalculation {
|
|
24624
24832
|
readonly quote_reference: string;
|
|
24625
24833
|
readonly target_currency_code: string;
|
|
24626
24834
|
readonly total: number;
|
|
@@ -24631,7 +24839,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24631
24839
|
readonly customer_code?: string;
|
|
24632
24840
|
}
|
|
24633
24841
|
|
|
24634
|
-
interface
|
|
24842
|
+
interface SmpTaxCalculationForm {
|
|
24635
24843
|
readonly quote_reference: string;
|
|
24636
24844
|
readonly target_currency_code: string;
|
|
24637
24845
|
readonly destination: io.flow.common.v0.models.Address;
|
|
@@ -24647,6 +24855,27 @@ declare namespace io.flow.internal.v0.models {
|
|
|
24647
24855
|
readonly tracker_id: string;
|
|
24648
24856
|
}
|
|
24649
24857
|
|
|
24858
|
+
interface Snooze {
|
|
24859
|
+
readonly id: string;
|
|
24860
|
+
readonly until: string;
|
|
24861
|
+
readonly reason: string;
|
|
24862
|
+
readonly next_action_with: io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
24863
|
+
readonly source: io.flow.internal.v0.models.SnoozeSource;
|
|
24864
|
+
}
|
|
24865
|
+
|
|
24866
|
+
interface SnoozeForm {
|
|
24867
|
+
readonly until: string;
|
|
24868
|
+
readonly reason: string;
|
|
24869
|
+
readonly next_action_with: io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
24870
|
+
readonly source_type: io.flow.internal.v0.enums.SnoozeSourceType;
|
|
24871
|
+
readonly source_id: string;
|
|
24872
|
+
}
|
|
24873
|
+
|
|
24874
|
+
interface SnoozeSource {
|
|
24875
|
+
readonly type: io.flow.internal.v0.enums.SnoozeSourceType;
|
|
24876
|
+
readonly id: string;
|
|
24877
|
+
}
|
|
24878
|
+
|
|
24650
24879
|
interface SpotRate {
|
|
24651
24880
|
readonly id: string;
|
|
24652
24881
|
readonly effective_at: string;
|
|
@@ -25342,13 +25571,13 @@ declare namespace io.flow.internal.v0.models {
|
|
|
25342
25571
|
readonly original_transaction: io.flow.internal.v0.models.ProcessingTransactionReference;
|
|
25343
25572
|
readonly adjustment_transaction: io.flow.internal.v0.models.ProcessingTransactionReference;
|
|
25344
25573
|
readonly description: string;
|
|
25345
|
-
readonly
|
|
25574
|
+
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
25346
25575
|
}
|
|
25347
25576
|
|
|
25348
25577
|
interface TransactionAdjustmentForm {
|
|
25349
25578
|
readonly original_transaction_id: string;
|
|
25350
25579
|
readonly description: string;
|
|
25351
|
-
readonly
|
|
25580
|
+
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
25352
25581
|
}
|
|
25353
25582
|
|
|
25354
25583
|
interface TransactionReference {
|
|
@@ -25650,6 +25879,10 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
25650
25879
|
type AdjustmentAmount =
|
|
25651
25880
|
| io.flow.internal.v0.models.AdjustmentAmountPercentage
|
|
25652
25881
|
| io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
25882
|
+
type AdjustmentDetails =
|
|
25883
|
+
| io.flow.internal.v0.models.AdjustmentAmountPercentage
|
|
25884
|
+
| io.flow.internal.v0.models.AdjustmentAmountFixed
|
|
25885
|
+
| io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
25653
25886
|
type AuthorizationPayload =
|
|
25654
25887
|
| io.flow.internal.v0.models.ApplePayAuthorizationPayload
|
|
25655
25888
|
| io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
@@ -26331,6 +26564,8 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26331
26564
|
| io.flow.internal.v0.models.ShopifyExperienceShortIdDeleted
|
|
26332
26565
|
| io.flow.internal.v0.models.ShopifyMarketsOrderUpserted
|
|
26333
26566
|
| io.flow.internal.v0.models.ShopifyMarketsOrderDeleted
|
|
26567
|
+
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted
|
|
26568
|
+
| io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted
|
|
26334
26569
|
| io.flow.internal.v0.models.StripeAuthorizationDeleted
|
|
26335
26570
|
| io.flow.internal.v0.models.StripeAuthorizationUpserted
|
|
26336
26571
|
| io.flow.internal.v0.models.StripeReversalDeleted
|
|
@@ -26543,6 +26778,9 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
26543
26778
|
| io.flow.internal.v0.models.RoutingProcessor
|
|
26544
26779
|
| io.flow.internal.v0.models.RoutingAccount
|
|
26545
26780
|
| io.flow.internal.v0.models.RoutingMerchant;
|
|
26781
|
+
type ShopifyMonitoringOrderMonitorType =
|
|
26782
|
+
| io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal
|
|
26783
|
+
| io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
26546
26784
|
type ShopifyPromotionOfferDiscount =
|
|
26547
26785
|
| io.flow.internal.v0.models.ShopifyPromotionFixedAmount
|
|
26548
26786
|
| io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
@@ -26661,6 +26899,17 @@ export type AdjustmentAmountFixed =
|
|
|
26661
26899
|
io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
26662
26900
|
export type AdjustmentAmountPercentage =
|
|
26663
26901
|
io.flow.internal.v0.models.AdjustmentAmountPercentage;
|
|
26902
|
+
export type AdjustmentDetails = io.flow.internal.v0.unions.AdjustmentDetails;
|
|
26903
|
+
export type AdjustmentDetailsAmountFixed =
|
|
26904
|
+
io.flow.internal.v0.models.AdjustmentDetailsAmountFixed;
|
|
26905
|
+
export type AdjustmentDetailsAmountPercentage =
|
|
26906
|
+
io.flow.internal.v0.models.AdjustmentDetailsAmountPercentage;
|
|
26907
|
+
export type AdjustmentDetailsProcessingTransaction =
|
|
26908
|
+
io.flow.internal.v0.models.AdjustmentDetailsProcessingTransaction;
|
|
26909
|
+
export type AdjustmentDetailsProcessingTransactionFee =
|
|
26910
|
+
io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionFee;
|
|
26911
|
+
export type AdjustmentDetailsProcessingTransactionWithholding =
|
|
26912
|
+
io.flow.internal.v0.models.AdjustmentDetailsProcessingTransactionWithholding;
|
|
26664
26913
|
export type AdyenAccount = io.flow.internal.v0.models.AdyenAccount;
|
|
26665
26914
|
export type AdyenAccountModificationForm =
|
|
26666
26915
|
io.flow.internal.v0.models.AdyenAccountModificationForm;
|
|
@@ -29144,6 +29393,8 @@ export type OnboardingAutomationProcessState =
|
|
|
29144
29393
|
io.flow.internal.v0.enums.OnboardingAutomationProcessState;
|
|
29145
29394
|
export type OnboardingAutomationTaskState =
|
|
29146
29395
|
io.flow.internal.v0.enums.OnboardingAutomationTaskState;
|
|
29396
|
+
export type OnboardingOrganization =
|
|
29397
|
+
io.flow.internal.v0.models.OnboardingOrganization;
|
|
29147
29398
|
export type OneTimeTokenRedemptionForm =
|
|
29148
29399
|
io.flow.internal.v0.models.OneTimeTokenRedemptionForm;
|
|
29149
29400
|
export type OnlineAuthorizationCompleted =
|
|
@@ -29715,6 +29966,32 @@ export type ShopifyMarketsTradeSector =
|
|
|
29715
29966
|
export type ShopifyMarketsWebhookRegistration =
|
|
29716
29967
|
io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
29717
29968
|
export type ShopifyMetadata = io.flow.internal.v0.models.ShopifyMetadata;
|
|
29969
|
+
export type ShopifyMonitoringCarrierService =
|
|
29970
|
+
io.flow.internal.v0.models.ShopifyMonitoringCarrierService;
|
|
29971
|
+
export type ShopifyMonitoringFulfillmentExternal =
|
|
29972
|
+
io.flow.internal.v0.models.ShopifyMonitoringFulfillmentExternal;
|
|
29973
|
+
export type ShopifyMonitoringFulfillmentMissingDetails =
|
|
29974
|
+
io.flow.internal.v0.models.ShopifyMonitoringFulfillmentMissingDetails;
|
|
29975
|
+
export type ShopifyMonitoringMonitorReviewStatus =
|
|
29976
|
+
io.flow.internal.v0.enums.ShopifyMonitoringMonitorReviewStatus;
|
|
29977
|
+
export type ShopifyMonitoringOrderMonitor =
|
|
29978
|
+
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitor;
|
|
29979
|
+
export type ShopifyMonitoringOrderMonitorEventDeleted =
|
|
29980
|
+
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventDeleted;
|
|
29981
|
+
export type ShopifyMonitoringOrderMonitorEventUpserted =
|
|
29982
|
+
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorEventUpserted;
|
|
29983
|
+
export type ShopifyMonitoringOrderMonitorReview =
|
|
29984
|
+
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReview;
|
|
29985
|
+
export type ShopifyMonitoringOrderMonitorReviewOrderDetails =
|
|
29986
|
+
io.flow.internal.v0.models.ShopifyMonitoringOrderMonitorReviewOrderDetails;
|
|
29987
|
+
export type ShopifyMonitoringOrderMonitorType =
|
|
29988
|
+
io.flow.internal.v0.unions.ShopifyMonitoringOrderMonitorType;
|
|
29989
|
+
export type ShopifyMonitoringTrackingField =
|
|
29990
|
+
io.flow.internal.v0.enums.ShopifyMonitoringTrackingField;
|
|
29991
|
+
export type ShopifyMonitoringTrackingNumber =
|
|
29992
|
+
io.flow.internal.v0.models.ShopifyMonitoringTrackingNumber;
|
|
29993
|
+
export type ShopifyMonitoringTrackingUrl =
|
|
29994
|
+
io.flow.internal.v0.models.ShopifyMonitoringTrackingUrl;
|
|
29718
29995
|
export type ShopifyOrderAuthorization =
|
|
29719
29996
|
io.flow.internal.v0.models.ShopifyOrderAuthorization;
|
|
29720
29997
|
export type ShopifyOrderCancelForm =
|
|
@@ -29805,10 +30082,16 @@ export type SingleClassificationAction =
|
|
|
29805
30082
|
io.flow.internal.v0.models.SingleClassificationAction;
|
|
29806
30083
|
export type SingleClassificationForm =
|
|
29807
30084
|
io.flow.internal.v0.models.SingleClassificationForm;
|
|
29808
|
-
export type
|
|
29809
|
-
export type
|
|
29810
|
-
io.flow.internal.v0.models.
|
|
30085
|
+
export type SmpTaxCalculation = io.flow.internal.v0.models.SmpTaxCalculation;
|
|
30086
|
+
export type SmpTaxCalculationForm =
|
|
30087
|
+
io.flow.internal.v0.models.SmpTaxCalculationForm;
|
|
29811
30088
|
export type SnapchatPixel = io.flow.internal.v0.models.SnapchatPixel;
|
|
30089
|
+
export type Snooze = io.flow.internal.v0.models.Snooze;
|
|
30090
|
+
export type SnoozeForm = io.flow.internal.v0.models.SnoozeForm;
|
|
30091
|
+
export type SnoozeNextActionWith =
|
|
30092
|
+
io.flow.internal.v0.enums.SnoozeNextActionWith;
|
|
30093
|
+
export type SnoozeSource = io.flow.internal.v0.models.SnoozeSource;
|
|
30094
|
+
export type SnoozeSourceType = io.flow.internal.v0.enums.SnoozeSourceType;
|
|
29812
30095
|
export type SpotRate = io.flow.internal.v0.models.SpotRate;
|
|
29813
30096
|
export type SpotRateDeleted = io.flow.internal.v0.models.SpotRateDeleted;
|
|
29814
30097
|
export type SpotRateMetadata = io.flow.internal.v0.unions.SpotRateMetadata;
|
package/src/api.ts
CHANGED
|
@@ -2106,7 +2106,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2106
2106
|
| 'company'
|
|
2107
2107
|
| 'vat_registration_number';
|
|
2108
2108
|
type AddressVerificationResultFieldCode =
|
|
2109
|
-
| '
|
|
2109
|
+
| 'matched'
|
|
2110
2110
|
| 'not_available'
|
|
2111
2111
|
| 'not_checked'
|
|
2112
2112
|
| 'not_matched';
|
|
@@ -2251,7 +2251,7 @@ declare namespace io.flow.v0.enums {
|
|
|
2251
2251
|
type CustomerAddressType = 'billing' | 'invoice' | 'shipping';
|
|
2252
2252
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
2253
2253
|
type CvvResultCode =
|
|
2254
|
-
| '
|
|
2254
|
+
| 'matched'
|
|
2255
2255
|
| 'not_available'
|
|
2256
2256
|
| 'not_checked'
|
|
2257
2257
|
| 'not_matched';
|
|
@@ -2572,6 +2572,15 @@ declare namespace io.flow.v0.enums {
|
|
|
2572
2572
|
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
2573
2573
|
type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
|
|
2574
2574
|
type ItemIdentifier = 'item_number' | 'sku';
|
|
2575
|
+
type LabelRequestMethod =
|
|
2576
|
+
| 'flow_web_sync'
|
|
2577
|
+
| 'channel_web_async'
|
|
2578
|
+
| 'direct_api_sync'
|
|
2579
|
+
| 'direct_api_async'
|
|
2580
|
+
| 'bridge_api_sync'
|
|
2581
|
+
| 'partner_api_sync'
|
|
2582
|
+
| 'autogenerated';
|
|
2583
|
+
type LabelTriggerMethod = 'autogenerated' | 'on_demand';
|
|
2575
2584
|
type LaneDirection = 'outbound' | 'return';
|
|
2576
2585
|
type LanePreselectPreference = 'lowest_cost' | 'default_tier';
|
|
2577
2586
|
type LaneStrategy = 'oldest' | 'fastest' | 'lowest_cost' | 'highest_priority';
|
|
@@ -10883,12 +10892,18 @@ declare namespace io.flow.v0.models {
|
|
|
10883
10892
|
}
|
|
10884
10893
|
|
|
10885
10894
|
interface ServiceSummary {
|
|
10895
|
+
readonly discriminator: 'service_summary';
|
|
10886
10896
|
readonly id: string;
|
|
10887
10897
|
readonly carrier: io.flow.v0.models.CarrierReference;
|
|
10888
10898
|
readonly name: string;
|
|
10889
10899
|
readonly center_code?: string;
|
|
10890
10900
|
}
|
|
10891
10901
|
|
|
10902
|
+
interface ServiceUnknown {
|
|
10903
|
+
readonly discriminator: 'service_unknown';
|
|
10904
|
+
readonly name: string;
|
|
10905
|
+
}
|
|
10906
|
+
|
|
10892
10907
|
interface SessionAuthorizationForm {
|
|
10893
10908
|
readonly session: string;
|
|
10894
10909
|
}
|
|
@@ -11131,6 +11146,8 @@ declare namespace io.flow.v0.models {
|
|
|
11131
11146
|
readonly order_identifier?: string;
|
|
11132
11147
|
readonly fulfillment_key?: string;
|
|
11133
11148
|
readonly shipment_recipient: io.flow.v0.enums.ShipmentRecipient;
|
|
11149
|
+
readonly label_request_method?: io.flow.v0.enums.LabelRequestMethod;
|
|
11150
|
+
readonly label_trigger_method?: io.flow.v0.enums.LabelTriggerMethod;
|
|
11134
11151
|
readonly created_at?: string;
|
|
11135
11152
|
readonly updated_at?: string;
|
|
11136
11153
|
}
|
|
@@ -11243,9 +11260,9 @@ declare namespace io.flow.v0.models {
|
|
|
11243
11260
|
readonly destination: io.flow.v0.models.ShippingAddress;
|
|
11244
11261
|
readonly flow_tracking_number: string;
|
|
11245
11262
|
readonly origin: io.flow.v0.models.ShippingAddress;
|
|
11246
|
-
readonly package
|
|
11247
|
-
readonly service: io.flow.v0.
|
|
11248
|
-
readonly window
|
|
11263
|
+
readonly package?: io.flow.v0.models.ShippingLabelPackage;
|
|
11264
|
+
readonly service: io.flow.v0.unions.ServiceDescription;
|
|
11265
|
+
readonly window?: io.flow.v0.models.DatetimeRange;
|
|
11249
11266
|
readonly order?: io.flow.v0.models.LabelOrderSummary;
|
|
11250
11267
|
readonly order_identifier?: string;
|
|
11251
11268
|
readonly fulfillment_key?: string;
|
|
@@ -13115,6 +13132,9 @@ declare namespace io.flow.v0.unions {
|
|
|
13115
13132
|
type SdkAdyenV3AuthenticationToken =
|
|
13116
13133
|
| io.flow.v0.models.AdyenV3FingerprintToken
|
|
13117
13134
|
| io.flow.v0.models.AdyenV3ChallengeToken;
|
|
13135
|
+
type ServiceDescription =
|
|
13136
|
+
| io.flow.v0.models.ServiceSummary
|
|
13137
|
+
| io.flow.v0.models.ServiceUnknown;
|
|
13118
13138
|
type ServiceFee =
|
|
13119
13139
|
| io.flow.v0.models.FuelSurchargeServiceFee
|
|
13120
13140
|
| io.flow.v0.models.FuelSurchargeAmountByWeightServiceFee
|
|
@@ -14084,11 +14104,13 @@ export type LabelFormatDeleted = io.flow.v0.models.LabelFormatDeleted;
|
|
|
14084
14104
|
export type LabelFormatUpserted = io.flow.v0.models.LabelFormatUpserted;
|
|
14085
14105
|
export type LabelOrderSummary = io.flow.v0.models.LabelOrderSummary;
|
|
14086
14106
|
export type LabelReference = io.flow.v0.models.LabelReference;
|
|
14107
|
+
export type LabelRequestMethod = io.flow.v0.enums.LabelRequestMethod;
|
|
14087
14108
|
export type LabelTrackingCarrierService =
|
|
14088
14109
|
io.flow.v0.models.LabelTrackingCarrierService;
|
|
14089
14110
|
export type LabelTrackingSummary = io.flow.v0.models.LabelTrackingSummary;
|
|
14090
14111
|
export type LabelTrackingSummaryUpdate =
|
|
14091
14112
|
io.flow.v0.models.LabelTrackingSummaryUpdate;
|
|
14113
|
+
export type LabelTriggerMethod = io.flow.v0.enums.LabelTriggerMethod;
|
|
14092
14114
|
export type LabelUpserted = io.flow.v0.models.LabelUpserted;
|
|
14093
14115
|
export type LabelUpsertedV2 = io.flow.v0.models.LabelUpsertedV2;
|
|
14094
14116
|
export type LandedCostItem = io.flow.v0.models.LandedCostItem;
|
|
@@ -14861,9 +14883,11 @@ export type SdkAdyenV3AuthenticationToken =
|
|
|
14861
14883
|
io.flow.v0.unions.SdkAdyenV3AuthenticationToken;
|
|
14862
14884
|
export type SelectIssuerOptionActionDetails =
|
|
14863
14885
|
io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
14886
|
+
export type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
14864
14887
|
export type ServiceFee = io.flow.v0.unions.ServiceFee;
|
|
14865
14888
|
export type ServiceReference = io.flow.v0.models.ServiceReference;
|
|
14866
14889
|
export type ServiceSummary = io.flow.v0.models.ServiceSummary;
|
|
14890
|
+
export type ServiceUnknown = io.flow.v0.models.ServiceUnknown;
|
|
14867
14891
|
export type Session = io.flow.v0.unions.Session;
|
|
14868
14892
|
export type SessionAuthorization = io.flow.v0.unions.SessionAuthorization;
|
|
14869
14893
|
export type SessionAuthorizationForm =
|