@flowio/api-prop-types 10.16.87 → 10.16.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api.d.ts +32 -44
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +32 -44
- package/src/api.js +68 -77
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-prop-types",
|
|
3
|
-
"version": "10.16.
|
|
3
|
+
"version": "10.16.88",
|
|
4
4
|
"description": "PropType validators that work with Flow API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"prop-types": "^15.7.0"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "ae8c62050d9783d8da6c3d07da43b35187197742"
|
|
33
33
|
}
|
package/src/api.d.ts
CHANGED
|
@@ -170,6 +170,8 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
170
170
|
type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
|
|
171
171
|
type DisputeReason = 'bank_cannot_process' | 'check_returned' | 'credit_not_processed' | 'customer_initiated' | 'debit_not_authorized' | 'duplicate' | 'fraudulent' | 'general' | 'incorrect_account_details' | 'insufficient_funds' | 'product_not_received' | 'product_unacceptable' | 'subscription_canceled' | 'unrecognized';
|
|
172
172
|
type DisputeStatus = 'warning_needs_response' | 'warning_under_review' | 'warning_closed' | 'needs_response' | 'under_review' | 'won' | 'lost';
|
|
173
|
+
type EarlyFraudWarningEventType = 'radar.early_fraud_warning';
|
|
174
|
+
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';
|
|
173
175
|
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';
|
|
174
176
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
175
177
|
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';
|
|
@@ -1228,6 +1230,17 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1228
1230
|
readonly 'previous_attributes'?: any/*object*/;
|
|
1229
1231
|
}
|
|
1230
1232
|
|
|
1233
|
+
interface StripeEarlyFraudWarningEvent {
|
|
1234
|
+
readonly 'id': string;
|
|
1235
|
+
readonly 'object': io.flow.stripe.v0.enums.EarlyFraudWarningEventType;
|
|
1236
|
+
readonly 'actionable': boolean;
|
|
1237
|
+
readonly 'charge': string;
|
|
1238
|
+
readonly 'created': number;
|
|
1239
|
+
readonly 'fraud_type': io.flow.stripe.v0.enums.EarlyFraudWarningType;
|
|
1240
|
+
readonly 'livemode': boolean;
|
|
1241
|
+
readonly 'payment_intent'?: string;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1231
1244
|
interface StripeError {
|
|
1232
1245
|
readonly 'type': io.flow.stripe.v0.enums.ErrorType;
|
|
1233
1246
|
readonly 'charge'?: string;
|
|
@@ -3106,10 +3119,6 @@ declare namespace io.flow.ben.test.internal.v0.models {
|
|
|
3106
3119
|
readonly 'num_events': number;
|
|
3107
3120
|
}
|
|
3108
3121
|
|
|
3109
|
-
interface SvitlanaTest {
|
|
3110
|
-
readonly 'name': string;
|
|
3111
|
-
}
|
|
3112
|
-
|
|
3113
3122
|
interface Test {
|
|
3114
3123
|
readonly 'id': string;
|
|
3115
3124
|
readonly 'name': string;
|
|
@@ -4666,7 +4675,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4666
4675
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
4667
4676
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
4668
4677
|
type Environment = 'sandbox' | 'production';
|
|
4669
|
-
type EventType = 'test_upserted' | 'generate_load' | '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' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_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' | 'email_notification_upserted' | 'email_notification_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' | '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' | '
|
|
4678
|
+
type EventType = 'test_upserted' | 'generate_load' | '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' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_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' | 'email_notification_upserted' | 'email_notification_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' | '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' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_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' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_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';
|
|
4670
4679
|
type ExceptionType = 'open' | 'closed';
|
|
4671
4680
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4672
4681
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -4694,6 +4703,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4694
4703
|
type ImportType = 'catalog_items' | 'catalog_items_external' | 'customs_descriptions' | 'customs_description_tariffs' | 'experiences_with_settings' | 'harmonization_codes' | 'item_prices' | 'item_form_overlays' | 'price_book_items' | 'price_book_items_query' | 'ratecard_lanes' | 'order_service_changes';
|
|
4695
4704
|
type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
|
|
4696
4705
|
type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
|
|
4706
|
+
type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
4697
4707
|
type InlineWindowViewportSize = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen' | 'responsive';
|
|
4698
4708
|
type InputSpecificationType = 'text' | 'number';
|
|
4699
4709
|
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
@@ -8795,6 +8805,17 @@ declare namespace io.flow.v0.models {
|
|
|
8795
8805
|
readonly 'label': string;
|
|
8796
8806
|
}
|
|
8797
8807
|
|
|
8808
|
+
interface IncotermIncludes {
|
|
8809
|
+
readonly 'duties': boolean;
|
|
8810
|
+
readonly 'taxes': boolean;
|
|
8811
|
+
}
|
|
8812
|
+
|
|
8813
|
+
interface IncotermSummary {
|
|
8814
|
+
readonly 'configuration': io.flow.v0.enums.IncotermConfiguration;
|
|
8815
|
+
readonly 'includes': io.flow.v0.models.IncotermIncludes;
|
|
8816
|
+
readonly 'reason'?: string;
|
|
8817
|
+
}
|
|
8818
|
+
|
|
8798
8819
|
interface IndirectTax {
|
|
8799
8820
|
readonly 'number'?: string;
|
|
8800
8821
|
readonly 'id'?: string;
|
|
@@ -10027,6 +10048,7 @@ declare namespace io.flow.v0.models {
|
|
|
10027
10048
|
readonly 'geo'?: io.flow.v0.models.OrderGeo;
|
|
10028
10049
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
10029
10050
|
readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
|
|
10051
|
+
readonly 'incoterm_summary'?: io.flow.v0.models.IncotermSummary;
|
|
10030
10052
|
}
|
|
10031
10053
|
|
|
10032
10054
|
interface OrderAddress {
|
|
@@ -13060,21 +13082,6 @@ declare namespace io.flow.v0.models {
|
|
|
13060
13082
|
readonly 'roles': io.flow.v0.enums.FlowRole[];
|
|
13061
13083
|
}
|
|
13062
13084
|
|
|
13063
|
-
interface RuleDeleted {
|
|
13064
|
-
readonly 'discriminator': 'rule_deleted';
|
|
13065
|
-
readonly 'event_id': string;
|
|
13066
|
-
readonly 'timestamp': string;
|
|
13067
|
-
readonly 'id': string;
|
|
13068
|
-
}
|
|
13069
|
-
|
|
13070
|
-
interface RuleUpserted {
|
|
13071
|
-
readonly 'discriminator': 'rule_upserted';
|
|
13072
|
-
readonly 'event_id': string;
|
|
13073
|
-
readonly 'timestamp': string;
|
|
13074
|
-
readonly 'organization_id': string;
|
|
13075
|
-
readonly 'rule': io.flow.inventory.v0.models.InventoryRule;
|
|
13076
|
-
}
|
|
13077
|
-
|
|
13078
13085
|
interface Schedule {
|
|
13079
13086
|
readonly 'calendar'?: io.flow.v0.enums.Calendar;
|
|
13080
13087
|
readonly 'holiday': io.flow.v0.enums.HolidayCalendar;
|
|
@@ -13909,25 +13916,6 @@ declare namespace io.flow.v0.models {
|
|
|
13909
13916
|
readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
|
|
13910
13917
|
}
|
|
13911
13918
|
|
|
13912
|
-
interface SnapshotDeleted {
|
|
13913
|
-
readonly 'discriminator': 'snapshot_deleted';
|
|
13914
|
-
readonly 'event_id': string;
|
|
13915
|
-
readonly 'timestamp': string;
|
|
13916
|
-
readonly 'snapshot_id': string;
|
|
13917
|
-
}
|
|
13918
|
-
|
|
13919
|
-
interface SnapshotUpserted {
|
|
13920
|
-
readonly 'discriminator': 'snapshot_upserted';
|
|
13921
|
-
readonly 'event_id': string;
|
|
13922
|
-
readonly 'timestamp': string;
|
|
13923
|
-
readonly 'organization': string;
|
|
13924
|
-
readonly 'snapshot_id': string;
|
|
13925
|
-
readonly 'available': number;
|
|
13926
|
-
readonly 'center_key': string;
|
|
13927
|
-
readonly 'item_number': string;
|
|
13928
|
-
readonly 'quantity': number;
|
|
13929
|
-
}
|
|
13930
|
-
|
|
13931
13919
|
interface SolidusProductExportType {
|
|
13932
13920
|
readonly 'discriminator': 'solidus_product_export_type';
|
|
13933
13921
|
readonly 'numbers'?: string[];
|
|
@@ -14522,6 +14510,7 @@ declare namespace io.flow.v0.models {
|
|
|
14522
14510
|
readonly 'status': io.flow.v0.enums.TrackingStatus;
|
|
14523
14511
|
readonly 'timestamp': string;
|
|
14524
14512
|
readonly 'description'?: string;
|
|
14513
|
+
readonly 'aggregator_status_code'?: string;
|
|
14525
14514
|
}
|
|
14526
14515
|
|
|
14527
14516
|
interface TrackingEventForm {
|
|
@@ -15105,7 +15094,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15105
15094
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
15106
15095
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
15107
15096
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
15108
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | 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.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | 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.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.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | 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.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.
|
|
15097
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | 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.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | 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.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.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | 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.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.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | 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.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.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);
|
|
15109
15098
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
15110
15099
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
15111
15100
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -15278,6 +15267,7 @@ export const imageTag: PropTypes.Requireable<io.flow.v0.enums.ImageTag>;
|
|
|
15278
15267
|
export const importType: PropTypes.Requireable<io.flow.v0.enums.ImportType>;
|
|
15279
15268
|
export const includedLevyKey: PropTypes.Requireable<io.flow.v0.enums.IncludedLevyKey>;
|
|
15280
15269
|
export const incoterm: PropTypes.Requireable<io.flow.v0.enums.Incoterm>;
|
|
15270
|
+
export const incotermConfiguration: PropTypes.Requireable<io.flow.v0.enums.IncotermConfiguration>;
|
|
15281
15271
|
export const inlineWindowViewportSize: PropTypes.Requireable<io.flow.v0.enums.InlineWindowViewportSize>;
|
|
15282
15272
|
export const inputSpecificationType: PropTypes.Requireable<io.flow.v0.enums.InputSpecificationType>;
|
|
15283
15273
|
export const invitationErrorCode: PropTypes.Requireable<io.flow.v0.enums.InvitationErrorCode>;
|
|
@@ -15971,6 +15961,8 @@ export const importVersion: PropTypes.Requireable<io.flow.v0.models.ImportVersio
|
|
|
15971
15961
|
export const inComplianceReview: PropTypes.Requireable<io.flow.v0.models.InComplianceReview>;
|
|
15972
15962
|
export const inboundCartonFee: PropTypes.Requireable<io.flow.v0.models.InboundCartonFee>;
|
|
15973
15963
|
export const includedLevies: PropTypes.Requireable<io.flow.v0.models.IncludedLevies>;
|
|
15964
|
+
export const incotermIncludes: PropTypes.Requireable<io.flow.v0.models.IncotermIncludes>;
|
|
15965
|
+
export const incotermSummary: PropTypes.Requireable<io.flow.v0.models.IncotermSummary>;
|
|
15974
15966
|
export const indirectTax: PropTypes.Requireable<io.flow.v0.models.IndirectTax>;
|
|
15975
15967
|
export const individual: PropTypes.Requireable<io.flow.v0.models.Individual>;
|
|
15976
15968
|
export const inlineAuthorizationDetails: PropTypes.Requireable<io.flow.v0.models.InlineAuthorizationDetails>;
|
|
@@ -16554,8 +16546,6 @@ export const romanization: PropTypes.Requireable<io.flow.v0.models.Romanization>
|
|
|
16554
16546
|
export const romanizationForm: PropTypes.Requireable<io.flow.v0.models.RomanizationForm>;
|
|
16555
16547
|
export const rounding: PropTypes.Requireable<io.flow.v0.models.Rounding>;
|
|
16556
16548
|
export const routeAudit: PropTypes.Requireable<io.flow.v0.models.RouteAudit>;
|
|
16557
|
-
export const ruleDeleted: PropTypes.Requireable<io.flow.v0.models.RuleDeleted>;
|
|
16558
|
-
export const ruleUpserted: PropTypes.Requireable<io.flow.v0.models.RuleUpserted>;
|
|
16559
16549
|
export const schedule: PropTypes.Requireable<io.flow.v0.models.Schedule>;
|
|
16560
16550
|
export const scheduledExport: PropTypes.Requireable<io.flow.v0.models.ScheduledExport>;
|
|
16561
16551
|
export const scheduledExportForm: PropTypes.Requireable<io.flow.v0.models.ScheduledExportForm>;
|
|
@@ -16666,8 +16656,6 @@ export const shopifyVariantFlowMetafield: PropTypes.Requireable<io.flow.v0.model
|
|
|
16666
16656
|
export const shopifyVariantInventoryMetafield: PropTypes.Requireable<io.flow.v0.models.ShopifyVariantInventoryMetafield>;
|
|
16667
16657
|
export const simplePermissionCheck: PropTypes.Requireable<io.flow.v0.models.SimplePermissionCheck>;
|
|
16668
16658
|
export const singlePackageShippingNotificationForm: PropTypes.Requireable<io.flow.v0.models.SinglePackageShippingNotificationForm>;
|
|
16669
|
-
export const snapshotDeleted: PropTypes.Requireable<io.flow.v0.models.SnapshotDeleted>;
|
|
16670
|
-
export const snapshotUpserted: PropTypes.Requireable<io.flow.v0.models.SnapshotUpserted>;
|
|
16671
16659
|
export const solidusProductExportType: PropTypes.Requireable<io.flow.v0.models.SolidusProductExportType>;
|
|
16672
16660
|
export const solidusVariantExportType: PropTypes.Requireable<io.flow.v0.models.SolidusVariantExportType>;
|
|
16673
16661
|
export const statement: PropTypes.Requireable<io.flow.v0.models.Statement>;
|
package/src/api.js
CHANGED
|
@@ -176,6 +176,26 @@ T['io.flow.inventory.v0.models.inventory_backorder'] = PropTypes.exact({
|
|
|
176
176
|
quantity: PropTypes.number.isRequired,
|
|
177
177
|
});
|
|
178
178
|
|
|
179
|
+
T['io.flow.inventory.v0.unions.inventory_strategy'] = PropTypes.oneOfType([
|
|
180
|
+
T['io.flow.inventory.v0.models.inventory_backorder'],
|
|
181
|
+
T['io.flow.inventory.v0.models.inventory_stock'],
|
|
182
|
+
T['io.flow.inventory.v0.models.inventory_unlimited'],
|
|
183
|
+
T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'],
|
|
184
|
+
]);
|
|
185
|
+
|
|
186
|
+
T['io.flow.inventory.v0.models.inventory_rule_form'] = PropTypes.exact({
|
|
187
|
+
position: PropTypes.number.isRequired,
|
|
188
|
+
query: PropTypes.string.isRequired,
|
|
189
|
+
strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
|
|
190
|
+
});
|
|
191
|
+
|
|
192
|
+
T['io.flow.inventory.v0.models.inventory_rule'] = PropTypes.exact({
|
|
193
|
+
id: PropTypes.string.isRequired,
|
|
194
|
+
position: PropTypes.number.isRequired,
|
|
195
|
+
query: PropTypes.string.isRequired,
|
|
196
|
+
strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
|
|
197
|
+
});
|
|
198
|
+
|
|
179
199
|
T['io.flow.inventory.v0.models.inventory_request_item'] = PropTypes.exact({
|
|
180
200
|
number: PropTypes.string.isRequired,
|
|
181
201
|
quantity: PropTypes.number.isRequired,
|
|
@@ -722,6 +742,13 @@ T['io.flow.inventory.v0.models.inventory_snapshot_version'] = PropTypes.exact({
|
|
|
722
742
|
inventory_snapshot: T['io.flow.inventory.v0.models.inventory_snapshot'].isRequired,
|
|
723
743
|
});
|
|
724
744
|
|
|
745
|
+
T['io.flow.inventory.v0.models.inventory_rule_version'] = PropTypes.exact({
|
|
746
|
+
id: PropTypes.string.isRequired,
|
|
747
|
+
timestamp: PropTypes.string.isRequired,
|
|
748
|
+
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
749
|
+
inventory_rule: T['io.flow.inventory.v0.models.inventory_rule'].isRequired,
|
|
750
|
+
});
|
|
751
|
+
|
|
725
752
|
T['io.flow.catalog.v0.models.subcatalog_version'] = PropTypes.exact({
|
|
726
753
|
id: PropTypes.string.isRequired,
|
|
727
754
|
timestamp: PropTypes.string.isRequired,
|
|
@@ -3148,6 +3175,29 @@ T['io.flow.stripe.v0.models.stripe_event'] = PropTypes.exact({
|
|
|
3148
3175
|
type: PropTypes.string.isRequired,
|
|
3149
3176
|
});
|
|
3150
3177
|
|
|
3178
|
+
T['io.flow.stripe.v0.enums.early_fraud_warning_type'] = PropTypes.oneOf([
|
|
3179
|
+
'card_never_received',
|
|
3180
|
+
'fraudulent_card_application',
|
|
3181
|
+
'made_with_counterfeit_card',
|
|
3182
|
+
'made_with_lost_card',
|
|
3183
|
+
'made_with_stolen_card',
|
|
3184
|
+
'unauthorized_use_of_card',
|
|
3185
|
+
'misc',
|
|
3186
|
+
]);
|
|
3187
|
+
|
|
3188
|
+
T['io.flow.stripe.v0.enums.early_fraud_warning_event_type'] = PropTypes.oneOf(['radar.early_fraud_warning']);
|
|
3189
|
+
|
|
3190
|
+
T['io.flow.stripe.v0.models.stripe_early_fraud_warning_event'] = PropTypes.exact({
|
|
3191
|
+
id: PropTypes.string.isRequired,
|
|
3192
|
+
object: T['io.flow.stripe.v0.enums.early_fraud_warning_event_type'].isRequired,
|
|
3193
|
+
actionable: PropTypes.bool.isRequired,
|
|
3194
|
+
charge: PropTypes.string.isRequired,
|
|
3195
|
+
created: PropTypes.number.isRequired,
|
|
3196
|
+
fraud_type: T['io.flow.stripe.v0.enums.early_fraud_warning_type'].isRequired,
|
|
3197
|
+
livemode: PropTypes.bool.isRequired,
|
|
3198
|
+
payment_intent: PropTypes.string,
|
|
3199
|
+
});
|
|
3200
|
+
|
|
3151
3201
|
T['io.flow.stripe.v0.enums.dispute_event_type'] = PropTypes.oneOf([
|
|
3152
3202
|
'charge.dispute.closed',
|
|
3153
3203
|
'charge.dispute.created',
|
|
@@ -5120,32 +5170,6 @@ T['io.flow.v0.models.manifested_label_upserted'] = PropTypes.exact({
|
|
|
5120
5170
|
fulfillment_key: PropTypes.string,
|
|
5121
5171
|
});
|
|
5122
5172
|
|
|
5123
|
-
T['io.flow.v0.models.snapshot_deleted'] = PropTypes.exact({
|
|
5124
|
-
discriminator: PropTypes.oneOf(['snapshot_deleted']).isRequired,
|
|
5125
|
-
event_id: PropTypes.string.isRequired,
|
|
5126
|
-
timestamp: PropTypes.string.isRequired,
|
|
5127
|
-
snapshot_id: PropTypes.string.isRequired,
|
|
5128
|
-
});
|
|
5129
|
-
|
|
5130
|
-
T['io.flow.v0.models.snapshot_upserted'] = PropTypes.exact({
|
|
5131
|
-
discriminator: PropTypes.oneOf(['snapshot_upserted']).isRequired,
|
|
5132
|
-
event_id: PropTypes.string.isRequired,
|
|
5133
|
-
timestamp: PropTypes.string.isRequired,
|
|
5134
|
-
organization: PropTypes.string.isRequired,
|
|
5135
|
-
snapshot_id: PropTypes.string.isRequired,
|
|
5136
|
-
available: PropTypes.number.isRequired,
|
|
5137
|
-
center_key: PropTypes.string.isRequired,
|
|
5138
|
-
item_number: PropTypes.string.isRequired,
|
|
5139
|
-
quantity: PropTypes.number.isRequired,
|
|
5140
|
-
});
|
|
5141
|
-
|
|
5142
|
-
T['io.flow.v0.models.rule_deleted'] = PropTypes.exact({
|
|
5143
|
-
discriminator: PropTypes.oneOf(['rule_deleted']).isRequired,
|
|
5144
|
-
event_id: PropTypes.string.isRequired,
|
|
5145
|
-
timestamp: PropTypes.string.isRequired,
|
|
5146
|
-
id: PropTypes.string.isRequired,
|
|
5147
|
-
});
|
|
5148
|
-
|
|
5149
5173
|
T['io.flow.v0.models.item_origin_deleted'] = PropTypes.exact({
|
|
5150
5174
|
discriminator: PropTypes.oneOf(['item_origin_deleted']).isRequired,
|
|
5151
5175
|
event_id: PropTypes.string.isRequired,
|
|
@@ -6265,41 +6289,6 @@ T['io.flow.v0.models.session_experiment_form'] = PropTypes.exact({
|
|
|
6265
6289
|
variant: T['io.flow.v0.models.session_experiment_variant_form'],
|
|
6266
6290
|
});
|
|
6267
6291
|
|
|
6268
|
-
T['io.flow.inventory.v0.unions.inventory_strategy'] = PropTypes.oneOfType([
|
|
6269
|
-
T['io.flow.inventory.v0.models.inventory_backorder'],
|
|
6270
|
-
T['io.flow.inventory.v0.models.inventory_stock'],
|
|
6271
|
-
T['io.flow.inventory.v0.models.inventory_unlimited'],
|
|
6272
|
-
T['io.flow.inventory.v0.models.inventory_follow_ecommerce_platform'],
|
|
6273
|
-
]);
|
|
6274
|
-
|
|
6275
|
-
T['io.flow.inventory.v0.models.inventory_rule_form'] = PropTypes.exact({
|
|
6276
|
-
position: PropTypes.number.isRequired,
|
|
6277
|
-
query: PropTypes.string.isRequired,
|
|
6278
|
-
strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
|
|
6279
|
-
});
|
|
6280
|
-
|
|
6281
|
-
T['io.flow.inventory.v0.models.inventory_rule'] = PropTypes.exact({
|
|
6282
|
-
id: PropTypes.string.isRequired,
|
|
6283
|
-
position: PropTypes.number.isRequired,
|
|
6284
|
-
query: PropTypes.string.isRequired,
|
|
6285
|
-
strategy: T['io.flow.inventory.v0.unions.inventory_strategy'].isRequired,
|
|
6286
|
-
});
|
|
6287
|
-
|
|
6288
|
-
T['io.flow.inventory.v0.models.inventory_rule_version'] = PropTypes.exact({
|
|
6289
|
-
id: PropTypes.string.isRequired,
|
|
6290
|
-
timestamp: PropTypes.string.isRequired,
|
|
6291
|
-
type: T['io.flow.common.v0.enums.change_type'].isRequired,
|
|
6292
|
-
inventory_rule: T['io.flow.inventory.v0.models.inventory_rule'].isRequired,
|
|
6293
|
-
});
|
|
6294
|
-
|
|
6295
|
-
T['io.flow.v0.models.rule_upserted'] = PropTypes.exact({
|
|
6296
|
-
discriminator: PropTypes.oneOf(['rule_upserted']).isRequired,
|
|
6297
|
-
event_id: PropTypes.string.isRequired,
|
|
6298
|
-
timestamp: PropTypes.string.isRequired,
|
|
6299
|
-
organization_id: PropTypes.string.isRequired,
|
|
6300
|
-
rule: T['io.flow.inventory.v0.models.inventory_rule'].isRequired,
|
|
6301
|
-
});
|
|
6302
|
-
|
|
6303
6292
|
T['io.flow.v0.enums.return_policy_state'] = PropTypes.oneOf(['current', 'deleting', 'updating']);
|
|
6304
6293
|
|
|
6305
6294
|
T['io.flow.v0.models.return_policy_statistic'] = PropTypes.exact({
|
|
@@ -7910,6 +7899,19 @@ T['io.flow.v0.models.issuer_reference'] = PropTypes.exact({
|
|
|
7910
7899
|
id: PropTypes.string.isRequired,
|
|
7911
7900
|
});
|
|
7912
7901
|
|
|
7902
|
+
T['io.flow.v0.models.incoterm_includes'] = PropTypes.exact({
|
|
7903
|
+
duties: PropTypes.bool.isRequired,
|
|
7904
|
+
taxes: PropTypes.bool.isRequired,
|
|
7905
|
+
});
|
|
7906
|
+
|
|
7907
|
+
T['io.flow.v0.enums.incoterm_configuration'] = PropTypes.oneOf(['DDP', 'DAP', 'DDU', 'UNSUPPORTED']);
|
|
7908
|
+
|
|
7909
|
+
T['io.flow.v0.models.incoterm_summary'] = PropTypes.exact({
|
|
7910
|
+
configuration: T['io.flow.v0.enums.incoterm_configuration'].isRequired,
|
|
7911
|
+
includes: T['io.flow.v0.models.incoterm_includes'].isRequired,
|
|
7912
|
+
reason: PropTypes.string,
|
|
7913
|
+
});
|
|
7914
|
+
|
|
7913
7915
|
T['io.flow.v0.enums.included_levy_key'] = PropTypes.oneOf(['duty', 'vat', 'vat_and_duty', 'none']);
|
|
7914
7916
|
|
|
7915
7917
|
T['io.flow.v0.models.price_book_form'] = PropTypes.exact({
|
|
@@ -12721,6 +12723,7 @@ T['io.flow.v0.models.tracking_event'] = PropTypes.exact({
|
|
|
12721
12723
|
status: T['io.flow.v0.enums.tracking_status'].isRequired,
|
|
12722
12724
|
timestamp: PropTypes.string.isRequired,
|
|
12723
12725
|
description: PropTypes.string,
|
|
12726
|
+
aggregator_status_code: PropTypes.string,
|
|
12724
12727
|
});
|
|
12725
12728
|
|
|
12726
12729
|
T['io.flow.v0.models.tracking_label'] = PropTypes.exact({
|
|
@@ -15235,6 +15238,7 @@ T['io.flow.v0.models.order'] = PropTypes.exact({
|
|
|
15235
15238
|
geo: T['io.flow.v0.models.order_geo'],
|
|
15236
15239
|
device_details: T['io.flow.v0.unions.device_details'],
|
|
15237
15240
|
destination_contact_details: PropTypes.arrayOf(T['io.flow.v0.models.destination_contact_detail']),
|
|
15241
|
+
incoterm_summary: T['io.flow.v0.models.incoterm_summary'],
|
|
15238
15242
|
});
|
|
15239
15243
|
|
|
15240
15244
|
T['io.flow.v0.models.shopify_cart_conversion_flow_order'] = PropTypes.exact({
|
|
@@ -16149,10 +16153,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
|
|
|
16149
16153
|
T['io.flow.v0.models.fully_harmonized_item_upserted'],
|
|
16150
16154
|
T['io.flow.v0.models.import_completed_v2'],
|
|
16151
16155
|
T['io.flow.v0.models.import_failed_v2'],
|
|
16152
|
-
T['io.flow.v0.models.rule_upserted'],
|
|
16153
|
-
T['io.flow.v0.models.rule_deleted'],
|
|
16154
|
-
T['io.flow.v0.models.snapshot_upserted'],
|
|
16155
|
-
T['io.flow.v0.models.snapshot_deleted'],
|
|
16156
16156
|
T['io.flow.v0.models.label_upserted'],
|
|
16157
16157
|
T['io.flow.v0.models.label_deleted_v2'],
|
|
16158
16158
|
T['io.flow.v0.models.label_upserted_v2'],
|
|
@@ -16541,10 +16541,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
|
|
|
16541
16541
|
'fully_harmonized_item_upserted',
|
|
16542
16542
|
'import_completed_v2',
|
|
16543
16543
|
'import_failed_v2',
|
|
16544
|
-
'rule_upserted',
|
|
16545
|
-
'rule_deleted',
|
|
16546
|
-
'snapshot_upserted',
|
|
16547
|
-
'snapshot_deleted',
|
|
16548
16544
|
'label_upserted',
|
|
16549
16545
|
'label_deleted_v2',
|
|
16550
16546
|
'label_upserted_v2',
|
|
@@ -17639,10 +17635,6 @@ T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
|
|
|
17639
17635
|
offset: PropTypes.number.isRequired,
|
|
17640
17636
|
});
|
|
17641
17637
|
|
|
17642
|
-
T['io.flow.ben.test.internal.v0.models.svitlana_test'] = PropTypes.exact({
|
|
17643
|
-
name: PropTypes.string.isRequired,
|
|
17644
|
-
});
|
|
17645
|
-
|
|
17646
17638
|
T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
|
|
17647
17639
|
name: PropTypes.string.isRequired,
|
|
17648
17640
|
});
|
|
@@ -18409,6 +18401,9 @@ export const inboundCartonFee = T['io.flow.v0.models.inbound_carton_fee'];
|
|
|
18409
18401
|
export const includedLevies = T['io.flow.v0.models.included_levies'];
|
|
18410
18402
|
export const includedLevyKey = T['io.flow.v0.enums.included_levy_key'];
|
|
18411
18403
|
export const incoterm = T['io.flow.v0.enums.incoterm'];
|
|
18404
|
+
export const incotermConfiguration = T['io.flow.v0.enums.incoterm_configuration'];
|
|
18405
|
+
export const incotermIncludes = T['io.flow.v0.models.incoterm_includes'];
|
|
18406
|
+
export const incotermSummary = T['io.flow.v0.models.incoterm_summary'];
|
|
18412
18407
|
export const indirectTax = T['io.flow.v0.models.indirect_tax'];
|
|
18413
18408
|
export const individual = T['io.flow.v0.models.individual'];
|
|
18414
18409
|
export const inlineActionConfiguration = T['io.flow.v0.unions.inline_action_configuration'];
|
|
@@ -19125,8 +19120,6 @@ export const rounding = T['io.flow.v0.models.rounding'];
|
|
|
19125
19120
|
export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
|
|
19126
19121
|
export const roundingType = T['io.flow.v0.enums.rounding_type'];
|
|
19127
19122
|
export const routeAudit = T['io.flow.v0.models.route_audit'];
|
|
19128
|
-
export const ruleDeleted = T['io.flow.v0.models.rule_deleted'];
|
|
19129
|
-
export const ruleUpserted = T['io.flow.v0.models.rule_upserted'];
|
|
19130
19123
|
export const schedule = T['io.flow.v0.models.schedule'];
|
|
19131
19124
|
export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
|
|
19132
19125
|
export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
|
|
@@ -19254,8 +19247,6 @@ export const shopifyVariantFlowMetafield = T['io.flow.v0.models.shopify_variant_
|
|
|
19254
19247
|
export const shopifyVariantInventoryMetafield = T['io.flow.v0.models.shopify_variant_inventory_metafield'];
|
|
19255
19248
|
export const simplePermissionCheck = T['io.flow.v0.models.simple_permission_check'];
|
|
19256
19249
|
export const singlePackageShippingNotificationForm = T['io.flow.v0.models.single_package_shipping_notification_form'];
|
|
19257
|
-
export const snapshotDeleted = T['io.flow.v0.models.snapshot_deleted'];
|
|
19258
|
-
export const snapshotUpserted = T['io.flow.v0.models.snapshot_upserted'];
|
|
19259
19250
|
export const solidusProductExportType = T['io.flow.v0.models.solidus_product_export_type'];
|
|
19260
19251
|
export const solidusVariantExportType = T['io.flow.v0.models.solidus_variant_export_type'];
|
|
19261
19252
|
export const sortDirection = T['io.flow.v0.enums.sort_direction'];
|