@flowio/types 11.24.110 → 11.24.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-internal.d.ts +219 -748
- package/dist/api.d.ts +187 -191
- package/package.json +2 -2
- package/src/api-internal.ts +304 -1029
- package/src/api.ts +273 -237
package/dist/api.d.ts
CHANGED
|
@@ -168,9 +168,12 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
168
168
|
type RefundFailureReason = 'charge_for_pending_refund_disputed' | 'declined' | 'expired_or_canceled_card' | 'insufficient_funds' | 'lost_or_stolen_card' | 'merchant_request' | 'unknown';
|
|
169
169
|
type RefundReason = 'duplicate' | 'fraudulent' | 'requested_by_customer';
|
|
170
170
|
type RefundStatus = 'succeeded' | 'failed' | 'pending' | 'canceled';
|
|
171
|
+
type ReportingReportRunStatus = 'pending' | 'succeeded' | 'failed';
|
|
172
|
+
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';
|
|
171
173
|
type RequestThreeDSecureType = 'automatic' | 'any';
|
|
172
174
|
type RequestedCapabilities = 'card_payments' | 'legacy_payments' | 'transfers';
|
|
173
175
|
type SetupFutureUsage = 'on_session' | 'off_session';
|
|
176
|
+
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';
|
|
174
177
|
type SourceFlow = 'redirect' | 'receiver' | 'code_verification' | 'none';
|
|
175
178
|
type SourceStatus = 'canceled' | 'chargeable' | 'consumed' | 'failed' | 'pending';
|
|
176
179
|
type SourceType = 'ach_credit_transfer' | 'ach_debit' | 'alipay' | 'bancontact' | 'bitcoin' | 'card' | 'eps' | 'giropay' | 'ideal' | 'klarna' | 'multibanco' | 'p24' | 'sepa_debit' | 'sofort' | 'three_d_secure';
|
|
@@ -967,11 +970,68 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
967
970
|
readonly total_count: number;
|
|
968
971
|
readonly url: string;
|
|
969
972
|
}
|
|
973
|
+
interface ReportRunParameters {
|
|
974
|
+
readonly interval_start: number;
|
|
975
|
+
readonly interval_end: number;
|
|
976
|
+
readonly columns?: string[];
|
|
977
|
+
readonly payout?: string;
|
|
978
|
+
readonly connected_account?: string;
|
|
979
|
+
readonly reporting_category?: string;
|
|
980
|
+
}
|
|
981
|
+
interface ReportingReportRun {
|
|
982
|
+
readonly id: string;
|
|
983
|
+
readonly object: string;
|
|
984
|
+
readonly created: number;
|
|
985
|
+
readonly error?: string;
|
|
986
|
+
readonly livemode: boolean;
|
|
987
|
+
readonly status: io.flow.stripe.v0.enums.ReportingReportRunStatus;
|
|
988
|
+
readonly result?: io.flow.stripe.v0.models.ReportingReportRunResult;
|
|
989
|
+
readonly succeeded_at?: number;
|
|
990
|
+
}
|
|
991
|
+
interface ReportingReportRunForm {
|
|
992
|
+
readonly report_type: io.flow.stripe.v0.enums.ReportingReportType;
|
|
993
|
+
readonly parameters: io.flow.stripe.v0.models.ReportRunParameters;
|
|
994
|
+
}
|
|
995
|
+
interface ReportingReportRunResult {
|
|
996
|
+
readonly id: string;
|
|
997
|
+
readonly object: string;
|
|
998
|
+
readonly created: number;
|
|
999
|
+
readonly expires_at: number;
|
|
1000
|
+
readonly filename: string;
|
|
1001
|
+
readonly links: any;
|
|
1002
|
+
readonly purpose: string;
|
|
1003
|
+
readonly size: number;
|
|
1004
|
+
readonly title: string;
|
|
1005
|
+
readonly type: string;
|
|
1006
|
+
readonly url: string;
|
|
1007
|
+
}
|
|
1008
|
+
interface ReportingReportRuns {
|
|
1009
|
+
readonly object: string;
|
|
1010
|
+
readonly data: io.flow.stripe.v0.models.ReportingReportRun[];
|
|
1011
|
+
readonly has_more: boolean;
|
|
1012
|
+
readonly url?: string;
|
|
1013
|
+
}
|
|
970
1014
|
interface Shipping {
|
|
971
1015
|
readonly address: io.flow.stripe.v0.models.Address;
|
|
972
1016
|
readonly name?: string;
|
|
973
1017
|
readonly phone?: string;
|
|
974
1018
|
}
|
|
1019
|
+
interface ShopifyPaymentStripeEvent {
|
|
1020
|
+
readonly id: string;
|
|
1021
|
+
readonly api_version?: string;
|
|
1022
|
+
readonly data: io.flow.stripe.v0.models.ShopifyPaymentStripeEventData;
|
|
1023
|
+
readonly request?: any;
|
|
1024
|
+
readonly type: io.flow.stripe.v0.enums.ShopifyPaymentStripeEventType;
|
|
1025
|
+
readonly object: string;
|
|
1026
|
+
readonly account?: string;
|
|
1027
|
+
readonly created: number;
|
|
1028
|
+
readonly livemode: boolean;
|
|
1029
|
+
readonly pending_webhooks: number;
|
|
1030
|
+
}
|
|
1031
|
+
interface ShopifyPaymentStripeEventData {
|
|
1032
|
+
readonly object?: any;
|
|
1033
|
+
readonly previous_attributes?: any;
|
|
1034
|
+
}
|
|
975
1035
|
interface Source {
|
|
976
1036
|
readonly id: string;
|
|
977
1037
|
readonly object: string;
|
|
@@ -1267,8 +1327,19 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1267
1327
|
readonly weight?: io.flow.shopify.external.v0.models.GraphqlWeight;
|
|
1268
1328
|
}
|
|
1269
1329
|
interface GraphqlMetafield {
|
|
1330
|
+
readonly id: string;
|
|
1270
1331
|
readonly key: string;
|
|
1271
1332
|
readonly value: string;
|
|
1333
|
+
readonly type?: string;
|
|
1334
|
+
}
|
|
1335
|
+
interface GraphqlMetaobject {
|
|
1336
|
+
readonly id: string;
|
|
1337
|
+
readonly displayName: string;
|
|
1338
|
+
readonly fields: io.flow.shopify.external.v0.models.GraphqlMetaobjectField[];
|
|
1339
|
+
}
|
|
1340
|
+
interface GraphqlMetaobjectField {
|
|
1341
|
+
readonly key: string;
|
|
1342
|
+
readonly value?: string;
|
|
1272
1343
|
}
|
|
1273
1344
|
interface GraphqlOption {
|
|
1274
1345
|
readonly id: string;
|
|
@@ -1426,6 +1497,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1426
1497
|
readonly updated_at: string;
|
|
1427
1498
|
readonly has_variants_that_requires_components?: boolean;
|
|
1428
1499
|
readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
1500
|
+
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
1429
1501
|
}
|
|
1430
1502
|
interface ProductDelete {
|
|
1431
1503
|
readonly id: number;
|
|
@@ -1440,6 +1512,16 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1440
1512
|
readonly updated_at?: string;
|
|
1441
1513
|
readonly alt?: string;
|
|
1442
1514
|
}
|
|
1515
|
+
interface ProductMetafield {
|
|
1516
|
+
readonly id: number;
|
|
1517
|
+
readonly namespace: string;
|
|
1518
|
+
readonly key: string;
|
|
1519
|
+
readonly value: string;
|
|
1520
|
+
readonly created_at: string;
|
|
1521
|
+
readonly updated_at: string;
|
|
1522
|
+
readonly type: string;
|
|
1523
|
+
readonly admin_graphql_api_id: string;
|
|
1524
|
+
}
|
|
1443
1525
|
interface ProductVariant {
|
|
1444
1526
|
readonly id: number;
|
|
1445
1527
|
readonly sku?: string;
|
|
@@ -3552,12 +3634,6 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
3552
3634
|
readonly id: string;
|
|
3553
3635
|
readonly name: string;
|
|
3554
3636
|
}
|
|
3555
|
-
interface ShawnRoundtableWorkshopRate {
|
|
3556
|
-
readonly origin_country: string;
|
|
3557
|
-
readonly destination_country: string;
|
|
3558
|
-
readonly weight: number;
|
|
3559
|
-
readonly amount: number;
|
|
3560
|
-
}
|
|
3561
3637
|
interface TechOnboardingDescription {
|
|
3562
3638
|
readonly description: string;
|
|
3563
3639
|
}
|
|
@@ -4406,7 +4482,9 @@ declare namespace io.flow.v0.enums {
|
|
|
4406
4482
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
4407
4483
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
4408
4484
|
type Environment = 'sandbox' | 'production';
|
|
4409
|
-
type
|
|
4485
|
+
type EstimateOrigin = 'Shopify' | 'GlobalE' | 'Aftership' | 'Carrier';
|
|
4486
|
+
type EstimateType = 'Estimated' | 'Final';
|
|
4487
|
+
type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'ge_product_restriction_result_upserted' | 'ge_product_restriction_result_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
4410
4488
|
type ExceptionType = 'open' | 'closed';
|
|
4411
4489
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4412
4490
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -4459,10 +4537,10 @@ declare namespace io.flow.v0.enums {
|
|
|
4459
4537
|
type OnboardingApplicationStatus = 'to_do' | 'in_progress' | 'on_hold' | 'rejected' | 'accepted';
|
|
4460
4538
|
type OnboardingBlockedReason = 'street_address_is_blank_3pl' | 'street_address_is_po_box_3pl' | 'business_street_address_is_blank' | 'business_street_address_is_po_box' | 'exception_merchant' | 'application_missing' | 'missing_logistics_contact_info';
|
|
4461
4539
|
type OnboardingTradeSector = 'accessories' | 'animals_and_pet_supplies' | 'apparel' | 'apparel_and_accessories' | 'arts_and_entertainment' | 'baby_and_toddler' | 'business_and_industrial' | 'cameras_and_optics' | 'electronics' | 'food_beverages_and_tobacco' | 'furniture' | 'gift_cards' | 'hardware' | 'health_and_beauty' | 'home_and_garden' | 'jewelry' | 'luggage_and_bags' | 'mature' | 'media' | 'office_supplies' | 'paper_and_art' | 'religious_and_ceremonial' | 'software' | 'sporting_goods' | 'sports_and_fitness' | 'toys_and_games' | 'toys_hobbies_gifts' | 'vehicles_and_parts' | 'other';
|
|
4462
|
-
type OptinResponseType = 'not_shown' | 'opted_in' | 'opted_out';
|
|
4463
4540
|
type OrderChangeSource = 'consumer' | 'retailer' | 'fulfillment' | 'flow' | 'carrier';
|
|
4464
4541
|
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';
|
|
4465
4542
|
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
4543
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
4466
4544
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
4467
4545
|
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';
|
|
4468
4546
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
@@ -4522,7 +4600,6 @@ declare namespace io.flow.v0.enums {
|
|
|
4522
4600
|
type Role = 'admin' | 'member';
|
|
4523
4601
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
4524
4602
|
type RoundingType = 'pattern' | 'multiple';
|
|
4525
|
-
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
4526
4603
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
4527
4604
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
4528
4605
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
@@ -4538,9 +4615,6 @@ declare namespace io.flow.v0.enums {
|
|
|
4538
4615
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
4539
4616
|
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';
|
|
4540
4617
|
type SurchargeResponsibleParty = 'organization' | 'customer';
|
|
4541
|
-
type SyncRecordFailureReason = 'inventory' | 'address' | 'promotion' | 'other';
|
|
4542
|
-
type SyncStreamType = 'submitted_order' | 'placed_order';
|
|
4543
|
-
type SyncUnitOfTime = 'day' | 'hour' | 'minute' | 'second';
|
|
4544
4618
|
type TaxApplicability = 'none' | 'all';
|
|
4545
4619
|
type TaxReportType = 'consumer' | 'b2b';
|
|
4546
4620
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -4553,10 +4627,10 @@ declare namespace io.flow.v0.enums {
|
|
|
4553
4627
|
type TierStrategy = 'fastest' | 'lowest_cost';
|
|
4554
4628
|
type TokenType = 'permanent' | 'one_time';
|
|
4555
4629
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
4556
|
-
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
|
|
4630
|
+
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
4557
4631
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
4558
4632
|
type TradeAgreementStatus = 'supported' | 'not_supported';
|
|
4559
|
-
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' | '
|
|
4633
|
+
type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'non_l4l_tax_duty_fx' | 'ge_revenue_share' | 'tax_duty_delta';
|
|
4560
4634
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
4561
4635
|
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';
|
|
4562
4636
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
@@ -4962,6 +5036,18 @@ declare namespace io.flow.v0.models {
|
|
|
4962
5036
|
readonly region?: string;
|
|
4963
5037
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
4964
5038
|
}
|
|
5039
|
+
interface AnshItemDeleted {
|
|
5040
|
+
readonly discriminator: 'ansh_item_deleted';
|
|
5041
|
+
readonly event_id: string;
|
|
5042
|
+
readonly timestamp: string;
|
|
5043
|
+
readonly id: string;
|
|
5044
|
+
}
|
|
5045
|
+
interface AnshItemUpserted {
|
|
5046
|
+
readonly discriminator: 'ansh_item_upserted';
|
|
5047
|
+
readonly event_id: string;
|
|
5048
|
+
readonly timestamp: string;
|
|
5049
|
+
readonly item: io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
5050
|
+
}
|
|
4965
5051
|
interface ApplePayMerchantValidationPayload {
|
|
4966
5052
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
4967
5053
|
readonly validation_url: string;
|
|
@@ -5121,6 +5207,30 @@ declare namespace io.flow.v0.models {
|
|
|
5121
5207
|
interface AuthorizationResultDescription {
|
|
5122
5208
|
readonly display: string;
|
|
5123
5209
|
}
|
|
5210
|
+
interface AuthorizationRetry {
|
|
5211
|
+
readonly id: string;
|
|
5212
|
+
readonly authorization_request_id: string;
|
|
5213
|
+
readonly authorization_id: string;
|
|
5214
|
+
readonly organization_id: string;
|
|
5215
|
+
readonly attempt: number;
|
|
5216
|
+
readonly last_failure_code: string;
|
|
5217
|
+
readonly created_at: string;
|
|
5218
|
+
readonly updated_at: string;
|
|
5219
|
+
}
|
|
5220
|
+
interface AuthorizationRetryDeleted {
|
|
5221
|
+
readonly discriminator: 'authorization_retry_deleted';
|
|
5222
|
+
readonly event_id: string;
|
|
5223
|
+
readonly timestamp: string;
|
|
5224
|
+
readonly organization: string;
|
|
5225
|
+
readonly id: string;
|
|
5226
|
+
}
|
|
5227
|
+
interface AuthorizationRetryUpserted {
|
|
5228
|
+
readonly discriminator: 'authorization_retry_upserted';
|
|
5229
|
+
readonly event_id: string;
|
|
5230
|
+
readonly timestamp: string;
|
|
5231
|
+
readonly organization: string;
|
|
5232
|
+
readonly authorization_retry: io.flow.v0.models.AuthorizationRetry;
|
|
5233
|
+
}
|
|
5124
5234
|
interface AuthorizationStatusChanged {
|
|
5125
5235
|
readonly discriminator: 'authorization_status_changed';
|
|
5126
5236
|
readonly event_id: string;
|
|
@@ -5363,25 +5473,6 @@ declare namespace io.flow.v0.models {
|
|
|
5363
5473
|
readonly origin_location_source?: io.flow.v0.enums.OriginLocationSource;
|
|
5364
5474
|
readonly hub_code?: string;
|
|
5365
5475
|
}
|
|
5366
|
-
interface BrowseOptinResponses {
|
|
5367
|
-
readonly id: string;
|
|
5368
|
-
readonly session_id: string;
|
|
5369
|
-
readonly optin_responses: io.flow.v0.models.OptinResponse[];
|
|
5370
|
-
}
|
|
5371
|
-
interface BrowseOptinResponsesDeleted {
|
|
5372
|
-
readonly discriminator: 'browse_optin_responses_deleted';
|
|
5373
|
-
readonly event_id: string;
|
|
5374
|
-
readonly timestamp: string;
|
|
5375
|
-
readonly organization: string;
|
|
5376
|
-
readonly id: string;
|
|
5377
|
-
}
|
|
5378
|
-
interface BrowseOptinResponsesUpserted {
|
|
5379
|
-
readonly discriminator: 'browse_optin_responses_upserted';
|
|
5380
|
-
readonly event_id: string;
|
|
5381
|
-
readonly timestamp: string;
|
|
5382
|
-
readonly organization: string;
|
|
5383
|
-
readonly browse_optin_responses: io.flow.v0.models.BrowseOptinResponses;
|
|
5384
|
-
}
|
|
5385
5476
|
interface BrowserInfo {
|
|
5386
5477
|
readonly origin?: string;
|
|
5387
5478
|
readonly language?: string;
|
|
@@ -5504,6 +5595,7 @@ declare namespace io.flow.v0.models {
|
|
|
5504
5595
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
5505
5596
|
readonly stored_method_usage_step?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
5506
5597
|
readonly authorized_at?: string;
|
|
5598
|
+
readonly authorization_request_id?: string;
|
|
5507
5599
|
}
|
|
5508
5600
|
interface CardAuthorizationDeletedV2 {
|
|
5509
5601
|
readonly discriminator: 'card_authorization_deleted_v2';
|
|
@@ -6098,26 +6190,6 @@ declare namespace io.flow.v0.models {
|
|
|
6098
6190
|
readonly name: string;
|
|
6099
6191
|
readonly value: string;
|
|
6100
6192
|
}
|
|
6101
|
-
interface CheckoutOptinResponses {
|
|
6102
|
-
readonly id: string;
|
|
6103
|
-
readonly order_number: string;
|
|
6104
|
-
readonly session_id: string;
|
|
6105
|
-
readonly optin_responses: io.flow.v0.models.OptinResponse[];
|
|
6106
|
-
}
|
|
6107
|
-
interface CheckoutOptinResponsesDeleted {
|
|
6108
|
-
readonly discriminator: 'checkout_optin_responses_deleted';
|
|
6109
|
-
readonly event_id: string;
|
|
6110
|
-
readonly timestamp: string;
|
|
6111
|
-
readonly organization: string;
|
|
6112
|
-
readonly id: string;
|
|
6113
|
-
}
|
|
6114
|
-
interface CheckoutOptinResponsesUpserted {
|
|
6115
|
-
readonly discriminator: 'checkout_optin_responses_upserted';
|
|
6116
|
-
readonly event_id: string;
|
|
6117
|
-
readonly timestamp: string;
|
|
6118
|
-
readonly organization: string;
|
|
6119
|
-
readonly checkout_optin_responses: io.flow.v0.models.CheckoutOptinResponses;
|
|
6120
|
-
}
|
|
6121
6193
|
interface CheckoutReference {
|
|
6122
6194
|
readonly id: string;
|
|
6123
6195
|
}
|
|
@@ -7078,6 +7150,14 @@ declare namespace io.flow.v0.models {
|
|
|
7078
7150
|
readonly number: string;
|
|
7079
7151
|
readonly issuing_country?: string;
|
|
7080
7152
|
}
|
|
7153
|
+
interface Estimate {
|
|
7154
|
+
readonly id: string;
|
|
7155
|
+
readonly organization_id: string;
|
|
7156
|
+
readonly label_id: string;
|
|
7157
|
+
readonly estimate: io.flow.v0.models.ShippingLabelHopSummary;
|
|
7158
|
+
readonly type: io.flow.v0.enums.EstimateType;
|
|
7159
|
+
readonly origin?: io.flow.v0.enums.EstimateOrigin;
|
|
7160
|
+
}
|
|
7081
7161
|
interface EstimatedDimensions {
|
|
7082
7162
|
readonly depth: io.flow.v0.models.Measurement;
|
|
7083
7163
|
readonly length: io.flow.v0.models.Measurement;
|
|
@@ -7663,6 +7743,41 @@ declare namespace io.flow.v0.models {
|
|
|
7663
7743
|
readonly hs6_code: string;
|
|
7664
7744
|
readonly landed_costs: io.flow.v0.models.LaneLandedCost[];
|
|
7665
7745
|
}
|
|
7746
|
+
interface GeItemDeleted {
|
|
7747
|
+
readonly discriminator: 'ge_item_deleted';
|
|
7748
|
+
readonly event_id: string;
|
|
7749
|
+
readonly timestamp: string;
|
|
7750
|
+
readonly organization: string;
|
|
7751
|
+
readonly item: io.flow.v0.models.Item;
|
|
7752
|
+
}
|
|
7753
|
+
interface GeItemInserted {
|
|
7754
|
+
readonly discriminator: 'ge_item_inserted';
|
|
7755
|
+
readonly event_id: string;
|
|
7756
|
+
readonly timestamp: string;
|
|
7757
|
+
readonly organization: string;
|
|
7758
|
+
readonly item: io.flow.v0.models.Item;
|
|
7759
|
+
}
|
|
7760
|
+
interface GeItemUpdated {
|
|
7761
|
+
readonly discriminator: 'ge_item_updated';
|
|
7762
|
+
readonly event_id: string;
|
|
7763
|
+
readonly timestamp: string;
|
|
7764
|
+
readonly organization: string;
|
|
7765
|
+
readonly item: io.flow.v0.models.Item;
|
|
7766
|
+
}
|
|
7767
|
+
interface GeProductRestrictionResultDeleted {
|
|
7768
|
+
readonly discriminator: 'ge_product_restriction_result_deleted';
|
|
7769
|
+
readonly event_id: string;
|
|
7770
|
+
readonly timestamp: string;
|
|
7771
|
+
readonly organization: string;
|
|
7772
|
+
readonly id: string;
|
|
7773
|
+
}
|
|
7774
|
+
interface GeProductRestrictionResultUpserted {
|
|
7775
|
+
readonly discriminator: 'ge_product_restriction_result_upserted';
|
|
7776
|
+
readonly event_id: string;
|
|
7777
|
+
readonly timestamp: string;
|
|
7778
|
+
readonly organization: string;
|
|
7779
|
+
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
7780
|
+
}
|
|
7666
7781
|
interface GenerateLoad {
|
|
7667
7782
|
readonly discriminator: 'generate_load';
|
|
7668
7783
|
readonly event_id: string;
|
|
@@ -8539,13 +8654,6 @@ declare namespace io.flow.v0.models {
|
|
|
8539
8654
|
readonly duty?: io.flow.v0.models.LocalizedItemDuty;
|
|
8540
8655
|
readonly price: io.flow.v0.models.LocalizedItemPrice;
|
|
8541
8656
|
}
|
|
8542
|
-
interface LocalItemDeleted {
|
|
8543
|
-
readonly discriminator: 'local_item_deleted';
|
|
8544
|
-
readonly event_id: string;
|
|
8545
|
-
readonly timestamp: string;
|
|
8546
|
-
readonly organization: string;
|
|
8547
|
-
readonly local_item: io.flow.v0.models.LocalItem;
|
|
8548
|
-
}
|
|
8549
8657
|
interface LocalItemPricing {
|
|
8550
8658
|
readonly price: io.flow.v0.models.LocalizedItemPrice;
|
|
8551
8659
|
readonly vat?: io.flow.v0.models.LocalizedItemVat;
|
|
@@ -8554,13 +8662,6 @@ declare namespace io.flow.v0.models {
|
|
|
8554
8662
|
readonly attributes: Record<string, io.flow.v0.models.PriceWithBase>;
|
|
8555
8663
|
readonly price_attributes?: Record<string, io.flow.v0.models.LocalItemAttributePricing>;
|
|
8556
8664
|
}
|
|
8557
|
-
interface LocalItemUpserted {
|
|
8558
|
-
readonly discriminator: 'local_item_upserted';
|
|
8559
|
-
readonly event_id: string;
|
|
8560
|
-
readonly timestamp: string;
|
|
8561
|
-
readonly organization: string;
|
|
8562
|
-
readonly local_item: io.flow.v0.models.LocalItem;
|
|
8563
|
-
}
|
|
8564
8665
|
interface LocalPriceDetails {
|
|
8565
8666
|
readonly base: io.flow.v0.models.PriceDetails;
|
|
8566
8667
|
readonly local: io.flow.v0.models.PriceDetails;
|
|
@@ -8970,6 +9071,7 @@ declare namespace io.flow.v0.models {
|
|
|
8970
9071
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
8971
9072
|
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
8972
9073
|
readonly authorized_at?: string;
|
|
9074
|
+
readonly authorization_request_id?: string;
|
|
8973
9075
|
}
|
|
8974
9076
|
interface OnlineAuthorizationDeletedV2 {
|
|
8975
9077
|
readonly discriminator: 'online_authorization_deleted_v2';
|
|
@@ -8996,10 +9098,6 @@ declare namespace io.flow.v0.models {
|
|
|
8996
9098
|
readonly email?: string;
|
|
8997
9099
|
readonly phone?: string;
|
|
8998
9100
|
}
|
|
8999
|
-
interface OptinResponse {
|
|
9000
|
-
readonly key: string;
|
|
9001
|
-
readonly value: io.flow.v0.enums.OptinResponseType;
|
|
9002
|
-
}
|
|
9003
9101
|
interface OptionWeightEstimates {
|
|
9004
9102
|
readonly gravitational: io.flow.v0.models.Measurement;
|
|
9005
9103
|
readonly dimensional: io.flow.v0.models.Measurement;
|
|
@@ -9038,6 +9136,7 @@ declare namespace io.flow.v0.models {
|
|
|
9038
9136
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
9039
9137
|
readonly destination_contact_details?: io.flow.v0.models.DestinationContactDetail[];
|
|
9040
9138
|
readonly incoterm_summary?: io.flow.v0.models.IncotermSummary;
|
|
9139
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
9041
9140
|
}
|
|
9042
9141
|
interface OrderAddress {
|
|
9043
9142
|
readonly text?: string;
|
|
@@ -9161,6 +9260,7 @@ declare namespace io.flow.v0.models {
|
|
|
9161
9260
|
readonly authorization_keys?: string[];
|
|
9162
9261
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
9163
9262
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
9263
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
9164
9264
|
}
|
|
9165
9265
|
interface OrderFraudStatus {
|
|
9166
9266
|
readonly order: io.flow.v0.models.OrderReference;
|
|
@@ -9351,6 +9451,7 @@ declare namespace io.flow.v0.models {
|
|
|
9351
9451
|
readonly authorization_keys?: string[];
|
|
9352
9452
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
9353
9453
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
9454
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
9354
9455
|
}
|
|
9355
9456
|
interface OrderReference {
|
|
9356
9457
|
readonly discriminator: 'order_reference';
|
|
@@ -10680,9 +10781,6 @@ declare namespace io.flow.v0.models {
|
|
|
10680
10781
|
readonly organization: string;
|
|
10681
10782
|
readonly id: string;
|
|
10682
10783
|
}
|
|
10683
|
-
interface PriceBookItemExportOptions {
|
|
10684
|
-
readonly available_identifiers: io.flow.v0.enums.ItemIdentifier[];
|
|
10685
|
-
}
|
|
10686
10784
|
interface PriceBookItemExportType {
|
|
10687
10785
|
readonly discriminator: 'price_book_item_export_type';
|
|
10688
10786
|
readonly price_book_key?: string;
|
|
@@ -10895,26 +10993,6 @@ declare namespace io.flow.v0.models {
|
|
|
10895
10993
|
readonly organization: string;
|
|
10896
10994
|
readonly product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
10897
10995
|
}
|
|
10898
|
-
interface ProductSellability {
|
|
10899
|
-
readonly organization_id: string;
|
|
10900
|
-
readonly product_id?: string;
|
|
10901
|
-
readonly product_correlation_id: string;
|
|
10902
|
-
readonly restricted_regions: io.flow.v0.models.SellablilityRegionResult[];
|
|
10903
|
-
readonly in_review_regions: io.flow.v0.models.SellablilityRegionResult[];
|
|
10904
|
-
}
|
|
10905
|
-
interface ProductSellabilityForm {
|
|
10906
|
-
readonly organization_id: string;
|
|
10907
|
-
readonly product_id?: string;
|
|
10908
|
-
readonly product_correlation_id: string;
|
|
10909
|
-
readonly name: string;
|
|
10910
|
-
readonly price: io.flow.v0.models.ProductSellabilityPrice;
|
|
10911
|
-
readonly description: string;
|
|
10912
|
-
readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
|
|
10913
|
-
}
|
|
10914
|
-
interface ProductSellabilityPrice {
|
|
10915
|
-
readonly currency: string;
|
|
10916
|
-
readonly amount: number;
|
|
10917
|
-
}
|
|
10918
10996
|
interface ProductTaxonomyCategory {
|
|
10919
10997
|
readonly name: string;
|
|
10920
10998
|
readonly full_name: string;
|
|
@@ -11751,10 +11829,6 @@ declare namespace io.flow.v0.models {
|
|
|
11751
11829
|
readonly discriminator: 'select_issuer_option_action_details';
|
|
11752
11830
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
11753
11831
|
}
|
|
11754
|
-
interface SellablilityRegionResult {
|
|
11755
|
-
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
11756
|
-
readonly regions: string[];
|
|
11757
|
-
}
|
|
11758
11832
|
interface ServiceReference {
|
|
11759
11833
|
readonly id: string;
|
|
11760
11834
|
}
|
|
@@ -12577,68 +12651,6 @@ declare namespace io.flow.v0.models {
|
|
|
12577
12651
|
readonly key: io.flow.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
12578
12652
|
readonly available: io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
12579
12653
|
}
|
|
12580
|
-
interface SyncDuration {
|
|
12581
|
-
readonly unit: io.flow.v0.enums.SyncUnitOfTime;
|
|
12582
|
-
readonly value: number;
|
|
12583
|
-
}
|
|
12584
|
-
interface SyncPendingRecord {
|
|
12585
|
-
readonly id: string;
|
|
12586
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
12587
|
-
readonly value: string;
|
|
12588
|
-
readonly system: string;
|
|
12589
|
-
}
|
|
12590
|
-
interface SyncRecord {
|
|
12591
|
-
readonly id: string;
|
|
12592
|
-
readonly system: string;
|
|
12593
|
-
readonly value: string;
|
|
12594
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
12595
|
-
}
|
|
12596
|
-
interface SyncRecordFailure {
|
|
12597
|
-
readonly id: string;
|
|
12598
|
-
readonly stream: io.flow.v0.models.SyncStreamReference;
|
|
12599
|
-
readonly value: string;
|
|
12600
|
-
readonly system: string;
|
|
12601
|
-
readonly reason: io.flow.v0.enums.SyncRecordFailureReason;
|
|
12602
|
-
readonly attributes?: Record<string, string>;
|
|
12603
|
-
}
|
|
12604
|
-
interface SyncRecordFailureForm {
|
|
12605
|
-
readonly stream_key: string;
|
|
12606
|
-
readonly value: string;
|
|
12607
|
-
readonly system: string;
|
|
12608
|
-
readonly reason: io.flow.v0.enums.SyncRecordFailureReason;
|
|
12609
|
-
readonly attributes?: Record<string, string>;
|
|
12610
|
-
}
|
|
12611
|
-
interface SyncRecordForm {
|
|
12612
|
-
readonly stream_key: string;
|
|
12613
|
-
readonly system: string;
|
|
12614
|
-
readonly value: string;
|
|
12615
|
-
}
|
|
12616
|
-
interface SyncStream {
|
|
12617
|
-
readonly id: string;
|
|
12618
|
-
readonly key: string;
|
|
12619
|
-
readonly type: io.flow.v0.enums.SyncStreamType;
|
|
12620
|
-
readonly systems: string[];
|
|
12621
|
-
readonly settings: io.flow.v0.models.SyncStreamSettings;
|
|
12622
|
-
}
|
|
12623
|
-
interface SyncStreamForm {
|
|
12624
|
-
readonly type: io.flow.v0.enums.SyncStreamType;
|
|
12625
|
-
readonly systems: string[];
|
|
12626
|
-
readonly settings?: io.flow.v0.models.SyncStreamSettingsForm;
|
|
12627
|
-
}
|
|
12628
|
-
interface SyncStreamReference {
|
|
12629
|
-
readonly id: string;
|
|
12630
|
-
readonly key: string;
|
|
12631
|
-
}
|
|
12632
|
-
interface SyncStreamSettings {
|
|
12633
|
-
readonly pending_record_after: io.flow.v0.models.SyncDuration;
|
|
12634
|
-
readonly warn_after: io.flow.v0.models.SyncDuration;
|
|
12635
|
-
readonly error_after: io.flow.v0.models.SyncDuration;
|
|
12636
|
-
}
|
|
12637
|
-
interface SyncStreamSettingsForm {
|
|
12638
|
-
readonly pending_record_after: io.flow.v0.models.SyncDuration;
|
|
12639
|
-
readonly warn_after: io.flow.v0.models.SyncDuration;
|
|
12640
|
-
readonly error_after: io.flow.v0.models.SyncDuration;
|
|
12641
|
-
}
|
|
12642
12654
|
interface Tax {
|
|
12643
12655
|
readonly name: string;
|
|
12644
12656
|
readonly rate: number;
|
|
@@ -13357,7 +13369,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13357
13369
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
13358
13370
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
13359
13371
|
type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
|
|
13360
|
-
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.
|
|
13372
|
+
type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.GeProductRestrictionResultUpserted | io.flow.v0.models.GeProductRestrictionResultDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
|
|
13361
13373
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
13362
13374
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
13363
13375
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -13514,6 +13526,8 @@ export declare type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
13514
13526
|
export declare type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
13515
13527
|
export declare type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
13516
13528
|
export declare type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
13529
|
+
export declare type AnshItemDeleted = io.flow.v0.models.AnshItemDeleted;
|
|
13530
|
+
export declare type AnshItemUpserted = io.flow.v0.models.AnshItemUpserted;
|
|
13517
13531
|
export declare type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
13518
13532
|
export declare type ApplepaySdkCreateResultActionDetails = io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
13519
13533
|
export declare type ApplepaySdkValidateResultActionDetails = io.flow.v0.models.ApplepaySdkValidateResultActionDetails;
|
|
@@ -13553,6 +13567,9 @@ export declare type AuthorizationResultActionPost = io.flow.v0.models.Authorizat
|
|
|
13553
13567
|
export declare type AuthorizationResultActionType = io.flow.v0.enums.AuthorizationResultActionType;
|
|
13554
13568
|
export declare type AuthorizationResultActionWait = io.flow.v0.models.AuthorizationResultActionWait;
|
|
13555
13569
|
export declare type AuthorizationResultDescription = io.flow.v0.models.AuthorizationResultDescription;
|
|
13570
|
+
export declare type AuthorizationRetry = io.flow.v0.models.AuthorizationRetry;
|
|
13571
|
+
export declare type AuthorizationRetryDeleted = io.flow.v0.models.AuthorizationRetryDeleted;
|
|
13572
|
+
export declare type AuthorizationRetryUpserted = io.flow.v0.models.AuthorizationRetryUpserted;
|
|
13556
13573
|
export declare type AuthorizationStatus = io.flow.v0.enums.AuthorizationStatus;
|
|
13557
13574
|
export declare type AuthorizationStatusChanged = io.flow.v0.models.AuthorizationStatusChanged;
|
|
13558
13575
|
export declare type AuthorizationVersion = io.flow.v0.models.AuthorizationVersion;
|
|
@@ -13600,9 +13617,6 @@ export declare type BillingDiscount = io.flow.v0.models.BillingDiscount;
|
|
|
13600
13617
|
export declare type BridgeManifest = io.flow.v0.models.BridgeManifest;
|
|
13601
13618
|
export declare type BridgeManifestForm = io.flow.v0.models.BridgeManifestForm;
|
|
13602
13619
|
export declare type BridgeShippingLabelForm = io.flow.v0.models.BridgeShippingLabelForm;
|
|
13603
|
-
export declare type BrowseOptinResponses = io.flow.v0.models.BrowseOptinResponses;
|
|
13604
|
-
export declare type BrowseOptinResponsesDeleted = io.flow.v0.models.BrowseOptinResponsesDeleted;
|
|
13605
|
-
export declare type BrowseOptinResponsesUpserted = io.flow.v0.models.BrowseOptinResponsesUpserted;
|
|
13606
13620
|
export declare type BrowserActionConfiguration = io.flow.v0.unions.BrowserActionConfiguration;
|
|
13607
13621
|
export declare type BrowserInfo = io.flow.v0.models.BrowserInfo;
|
|
13608
13622
|
export declare type BrowserInlineActionConfiguration = io.flow.v0.models.BrowserInlineActionConfiguration;
|
|
@@ -13727,9 +13741,6 @@ export declare type CheckoutAttribute = io.flow.v0.models.CheckoutAttribute;
|
|
|
13727
13741
|
export declare type CheckoutAttributeForm = io.flow.v0.models.CheckoutAttributeForm;
|
|
13728
13742
|
export declare type CheckoutItemContent = io.flow.v0.models.CheckoutItemContent;
|
|
13729
13743
|
export declare type CheckoutItemContentAttribute = io.flow.v0.models.CheckoutItemContentAttribute;
|
|
13730
|
-
export declare type CheckoutOptinResponses = io.flow.v0.models.CheckoutOptinResponses;
|
|
13731
|
-
export declare type CheckoutOptinResponsesDeleted = io.flow.v0.models.CheckoutOptinResponsesDeleted;
|
|
13732
|
-
export declare type CheckoutOptinResponsesUpserted = io.flow.v0.models.CheckoutOptinResponsesUpserted;
|
|
13733
13744
|
export declare type CheckoutReference = io.flow.v0.models.CheckoutReference;
|
|
13734
13745
|
export declare type CheckoutToken = io.flow.v0.models.CheckoutToken;
|
|
13735
13746
|
export declare type CheckoutTokenForm = io.flow.v0.unions.CheckoutTokenForm;
|
|
@@ -13929,6 +13940,9 @@ export declare type Entity = io.flow.v0.unions.Entity;
|
|
|
13929
13940
|
export declare type EntityIdentifier = io.flow.v0.models.EntityIdentifier;
|
|
13930
13941
|
export declare type EntityIdentifierType = io.flow.v0.enums.EntityIdentifierType;
|
|
13931
13942
|
export declare type Environment = io.flow.v0.enums.Environment;
|
|
13943
|
+
export declare type Estimate = io.flow.v0.models.Estimate;
|
|
13944
|
+
export declare type EstimateOrigin = io.flow.v0.enums.EstimateOrigin;
|
|
13945
|
+
export declare type EstimateType = io.flow.v0.enums.EstimateType;
|
|
13932
13946
|
export declare type EstimatedDimensions = io.flow.v0.models.EstimatedDimensions;
|
|
13933
13947
|
export declare type EstimatedWindow = io.flow.v0.models.EstimatedWindow;
|
|
13934
13948
|
export declare type Event = io.flow.v0.unions.Event;
|
|
@@ -14072,6 +14086,11 @@ export declare type FulfillmentRouting = io.flow.v0.enums.FulfillmentRouting;
|
|
|
14072
14086
|
export declare type FullyHarmonizedItemUpserted = io.flow.v0.models.FullyHarmonizedItemUpserted;
|
|
14073
14087
|
export declare type GatewayAuthenticationData = io.flow.v0.unions.GatewayAuthenticationData;
|
|
14074
14088
|
export declare type GatewayAuthenticationDataForm = io.flow.v0.unions.GatewayAuthenticationDataForm;
|
|
14089
|
+
export declare type GeItemDeleted = io.flow.v0.models.GeItemDeleted;
|
|
14090
|
+
export declare type GeItemInserted = io.flow.v0.models.GeItemInserted;
|
|
14091
|
+
export declare type GeItemUpdated = io.flow.v0.models.GeItemUpdated;
|
|
14092
|
+
export declare type GeProductRestrictionResultDeleted = io.flow.v0.models.GeProductRestrictionResultDeleted;
|
|
14093
|
+
export declare type GeProductRestrictionResultUpserted = io.flow.v0.models.GeProductRestrictionResultUpserted;
|
|
14075
14094
|
export declare type GenerateLoad = io.flow.v0.models.GenerateLoad;
|
|
14076
14095
|
export declare type GenericError = io.flow.v0.models.GenericError;
|
|
14077
14096
|
export declare type GenericErrorCode = io.flow.v0.enums.GenericErrorCode;
|
|
@@ -14233,9 +14252,7 @@ export declare type Link = io.flow.v0.models.Link;
|
|
|
14233
14252
|
export declare type Local = io.flow.v0.models.Local;
|
|
14234
14253
|
export declare type LocalItem = io.flow.v0.models.LocalItem;
|
|
14235
14254
|
export declare type LocalItemAttributePricing = io.flow.v0.models.LocalItemAttributePricing;
|
|
14236
|
-
export declare type LocalItemDeleted = io.flow.v0.models.LocalItemDeleted;
|
|
14237
14255
|
export declare type LocalItemPricing = io.flow.v0.models.LocalItemPricing;
|
|
14238
|
-
export declare type LocalItemUpserted = io.flow.v0.models.LocalItemUpserted;
|
|
14239
14256
|
export declare type LocalPriceDetails = io.flow.v0.models.LocalPriceDetails;
|
|
14240
14257
|
export declare type LocalSession = io.flow.v0.models.LocalSession;
|
|
14241
14258
|
export declare type Locale = io.flow.v0.models.Locale;
|
|
@@ -14327,8 +14344,6 @@ export declare type OnlineAuthorizationDetails = io.flow.v0.unions.OnlineAuthori
|
|
|
14327
14344
|
export declare type OnlineAuthorizationUpsertedV2 = io.flow.v0.models.OnlineAuthorizationUpsertedV2;
|
|
14328
14345
|
export declare type OnlinePaymentAuthorizationForm = io.flow.v0.models.OnlinePaymentAuthorizationForm;
|
|
14329
14346
|
export declare type OperationsContact = io.flow.v0.models.OperationsContact;
|
|
14330
|
-
export declare type OptinResponse = io.flow.v0.models.OptinResponse;
|
|
14331
|
-
export declare type OptinResponseType = io.flow.v0.enums.OptinResponseType;
|
|
14332
14347
|
export declare type OptionWeightEstimates = io.flow.v0.models.OptionWeightEstimates;
|
|
14333
14348
|
export declare type Options = io.flow.v0.models.Options;
|
|
14334
14349
|
export declare type Order = io.flow.v0.models.Order;
|
|
@@ -14379,6 +14394,7 @@ export declare type OrderNumberGeneratorUuid = io.flow.v0.models.OrderNumberGene
|
|
|
14379
14394
|
export declare type OrderNumberReference = io.flow.v0.models.OrderNumberReference;
|
|
14380
14395
|
export declare type OrderOptions = io.flow.v0.models.OrderOptions;
|
|
14381
14396
|
export declare type OrderPayment = io.flow.v0.models.OrderPayment;
|
|
14397
|
+
export declare type OrderPaymentSourceType = io.flow.v0.enums.OrderPaymentSourceType;
|
|
14382
14398
|
export declare type OrderPaymentType = io.flow.v0.enums.OrderPaymentType;
|
|
14383
14399
|
export declare type OrderPlaced = io.flow.v0.models.OrderPlaced;
|
|
14384
14400
|
export declare type OrderPlacedDetails = io.flow.v0.models.OrderPlacedDetails;
|
|
@@ -14665,7 +14681,6 @@ export declare type PriceBookDeleted = io.flow.v0.models.PriceBookDeleted;
|
|
|
14665
14681
|
export declare type PriceBookForm = io.flow.v0.models.PriceBookForm;
|
|
14666
14682
|
export declare type PriceBookItem = io.flow.v0.models.PriceBookItem;
|
|
14667
14683
|
export declare type PriceBookItemDeleted = io.flow.v0.models.PriceBookItemDeleted;
|
|
14668
|
-
export declare type PriceBookItemExportOptions = io.flow.v0.models.PriceBookItemExportOptions;
|
|
14669
14684
|
export declare type PriceBookItemExportType = io.flow.v0.models.PriceBookItemExportType;
|
|
14670
14685
|
export declare type PriceBookItemForm = io.flow.v0.models.PriceBookItemForm;
|
|
14671
14686
|
export declare type PriceBookItemQueryForm = io.flow.v0.models.PriceBookItemQueryForm;
|
|
@@ -14704,9 +14719,6 @@ export declare type ProductRestrictionResult = io.flow.v0.models.ProductRestrict
|
|
|
14704
14719
|
export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductRestrictionResultDeleted;
|
|
14705
14720
|
export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
14706
14721
|
export declare type ProductRestrictionRule = io.flow.v0.enums.ProductRestrictionRule;
|
|
14707
|
-
export declare type ProductSellability = io.flow.v0.models.ProductSellability;
|
|
14708
|
-
export declare type ProductSellabilityForm = io.flow.v0.models.ProductSellabilityForm;
|
|
14709
|
-
export declare type ProductSellabilityPrice = io.flow.v0.models.ProductSellabilityPrice;
|
|
14710
14722
|
export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
14711
14723
|
export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
14712
14724
|
export declare type ProductUpdated = io.flow.v0.models.ProductUpdated;
|
|
@@ -14854,7 +14866,6 @@ export declare type Rounding = io.flow.v0.models.Rounding;
|
|
|
14854
14866
|
export declare type RoundingMethod = io.flow.v0.enums.RoundingMethod;
|
|
14855
14867
|
export declare type RoundingType = io.flow.v0.enums.RoundingType;
|
|
14856
14868
|
export declare type RouteAudit = io.flow.v0.models.RouteAudit;
|
|
14857
|
-
export declare type RuleEffectType = io.flow.v0.enums.RuleEffectType;
|
|
14858
14869
|
export declare type Schedule = io.flow.v0.models.Schedule;
|
|
14859
14870
|
export declare type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
|
|
14860
14871
|
export declare type ScheduledExport = io.flow.v0.models.ScheduledExport;
|
|
@@ -14864,7 +14875,6 @@ export declare type SdkAdyenV3AuthenticationToken = io.flow.v0.unions.SdkAdyenV3
|
|
|
14864
14875
|
export declare type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
14865
14876
|
export declare type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
14866
14877
|
export declare type SelectIssuerOptionActionDetails = io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
14867
|
-
export declare type SellablilityRegionResult = io.flow.v0.models.SellablilityRegionResult;
|
|
14868
14878
|
export declare type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
14869
14879
|
export declare type ServiceFee = io.flow.v0.unions.ServiceFee;
|
|
14870
14880
|
export declare type ServiceReference = io.flow.v0.models.ServiceReference;
|
|
@@ -15014,20 +15024,6 @@ export declare type SurchargeResponsibleParty = io.flow.v0.enums.SurchargeRespon
|
|
|
15014
15024
|
export declare type SurchargeResponsiblePartyDisplay = io.flow.v0.models.SurchargeResponsiblePartyDisplay;
|
|
15015
15025
|
export declare type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
15016
15026
|
export declare type SurchargeSettingDisplay = io.flow.v0.models.SurchargeSettingDisplay;
|
|
15017
|
-
export declare type SyncDuration = io.flow.v0.models.SyncDuration;
|
|
15018
|
-
export declare type SyncPendingRecord = io.flow.v0.models.SyncPendingRecord;
|
|
15019
|
-
export declare type SyncRecord = io.flow.v0.models.SyncRecord;
|
|
15020
|
-
export declare type SyncRecordFailure = io.flow.v0.models.SyncRecordFailure;
|
|
15021
|
-
export declare type SyncRecordFailureForm = io.flow.v0.models.SyncRecordFailureForm;
|
|
15022
|
-
export declare type SyncRecordFailureReason = io.flow.v0.enums.SyncRecordFailureReason;
|
|
15023
|
-
export declare type SyncRecordForm = io.flow.v0.models.SyncRecordForm;
|
|
15024
|
-
export declare type SyncStream = io.flow.v0.models.SyncStream;
|
|
15025
|
-
export declare type SyncStreamForm = io.flow.v0.models.SyncStreamForm;
|
|
15026
|
-
export declare type SyncStreamReference = io.flow.v0.models.SyncStreamReference;
|
|
15027
|
-
export declare type SyncStreamSettings = io.flow.v0.models.SyncStreamSettings;
|
|
15028
|
-
export declare type SyncStreamSettingsForm = io.flow.v0.models.SyncStreamSettingsForm;
|
|
15029
|
-
export declare type SyncStreamType = io.flow.v0.enums.SyncStreamType;
|
|
15030
|
-
export declare type SyncUnitOfTime = io.flow.v0.enums.SyncUnitOfTime;
|
|
15031
15027
|
export declare type Tax = io.flow.v0.models.Tax;
|
|
15032
15028
|
export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
15033
15029
|
export declare type TaxRegistration = io.flow.v0.models.TaxRegistration;
|