@flowio/api-types 0.0.235 → 0.0.237
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/generated/io.flow.adyen.v0.adyen.d.ts +2 -0
- package/generated/io.flow.ben.test.internal.v0.ben-test-internal.d.ts +0 -4
- package/generated/io.flow.channel.internal.v0.channel-internal.d.ts +7 -1
- package/generated/io.flow.common.v0.common.d.ts +1 -1
- package/generated/io.flow.experience.v0.experience.d.ts +13 -0
- package/generated/io.flow.internal.v0.api-internal.d.ts +288 -610
- package/generated/io.flow.label.v0.label.d.ts +6 -0
- package/generated/io.flow.partner.v0.partner.d.ts +9 -0
- package/generated/io.flow.payment.v0.payment.d.ts +5 -0
- package/generated/io.flow.shopify.markets.internal.event.v0.shopify-markets-internal-event.d.ts +57 -1
- package/generated/io.flow.shopify.markets.internal.v0.shopify-markets-internal.d.ts +5 -0
- package/generated/io.flow.stripe.v0.stripe.d.ts +13 -0
- package/generated/io.flow.tracking.v0.tracking.d.ts +1 -0
- package/generated/io.flow.v0.api.d.ts +22 -221
- package/index.d.ts +0 -1
- package/package.json +2 -2
- package/generated/io.flow.pricing.indicator.internal.event.v0.pricing-indicator-internal-event.d.ts +0 -28
|
@@ -6,6 +6,7 @@ declare namespace io.flow.label.v0.enums {
|
|
|
6
6
|
type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
|
|
7
7
|
type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
|
|
8
8
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
9
|
+
type ShippingLabelErrorCode = 'generic_error' | 'cancelled_order' | 'carrier_outage' | 'catalog_issue' | 'invalid_destination' | 'invalid_origin' | 'invalid_shipping_parameters' | 'merchant_error' | 'order_not_found' | 'order_processing' | 'restricted_item' | 'unsupported_lane';
|
|
9
10
|
type TrackingNumberType = 'flow' | 'carrier';
|
|
10
11
|
}
|
|
11
12
|
|
|
@@ -149,6 +150,11 @@ declare namespace io.flow.label.v0.models {
|
|
|
149
150
|
readonly 'required': boolean;
|
|
150
151
|
}
|
|
151
152
|
|
|
153
|
+
interface ShippingLabelError {
|
|
154
|
+
readonly 'code': io.flow.label.v0.enums.ShippingLabelErrorCode;
|
|
155
|
+
readonly 'messages': string[];
|
|
156
|
+
}
|
|
157
|
+
|
|
152
158
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
153
159
|
readonly 'units': io.flow.trueup.v0.models.LabelUnits;
|
|
154
160
|
readonly 'base': io.flow.trueup.v0.models.LabelBase;
|
|
@@ -127,6 +127,15 @@ declare namespace io.flow.partner.v0.models {
|
|
|
127
127
|
readonly 'id': string;
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
+
interface PartnerTrackingSubscription {
|
|
131
|
+
readonly 'id': string;
|
|
132
|
+
readonly 'carrier_tracking_number': string;
|
|
133
|
+
readonly 'carrier_id': string;
|
|
134
|
+
readonly 'source': string;
|
|
135
|
+
readonly 'reference_key': string;
|
|
136
|
+
readonly 'created_at': string;
|
|
137
|
+
}
|
|
138
|
+
|
|
130
139
|
interface SummaryLabelForm {
|
|
131
140
|
readonly 'discriminator': 'summary_label_form';
|
|
132
141
|
readonly 'organization': string;
|
|
@@ -859,6 +859,11 @@ declare namespace io.flow.payment.v0.models {
|
|
|
859
859
|
readonly 'eci'?: string;
|
|
860
860
|
readonly 'liability_sift'?: boolean;
|
|
861
861
|
readonly 'version'?: string;
|
|
862
|
+
readonly 'authenticated'?: boolean;
|
|
863
|
+
readonly 'authenticated_result'?: string;
|
|
864
|
+
readonly 'offered'?: boolean;
|
|
865
|
+
readonly 'offered_result'?: string;
|
|
866
|
+
readonly 'sca_exemption'?: string;
|
|
862
867
|
}
|
|
863
868
|
|
|
864
869
|
interface ThreedsChallengeActionDetails {
|
package/generated/io.flow.shopify.markets.internal.event.v0.shopify-markets-internal-event.d.ts
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
declare namespace io.flow.shopify.markets.internal.event.v0.enums {
|
|
2
|
+
type ShopifyIncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
3
|
+
}
|
|
4
|
+
|
|
1
5
|
declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
2
6
|
interface ChannelOrderSummaryDeleted {
|
|
3
7
|
readonly 'discriminator': 'channel_order_summary_deleted';
|
|
@@ -46,6 +50,45 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
46
50
|
readonly 'order_tax_and_duty_inclusivity_setting': io.flow.shopify.markets.internal.v0.models.OrderTaxAndDutyInclusivitySetting;
|
|
47
51
|
}
|
|
48
52
|
|
|
53
|
+
interface ShopifyIncotermIncludes {
|
|
54
|
+
readonly 'duties': boolean;
|
|
55
|
+
readonly 'taxes': boolean;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
interface ShopifyIncotermSummaryErrorData {
|
|
59
|
+
readonly 'id': string;
|
|
60
|
+
readonly 'shopify_order_id': string;
|
|
61
|
+
readonly 'order_number': string;
|
|
62
|
+
readonly 'configuration': io.flow.shopify.markets.internal.event.v0.enums.ShopifyIncotermConfiguration;
|
|
63
|
+
readonly 'includes': io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermIncludes;
|
|
64
|
+
readonly 'reason': string;
|
|
65
|
+
readonly 'order_submitted_at': string;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
interface ShopifyIncotermSummaryErrorPublished {
|
|
69
|
+
readonly 'discriminator': 'shopify_incoterm_summary_error_published';
|
|
70
|
+
readonly 'event_id': string;
|
|
71
|
+
readonly 'timestamp': string;
|
|
72
|
+
readonly 'organization': string;
|
|
73
|
+
readonly 'data': io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorData;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
interface ShopifyMarketsBestSellingProductDeleted {
|
|
77
|
+
readonly 'discriminator': 'shopify_markets_best_selling_product_deleted';
|
|
78
|
+
readonly 'event_id': string;
|
|
79
|
+
readonly 'timestamp': string;
|
|
80
|
+
readonly 'organization': string;
|
|
81
|
+
readonly 'id': string;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
interface ShopifyMarketsBestSellingProductUpserted {
|
|
85
|
+
readonly 'discriminator': 'shopify_markets_best_selling_product_upserted';
|
|
86
|
+
readonly 'event_id': string;
|
|
87
|
+
readonly 'timestamp': string;
|
|
88
|
+
readonly 'organization': string;
|
|
89
|
+
readonly 'shopify_markets_best_selling_product': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsBestSellingProduct;
|
|
90
|
+
}
|
|
91
|
+
|
|
49
92
|
interface ShopifyMarketsMetricsDeleted {
|
|
50
93
|
readonly 'discriminator': 'shopify_markets_metrics_deleted';
|
|
51
94
|
readonly 'event_id': string;
|
|
@@ -73,6 +116,19 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
73
116
|
readonly 'shopify_markets_order': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrder;
|
|
74
117
|
}
|
|
75
118
|
|
|
119
|
+
interface ShopifyMarketsOrderEditSummaryData {
|
|
120
|
+
readonly 'channel_order_acceptance': io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
|
|
121
|
+
readonly 'edited_at': string;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
interface ShopifyMarketsOrderEditSummaryPublished {
|
|
125
|
+
readonly 'discriminator': 'shopify_markets_order_edit_summary_published';
|
|
126
|
+
readonly 'event_id': string;
|
|
127
|
+
readonly 'timestamp': string;
|
|
128
|
+
readonly 'organization': string;
|
|
129
|
+
readonly 'data': io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryData;
|
|
130
|
+
}
|
|
131
|
+
|
|
76
132
|
interface ShopifyMarketsOrderUpserted {
|
|
77
133
|
readonly 'discriminator': 'shopify_markets_order_upserted';
|
|
78
134
|
readonly 'event_id': string;
|
|
@@ -147,5 +203,5 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
147
203
|
}
|
|
148
204
|
|
|
149
205
|
declare namespace io.flow.shopify.markets.internal.event.v0.unions {
|
|
150
|
-
type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted);
|
|
206
|
+
type ShopifyMarketsInternalEvent = (io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsWebhookRegistrationDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsShopStatisticsDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsMetricsDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrderSummaryDeleted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierUpserted | io.flow.shopify.markets.internal.event.v0.models.ChannelOrganizationIdentifierDeleted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingUpserted | io.flow.shopify.markets.internal.event.v0.models.OrderTaxAndDutyInclusivitySettingDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyProductBundleDeleted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsOrderEditSummaryPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted);
|
|
151
207
|
}
|
|
@@ -58,6 +58,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
58
58
|
readonly 'inventory_item_id': number;
|
|
59
59
|
readonly 'shopify_shop_id': number;
|
|
60
60
|
readonly 'shopify_inventory_item': io.flow.shopify.external.v0.models.ShopifyInventoryItemSummary;
|
|
61
|
+
readonly 'deleted_at'?: string;
|
|
61
62
|
}
|
|
62
63
|
|
|
63
64
|
interface MarketsOrder {
|
|
@@ -95,6 +96,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
95
96
|
readonly 'destination': string;
|
|
96
97
|
}
|
|
97
98
|
|
|
99
|
+
interface ShopifyMarketsBestSellingProduct {
|
|
100
|
+
readonly 'id': string;
|
|
101
|
+
}
|
|
102
|
+
|
|
98
103
|
interface ShopifyMarketsDiscrepancy {
|
|
99
104
|
readonly 'organization_id': string;
|
|
100
105
|
readonly 'count': number;
|
|
@@ -18,6 +18,8 @@ declare namespace io.flow.stripe.v0.enums {
|
|
|
18
18
|
type DisputePaymentMethodDetailsType = 'card' | 'klarna' | 'paypal';
|
|
19
19
|
type DisputeReason = 'bank_cannot_process' | 'check_returned' | 'credit_not_processed' | 'customer_initiated' | 'debit_not_authorized' | 'duplicate' | 'fraudulent' | 'general' | 'incorrect_account_details' | 'insufficient_funds' | 'product_not_received' | 'product_unacceptable' | 'subscription_canceled' | 'unrecognized';
|
|
20
20
|
type DisputeStatus = 'warning_needs_response' | 'warning_under_review' | 'warning_closed' | 'needs_response' | 'under_review' | 'won' | 'lost';
|
|
21
|
+
type EarlyFraudWarningEventType = 'radar.early_fraud_warning';
|
|
22
|
+
type EarlyFraudWarningType = 'card_never_received' | 'fraudulent_card_application' | 'made_with_counterfeit_card' | 'made_with_lost_card' | 'made_with_stolen_card' | 'unauthorized_use_of_card' | 'misc';
|
|
21
23
|
type ErrorCode = 'invalid_number' | 'invalid_expiry_month' | 'invalid_expiry_year' | 'invalid_cvc' | 'invalid_swipe_data' | 'country_code_invalid' | 'email_invalid' | 'postal_code_invalid' | 'invalid_characters' | 'url_invalid' | 'invalid_charge_amount' | 'incorrect_number' | 'incorrect_address' | 'incorrect_cvc' | 'incorrect_zip' | 'card_declined' | 'expired_card' | 'missing' | 'processing_error' | 'account_closed' | 'amount_too_small' | 'amount_too_large' | 'api_key_expired' | 'authentication_required' | 'capture_charge_authorization_expired' | 'capture_unauthorized_payment' | 'card_decline_rate_limit_exceeded' | 'charge_already_captured' | 'charge_already_refunded' | 'charge_disputed' | 'charge_exceeds_source_limit' | 'charge_expired_for_capture' | 'charge_invalid_parameter' | 'charge_not_refundable' | 'insufficient_funds' | 'intent_invalid_state' | 'livemode_mismatch' | 'parameter_invalid_empty' | 'parameter_invalid_integer' | 'parameter_invalid_string_blank' | 'parameter_invalid_string_empty' | 'parameter_missing' | 'parameter_unknown' | 'parameters_exclusive' | 'payment_intent_action_required' | 'payment_intent_authentication_failure' | 'payment_intent_incompatible_payment_method' | 'payment_intent_payment_attempt_expired' | 'payment_intent_payment_attempt_failed' | 'payment_intent_unexpected_state' | 'payment_intent_invalid_parameter' | 'payment_method_billing_details_address_missing' | 'payment_method_customer_decline' | 'payment_method_currency_mismatch' | 'payment_method_invalid_parameter' | 'payment_method_invalid_parameter_testmode' | 'payment_method_not_available' | 'payment_method_provider_decline' | 'payment_method_provider_timeout' | 'payment_method_unactivated' | 'payment_method_unexpected_state' | 'payment_method_unsupported_type' | 'platform_api_key_expired' | 'refund_disputed_payment' | 'testmode_charges_only' | 'tls_version_unsupported' | 'setup_attempt_failed' | 'setup_intent_authentication_failure' | 'setup_intent_invalid_parameter' | 'setup_intent_setup_attempt_expired' | 'setup_intent_unexpected_state';
|
|
22
24
|
type ErrorType = 'api_connection_error' | 'api_error' | 'authentication_error' | 'card_error' | 'idempotency_error' | 'invalid_request_error' | 'rate_limit_error' | 'validation_error';
|
|
23
25
|
type EventType = 'charge.captured' | 'charge.failed' | 'charge.pending' | 'charge.refunded' | 'charge.expired' | 'charge.succeeded' | 'charge.updated' | 'charge.refund.updated' | 'charge.dispute.closed' | 'charge.dispute.created' | 'charge.dispute.funds_reinstated' | 'charge.dispute.funds_withdrawn' | 'charge.dispute.updated' | 'payment_intent.created' | 'payment_intent.amount_capturable_updated' | 'payment_intent.payment_failed' | 'payment_intent.succeeded' | 'payment_intent.requires_action' | 'payment_intent.canceled' | 'payment_intent.processing' | 'source.canceled' | 'source.chargeable' | 'source.failed';
|
|
@@ -1076,6 +1078,17 @@ declare namespace io.flow.stripe.v0.models {
|
|
|
1076
1078
|
readonly 'previous_attributes'?: any/*object*/;
|
|
1077
1079
|
}
|
|
1078
1080
|
|
|
1081
|
+
interface StripeEarlyFraudWarningEvent {
|
|
1082
|
+
readonly 'id': string;
|
|
1083
|
+
readonly 'object': io.flow.stripe.v0.enums.EarlyFraudWarningEventType;
|
|
1084
|
+
readonly 'actionable': boolean;
|
|
1085
|
+
readonly 'charge': string;
|
|
1086
|
+
readonly 'created': number;
|
|
1087
|
+
readonly 'fraud_type': io.flow.stripe.v0.enums.EarlyFraudWarningType;
|
|
1088
|
+
readonly 'livemode': boolean;
|
|
1089
|
+
readonly 'payment_intent'?: string;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1079
1092
|
interface StripeError {
|
|
1080
1093
|
readonly 'type': io.flow.stripe.v0.enums.ErrorType;
|
|
1081
1094
|
readonly 'charge'?: string;
|
|
@@ -44,6 +44,7 @@ declare namespace io.flow.tracking.v0.models {
|
|
|
44
44
|
readonly 'status': io.flow.tracking.v0.enums.TrackingStatus;
|
|
45
45
|
readonly 'timestamp': string;
|
|
46
46
|
readonly 'description'?: string;
|
|
47
|
+
readonly 'aggregator_status_code'?: string;
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
interface TrackingEventForm {
|
|
@@ -4,7 +4,6 @@ declare namespace io.flow.v0.enums {
|
|
|
4
4
|
type AddressFieldName = 'first_name' | 'last_name' | 'street_1' | 'street_2' | 'city' | 'province' | 'postal' | 'country' | 'phone' | 'company' | 'vat_registration_number';
|
|
5
5
|
type AddressVerificationResultFieldCode = 'matched' | 'not_available' | 'not_checked' | 'not_matched';
|
|
6
6
|
type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
|
|
7
|
-
type Aggregate = 'maximum' | 'minimum';
|
|
8
7
|
type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
|
|
9
8
|
type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
|
|
10
9
|
type AuthenticationTechnique = 'anonymous' | 'session' | 'token' | 'partner_token' | 'user';
|
|
@@ -52,9 +51,9 @@ declare namespace io.flow.v0.enums {
|
|
|
52
51
|
type DutyItemApprovalStatus = 'pending' | 'certified' | 'decertified';
|
|
53
52
|
type EcommercePlatformType = 'commercetools' | 'custom' | 'hybris' | 'magento' | 'shopify' | 'shopify_markets' | 'sfcc' | 'solidus' | 'workarea';
|
|
54
53
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
55
|
-
type EntityIdentifierType = 'ioss' | 'voec';
|
|
54
|
+
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
56
55
|
type Environment = 'sandbox' | 'production';
|
|
57
|
-
type EventType = 'test_upserted' | 'generate_load' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | '
|
|
56
|
+
type EventType = 'test_upserted' | 'generate_load' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'email_notification_upserted' | 'email_notification_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
|
|
58
57
|
type ExceptionType = 'open' | 'closed';
|
|
59
58
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
60
59
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -82,9 +81,9 @@ declare namespace io.flow.v0.enums {
|
|
|
82
81
|
type ImportType = 'catalog_items' | 'catalog_items_external' | 'customs_descriptions' | 'customs_description_tariffs' | 'experiences_with_settings' | 'harmonization_codes' | 'item_prices' | 'item_form_overlays' | 'price_book_items' | 'price_book_items_query' | 'ratecard_lanes' | 'order_service_changes';
|
|
83
82
|
type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
|
|
84
83
|
type Incoterm = 'EXW' | 'FCA' | 'CPT' | 'CIP' | 'DAT' | 'DAP' | 'DDP' | 'FAS' | 'FOB' | 'CFR' | 'CIF' | 'DAF' | 'DES' | 'DEQ' | 'DDU';
|
|
84
|
+
type IncotermConfiguration = 'DDP' | 'DAP' | 'DDU' | 'UNSUPPORTED';
|
|
85
85
|
type InlineWindowViewportSize = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen' | 'responsive';
|
|
86
86
|
type InputSpecificationType = 'text' | 'number';
|
|
87
|
-
type InventoryStatus = 'has_inventory' | 'no_inventory';
|
|
88
87
|
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
89
88
|
type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
|
|
90
89
|
type ItemIdentifier = 'item_number' | 'sku';
|
|
@@ -212,7 +211,6 @@ declare namespace io.flow.v0.enums {
|
|
|
212
211
|
type UnitOfVolume = 'cubic_inch' | 'cubic_meter';
|
|
213
212
|
type UnitOfWeight = 'gram' | 'kilogram' | 'ounce' | 'pound';
|
|
214
213
|
type UpdatePolicy = 'auto' | 'queue' | 'discard';
|
|
215
|
-
type UpdateType = 'change' | 'set';
|
|
216
214
|
type UserStatus = 'pending' | 'active' | 'inactive';
|
|
217
215
|
type ValueAddedService = 'Hazardous Material';
|
|
218
216
|
type Visibility = 'public' | 'private';
|
|
@@ -3542,11 +3540,6 @@ declare namespace io.flow.v0.models {
|
|
|
3542
3540
|
readonly 'export': io.flow.v0.models.Export;
|
|
3543
3541
|
}
|
|
3544
3542
|
|
|
3545
|
-
interface ExternalApiTimeoutReservationError {
|
|
3546
|
-
readonly 'code': 'external_api_timeout';
|
|
3547
|
-
readonly 'messages': string[];
|
|
3548
|
-
}
|
|
3549
|
-
|
|
3550
3543
|
interface FeeDeduction {
|
|
3551
3544
|
readonly 'type': io.flow.v0.enums.FeeDeductionType;
|
|
3552
3545
|
readonly 'amount': number;
|
|
@@ -3859,11 +3852,6 @@ declare namespace io.flow.v0.models {
|
|
|
3859
3852
|
readonly 'messages': string[];
|
|
3860
3853
|
}
|
|
3861
3854
|
|
|
3862
|
-
interface GenericReservationError {
|
|
3863
|
-
readonly 'code': 'generic_reservation_error';
|
|
3864
|
-
readonly 'messages': string[];
|
|
3865
|
-
}
|
|
3866
|
-
|
|
3867
3855
|
interface GeoForm {
|
|
3868
3856
|
readonly 'country': string;
|
|
3869
3857
|
readonly 'currency': string;
|
|
@@ -4195,6 +4183,17 @@ declare namespace io.flow.v0.models {
|
|
|
4195
4183
|
readonly 'label': string;
|
|
4196
4184
|
}
|
|
4197
4185
|
|
|
4186
|
+
interface IncotermIncludes {
|
|
4187
|
+
readonly 'duties': boolean;
|
|
4188
|
+
readonly 'taxes': boolean;
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4191
|
+
interface IncotermSummary {
|
|
4192
|
+
readonly 'configuration': io.flow.v0.enums.IncotermConfiguration;
|
|
4193
|
+
readonly 'includes': io.flow.v0.models.IncotermIncludes;
|
|
4194
|
+
readonly 'reason'?: string;
|
|
4195
|
+
}
|
|
4196
|
+
|
|
4198
4197
|
interface IndirectTax {
|
|
4199
4198
|
readonly 'number'?: string;
|
|
4200
4199
|
readonly 'id'?: string;
|
|
@@ -4252,118 +4251,6 @@ declare namespace io.flow.v0.models {
|
|
|
4252
4251
|
readonly 'limitations'?: io.flow.v0.unions.InputSpecificationLimitation[];
|
|
4253
4252
|
}
|
|
4254
4253
|
|
|
4255
|
-
interface InventoryBackorder {
|
|
4256
|
-
readonly 'discriminator': 'inventory_backorder';
|
|
4257
|
-
readonly 'quantity': number;
|
|
4258
|
-
}
|
|
4259
|
-
|
|
4260
|
-
interface InventoryCenterReference {
|
|
4261
|
-
readonly 'key': string;
|
|
4262
|
-
}
|
|
4263
|
-
|
|
4264
|
-
interface InventoryCheckResponse {
|
|
4265
|
-
readonly 'items': io.flow.v0.models.InventoryCheckResponseItem[];
|
|
4266
|
-
}
|
|
4267
|
-
|
|
4268
|
-
interface InventoryCheckResponseItem {
|
|
4269
|
-
readonly 'number': string;
|
|
4270
|
-
readonly 'quantity': number;
|
|
4271
|
-
readonly 'inventory_status': io.flow.v0.enums.InventoryStatus;
|
|
4272
|
-
}
|
|
4273
|
-
|
|
4274
|
-
interface InventoryExperienceReference {
|
|
4275
|
-
readonly 'key': string;
|
|
4276
|
-
}
|
|
4277
|
-
|
|
4278
|
-
interface InventoryFollowEcommercePlatform {
|
|
4279
|
-
readonly 'discriminator': 'inventory_follow_ecommerce_platform';
|
|
4280
|
-
readonly 'quantity': number;
|
|
4281
|
-
}
|
|
4282
|
-
|
|
4283
|
-
interface InventoryItemReference {
|
|
4284
|
-
readonly 'number': string;
|
|
4285
|
-
}
|
|
4286
|
-
|
|
4287
|
-
interface InventoryRequest {
|
|
4288
|
-
readonly 'items': io.flow.v0.models.InventoryRequestItem[];
|
|
4289
|
-
}
|
|
4290
|
-
|
|
4291
|
-
interface InventoryRequestItem {
|
|
4292
|
-
readonly 'number': string;
|
|
4293
|
-
readonly 'quantity': number;
|
|
4294
|
-
}
|
|
4295
|
-
|
|
4296
|
-
interface InventoryRule {
|
|
4297
|
-
readonly 'id': string;
|
|
4298
|
-
readonly 'position': number;
|
|
4299
|
-
readonly 'query': string;
|
|
4300
|
-
readonly 'strategy': io.flow.v0.unions.InventoryStrategy;
|
|
4301
|
-
}
|
|
4302
|
-
|
|
4303
|
-
interface InventoryRuleForm {
|
|
4304
|
-
readonly 'position': number;
|
|
4305
|
-
readonly 'query': string;
|
|
4306
|
-
readonly 'strategy': io.flow.v0.unions.InventoryStrategy;
|
|
4307
|
-
}
|
|
4308
|
-
|
|
4309
|
-
interface InventoryRuleVersion {
|
|
4310
|
-
readonly 'id': string;
|
|
4311
|
-
readonly 'timestamp': string;
|
|
4312
|
-
readonly 'type': io.flow.v0.enums.ChangeType;
|
|
4313
|
-
readonly 'inventory_rule': io.flow.v0.models.InventoryRule;
|
|
4314
|
-
}
|
|
4315
|
-
|
|
4316
|
-
interface InventorySnapshot {
|
|
4317
|
-
readonly 'id': string;
|
|
4318
|
-
readonly 'available': number;
|
|
4319
|
-
readonly 'center': io.flow.v0.models.InventoryCenterReference;
|
|
4320
|
-
readonly 'item': io.flow.v0.models.InventoryItemReference;
|
|
4321
|
-
readonly 'quantity': number;
|
|
4322
|
-
}
|
|
4323
|
-
|
|
4324
|
-
interface InventorySnapshotVersion {
|
|
4325
|
-
readonly 'id': string;
|
|
4326
|
-
readonly 'timestamp': string;
|
|
4327
|
-
readonly 'type': io.flow.v0.enums.ChangeType;
|
|
4328
|
-
readonly 'inventory_snapshot': io.flow.v0.models.InventorySnapshot;
|
|
4329
|
-
}
|
|
4330
|
-
|
|
4331
|
-
interface InventoryStock {
|
|
4332
|
-
readonly 'discriminator': 'inventory_stock';
|
|
4333
|
-
readonly 'quantity': number;
|
|
4334
|
-
}
|
|
4335
|
-
|
|
4336
|
-
interface InventoryUnlimited {
|
|
4337
|
-
readonly 'discriminator': 'inventory_unlimited';
|
|
4338
|
-
readonly 'placeholder'?: string;
|
|
4339
|
-
}
|
|
4340
|
-
|
|
4341
|
-
interface InventoryUpdate {
|
|
4342
|
-
readonly 'id': string;
|
|
4343
|
-
readonly 'idempotency_key': string;
|
|
4344
|
-
readonly 'center': io.flow.v0.models.InventoryCenterReference;
|
|
4345
|
-
readonly 'item': io.flow.v0.models.InventoryItemReference;
|
|
4346
|
-
readonly 'notes': any/*object*/;
|
|
4347
|
-
readonly 'quantity': number;
|
|
4348
|
-
readonly 'type': io.flow.v0.enums.UpdateType;
|
|
4349
|
-
}
|
|
4350
|
-
|
|
4351
|
-
interface InventoryUpdateForm {
|
|
4352
|
-
readonly 'center': string;
|
|
4353
|
-
readonly 'idempotency_key': string;
|
|
4354
|
-
readonly 'item_number': string;
|
|
4355
|
-
readonly 'quantity': number;
|
|
4356
|
-
readonly 'type': io.flow.v0.enums.UpdateType;
|
|
4357
|
-
readonly 'notes'?: any/*object*/;
|
|
4358
|
-
}
|
|
4359
|
-
|
|
4360
|
-
interface InventoryUpdateVersion {
|
|
4361
|
-
readonly 'id': string;
|
|
4362
|
-
readonly 'timestamp': string;
|
|
4363
|
-
readonly 'type': io.flow.v0.enums.ChangeType;
|
|
4364
|
-
readonly 'inventory_update': io.flow.v0.models.InventoryUpdate;
|
|
4365
|
-
}
|
|
4366
|
-
|
|
4367
4254
|
interface Invitation {
|
|
4368
4255
|
readonly 'id': string;
|
|
4369
4256
|
readonly 'organization': io.flow.v0.unions.ExpandableOrganization;
|
|
@@ -5390,18 +5277,6 @@ declare namespace io.flow.v0.models {
|
|
|
5390
5277
|
readonly 'last'?: string;
|
|
5391
5278
|
}
|
|
5392
5279
|
|
|
5393
|
-
interface NoInventoryReservationError {
|
|
5394
|
-
readonly 'code': 'no_inventory';
|
|
5395
|
-
readonly 'messages': string[];
|
|
5396
|
-
readonly 'items': io.flow.v0.models.NoInventoryReservationErrorItem[];
|
|
5397
|
-
}
|
|
5398
|
-
|
|
5399
|
-
interface NoInventoryReservationErrorItem {
|
|
5400
|
-
readonly 'number': string;
|
|
5401
|
-
readonly 'requested_quantity': number;
|
|
5402
|
-
readonly 'available_quantity': number;
|
|
5403
|
-
}
|
|
5404
|
-
|
|
5405
5280
|
interface NotificationDeletedV2 {
|
|
5406
5281
|
readonly 'discriminator': 'notification_deleted_v2';
|
|
5407
5282
|
readonly 'event_id': string;
|
|
@@ -5551,6 +5426,7 @@ declare namespace io.flow.v0.models {
|
|
|
5551
5426
|
readonly 'geo'?: io.flow.v0.models.OrderGeo;
|
|
5552
5427
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
5553
5428
|
readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
|
|
5429
|
+
readonly 'incoterm_summary'?: io.flow.v0.models.IncotermSummary;
|
|
5554
5430
|
}
|
|
5555
5431
|
|
|
5556
5432
|
interface OrderAddress {
|
|
@@ -7394,20 +7270,6 @@ declare namespace io.flow.v0.models {
|
|
|
7394
7270
|
readonly 'path': string;
|
|
7395
7271
|
}
|
|
7396
7272
|
|
|
7397
|
-
interface PfsInventoryCheckResponse {
|
|
7398
|
-
readonly 'items': Record<string, io.flow.v0.models.PfsInventoryCheckResponseItem>;
|
|
7399
|
-
}
|
|
7400
|
-
|
|
7401
|
-
interface PfsInventoryCheckResponseItem {
|
|
7402
|
-
readonly 'number': string;
|
|
7403
|
-
readonly 'ats': number;
|
|
7404
|
-
readonly 'in_stock': boolean;
|
|
7405
|
-
}
|
|
7406
|
-
|
|
7407
|
-
interface PfsInventoryStatus {
|
|
7408
|
-
readonly 'status': string;
|
|
7409
|
-
}
|
|
7410
|
-
|
|
7411
7273
|
interface PhysicalDelivery {
|
|
7412
7274
|
readonly 'discriminator': 'physical_delivery';
|
|
7413
7275
|
readonly 'id': string;
|
|
@@ -8365,37 +8227,6 @@ declare namespace io.flow.v0.models {
|
|
|
8365
8227
|
readonly 'days_of_week': io.flow.v0.enums.DayOfWeek[];
|
|
8366
8228
|
}
|
|
8367
8229
|
|
|
8368
|
-
interface Reservation {
|
|
8369
|
-
readonly 'id': string;
|
|
8370
|
-
readonly 'key': string;
|
|
8371
|
-
readonly 'order'?: io.flow.v0.models.ReservationOrderReference;
|
|
8372
|
-
readonly 'items': io.flow.v0.models.ReservationItem[];
|
|
8373
|
-
readonly 'reserved_until'?: string;
|
|
8374
|
-
}
|
|
8375
|
-
|
|
8376
|
-
interface ReservationForm {
|
|
8377
|
-
readonly 'order_number'?: string;
|
|
8378
|
-
readonly 'items': io.flow.v0.models.ReservationItemForm[];
|
|
8379
|
-
}
|
|
8380
|
-
|
|
8381
|
-
interface ReservationItem {
|
|
8382
|
-
readonly 'item': io.flow.v0.models.ReservationItemReference;
|
|
8383
|
-
readonly 'quantity': number;
|
|
8384
|
-
}
|
|
8385
|
-
|
|
8386
|
-
interface ReservationItemForm {
|
|
8387
|
-
readonly 'item_number': string;
|
|
8388
|
-
readonly 'quantity': number;
|
|
8389
|
-
}
|
|
8390
|
-
|
|
8391
|
-
interface ReservationItemReference {
|
|
8392
|
-
readonly 'number': string;
|
|
8393
|
-
}
|
|
8394
|
-
|
|
8395
|
-
interface ReservationOrderReference {
|
|
8396
|
-
readonly 'number': string;
|
|
8397
|
-
}
|
|
8398
|
-
|
|
8399
8230
|
interface Return {
|
|
8400
8231
|
readonly 'id': string;
|
|
8401
8232
|
readonly 'key': string;
|
|
@@ -8629,21 +8460,6 @@ declare namespace io.flow.v0.models {
|
|
|
8629
8460
|
readonly 'roles': io.flow.v0.enums.FlowRole[];
|
|
8630
8461
|
}
|
|
8631
8462
|
|
|
8632
|
-
interface RuleDeleted {
|
|
8633
|
-
readonly 'discriminator': 'rule_deleted';
|
|
8634
|
-
readonly 'event_id': string;
|
|
8635
|
-
readonly 'timestamp': string;
|
|
8636
|
-
readonly 'id': string;
|
|
8637
|
-
}
|
|
8638
|
-
|
|
8639
|
-
interface RuleUpserted {
|
|
8640
|
-
readonly 'discriminator': 'rule_upserted';
|
|
8641
|
-
readonly 'event_id': string;
|
|
8642
|
-
readonly 'timestamp': string;
|
|
8643
|
-
readonly 'organization_id': string;
|
|
8644
|
-
readonly 'rule': io.flow.v0.models.InventoryRule;
|
|
8645
|
-
}
|
|
8646
|
-
|
|
8647
8463
|
interface Schedule {
|
|
8648
8464
|
readonly 'calendar'?: io.flow.v0.enums.Calendar;
|
|
8649
8465
|
readonly 'holiday': io.flow.v0.enums.HolidayCalendar;
|
|
@@ -9478,25 +9294,6 @@ declare namespace io.flow.v0.models {
|
|
|
9478
9294
|
readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
|
|
9479
9295
|
}
|
|
9480
9296
|
|
|
9481
|
-
interface SnapshotDeleted {
|
|
9482
|
-
readonly 'discriminator': 'snapshot_deleted';
|
|
9483
|
-
readonly 'event_id': string;
|
|
9484
|
-
readonly 'timestamp': string;
|
|
9485
|
-
readonly 'snapshot_id': string;
|
|
9486
|
-
}
|
|
9487
|
-
|
|
9488
|
-
interface SnapshotUpserted {
|
|
9489
|
-
readonly 'discriminator': 'snapshot_upserted';
|
|
9490
|
-
readonly 'event_id': string;
|
|
9491
|
-
readonly 'timestamp': string;
|
|
9492
|
-
readonly 'organization': string;
|
|
9493
|
-
readonly 'snapshot_id': string;
|
|
9494
|
-
readonly 'available': number;
|
|
9495
|
-
readonly 'center_key': string;
|
|
9496
|
-
readonly 'item_number': string;
|
|
9497
|
-
readonly 'quantity': number;
|
|
9498
|
-
}
|
|
9499
|
-
|
|
9500
9297
|
interface SolidusProductExportType {
|
|
9501
9298
|
readonly 'discriminator': 'solidus_product_export_type';
|
|
9502
9299
|
readonly 'numbers'?: string[];
|
|
@@ -9901,6 +9698,11 @@ declare namespace io.flow.v0.models {
|
|
|
9901
9698
|
readonly 'eci'?: string;
|
|
9902
9699
|
readonly 'liability_sift'?: boolean;
|
|
9903
9700
|
readonly 'version'?: string;
|
|
9701
|
+
readonly 'authenticated'?: boolean;
|
|
9702
|
+
readonly 'authenticated_result'?: string;
|
|
9703
|
+
readonly 'offered'?: boolean;
|
|
9704
|
+
readonly 'offered_result'?: string;
|
|
9705
|
+
readonly 'sca_exemption'?: string;
|
|
9904
9706
|
}
|
|
9905
9707
|
|
|
9906
9708
|
interface ThreedsChallengeActionDetails {
|
|
@@ -10086,6 +9888,7 @@ declare namespace io.flow.v0.models {
|
|
|
10086
9888
|
readonly 'status': io.flow.v0.enums.TrackingStatus;
|
|
10087
9889
|
readonly 'timestamp': string;
|
|
10088
9890
|
readonly 'description'?: string;
|
|
9891
|
+
readonly 'aggregator_status_code'?: string;
|
|
10089
9892
|
}
|
|
10090
9893
|
|
|
10091
9894
|
interface TrackingEventForm {
|
|
@@ -10669,7 +10472,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10669
10472
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
10670
10473
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
10671
10474
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
10672
|
-
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.
|
|
10475
|
+
type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.EmailNotificationUpserted | io.flow.v0.models.EmailNotificationDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
|
|
10673
10476
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
10674
10477
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
10675
10478
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
|
@@ -10687,7 +10490,6 @@ declare namespace io.flow.v0.unions {
|
|
|
10687
10490
|
type GatewayAuthenticationDataForm = (io.flow.v0.models.StripeAuthenticationDataForm);
|
|
10688
10491
|
type InlineActionConfiguration = (io.flow.v0.models.BrowserInlineActionConfiguration);
|
|
10689
10492
|
type InputSpecificationLimitation = (io.flow.v0.models.InputSpecificationLimitationMax);
|
|
10690
|
-
type InventoryStrategy = (io.flow.v0.models.InventoryBackorder | io.flow.v0.models.InventoryStock | io.flow.v0.models.InventoryUnlimited | io.flow.v0.models.InventoryFollowEcommercePlatform);
|
|
10691
10493
|
type KnowYourBusiness = (io.flow.v0.models.KnowYourBusinessUsa);
|
|
10692
10494
|
type KnowYourBusinessForm = (io.flow.v0.models.KnowYourBusinessUsaForm);
|
|
10693
10495
|
type LabelSurchargeDetail = (io.flow.v0.models.LabelSurchargeDetailFlat | io.flow.v0.models.LabelSurchargeDetailPercentage | io.flow.v0.models.LabelSurchargeDetailPerWeightUnit);
|
|
@@ -10738,7 +10540,6 @@ declare namespace io.flow.v0.unions {
|
|
|
10738
10540
|
type RatecardEstimate = (io.flow.v0.models.RatecardEstimateV1 | io.flow.v0.models.RatecardEstimateV2 | io.flow.v0.models.RatecardEstimateV3 | io.flow.v0.models.RatecardEstimateV4);
|
|
10739
10541
|
type RatecardFee = (io.flow.v0.models.DdpRatecardFee | io.flow.v0.models.FuelSurchargeRatecardFee | io.flow.v0.models.OversizePieceSurchargeRatecardFee | io.flow.v0.models.ReturnPackageRatecardFee | io.flow.v0.models.CrossdockRatecardFee | io.flow.v0.models.RemoteAreaRatecardFee | io.flow.v0.models.EmergencySituationSurchargeRatecardFee | io.flow.v0.models.PeakSurchargeRatecardFee | io.flow.v0.models.DutiesTaxesPaidSurchargeRatecardFee | io.flow.v0.models.SecurityRatecardFee | io.flow.v0.models.EeiFilingRatecardFee | io.flow.v0.models.FixedDdpRatecardFee | io.flow.v0.models.FixedCurrencyConversionRatecardFee);
|
|
10740
10542
|
type RepeatSchedule = (io.flow.v0.models.RepeatHourly | io.flow.v0.models.RepeatDaily | io.flow.v0.models.RepeatWeekly | io.flow.v0.models.RepeatMonthly);
|
|
10741
|
-
type ReservationError = (io.flow.v0.models.NoInventoryReservationError | io.flow.v0.models.ExternalApiTimeoutReservationError | io.flow.v0.models.GenericReservationError);
|
|
10742
10543
|
type ReturnSource = (io.flow.v0.models.ReturnSourceFlow | io.flow.v0.models.ReturnSourceExternalVendor);
|
|
10743
10544
|
type SdkAdyenV3AuthenticationToken = (io.flow.v0.models.AdyenV3FingerprintToken | io.flow.v0.models.AdyenV3ChallengeToken);
|
|
10744
10545
|
type ServiceDescription = (io.flow.v0.models.ServiceSummary | io.flow.v0.models.ServiceUnknown);
|
package/index.d.ts
CHANGED
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
/// <reference path="generated/io.flow.payment.v0.payment.d.ts" />
|
|
46
46
|
/// <reference path="generated/io.flow.permission.v0.permission.d.ts" />
|
|
47
47
|
/// <reference path="generated/io.flow.price.v0.price.d.ts" />
|
|
48
|
-
/// <reference path="generated/io.flow.pricing.indicator.internal.event.v0.pricing-indicator-internal-event.d.ts" />
|
|
49
48
|
/// <reference path="generated/io.flow.query.builder.v0.query-builder.d.ts" />
|
|
50
49
|
/// <reference path="generated/io.flow.ratecard.v0.ratecard.d.ts" />
|
|
51
50
|
/// <reference path="generated/io.flow.reference.v0.reference.d.ts" />
|