@flowio/api-types 0.0.246 → 0.0.248

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.
@@ -947,11 +947,10 @@ declare namespace io.flow.payment.v0.models {
947
947
  interface Transfer {
948
948
  readonly 'id': string;
949
949
  readonly 'type': io.flow.payment.v0.enums.TransferType;
950
- readonly 'money': io.flow.common.v0.models.Money;
951
- readonly 'transferred_money': io.flow.payment.v0.models.ExchangedMoney;
950
+ readonly 'base': io.flow.common.v0.models.Money;
952
951
  readonly 'status': io.flow.payment.v0.enums.TransferStatus;
953
952
  readonly 'created_at': string;
954
- readonly 'reference': io.flow.payment.v0.unions.TransferReference;
953
+ readonly 'authorization': io.flow.payment.v0.models.AuthorizationReference;
955
954
  readonly 'transferred_at': string;
956
955
  }
957
956
 
@@ -1,6 +1,7 @@
1
1
  declare namespace io.flow.sellability.v0.enums {
2
2
  type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
3
- type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category';
3
+ type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
4
+ type SellabilityRequestStatus = 'commit';
4
5
  }
5
6
 
6
7
  declare namespace io.flow.sellability.v0.models {
@@ -15,11 +16,12 @@ declare namespace io.flow.sellability.v0.models {
15
16
  interface ProductSellabilityForm {
16
17
  readonly 'shop_id': string;
17
18
  readonly 'product_id'?: string;
18
- readonly 'request_id': string;
19
19
  readonly 'name': string;
20
20
  readonly 'price': io.flow.sellability.v0.models.ProductSellabilityPrice;
21
21
  readonly 'description': string;
22
22
  readonly 'taxonomy_category': io.flow.product.v0.models.ProductTaxonomyCategory;
23
+ readonly 'status'?: io.flow.sellability.v0.enums.SellabilityRequestStatus;
24
+ readonly 'dry_run'?: boolean;
23
25
  }
24
26
 
25
27
  interface ProductSellabilityPrice {
@@ -172,6 +172,22 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
172
172
  readonly 'registration': io.flow.shopify.markets.internal.v0.models.ShopifyMarketsWebhookRegistration;
173
173
  }
174
174
 
175
+ interface ShopifyOrderRiskAssessmentDeleted {
176
+ readonly 'discriminator': 'shopify_order_risk_assessment_deleted';
177
+ readonly 'event_id': string;
178
+ readonly 'timestamp': string;
179
+ readonly 'organization': string;
180
+ readonly 'id': string;
181
+ }
182
+
183
+ interface ShopifyOrderRiskAssessmentUpserted {
184
+ readonly 'discriminator': 'shopify_order_risk_assessment_upserted';
185
+ readonly 'event_id': string;
186
+ readonly 'timestamp': string;
187
+ readonly 'organization': string;
188
+ readonly 'assessment': io.flow.shopify.markets.internal.v0.models.ShopifyOrderRiskAssessment;
189
+ }
190
+
175
191
  interface ShopifyProductBundleDeleted {
176
192
  readonly 'discriminator': 'shopify_product_bundle_deleted';
177
193
  readonly 'event_id': string;
@@ -190,5 +206,5 @@ declare namespace io.flow.shopify.markets.internal.event.v0.models {
190
206
  }
191
207
 
192
208
  declare namespace io.flow.shopify.markets.internal.event.v0.unions {
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);
209
+ 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 | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentUpserted | io.flow.shopify.markets.internal.event.v0.models.ShopifyOrderRiskAssessmentDeleted);
194
210
  }
@@ -206,6 +206,12 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
206
206
  readonly 'order_note'?: string;
207
207
  }
208
208
 
209
+ interface ShopifyOrderRiskAssessment {
210
+ readonly 'id': string;
211
+ readonly 'risk_level': string;
212
+ readonly 'assessment_created_at': string;
213
+ }
214
+
209
215
  interface ShopifyProductBundle {
210
216
  readonly 'id': string;
211
217
  readonly 'underlying': io.flow.shopify.markets.internal.v0.models.ShopifyProductBundleUnderlying;
@@ -1,6 +1,9 @@
1
1
  declare namespace io.flow.tech.onboarding.playground.v0.enums {
2
2
  type AldoItemType = 'physical' | 'digital';
3
3
  type AnshItemType = 'physical' | 'digital';
4
+ type NiallItemType = 'physical' | 'digital';
5
+ type PrateekItemType = 'physical' | 'digital';
6
+ type RohanItemType = 'physical' | 'digital';
4
7
  }
5
8
 
6
9
  declare namespace io.flow.tech.onboarding.playground.v0.models {
@@ -43,6 +46,57 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
43
46
  readonly 'name': string;
44
47
  }
45
48
 
49
+ interface NiallItem {
50
+ readonly 'id': string;
51
+ readonly 'number': string;
52
+ readonly 'amount': io.flow.common.v0.models.Price;
53
+ readonly 'description'?: string;
54
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
55
+ readonly 'added_on': string;
56
+ }
57
+
58
+ interface NiallItemForm {
59
+ readonly 'number': string;
60
+ readonly 'amount': io.flow.common.v0.models.Price;
61
+ readonly 'description'?: string;
62
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.NiallItemType;
63
+ readonly 'added_on': string;
64
+ }
65
+
66
+ interface PrateekItem {
67
+ readonly 'id': string;
68
+ readonly 'number': string;
69
+ readonly 'amount': io.flow.common.v0.models.Price;
70
+ readonly 'description'?: string;
71
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
72
+ readonly 'added_on': string;
73
+ }
74
+
75
+ interface PrateekItemForm {
76
+ readonly 'number': string;
77
+ readonly 'amount': io.flow.common.v0.models.Price;
78
+ readonly 'description'?: string;
79
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.PrateekItemType;
80
+ readonly 'added_on': string;
81
+ }
82
+
83
+ interface RohanItem {
84
+ readonly 'id': string;
85
+ readonly 'number': string;
86
+ readonly 'amount': io.flow.common.v0.models.Price;
87
+ readonly 'description'?: string;
88
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
89
+ readonly 'added_on': string;
90
+ }
91
+
92
+ interface RohanItemForm {
93
+ readonly 'number': string;
94
+ readonly 'amount': io.flow.common.v0.models.Price;
95
+ readonly 'description'?: string;
96
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.RohanItemType;
97
+ readonly 'added_on': string;
98
+ }
99
+
46
100
  interface TechOnboardingDescription {
47
101
  readonly 'description': string;
48
102
  }
@@ -54,7 +54,7 @@ declare namespace io.flow.v0.enums {
54
54
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
55
55
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
56
56
  type Environment = 'sandbox' | 'production';
57
- type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'transfer_upserted' | 'transfer_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
57
+ type EventType = 'test_upserted' | 'generate_load' | 'niall_item_upserted' | 'niall_item_deleted' | 'rohan_item_upserted' | 'rohan_item_deleted' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'ansh_item_upserted' | 'ansh_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_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' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'ge_item_inserted' | 'ge_item_updated' | 'ge_item_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'authorization_retry_upserted' | 'authorization_retry_deleted' | 'transfer_upserted' | 'transfer_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'product_inserted' | 'product_updated' | 'product_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
58
58
  type ExceptionType = 'open' | 'closed';
59
59
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
60
60
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -76,7 +76,6 @@ declare namespace io.flow.v0.enums {
76
76
  type FulfillmentMethodValue = 'digital' | 'physical';
77
77
  type FulfillmentRouting = 'fulfilled_from_center' | 'fulfillment_service';
78
78
  type GeCatalogItemIngestionResponse = 'success' | 'failure';
79
- type GeEnvironment = 'production' | 'sandbox';
80
79
  type GeEventType = 'restriction_result' | 'ingestion_result';
81
80
  type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
82
81
  type GoodsSupply = 'export' | 'intra_community' | 'local';
@@ -190,6 +189,7 @@ declare namespace io.flow.v0.enums {
190
189
  type SubstatusCode = 'Delivered_001' | 'Delivered_002' | 'Delivered_003' | 'Delivered_004' | 'AvailableForPickup_001' | 'Exception_001' | 'Exception_002' | 'Exception_003' | 'Exception_004' | 'Exception_005' | 'Exception_006' | 'Exception_007' | 'Exception_008' | 'Exception_009' | 'Exception_010' | 'Exception_011' | 'Exception_012' | 'Exception_013' | 'AttemptFail_001' | 'AttemptFail_002' | 'AttemptFail_003' | 'InTransit_001' | 'InTransit_002' | 'InTransit_003' | 'InTransit_004' | 'InTransit_005' | 'InTransit_006' | 'InTransit_007' | 'InTransit_008' | 'InTransit_009' | 'InfoReceived_001' | 'OutForDelivery_001' | 'OutForDelivery_003' | 'OutForDelivery_004' | 'Pending_001' | 'Pending_002' | 'Pending_003' | 'Pending_004' | 'Pending_005' | 'Pending_006' | 'Expired_001';
191
190
  type SurchargeResponsibleParty = 'organization' | 'customer';
192
191
  type TaxApplicability = 'none' | 'all';
192
+ type TaxDutyTransactionReasonCode = 'order_edit' | 'order_acceptance' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment';
193
193
  type TaxReportType = 'consumer' | 'b2b';
194
194
  type TaxVerificationResult = 'valid' | 'invalid' | 'unable_to_validate';
195
195
  type TaxabilityType = 'tax_rule';
@@ -2457,28 +2457,12 @@ declare namespace io.flow.v0.models {
2457
2457
  readonly 'address_preferences': io.flow.v0.models.CustomerAddressPreference[];
2458
2458
  }
2459
2459
 
2460
- interface CustomerAddressBookContactDeleted {
2461
- readonly 'discriminator': 'customer_address_book_contact_deleted';
2462
- readonly 'event_id': string;
2463
- readonly 'timestamp': string;
2464
- readonly 'organization': string;
2465
- readonly 'customer_address_book_contact': io.flow.v0.models.CustomerAddressBookContact;
2466
- }
2467
-
2468
2460
  interface CustomerAddressBookContactForm {
2469
2461
  readonly 'address': io.flow.v0.models.Address;
2470
2462
  readonly 'contact'?: io.flow.v0.models.Contact;
2471
2463
  readonly 'address_preferences'?: io.flow.v0.models.CustomerAddressPreference[];
2472
2464
  }
2473
2465
 
2474
- interface CustomerAddressBookContactUpserted {
2475
- readonly 'discriminator': 'customer_address_book_contact_upserted';
2476
- readonly 'event_id': string;
2477
- readonly 'timestamp': string;
2478
- readonly 'organization': string;
2479
- readonly 'customer_address_book_contact': io.flow.v0.models.CustomerAddressBookContact;
2480
- }
2481
-
2482
2466
  interface CustomerAddressBookForm {
2483
2467
  readonly 'contacts': io.flow.v0.models.CustomerAddressBookContactForm[];
2484
2468
  }
@@ -2496,14 +2480,6 @@ declare namespace io.flow.v0.models {
2496
2480
  readonly 'token': string;
2497
2481
  }
2498
2482
 
2499
- interface CustomerDeleted {
2500
- readonly 'discriminator': 'customer_deleted';
2501
- readonly 'event_id': string;
2502
- readonly 'timestamp': string;
2503
- readonly 'organization': string;
2504
- readonly 'customer': io.flow.v0.models.Customer;
2505
- }
2506
-
2507
2483
  interface CustomerForm {
2508
2484
  readonly 'number': string;
2509
2485
  readonly 'email'?: string;
@@ -2558,14 +2534,6 @@ declare namespace io.flow.v0.models {
2558
2534
  readonly 'token': string;
2559
2535
  }
2560
2536
 
2561
- interface CustomerUpserted {
2562
- readonly 'discriminator': 'customer_upserted';
2563
- readonly 'event_id': string;
2564
- readonly 'timestamp': string;
2565
- readonly 'organization': string;
2566
- readonly 'customer': io.flow.v0.models.Customer;
2567
- }
2568
-
2569
2537
  interface Cvv {
2570
2538
  readonly 'code': io.flow.v0.enums.CvvCode;
2571
2539
  readonly 'description'?: string;
@@ -3842,7 +3810,7 @@ declare namespace io.flow.v0.models {
3842
3810
  readonly 'discriminator': 'ge_catalog_item_ingestion_result';
3843
3811
  readonly 'event_id': string;
3844
3812
  readonly 'event_type': io.flow.v0.enums.GeEventType;
3845
- readonly 'environment': io.flow.v0.enums.GeEnvironment;
3813
+ readonly 'environment': io.flow.v0.enums.Environment;
3846
3814
  readonly 'timestamp': string;
3847
3815
  readonly 'source': string;
3848
3816
  readonly 'response': io.flow.v0.enums.GeCatalogItemIngestionResponse;
@@ -3870,6 +3838,7 @@ declare namespace io.flow.v0.models {
3870
3838
  readonly 'ge_hs6_code': string;
3871
3839
  readonly 'product_id': string;
3872
3840
  readonly 'ge_organization_name': string;
3841
+ readonly 'ge_shipping_origin_country'?: string;
3873
3842
  }
3874
3843
 
3875
3844
  interface GeInputPrice {
@@ -3907,9 +3876,10 @@ declare namespace io.flow.v0.models {
3907
3876
  readonly 'organization': string;
3908
3877
  readonly 'event_id': string;
3909
3878
  readonly 'event_type': io.flow.v0.enums.GeEventType;
3910
- readonly 'environment': io.flow.v0.enums.GeEnvironment;
3879
+ readonly 'environment': io.flow.v0.enums.Environment;
3911
3880
  readonly 'timestamp': string;
3912
3881
  readonly 'id': string;
3882
+ readonly 'operation': io.flow.v0.enums.ChangeType;
3913
3883
  }
3914
3884
 
3915
3885
  interface GeProductRestrictionResultUpsert {
@@ -3917,8 +3887,9 @@ declare namespace io.flow.v0.models {
3917
3887
  readonly 'organization': string;
3918
3888
  readonly 'event_id': string;
3919
3889
  readonly 'event_type': io.flow.v0.enums.GeEventType;
3920
- readonly 'environment': io.flow.v0.enums.GeEnvironment;
3890
+ readonly 'environment': io.flow.v0.enums.Environment;
3921
3891
  readonly 'timestamp': string;
3892
+ readonly 'operation': io.flow.v0.enums.ChangeType;
3922
3893
  readonly 'ge_product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
3923
3894
  }
3924
3895
 
@@ -5344,6 +5315,20 @@ declare namespace io.flow.v0.models {
5344
5315
  readonly 'last'?: string;
5345
5316
  }
5346
5317
 
5318
+ interface NiallItemDeleted {
5319
+ readonly 'discriminator': 'niall_item_deleted';
5320
+ readonly 'event_id': string;
5321
+ readonly 'timestamp': string;
5322
+ readonly 'id': string;
5323
+ }
5324
+
5325
+ interface NiallItemUpserted {
5326
+ readonly 'discriminator': 'niall_item_upserted';
5327
+ readonly 'event_id': string;
5328
+ readonly 'timestamp': string;
5329
+ readonly 'item': io.flow.tech.onboarding.playground.v0.models.NiallItem;
5330
+ }
5331
+
5347
5332
  interface NotificationDeletedV2 {
5348
5333
  readonly 'discriminator': 'notification_deleted_v2';
5349
5334
  readonly 'event_id': string;
@@ -6105,40 +6090,11 @@ declare namespace io.flow.v0.models {
6105
6090
  readonly 'last4': string;
6106
6091
  }
6107
6092
 
6108
- interface OrganizationConfigurationReference {
6109
- readonly 'id': string;
6110
- }
6111
-
6112
6093
  interface OrganizationDefaultBankAccount {
6113
6094
  readonly 'id': string;
6114
6095
  readonly 'bank_account': io.flow.v0.models.BankAccountReference;
6115
6096
  }
6116
6097
 
6117
- interface OrganizationDefaultConfigurations {
6118
- readonly 'id': string;
6119
- readonly 'checkout_configuration': io.flow.v0.models.OrganizationConfigurationReference;
6120
- }
6121
-
6122
- interface OrganizationDefaultConfigurationsDeleted {
6123
- readonly 'discriminator': 'organization_default_configurations_deleted';
6124
- readonly 'event_id': string;
6125
- readonly 'timestamp': string;
6126
- readonly 'organization': string;
6127
- readonly 'default_configurations': io.flow.v0.models.OrganizationDefaultConfigurations;
6128
- }
6129
-
6130
- interface OrganizationDefaultConfigurationsForm {
6131
- readonly 'id': string;
6132
- }
6133
-
6134
- interface OrganizationDefaultConfigurationsUpserted {
6135
- readonly 'discriminator': 'organization_default_configurations_upserted';
6136
- readonly 'event_id': string;
6137
- readonly 'timestamp': string;
6138
- readonly 'organization': string;
6139
- readonly 'default_configurations': io.flow.v0.models.OrganizationDefaultConfigurations;
6140
- }
6141
-
6142
6098
  interface OrganizationDefaults {
6143
6099
  readonly 'country': string;
6144
6100
  readonly 'base_currency': string;
@@ -7641,6 +7597,7 @@ declare namespace io.flow.v0.models {
7641
7597
  readonly 'product_id': string;
7642
7598
  readonly 'item_numbers': string[];
7643
7599
  readonly 'prohibited_regions': string[];
7600
+ readonly 'sellability_restricted_regions'?: string[];
7644
7601
  readonly 'reasons_per_region'?: io.flow.v0.models.ReasonsPerRegion[];
7645
7602
  readonly 'review_status'?: io.flow.v0.enums.ReviewStatus;
7646
7603
  readonly 'rules'?: io.flow.v0.enums.ProductRestrictionRule[];
@@ -8364,21 +8321,6 @@ declare namespace io.flow.v0.models {
8364
8321
  readonly 'carrier_tracking_number'?: string;
8365
8322
  }
8366
8323
 
8367
- interface ReturnDeleted {
8368
- readonly 'discriminator': 'return_deleted';
8369
- readonly 'event_id': string;
8370
- readonly 'timestamp': string;
8371
- readonly 'id': string;
8372
- }
8373
-
8374
- interface ReturnDeletedV2 {
8375
- readonly 'discriminator': 'return_deleted_v2';
8376
- readonly 'event_id': string;
8377
- readonly 'timestamp': string;
8378
- readonly 'organization': string;
8379
- readonly 'return': io.flow.v0.models.Return;
8380
- }
8381
-
8382
8324
  interface ReturnForm {
8383
8325
  readonly 'items': io.flow.v0.models.ReturnLineItem[];
8384
8326
  readonly 'tier_id'?: string;
@@ -8472,28 +8414,6 @@ declare namespace io.flow.v0.models {
8472
8414
  readonly 'attributes'?: Record<string, string>;
8473
8415
  }
8474
8416
 
8475
- interface ReturnUpserted {
8476
- readonly 'discriminator': 'return_upserted';
8477
- readonly 'event_id': string;
8478
- readonly 'timestamp': string;
8479
- readonly 'id': string;
8480
- readonly 'organization': string;
8481
- readonly 'destination': io.flow.v0.models.ShippingAddress;
8482
- readonly 'items': io.flow.v0.models.ReturnLineItem[];
8483
- readonly 'key': string;
8484
- readonly 'labels'?: io.flow.v0.models.ShippingLabel[];
8485
- readonly 'service': string;
8486
- readonly 'origin': io.flow.v0.models.ShippingAddress;
8487
- }
8488
-
8489
- interface ReturnUpsertedV2 {
8490
- readonly 'discriminator': 'return_upserted_v2';
8491
- readonly 'event_id': string;
8492
- readonly 'timestamp': string;
8493
- readonly 'organization': string;
8494
- readonly 'return': io.flow.v0.models.Return;
8495
- }
8496
-
8497
8417
  interface ReturnVersion {
8498
8418
  readonly 'id': string;
8499
8419
  readonly 'timestamp': string;
@@ -8559,6 +8479,20 @@ declare namespace io.flow.v0.models {
8559
8479
  readonly 'reversal': io.flow.v0.models.Reversal;
8560
8480
  }
8561
8481
 
8482
+ interface RohanItemDeleted {
8483
+ readonly 'discriminator': 'rohan_item_deleted';
8484
+ readonly 'event_id': string;
8485
+ readonly 'timestamp': string;
8486
+ readonly 'id': string;
8487
+ }
8488
+
8489
+ interface RohanItemUpserted {
8490
+ readonly 'discriminator': 'rohan_item_upserted';
8491
+ readonly 'event_id': string;
8492
+ readonly 'timestamp': string;
8493
+ readonly 'item': io.flow.tech.onboarding.playground.v0.models.RohanItem;
8494
+ }
8495
+
8562
8496
  interface Romanization {
8563
8497
  readonly 'address'?: io.flow.v0.models.Address;
8564
8498
  readonly 'contact'?: io.flow.v0.models.Contact;
@@ -10046,9 +9980,15 @@ declare namespace io.flow.v0.models {
10046
9980
 
10047
9981
  interface TransactionMetadataShippingLabelCarrier {
10048
9982
  readonly 'id': string;
9983
+ readonly 'service_id'?: string;
10049
9984
  readonly 'tracking_number': string;
10050
9985
  }
10051
9986
 
9987
+ interface TransactionMetadataTaxDuty {
9988
+ readonly 'discriminator': 'transaction_tax_duty';
9989
+ readonly 'reason_code': io.flow.v0.enums.TaxDutyTransactionReasonCode;
9990
+ }
9991
+
10052
9992
  interface TransactionMetadataTrueup {
10053
9993
  readonly 'discriminator': 'trueup';
10054
9994
  readonly 'original': io.flow.v0.models.TransactionMetadataOriginalTransaction;
@@ -10114,11 +10054,10 @@ declare namespace io.flow.v0.models {
10114
10054
  interface Transfer {
10115
10055
  readonly 'id': string;
10116
10056
  readonly 'type': io.flow.v0.enums.TransferType;
10117
- readonly 'money': io.flow.v0.models.Money;
10118
- readonly 'transferred_money': io.flow.v0.models.ExchangedMoney;
10057
+ readonly 'base': io.flow.v0.models.Money;
10119
10058
  readonly 'status': io.flow.v0.enums.TransferStatus;
10120
10059
  readonly 'created_at': string;
10121
- readonly 'reference': io.flow.v0.unions.TransferReference;
10060
+ readonly 'authorization': io.flow.v0.models.AuthorizationReference;
10122
10061
  readonly 'transferred_at': string;
10123
10062
  }
10124
10063
 
@@ -10436,7 +10375,7 @@ declare namespace io.flow.v0.unions {
10436
10375
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
10437
10376
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
10438
10377
  type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
10439
- type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TransferUpserted | io.flow.v0.models.TransferDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
10378
+ type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.NiallItemUpserted | io.flow.v0.models.NiallItemDeleted | io.flow.v0.models.RohanItemUpserted | io.flow.v0.models.RohanItemDeleted | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.AnshItemUpserted | io.flow.v0.models.AnshItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.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.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | 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.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.GeItemInserted | io.flow.v0.models.GeItemUpdated | io.flow.v0.models.GeItemDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.AuthorizationRetryUpserted | io.flow.v0.models.AuthorizationRetryDeleted | io.flow.v0.models.TransferUpserted | io.flow.v0.models.TransferDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.ProductInserted | io.flow.v0.models.ProductUpdated | io.flow.v0.models.ProductDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted);
10440
10379
  type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
10441
10380
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
10442
10381
  type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
@@ -10524,6 +10463,6 @@ declare namespace io.flow.v0.unions {
10524
10463
  type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
10525
10464
  type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
10526
10465
  type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
10527
- type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.TransactionMetadataTrueupBase | io.flow.v0.models.TransactionMetadataTrueupSurcharge | io.flow.v0.models.TransactionMetadataCarrierCharge | io.flow.v0.models.TransactionMetadataManual | io.flow.v0.models.TransactionMetadataFailedPayout | io.flow.v0.models.TransactionMetadataPaymentTransaction);
10466
+ type TransactionMetadata = (io.flow.v0.models.TransactionMetadataShippingLabel | io.flow.v0.models.TransactionMetadataChannel | io.flow.v0.models.TransactionMetadataTrueup | io.flow.v0.models.TransactionMetadataTrueupBase | io.flow.v0.models.TransactionMetadataTrueupSurcharge | io.flow.v0.models.TransactionMetadataCarrierCharge | io.flow.v0.models.TransactionMetadataManual | io.flow.v0.models.TransactionMetadataFailedPayout | io.flow.v0.models.TransactionMetadataPaymentTransaction | io.flow.v0.models.TransactionMetadataTaxDuty);
10528
10467
  type TransferReference = (io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference);
10529
10468
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowio/api-types",
3
- "version": "0.0.246",
3
+ "version": "0.0.248",
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": "8576b898d83e1dcc0515407b0506255b71ab3d80"
17
+ "gitHead": "190ae7774967db79faaab1c6f4ea63dd48a75358"
18
18
  }