@flowio/types 11.24.112 → 11.24.114
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 +282 -169
- package/dist/api.d.ts +216 -50
- package/package.json +2 -2
- package/src/api-internal.ts +421 -215
- package/src/api.ts +319 -56
package/dist/api.d.ts
CHANGED
|
@@ -133,6 +133,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
133
133
|
type BankIdeal = 'abn_amro' | 'asn_bank' | 'bunq' | 'handelsbanken' | 'ing' | 'knab' | 'moneyou' | 'n26' | 'nn' | 'rabobank' | 'regiobank' | 'revolut' | 'sns_bank' | 'triodos_bank' | 'van_lanschot' | 'yoursafe';
|
|
134
134
|
type BicIdeal = 'ABNANL2A' | 'ASNBNL21' | 'BITSNL2A' | 'BUNQNL2A' | 'FVLBNL22' | 'HANDNL2A' | 'INGBNL2A' | 'KNABNL2H' | 'MOYONL21' | 'NNBANL2G' | 'NTSBDEB1' | 'RABONL2U' | 'RBRBNL21' | 'REVOIE23' | 'REVOLT21' | 'SNSBNL2A' | 'TRIONL2U';
|
|
135
135
|
type CancellationReason = 'abandoned' | 'automatic' | 'duplicate' | 'failed_invoice' | 'fraudulent' | 'requested_by_customer' | 'void_invoice';
|
|
136
|
+
type CapabilityStatus = 'active' | 'disabled' | 'inactive' | 'pending' | 'unrequested';
|
|
136
137
|
type CaptureMethod = 'automatic' | 'manual';
|
|
137
138
|
type CardBrand = 'American Express' | 'MasterCard' | 'Discover' | 'JCB' | 'Diners Club' | 'Unknown';
|
|
138
139
|
type CardFundingType = 'credit' | 'debit' | 'prepaid' | 'unknown';
|
|
@@ -140,6 +141,10 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
140
141
|
type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
|
|
141
142
|
type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
|
|
142
143
|
type ConfirmationMethod = 'automatic' | 'manual';
|
|
144
|
+
type ConnectReportBalanceReportingCategory = 'anticipation_repayment' | 'climate_order_purchase' | 'climate_order_refund' | 'contribution' | 'currency_conversion' | 'fee' | 'other_adjustment' | 'payment_network_reserve_hold' | 'payment_network_reserve_release' | 'payout' | 'payout_minimum_balance_hold' | 'payout_minimum_balance_release' | 'payout_reversal' | 'risk_reserved_funds' | 'stripe_balance_payment_debit' | 'stripe_balance_payment_debit_reversal' | 'topup' | 'topup_reversal' | 'unreconciled_customer_funds';
|
|
145
|
+
type ConnectReportConnectReportingCategory = 'advance' | 'advance_funding' | 'connect_collection_transfer' | 'connect_reserved_funds' | 'platform_earning' | 'platform_earning_refund' | 'transfer' | 'transfer_reversal';
|
|
146
|
+
type ConnectReportIssuingReportingCategory = 'issuing_authorization_hold' | 'issuing_authorization_release' | 'issuing_disbursement' | 'issuing_dispute' | 'issuing_dispute_fraud_liability_debit' | 'issuing_dispute_provisional_credit' | 'issuing_dispute_provisional_credit_reversal' | 'issuing_transaction';
|
|
147
|
+
type ConnectReportPaymentReportingCategory = 'charge' | 'charge_failure' | 'dispute' | 'dispute_reversal' | 'partial_capture_reversal' | 'refund' | 'refund_failure';
|
|
143
148
|
type DeclineCode = 'approve_with_id' | 'call_issuer' | 'card_not_supported' | 'card_velocity_exceeded' | 'currency_not_supported' | 'do_not_honor' | 'do_not_try_again' | 'duplicate_transaction' | 'expired_card' | 'fraudulent' | 'generic_decline' | 'incorrect_number' | 'incorrect_cvc' | 'incorrect_pin' | 'incorrect_zip' | 'insufficient_funds' | 'invalid_account' | 'invalid_amount' | 'invalid_cvc' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_number' | 'invalid_pin' | 'issuer_not_available' | 'lost_card' | 'new_account_information_available' | 'no_action_taken' | 'not_permitted' | 'pickup_card' | 'pin_try_exceeded' | 'processing_error' | 'reenter_transaction' | 'restricted_card' | 'revocation_of_all_authorizations' | 'revocation_of_authorization' | 'security_violation' | 'service_not_allowed' | 'stolen_card' | 'stop_payment_order' | 'testmode_decline' | 'transaction_not_allowed' | 'try_again_later' | 'withdrawal_count_limit_exceeded' | 'previously_declined_do_not_retry' | 'highest_risk_level' | 'requested_block_on_incorrect_cvc';
|
|
144
149
|
type DisputeEventType = 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated';
|
|
145
150
|
type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
|
|
@@ -150,7 +155,7 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
150
155
|
type EarlyFraudWarningType = 'card_never_received' | 'fraudulent_card_application' | 'made_with_counterfeit_card' | 'made_with_lost_card' | 'made_with_stolen_card' | 'unauthorized_use_of_card' | 'misc';
|
|
151
156
|
type ErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'country_code_invalid' | 'email_invalid' | 'postal_code_invalid' | 'invalid_characters' | 'url_invalid' | 'invalid_charge_amount' | 'incorrect_number' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'expired_card' | 'missing' | 'processing_error' | 'account_closed' | 'amount_too_small' | 'amount_too_large' | 'api_key_expired' | 'authentication_required' | 'capture_charge_authorization_expired' | 'capture_unauthorized_payment' | 'card_decline_rate_limit_exceeded' | 'charge_already_captured' | 'charge_already_refunded' | 'charge_disputed' | 'charge_exceeds_source_limit' | 'charge_expired_for_capture' | 'charge_invalid_parameter' | 'charge_not_refundable' | 'insufficient_funds' | 'intent_invalid_state' | 'livemode_mismatch' | 'parameter_invalid_empty' | 'parameter_invalid_integer' | 'parameter_invalid_string_blank' | 'parameter_invalid_string_empty' | 'parameter_missing' | 'parameter_unknown' | 'parameters_exclusive' | 'payment_intent_action_required' | 'payment_intent_authentication_failure' | 'payment_intent_incompatible_payment_method' | 'payment_intent_payment_attempt_expired' | 'payment_intent_payment_attempt_failed' | 'payment_intent_unexpected_state' | 'payment_intent_invalid_parameter' | 'payment_method_billing_details_address_missing' | 'payment_method_customer_decline' | 'payment_method_currency_mismatch' | 'payment_method_invalid_parameter' | 'payment_method_invalid_parameter_testmode' | 'payment_method_not_available' | 'payment_method_provider_decline' | 'payment_method_provider_timeout' | 'payment_method_unactivated' | 'payment_method_unexpected_state' | 'payment_method_unsupported_type' | 'platform_api_key_expired' | 'refund_disputed_payment' | 'testmode_charges_only' | 'tls_version_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state';
|
|
152
157
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
153
|
-
type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
|
|
158
|
+
type EventType = 'capability.updated' | 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
|
|
154
159
|
type ExtendedAuthorizationStatus = 'enabled' | 'disabled';
|
|
155
160
|
type FeatureAvailability = 'available' | 'unavailable';
|
|
156
161
|
type KlarnaPaymentMethodCategoryType = 'direct_bank_transfer' | 'direct_debit' | 'pay_later' | 'pay_now' | 'pay_over_time';
|
|
@@ -236,6 +241,16 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
236
241
|
interface ApplePayInformation {
|
|
237
242
|
readonly type: io.flow.stripe.v0.enums.ApplePayType;
|
|
238
243
|
}
|
|
244
|
+
interface Capability {
|
|
245
|
+
readonly id: string;
|
|
246
|
+
readonly account: string;
|
|
247
|
+
readonly requested: boolean;
|
|
248
|
+
readonly requirements: any;
|
|
249
|
+
readonly status: io.flow.stripe.v0.enums.CapabilityStatus;
|
|
250
|
+
readonly object: string;
|
|
251
|
+
readonly future_requirements: any;
|
|
252
|
+
readonly requested_at?: number;
|
|
253
|
+
}
|
|
239
254
|
interface Card {
|
|
240
255
|
readonly id: string;
|
|
241
256
|
readonly object: string;
|
|
@@ -1258,6 +1273,19 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1258
1273
|
}
|
|
1259
1274
|
declare namespace io.flow.stripe.v0.unions {
|
|
1260
1275
|
type CardWallet = io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout;
|
|
1276
|
+
type ConnectReportReportingCategory = {
|
|
1277
|
+
discriminator: 'connect_report_payment_reporting_category';
|
|
1278
|
+
value: io.flow.stripe.v0.enums.ConnectReportPaymentReportingCategory;
|
|
1279
|
+
} | {
|
|
1280
|
+
discriminator: 'connect_report_balance_reporting_category';
|
|
1281
|
+
value: io.flow.stripe.v0.enums.ConnectReportBalanceReportingCategory;
|
|
1282
|
+
} | {
|
|
1283
|
+
discriminator: 'connect_report_issuing_reporting_category';
|
|
1284
|
+
value: io.flow.stripe.v0.enums.ConnectReportIssuingReportingCategory;
|
|
1285
|
+
} | {
|
|
1286
|
+
discriminator: 'connect_report_connect_reporting_category';
|
|
1287
|
+
value: io.flow.stripe.v0.enums.ConnectReportConnectReportingCategory;
|
|
1288
|
+
};
|
|
1261
1289
|
type PaymentMethodData = io.flow.stripe.v0.models.PaymentMethodDataCard | io.flow.stripe.v0.models.PaymentMethodDataIdeal | io.flow.stripe.v0.models.PaymentMethodDataKlarna | io.flow.stripe.v0.models.PaymentMethodDataBancontact;
|
|
1262
1290
|
type PaymentMethodDetails = io.flow.stripe.v0.models.PaymentMethodDetailsCard | io.flow.stripe.v0.models.PaymentMethodDetailsIdeal | io.flow.stripe.v0.models.PaymentMethodDetailsKlarna | io.flow.stripe.v0.models.PaymentMethodDetailsBancontact;
|
|
1263
1291
|
type PaymentMethodForm = io.flow.stripe.v0.models.PaymentMethodFormCard | io.flow.stripe.v0.models.PaymentMethodFormIdeal | io.flow.stripe.v0.models.PaymentMethodFormKlarna | io.flow.stripe.v0.models.PaymentMethodFormBancontact;
|
|
@@ -2208,7 +2236,7 @@ declare namespace io.flow.common.v0.enums {
|
|
|
2208
2236
|
type RoundingType = 'pattern' | 'multiple';
|
|
2209
2237
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
2210
2238
|
type SortDirection = 'ascending' | 'descending';
|
|
2211
|
-
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
2239
|
+
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
2212
2240
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
2213
2241
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
2214
2242
|
type ValueAddedService = 'Hazardous Material';
|
|
@@ -3638,26 +3666,6 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
3638
3666
|
readonly description: string;
|
|
3639
3667
|
}
|
|
3640
3668
|
}
|
|
3641
|
-
declare namespace io.flow.currency.v0.models {
|
|
3642
|
-
interface Rate {
|
|
3643
|
-
readonly id: string;
|
|
3644
|
-
readonly base: string;
|
|
3645
|
-
readonly target: string;
|
|
3646
|
-
readonly effective_at: string;
|
|
3647
|
-
readonly value: number;
|
|
3648
|
-
}
|
|
3649
|
-
interface RateForm {
|
|
3650
|
-
readonly base: string;
|
|
3651
|
-
readonly target: string;
|
|
3652
|
-
readonly effective_at: string;
|
|
3653
|
-
}
|
|
3654
|
-
interface RateVersion {
|
|
3655
|
-
readonly id: string;
|
|
3656
|
-
readonly timestamp: string;
|
|
3657
|
-
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
3658
|
-
readonly rate: io.flow.currency.v0.models.Rate;
|
|
3659
|
-
}
|
|
3660
|
-
}
|
|
3661
3669
|
declare namespace io.flow.organization.v0.enums {
|
|
3662
3670
|
type CountryPickerSource = 'experience' | 'destination';
|
|
3663
3671
|
type EcommercePlatformType = 'commercetools' | 'custom' | 'hybris' | 'magento' | 'shopify' | 'shopify_markets' | 'sfcc' | 'solidus' | 'workarea';
|
|
@@ -4426,6 +4434,60 @@ declare namespace io.flow.query.builder.v0.unions {
|
|
|
4426
4434
|
type QueryFilter = io.flow.query.builder.v0.models.QueryFilterStructured | io.flow.query.builder.v0.models.QueryFilterUnstructured;
|
|
4427
4435
|
type QueryFilterForm = io.flow.query.builder.v0.models.QueryFilterStructuredForm | io.flow.query.builder.v0.models.QueryFilterUnstructuredForm;
|
|
4428
4436
|
}
|
|
4437
|
+
declare namespace io.flow.sellability.v0.enums {
|
|
4438
|
+
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
4439
|
+
type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
|
|
4440
|
+
}
|
|
4441
|
+
declare namespace io.flow.sellability.v0.models {
|
|
4442
|
+
interface ProductSellability {
|
|
4443
|
+
readonly shop_id: string;
|
|
4444
|
+
readonly product_id?: string;
|
|
4445
|
+
readonly request_id: string;
|
|
4446
|
+
readonly hs6_code: string;
|
|
4447
|
+
readonly restricted_regions: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
4448
|
+
}
|
|
4449
|
+
interface ProductSellabilityForm {
|
|
4450
|
+
readonly shop_id: string;
|
|
4451
|
+
readonly product_id?: string;
|
|
4452
|
+
readonly request_id: string;
|
|
4453
|
+
readonly name: string;
|
|
4454
|
+
readonly price: io.flow.sellability.v0.models.ProductSellabilityPrice;
|
|
4455
|
+
readonly description: string;
|
|
4456
|
+
readonly taxonomy_category: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
4457
|
+
}
|
|
4458
|
+
interface ProductSellabilityPrice {
|
|
4459
|
+
readonly currency: string;
|
|
4460
|
+
readonly amount: number;
|
|
4461
|
+
}
|
|
4462
|
+
interface SellabilityError {
|
|
4463
|
+
readonly code: io.flow.sellability.v0.enums.SellabilityErrorCode;
|
|
4464
|
+
readonly messages: string[];
|
|
4465
|
+
}
|
|
4466
|
+
interface SellablilityRegionResult {
|
|
4467
|
+
readonly type: io.flow.sellability.v0.enums.RuleEffectType;
|
|
4468
|
+
readonly regions: string[];
|
|
4469
|
+
}
|
|
4470
|
+
}
|
|
4471
|
+
declare namespace io.flow.currency.v0.models {
|
|
4472
|
+
interface Rate {
|
|
4473
|
+
readonly id: string;
|
|
4474
|
+
readonly base: string;
|
|
4475
|
+
readonly target: string;
|
|
4476
|
+
readonly effective_at: string;
|
|
4477
|
+
readonly value: number;
|
|
4478
|
+
}
|
|
4479
|
+
interface RateForm {
|
|
4480
|
+
readonly base: string;
|
|
4481
|
+
readonly target: string;
|
|
4482
|
+
readonly effective_at: string;
|
|
4483
|
+
}
|
|
4484
|
+
interface RateVersion {
|
|
4485
|
+
readonly id: string;
|
|
4486
|
+
readonly timestamp: string;
|
|
4487
|
+
readonly type: io.flow.common.v0.enums.ChangeType;
|
|
4488
|
+
readonly rate: io.flow.currency.v0.models.Rate;
|
|
4489
|
+
}
|
|
4490
|
+
}
|
|
4429
4491
|
declare namespace io.flow.v0.enums {
|
|
4430
4492
|
type AbandonedOrderPromotionStatus = 'active' | 'inactive';
|
|
4431
4493
|
type AbandonedOrderSettingStatus = 'active' | 'inactive';
|
|
@@ -4482,9 +4544,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4482
4544
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
4483
4545
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
4484
4546
|
type Environment = 'sandbox' | 'production';
|
|
4485
|
-
type
|
|
4486
|
-
type EstimateType = 'Estimated' | 'Final';
|
|
4487
|
-
type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'ge_product_restriction_result_upserted' | 'ge_product_restriction_result_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
4547
|
+
type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'transfer_upserted' | 'transfer_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
4488
4548
|
type ExceptionType = 'open' | 'closed';
|
|
4489
4549
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4490
4550
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -4505,6 +4565,9 @@ declare namespace io.flow.v0.enums {
|
|
|
4505
4565
|
type FulfillmentMethodType = 'fulfillment_method';
|
|
4506
4566
|
type FulfillmentMethodValue = 'digital' | 'physical';
|
|
4507
4567
|
type FulfillmentRouting = 'fulfilled_from_center' | 'fulfillment_service';
|
|
4568
|
+
type GeCatalogItemIngestionResponse = 'success' | 'failure';
|
|
4569
|
+
type GeEnvironment = 'production' | 'sandbox';
|
|
4570
|
+
type GeEventType = 'restriction_result' | 'ingestion_result';
|
|
4508
4571
|
type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
|
|
4509
4572
|
type GoodsSupply = 'export' | 'intra_community' | 'local';
|
|
4510
4573
|
type HolidayCalendar = 'us_bank_holidays' | 'jewish_holidays';
|
|
@@ -4548,7 +4611,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4548
4611
|
type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
|
|
4549
4612
|
type OrderStatus = 'open' | 'submitted';
|
|
4550
4613
|
type OrderStorage = 'do_not_persist' | 'persist';
|
|
4551
|
-
type OrderType = 'standard' | 'replacement';
|
|
4614
|
+
type OrderType = 'standard' | 'replacement' | 'edit';
|
|
4552
4615
|
type OrganizationPaymentMethodTag = 'deny';
|
|
4553
4616
|
type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
|
|
4554
4617
|
type OrganizationType = 'standalone' | 'channel';
|
|
@@ -4557,6 +4620,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4557
4620
|
type PaymentActionType = 'redirect' | 'redirect_get' | 'redirect_post' | 'select_payment_option' | 'use_sdk_klarna_v1' | 'use_sdk_applepay_js' | 'use_sdk_googlepay' | 'use_sdk_paypal' | 'use_sdk_stripe_v3' | 'use_sdk_adyen_v3' | 'use_sdk_adyen_v4' | 'execute_script' | 'display_inline_window';
|
|
4558
4621
|
type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
|
|
4559
4622
|
type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
|
|
4623
|
+
type PaymentFeeType = 'fx' | 'mor';
|
|
4560
4624
|
type PaymentMethodCapability = 'credit' | 'debit';
|
|
4561
4625
|
type PaymentMethodDataOptionType = 'ideal_issuer_option';
|
|
4562
4626
|
type PaymentMethodRuleContentKey = 'description';
|
|
@@ -4630,13 +4694,15 @@ declare namespace io.flow.v0.enums {
|
|
|
4630
4694
|
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
4631
4695
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
4632
4696
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
4633
|
-
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | '
|
|
4697
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share';
|
|
4698
|
+
type TransferStatus = 'succeeded' | 'canceled';
|
|
4699
|
+
type TransferType = 'payout_to_merchant' | 'disputed_amount_to_merchant' | 'duties_and_taxes_adjustment_to_merchant' | 'disputed_amount_from_merchant' | 'duties_and_taxes_adjustment_from_merchant' | 'refund_from_merchant';
|
|
4634
4700
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
4635
4701
|
type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
|
|
4636
4702
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
4637
|
-
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
4703
|
+
type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
|
|
4638
4704
|
type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
|
|
4639
|
-
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
4705
|
+
type UnitOfVolume = 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter';
|
|
4640
4706
|
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
4641
4707
|
type UpdatePolicy = 'auto' | 'queue' | 'discard';
|
|
4642
4708
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
@@ -5500,6 +5566,7 @@ declare namespace io.flow.v0.models {
|
|
|
5500
5566
|
readonly attributes?: Record<string, string>;
|
|
5501
5567
|
readonly status?: io.flow.v0.enums.CaptureStatus;
|
|
5502
5568
|
readonly base?: io.flow.v0.models.Money;
|
|
5569
|
+
readonly fees?: io.flow.v0.models.PaymentFee[];
|
|
5503
5570
|
}
|
|
5504
5571
|
interface CaptureDeleted {
|
|
5505
5572
|
readonly discriminator: 'capture_deleted';
|
|
@@ -5542,6 +5609,7 @@ declare namespace io.flow.v0.models {
|
|
|
5542
5609
|
readonly identifier: io.flow.v0.models.CaptureIdentifier;
|
|
5543
5610
|
}
|
|
5544
5611
|
interface CaptureReference {
|
|
5612
|
+
readonly discriminator: 'capture_reference';
|
|
5545
5613
|
readonly id: string;
|
|
5546
5614
|
readonly key: string;
|
|
5547
5615
|
}
|
|
@@ -7003,6 +7071,11 @@ declare namespace io.flow.v0.models {
|
|
|
7003
7071
|
interface DiscountsForm {
|
|
7004
7072
|
readonly discounts: io.flow.v0.models.DiscountForm[];
|
|
7005
7073
|
}
|
|
7074
|
+
interface DisputeReference {
|
|
7075
|
+
readonly discriminator: 'dispute_reference';
|
|
7076
|
+
readonly id: string;
|
|
7077
|
+
readonly key: string;
|
|
7078
|
+
}
|
|
7006
7079
|
interface Duration {
|
|
7007
7080
|
readonly unit: io.flow.v0.enums.UnitOfTime;
|
|
7008
7081
|
readonly value: number;
|
|
@@ -7016,6 +7089,7 @@ declare namespace io.flow.v0.models {
|
|
|
7016
7089
|
interface DutiesTaxesPaidSurchargeServiceFee {
|
|
7017
7090
|
readonly discriminator: 'duties_taxes_paid_surcharge_service_fee';
|
|
7018
7091
|
readonly amount: io.flow.v0.models.Money;
|
|
7092
|
+
readonly destination_countries?: string[];
|
|
7019
7093
|
readonly starts_at?: string;
|
|
7020
7094
|
readonly ends_at?: string;
|
|
7021
7095
|
}
|
|
@@ -7150,14 +7224,6 @@ declare namespace io.flow.v0.models {
|
|
|
7150
7224
|
readonly number: string;
|
|
7151
7225
|
readonly issuing_country?: string;
|
|
7152
7226
|
}
|
|
7153
|
-
interface Estimate {
|
|
7154
|
-
readonly id: string;
|
|
7155
|
-
readonly organization_id: string;
|
|
7156
|
-
readonly label_id: string;
|
|
7157
|
-
readonly estimate: io.flow.v0.models.ShippingLabelHopSummary;
|
|
7158
|
-
readonly type: io.flow.v0.enums.EstimateType;
|
|
7159
|
-
readonly origin?: io.flow.v0.enums.EstimateOrigin;
|
|
7160
|
-
}
|
|
7161
7227
|
interface EstimatedDimensions {
|
|
7162
7228
|
readonly depth: io.flow.v0.models.Measurement;
|
|
7163
7229
|
readonly length: io.flow.v0.models.Measurement;
|
|
@@ -7173,6 +7239,10 @@ declare namespace io.flow.v0.models {
|
|
|
7173
7239
|
readonly type: io.flow.v0.enums.ExceptionType;
|
|
7174
7240
|
readonly datetime_range: io.flow.v0.models.DatetimeRange;
|
|
7175
7241
|
}
|
|
7242
|
+
interface ExchangedMoney {
|
|
7243
|
+
readonly fx_rate: number;
|
|
7244
|
+
readonly money: io.flow.v0.models.Money;
|
|
7245
|
+
}
|
|
7176
7246
|
interface ExclusionRule {
|
|
7177
7247
|
readonly id: string;
|
|
7178
7248
|
readonly q: string;
|
|
@@ -7493,6 +7563,11 @@ declare namespace io.flow.v0.models {
|
|
|
7493
7563
|
readonly type: io.flow.v0.enums.ChangeType;
|
|
7494
7564
|
readonly export: io.flow.v0.models.Export;
|
|
7495
7565
|
}
|
|
7566
|
+
interface ExternalCard {
|
|
7567
|
+
readonly discriminator: 'external_card';
|
|
7568
|
+
readonly id: string;
|
|
7569
|
+
readonly type?: io.flow.v0.enums.CardType;
|
|
7570
|
+
}
|
|
7496
7571
|
interface FeeDeduction {
|
|
7497
7572
|
readonly type: io.flow.v0.enums.FeeDeductionType;
|
|
7498
7573
|
readonly amount: number;
|
|
@@ -7743,6 +7818,42 @@ declare namespace io.flow.v0.models {
|
|
|
7743
7818
|
readonly hs6_code: string;
|
|
7744
7819
|
readonly landed_costs: io.flow.v0.models.LaneLandedCost[];
|
|
7745
7820
|
}
|
|
7821
|
+
interface GeCatalogItemIngestionResult {
|
|
7822
|
+
readonly discriminator: 'ge_catalog_item_ingestion_result';
|
|
7823
|
+
readonly event_id: string;
|
|
7824
|
+
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
7825
|
+
readonly environment: io.flow.v0.enums.GeEnvironment;
|
|
7826
|
+
readonly timestamp: string;
|
|
7827
|
+
readonly source: string;
|
|
7828
|
+
readonly response: io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
7829
|
+
readonly message: string;
|
|
7830
|
+
}
|
|
7831
|
+
interface GeCatalogItemInput {
|
|
7832
|
+
readonly event_id: string;
|
|
7833
|
+
readonly number: string;
|
|
7834
|
+
readonly organization_id: string;
|
|
7835
|
+
readonly name: string;
|
|
7836
|
+
readonly description: string;
|
|
7837
|
+
readonly price: io.flow.v0.models.GeInputPrice;
|
|
7838
|
+
readonly attributes: io.flow.v0.models.GeInputAttributes;
|
|
7839
|
+
readonly locale: string;
|
|
7840
|
+
readonly id: string;
|
|
7841
|
+
readonly categories: string[];
|
|
7842
|
+
readonly created_at: string;
|
|
7843
|
+
readonly updated_at: string;
|
|
7844
|
+
readonly images: string[];
|
|
7845
|
+
}
|
|
7846
|
+
interface GeInputAttributes {
|
|
7847
|
+
readonly country_of_origin: string;
|
|
7848
|
+
readonly ge_hs6_code: string;
|
|
7849
|
+
readonly product_id: string;
|
|
7850
|
+
readonly ge_organization_name: string;
|
|
7851
|
+
}
|
|
7852
|
+
interface GeInputPrice {
|
|
7853
|
+
readonly amount: number;
|
|
7854
|
+
readonly currency: string;
|
|
7855
|
+
readonly label: string;
|
|
7856
|
+
}
|
|
7746
7857
|
interface GeItemDeleted {
|
|
7747
7858
|
readonly discriminator: 'ge_item_deleted';
|
|
7748
7859
|
readonly event_id: string;
|
|
@@ -7764,18 +7875,22 @@ declare namespace io.flow.v0.models {
|
|
|
7764
7875
|
readonly organization: string;
|
|
7765
7876
|
readonly item: io.flow.v0.models.Item;
|
|
7766
7877
|
}
|
|
7767
|
-
interface
|
|
7768
|
-
readonly discriminator: '
|
|
7878
|
+
interface GeProductRestrictionResultDelete {
|
|
7879
|
+
readonly discriminator: 'ge_product_restriction_result_delete';
|
|
7880
|
+
readonly organization: string;
|
|
7769
7881
|
readonly event_id: string;
|
|
7882
|
+
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
7883
|
+
readonly environment: io.flow.v0.enums.GeEnvironment;
|
|
7770
7884
|
readonly timestamp: string;
|
|
7771
|
-
readonly organization: string;
|
|
7772
7885
|
readonly id: string;
|
|
7773
7886
|
}
|
|
7774
|
-
interface
|
|
7775
|
-
readonly discriminator: '
|
|
7887
|
+
interface GeProductRestrictionResultUpsert {
|
|
7888
|
+
readonly discriminator: 'ge_product_restriction_result_upsert';
|
|
7889
|
+
readonly organization: string;
|
|
7776
7890
|
readonly event_id: string;
|
|
7891
|
+
readonly event_type: io.flow.v0.enums.GeEventType;
|
|
7892
|
+
readonly environment: io.flow.v0.enums.GeEnvironment;
|
|
7777
7893
|
readonly timestamp: string;
|
|
7778
|
-
readonly organization: string;
|
|
7779
7894
|
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
7780
7895
|
}
|
|
7781
7896
|
interface GenerateLoad {
|
|
@@ -10118,6 +10233,11 @@ declare namespace io.flow.v0.models {
|
|
|
10118
10233
|
readonly failure_code: io.flow.v0.enums.PaymentFailureCode;
|
|
10119
10234
|
readonly failure_message: string;
|
|
10120
10235
|
}
|
|
10236
|
+
interface PaymentFee {
|
|
10237
|
+
readonly type: io.flow.v0.enums.PaymentFeeType;
|
|
10238
|
+
readonly money: io.flow.v0.models.Money;
|
|
10239
|
+
readonly base?: io.flow.v0.models.Money;
|
|
10240
|
+
}
|
|
10121
10241
|
interface PaymentInformation {
|
|
10122
10242
|
readonly amount_refundable?: number;
|
|
10123
10243
|
readonly amount_refunded?: number;
|
|
@@ -10978,6 +11098,7 @@ declare namespace io.flow.v0.models {
|
|
|
10978
11098
|
readonly updated_by?: string;
|
|
10979
11099
|
readonly product_restriction_id?: string;
|
|
10980
11100
|
readonly hs_code?: string;
|
|
11101
|
+
readonly restricted_regions_by_type?: io.flow.sellability.v0.models.SellablilityRegionResult[];
|
|
10981
11102
|
}
|
|
10982
11103
|
interface ProductRestrictionResultDeleted {
|
|
10983
11104
|
readonly discriminator: 'product_restriction_result_deleted';
|
|
@@ -11240,6 +11361,8 @@ declare namespace io.flow.v0.models {
|
|
|
11240
11361
|
readonly discriminator: 'ratecard_estimate_v4';
|
|
11241
11362
|
readonly hops: io.flow.v0.models.HopV2[];
|
|
11242
11363
|
readonly delivered_duty: io.flow.v0.enums.DeliveredDuty;
|
|
11364
|
+
readonly distance_unit_of_measurement?: io.flow.v0.enums.UnitOfMeasurement;
|
|
11365
|
+
readonly weight_unit_of_measurement?: io.flow.v0.enums.UnitOfMeasurement;
|
|
11243
11366
|
readonly dimensional_weight?: io.flow.v0.models.Measurement;
|
|
11244
11367
|
readonly gravitational_weight?: io.flow.v0.models.Measurement;
|
|
11245
11368
|
readonly ratecard_id?: string;
|
|
@@ -11512,6 +11635,7 @@ declare namespace io.flow.v0.models {
|
|
|
11512
11635
|
readonly shipping?: number;
|
|
11513
11636
|
}
|
|
11514
11637
|
interface RefundReference {
|
|
11638
|
+
readonly discriminator: 'refund_reference';
|
|
11515
11639
|
readonly id: string;
|
|
11516
11640
|
readonly key: string;
|
|
11517
11641
|
}
|
|
@@ -13110,6 +13234,30 @@ declare namespace io.flow.v0.models {
|
|
|
13110
13234
|
readonly organization: string;
|
|
13111
13235
|
readonly transaction: io.flow.v0.models.Transaction;
|
|
13112
13236
|
}
|
|
13237
|
+
interface Transfer {
|
|
13238
|
+
readonly id: string;
|
|
13239
|
+
readonly type: io.flow.v0.enums.TransferType;
|
|
13240
|
+
readonly money: io.flow.v0.models.Money;
|
|
13241
|
+
readonly transferred_money: io.flow.v0.models.ExchangedMoney;
|
|
13242
|
+
readonly status: io.flow.v0.enums.TransferStatus;
|
|
13243
|
+
readonly created_at: string;
|
|
13244
|
+
readonly reference: io.flow.v0.unions.TransferReference;
|
|
13245
|
+
readonly transferred_at: string;
|
|
13246
|
+
}
|
|
13247
|
+
interface TransferDeleted {
|
|
13248
|
+
readonly discriminator: 'transfer_deleted';
|
|
13249
|
+
readonly event_id: string;
|
|
13250
|
+
readonly timestamp: string;
|
|
13251
|
+
readonly organization: string;
|
|
13252
|
+
readonly id: string;
|
|
13253
|
+
}
|
|
13254
|
+
interface TransferUpserted {
|
|
13255
|
+
readonly discriminator: 'transfer_upserted';
|
|
13256
|
+
readonly event_id: string;
|
|
13257
|
+
readonly timestamp: string;
|
|
13258
|
+
readonly organization: string;
|
|
13259
|
+
readonly transfer: io.flow.v0.models.Transfer;
|
|
13260
|
+
}
|
|
13113
13261
|
interface TransitEstimate {
|
|
13114
13262
|
readonly origin: io.flow.v0.enums.DeliveryWindowLocation;
|
|
13115
13263
|
readonly destination: io.flow.v0.enums.DeliveryWindowLocation;
|
|
@@ -13369,8 +13517,8 @@ declare namespace io.flow.v0.unions {
|
|
|
13369
13517
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
13370
13518
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
13371
13519
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
13372
|
-
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.
|
|
13373
|
-
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
13520
|
+
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TransferUpserted | io.flow.v0.models.TransferDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
|
|
13521
|
+
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard;
|
|
13374
13522
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
13375
13523
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
13376
13524
|
type ExpandableOrder = io.flow.v0.models.Order | io.flow.v0.models.OrderReference;
|
|
@@ -13385,6 +13533,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13385
13533
|
type FuelSurchargeRate = io.flow.v0.models.FuelSurchargePercent | io.flow.v0.models.FuelSurchargeByWeight;
|
|
13386
13534
|
type GatewayAuthenticationData = io.flow.v0.models.StripeAuthenticationData;
|
|
13387
13535
|
type GatewayAuthenticationDataForm = io.flow.v0.models.StripeAuthenticationDataForm;
|
|
13536
|
+
type GeRestrictionEvent = io.flow.v0.models.GeProductRestrictionResultUpsert | io.flow.v0.models.GeProductRestrictionResultDelete | io.flow.v0.models.GeCatalogItemIngestionResult;
|
|
13388
13537
|
type InlineActionConfiguration = io.flow.v0.models.BrowserInlineActionConfiguration;
|
|
13389
13538
|
type InputSpecificationLimitation = io.flow.v0.models.InputSpecificationLimitationMax;
|
|
13390
13539
|
type KnowYourBusiness = io.flow.v0.models.KnowYourBusinessUsa;
|
|
@@ -13455,6 +13604,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13455
13604
|
type TokenReference = io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference;
|
|
13456
13605
|
type TransactionDetails = io.flow.v0.models.TransactionDetailsCard;
|
|
13457
13606
|
type TransactionMetadata = io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.TransactionMetadataTrueupBase | io.flow.v0.models.TransactionMetadataTrueupSurcharge | io.flow.v0.models.TransactionMetadataCarrierCharge | io.flow.v0.models.TransactionMetadataManual | io.flow.v0.models.TransactionMetadataFailedPayout | io.flow.v0.models.TransactionMetadataPaymentTransaction;
|
|
13607
|
+
type TransferReference = io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference;
|
|
13458
13608
|
}
|
|
13459
13609
|
export declare type AbandonedOrderEmailSettings = io.flow.v0.models.AbandonedOrderEmailSettings;
|
|
13460
13610
|
export declare type AbandonedOrderPromotion = io.flow.v0.models.AbandonedOrderPromotion;
|
|
@@ -13905,6 +14055,7 @@ export declare type DiscountRuleSubsidyEntitlement = io.flow.v0.models.DiscountR
|
|
|
13905
14055
|
export declare type DiscountRuleSubsidyTarget = io.flow.v0.enums.DiscountRuleSubsidyTarget;
|
|
13906
14056
|
export declare type DiscountTarget = io.flow.v0.enums.DiscountTarget;
|
|
13907
14057
|
export declare type DiscountsForm = io.flow.v0.models.DiscountsForm;
|
|
14058
|
+
export declare type DisputeReference = io.flow.v0.models.DisputeReference;
|
|
13908
14059
|
export declare type Document = io.flow.v0.unions.Document;
|
|
13909
14060
|
export declare type Duration = io.flow.v0.models.Duration;
|
|
13910
14061
|
export declare type DutiesTaxesPaidSurchargeRatecardFee = io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee;
|
|
@@ -13940,15 +14091,13 @@ export declare type Entity = io.flow.v0.unions.Entity;
|
|
|
13940
14091
|
export declare type EntityIdentifier = io.flow.v0.models.EntityIdentifier;
|
|
13941
14092
|
export declare type EntityIdentifierType = io.flow.v0.enums.EntityIdentifierType;
|
|
13942
14093
|
export declare type Environment = io.flow.v0.enums.Environment;
|
|
13943
|
-
export declare type Estimate = io.flow.v0.models.Estimate;
|
|
13944
|
-
export declare type EstimateOrigin = io.flow.v0.enums.EstimateOrigin;
|
|
13945
|
-
export declare type EstimateType = io.flow.v0.enums.EstimateType;
|
|
13946
14094
|
export declare type EstimatedDimensions = io.flow.v0.models.EstimatedDimensions;
|
|
13947
14095
|
export declare type EstimatedWindow = io.flow.v0.models.EstimatedWindow;
|
|
13948
14096
|
export declare type Event = io.flow.v0.unions.Event;
|
|
13949
14097
|
export declare type EventType = io.flow.v0.enums.EventType;
|
|
13950
14098
|
export declare type Exception = io.flow.v0.models.Exception;
|
|
13951
14099
|
export declare type ExceptionType = io.flow.v0.enums.ExceptionType;
|
|
14100
|
+
export declare type ExchangedMoney = io.flow.v0.models.ExchangedMoney;
|
|
13952
14101
|
export declare type ExclusionRule = io.flow.v0.models.ExclusionRule;
|
|
13953
14102
|
export declare type ExclusionRuleForm = io.flow.v0.models.ExclusionRuleForm;
|
|
13954
14103
|
export declare type ExclusionRuleState = io.flow.v0.enums.ExclusionRuleState;
|
|
@@ -14021,6 +14170,7 @@ export declare type ExportStatus = io.flow.v0.enums.ExportStatus;
|
|
|
14021
14170
|
export declare type ExportType = io.flow.v0.unions.ExportType;
|
|
14022
14171
|
export declare type ExportVersion = io.flow.v0.models.ExportVersion;
|
|
14023
14172
|
export declare type ExporterOfRecord = io.flow.v0.enums.ExporterOfRecord;
|
|
14173
|
+
export declare type ExternalCard = io.flow.v0.models.ExternalCard;
|
|
14024
14174
|
export declare type FeeDeduction = io.flow.v0.models.FeeDeduction;
|
|
14025
14175
|
export declare type FeeDeductionType = io.flow.v0.enums.FeeDeductionType;
|
|
14026
14176
|
export declare type FeeWeight = io.flow.v0.models.FeeWeight;
|
|
@@ -14086,11 +14236,19 @@ export declare type FulfillmentRouting = io.flow.v0.enums.FulfillmentRouting;
|
|
|
14086
14236
|
export declare type FullyHarmonizedItemUpserted = io.flow.v0.models.FullyHarmonizedItemUpserted;
|
|
14087
14237
|
export declare type GatewayAuthenticationData = io.flow.v0.unions.GatewayAuthenticationData;
|
|
14088
14238
|
export declare type GatewayAuthenticationDataForm = io.flow.v0.unions.GatewayAuthenticationDataForm;
|
|
14239
|
+
export declare type GeCatalogItemIngestionResponse = io.flow.v0.enums.GeCatalogItemIngestionResponse;
|
|
14240
|
+
export declare type GeCatalogItemIngestionResult = io.flow.v0.models.GeCatalogItemIngestionResult;
|
|
14241
|
+
export declare type GeCatalogItemInput = io.flow.v0.models.GeCatalogItemInput;
|
|
14242
|
+
export declare type GeEnvironment = io.flow.v0.enums.GeEnvironment;
|
|
14243
|
+
export declare type GeEventType = io.flow.v0.enums.GeEventType;
|
|
14244
|
+
export declare type GeInputAttributes = io.flow.v0.models.GeInputAttributes;
|
|
14245
|
+
export declare type GeInputPrice = io.flow.v0.models.GeInputPrice;
|
|
14089
14246
|
export declare type GeItemDeleted = io.flow.v0.models.GeItemDeleted;
|
|
14090
14247
|
export declare type GeItemInserted = io.flow.v0.models.GeItemInserted;
|
|
14091
14248
|
export declare type GeItemUpdated = io.flow.v0.models.GeItemUpdated;
|
|
14092
|
-
export declare type
|
|
14093
|
-
export declare type
|
|
14249
|
+
export declare type GeProductRestrictionResultDelete = io.flow.v0.models.GeProductRestrictionResultDelete;
|
|
14250
|
+
export declare type GeProductRestrictionResultUpsert = io.flow.v0.models.GeProductRestrictionResultUpsert;
|
|
14251
|
+
export declare type GeRestrictionEvent = io.flow.v0.unions.GeRestrictionEvent;
|
|
14094
14252
|
export declare type GenerateLoad = io.flow.v0.models.GenerateLoad;
|
|
14095
14253
|
export declare type GenericError = io.flow.v0.models.GenericError;
|
|
14096
14254
|
export declare type GenericErrorCode = io.flow.v0.enums.GenericErrorCode;
|
|
@@ -14529,6 +14687,8 @@ export declare type PaymentError = io.flow.v0.models.PaymentError;
|
|
|
14529
14687
|
export declare type PaymentErrorCode = io.flow.v0.enums.PaymentErrorCode;
|
|
14530
14688
|
export declare type PaymentFailure = io.flow.v0.models.PaymentFailure;
|
|
14531
14689
|
export declare type PaymentFailureCode = io.flow.v0.enums.PaymentFailureCode;
|
|
14690
|
+
export declare type PaymentFee = io.flow.v0.models.PaymentFee;
|
|
14691
|
+
export declare type PaymentFeeType = io.flow.v0.enums.PaymentFeeType;
|
|
14532
14692
|
export declare type PaymentForm = io.flow.v0.unions.PaymentForm;
|
|
14533
14693
|
export declare type PaymentInformation = io.flow.v0.models.PaymentInformation;
|
|
14534
14694
|
export declare type PaymentMethod = io.flow.v0.models.PaymentMethod;
|
|
@@ -15120,6 +15280,12 @@ export declare type TransactionNetworkDetailsCard = io.flow.v0.models.Transactio
|
|
|
15120
15280
|
export declare type TransactionReference = io.flow.v0.models.TransactionReference;
|
|
15121
15281
|
export declare type TransactionSource = io.flow.v0.enums.TransactionSource;
|
|
15122
15282
|
export declare type TransactionUpserted = io.flow.v0.models.TransactionUpserted;
|
|
15283
|
+
export declare type Transfer = io.flow.v0.models.Transfer;
|
|
15284
|
+
export declare type TransferDeleted = io.flow.v0.models.TransferDeleted;
|
|
15285
|
+
export declare type TransferReference = io.flow.v0.unions.TransferReference;
|
|
15286
|
+
export declare type TransferStatus = io.flow.v0.enums.TransferStatus;
|
|
15287
|
+
export declare type TransferType = io.flow.v0.enums.TransferType;
|
|
15288
|
+
export declare type TransferUpserted = io.flow.v0.models.TransferUpserted;
|
|
15123
15289
|
export declare type TransitEstimate = io.flow.v0.models.TransitEstimate;
|
|
15124
15290
|
export declare type TransitWindow = io.flow.v0.models.TransitWindow;
|
|
15125
15291
|
export declare type TrueupLabelBase = io.flow.v0.models.TrueupLabelBase;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/types",
|
|
3
|
-
"version": "11.24.
|
|
3
|
+
"version": "11.24.114",
|
|
4
4
|
"description": "TypeScript type definitions for custom types found in Flow API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"maintainers": [
|
|
26
26
|
"Christian Muñoz <christian.munoz@flow.io>"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "20eb3ad55f76873162f52f64cb42347be379f34e"
|
|
29
29
|
}
|