@flowio/types 11.24.43 → 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 +244 -23
- package/dist/api.d.ts +48 -3
- package/package.json +2 -2
- package/src/api-internal.ts +345 -23
- package/src/api.ts +73 -3
package/dist/api-internal.d.ts
CHANGED
|
@@ -1385,6 +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 = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1388
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';
|
|
1389
1390
|
type AuthorizationOption = 'store_card';
|
|
1390
1391
|
type AuthorizationResultActionType = 'native' | 'redirect' | 'wait';
|
|
@@ -1395,6 +1396,7 @@ declare namespace io.flow.payment.v0.enums {
|
|
|
1395
1396
|
type CardErrorCode = 'invalid_address' | 'invalid_currency' | 'invalid_name' | 'invalid_number' | 'invalid_expiration' | 'invalid_token_type' | 'avs' | 'cvv' | 'fraud' | 'unknown';
|
|
1396
1397
|
type CardType = 'american_express' | 'cartes_bancaires' | 'china_union_pay' | 'dankort' | 'diners_club' | 'discover' | 'jcb' | 'maestro' | 'mastercard' | 'visa';
|
|
1397
1398
|
type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
|
|
1399
|
+
type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
1398
1400
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
1399
1401
|
type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
|
|
1400
1402
|
type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
|
|
@@ -1419,6 +1421,12 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1419
1421
|
readonly attributes?: Record<string, string>;
|
|
1420
1422
|
readonly ip?: string;
|
|
1421
1423
|
}
|
|
1424
|
+
interface AddressVerificationResult {
|
|
1425
|
+
readonly street_code: io.flow.payment.v0.enums.AddressVerificationResultFieldCode;
|
|
1426
|
+
readonly postal_code: io.flow.payment.v0.enums.AddressVerificationResultFieldCode;
|
|
1427
|
+
readonly name_code: io.flow.payment.v0.enums.AddressVerificationResultFieldCode;
|
|
1428
|
+
readonly raw?: string;
|
|
1429
|
+
}
|
|
1422
1430
|
interface AdyenChallengeShopperData {
|
|
1423
1431
|
readonly discriminator: 'adyen_challenge_shopper_data';
|
|
1424
1432
|
readonly challenge_token: string;
|
|
@@ -1695,6 +1703,10 @@ declare namespace io.flow.payment.v0.models {
|
|
|
1695
1703
|
readonly code: io.flow.payment.v0.enums.CvvCode;
|
|
1696
1704
|
readonly description?: string;
|
|
1697
1705
|
}
|
|
1706
|
+
interface CvvResult {
|
|
1707
|
+
readonly code: io.flow.payment.v0.enums.CvvResultCode;
|
|
1708
|
+
readonly raw?: string;
|
|
1709
|
+
}
|
|
1698
1710
|
interface DirectAuthorizationForm {
|
|
1699
1711
|
readonly discriminator: 'direct_authorization_form';
|
|
1700
1712
|
readonly token: string;
|
|
@@ -2088,6 +2100,15 @@ declare namespace io.flow.payment.v0.models {
|
|
|
2088
2100
|
readonly discriminator: 'threeds_two_method';
|
|
2089
2101
|
readonly method: string;
|
|
2090
2102
|
}
|
|
2103
|
+
interface TransactionDetailsCard {
|
|
2104
|
+
readonly address_verification_result?: io.flow.payment.v0.models.AddressVerificationResult;
|
|
2105
|
+
readonly cvv_result?: io.flow.payment.v0.models.CvvResult;
|
|
2106
|
+
readonly network_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
2107
|
+
}
|
|
2108
|
+
interface TransactionNetworkDetailsCard {
|
|
2109
|
+
readonly network_transaction_id?: string;
|
|
2110
|
+
readonly network?: io.flow.payment.v0.enums.CardType;
|
|
2111
|
+
}
|
|
2091
2112
|
interface VirtualCard {
|
|
2092
2113
|
readonly id: string;
|
|
2093
2114
|
readonly key: string;
|
|
@@ -2922,6 +2943,8 @@ declare namespace io.flow.customer.v0.models {
|
|
|
2922
2943
|
declare namespace io.flow.label.v0.enums {
|
|
2923
2944
|
type CostEstimateSource = 'flow' | 'channel';
|
|
2924
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';
|
|
2925
2948
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
2926
2949
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
2927
2950
|
}
|
|
@@ -3007,6 +3030,8 @@ declare namespace io.flow.label.v0.models {
|
|
|
3007
3030
|
readonly order_identifier?: string;
|
|
3008
3031
|
readonly fulfillment_key?: string;
|
|
3009
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;
|
|
3010
3035
|
readonly created_at?: string;
|
|
3011
3036
|
readonly updated_at?: string;
|
|
3012
3037
|
}
|
|
@@ -3054,9 +3079,9 @@ declare namespace io.flow.label.v0.models {
|
|
|
3054
3079
|
readonly destination: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3055
3080
|
readonly flow_tracking_number: string;
|
|
3056
3081
|
readonly origin: io.flow.fulfillment.v0.models.ShippingAddress;
|
|
3057
|
-
readonly package
|
|
3058
|
-
readonly service: io.flow.fulfillment.v0.
|
|
3059
|
-
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;
|
|
3060
3085
|
readonly order?: io.flow.label.v0.models.LabelOrderSummary;
|
|
3061
3086
|
readonly order_identifier?: string;
|
|
3062
3087
|
readonly fulfillment_key?: string;
|
|
@@ -6017,6 +6042,8 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6017
6042
|
readonly card_data: io.flow.payment.gateway.v0.unions.PaymentMethodCard;
|
|
6018
6043
|
readonly device_fingerprint_details: io.flow.payment.gateway.v0.unions.DeviceFingerprintDetails;
|
|
6019
6044
|
readonly cvv?: string;
|
|
6045
|
+
readonly reference?: string;
|
|
6046
|
+
readonly previous_transaction_details?: io.flow.payment.v0.models.TransactionNetworkDetailsCard;
|
|
6020
6047
|
}
|
|
6021
6048
|
interface PaymentMethodDataAuthorizeGooglepay {
|
|
6022
6049
|
readonly type: 'authorize_googlepay';
|
|
@@ -6110,6 +6137,8 @@ declare namespace io.flow.payment.gateway.v0.models {
|
|
|
6110
6137
|
readonly last_four: string;
|
|
6111
6138
|
readonly card_type: io.flow.payment.v0.enums.CardType;
|
|
6112
6139
|
readonly id: string;
|
|
6140
|
+
readonly reference?: string;
|
|
6141
|
+
readonly transaction_details?: io.flow.payment.v0.models.TransactionDetailsCard;
|
|
6113
6142
|
}
|
|
6114
6143
|
interface PaymentMethodSummaryGooglepay {
|
|
6115
6144
|
readonly type: 'googlepay';
|
|
@@ -7478,6 +7507,7 @@ declare namespace io.flow.ratecard.v0.models {
|
|
|
7478
7507
|
readonly delivered_duty: io.flow.common.v0.enums.DeliveredDuty;
|
|
7479
7508
|
readonly dimensional_weight?: io.flow.common.v0.models.Measurement;
|
|
7480
7509
|
readonly gravitational_weight?: io.flow.common.v0.models.Measurement;
|
|
7510
|
+
readonly ratecard_id?: string;
|
|
7481
7511
|
readonly line_items?: io.flow.common.v0.models.LineItemForm[];
|
|
7482
7512
|
}
|
|
7483
7513
|
interface RatecardForm {
|
|
@@ -9447,11 +9477,16 @@ declare namespace io.flow.fulfillment.v0.models {
|
|
|
9447
9477
|
readonly id: string;
|
|
9448
9478
|
}
|
|
9449
9479
|
interface ServiceSummary {
|
|
9480
|
+
readonly discriminator: 'service_summary';
|
|
9450
9481
|
readonly id: string;
|
|
9451
9482
|
readonly carrier: io.flow.fulfillment.v0.models.CarrierReference;
|
|
9452
9483
|
readonly name: string;
|
|
9453
9484
|
readonly center_code?: string;
|
|
9454
9485
|
}
|
|
9486
|
+
interface ServiceUnknown {
|
|
9487
|
+
readonly discriminator: 'service_unknown';
|
|
9488
|
+
readonly name: string;
|
|
9489
|
+
}
|
|
9455
9490
|
interface ShippingAddress {
|
|
9456
9491
|
readonly contact: io.flow.common.v0.models.Contact;
|
|
9457
9492
|
readonly location: io.flow.common.v0.models.Address;
|
|
@@ -9651,6 +9686,7 @@ declare namespace io.flow.fulfillment.v0.unions {
|
|
|
9651
9686
|
type Delivery = io.flow.fulfillment.v0.models.DigitalDelivery | io.flow.fulfillment.v0.models.PhysicalDelivery;
|
|
9652
9687
|
type ExpandableCenter = io.flow.fulfillment.v0.models.Center | io.flow.fulfillment.v0.models.CenterReference;
|
|
9653
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;
|
|
9654
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;
|
|
9655
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;
|
|
9656
9692
|
}
|
|
@@ -9795,6 +9831,56 @@ declare namespace io.flow.checkout.v0.models {
|
|
|
9795
9831
|
declare namespace io.flow.checkout.v0.unions {
|
|
9796
9832
|
type CheckoutTokenForm = io.flow.checkout.v0.models.CheckoutTokenOrderForm | io.flow.checkout.v0.models.CheckoutTokenReferenceForm;
|
|
9797
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
|
+
}
|
|
9798
9884
|
declare namespace io.flow.fraud.v0.enums {
|
|
9799
9885
|
type FraudEmailRuleDecision = 'approved' | 'declined';
|
|
9800
9886
|
type FraudLiability = 'flow' | 'organization';
|
|
@@ -10074,6 +10160,7 @@ declare namespace io.flow.billing.bank.account.v0.unions {
|
|
|
10074
10160
|
type BankAccountInfo = io.flow.billing.bank.account.v0.models.BankAccountInfoUsa;
|
|
10075
10161
|
}
|
|
10076
10162
|
declare namespace io.flow.internal.v0.enums {
|
|
10163
|
+
type AccountSettingLiabilitiesMethod = 'withholding' | 'transaction';
|
|
10077
10164
|
type AccountType = 'channel' | 'organization';
|
|
10078
10165
|
type AddressConfigurationSettingProvinceCode = 'iso_3166_2' | 'name';
|
|
10079
10166
|
type AdyenIntegrationType = 'hosted_payment_page' | 'checkout_payments_api' | 'classic_authorise_api';
|
|
@@ -10196,7 +10283,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10196
10283
|
type DutySelectionRule = 'lookup_by_tariff_code' | 'lookup_by_hs6_code' | 'fallback_for_jurisdiction' | 'domestic_sale' | 'intra_community_sale' | 'reimport' | 'override' | 'preferential_rate';
|
|
10197
10284
|
type DutySimpleExpressionType = 'free' | 'percent' | 'per_uom' | 'flat';
|
|
10198
10285
|
type EmptyAttribute = 'irrelevant';
|
|
10199
|
-
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';
|
|
10200
10287
|
type ExperienceImportType = 'experience_with_settings';
|
|
10201
10288
|
type ExperienceOrderAction = 'submit' | 'refund_gift_cards';
|
|
10202
10289
|
type ExperienceOrderActionTrigger = 'zero_balance' | 'unsubmitted_order';
|
|
@@ -10229,7 +10316,6 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10229
10316
|
type LabelCancellationErrorCode = 'already_used' | 'carrier_unsupported';
|
|
10230
10317
|
type LabelCreationStatus = 'success' | 'error' | 'pending' | 'cancelled';
|
|
10231
10318
|
type LabelTransactionType = 'adjustment' | 'billable_label' | 'fee' | 'revenue_share';
|
|
10232
|
-
type LiabilitiesMethod = 'withholding' | 'transaction';
|
|
10233
10319
|
type LiabilityType = 'full_value_tax' | 'low_value_goods_tax' | 'high_value_goods_tax' | 'duties';
|
|
10234
10320
|
type MainTransactionStatus = 'scheduled' | 'pending_proof';
|
|
10235
10321
|
type ManualReviewRuleStatus = 'active' | 'archived';
|
|
@@ -10248,7 +10334,7 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10248
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';
|
|
10249
10335
|
type OnboardingAuditMessageLevel = 'info' | 'warning' | 'error';
|
|
10250
10336
|
type OnboardingAuditResult = 'pass' | 'warning' | 'fail';
|
|
10251
|
-
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';
|
|
10252
10338
|
type OnboardingAutomationProcessState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10253
10339
|
type OnboardingAutomationTaskState = 'not_started' | 'in_progress' | 'success' | 'failed';
|
|
10254
10340
|
type OrderAction = 'consumer_submit' | 'fraud_review_accept' | 'fraud_review_decline' | 'payment_fully_authorize' | 'payment_fully_capture';
|
|
@@ -10299,6 +10385,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10299
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';
|
|
10300
10386
|
type ShopifyMarketsHtsNumberAvailable = 'yes' | 'no' | 'i_dont_know';
|
|
10301
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';
|
|
10302
10390
|
type ShopifyPromotionBehavior = 'disable_discount_codes';
|
|
10303
10391
|
type ShopifyPromotionOfferAllocationMethod = 'each' | 'across';
|
|
10304
10392
|
type ShopifyPromotionOrderEntitlementComponent = 'subtotal' | 'shipping' | 'vat' | 'duty';
|
|
@@ -10306,6 +10394,8 @@ declare namespace io.flow.internal.v0.enums {
|
|
|
10306
10394
|
type ShopifyService = 'payment' | 'duty_tax_calculator';
|
|
10307
10395
|
type SignificanceAction = 'end_and_implement_winner' | 'end_and_revert' | 'do_nothing';
|
|
10308
10396
|
type SimpleRoundingStrategy = 'no_rounding' | 'currency_precision';
|
|
10397
|
+
type SnoozeNextActionWith = 'customer_service' | 'engineering';
|
|
10398
|
+
type SnoozeSourceType = 'queued_capture' | 'queued_refund';
|
|
10309
10399
|
type StatementStatus = 'created' | 'no_transactions' | 'transactions_assigned' | 'statement_generated' | 'statement_regenerated' | 'failed';
|
|
10310
10400
|
type StatementTransferTransactionLocation = 'transactions_file' | 'summary';
|
|
10311
10401
|
type StatisticType = 'time-to-classify' | 'time-to-classify-aggregated' | 'rate-source' | 'rate-freshness';
|
|
@@ -10470,6 +10560,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10470
10560
|
readonly fees_source: io.flow.internal.v0.enums.FeesSource;
|
|
10471
10561
|
readonly require_payment_request: boolean;
|
|
10472
10562
|
readonly round_individual_transactions: boolean;
|
|
10563
|
+
readonly liabilities_method: io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
10473
10564
|
}
|
|
10474
10565
|
interface AccountSettingsDeleted {
|
|
10475
10566
|
readonly discriminator: 'account_settings_deleted';
|
|
@@ -10549,6 +10640,25 @@ declare namespace io.flow.internal.v0.models {
|
|
|
10549
10640
|
readonly discriminator: 'percentage';
|
|
10550
10641
|
readonly percentage: number;
|
|
10551
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
|
+
}
|
|
10552
10662
|
interface AdyenAccount {
|
|
10553
10663
|
readonly discriminator: 'adyen_account';
|
|
10554
10664
|
readonly id: string;
|
|
@@ -13597,6 +13707,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13597
13707
|
readonly images: io.flow.catalog.v0.models.Image[];
|
|
13598
13708
|
readonly categories: string[];
|
|
13599
13709
|
readonly model_id?: string;
|
|
13710
|
+
readonly classified_by?: string;
|
|
13600
13711
|
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
13601
13712
|
readonly status?: io.flow.internal.v0.enums.UnclassifiedProductStatus;
|
|
13602
13713
|
readonly suggested_action?: io.flow.internal.v0.enums.ItemClassificationAction;
|
|
@@ -13604,8 +13715,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13604
13715
|
}
|
|
13605
13716
|
interface ClassificationActionFormUndo {
|
|
13606
13717
|
readonly discriminator: 'undo';
|
|
13607
|
-
readonly
|
|
13608
|
-
readonly item_numbers: string[];
|
|
13718
|
+
readonly item_classification_ids: string[];
|
|
13609
13719
|
readonly user: string;
|
|
13610
13720
|
}
|
|
13611
13721
|
interface ClassificationDetails {
|
|
@@ -13676,12 +13786,6 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13676
13786
|
interface ClassificationRequeueRequest {
|
|
13677
13787
|
readonly message: string;
|
|
13678
13788
|
}
|
|
13679
|
-
interface ClassificationSearch {
|
|
13680
|
-
readonly product_id: string;
|
|
13681
|
-
readonly organization_id: io.flow.common.v0.models.OrganizationSummary;
|
|
13682
|
-
readonly items: io.flow.common.v0.models.CatalogItemSummary[];
|
|
13683
|
-
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
13684
|
-
}
|
|
13685
13789
|
interface ClassificationStatistics {
|
|
13686
13790
|
readonly status: io.flow.internal.v0.enums.ItemHarmonizationStatus;
|
|
13687
13791
|
readonly number_of_items: number;
|
|
@@ -13784,6 +13888,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
13784
13888
|
interface CountryPickerPaymentMethod {
|
|
13785
13889
|
readonly id: string;
|
|
13786
13890
|
}
|
|
13891
|
+
interface CourthouseProductSummary {
|
|
13892
|
+
readonly organization: io.flow.common.v0.models.OrganizationSummary;
|
|
13893
|
+
readonly product_id: string;
|
|
13894
|
+
readonly items: io.flow.common.v0.models.CatalogItemSummary[];
|
|
13895
|
+
readonly product_harmonization: io.flow.internal.v0.models.ClassificationProductHarmonization;
|
|
13896
|
+
}
|
|
13787
13897
|
interface CryptoAccount {
|
|
13788
13898
|
readonly discriminator: 'crypto_account';
|
|
13789
13899
|
readonly id: string;
|
|
@@ -17171,6 +17281,17 @@ declare namespace io.flow.internal.v0.models {
|
|
|
17171
17281
|
readonly result: io.flow.internal.v0.enums.OnboardingAuditResult;
|
|
17172
17282
|
readonly lines: io.flow.internal.v0.models.OnboardingAuditReportLine[];
|
|
17173
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
|
+
}
|
|
17174
17295
|
interface OneTimeTokenRedemptionForm {
|
|
17175
17296
|
readonly token: string;
|
|
17176
17297
|
}
|
|
@@ -18607,6 +18728,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18607
18728
|
interface RestrictionOrganizationDecisionSummary {
|
|
18608
18729
|
readonly organization: io.flow.internal.v0.models.RestrictionOrganization;
|
|
18609
18730
|
readonly earliest_pending_date: string;
|
|
18731
|
+
readonly date: string;
|
|
18610
18732
|
readonly statuses: io.flow.internal.v0.models.RestrictionStatusMetadata[];
|
|
18611
18733
|
readonly rules: io.flow.internal.v0.models.RestrictionRuleMetadata[];
|
|
18612
18734
|
readonly count: number;
|
|
@@ -18994,6 +19116,59 @@ declare namespace io.flow.internal.v0.models {
|
|
|
18994
19116
|
readonly myshopify_domain: string;
|
|
18995
19117
|
readonly token: string;
|
|
18996
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
|
+
}
|
|
18997
19172
|
interface ShopifyOrderAuthorization {
|
|
18998
19173
|
readonly result: io.flow.payment.v0.models.AuthorizationResult;
|
|
18999
19174
|
readonly detail?: io.flow.internal.v0.models.ShopifyOrderDetail;
|
|
@@ -19176,6 +19351,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19176
19351
|
interface SingleClassificationAction {
|
|
19177
19352
|
readonly discriminator: 'single';
|
|
19178
19353
|
readonly organization: string;
|
|
19354
|
+
readonly item_classification_id: string;
|
|
19179
19355
|
readonly item_summary: io.flow.internal.v0.models.HarmonizationItemSummary;
|
|
19180
19356
|
readonly customs_description: string;
|
|
19181
19357
|
readonly labels?: io.flow.internal.v0.models.ProductLabels;
|
|
@@ -19187,7 +19363,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19187
19363
|
readonly product_harmonization: io.flow.internal.v0.models.ProductHarmonizationForm;
|
|
19188
19364
|
readonly initial_customs_description?: string;
|
|
19189
19365
|
}
|
|
19190
|
-
interface
|
|
19366
|
+
interface SmpTaxCalculation {
|
|
19191
19367
|
readonly quote_reference: string;
|
|
19192
19368
|
readonly target_currency_code: string;
|
|
19193
19369
|
readonly total: number;
|
|
@@ -19197,7 +19373,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19197
19373
|
readonly shipping_tax: io.flow.internal.v0.unions.TaxAmount;
|
|
19198
19374
|
readonly customer_code?: string;
|
|
19199
19375
|
}
|
|
19200
|
-
interface
|
|
19376
|
+
interface SmpTaxCalculationForm {
|
|
19201
19377
|
readonly quote_reference: string;
|
|
19202
19378
|
readonly target_currency_code: string;
|
|
19203
19379
|
readonly destination: io.flow.common.v0.models.Address;
|
|
@@ -19211,6 +19387,24 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19211
19387
|
readonly name?: string;
|
|
19212
19388
|
readonly tracker_id: string;
|
|
19213
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
|
+
}
|
|
19214
19408
|
interface SpotRate {
|
|
19215
19409
|
readonly id: string;
|
|
19216
19410
|
readonly effective_at: string;
|
|
@@ -19817,12 +20011,12 @@ declare namespace io.flow.internal.v0.models {
|
|
|
19817
20011
|
readonly original_transaction: io.flow.internal.v0.models.ProcessingTransactionReference;
|
|
19818
20012
|
readonly adjustment_transaction: io.flow.internal.v0.models.ProcessingTransactionReference;
|
|
19819
20013
|
readonly description: string;
|
|
19820
|
-
readonly
|
|
20014
|
+
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
19821
20015
|
}
|
|
19822
20016
|
interface TransactionAdjustmentForm {
|
|
19823
20017
|
readonly original_transaction_id: string;
|
|
19824
20018
|
readonly description: string;
|
|
19825
|
-
readonly
|
|
20019
|
+
readonly details: io.flow.internal.v0.unions.AdjustmentDetails;
|
|
19826
20020
|
}
|
|
19827
20021
|
interface TransactionReference {
|
|
19828
20022
|
readonly id: string;
|
|
@@ -20080,6 +20274,7 @@ declare namespace io.flow.internal.v0.models {
|
|
|
20080
20274
|
}
|
|
20081
20275
|
declare namespace io.flow.internal.v0.unions {
|
|
20082
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;
|
|
20083
20278
|
type AuthorizationPayload = io.flow.internal.v0.models.ApplePayAuthorizationPayload | io.flow.internal.v0.models.PaypalAuthorizationPayload;
|
|
20084
20279
|
type AuthorizedOrderCharge = io.flow.internal.v0.models.AuthorizedShippingCharge;
|
|
20085
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;
|
|
@@ -20178,7 +20373,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20178
20373
|
type DiscountRequestOfferForm = io.flow.internal.v0.models.DiscountRequestOfferFixedAmountForm;
|
|
20179
20374
|
type DisputeDetails = io.flow.internal.v0.models.DisputeDetailsAdyen | io.flow.internal.v0.models.DisputeDetailsPaypal;
|
|
20180
20375
|
type DutyExpression = io.flow.internal.v0.models.DutyCompoundExpression | io.flow.internal.v0.models.DutySimpleExpression;
|
|
20181
|
-
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;
|
|
20182
20377
|
type Experiment = io.flow.internal.v0.models.ExperienceExperiment | io.flow.internal.v0.models.FeatureExperiment;
|
|
20183
20378
|
type ExportSchedule = io.flow.internal.v0.models.ExportScheduleDaily | io.flow.internal.v0.models.ExportScheduleRepeated;
|
|
20184
20379
|
type FeatureDefaultValue = io.flow.internal.v0.models.BooleanFeatureDefaultValue | io.flow.internal.v0.models.StringFeatureDefaultValue;
|
|
@@ -20216,6 +20411,7 @@ declare namespace io.flow.internal.v0.unions {
|
|
|
20216
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;
|
|
20217
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;
|
|
20218
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;
|
|
20219
20415
|
type ShopifyPromotionOfferDiscount = io.flow.internal.v0.models.ShopifyPromotionFixedAmount | io.flow.internal.v0.models.ShopifyPromotionPercent;
|
|
20220
20416
|
type ShopifyPromotionOfferEntitlement = io.flow.internal.v0.models.ShopifyPromotionItemEntitlement | io.flow.internal.v0.models.ShopifyPromotionOrderEntitlement;
|
|
20221
20417
|
type ShopifyPromotionOfferMax = io.flow.internal.v0.models.ShopifyPromotionMaxLimit | io.flow.internal.v0.models.ShopifyPromotionMaxAmount;
|
|
@@ -20251,6 +20447,7 @@ export declare type AccountProcessingRatesForm = io.flow.internal.v0.models.Acco
|
|
|
20251
20447
|
export declare type AccountProcessingRatesUpserted = io.flow.internal.v0.models.AccountProcessingRatesUpserted;
|
|
20252
20448
|
export declare type AccountReference = io.flow.internal.v0.models.AccountReference;
|
|
20253
20449
|
export declare type AccountSettingLabelFees = io.flow.internal.v0.models.AccountSettingLabelFees;
|
|
20450
|
+
export declare type AccountSettingLiabilitiesMethod = io.flow.internal.v0.enums.AccountSettingLiabilitiesMethod;
|
|
20254
20451
|
export declare type AccountSettings = io.flow.internal.v0.models.AccountSettings;
|
|
20255
20452
|
export declare type AccountSettingsDeleted = io.flow.internal.v0.models.AccountSettingsDeleted;
|
|
20256
20453
|
export declare type AccountSettingsUpserted = io.flow.internal.v0.models.AccountSettingsUpserted;
|
|
@@ -20268,6 +20465,12 @@ export declare type AddressConfigurationSettingProvinceCode = io.flow.internal.v
|
|
|
20268
20465
|
export declare type AdjustmentAmount = io.flow.internal.v0.unions.AdjustmentAmount;
|
|
20269
20466
|
export declare type AdjustmentAmountFixed = io.flow.internal.v0.models.AdjustmentAmountFixed;
|
|
20270
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;
|
|
20271
20474
|
export declare type AdyenAccount = io.flow.internal.v0.models.AdyenAccount;
|
|
20272
20475
|
export declare type AdyenAccountModificationForm = io.flow.internal.v0.models.AdyenAccountModificationForm;
|
|
20273
20476
|
export declare type AdyenAccountPutForm = io.flow.internal.v0.models.AdyenAccountPutForm;
|
|
@@ -21057,7 +21260,6 @@ export declare type ClassificationProductSummary = io.flow.internal.v0.models.Cl
|
|
|
21057
21260
|
export declare type ClassificationProductSummaryPage = io.flow.internal.v0.models.ClassificationProductSummaryPage;
|
|
21058
21261
|
export declare type ClassificationRequeueRequest = io.flow.internal.v0.models.ClassificationRequeueRequest;
|
|
21059
21262
|
export declare type ClassificationResponse = io.flow.internal.v0.unions.ClassificationResponse;
|
|
21060
|
-
export declare type ClassificationSearch = io.flow.internal.v0.models.ClassificationSearch;
|
|
21061
21263
|
export declare type ClassificationStatistics = io.flow.internal.v0.models.ClassificationStatistics;
|
|
21062
21264
|
export declare type ClassificationTaxonomy = io.flow.internal.v0.unions.ClassificationTaxonomy;
|
|
21063
21265
|
export declare type ClassificationWrapper = io.flow.internal.v0.models.ClassificationWrapper;
|
|
@@ -21086,6 +21288,7 @@ export declare type CountryPickerData = io.flow.internal.v0.models.CountryPicker
|
|
|
21086
21288
|
export declare type CountryPickerDeliveryWindow = io.flow.internal.v0.models.CountryPickerDeliveryWindow;
|
|
21087
21289
|
export declare type CountryPickerExperienceData = io.flow.internal.v0.models.CountryPickerExperienceData;
|
|
21088
21290
|
export declare type CountryPickerPaymentMethod = io.flow.internal.v0.models.CountryPickerPaymentMethod;
|
|
21291
|
+
export declare type CourthouseProductSummary = io.flow.internal.v0.models.CourthouseProductSummary;
|
|
21089
21292
|
export declare type CrossdockTrackingStatus = io.flow.internal.v0.enums.CrossdockTrackingStatus;
|
|
21090
21293
|
export declare type CryptoAccount = io.flow.internal.v0.models.CryptoAccount;
|
|
21091
21294
|
export declare type CryptoAccountModificationForm = io.flow.internal.v0.models.CryptoAccountModificationForm;
|
|
@@ -21551,7 +21754,6 @@ export declare type LandedCostItem = io.flow.internal.v0.models.LandedCostItem;
|
|
|
21551
21754
|
export declare type Landmark = io.flow.internal.v0.models.Landmark;
|
|
21552
21755
|
export declare type LevyRateSummary = io.flow.internal.v0.models.LevyRateSummary;
|
|
21553
21756
|
export declare type LevyRateSummaryUpserted = io.flow.internal.v0.models.LevyRateSummaryUpserted;
|
|
21554
|
-
export declare type LiabilitiesMethod = io.flow.internal.v0.enums.LiabilitiesMethod;
|
|
21555
21757
|
export declare type Liability = io.flow.internal.v0.models.Liability;
|
|
21556
21758
|
export declare type LiabilityItem = io.flow.internal.v0.models.LiabilityItem;
|
|
21557
21759
|
export declare type LiabilityMoney = io.flow.internal.v0.models.LiabilityMoney;
|
|
@@ -21676,6 +21878,7 @@ export declare type OnboardingAuditThemeKey = io.flow.internal.v0.enums.Onboardi
|
|
|
21676
21878
|
export declare type OnboardingAuditThemeReport = io.flow.internal.v0.models.OnboardingAuditThemeReport;
|
|
21677
21879
|
export declare type OnboardingAutomationProcessState = io.flow.internal.v0.enums.OnboardingAutomationProcessState;
|
|
21678
21880
|
export declare type OnboardingAutomationTaskState = io.flow.internal.v0.enums.OnboardingAutomationTaskState;
|
|
21881
|
+
export declare type OnboardingOrganization = io.flow.internal.v0.models.OnboardingOrganization;
|
|
21679
21882
|
export declare type OneTimeTokenRedemptionForm = io.flow.internal.v0.models.OneTimeTokenRedemptionForm;
|
|
21680
21883
|
export declare type OnlineAuthorizationCompleted = io.flow.internal.v0.models.OnlineAuthorizationCompleted;
|
|
21681
21884
|
export declare type OptinAttribute = io.flow.internal.v0.models.OptinAttribute;
|
|
@@ -22021,6 +22224,19 @@ export declare type ShopifyMarketsSync = io.flow.internal.v0.models.ShopifyMarke
|
|
|
22021
22224
|
export declare type ShopifyMarketsTradeSector = io.flow.internal.v0.enums.ShopifyMarketsTradeSector;
|
|
22022
22225
|
export declare type ShopifyMarketsWebhookRegistration = io.flow.internal.v0.models.ShopifyMarketsWebhookRegistration;
|
|
22023
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;
|
|
22024
22240
|
export declare type ShopifyOrderAuthorization = io.flow.internal.v0.models.ShopifyOrderAuthorization;
|
|
22025
22241
|
export declare type ShopifyOrderCancelForm = io.flow.internal.v0.models.ShopifyOrderCancelForm;
|
|
22026
22242
|
export declare type ShopifyOrderCancelResponse = io.flow.internal.v0.models.ShopifyOrderCancelResponse;
|
|
@@ -22070,9 +22286,14 @@ export declare type SimplifiedItemLabel = io.flow.internal.v0.models.SimplifiedI
|
|
|
22070
22286
|
export declare type SimplifiedTaxonomyCategory = io.flow.internal.v0.models.SimplifiedTaxonomyCategory;
|
|
22071
22287
|
export declare type SingleClassificationAction = io.flow.internal.v0.models.SingleClassificationAction;
|
|
22072
22288
|
export declare type SingleClassificationForm = io.flow.internal.v0.models.SingleClassificationForm;
|
|
22073
|
-
export declare type
|
|
22074
|
-
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;
|
|
22075
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;
|
|
22076
22297
|
export declare type SpotRate = io.flow.internal.v0.models.SpotRate;
|
|
22077
22298
|
export declare type SpotRateDeleted = io.flow.internal.v0.models.SpotRateDeleted;
|
|
22078
22299
|
export declare type SpotRateMetadata = io.flow.internal.v0.unions.SpotRateMetadata;
|