@flowio/types 11.24.110 → 11.24.111
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 +168 -424
- package/dist/api.d.ts +169 -139
- package/package.json +2 -2
- package/src/api-internal.ts +235 -610
- package/src/api.ts +253 -166
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,14 @@ 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;
|
|
1272
1338
|
}
|
|
1273
1339
|
interface GraphqlOption {
|
|
1274
1340
|
readonly id: string;
|
|
@@ -1426,6 +1492,7 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1426
1492
|
readonly updated_at: string;
|
|
1427
1493
|
readonly has_variants_that_requires_components?: boolean;
|
|
1428
1494
|
readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
|
|
1495
|
+
readonly metafields?: io.flow.shopify.external.v0.models.ProductMetafield[];
|
|
1429
1496
|
}
|
|
1430
1497
|
interface ProductDelete {
|
|
1431
1498
|
readonly id: number;
|
|
@@ -1440,6 +1507,16 @@ declare namespace io.flow.shopify.external.v0.models {
|
|
|
1440
1507
|
readonly updated_at?: string;
|
|
1441
1508
|
readonly alt?: string;
|
|
1442
1509
|
}
|
|
1510
|
+
interface ProductMetafield {
|
|
1511
|
+
readonly id: number;
|
|
1512
|
+
readonly namespace: string;
|
|
1513
|
+
readonly key: string;
|
|
1514
|
+
readonly value: string;
|
|
1515
|
+
readonly created_at: string;
|
|
1516
|
+
readonly updated_at: string;
|
|
1517
|
+
readonly type: string;
|
|
1518
|
+
readonly admin_graphql_api_id: string;
|
|
1519
|
+
}
|
|
1443
1520
|
interface ProductVariant {
|
|
1444
1521
|
readonly id: number;
|
|
1445
1522
|
readonly sku?: string;
|
|
@@ -3552,12 +3629,6 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
|
|
|
3552
3629
|
readonly id: string;
|
|
3553
3630
|
readonly name: string;
|
|
3554
3631
|
}
|
|
3555
|
-
interface ShawnRoundtableWorkshopRate {
|
|
3556
|
-
readonly origin_country: string;
|
|
3557
|
-
readonly destination_country: string;
|
|
3558
|
-
readonly weight: number;
|
|
3559
|
-
readonly amount: number;
|
|
3560
|
-
}
|
|
3561
3632
|
interface TechOnboardingDescription {
|
|
3562
3633
|
readonly description: string;
|
|
3563
3634
|
}
|
|
@@ -4406,7 +4477,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4406
4477
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
4407
4478
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
4408
4479
|
type Environment = 'sandbox' | 'production';
|
|
4409
|
-
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' | '
|
|
4480
|
+
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';
|
|
4410
4481
|
type ExceptionType = 'open' | 'closed';
|
|
4411
4482
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
4412
4483
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -4463,6 +4534,7 @@ declare namespace io.flow.v0.enums {
|
|
|
4463
4534
|
type OrderChangeSource = 'consumer' | 'retailer' | 'fulfillment' | 'flow' | 'carrier';
|
|
4464
4535
|
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
4536
|
type OrderMerchantOfRecord = 'flow' | 'organization' | 'mixed';
|
|
4537
|
+
type OrderPaymentSourceType = 'globale' | 'third_party';
|
|
4466
4538
|
type OrderPaymentType = 'card' | 'online' | 'credit' | 'external' | 'subsidized' | 'installment_plan' | 'cash_on_delivery';
|
|
4467
4539
|
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
4540
|
type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
|
|
@@ -4522,7 +4594,6 @@ declare namespace io.flow.v0.enums {
|
|
|
4522
4594
|
type Role = 'admin' | 'member';
|
|
4523
4595
|
type RoundingMethod = 'up' | 'down' | 'nearest';
|
|
4524
4596
|
type RoundingType = 'pattern' | 'multiple';
|
|
4525
|
-
type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
|
|
4526
4597
|
type ScheduleExceptionStatus = 'Open' | 'Closed';
|
|
4527
4598
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
4528
4599
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
@@ -4538,9 +4609,6 @@ declare namespace io.flow.v0.enums {
|
|
|
4538
4609
|
type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
|
|
4539
4610
|
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
4611
|
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
4612
|
type TaxApplicability = 'none' | 'all';
|
|
4545
4613
|
type TaxReportType = 'consumer' | 'b2b';
|
|
4546
4614
|
type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
|
|
@@ -4553,10 +4621,10 @@ declare namespace io.flow.v0.enums {
|
|
|
4553
4621
|
type TierStrategy = 'fastest' | 'lowest_cost';
|
|
4554
4622
|
type TokenType = 'permanent' | 'one_time';
|
|
4555
4623
|
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';
|
|
4624
|
+
type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
|
|
4557
4625
|
type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
|
|
4558
4626
|
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' | '
|
|
4627
|
+
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
4628
|
type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
|
|
4561
4629
|
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
4630
|
type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
|
|
@@ -4962,6 +5030,18 @@ declare namespace io.flow.v0.models {
|
|
|
4962
5030
|
readonly region?: string;
|
|
4963
5031
|
readonly interval?: io.flow.v0.enums.UnitOfTime;
|
|
4964
5032
|
}
|
|
5033
|
+
interface AnshItemDeleted {
|
|
5034
|
+
readonly discriminator: 'ansh_item_deleted';
|
|
5035
|
+
readonly event_id: string;
|
|
5036
|
+
readonly timestamp: string;
|
|
5037
|
+
readonly id: string;
|
|
5038
|
+
}
|
|
5039
|
+
interface AnshItemUpserted {
|
|
5040
|
+
readonly discriminator: 'ansh_item_upserted';
|
|
5041
|
+
readonly event_id: string;
|
|
5042
|
+
readonly timestamp: string;
|
|
5043
|
+
readonly item: io.flow.tech.onboarding.playground.v0.models.AnshItem;
|
|
5044
|
+
}
|
|
4965
5045
|
interface ApplePayMerchantValidationPayload {
|
|
4966
5046
|
readonly discriminator: 'apple_pay_merchant_validation_payload';
|
|
4967
5047
|
readonly validation_url: string;
|
|
@@ -5121,6 +5201,30 @@ declare namespace io.flow.v0.models {
|
|
|
5121
5201
|
interface AuthorizationResultDescription {
|
|
5122
5202
|
readonly display: string;
|
|
5123
5203
|
}
|
|
5204
|
+
interface AuthorizationRetry {
|
|
5205
|
+
readonly id: string;
|
|
5206
|
+
readonly authorization_request_id: string;
|
|
5207
|
+
readonly authorization_id: string;
|
|
5208
|
+
readonly organization_id: string;
|
|
5209
|
+
readonly attempt: number;
|
|
5210
|
+
readonly last_failure_code: string;
|
|
5211
|
+
readonly created_at: string;
|
|
5212
|
+
readonly updated_at: string;
|
|
5213
|
+
}
|
|
5214
|
+
interface AuthorizationRetryDeleted {
|
|
5215
|
+
readonly discriminator: 'authorization_retry_deleted';
|
|
5216
|
+
readonly event_id: string;
|
|
5217
|
+
readonly timestamp: string;
|
|
5218
|
+
readonly organization: string;
|
|
5219
|
+
readonly id: string;
|
|
5220
|
+
}
|
|
5221
|
+
interface AuthorizationRetryUpserted {
|
|
5222
|
+
readonly discriminator: 'authorization_retry_upserted';
|
|
5223
|
+
readonly event_id: string;
|
|
5224
|
+
readonly timestamp: string;
|
|
5225
|
+
readonly organization: string;
|
|
5226
|
+
readonly authorization_retry: io.flow.v0.models.AuthorizationRetry;
|
|
5227
|
+
}
|
|
5124
5228
|
interface AuthorizationStatusChanged {
|
|
5125
5229
|
readonly discriminator: 'authorization_status_changed';
|
|
5126
5230
|
readonly event_id: string;
|
|
@@ -5504,6 +5608,7 @@ declare namespace io.flow.v0.models {
|
|
|
5504
5608
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
5505
5609
|
readonly stored_method_usage_step?: io.flow.v0.enums.StoredMethodUsageStep;
|
|
5506
5610
|
readonly authorized_at?: string;
|
|
5611
|
+
readonly authorization_request_id?: string;
|
|
5507
5612
|
}
|
|
5508
5613
|
interface CardAuthorizationDeletedV2 {
|
|
5509
5614
|
readonly discriminator: 'card_authorization_deleted_v2';
|
|
@@ -7663,6 +7768,41 @@ declare namespace io.flow.v0.models {
|
|
|
7663
7768
|
readonly hs6_code: string;
|
|
7664
7769
|
readonly landed_costs: io.flow.v0.models.LaneLandedCost[];
|
|
7665
7770
|
}
|
|
7771
|
+
interface GeItemDeleted {
|
|
7772
|
+
readonly discriminator: 'ge_item_deleted';
|
|
7773
|
+
readonly event_id: string;
|
|
7774
|
+
readonly timestamp: string;
|
|
7775
|
+
readonly organization: string;
|
|
7776
|
+
readonly item: io.flow.v0.models.Item;
|
|
7777
|
+
}
|
|
7778
|
+
interface GeItemInserted {
|
|
7779
|
+
readonly discriminator: 'ge_item_inserted';
|
|
7780
|
+
readonly event_id: string;
|
|
7781
|
+
readonly timestamp: string;
|
|
7782
|
+
readonly organization: string;
|
|
7783
|
+
readonly item: io.flow.v0.models.Item;
|
|
7784
|
+
}
|
|
7785
|
+
interface GeItemUpdated {
|
|
7786
|
+
readonly discriminator: 'ge_item_updated';
|
|
7787
|
+
readonly event_id: string;
|
|
7788
|
+
readonly timestamp: string;
|
|
7789
|
+
readonly organization: string;
|
|
7790
|
+
readonly item: io.flow.v0.models.Item;
|
|
7791
|
+
}
|
|
7792
|
+
interface GeProductRestrictionResultDeleted {
|
|
7793
|
+
readonly discriminator: 'ge_product_restriction_result_deleted';
|
|
7794
|
+
readonly event_id: string;
|
|
7795
|
+
readonly timestamp: string;
|
|
7796
|
+
readonly organization: string;
|
|
7797
|
+
readonly id: string;
|
|
7798
|
+
}
|
|
7799
|
+
interface GeProductRestrictionResultUpserted {
|
|
7800
|
+
readonly discriminator: 'ge_product_restriction_result_upserted';
|
|
7801
|
+
readonly event_id: string;
|
|
7802
|
+
readonly timestamp: string;
|
|
7803
|
+
readonly organization: string;
|
|
7804
|
+
readonly ge_product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
7805
|
+
}
|
|
7666
7806
|
interface GenerateLoad {
|
|
7667
7807
|
readonly discriminator: 'generate_load';
|
|
7668
7808
|
readonly event_id: string;
|
|
@@ -8539,13 +8679,6 @@ declare namespace io.flow.v0.models {
|
|
|
8539
8679
|
readonly duty?: io.flow.v0.models.LocalizedItemDuty;
|
|
8540
8680
|
readonly price: io.flow.v0.models.LocalizedItemPrice;
|
|
8541
8681
|
}
|
|
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
8682
|
interface LocalItemPricing {
|
|
8550
8683
|
readonly price: io.flow.v0.models.LocalizedItemPrice;
|
|
8551
8684
|
readonly vat?: io.flow.v0.models.LocalizedItemVat;
|
|
@@ -8554,13 +8687,6 @@ declare namespace io.flow.v0.models {
|
|
|
8554
8687
|
readonly attributes: Record<string, io.flow.v0.models.PriceWithBase>;
|
|
8555
8688
|
readonly price_attributes?: Record<string, io.flow.v0.models.LocalItemAttributePricing>;
|
|
8556
8689
|
}
|
|
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
8690
|
interface LocalPriceDetails {
|
|
8565
8691
|
readonly base: io.flow.v0.models.PriceDetails;
|
|
8566
8692
|
readonly local: io.flow.v0.models.PriceDetails;
|
|
@@ -8970,6 +9096,7 @@ declare namespace io.flow.v0.models {
|
|
|
8970
9096
|
readonly processor?: io.flow.v0.unions.ExpandablePaymentProcessor;
|
|
8971
9097
|
readonly confirmation_details?: io.flow.v0.unions.ConfirmationDetails;
|
|
8972
9098
|
readonly authorized_at?: string;
|
|
9099
|
+
readonly authorization_request_id?: string;
|
|
8973
9100
|
}
|
|
8974
9101
|
interface OnlineAuthorizationDeletedV2 {
|
|
8975
9102
|
readonly discriminator: 'online_authorization_deleted_v2';
|
|
@@ -9038,6 +9165,7 @@ declare namespace io.flow.v0.models {
|
|
|
9038
9165
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
9039
9166
|
readonly destination_contact_details?: io.flow.v0.models.DestinationContactDetail[];
|
|
9040
9167
|
readonly incoterm_summary?: io.flow.v0.models.IncotermSummary;
|
|
9168
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
9041
9169
|
}
|
|
9042
9170
|
interface OrderAddress {
|
|
9043
9171
|
readonly text?: string;
|
|
@@ -9161,6 +9289,7 @@ declare namespace io.flow.v0.models {
|
|
|
9161
9289
|
readonly authorization_keys?: string[];
|
|
9162
9290
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
9163
9291
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
9292
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
9164
9293
|
}
|
|
9165
9294
|
interface OrderFraudStatus {
|
|
9166
9295
|
readonly order: io.flow.v0.models.OrderReference;
|
|
@@ -9351,6 +9480,7 @@ declare namespace io.flow.v0.models {
|
|
|
9351
9480
|
readonly authorization_keys?: string[];
|
|
9352
9481
|
readonly options?: io.flow.v0.models.OrderOptions;
|
|
9353
9482
|
readonly device_details?: io.flow.v0.unions.DeviceDetails;
|
|
9483
|
+
readonly payment_source?: io.flow.v0.enums.OrderPaymentSourceType;
|
|
9354
9484
|
}
|
|
9355
9485
|
interface OrderReference {
|
|
9356
9486
|
readonly discriminator: 'order_reference';
|
|
@@ -10680,9 +10810,6 @@ declare namespace io.flow.v0.models {
|
|
|
10680
10810
|
readonly organization: string;
|
|
10681
10811
|
readonly id: string;
|
|
10682
10812
|
}
|
|
10683
|
-
interface PriceBookItemExportOptions {
|
|
10684
|
-
readonly available_identifiers: io.flow.v0.enums.ItemIdentifier[];
|
|
10685
|
-
}
|
|
10686
10813
|
interface PriceBookItemExportType {
|
|
10687
10814
|
readonly discriminator: 'price_book_item_export_type';
|
|
10688
10815
|
readonly price_book_key?: string;
|
|
@@ -10895,26 +11022,6 @@ declare namespace io.flow.v0.models {
|
|
|
10895
11022
|
readonly organization: string;
|
|
10896
11023
|
readonly product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
|
|
10897
11024
|
}
|
|
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
11025
|
interface ProductTaxonomyCategory {
|
|
10919
11026
|
readonly name: string;
|
|
10920
11027
|
readonly full_name: string;
|
|
@@ -11751,10 +11858,6 @@ declare namespace io.flow.v0.models {
|
|
|
11751
11858
|
readonly discriminator: 'select_issuer_option_action_details';
|
|
11752
11859
|
readonly issuer_options: io.flow.v0.models.IssuerReference[];
|
|
11753
11860
|
}
|
|
11754
|
-
interface SellablilityRegionResult {
|
|
11755
|
-
readonly type: io.flow.v0.enums.RuleEffectType;
|
|
11756
|
-
readonly regions: string[];
|
|
11757
|
-
}
|
|
11758
11861
|
interface ServiceReference {
|
|
11759
11862
|
readonly id: string;
|
|
11760
11863
|
}
|
|
@@ -12577,68 +12680,6 @@ declare namespace io.flow.v0.models {
|
|
|
12577
12680
|
readonly key: io.flow.v0.enums.DeliveryOptionCostDetailComponentKey;
|
|
12578
12681
|
readonly available: io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
|
|
12579
12682
|
}
|
|
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
12683
|
interface Tax {
|
|
12643
12684
|
readonly name: string;
|
|
12644
12685
|
readonly rate: number;
|
|
@@ -13357,7 +13398,7 @@ declare namespace io.flow.v0.unions {
|
|
|
13357
13398
|
type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
|
|
13358
13399
|
type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
|
|
13359
13400
|
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.
|
|
13401
|
+
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;
|
|
13361
13402
|
type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
|
|
13362
13403
|
type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
|
|
13363
13404
|
type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
|
|
@@ -13514,6 +13555,8 @@ export declare type AllocationV2 = io.flow.v0.models.AllocationV2;
|
|
|
13514
13555
|
export declare type AmountMargin = io.flow.v0.models.AmountMargin;
|
|
13515
13556
|
export declare type AmountMarginForm = io.flow.v0.models.AmountMarginForm;
|
|
13516
13557
|
export declare type AnalyticsExportType = io.flow.v0.models.AnalyticsExportType;
|
|
13558
|
+
export declare type AnshItemDeleted = io.flow.v0.models.AnshItemDeleted;
|
|
13559
|
+
export declare type AnshItemUpserted = io.flow.v0.models.AnshItemUpserted;
|
|
13517
13560
|
export declare type ApplePayMerchantValidationPayload = io.flow.v0.models.ApplePayMerchantValidationPayload;
|
|
13518
13561
|
export declare type ApplepaySdkCreateResultActionDetails = io.flow.v0.models.ApplepaySdkCreateResultActionDetails;
|
|
13519
13562
|
export declare type ApplepaySdkValidateResultActionDetails = io.flow.v0.models.ApplepaySdkValidateResultActionDetails;
|
|
@@ -13553,6 +13596,9 @@ export declare type AuthorizationResultActionPost = io.flow.v0.models.Authorizat
|
|
|
13553
13596
|
export declare type AuthorizationResultActionType = io.flow.v0.enums.AuthorizationResultActionType;
|
|
13554
13597
|
export declare type AuthorizationResultActionWait = io.flow.v0.models.AuthorizationResultActionWait;
|
|
13555
13598
|
export declare type AuthorizationResultDescription = io.flow.v0.models.AuthorizationResultDescription;
|
|
13599
|
+
export declare type AuthorizationRetry = io.flow.v0.models.AuthorizationRetry;
|
|
13600
|
+
export declare type AuthorizationRetryDeleted = io.flow.v0.models.AuthorizationRetryDeleted;
|
|
13601
|
+
export declare type AuthorizationRetryUpserted = io.flow.v0.models.AuthorizationRetryUpserted;
|
|
13556
13602
|
export declare type AuthorizationStatus = io.flow.v0.enums.AuthorizationStatus;
|
|
13557
13603
|
export declare type AuthorizationStatusChanged = io.flow.v0.models.AuthorizationStatusChanged;
|
|
13558
13604
|
export declare type AuthorizationVersion = io.flow.v0.models.AuthorizationVersion;
|
|
@@ -14072,6 +14118,11 @@ export declare type FulfillmentRouting = io.flow.v0.enums.FulfillmentRouting;
|
|
|
14072
14118
|
export declare type FullyHarmonizedItemUpserted = io.flow.v0.models.FullyHarmonizedItemUpserted;
|
|
14073
14119
|
export declare type GatewayAuthenticationData = io.flow.v0.unions.GatewayAuthenticationData;
|
|
14074
14120
|
export declare type GatewayAuthenticationDataForm = io.flow.v0.unions.GatewayAuthenticationDataForm;
|
|
14121
|
+
export declare type GeItemDeleted = io.flow.v0.models.GeItemDeleted;
|
|
14122
|
+
export declare type GeItemInserted = io.flow.v0.models.GeItemInserted;
|
|
14123
|
+
export declare type GeItemUpdated = io.flow.v0.models.GeItemUpdated;
|
|
14124
|
+
export declare type GeProductRestrictionResultDeleted = io.flow.v0.models.GeProductRestrictionResultDeleted;
|
|
14125
|
+
export declare type GeProductRestrictionResultUpserted = io.flow.v0.models.GeProductRestrictionResultUpserted;
|
|
14075
14126
|
export declare type GenerateLoad = io.flow.v0.models.GenerateLoad;
|
|
14076
14127
|
export declare type GenericError = io.flow.v0.models.GenericError;
|
|
14077
14128
|
export declare type GenericErrorCode = io.flow.v0.enums.GenericErrorCode;
|
|
@@ -14233,9 +14284,7 @@ export declare type Link = io.flow.v0.models.Link;
|
|
|
14233
14284
|
export declare type Local = io.flow.v0.models.Local;
|
|
14234
14285
|
export declare type LocalItem = io.flow.v0.models.LocalItem;
|
|
14235
14286
|
export declare type LocalItemAttributePricing = io.flow.v0.models.LocalItemAttributePricing;
|
|
14236
|
-
export declare type LocalItemDeleted = io.flow.v0.models.LocalItemDeleted;
|
|
14237
14287
|
export declare type LocalItemPricing = io.flow.v0.models.LocalItemPricing;
|
|
14238
|
-
export declare type LocalItemUpserted = io.flow.v0.models.LocalItemUpserted;
|
|
14239
14288
|
export declare type LocalPriceDetails = io.flow.v0.models.LocalPriceDetails;
|
|
14240
14289
|
export declare type LocalSession = io.flow.v0.models.LocalSession;
|
|
14241
14290
|
export declare type Locale = io.flow.v0.models.Locale;
|
|
@@ -14379,6 +14428,7 @@ export declare type OrderNumberGeneratorUuid = io.flow.v0.models.OrderNumberGene
|
|
|
14379
14428
|
export declare type OrderNumberReference = io.flow.v0.models.OrderNumberReference;
|
|
14380
14429
|
export declare type OrderOptions = io.flow.v0.models.OrderOptions;
|
|
14381
14430
|
export declare type OrderPayment = io.flow.v0.models.OrderPayment;
|
|
14431
|
+
export declare type OrderPaymentSourceType = io.flow.v0.enums.OrderPaymentSourceType;
|
|
14382
14432
|
export declare type OrderPaymentType = io.flow.v0.enums.OrderPaymentType;
|
|
14383
14433
|
export declare type OrderPlaced = io.flow.v0.models.OrderPlaced;
|
|
14384
14434
|
export declare type OrderPlacedDetails = io.flow.v0.models.OrderPlacedDetails;
|
|
@@ -14665,7 +14715,6 @@ export declare type PriceBookDeleted = io.flow.v0.models.PriceBookDeleted;
|
|
|
14665
14715
|
export declare type PriceBookForm = io.flow.v0.models.PriceBookForm;
|
|
14666
14716
|
export declare type PriceBookItem = io.flow.v0.models.PriceBookItem;
|
|
14667
14717
|
export declare type PriceBookItemDeleted = io.flow.v0.models.PriceBookItemDeleted;
|
|
14668
|
-
export declare type PriceBookItemExportOptions = io.flow.v0.models.PriceBookItemExportOptions;
|
|
14669
14718
|
export declare type PriceBookItemExportType = io.flow.v0.models.PriceBookItemExportType;
|
|
14670
14719
|
export declare type PriceBookItemForm = io.flow.v0.models.PriceBookItemForm;
|
|
14671
14720
|
export declare type PriceBookItemQueryForm = io.flow.v0.models.PriceBookItemQueryForm;
|
|
@@ -14704,9 +14753,6 @@ export declare type ProductRestrictionResult = io.flow.v0.models.ProductRestrict
|
|
|
14704
14753
|
export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductRestrictionResultDeleted;
|
|
14705
14754
|
export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
|
|
14706
14755
|
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
14756
|
export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
|
|
14711
14757
|
export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
|
|
14712
14758
|
export declare type ProductUpdated = io.flow.v0.models.ProductUpdated;
|
|
@@ -14854,7 +14900,6 @@ export declare type Rounding = io.flow.v0.models.Rounding;
|
|
|
14854
14900
|
export declare type RoundingMethod = io.flow.v0.enums.RoundingMethod;
|
|
14855
14901
|
export declare type RoundingType = io.flow.v0.enums.RoundingType;
|
|
14856
14902
|
export declare type RouteAudit = io.flow.v0.models.RouteAudit;
|
|
14857
|
-
export declare type RuleEffectType = io.flow.v0.enums.RuleEffectType;
|
|
14858
14903
|
export declare type Schedule = io.flow.v0.models.Schedule;
|
|
14859
14904
|
export declare type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
|
|
14860
14905
|
export declare type ScheduledExport = io.flow.v0.models.ScheduledExport;
|
|
@@ -14864,7 +14909,6 @@ export declare type SdkAdyenV3AuthenticationToken = io.flow.v0.unions.SdkAdyenV3
|
|
|
14864
14909
|
export declare type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
|
|
14865
14910
|
export declare type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
|
|
14866
14911
|
export declare type SelectIssuerOptionActionDetails = io.flow.v0.models.SelectIssuerOptionActionDetails;
|
|
14867
|
-
export declare type SellablilityRegionResult = io.flow.v0.models.SellablilityRegionResult;
|
|
14868
14912
|
export declare type ServiceDescription = io.flow.v0.unions.ServiceDescription;
|
|
14869
14913
|
export declare type ServiceFee = io.flow.v0.unions.ServiceFee;
|
|
14870
14914
|
export declare type ServiceReference = io.flow.v0.models.ServiceReference;
|
|
@@ -15014,20 +15058,6 @@ export declare type SurchargeResponsibleParty = io.flow.v0.enums.SurchargeRespon
|
|
|
15014
15058
|
export declare type SurchargeResponsiblePartyDisplay = io.flow.v0.models.SurchargeResponsiblePartyDisplay;
|
|
15015
15059
|
export declare type SurchargeSetting = io.flow.v0.models.SurchargeSetting;
|
|
15016
15060
|
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
15061
|
export declare type Tax = io.flow.v0.models.Tax;
|
|
15032
15062
|
export declare type TaxApplicability = io.flow.v0.enums.TaxApplicability;
|
|
15033
15063
|
export declare type TaxRegistration = io.flow.v0.models.TaxRegistration;
|