@flowio/api-types 0.0.236 → 0.0.238
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.ben.test.internal.v0.ben-test-internal.d.ts +0 -4
- package/generated/io.flow.channel.currency.v0.channel-currency.d.ts +17 -0
- package/generated/io.flow.channel.internal.v0.channel-internal.d.ts +6 -1
- package/generated/io.flow.experience.v0.experience.d.ts +13 -0
- package/generated/io.flow.internal.v0.api-internal.d.ts +160 -649
- package/generated/io.flow.label.v0.label.d.ts +6 -0
- package/generated/io.flow.session.v0.session.d.ts +0 -22
- package/generated/io.flow.shopify.markets.internal.event.v0.shopify-markets-internal-event.d.ts +44 -1
- package/generated/io.flow.shopify.markets.internal.v0.shopify-markets-internal.d.ts +4 -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 -80
- package/index.d.ts +1 -3
- package/package.json +2 -2
- package/generated/io.flow.experiment.internal.v0.experiment-internal.d.ts +0 -191
- package/generated/io.flow.pricing.indicator.internal.event.v0.pricing-indicator-internal-event.d.ts +0 -28
- package/generated/io.flow.session.context.v0.session-context.d.ts +0 -23
|
@@ -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;
|
|
@@ -9,7 +9,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
9
9
|
readonly 'language': io.flow.reference.v0.models.Language;
|
|
10
10
|
readonly 'locale': io.flow.reference.v0.models.Locale;
|
|
11
11
|
readonly 'experience': io.flow.experience.v0.models.ExperienceGeo;
|
|
12
|
-
readonly 'experiment'?: io.flow.session.v0.models.SessionExperiment;
|
|
13
12
|
}
|
|
14
13
|
|
|
15
14
|
interface OrganizationSession {
|
|
@@ -25,8 +24,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
25
24
|
readonly 'geo'?: io.flow.session.v0.models.SessionGeo;
|
|
26
25
|
readonly 'experience'?: io.flow.experience.v0.models.ExperienceGeo;
|
|
27
26
|
readonly 'format'?: io.flow.session.v0.models.SessionFormat;
|
|
28
|
-
readonly 'experiment'?: io.flow.session.v0.models.SessionExperiment;
|
|
29
|
-
readonly 'context'?: io.flow.session.context.v0.models.ContextReference;
|
|
30
27
|
}
|
|
31
28
|
|
|
32
29
|
interface OrganizationSessionAuthorization {
|
|
@@ -44,25 +41,6 @@ declare namespace io.flow.session.v0.models {
|
|
|
44
41
|
readonly 'label_formatters': io.flow.common.v0.enums.CurrencyLabelFormatter[];
|
|
45
42
|
}
|
|
46
43
|
|
|
47
|
-
interface SessionExperiment {
|
|
48
|
-
readonly 'key': string;
|
|
49
|
-
readonly 'variant'?: io.flow.session.v0.models.SessionExperimentVariant;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
interface SessionExperimentForm {
|
|
53
|
-
readonly 'key': string;
|
|
54
|
-
readonly 'variant'?: io.flow.session.v0.models.SessionExperimentVariantForm;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
interface SessionExperimentVariant {
|
|
58
|
-
readonly 'key': string;
|
|
59
|
-
readonly 'name': string;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
interface SessionExperimentVariantForm {
|
|
63
|
-
readonly 'key': string;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
44
|
interface SessionExpirationConfig {
|
|
67
45
|
readonly 'unit': io.flow.common.v0.enums.UnitOfTime;
|
|
68
46
|
readonly 'value': number;
|
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;
|
|
@@ -147,5 +190,5 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
|
|
|
147
190
|
}
|
|
148
191
|
|
|
149
192
|
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);
|
|
193
|
+
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.ShopifyIncotermSummaryErrorPublished | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyMarketsBestSellingProductDeleted);
|
|
151
194
|
}
|
|
@@ -96,6 +96,10 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
|
|
|
96
96
|
readonly 'destination': string;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
|
+
interface ShopifyMarketsBestSellingProduct {
|
|
100
|
+
readonly 'id': string;
|
|
101
|
+
}
|
|
102
|
+
|
|
99
103
|
interface ShopifyMarketsDiscrepancy {
|
|
100
104
|
readonly 'organization_id': string;
|
|
101
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 {
|
|
@@ -53,7 +53,7 @@ declare namespace io.flow.v0.enums {
|
|
|
53
53
|
type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
|
|
54
54
|
type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
|
|
55
55
|
type Environment = 'sandbox' | 'production';
|
|
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' | '
|
|
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';
|
|
57
57
|
type ExceptionType = 'open' | 'closed';
|
|
58
58
|
type ExclusionRuleState = 'current' | 'deleting' | 'updating';
|
|
59
59
|
type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
|
|
@@ -81,6 +81,7 @@ declare namespace io.flow.v0.enums {
|
|
|
81
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';
|
|
82
82
|
type IncludedLevyKey = 'duty' | 'vat' | 'vat_and_duty' | 'none';
|
|
83
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';
|
|
84
85
|
type InlineWindowViewportSize = 'xxx_small' | 'xx_small' | 'x_small' | 'small' | 'fullscreen' | 'responsive';
|
|
85
86
|
type InputSpecificationType = 'text' | 'number';
|
|
86
87
|
type InvitationErrorCode = 'expired' | 'invalid_email';
|
|
@@ -173,6 +174,7 @@ declare namespace io.flow.v0.enums {
|
|
|
173
174
|
type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
|
|
174
175
|
type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
|
|
175
176
|
type ShippingConfigurationType = 'default' | 'variant';
|
|
177
|
+
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';
|
|
176
178
|
type ShopifyGrant = 'customer' | 'discount' | 'gift_card' | 'metafield' | 'order';
|
|
177
179
|
type ShopifyLocalizationMethod = 'api' | 'ssr';
|
|
178
180
|
type ShopifySyncCheck = 'localized_variants' | 'flow_variant_metafields';
|
|
@@ -2199,19 +2201,6 @@ declare namespace io.flow.v0.models {
|
|
|
2199
2201
|
readonly 'phone'?: string;
|
|
2200
2202
|
}
|
|
2201
2203
|
|
|
2202
|
-
interface Context {
|
|
2203
|
-
readonly 'id': string;
|
|
2204
|
-
readonly 'experiments': io.flow.v0.models.SessionContextExperiment[];
|
|
2205
|
-
}
|
|
2206
|
-
|
|
2207
|
-
interface ContextForm {
|
|
2208
|
-
readonly 'experiments': io.flow.v0.models.SessionContextExperiment[];
|
|
2209
|
-
}
|
|
2210
|
-
|
|
2211
|
-
interface ContextReference {
|
|
2212
|
-
readonly 'id': string;
|
|
2213
|
-
}
|
|
2214
|
-
|
|
2215
2204
|
interface Country {
|
|
2216
2205
|
readonly 'name': string;
|
|
2217
2206
|
readonly 'iso_3166_2': string;
|
|
@@ -3483,10 +3472,6 @@ declare namespace io.flow.v0.models {
|
|
|
3483
3472
|
readonly 'experience': io.flow.v0.models.Experience;
|
|
3484
3473
|
}
|
|
3485
3474
|
|
|
3486
|
-
interface ExperimentVariant {
|
|
3487
|
-
readonly 'key': string;
|
|
3488
|
-
}
|
|
3489
|
-
|
|
3490
3475
|
interface Expiration {
|
|
3491
3476
|
readonly 'month': number;
|
|
3492
3477
|
readonly 'year': number;
|
|
@@ -4182,6 +4167,17 @@ declare namespace io.flow.v0.models {
|
|
|
4182
4167
|
readonly 'label': string;
|
|
4183
4168
|
}
|
|
4184
4169
|
|
|
4170
|
+
interface IncotermIncludes {
|
|
4171
|
+
readonly 'duties': boolean;
|
|
4172
|
+
readonly 'taxes': boolean;
|
|
4173
|
+
}
|
|
4174
|
+
|
|
4175
|
+
interface IncotermSummary {
|
|
4176
|
+
readonly 'configuration': io.flow.v0.enums.IncotermConfiguration;
|
|
4177
|
+
readonly 'includes': io.flow.v0.models.IncotermIncludes;
|
|
4178
|
+
readonly 'reason'?: string;
|
|
4179
|
+
}
|
|
4180
|
+
|
|
4185
4181
|
interface IndirectTax {
|
|
4186
4182
|
readonly 'number'?: string;
|
|
4187
4183
|
readonly 'id'?: string;
|
|
@@ -4876,7 +4872,6 @@ declare namespace io.flow.v0.models {
|
|
|
4876
4872
|
readonly 'language': io.flow.v0.models.Language;
|
|
4877
4873
|
readonly 'locale': io.flow.v0.models.Locale;
|
|
4878
4874
|
readonly 'experience': io.flow.v0.models.ExperienceGeo;
|
|
4879
|
-
readonly 'experiment'?: io.flow.v0.models.SessionExperiment;
|
|
4880
4875
|
}
|
|
4881
4876
|
|
|
4882
4877
|
interface Locale {
|
|
@@ -5414,6 +5409,7 @@ declare namespace io.flow.v0.models {
|
|
|
5414
5409
|
readonly 'geo'?: io.flow.v0.models.OrderGeo;
|
|
5415
5410
|
readonly 'device_details'?: io.flow.v0.unions.DeviceDetails;
|
|
5416
5411
|
readonly 'destination_contact_details'?: io.flow.v0.models.DestinationContactDetail[];
|
|
5412
|
+
readonly 'incoterm_summary'?: io.flow.v0.models.IncotermSummary;
|
|
5417
5413
|
}
|
|
5418
5414
|
|
|
5419
5415
|
interface OrderAddress {
|
|
@@ -6212,8 +6208,6 @@ declare namespace io.flow.v0.models {
|
|
|
6212
6208
|
readonly 'geo'?: io.flow.v0.models.SessionGeo;
|
|
6213
6209
|
readonly 'experience'?: io.flow.v0.models.ExperienceGeo;
|
|
6214
6210
|
readonly 'format'?: io.flow.v0.models.SessionFormat;
|
|
6215
|
-
readonly 'experiment'?: io.flow.v0.models.SessionExperiment;
|
|
6216
|
-
readonly 'context'?: io.flow.v0.models.ContextReference;
|
|
6217
6211
|
}
|
|
6218
6212
|
|
|
6219
6213
|
interface OrganizationSessionAuthorization {
|
|
@@ -8447,21 +8441,6 @@ declare namespace io.flow.v0.models {
|
|
|
8447
8441
|
readonly 'roles': io.flow.v0.enums.FlowRole[];
|
|
8448
8442
|
}
|
|
8449
8443
|
|
|
8450
|
-
interface RuleDeleted {
|
|
8451
|
-
readonly 'discriminator': 'rule_deleted';
|
|
8452
|
-
readonly 'event_id': string;
|
|
8453
|
-
readonly 'timestamp': string;
|
|
8454
|
-
readonly 'id': string;
|
|
8455
|
-
}
|
|
8456
|
-
|
|
8457
|
-
interface RuleUpserted {
|
|
8458
|
-
readonly 'discriminator': 'rule_upserted';
|
|
8459
|
-
readonly 'event_id': string;
|
|
8460
|
-
readonly 'timestamp': string;
|
|
8461
|
-
readonly 'organization_id': string;
|
|
8462
|
-
readonly 'rule': io.flow.inventory.v0.models.InventoryRule;
|
|
8463
|
-
}
|
|
8464
|
-
|
|
8465
8444
|
interface Schedule {
|
|
8466
8445
|
readonly 'calendar'?: io.flow.v0.enums.Calendar;
|
|
8467
8446
|
readonly 'holiday': io.flow.v0.enums.HolidayCalendar;
|
|
@@ -8534,35 +8513,11 @@ declare namespace io.flow.v0.models {
|
|
|
8534
8513
|
readonly 'session': string;
|
|
8535
8514
|
}
|
|
8536
8515
|
|
|
8537
|
-
interface SessionContextExperiment {
|
|
8538
|
-
readonly 'key': string;
|
|
8539
|
-
readonly 'variant'?: io.flow.v0.models.ExperimentVariant;
|
|
8540
|
-
}
|
|
8541
|
-
|
|
8542
8516
|
interface SessionCurrencyFormat {
|
|
8543
8517
|
readonly 'symbol': io.flow.v0.enums.CurrencySymbolFormat;
|
|
8544
8518
|
readonly 'label_formatters': io.flow.v0.enums.CurrencyLabelFormatter[];
|
|
8545
8519
|
}
|
|
8546
8520
|
|
|
8547
|
-
interface SessionExperiment {
|
|
8548
|
-
readonly 'key': string;
|
|
8549
|
-
readonly 'variant'?: io.flow.v0.models.SessionExperimentVariant;
|
|
8550
|
-
}
|
|
8551
|
-
|
|
8552
|
-
interface SessionExperimentForm {
|
|
8553
|
-
readonly 'key': string;
|
|
8554
|
-
readonly 'variant'?: io.flow.v0.models.SessionExperimentVariantForm;
|
|
8555
|
-
}
|
|
8556
|
-
|
|
8557
|
-
interface SessionExperimentVariant {
|
|
8558
|
-
readonly 'key': string;
|
|
8559
|
-
readonly 'name': string;
|
|
8560
|
-
}
|
|
8561
|
-
|
|
8562
|
-
interface SessionExperimentVariantForm {
|
|
8563
|
-
readonly 'key': string;
|
|
8564
|
-
}
|
|
8565
|
-
|
|
8566
8521
|
interface SessionExpirationConfig {
|
|
8567
8522
|
readonly 'unit': io.flow.v0.enums.UnitOfTime;
|
|
8568
8523
|
readonly 'value': number;
|
|
@@ -8806,6 +8761,11 @@ declare namespace io.flow.v0.models {
|
|
|
8806
8761
|
readonly 'required': boolean;
|
|
8807
8762
|
}
|
|
8808
8763
|
|
|
8764
|
+
interface ShippingLabelError {
|
|
8765
|
+
readonly 'code': io.flow.v0.enums.ShippingLabelErrorCode;
|
|
8766
|
+
readonly 'messages': string[];
|
|
8767
|
+
}
|
|
8768
|
+
|
|
8809
8769
|
interface ShippingLabelHopCostItemizedEstimate {
|
|
8810
8770
|
readonly 'units': io.flow.v0.models.LabelUnits;
|
|
8811
8771
|
readonly 'base': io.flow.v0.models.LabelBase;
|
|
@@ -9296,25 +9256,6 @@ declare namespace io.flow.v0.models {
|
|
|
9296
9256
|
readonly 'shipment_recipient'?: io.flow.v0.enums.ShipmentRecipient;
|
|
9297
9257
|
}
|
|
9298
9258
|
|
|
9299
|
-
interface SnapshotDeleted {
|
|
9300
|
-
readonly 'discriminator': 'snapshot_deleted';
|
|
9301
|
-
readonly 'event_id': string;
|
|
9302
|
-
readonly 'timestamp': string;
|
|
9303
|
-
readonly 'snapshot_id': string;
|
|
9304
|
-
}
|
|
9305
|
-
|
|
9306
|
-
interface SnapshotUpserted {
|
|
9307
|
-
readonly 'discriminator': 'snapshot_upserted';
|
|
9308
|
-
readonly 'event_id': string;
|
|
9309
|
-
readonly 'timestamp': string;
|
|
9310
|
-
readonly 'organization': string;
|
|
9311
|
-
readonly 'snapshot_id': string;
|
|
9312
|
-
readonly 'available': number;
|
|
9313
|
-
readonly 'center_key': string;
|
|
9314
|
-
readonly 'item_number': string;
|
|
9315
|
-
readonly 'quantity': number;
|
|
9316
|
-
}
|
|
9317
|
-
|
|
9318
9259
|
interface SolidusProductExportType {
|
|
9319
9260
|
readonly 'discriminator': 'solidus_product_export_type';
|
|
9320
9261
|
readonly 'numbers'?: string[];
|
|
@@ -9909,6 +9850,7 @@ declare namespace io.flow.v0.models {
|
|
|
9909
9850
|
readonly 'status': io.flow.v0.enums.TrackingStatus;
|
|
9910
9851
|
readonly 'timestamp': string;
|
|
9911
9852
|
readonly 'description'?: string;
|
|
9853
|
+
readonly 'aggregator_status_code'?: string;
|
|
9912
9854
|
}
|
|
9913
9855
|
|
|
9914
9856
|
interface TrackingEventForm {
|
|
@@ -10492,7 +10434,7 @@ declare namespace io.flow.v0.unions {
|
|
|
10492
10434
|
type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
|
|
10493
10435
|
type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
|
|
10494
10436
|
type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
|
|
10495
|
-
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.
|
|
10437
|
+
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);
|
|
10496
10438
|
type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
|
|
10497
10439
|
type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
|
|
10498
10440
|
type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
|
package/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
/// <reference path="generated/io.flow.catalog.exclusion.v0.catalog-exclusion.d.ts" />
|
|
10
10
|
/// <reference path="generated/io.flow.catalog.return.v0.catalog-return.d.ts" />
|
|
11
11
|
/// <reference path="generated/io.flow.catalog.v0.catalog.d.ts" />
|
|
12
|
+
/// <reference path="generated/io.flow.channel.currency.v0.channel-currency.d.ts" />
|
|
12
13
|
/// <reference path="generated/io.flow.channel.internal.v0.channel-internal.d.ts" />
|
|
13
14
|
/// <reference path="generated/io.flow.channel.v0.channel.d.ts" />
|
|
14
15
|
/// <reference path="generated/io.flow.checkout.v0.checkout.d.ts" />
|
|
@@ -18,7 +19,6 @@
|
|
|
18
19
|
/// <reference path="generated/io.flow.customer.v0.customer.d.ts" />
|
|
19
20
|
/// <reference path="generated/io.flow.error.v0.error.d.ts" />
|
|
20
21
|
/// <reference path="generated/io.flow.experience.v0.experience.d.ts" />
|
|
21
|
-
/// <reference path="generated/io.flow.experiment.internal.v0.experiment-internal.d.ts" />
|
|
22
22
|
/// <reference path="generated/io.flow.export.v0.export.d.ts" />
|
|
23
23
|
/// <reference path="generated/io.flow.external.paypal.v1.paypal.d.ts" />
|
|
24
24
|
/// <reference path="generated/io.flow.field.validation.v0.field-validation.d.ts" />
|
|
@@ -45,12 +45,10 @@
|
|
|
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" />
|
|
52
51
|
/// <reference path="generated/io.flow.return.v0.return.d.ts" />
|
|
53
|
-
/// <reference path="generated/io.flow.session.context.v0.session-context.d.ts" />
|
|
54
52
|
/// <reference path="generated/io.flow.session.v0.session.d.ts" />
|
|
55
53
|
/// <reference path="generated/io.flow.shopify.external.v0.shopify-external.d.ts" />
|
|
56
54
|
/// <reference path="generated/io.flow.shopify.markets.internal.event.v0.shopify-markets-internal-event.d.ts" />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowio/api-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.238",
|
|
4
4
|
"description": "Global TypeScript typings for Flow Commerce API",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"generate": "apibuilder update && node scripts/generate-index.js"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "2e07a02edf9ba40b639c33c004df49e4d9b88ed2"
|
|
18
18
|
}
|