@flowio/api-types 0.0.243 → 0.0.245

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.
@@ -1,8 +1,6 @@
1
1
  declare namespace io.flow.label.v0.enums {
2
2
  type CostEstimateSource = 'flow' | 'channel';
3
3
  type Direction = 'outbound' | 'return';
4
- type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
5
- type EstimateType = 'Estimated' | 'Final';
6
4
  type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
7
5
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
8
6
  type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
@@ -78,15 +76,6 @@ declare namespace io.flow.label.v0.models {
78
76
  readonly 'shipment_recipient'?: io.flow.label.v0.enums.ShipmentRecipient;
79
77
  }
80
78
 
81
- interface Estimate {
82
- readonly 'id': string;
83
- readonly 'organization_id': string;
84
- readonly 'label_id': string;
85
- readonly 'estimate': io.flow.label.v0.models.ShippingLabelHopSummary;
86
- readonly 'type': io.flow.label.v0.enums.EstimateType;
87
- readonly 'origin'?: io.flow.label.v0.enums.EstimateOrigin;
88
- }
89
-
90
79
  interface LabelOrderSummary {
91
80
  readonly 'id': string;
92
81
  readonly 'number': string;
@@ -12,6 +12,7 @@ declare namespace io.flow.payment.v0.enums {
12
12
  type CvvCode = 'match' | 'suspicious' | 'unsupported' | 'no_match';
13
13
  type CvvResultCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
14
14
  type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
15
+ type PaymentFeeType = 'fx' | 'mor';
15
16
  type PaymentSourceConfirmationActionType = 'cvv' | 'billing_address' | 'number';
16
17
  type RefundDeclineCode = 'expired' | 'insufficient_funds' | 'unknown';
17
18
  type RefundFailureCategory = 'amount_too_high' | 'amount_too_low' | 'not_enough_balance' | 'insufficient_funds' | 'refund_period_expired' | 'dispute' | 'not_captured' | 'unsupported_payment_method' | 'unsupported_partial_refund' | 'invalid_currency' | 'card_no_longer_valid' | 'general';
@@ -22,6 +23,8 @@ declare namespace io.flow.payment.v0.enums {
22
23
  type ThreeDSecureCode = 'verified' | 'not_verified' | 'failed';
23
24
  type ThreedsTwoChallengeViewport = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen';
24
25
  type TokenType = 'permanent' | 'one_time';
26
+ type TransferStatus = 'succeeded' | 'canceled';
27
+ 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';
25
28
  }
26
29
 
27
30
  declare namespace io.flow.payment.v0.models {
@@ -210,6 +213,7 @@ declare namespace io.flow.payment.v0.models {
210
213
  readonly 'attributes'?: Record<string, string>;
211
214
  readonly 'status'?: io.flow.payment.v0.enums.CaptureStatus;
212
215
  readonly 'base'?: io.flow.common.v0.models.Money;
216
+ readonly 'fees'?: io.flow.payment.v0.models.PaymentFee[];
213
217
  }
214
218
 
215
219
  interface CaptureError {
@@ -235,6 +239,7 @@ declare namespace io.flow.payment.v0.models {
235
239
  }
236
240
 
237
241
  interface CaptureReference {
242
+ readonly 'discriminator': 'capture_reference';
238
243
  readonly 'id': string;
239
244
  readonly 'key': string;
240
245
  }
@@ -449,11 +454,28 @@ declare namespace io.flow.payment.v0.models {
449
454
  readonly 'account_holder_name'?: string;
450
455
  }
451
456
 
457
+ interface DisputeReference {
458
+ readonly 'discriminator': 'dispute_reference';
459
+ readonly 'id': string;
460
+ readonly 'key': string;
461
+ }
462
+
463
+ interface ExchangedMoney {
464
+ readonly 'fx_rate': number;
465
+ readonly 'money': io.flow.common.v0.models.Money;
466
+ }
467
+
452
468
  interface Expiration {
453
469
  readonly 'month': number;
454
470
  readonly 'year': number;
455
471
  }
456
472
 
473
+ interface ExternalCard {
474
+ readonly 'discriminator': 'external_card';
475
+ readonly 'id': string;
476
+ readonly 'type'?: io.flow.payment.v0.enums.CardType;
477
+ }
478
+
457
479
  interface GooglePayAuthorizationPayload {
458
480
  readonly 'discriminator': 'google_pay_authorization_payload';
459
481
  readonly 'payload': any/*object*/;
@@ -590,6 +612,12 @@ declare namespace io.flow.payment.v0.models {
590
612
  readonly 'codes': io.flow.payment.v0.enums.PaymentErrorCode[];
591
613
  }
592
614
 
615
+ interface PaymentFee {
616
+ readonly 'type': io.flow.payment.v0.enums.PaymentFeeType;
617
+ readonly 'money': io.flow.common.v0.models.Money;
618
+ readonly 'base'?: io.flow.common.v0.models.Money;
619
+ }
620
+
593
621
  interface PaymentPaymentRequestReference {
594
622
  readonly 'discriminator': 'payment_request';
595
623
  readonly 'payment_request_id': string;
@@ -790,6 +818,7 @@ declare namespace io.flow.payment.v0.models {
790
818
  }
791
819
 
792
820
  interface RefundReference {
821
+ readonly 'discriminator': 'refund_reference';
793
822
  readonly 'id': string;
794
823
  readonly 'key': string;
795
824
  }
@@ -915,6 +944,17 @@ declare namespace io.flow.payment.v0.models {
915
944
  readonly 'network'?: io.flow.payment.v0.enums.CardType;
916
945
  }
917
946
 
947
+ interface Transfer {
948
+ readonly 'id': string;
949
+ readonly 'type': io.flow.payment.v0.enums.TransferType;
950
+ readonly 'money': io.flow.common.v0.models.Money;
951
+ readonly 'transferred_money': io.flow.payment.v0.models.ExchangedMoney;
952
+ readonly 'status': io.flow.payment.v0.enums.TransferStatus;
953
+ readonly 'created_at': string;
954
+ readonly 'reference': io.flow.payment.v0.unions.TransferReference;
955
+ readonly 'transferred_at': string;
956
+ }
957
+
918
958
  interface VirtualCard {
919
959
  readonly 'id': string;
920
960
  readonly 'key': string;
@@ -985,7 +1025,7 @@ declare namespace io.flow.payment.v0.unions {
985
1025
  type BrowserActionConfiguration = (io.flow.payment.v0.models.CardBrowserActionConfiguration);
986
1026
  type ConfirmationDetails = (io.flow.payment.v0.models.DirectDebit | io.flow.payment.v0.models.CardConfirmationSummary);
987
1027
  type DeviceDetails = (io.flow.payment.v0.models.DeviceDetailsBrowser);
988
- type ExpandableCard = (io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary);
1028
+ type ExpandableCard = (io.flow.payment.v0.models.Card | io.flow.payment.v0.models.CardReference | io.flow.payment.v0.models.CardSummary | io.flow.payment.v0.models.ExternalCard);
989
1029
  type ExpandablePaymentProcessor = (io.flow.payment.v0.models.PaymentProcessor | io.flow.payment.v0.models.PaymentProcessorReference);
990
1030
  type GatewayAuthenticationData = (io.flow.payment.v0.models.StripeAuthenticationData);
991
1031
  type GatewayAuthenticationDataForm = (io.flow.payment.v0.models.StripeAuthenticationDataForm);
@@ -1000,4 +1040,5 @@ declare namespace io.flow.payment.v0.unions {
1000
1040
  type ThreedsChallengeAction = (io.flow.payment.v0.models.ThreedsTwoChallengeRequest);
1001
1041
  type ThreedsIdentifyAction = (io.flow.payment.v0.models.ThreedsTwoMethod);
1002
1042
  type TransactionDetails = (io.flow.payment.v0.models.TransactionDetailsCard);
1043
+ type TransferReference = (io.flow.payment.v0.models.CaptureReference | io.flow.payment.v0.models.RefundReference | io.flow.payment.v0.models.DisputeReference);
1003
1044
  }
@@ -52,6 +52,7 @@ declare namespace io.flow.ratecard.v0.models {
52
52
  interface DutiesTaxesPaidSurchargeServiceFee {
53
53
  readonly 'discriminator': 'duties_taxes_paid_surcharge_service_fee';
54
54
  readonly 'amount': io.flow.common.v0.models.Money;
55
+ readonly 'destination_countries'?: string[];
55
56
  readonly 'starts_at'?: string;
56
57
  readonly 'ends_at'?: string;
57
58
  }
@@ -319,6 +320,8 @@ declare namespace io.flow.ratecard.v0.models {
319
320
  readonly 'discriminator': 'ratecard_estimate_v4';
320
321
  readonly 'hops': io.flow.ratecard.v0.models.HopV2[];
321
322
  readonly 'delivered_duty': io.flow.common.v0.enums.DeliveredDuty;
323
+ readonly 'distance_unit_of_measurement'?: io.flow.common.v0.enums.UnitOfMeasurement;
324
+ readonly 'weight_unit_of_measurement'?: io.flow.common.v0.enums.UnitOfMeasurement;
322
325
  readonly 'dimensional_weight'?: io.flow.common.v0.models.Measurement;
323
326
  readonly 'gravitational_weight'?: io.flow.common.v0.models.Measurement;
324
327
  readonly 'ratecard_id'?: string;
@@ -13,6 +13,10 @@ declare namespace io.flow.stripe.v0.enums {
13
13
  type CheckOutcome = 'pass' | 'fail' | 'unavailable' | 'unchecked';
14
14
  type CodeVerificationStatus = 'pending' | 'succeeded' | 'failed';
15
15
  type ConfirmationMethod = 'automatic' | 'manual';
16
+ 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';
17
+ type ConnectReportConnectReportingCategory = 'advance' | 'advance_funding' | 'connect_collection_transfer' | 'connect_reserved_funds' | 'platform_earning' | 'platform_earning_refund' | 'transfer' | 'transfer_reversal';
18
+ 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';
19
+ type ConnectReportPaymentReportingCategory = 'charge' | 'charge_failure' | 'dispute' | 'dispute_reversal' | 'partial_capture_reversal' | 'refund' | 'refund_failure';
16
20
  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';
17
21
  type DisputeEventType = 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated';
18
22
  type DisputePaymentMethodDetailsCardCaseType = 'chargeback' | 'inquiry';
@@ -1272,6 +1276,21 @@ declare namespace io.flow.stripe.v0.models {
1272
1276
 
1273
1277
  declare namespace io.flow.stripe.v0.unions {
1274
1278
  type CardWallet = (io.flow.stripe.v0.models.Masterpass | io.flow.stripe.v0.models.ApplePay | io.flow.stripe.v0.models.VisaCheckout);
1279
+
1280
+ type ConnectReportReportingCategory = ({
1281
+ discriminator: 'connect_report_payment_reporting_category',
1282
+ value: io.flow.stripe.v0.enums.ConnectReportPaymentReportingCategory
1283
+ } | {
1284
+ discriminator: 'connect_report_balance_reporting_category',
1285
+ value: io.flow.stripe.v0.enums.ConnectReportBalanceReportingCategory
1286
+ } | {
1287
+ discriminator: 'connect_report_issuing_reporting_category',
1288
+ value: io.flow.stripe.v0.enums.ConnectReportIssuingReportingCategory
1289
+ } | {
1290
+ discriminator: 'connect_report_connect_reporting_category',
1291
+ value: io.flow.stripe.v0.enums.ConnectReportConnectReportingCategory
1292
+ });
1293
+
1275
1294
  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);
1276
1295
  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);
1277
1296
  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);
@@ -1,5 +1,5 @@
1
1
  declare namespace io.flow.units.v0.enums {
2
2
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
3
- type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
3
+ type UnitOfVolume = 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter';
4
4
  type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
5
5
  }
@@ -54,9 +54,7 @@ declare namespace io.flow.v0.enums {
54
54
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
55
55
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
56
56
  type Environment = 'sandbox' | 'production';
57
- type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
58
- type EstimateType = 'Estimated' | 'Final';
59
- 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';
57
+ 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';
60
58
  type ExceptionType = 'open' | 'closed';
61
59
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
62
60
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -77,6 +75,9 @@ declare namespace io.flow.v0.enums {
77
75
  type FulfillmentMethodType = 'fulfillment_method';
78
76
  type FulfillmentMethodValue = 'digital' | 'physical';
79
77
  type FulfillmentRouting = 'fulfilled_from_center' | 'fulfillment_service';
78
+ type GeCatalogItemIngestionResponse = 'success' | 'failure';
79
+ type GeEnvironment = 'production' | 'sandbox';
80
+ type GeEventType = 'restriction_result' | 'ingestion_result';
80
81
  type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
81
82
  type GoodsSupply = 'export' | 'intra_community' | 'local';
82
83
  type HolidayCalendar = 'us_bank_holidays' | 'jewish_holidays';
@@ -120,7 +121,7 @@ declare namespace io.flow.v0.enums {
120
121
  type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
121
122
  type OrderStatus = 'open' | 'submitted';
122
123
  type OrderStorage = 'do_not_persist' | 'persist';
123
- type OrderType = 'standard' | 'replacement';
124
+ type OrderType = 'standard' | 'replacement' | 'edit';
124
125
  type OrganizationPaymentMethodTag = 'deny';
125
126
  type OrganizationStatus = 'active' | 'inactive' | 'deactivated' | 'provisioned';
126
127
  type OrganizationType = 'standalone' | 'channel';
@@ -129,6 +130,7 @@ declare namespace io.flow.v0.enums {
129
130
  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';
130
131
  type PaymentErrorCode = 'duplicate' | 'invalid_amount' | 'invalid_currency' | 'invalid_method' | 'invalid_order' | 'invalid_customer' | 'invalid_destination' | 'unknown';
131
132
  type PaymentFailureCode = 'action_expired' | 'action_cancelled' | 'action_failed' | 'authorization_declined' | 'not_supported' | 'fraudulent' | 'error' | 'payment_checks_declined';
133
+ type PaymentFeeType = 'fx' | 'mor';
132
134
  type PaymentMethodCapability = 'credit' | 'debit';
133
135
  type PaymentMethodDataOptionType = 'ideal_issuer_option';
134
136
  type PaymentMethodRuleContentKey = 'description';
@@ -202,13 +204,15 @@ declare namespace io.flow.v0.enums {
202
204
  type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
203
205
  type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
204
206
  type TradeAgreementStatus = 'supported' | 'not_supported';
205
- 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' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share' | 'tax_duty_delta';
207
+ 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';
208
+ type TransferStatus = 'succeeded' | 'canceled';
209
+ 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';
206
210
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
207
211
  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';
208
212
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
209
- type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
213
+ type UnitOfMeasurement = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter' | 'gram' | 'kilogram' | 'meter' | 'ounce' | 'pound';
210
214
  type UnitOfTime = 'year' | 'month' | 'week' | 'day' | 'hour' | 'minute';
211
- type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
215
+ type UnitOfVolume = 'cubic_inch' | 'cubic_foot' | 'cubic_millimeter' | 'cubic_centimeter' | 'cubic_meter';
212
216
  type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
213
217
  type UpdatePolicy = 'auto' | 'queue' | 'discard';
214
218
  type UserStatus = 'pending' | 'active' | 'inactive';
@@ -1207,6 +1211,7 @@ declare namespace io.flow.v0.models {
1207
1211
  readonly 'attributes'?: Record<string, string>;
1208
1212
  readonly 'status'?: io.flow.v0.enums.CaptureStatus;
1209
1213
  readonly 'base'?: io.flow.v0.models.Money;
1214
+ readonly 'fees'?: io.flow.v0.models.PaymentFee[];
1210
1215
  }
1211
1216
 
1212
1217
  interface CaptureDeleted {
@@ -1256,6 +1261,7 @@ declare namespace io.flow.v0.models {
1256
1261
  }
1257
1262
 
1258
1263
  interface CaptureReference {
1264
+ readonly 'discriminator': 'capture_reference';
1259
1265
  readonly 'id': string;
1260
1266
  readonly 'key': string;
1261
1267
  }
@@ -2949,6 +2955,12 @@ declare namespace io.flow.v0.models {
2949
2955
  readonly 'discounts': io.flow.v0.models.DiscountForm[];
2950
2956
  }
2951
2957
 
2958
+ interface DisputeReference {
2959
+ readonly 'discriminator': 'dispute_reference';
2960
+ readonly 'id': string;
2961
+ readonly 'key': string;
2962
+ }
2963
+
2952
2964
  interface Duration {
2953
2965
  readonly 'unit': io.flow.v0.enums.UnitOfTime;
2954
2966
  readonly 'value': number;
@@ -2964,6 +2976,7 @@ declare namespace io.flow.v0.models {
2964
2976
  interface DutiesTaxesPaidSurchargeServiceFee {
2965
2977
  readonly 'discriminator': 'duties_taxes_paid_surcharge_service_fee';
2966
2978
  readonly 'amount': io.flow.v0.models.Money;
2979
+ readonly 'destination_countries'?: string[];
2967
2980
  readonly 'starts_at'?: string;
2968
2981
  readonly 'ends_at'?: string;
2969
2982
  }
@@ -3123,15 +3136,6 @@ declare namespace io.flow.v0.models {
3123
3136
  readonly 'issuing_country'?: string;
3124
3137
  }
3125
3138
 
3126
- interface Estimate {
3127
- readonly 'id': string;
3128
- readonly 'organization_id': string;
3129
- readonly 'label_id': string;
3130
- readonly 'estimate': io.flow.v0.models.ShippingLabelHopSummary;
3131
- readonly 'type': io.flow.v0.enums.EstimateType;
3132
- readonly 'origin'?: io.flow.v0.enums.EstimateOrigin;
3133
- }
3134
-
3135
3139
  interface EstimatedDimensions {
3136
3140
  readonly 'depth': io.flow.v0.models.Measurement;
3137
3141
  readonly 'length': io.flow.v0.models.Measurement;
@@ -3150,6 +3154,11 @@ declare namespace io.flow.v0.models {
3150
3154
  readonly 'datetime_range': io.flow.v0.models.DatetimeRange;
3151
3155
  }
3152
3156
 
3157
+ interface ExchangedMoney {
3158
+ readonly 'fx_rate': number;
3159
+ readonly 'money': io.flow.v0.models.Money;
3160
+ }
3161
+
3153
3162
  interface ExclusionRule {
3154
3163
  readonly 'id': string;
3155
3164
  readonly 'q': string;
@@ -3525,6 +3534,12 @@ declare namespace io.flow.v0.models {
3525
3534
  readonly 'export': io.flow.v0.models.Export;
3526
3535
  }
3527
3536
 
3537
+ interface ExternalCard {
3538
+ readonly 'discriminator': 'external_card';
3539
+ readonly 'id': string;
3540
+ readonly 'type'?: io.flow.v0.enums.CardType;
3541
+ }
3542
+
3528
3543
  interface FeeDeduction {
3529
3544
  readonly 'type': io.flow.v0.enums.FeeDeductionType;
3530
3545
  readonly 'amount': number;
@@ -3823,6 +3838,46 @@ declare namespace io.flow.v0.models {
3823
3838
  readonly 'landed_costs': io.flow.v0.models.LaneLandedCost[];
3824
3839
  }
3825
3840
 
3841
+ interface GeCatalogItemIngestionResult {
3842
+ readonly 'discriminator': 'ge_catalog_item_ingestion_result';
3843
+ readonly 'event_id': string;
3844
+ readonly 'event_type': io.flow.v0.enums.GeEventType;
3845
+ readonly 'environment': io.flow.v0.enums.GeEnvironment;
3846
+ readonly 'timestamp': string;
3847
+ readonly 'source': string;
3848
+ readonly 'response': io.flow.v0.enums.GeCatalogItemIngestionResponse;
3849
+ readonly 'message': string;
3850
+ }
3851
+
3852
+ interface GeCatalogItemInput {
3853
+ readonly 'event_id': string;
3854
+ readonly 'number': string;
3855
+ readonly 'organization_id': string;
3856
+ readonly 'name': string;
3857
+ readonly 'description': string;
3858
+ readonly 'price': io.flow.v0.models.GeInputPrice;
3859
+ readonly 'attributes': io.flow.v0.models.GeInputAttributes;
3860
+ readonly 'locale': string;
3861
+ readonly 'id': string;
3862
+ readonly 'categories': string[];
3863
+ readonly 'created_at': string;
3864
+ readonly 'updated_at': string;
3865
+ readonly 'images': string[];
3866
+ }
3867
+
3868
+ interface GeInputAttributes {
3869
+ readonly 'country_of_origin': string;
3870
+ readonly 'ge_hs6_code': string;
3871
+ readonly 'product_id': string;
3872
+ readonly 'ge_organization_name': string;
3873
+ }
3874
+
3875
+ interface GeInputPrice {
3876
+ readonly 'amount': number;
3877
+ readonly 'currency': string;
3878
+ readonly 'label': string;
3879
+ }
3880
+
3826
3881
  interface GeItemDeleted {
3827
3882
  readonly 'discriminator': 'ge_item_deleted';
3828
3883
  readonly 'event_id': string;
@@ -3847,19 +3902,23 @@ declare namespace io.flow.v0.models {
3847
3902
  readonly 'item': io.flow.v0.models.Item;
3848
3903
  }
3849
3904
 
3850
- interface GeProductRestrictionResultDeleted {
3851
- readonly 'discriminator': 'ge_product_restriction_result_deleted';
3905
+ interface GeProductRestrictionResultDelete {
3906
+ readonly 'discriminator': 'ge_product_restriction_result_delete';
3907
+ readonly 'organization': string;
3852
3908
  readonly 'event_id': string;
3909
+ readonly 'event_type': io.flow.v0.enums.GeEventType;
3910
+ readonly 'environment': io.flow.v0.enums.GeEnvironment;
3853
3911
  readonly 'timestamp': string;
3854
- readonly 'organization': string;
3855
3912
  readonly 'id': string;
3856
3913
  }
3857
3914
 
3858
- interface GeProductRestrictionResultUpserted {
3859
- readonly 'discriminator': 'ge_product_restriction_result_upserted';
3915
+ interface GeProductRestrictionResultUpsert {
3916
+ readonly 'discriminator': 'ge_product_restriction_result_upsert';
3917
+ readonly 'organization': string;
3860
3918
  readonly 'event_id': string;
3919
+ readonly 'event_type': io.flow.v0.enums.GeEventType;
3920
+ readonly 'environment': io.flow.v0.enums.GeEnvironment;
3861
3921
  readonly 'timestamp': string;
3862
- readonly 'organization': string;
3863
3922
  readonly 'ge_product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
3864
3923
  }
3865
3924
 
@@ -6568,6 +6627,12 @@ declare namespace io.flow.v0.models {
6568
6627
  readonly 'failure_message': string;
6569
6628
  }
6570
6629
 
6630
+ interface PaymentFee {
6631
+ readonly 'type': io.flow.v0.enums.PaymentFeeType;
6632
+ readonly 'money': io.flow.v0.models.Money;
6633
+ readonly 'base'?: io.flow.v0.models.Money;
6634
+ }
6635
+
6571
6636
  interface PaymentInformation {
6572
6637
  readonly 'amount_refundable'?: number;
6573
6638
  readonly 'amount_refunded'?: number;
@@ -7575,6 +7640,7 @@ declare namespace io.flow.v0.models {
7575
7640
  readonly 'updated_by'?: string;
7576
7641
  readonly 'product_restriction_id'?: string;
7577
7642
  readonly 'hs_code'?: string;
7643
+ readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellablilityRegionResult[];
7578
7644
  }
7579
7645
 
7580
7646
  interface ProductRestrictionResultDeleted {
@@ -7877,6 +7943,8 @@ declare namespace io.flow.v0.models {
7877
7943
  readonly 'discriminator': 'ratecard_estimate_v4';
7878
7944
  readonly 'hops': io.flow.v0.models.HopV2[];
7879
7945
  readonly 'delivered_duty': io.flow.v0.enums.DeliveredDuty;
7946
+ readonly 'distance_unit_of_measurement'?: io.flow.v0.enums.UnitOfMeasurement;
7947
+ readonly 'weight_unit_of_measurement'?: io.flow.v0.enums.UnitOfMeasurement;
7880
7948
  readonly 'dimensional_weight'?: io.flow.v0.models.Measurement;
7881
7949
  readonly 'gravitational_weight'?: io.flow.v0.models.Measurement;
7882
7950
  readonly 'ratecard_id'?: string;
@@ -8185,6 +8253,7 @@ declare namespace io.flow.v0.models {
8185
8253
  }
8186
8254
 
8187
8255
  interface RefundReference {
8256
+ readonly 'discriminator': 'refund_reference';
8188
8257
  readonly 'id': string;
8189
8258
  readonly 'key': string;
8190
8259
  }
@@ -10034,6 +10103,33 @@ declare namespace io.flow.v0.models {
10034
10103
  readonly 'transaction': io.flow.v0.models.Transaction;
10035
10104
  }
10036
10105
 
10106
+ interface Transfer {
10107
+ readonly 'id': string;
10108
+ readonly 'type': io.flow.v0.enums.TransferType;
10109
+ readonly 'money': io.flow.v0.models.Money;
10110
+ readonly 'transferred_money': io.flow.v0.models.ExchangedMoney;
10111
+ readonly 'status': io.flow.v0.enums.TransferStatus;
10112
+ readonly 'created_at': string;
10113
+ readonly 'reference': io.flow.v0.unions.TransferReference;
10114
+ readonly 'transferred_at': string;
10115
+ }
10116
+
10117
+ interface TransferDeleted {
10118
+ readonly 'discriminator': 'transfer_deleted';
10119
+ readonly 'event_id': string;
10120
+ readonly 'timestamp': string;
10121
+ readonly 'organization': string;
10122
+ readonly 'id': string;
10123
+ }
10124
+
10125
+ interface TransferUpserted {
10126
+ readonly 'discriminator': 'transfer_upserted';
10127
+ readonly 'event_id': string;
10128
+ readonly 'timestamp': string;
10129
+ readonly 'organization': string;
10130
+ readonly 'transfer': io.flow.v0.models.Transfer;
10131
+ }
10132
+
10037
10133
  interface TransitEstimate {
10038
10134
  readonly 'origin': io.flow.v0.enums.DeliveryWindowLocation;
10039
10135
  readonly 'destination': io.flow.v0.enums.DeliveryWindowLocation;
@@ -10332,8 +10428,8 @@ declare namespace io.flow.v0.unions {
10332
10428
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
10333
10429
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
10334
10430
  type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
10335
- 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.GeProductRestrictionResultUpserted | io.flow.v0.models.GeProductRestrictionResultDeleted | 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.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);
10336
- type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
10431
+ 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);
10432
+ type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
10337
10433
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
10338
10434
  type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
10339
10435
  type ExpandableOrder = (io.flow.v0.models.Order | io.flow.v0.models.OrderReference);
@@ -10348,6 +10444,7 @@ declare namespace io.flow.v0.unions {
10348
10444
  type FuelSurchargeRate = (io.flow.v0.models.FuelSurchargePercent | io.flow.v0.models.FuelSurchargeByWeight);
10349
10445
  type GatewayAuthenticationData = (io.flow.v0.models.StripeAuthenticationData);
10350
10446
  type GatewayAuthenticationDataForm = (io.flow.v0.models.StripeAuthenticationDataForm);
10447
+ type GeRestrictionEvent = (io.flow.v0.models.GeProductRestrictionResultUpsert | io.flow.v0.models.GeProductRestrictionResultDelete | io.flow.v0.models.GeCatalogItemIngestionResult);
10351
10448
  type InlineActionConfiguration = (io.flow.v0.models.BrowserInlineActionConfiguration);
10352
10449
  type InputSpecificationLimitation = (io.flow.v0.models.InputSpecificationLimitationMax);
10353
10450
  type KnowYourBusiness = (io.flow.v0.models.KnowYourBusinessUsa);
@@ -10420,4 +10517,5 @@ declare namespace io.flow.v0.unions {
10420
10517
  type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
10421
10518
  type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
10422
10519
  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);
10520
+ type TransferReference = (io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference);
10423
10521
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-types",
3
- "version": "0.0.243",
3
+ "version": "0.0.245",
4
4
  "description": "Global TypeScript typings for Flow Commerce API",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,5 +14,5 @@
14
14
  "scripts": {
15
15
  "generate": "apibuilder update && node scripts/generate-index.js"
16
16
  },
17
- "gitHead": "804cd1afec6f2a750da3a0f134494fec43c1f1f7"
17
+ "gitHead": "20eb3ad55f76873162f52f64cb42347be379f34e"
18
18
  }