@flowio/api-prop-types 10.16.92 → 10.16.93
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 +188 -158
- package/lib/api.js +1 -1
- package/package.json +2 -2
- package/src/api.d.ts +188 -158
- package/src/api.js +327 -235
package/src/api.d.ts
CHANGED
|
@@ -192,9 +192,12 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
192
192
|
type RefundFailureReason = 'charge_for_pending_refund_disputed' | 'declined' | 'expired_or_canceled_card' | 'insufficient_funds' | 'lost_or_stolen_card' | 'merchant_request' | 'unknown';
|
|
193
193
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
194
194
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
195
|
+
type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
|
|
196
|
+
type ReportingReportType = 'ending_balance_reconciliation.itemized.1' | 'ending_balance_reconciliation.itemized.2' | 'ending_balance_reconciliation.itemized.3' | 'ending_balance_reconciliation.itemized.4' | 'payout_reconciliation.itemized.5' | 'payout_reconciliation.by_id.itemized.1' | 'payout_reconciliation.by_id.itemized.2' | 'payout_reconciliation.by_id.itemized.3' | 'payout_reconciliation.by_id.itemized.4' | 'payout_reconciliation.by_id.summary.1' | 'ending_balance_reconciliation.summary.1' | 'payout_reconciliation.itemized.1' | 'payout_reconciliation.itemized.2' | 'payout_reconciliation.itemized.3' | 'payout_reconciliation.itemized.4' | 'payout_reconciliation.summary.1';
|
|
195
197
|
type RequestThreeDSecureType = 'automatic' | 'any';
|
|
196
198
|
type RequestedCapabilities = 'card_payments' | 'legacy_payments' | 'transfers';
|
|
197
199
|
type SetupFutureUsage = 'on_session' | 'off_session';
|
|
200
|
+
type ShopifyPaymentStripeEventType = 'charge.captured' | 'charge.dispute.created' | 'charge.dispute.closed' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'charge.expired' | 'charge.failed' | 'charge.pending' | 'charge.refund.updated' | 'charge.refunded' | 'charge.succeeded' | 'charge.updated' | 'payment_intent.amount_capturable_updated' | 'payment_intent.canceled' | 'payment_intent.created' | 'payment_intent.partially_funded' | 'payment_intent.payment_failed' | 'payment_intent.processing' | 'payment_intent.requires_action' | 'payment_intent.succeeded' | 'transfer.created' | 'transfer.reversed' | 'transfer.updated' | 'reporting.report_run.succeeded' | 'reporting.report_type.updated' | 'reporting.report_type.failed';
|
|
198
201
|
type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
|
|
199
202
|
type SourceStatus = 'canceled' | 'chargeable' | 'consumed' | 'failed' | 'pending';
|
|
200
203
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
@@ -1088,12 +1091,76 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1088
1091
|
readonly 'url': string;
|
|
1089
1092
|
}
|
|
1090
1093
|
|
|
1094
|
+
interface ReportRunParameters {
|
|
1095
|
+
readonly 'interval_start': number;
|
|
1096
|
+
readonly 'interval_end': number;
|
|
1097
|
+
readonly 'columns'?: string[];
|
|
1098
|
+
readonly 'payout'?: string;
|
|
1099
|
+
readonly 'connected_account'?: string;
|
|
1100
|
+
readonly 'reporting_category'?: string;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
interface ReportingReportRun {
|
|
1104
|
+
readonly 'id': string;
|
|
1105
|
+
readonly 'object': string;
|
|
1106
|
+
readonly 'created': number;
|
|
1107
|
+
readonly 'error'?: string;
|
|
1108
|
+
readonly 'livemode': boolean;
|
|
1109
|
+
readonly 'status': io.flow.stripe.v0.enums.ReportingReportRunStatus;
|
|
1110
|
+
readonly 'result'?: io.flow.stripe.v0.models.ReportingReportRunResult;
|
|
1111
|
+
readonly 'succeeded_at'?: number;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
interface ReportingReportRunForm {
|
|
1115
|
+
readonly 'report_type': io.flow.stripe.v0.enums.ReportingReportType;
|
|
1116
|
+
readonly 'parameters': io.flow.stripe.v0.models.ReportRunParameters;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
interface ReportingReportRunResult {
|
|
1120
|
+
readonly 'id': string;
|
|
1121
|
+
readonly 'object': string;
|
|
1122
|
+
readonly 'created': number;
|
|
1123
|
+
readonly 'expires_at': number;
|
|
1124
|
+
readonly 'filename': string;
|
|
1125
|
+
readonly 'links': any/*object*/;
|
|
1126
|
+
readonly 'purpose': string;
|
|
1127
|
+
readonly 'size': number;
|
|
1128
|
+
readonly 'title': string;
|
|
1129
|
+
readonly 'type': string;
|
|
1130
|
+
readonly 'url': string;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
interface ReportingReportRuns {
|
|
1134
|
+
readonly 'object': string;
|
|
1135
|
+
readonly 'data': io.flow.stripe.v0.models.ReportingReportRun[];
|
|
1136
|
+
readonly 'has_more': boolean;
|
|
1137
|
+
readonly 'url'?: string;
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1091
1140
|
interface Shipping {
|
|
1092
1141
|
readonly 'address': io.flow.stripe.v0.models.Address;
|
|
1093
1142
|
readonly 'name'?: string;
|
|
1094
1143
|
readonly 'phone'?: string;
|
|
1095
1144
|
}
|
|
1096
1145
|
|
|
1146
|
+
interface ShopifyPaymentStripeEvent {
|
|
1147
|
+
readonly 'id': string;
|
|
1148
|
+
readonly 'api_version'?: string;
|
|
1149
|
+
readonly 'data': io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
|
|
1150
|
+
readonly 'request'?: any/*object*/;
|
|
1151
|
+
readonly 'type': io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
|
|
1152
|
+
readonly 'object': string;
|
|
1153
|
+
readonly 'account'?: string;
|
|
1154
|
+
readonly 'created': number;
|
|
1155
|
+
readonly 'livemode': boolean;
|
|
1156
|
+
readonly 'pending_webhooks': number;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
interface ShopifyPaymentStripeEventData {
|
|
1160
|
+
readonly 'object'?: any/*object*/;
|
|
1161
|
+
readonly 'previous_attributes'?: any/*object*/;
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1097
1164
|
interface Source {
|
|
1098
1165
|
readonly 'id': string;
|
|
1099
1166
|
readonly 'object': string;
|
|
@@ -1421,8 +1488,15 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1421
1488
|
}
|
|
1422
1489
|
|
|
1423
1490
|
interface GraphqlMetafield {
|
|
1491
|
+
readonly 'id': string;
|
|
1424
1492
|
readonly 'key': string;
|
|
1425
1493
|
readonly 'value': string;
|
|
1494
|
+
readonly 'type'?: string;
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
interface GraphqlMetaobject {
|
|
1498
|
+
readonly 'id': string;
|
|
1499
|
+
readonly 'displayName': string;
|
|
1426
1500
|
}
|
|
1427
1501
|
|
|
1428
1502
|
interface GraphqlOption {
|
|
@@ -1598,6 +1672,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1598
1672
|
readonly 'updated_at': string;
|
|
1599
1673
|
readonly 'has_variants_that_requires_components'?: boolean;
|
|
1600
1674
|
readonly 'category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
1675
|
+
readonly 'metafields'?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
1601
1676
|
}
|
|
1602
1677
|
|
|
1603
1678
|
interface ProductDelete {
|
|
@@ -1615,6 +1690,17 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1615
1690
|
readonly 'alt'?: string;
|
|
1616
1691
|
}
|
|
1617
1692
|
|
|
1693
|
+
interface ProductMetafield {
|
|
1694
|
+
readonly 'id': number;
|
|
1695
|
+
readonly 'namespace': string;
|
|
1696
|
+
readonly 'key': string;
|
|
1697
|
+
readonly 'value': string;
|
|
1698
|
+
readonly 'created_at': string;
|
|
1699
|
+
readonly 'updated_at': string;
|
|
1700
|
+
readonly 'type': string;
|
|
1701
|
+
readonly 'admin_graphql_api_id': string;
|
|
1702
|
+
}
|
|
1703
|
+
|
|
1618
1704
|
interface ProductVariant {
|
|
1619
1705
|
readonly 'id': number;
|
|
1620
1706
|
readonly 'sku'?: string;
|
|
@@ -4054,13 +4140,6 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
4054
4140
|
readonly 'name': string;
|
|
4055
4141
|
}
|
|
4056
4142
|
|
|
4057
|
-
interface ShawnRoundtableWorkshopRate {
|
|
4058
|
-
readonly 'origin_country': string;
|
|
4059
|
-
readonly 'destination_country': string;
|
|
4060
|
-
readonly 'weight': number;
|
|
4061
|
-
readonly 'amount': number;
|
|
4062
|
-
}
|
|
4063
|
-
|
|
4064
4143
|
interface TechOnboardingDescription {
|
|
4065
4144
|
readonly 'description': string;
|
|
4066
4145
|
}
|
|
@@ -5051,7 +5130,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5051
5130
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
5052
5131
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
5053
5132
|
type Environment = 'sandbox' | 'production';
|
|
5054
|
-
type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_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' | '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' | '
|
|
5133
|
+
type EventType = 'authorization_retry_upserted' | 'authorization_retry_deleted' | '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' | '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' | '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';
|
|
5055
5134
|
type ExceptionType = 'open' | 'closed';
|
|
5056
5135
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
5057
5136
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -5108,6 +5187,7 @@ declare namespace io.flow.v0.enums {
|
|
|
5108
5187
|
type OrderChangeSource = 'consumer' | 'retailer' | 'fulfillment' | 'flow' | 'carrier';
|
|
5109
5188
|
type OrderErrorCode = 'generic_error' | 'order_item_not_available' | 'order_identifier_error' | 'authorization_invalid' | 'domestic_shipping_unavailable' | 'shipping_unavailable' | 'value_threshold_exceeded' | 'invalid_currency' | 'invalid_country' | 'invalid_region' | 'invalid_language' | 'item_out_of_stock' | 'gift_card_not_accepted' | 'total_changed';
|
|
5110
5189
|
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
5190
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
5111
5191
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
5112
5192
|
type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
|
|
5113
5193
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
@@ -5167,7 +5247,6 @@ declare namespace io.flow.v0.enums {
|
|
|
5167
5247
|
type Role = 'admin' | 'member';
|
|
5168
5248
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
5169
5249
|
type RoundingType = 'pattern' | 'multiple';
|
|
5170
|
-
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
5171
5250
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
5172
5251
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
5173
5252
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
@@ -5183,9 +5262,6 @@ declare namespace io.flow.v0.enums {
|
|
|
5183
5262
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
5184
5263
|
type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
|
|
5185
5264
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
5186
|
-
type SyncRecordFailureReason = 'inventory' | 'address' | 'promotion' | 'other';
|
|
5187
|
-
type SyncStreamType = 'submitted_order' | 'placed_order';
|
|
5188
|
-
type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
|
|
5189
5265
|
type TaxApplicability = 'none' | 'all';
|
|
5190
5266
|
type TaxReportType = 'consumer' | 'b2b';
|
|
5191
5267
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -5198,10 +5274,10 @@ declare namespace io.flow.v0.enums {
|
|
|
5198
5274
|
type TierStrategy = 'fastest' | 'lowest_cost';
|
|
5199
5275
|
type TokenType = 'permanent' | 'one_time';
|
|
5200
5276
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
5201
|
-
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
5277
|
+
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
5202
5278
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
5203
5279
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
5204
|
-
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' | '
|
|
5280
|
+
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';
|
|
5205
5281
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
5206
5282
|
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';
|
|
5207
5283
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
@@ -5668,6 +5744,20 @@ declare namespace io.flow.v0.models {
|
|
|
5668
5744
|
readonly 'interval'?: io.flow.v0.enums.UnitOfTime;
|
|
5669
5745
|
}
|
|
5670
5746
|
|
|
5747
|
+
interface AnshItemDeleted {
|
|
5748
|
+
readonly 'discriminator': 'ansh_item_deleted';
|
|
5749
|
+
readonly 'event_id': string;
|
|
5750
|
+
readonly 'timestamp': string;
|
|
5751
|
+
readonly 'id': string;
|
|
5752
|
+
}
|
|
5753
|
+
|
|
5754
|
+
interface AnshItemUpserted {
|
|
5755
|
+
readonly 'discriminator': 'ansh_item_upserted';
|
|
5756
|
+
readonly 'event_id': string;
|
|
5757
|
+
readonly 'timestamp': string;
|
|
5758
|
+
readonly 'item': io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
5759
|
+
}
|
|
5760
|
+
|
|
5671
5761
|
interface ApplePayMerchantValidationPayload {
|
|
5672
5762
|
readonly 'discriminator': 'apple_pay_merchant_validation_payload';
|
|
5673
5763
|
readonly 'validation_url': string;
|
|
@@ -5855,6 +5945,33 @@ declare namespace io.flow.v0.models {
|
|
|
5855
5945
|
readonly 'display': string;
|
|
5856
5946
|
}
|
|
5857
5947
|
|
|
5948
|
+
interface AuthorizationRetry {
|
|
5949
|
+
readonly 'id': string;
|
|
5950
|
+
readonly 'authorization_request_id': string;
|
|
5951
|
+
readonly 'authorization_id': string;
|
|
5952
|
+
readonly 'organization_id': string;
|
|
5953
|
+
readonly 'attempt': number;
|
|
5954
|
+
readonly 'last_failure_code': string;
|
|
5955
|
+
readonly 'created_at': string;
|
|
5956
|
+
readonly 'updated_at': string;
|
|
5957
|
+
}
|
|
5958
|
+
|
|
5959
|
+
interface AuthorizationRetryDeleted {
|
|
5960
|
+
readonly 'discriminator': 'authorization_retry_deleted';
|
|
5961
|
+
readonly 'event_id': string;
|
|
5962
|
+
readonly 'timestamp': string;
|
|
5963
|
+
readonly 'organization': string;
|
|
5964
|
+
readonly 'id': string;
|
|
5965
|
+
}
|
|
5966
|
+
|
|
5967
|
+
interface AuthorizationRetryUpserted {
|
|
5968
|
+
readonly 'discriminator': 'authorization_retry_upserted';
|
|
5969
|
+
readonly 'event_id': string;
|
|
5970
|
+
readonly 'timestamp': string;
|
|
5971
|
+
readonly 'organization': string;
|
|
5972
|
+
readonly 'authorization_retry': io.flow.v0.models.AuthorizationRetry;
|
|
5973
|
+
}
|
|
5974
|
+
|
|
5858
5975
|
interface AuthorizationStatusChanged {
|
|
5859
5976
|
readonly 'discriminator': 'authorization_status_changed';
|
|
5860
5977
|
readonly 'event_id': string;
|
|
@@ -6293,6 +6410,7 @@ declare namespace io.flow.v0.models {
|
|
|
6293
6410
|
readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
6294
6411
|
readonly 'stored_method_usage_step'?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
6295
6412
|
readonly 'authorized_at'?: string;
|
|
6413
|
+
readonly 'authorization_request_id'?: string;
|
|
6296
6414
|
}
|
|
6297
6415
|
|
|
6298
6416
|
interface CardAuthorizationDeletedV2 {
|
|
@@ -8816,6 +8934,46 @@ declare namespace io.flow.v0.models {
|
|
|
8816
8934
|
readonly 'landed_costs': io.flow.v0.models.LaneLandedCost[];
|
|
8817
8935
|
}
|
|
8818
8936
|
|
|
8937
|
+
interface GeItemDeleted {
|
|
8938
|
+
readonly 'discriminator': 'ge_item_deleted';
|
|
8939
|
+
readonly 'event_id': string;
|
|
8940
|
+
readonly 'timestamp': string;
|
|
8941
|
+
readonly 'organization': string;
|
|
8942
|
+
readonly 'item': io.flow.v0.models.Item;
|
|
8943
|
+
}
|
|
8944
|
+
|
|
8945
|
+
interface GeItemInserted {
|
|
8946
|
+
readonly 'discriminator': 'ge_item_inserted';
|
|
8947
|
+
readonly 'event_id': string;
|
|
8948
|
+
readonly 'timestamp': string;
|
|
8949
|
+
readonly 'organization': string;
|
|
8950
|
+
readonly 'item': io.flow.v0.models.Item;
|
|
8951
|
+
}
|
|
8952
|
+
|
|
8953
|
+
interface GeItemUpdated {
|
|
8954
|
+
readonly 'discriminator': 'ge_item_updated';
|
|
8955
|
+
readonly 'event_id': string;
|
|
8956
|
+
readonly 'timestamp': string;
|
|
8957
|
+
readonly 'organization': string;
|
|
8958
|
+
readonly 'item': io.flow.v0.models.Item;
|
|
8959
|
+
}
|
|
8960
|
+
|
|
8961
|
+
interface GeProductRestrictionResultDeleted {
|
|
8962
|
+
readonly 'discriminator': 'ge_product_restriction_result_deleted';
|
|
8963
|
+
readonly 'event_id': string;
|
|
8964
|
+
readonly 'timestamp': string;
|
|
8965
|
+
readonly 'organization': string;
|
|
8966
|
+
readonly 'id': string;
|
|
8967
|
+
}
|
|
8968
|
+
|
|
8969
|
+
interface GeProductRestrictionResultUpserted {
|
|
8970
|
+
readonly 'discriminator': 'ge_product_restriction_result_upserted';
|
|
8971
|
+
readonly 'event_id': string;
|
|
8972
|
+
readonly 'timestamp': string;
|
|
8973
|
+
readonly 'organization': string;
|
|
8974
|
+
readonly 'ge_product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
8975
|
+
}
|
|
8976
|
+
|
|
8819
8977
|
interface GenerateLoad {
|
|
8820
8978
|
readonly 'discriminator': 'generate_load';
|
|
8821
8979
|
readonly 'event_id': string;
|
|
@@ -9828,14 +9986,6 @@ declare namespace io.flow.v0.models {
|
|
|
9828
9986
|
readonly 'price': io.flow.v0.models.LocalizedItemPrice;
|
|
9829
9987
|
}
|
|
9830
9988
|
|
|
9831
|
-
interface LocalItemDeleted {
|
|
9832
|
-
readonly 'discriminator': 'local_item_deleted';
|
|
9833
|
-
readonly 'event_id': string;
|
|
9834
|
-
readonly 'timestamp': string;
|
|
9835
|
-
readonly 'organization': string;
|
|
9836
|
-
readonly 'local_item': io.flow.v0.models.LocalItem;
|
|
9837
|
-
}
|
|
9838
|
-
|
|
9839
9989
|
interface LocalItemPricing {
|
|
9840
9990
|
readonly 'price': io.flow.v0.models.LocalizedItemPrice;
|
|
9841
9991
|
readonly 'vat'?: io.flow.v0.models.LocalizedItemVat;
|
|
@@ -9845,14 +9995,6 @@ declare namespace io.flow.v0.models {
|
|
|
9845
9995
|
readonly 'price_attributes'?: Record<string, io.flow.v0.models.LocalItemAttributePricing>;
|
|
9846
9996
|
}
|
|
9847
9997
|
|
|
9848
|
-
interface LocalItemUpserted {
|
|
9849
|
-
readonly 'discriminator': 'local_item_upserted';
|
|
9850
|
-
readonly 'event_id': string;
|
|
9851
|
-
readonly 'timestamp': string;
|
|
9852
|
-
readonly 'organization': string;
|
|
9853
|
-
readonly 'local_item': io.flow.v0.models.LocalItem;
|
|
9854
|
-
}
|
|
9855
|
-
|
|
9856
9998
|
interface LocalPriceDetails {
|
|
9857
9999
|
readonly 'base': io.flow.v0.models.PriceDetails;
|
|
9858
10000
|
readonly 'local': io.flow.v0.models.PriceDetails;
|
|
@@ -10328,6 +10470,7 @@ declare namespace io.flow.v0.models {
|
|
|
10328
10470
|
readonly 'processor'?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
10329
10471
|
readonly 'confirmation_details'?: io.flow.v0.unions.ConfirmationDetails;
|
|
10330
10472
|
readonly 'authorized_at'?: string;
|
|
10473
|
+
readonly 'authorization_request_id'?: string;
|
|
10331
10474
|
}
|
|
10332
10475
|
|
|
10333
10476
|
interface OnlineAuthorizationDeletedV2 {
|
|
@@ -10404,6 +10547,7 @@ declare namespace io.flow.v0.models {
|
|
|
10404
10547
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
10405
10548
|
readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
|
|
10406
10549
|
readonly 'incoterm_summary'?: io.flow.v0.models.IncotermSummary;
|
|
10550
|
+
readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
10407
10551
|
}
|
|
10408
10552
|
|
|
10409
10553
|
interface OrderAddress {
|
|
@@ -10547,6 +10691,7 @@ declare namespace io.flow.v0.models {
|
|
|
10547
10691
|
readonly 'authorization_keys'?: string[];
|
|
10548
10692
|
readonly 'options'?: io.flow.v0.models.OrderOptions;
|
|
10549
10693
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
10694
|
+
readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
10550
10695
|
}
|
|
10551
10696
|
|
|
10552
10697
|
interface OrderFraudStatus {
|
|
@@ -10766,6 +10911,7 @@ declare namespace io.flow.v0.models {
|
|
|
10766
10911
|
readonly 'authorization_keys'?: string[];
|
|
10767
10912
|
readonly 'options'?: io.flow.v0.models.OrderOptions;
|
|
10768
10913
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
10914
|
+
readonly 'payment_source'?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
10769
10915
|
}
|
|
10770
10916
|
|
|
10771
10917
|
interface OrderReference {
|
|
@@ -12320,10 +12466,6 @@ declare namespace io.flow.v0.models {
|
|
|
12320
12466
|
readonly 'id': string;
|
|
12321
12467
|
}
|
|
12322
12468
|
|
|
12323
|
-
interface PriceBookItemExportOptions {
|
|
12324
|
-
readonly 'available_identifiers': io.flow.v0.enums.ItemIdentifier[];
|
|
12325
|
-
}
|
|
12326
|
-
|
|
12327
12469
|
interface PriceBookItemExportType {
|
|
12328
12470
|
readonly 'discriminator': 'price_book_item_export_type';
|
|
12329
12471
|
readonly 'price_book_key'?: string;
|
|
@@ -12567,29 +12709,6 @@ declare namespace io.flow.v0.models {
|
|
|
12567
12709
|
readonly 'product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
|
|
12568
12710
|
}
|
|
12569
12711
|
|
|
12570
|
-
interface ProductSellability {
|
|
12571
|
-
readonly 'organization_id': string;
|
|
12572
|
-
readonly 'product_id'?: string;
|
|
12573
|
-
readonly 'product_correlation_id': string;
|
|
12574
|
-
readonly 'restricted_regions': io.flow.v0.models.SellablilityRegionResult[];
|
|
12575
|
-
readonly 'in_review_regions': io.flow.v0.models.SellablilityRegionResult[];
|
|
12576
|
-
}
|
|
12577
|
-
|
|
12578
|
-
interface ProductSellabilityForm {
|
|
12579
|
-
readonly 'organization_id': string;
|
|
12580
|
-
readonly 'product_id'?: string;
|
|
12581
|
-
readonly 'product_correlation_id': string;
|
|
12582
|
-
readonly 'name': string;
|
|
12583
|
-
readonly 'price': io.flow.v0.models.ProductSellabilityPrice;
|
|
12584
|
-
readonly 'description': string;
|
|
12585
|
-
readonly 'taxonomy_category': io.flow.v0.models.ProductTaxonomyCategory;
|
|
12586
|
-
}
|
|
12587
|
-
|
|
12588
|
-
interface ProductSellabilityPrice {
|
|
12589
|
-
readonly 'currency': string;
|
|
12590
|
-
readonly 'amount': number;
|
|
12591
|
-
}
|
|
12592
|
-
|
|
12593
12712
|
interface ProductTaxonomyCategory {
|
|
12594
12713
|
readonly 'name': string;
|
|
12595
12714
|
readonly 'full_name': string;
|
|
@@ -13553,11 +13672,6 @@ declare namespace io.flow.v0.models {
|
|
|
13553
13672
|
readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
|
|
13554
13673
|
}
|
|
13555
13674
|
|
|
13556
|
-
interface SellablilityRegionResult {
|
|
13557
|
-
readonly 'type': io.flow.v0.enums.RuleEffectType;
|
|
13558
|
-
readonly 'regions': string[];
|
|
13559
|
-
}
|
|
13560
|
-
|
|
13561
13675
|
interface ServiceReference {
|
|
13562
13676
|
readonly 'id': string;
|
|
13563
13677
|
}
|
|
@@ -14506,79 +14620,6 @@ declare namespace io.flow.v0.models {
|
|
|
14506
14620
|
readonly 'available': io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
14507
14621
|
}
|
|
14508
14622
|
|
|
14509
|
-
interface SyncDuration {
|
|
14510
|
-
readonly 'unit': io.flow.v0.enums.SyncUnitOfTime;
|
|
14511
|
-
readonly 'value': number;
|
|
14512
|
-
}
|
|
14513
|
-
|
|
14514
|
-
interface SyncPendingRecord {
|
|
14515
|
-
readonly 'id': string;
|
|
14516
|
-
readonly 'stream': io.flow.v0.models.SyncStreamReference;
|
|
14517
|
-
readonly 'value': string;
|
|
14518
|
-
readonly 'system': string;
|
|
14519
|
-
}
|
|
14520
|
-
|
|
14521
|
-
interface SyncRecord {
|
|
14522
|
-
readonly 'id': string;
|
|
14523
|
-
readonly 'system': string;
|
|
14524
|
-
readonly 'value': string;
|
|
14525
|
-
readonly 'stream': io.flow.v0.models.SyncStreamReference;
|
|
14526
|
-
}
|
|
14527
|
-
|
|
14528
|
-
interface SyncRecordFailure {
|
|
14529
|
-
readonly 'id': string;
|
|
14530
|
-
readonly 'stream': io.flow.v0.models.SyncStreamReference;
|
|
14531
|
-
readonly 'value': string;
|
|
14532
|
-
readonly 'system': string;
|
|
14533
|
-
readonly 'reason': io.flow.v0.enums.SyncRecordFailureReason;
|
|
14534
|
-
readonly 'attributes'?: Record<string, string>;
|
|
14535
|
-
}
|
|
14536
|
-
|
|
14537
|
-
interface SyncRecordFailureForm {
|
|
14538
|
-
readonly 'stream_key': string;
|
|
14539
|
-
readonly 'value': string;
|
|
14540
|
-
readonly 'system': string;
|
|
14541
|
-
readonly 'reason': io.flow.v0.enums.SyncRecordFailureReason;
|
|
14542
|
-
readonly 'attributes'?: Record<string, string>;
|
|
14543
|
-
}
|
|
14544
|
-
|
|
14545
|
-
interface SyncRecordForm {
|
|
14546
|
-
readonly 'stream_key': string;
|
|
14547
|
-
readonly 'system': string;
|
|
14548
|
-
readonly 'value': string;
|
|
14549
|
-
}
|
|
14550
|
-
|
|
14551
|
-
interface SyncStream {
|
|
14552
|
-
readonly 'id': string;
|
|
14553
|
-
readonly 'key': string;
|
|
14554
|
-
readonly 'type': io.flow.v0.enums.SyncStreamType;
|
|
14555
|
-
readonly 'systems': string[];
|
|
14556
|
-
readonly 'settings': io.flow.v0.models.SyncStreamSettings;
|
|
14557
|
-
}
|
|
14558
|
-
|
|
14559
|
-
interface SyncStreamForm {
|
|
14560
|
-
readonly 'type': io.flow.v0.enums.SyncStreamType;
|
|
14561
|
-
readonly 'systems': string[];
|
|
14562
|
-
readonly 'settings'?: io.flow.v0.models.SyncStreamSettingsForm;
|
|
14563
|
-
}
|
|
14564
|
-
|
|
14565
|
-
interface SyncStreamReference {
|
|
14566
|
-
readonly 'id': string;
|
|
14567
|
-
readonly 'key': string;
|
|
14568
|
-
}
|
|
14569
|
-
|
|
14570
|
-
interface SyncStreamSettings {
|
|
14571
|
-
readonly 'pending_record_after': io.flow.v0.models.SyncDuration;
|
|
14572
|
-
readonly 'warn_after': io.flow.v0.models.SyncDuration;
|
|
14573
|
-
readonly 'error_after': io.flow.v0.models.SyncDuration;
|
|
14574
|
-
}
|
|
14575
|
-
|
|
14576
|
-
interface SyncStreamSettingsForm {
|
|
14577
|
-
readonly 'pending_record_after': io.flow.v0.models.SyncDuration;
|
|
14578
|
-
readonly 'warn_after': io.flow.v0.models.SyncDuration;
|
|
14579
|
-
readonly 'error_after': io.flow.v0.models.SyncDuration;
|
|
14580
|
-
}
|
|
14581
|
-
|
|
14582
14623
|
interface Tax {
|
|
14583
14624
|
readonly 'name': string;
|
|
14584
14625
|
readonly 'rate': number;
|
|
@@ -15407,7 +15448,7 @@ declare namespace io.flow.v0.unions {
|
|
|
15407
15448
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
15408
15449
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
15409
15450
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
15410
|
-
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.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.
|
|
15451
|
+
type Event = (io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | 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.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.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);
|
|
15411
15452
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
15412
15453
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
15413
15454
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -15609,6 +15650,7 @@ export const optinResponseType: PropTypes.Requireable<io.flow.v0.enums.OptinResp
|
|
|
15609
15650
|
export const orderChangeSource: PropTypes.Requireable<io.flow.v0.enums.OrderChangeSource>;
|
|
15610
15651
|
export const orderErrorCode: PropTypes.Requireable<io.flow.v0.enums.OrderErrorCode>;
|
|
15611
15652
|
export const orderMerchantOfRecord: PropTypes.Requireable<io.flow.v0.enums.OrderMerchantOfRecord>;
|
|
15653
|
+
export const orderPaymentSourceType: PropTypes.Requireable<io.flow.v0.enums.OrderPaymentSourceType>;
|
|
15612
15654
|
export const orderPaymentType: PropTypes.Requireable<io.flow.v0.enums.OrderPaymentType>;
|
|
15613
15655
|
export const orderPriceDetailComponentKey: PropTypes.Requireable<io.flow.v0.enums.OrderPriceDetailComponentKey>;
|
|
15614
15656
|
export const orderPriceDetailKey: PropTypes.Requireable<io.flow.v0.enums.OrderPriceDetailKey>;
|
|
@@ -15668,7 +15710,6 @@ export const reviewStatus: PropTypes.Requireable<io.flow.v0.enums.ReviewStatus>;
|
|
|
15668
15710
|
export const role: PropTypes.Requireable<io.flow.v0.enums.Role>;
|
|
15669
15711
|
export const roundingMethod: PropTypes.Requireable<io.flow.v0.enums.RoundingMethod>;
|
|
15670
15712
|
export const roundingType: PropTypes.Requireable<io.flow.v0.enums.RoundingType>;
|
|
15671
|
-
export const ruleEffectType: PropTypes.Requireable<io.flow.v0.enums.RuleEffectType>;
|
|
15672
15713
|
export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.ScheduleExceptionStatus>;
|
|
15673
15714
|
export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
|
|
15674
15715
|
export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
|
|
@@ -15684,9 +15725,6 @@ export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
|
|
|
15684
15725
|
export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
|
|
15685
15726
|
export const substatusCode: PropTypes.Requireable<io.flow.v0.enums.SubstatusCode>;
|
|
15686
15727
|
export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
|
|
15687
|
-
export const syncRecordFailureReason: PropTypes.Requireable<io.flow.v0.enums.SyncRecordFailureReason>;
|
|
15688
|
-
export const syncStreamType: PropTypes.Requireable<io.flow.v0.enums.SyncStreamType>;
|
|
15689
|
-
export const syncUnitOfTime: PropTypes.Requireable<io.flow.v0.enums.SyncUnitOfTime>;
|
|
15690
15728
|
export const taxApplicability: PropTypes.Requireable<io.flow.v0.enums.TaxApplicability>;
|
|
15691
15729
|
export const taxReportType: PropTypes.Requireable<io.flow.v0.enums.TaxReportType>;
|
|
15692
15730
|
export const taxVerificationResult: PropTypes.Requireable<io.flow.v0.enums.TaxVerificationResult>;
|
|
@@ -15777,6 +15815,8 @@ export const allocationV2: PropTypes.Requireable<io.flow.v0.models.AllocationV2>
|
|
|
15777
15815
|
export const amountMargin: PropTypes.Requireable<io.flow.v0.models.AmountMargin>;
|
|
15778
15816
|
export const amountMarginForm: PropTypes.Requireable<io.flow.v0.models.AmountMarginForm>;
|
|
15779
15817
|
export const analyticsExportType: PropTypes.Requireable<io.flow.v0.models.AnalyticsExportType>;
|
|
15818
|
+
export const anshItemDeleted: PropTypes.Requireable<io.flow.v0.models.AnshItemDeleted>;
|
|
15819
|
+
export const anshItemUpserted: PropTypes.Requireable<io.flow.v0.models.AnshItemUpserted>;
|
|
15780
15820
|
export const applePayMerchantValidationPayload: PropTypes.Requireable<io.flow.v0.models.ApplePayMerchantValidationPayload>;
|
|
15781
15821
|
export const applepaySdkCreateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkCreateResultActionDetails>;
|
|
15782
15822
|
export const applepaySdkValidateResultActionDetails: PropTypes.Requireable<io.flow.v0.models.ApplepaySdkValidateResultActionDetails>;
|
|
@@ -15805,6 +15845,9 @@ export const authorizationResultActionNative: PropTypes.Requireable<io.flow.v0.m
|
|
|
15805
15845
|
export const authorizationResultActionPost: PropTypes.Requireable<io.flow.v0.models.AuthorizationResultActionPost>;
|
|
15806
15846
|
export const authorizationResultActionWait: PropTypes.Requireable<io.flow.v0.models.AuthorizationResultActionWait>;
|
|
15807
15847
|
export const authorizationResultDescription: PropTypes.Requireable<io.flow.v0.models.AuthorizationResultDescription>;
|
|
15848
|
+
export const authorizationRetry: PropTypes.Requireable<io.flow.v0.models.AuthorizationRetry>;
|
|
15849
|
+
export const authorizationRetryDeleted: PropTypes.Requireable<io.flow.v0.models.AuthorizationRetryDeleted>;
|
|
15850
|
+
export const authorizationRetryUpserted: PropTypes.Requireable<io.flow.v0.models.AuthorizationRetryUpserted>;
|
|
15808
15851
|
export const authorizationStatusChanged: PropTypes.Requireable<io.flow.v0.models.AuthorizationStatusChanged>;
|
|
15809
15852
|
export const authorizationVersion: PropTypes.Requireable<io.flow.v0.models.AuthorizationVersion>;
|
|
15810
15853
|
export const availableFilterStructured: PropTypes.Requireable<io.flow.v0.models.AvailableFilterStructured>;
|
|
@@ -16224,6 +16267,11 @@ export const fulfillmentItemAllocationDetails: PropTypes.Requireable<io.flow.v0.
|
|
|
16224
16267
|
export const fulfillmentItemQuantity: PropTypes.Requireable<io.flow.v0.models.FulfillmentItemQuantity>;
|
|
16225
16268
|
export const fulfillmentLineCancelForm: PropTypes.Requireable<io.flow.v0.models.FulfillmentLineCancelForm>;
|
|
16226
16269
|
export const fullyHarmonizedItemUpserted: PropTypes.Requireable<io.flow.v0.models.FullyHarmonizedItemUpserted>;
|
|
16270
|
+
export const geItemDeleted: PropTypes.Requireable<io.flow.v0.models.GeItemDeleted>;
|
|
16271
|
+
export const geItemInserted: PropTypes.Requireable<io.flow.v0.models.GeItemInserted>;
|
|
16272
|
+
export const geItemUpdated: PropTypes.Requireable<io.flow.v0.models.GeItemUpdated>;
|
|
16273
|
+
export const geProductRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.GeProductRestrictionResultDeleted>;
|
|
16274
|
+
export const geProductRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.GeProductRestrictionResultUpserted>;
|
|
16227
16275
|
export const generateLoad: PropTypes.Requireable<io.flow.v0.models.GenerateLoad>;
|
|
16228
16276
|
export const genericError: PropTypes.Requireable<io.flow.v0.models.GenericError>;
|
|
16229
16277
|
export const geoForm: PropTypes.Requireable<io.flow.v0.models.GeoForm>;
|
|
@@ -16360,9 +16408,7 @@ export const link: PropTypes.Requireable<io.flow.v0.models.Link>;
|
|
|
16360
16408
|
export const local: PropTypes.Requireable<io.flow.v0.models.Local>;
|
|
16361
16409
|
export const localItem: PropTypes.Requireable<io.flow.v0.models.LocalItem>;
|
|
16362
16410
|
export const localItemAttributePricing: PropTypes.Requireable<io.flow.v0.models.LocalItemAttributePricing>;
|
|
16363
|
-
export const localItemDeleted: PropTypes.Requireable<io.flow.v0.models.LocalItemDeleted>;
|
|
16364
16411
|
export const localItemPricing: PropTypes.Requireable<io.flow.v0.models.LocalItemPricing>;
|
|
16365
|
-
export const localItemUpserted: PropTypes.Requireable<io.flow.v0.models.LocalItemUpserted>;
|
|
16366
16412
|
export const localPriceDetails: PropTypes.Requireable<io.flow.v0.models.LocalPriceDetails>;
|
|
16367
16413
|
export const localSession: PropTypes.Requireable<io.flow.v0.models.LocalSession>;
|
|
16368
16414
|
export const locale: PropTypes.Requireable<io.flow.v0.models.Locale>;
|
|
@@ -16711,7 +16757,6 @@ export const priceBookDeleted: PropTypes.Requireable<io.flow.v0.models.PriceBook
|
|
|
16711
16757
|
export const priceBookForm: PropTypes.Requireable<io.flow.v0.models.PriceBookForm>;
|
|
16712
16758
|
export const priceBookItem: PropTypes.Requireable<io.flow.v0.models.PriceBookItem>;
|
|
16713
16759
|
export const priceBookItemDeleted: PropTypes.Requireable<io.flow.v0.models.PriceBookItemDeleted>;
|
|
16714
|
-
export const priceBookItemExportOptions: PropTypes.Requireable<io.flow.v0.models.PriceBookItemExportOptions>;
|
|
16715
16760
|
export const priceBookItemExportType: PropTypes.Requireable<io.flow.v0.models.PriceBookItemExportType>;
|
|
16716
16761
|
export const priceBookItemForm: PropTypes.Requireable<io.flow.v0.models.PriceBookItemForm>;
|
|
16717
16762
|
export const priceBookItemQueryForm: PropTypes.Requireable<io.flow.v0.models.PriceBookItemQueryForm>;
|
|
@@ -16743,9 +16788,6 @@ export const productInserted: PropTypes.Requireable<io.flow.v0.models.ProductIns
|
|
|
16743
16788
|
export const productRestrictionResult: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResult>;
|
|
16744
16789
|
export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultDeleted>;
|
|
16745
16790
|
export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
|
|
16746
|
-
export const productSellability: PropTypes.Requireable<io.flow.v0.models.ProductSellability>;
|
|
16747
|
-
export const productSellabilityForm: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityForm>;
|
|
16748
|
-
export const productSellabilityPrice: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityPrice>;
|
|
16749
16791
|
export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
|
|
16750
16792
|
export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
|
|
16751
16793
|
export const productUpdated: PropTypes.Requireable<io.flow.v0.models.ProductUpdated>;
|
|
@@ -16873,7 +16915,6 @@ export const scheduledPickup: PropTypes.Requireable<io.flow.v0.models.ScheduledP
|
|
|
16873
16915
|
export const securityRatecardFee: PropTypes.Requireable<io.flow.v0.models.SecurityRatecardFee>;
|
|
16874
16916
|
export const securityServiceFee: PropTypes.Requireable<io.flow.v0.models.SecurityServiceFee>;
|
|
16875
16917
|
export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.models.SelectIssuerOptionActionDetails>;
|
|
16876
|
-
export const sellablilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellablilityRegionResult>;
|
|
16877
16918
|
export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceReference>;
|
|
16878
16919
|
export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
|
|
16879
16920
|
export const serviceUnknown: PropTypes.Requireable<io.flow.v0.models.ServiceUnknown>;
|
|
@@ -17000,17 +17041,6 @@ export const summaryShippingNotificationForm: PropTypes.Requireable<io.flow.v0.m
|
|
|
17000
17041
|
export const surchargeResponsiblePartyDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeResponsiblePartyDisplay>;
|
|
17001
17042
|
export const surchargeSetting: PropTypes.Requireable<io.flow.v0.models.SurchargeSetting>;
|
|
17002
17043
|
export const surchargeSettingDisplay: PropTypes.Requireable<io.flow.v0.models.SurchargeSettingDisplay>;
|
|
17003
|
-
export const syncDuration: PropTypes.Requireable<io.flow.v0.models.SyncDuration>;
|
|
17004
|
-
export const syncPendingRecord: PropTypes.Requireable<io.flow.v0.models.SyncPendingRecord>;
|
|
17005
|
-
export const syncRecord: PropTypes.Requireable<io.flow.v0.models.SyncRecord>;
|
|
17006
|
-
export const syncRecordFailure: PropTypes.Requireable<io.flow.v0.models.SyncRecordFailure>;
|
|
17007
|
-
export const syncRecordFailureForm: PropTypes.Requireable<io.flow.v0.models.SyncRecordFailureForm>;
|
|
17008
|
-
export const syncRecordForm: PropTypes.Requireable<io.flow.v0.models.SyncRecordForm>;
|
|
17009
|
-
export const syncStream: PropTypes.Requireable<io.flow.v0.models.SyncStream>;
|
|
17010
|
-
export const syncStreamForm: PropTypes.Requireable<io.flow.v0.models.SyncStreamForm>;
|
|
17011
|
-
export const syncStreamReference: PropTypes.Requireable<io.flow.v0.models.SyncStreamReference>;
|
|
17012
|
-
export const syncStreamSettings: PropTypes.Requireable<io.flow.v0.models.SyncStreamSettings>;
|
|
17013
|
-
export const syncStreamSettingsForm: PropTypes.Requireable<io.flow.v0.models.SyncStreamSettingsForm>;
|
|
17014
17044
|
export const tax: PropTypes.Requireable<io.flow.v0.models.Tax>;
|
|
17015
17045
|
export const taxRegistration: PropTypes.Requireable<io.flow.v0.models.TaxRegistration>;
|
|
17016
17046
|
export const taxRegistrationForm: PropTypes.Requireable<io.flow.v0.models.TaxRegistrationForm>;
|