@flowio/api-types 0.0.263 → 0.0.266

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.
@@ -98,7 +98,7 @@ declare namespace io.flow.inventory.v0.models {
98
98
 
99
99
  interface InventoryUnlimited {
100
100
  readonly 'discriminator': 'inventory_unlimited';
101
- readonly 'placeholder'?: string;
101
+ readonly 'placeholder': string;
102
102
  }
103
103
 
104
104
  interface InventoryUpdate {
@@ -2,7 +2,7 @@ declare namespace io.flow.label.v0.enums {
2
2
  type CommercialInvoiceMode = 'direct' | 'indirect';
3
3
  type CostEstimateSource = 'flow' | 'channel';
4
4
  type Direction = 'outbound' | 'return';
5
- type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
5
+ type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated' | 'legacy_shopify_graphql_server';
6
6
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
7
7
  type OriginLocationSource = 'public_hub_code' | 'merchant_hub_code_override' | 'shopify' | 'fallback_location';
8
8
  type PackageDimensionsSource = 'provided' | 'item_dimensions_estimated' | 'dimensions_estimated' | 'default_item_dimensions_estimated';
@@ -23,7 +23,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
23
23
  readonly 'beneficiary_details'?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
24
24
  readonly 'other_trade_sector'?: string;
25
25
  readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
26
- readonly 'center_address'?: io.flow.common.v0.models.Address;
27
26
  readonly 'average_order_weight'?: number;
28
27
  readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
29
28
  readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
@@ -51,7 +50,6 @@ declare namespace io.flow.merchant.onboarding.v0.models {
51
50
  readonly 'beneficiary_details'?: io.flow.merchant.onboarding.v0.models.MerchantOnboardingBeneficiaryDetails;
52
51
  readonly 'other_trade_sector'?: string;
53
52
  readonly 'center_contact'?: io.flow.merchant.onboarding.v0.models.OperationsContact;
54
- readonly 'center_address'?: io.flow.common.v0.models.Address;
55
53
  readonly 'average_order_weight'?: number;
56
54
  readonly 'average_order_weight_unit'?: io.flow.common.v0.enums.UnitOfMeasurement;
57
55
  readonly 'package_dimensions'?: io.flow.common.v0.models.Dimension[];
@@ -152,6 +150,7 @@ declare namespace io.flow.merchant.onboarding.v0.models {
152
150
  readonly 'company'?: string;
153
151
  readonly 'email'?: string;
154
152
  readonly 'phone'?: string;
153
+ readonly 'address'?: io.flow.common.v0.models.Address;
155
154
  }
156
155
 
157
156
  interface Shop {
@@ -1,7 +1,7 @@
1
1
  declare namespace io.flow.order.price.v0.enums {
2
2
  type OrderPriceDetailComponentKey = 'adjustment' | 'vat_deminimis' | 'duty_deminimis' | 'duties_item_price' | 'duties_freight' | 'duties_insurance' | 'vat_item_price' | 'vat_freight' | 'vat_insurance' | 'vat_duties_item_price' | 'vat_duties_freight' | 'vat_duties_insurance' | 'item_price' | 'item_discount' | 'rounding' | 'insurance' | 'shipping' | 'shipping_discount' | 'order_discount' | 'subtotal_percent_sales_margin' | 'subtotal_vat_percent_sales_margin' | 'subtotal_duty_percent_sales_margin' | 'vat_subsidy' | 'duty_subsidy' | 'remote_area_surcharge' | 'fuel_surcharge' | 'emergency_situation_surcharge' | 'peak_surcharge' | 'duties_taxes_paid_surcharge' | 'tip';
3
3
  type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
4
- type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
4
+ type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product' | 'mor_tax';
5
5
  }
6
6
 
7
7
  declare namespace io.flow.order.price.v0.models {
@@ -268,6 +268,12 @@ declare namespace io.flow.ratecard.v0.models {
268
268
  readonly 'name': string;
269
269
  }
270
270
 
271
+ interface RatecardData {
272
+ readonly 'dhlParcelDistributionCenter'?: string;
273
+ readonly 'glbeRatecardMetadataLaneIdentifier'?: string;
274
+ readonly 'pickupCenter'?: string;
275
+ }
276
+
271
277
  interface RatecardEstimateForm {
272
278
  readonly 'origin_address': io.flow.common.v0.models.Address;
273
279
  readonly 'destination_address': io.flow.common.v0.models.Address;
@@ -360,7 +366,7 @@ declare namespace io.flow.ratecard.v0.models {
360
366
  readonly 'glbe_shipping_method_id'?: string;
361
367
  readonly 'glbe_proposition_name'?: string;
362
368
  readonly 'channel_revenue_share_percentage'?: number;
363
- readonly 'data'?: Record<string, string>;
369
+ readonly 'data'?: io.flow.ratecard.v0.models.RatecardData;
364
370
  }
365
371
 
366
372
  interface RatecardLane {
@@ -30,6 +30,10 @@ declare namespace io.flow.restrictions.v0.models {
30
30
  readonly 'hs_code'?: string;
31
31
  readonly 'restricted_regions_by_type'?: io.flow.sellability.v0.models.SellabilityRegionResult[];
32
32
  readonly 'needs_action_attributes'?: io.flow.restrictions.v0.models.NeedsActionAttributes[];
33
+ readonly 'fingerprint'?: string;
34
+ readonly 'restriction_created_at'?: string;
35
+ readonly 'first_reviewed_at'?: string;
36
+ readonly 'seconds_to_first_review'?: number;
33
37
  }
34
38
 
35
39
  interface ReasonsPerRegion {
@@ -2,7 +2,7 @@ declare namespace io.flow.sellability.v0.enums {
2
2
  type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
3
3
  type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
4
4
  type SellabilityRequestStatus = 'commit';
5
- type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
5
+ type SellabilityResultErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable' | 'generic_error' | 'catalog_processing_threshold';
6
6
  type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
7
7
  type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
8
8
  }
@@ -30,6 +30,7 @@ declare namespace io.flow.sellability.v0.models {
30
30
  }
31
31
 
32
32
  interface ProductSellabilityResult {
33
+ readonly 'id': string;
33
34
  readonly 'merchant_id'?: string;
34
35
  readonly 'product_id': string;
35
36
  readonly 'restricted_regions': io.flow.sellability.v0.models.SellabilityRestrictedRegion[];
@@ -48,12 +49,14 @@ declare namespace io.flow.sellability.v0.models {
48
49
  interface SellabilityNeedsActionAttributes {
49
50
  readonly 'reason_code': string;
50
51
  readonly 'category_metafield_handles': string[];
52
+ readonly 'category_metafield_ids': string[];
51
53
  readonly 'require_msds'?: boolean;
52
54
  }
53
55
 
54
56
  interface SellabilityReasonWithRegions {
55
57
  readonly 'reason': string;
56
58
  readonly 'regions': string[];
59
+ readonly 'review_status'?: string;
57
60
  }
58
61
 
59
62
  interface SellabilityRegionResult {
@@ -297,6 +297,7 @@ declare namespace io.flow.shopify.markets.internal.v0.models {
297
297
 
298
298
  interface ShopifyTestOrder {
299
299
  readonly 'id': string;
300
+ readonly 'submitted_at': string;
300
301
  }
301
302
 
302
303
  interface ThirdPartyLogisticsPartner {
@@ -0,0 +1,62 @@
1
+ declare namespace io.flow.tech.onboarding.playground.v0.enums {
2
+ type AmruthaItemType = 'physical' | 'digital';
3
+ type ChenglinItemType = 'physical' | 'digital';
4
+ type GabrielItemType = 'physical' | 'digital';
5
+ }
6
+
7
+ declare namespace io.flow.tech.onboarding.playground.v0.models {
8
+ interface AmruthaItem {
9
+ readonly 'id': string;
10
+ readonly 'number': string;
11
+ readonly 'amount': io.flow.common.v0.models.Price;
12
+ readonly 'description'?: string;
13
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AmruthaItemType;
14
+ readonly 'added_on': string;
15
+ }
16
+
17
+ interface AmruthaItemForm {
18
+ readonly 'number': string;
19
+ readonly 'amount': io.flow.common.v0.models.Price;
20
+ readonly 'description'?: string;
21
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AmruthaItemType;
22
+ readonly 'added_on': string;
23
+ }
24
+
25
+ interface ChenglinItem {
26
+ readonly 'id': string;
27
+ readonly 'number': string;
28
+ readonly 'amount': io.flow.common.v0.models.Price;
29
+ readonly 'description'?: string;
30
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
31
+ readonly 'added_on': string;
32
+ }
33
+
34
+ interface ChenglinItemForm {
35
+ readonly 'number': string;
36
+ readonly 'amount': io.flow.common.v0.models.Price;
37
+ readonly 'description'?: string;
38
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
39
+ readonly 'added_on': string;
40
+ }
41
+
42
+ interface GabrielItem {
43
+ readonly 'id': string;
44
+ readonly 'number': string;
45
+ readonly 'amount': io.flow.common.v0.models.Price;
46
+ readonly 'description'?: string;
47
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
48
+ readonly 'added_on': string;
49
+ }
50
+
51
+ interface GabrielItemForm {
52
+ readonly 'number': string;
53
+ readonly 'amount': io.flow.common.v0.models.Price;
54
+ readonly 'description'?: string;
55
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.GabrielItemType;
56
+ readonly 'added_on': string;
57
+ }
58
+
59
+ interface TechOnboardingDescription {
60
+ readonly 'description': string;
61
+ }
62
+ }
@@ -55,7 +55,7 @@ declare namespace io.flow.v0.enums {
55
55
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
56
56
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
57
57
  type Environment = 'sandbox' | 'production';
58
- 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' | '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' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v3' | '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' | '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' | 'tax_registration_upserted' | 'tax_registration_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' | 'product_sellability_result_upserted' | 'product_sellability_result_deleted' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted' | 'tracking_label_event_upserted_v2';
58
+ type EventType = 'test_upserted' | 'generate_load' | 'amrutha_item_upserted' | 'amrutha_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' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v3' | 'order_state_upserted' | 'order_state_deleted' | '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' | 'tariff_codes_upserted' | 'tariff_codes_deleted' | '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' | 'tax_registration_upserted' | 'tax_registration_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' | 'product_sellability_result_upserted' | 'product_sellability_result_deleted' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted' | 'tracking_label_event_upserted_v2';
59
59
  type ExceptionType = 'open' | 'closed';
60
60
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
61
61
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -64,7 +64,7 @@ declare namespace io.flow.v0.enums {
64
64
  type ExperienceStatus = 'draft' | 'active' | 'archiving' | 'archived';
65
65
  type ExportStatus = 'created' | 'processing' | 'completed' | 'failed';
66
66
  type ExporterOfRecord = 'flow' | 'organization';
67
- type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'tax' | 'duty' | 'tax_and_duty' | 'product' | 'tax_and_duty_fx_diff' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee' | 'sp';
67
+ type FeeDeductionType = 'duty_guarantee' | 'mor' | 'fraud' | 'tax' | 'duty' | 'tax_and_duty' | 'product' | 'tax_and_duty_fx_diff' | 'fx' | 'processing' | 'rate_lock' | 'transfer' | 'negative_balance_guarantee' | 'sp' | 'rev_share';
68
68
  type FlowBehavior = 'view_consumer_data';
69
69
  type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa' | 'ge-can' | 'ge-gbr' | 'ge-irl';
70
70
  type FlowRole = 'organization_admin' | 'organization_merchant' | 'organization_customer_service' | 'organization_fulfillment' | 'organization_marketing' | 'organization_finance' | 'organization_classification' | 'flow_operations' | 'channel_admin' | 'channel_organization_admin';
@@ -91,7 +91,7 @@ declare namespace io.flow.v0.enums {
91
91
  type InvitationErrorCode = 'expired' | 'invalid_email';
92
92
  type ItemAvailabilityStatus = 'available' | 'low' | 'out_of_stock';
93
93
  type ItemIdentifier = 'item_number' | 'sku';
94
- type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated';
94
+ type LabelRequestMethod = 'flow_web_sync' | 'channel_web_async' | 'direct_api_sync' | 'direct_api_async' | 'bridge_api_sync' | 'partner_api_sync' | 'notification_requiring_crossdock' | 'flow_simulation_sync' | 'autogenerated' | 'legacy_shopify_graphql_server';
95
95
  type LabelTriggerMethod = 'autogenerated' | 'on_demand';
96
96
  type LaneDirection = 'outbound' | 'return';
97
97
  type LanePreselectPreference = 'lowest_cost' | 'default_tier';
@@ -121,6 +121,7 @@ declare namespace io.flow.v0.enums {
121
121
  type OrderPriceFeeType = 'service' | 'fx' | 'tax' | 'duties' | 'tax_and_duties' | 'product';
122
122
  type OrderRefundSummaryIncludes = 'duties' | 'vat' | 'shipping';
123
123
  type OrderRefundSummaryPartialCharged = 'per_item' | 'for_order' | 'by_value_percentage' | 'by_quantity_percentage';
124
+ type OrderStateStatus = 'pending' | 'accepted' | 'rejected';
124
125
  type OrderStatus = 'open' | 'submitted';
125
126
  type OrderStorage = 'do_not_persist' | 'persist';
126
127
  type OrderType = 'standard' | 'replacement' | 'edit';
@@ -182,7 +183,7 @@ declare namespace io.flow.v0.enums {
182
183
  type ScheduleExceptionStatus = 'Open' | 'Closed';
183
184
  type SellabilityErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable';
184
185
  type SellabilityRequestStatus = 'commit';
185
- type SellabilityResultErrorCode = 'insufficient_details' | 'generic_error';
186
+ type SellabilityResultErrorCode = 'insufficient_details' | 'ineligible_category' | 'wait_for_high_fidelity' | 'external_service_unavailable' | 'generic_error' | 'catalog_processing_threshold';
186
187
  type SellabilityResultStatus = 'in_review' | 'succeeded' | 'failed';
187
188
  type SellabilityScreeningMode = 'pre_onboarding' | 'default_on' | 'active';
188
189
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
@@ -202,7 +203,7 @@ declare namespace io.flow.v0.enums {
202
203
  type SurchargeResponsibleParty = 'organization' | 'customer';
203
204
  type TaxApplicability = 'none' | 'all';
204
205
  type TaxDutyCalculatorValidationErrorCode = 'generic_error' | 'destination_country_not_defined' | 'destination_address_iso3166_unrecognized' | 'line_item_shipfrom_shipto_country_invalid' | 'line_item_ship_from_invalid' | 'line_item_currency_iso4217_unrecognized' | 'line_quantity_invalid' | 'line_item_quantity_invalid' | 'line_item_unit_price_precision_invalid' | 'line_item_unit_price_negative' | 'line_item_discount_amount_precision_invalid' | 'line_item_discount_amount_positive' | 'line_item_country_of_origin_iso3166_unrecognized' | 'line_item_hs_code_invalid' | 'line_item_duty_provider_invalid' | 'shipping_unit_price_precision_invalid' | 'shipping_unit_price_negative' | 'shipping_discount_amount_precision_invalid' | 'shipping_discount_amount_invalid' | 'merchant_of_record_invalid' | 'wrong_unit_specified';
205
- type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min';
206
+ type TaxDutyTransactionReasonCode = 'post_capture' | 'post_fulfilment' | 'manual_payment_or_gift_card' | 'order_edit' | 'mixed_fulfilment_non_lvg' | 'lvg_refund' | 'us_inbound_tax_refund' | 'order_cancellation_above_de_min' | 'wyol_shipment_above_de_min' | 'full_refund_without_shipment' | 'unfulfilled_order_above_de_min' | 'order_cancellation_without_capture';
206
207
  type TaxJurisdictionType = 'country' | 'province';
207
208
  type TaxReportType = 'consumer' | 'b2b';
208
209
  type TaxType = 'vat' | 'gst' | 'hst' | 'pst' | 'qst' | 'sales_tax';
@@ -219,7 +220,7 @@ declare namespace io.flow.v0.enums {
219
220
  type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired' | 'unknown' | 'unmapped';
220
221
  type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
221
222
  type TradeAgreementStatus = 'supported' | 'not_supported';
222
- type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund';
223
+ type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'duty_refund' | 'non_l4l_tax_duty_fx' | 'merchant_payout' | 'merchant_refund' | 'ge_revenue_share' | 'merchant_fee' | 'b2b_tax' | 'b2b_tax_refund' | 'b2b_fee_mor_tax';
223
224
  type TransferStatus = 'succeeded' | 'canceled';
224
225
  type TransferType = 'payout_to_merchant' | 'disputed_amount_to_merchant' | 'duties_and_taxes_adjustment_to_merchant' | 'disputed_amount_from_merchant' | 'duties_and_taxes_adjustment_from_merchant' | 'refund_from_merchant';
225
226
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups' | 'fedex';
@@ -667,6 +668,20 @@ declare namespace io.flow.v0.models {
667
668
  readonly 'margin': io.flow.v0.models.Money;
668
669
  }
669
670
 
671
+ interface AmruthaItemDeleted {
672
+ readonly 'discriminator': 'amrutha_item_deleted';
673
+ readonly 'event_id': string;
674
+ readonly 'timestamp': string;
675
+ readonly 'id': string;
676
+ }
677
+
678
+ interface AmruthaItemUpserted {
679
+ readonly 'discriminator': 'amrutha_item_upserted';
680
+ readonly 'event_id': string;
681
+ readonly 'timestamp': string;
682
+ readonly 'item': io.flow.tech.onboarding.playground.v0.models.AmruthaItem;
683
+ }
684
+
670
685
  interface AnalyticsExportType {
671
686
  readonly 'discriminator': 'analytics_export_type';
672
687
  readonly 'from'?: string;
@@ -969,6 +984,7 @@ declare namespace io.flow.v0.models {
969
984
  readonly 'b2b_invoice_type': io.flow.v0.enums.B2BInvoiceType;
970
985
  readonly 'center'?: io.flow.v0.models.ConsumerInvoiceCenterReference;
971
986
  readonly 'order'?: io.flow.v0.models.ConsumerInvoiceOrderSummary;
987
+ readonly 'voids_b2b_invoice'?: boolean;
972
988
  }
973
989
 
974
990
  interface B2BCreditMemoDeleted {
@@ -2054,7 +2070,6 @@ declare namespace io.flow.v0.models {
2054
2070
  readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
2055
2071
  readonly 'other_trade_sector'?: string;
2056
2072
  readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
2057
- readonly 'center_address'?: io.flow.v0.models.Address;
2058
2073
  readonly 'average_order_weight'?: number;
2059
2074
  readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
2060
2075
  readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
@@ -2062,6 +2077,7 @@ declare namespace io.flow.v0.models {
2062
2077
  readonly 'default_country_of_origin'?: string;
2063
2078
  readonly 'rate_card': string;
2064
2079
  readonly 'shop'?: io.flow.v0.models.Shop;
2080
+ readonly 'settlement_currency'?: string;
2065
2081
  readonly 'created_at': string;
2066
2082
  readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
2067
2083
  readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
@@ -2082,7 +2098,6 @@ declare namespace io.flow.v0.models {
2082
2098
  readonly 'beneficiary_details'?: io.flow.v0.models.MerchantOnboardingBeneficiaryDetails;
2083
2099
  readonly 'other_trade_sector'?: string;
2084
2100
  readonly 'center_contact'?: io.flow.v0.models.OperationsContact;
2085
- readonly 'center_address'?: io.flow.v0.models.Address;
2086
2101
  readonly 'average_order_weight'?: number;
2087
2102
  readonly 'average_order_weight_unit'?: io.flow.v0.enums.UnitOfMeasurement;
2088
2103
  readonly 'package_dimensions'?: io.flow.v0.models.Dimension[];
@@ -2091,6 +2106,7 @@ declare namespace io.flow.v0.models {
2091
2106
  readonly 'monthly_average_number_transactions'?: number;
2092
2107
  readonly 'default_country_of_origin'?: string;
2093
2108
  readonly 'shop'?: io.flow.v0.models.Shop;
2109
+ readonly 'settlement_currency'?: string;
2094
2110
  readonly 'rate_card'?: string;
2095
2111
  readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
2096
2112
  readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
@@ -3928,6 +3944,11 @@ declare namespace io.flow.v0.models {
3928
3944
  readonly 'sort'?: string;
3929
3945
  }
3930
3946
 
3947
+ interface HarmonizationTariffCode {
3948
+ readonly 'tariff_code': string;
3949
+ readonly 'destination': string;
3950
+ }
3951
+
3931
3952
  interface HarmonizationTariffCodesExportType {
3932
3953
  readonly 'discriminator': 'harmonization_tariff_codes_export_type';
3933
3954
  readonly 'sort'?: string;
@@ -5314,6 +5335,7 @@ declare namespace io.flow.v0.models {
5314
5335
  readonly 'company'?: string;
5315
5336
  readonly 'email'?: string;
5316
5337
  readonly 'phone'?: string;
5338
+ readonly 'address'?: io.flow.v0.models.Address;
5317
5339
  }
5318
5340
 
5319
5341
  interface OptionWeightEstimates {
@@ -5786,6 +5808,48 @@ declare namespace io.flow.v0.models {
5786
5808
  readonly 'filename'?: string;
5787
5809
  }
5788
5810
 
5811
+ interface OrderState {
5812
+ readonly 'id': string;
5813
+ readonly 'order_number': string;
5814
+ readonly 'external_order_reference': string;
5815
+ readonly 'payment_requests': io.flow.v0.models.PaymentRequestReference[];
5816
+ readonly 'status': io.flow.v0.enums.OrderStateStatus;
5817
+ readonly 'rejection_reasons'?: io.flow.v0.unions.OrderStateRejectionReason[];
5818
+ }
5819
+
5820
+ interface OrderStateDeleted {
5821
+ readonly 'discriminator': 'order_state_deleted';
5822
+ readonly 'event_id': string;
5823
+ readonly 'timestamp': string;
5824
+ readonly 'organization': string;
5825
+ readonly 'channel_id': string;
5826
+ readonly 'id': string;
5827
+ }
5828
+
5829
+ interface OrderStateRejectionReasonDomesticOrder {
5830
+ readonly 'discriminator': 'order_state_rejection_reason_domestic_order';
5831
+ readonly 'destination_address': io.flow.v0.models.Address;
5832
+ }
5833
+
5834
+ interface OrderStateRejectionReasonItemsEmpty {
5835
+ readonly 'discriminator': 'order_state_rejection_reason_items_empty';
5836
+ readonly 'line_items': string[];
5837
+ }
5838
+
5839
+ interface OrderStateRejectionReasonRestrictedItem {
5840
+ readonly 'discriminator': 'order_state_rejection_reason_restricted_item';
5841
+ readonly 'item_numbers': string[];
5842
+ }
5843
+
5844
+ interface OrderStateUpserted {
5845
+ readonly 'discriminator': 'order_state_upserted';
5846
+ readonly 'event_id': string;
5847
+ readonly 'timestamp': string;
5848
+ readonly 'organization': string;
5849
+ readonly 'channel_id': string;
5850
+ readonly 'order_state': io.flow.v0.models.OrderState;
5851
+ }
5852
+
5789
5853
  interface OrderSubmissionForm {
5790
5854
  readonly 'identifiers'?: io.flow.v0.models.OrderSubmissionIdentifierForm[];
5791
5855
  }
@@ -7417,6 +7481,10 @@ declare namespace io.flow.v0.models {
7417
7481
  readonly 'hs_code'?: string;
7418
7482
  readonly 'restricted_regions_by_type'?: io.flow.v0.models.SellabilityRegionResult[];
7419
7483
  readonly 'needs_action_attributes'?: io.flow.v0.models.NeedsActionAttributes[];
7484
+ readonly 'fingerprint'?: string;
7485
+ readonly 'restriction_created_at'?: string;
7486
+ readonly 'first_reviewed_at'?: string;
7487
+ readonly 'seconds_to_first_review'?: number;
7420
7488
  }
7421
7489
 
7422
7490
  interface ProductRestrictionResultDeleted {
@@ -7457,6 +7525,7 @@ declare namespace io.flow.v0.models {
7457
7525
  }
7458
7526
 
7459
7527
  interface ProductSellabilityResult {
7528
+ readonly 'id': string;
7460
7529
  readonly 'merchant_id'?: string;
7461
7530
  readonly 'product_id': string;
7462
7531
  readonly 'restricted_regions': io.flow.v0.models.SellabilityRestrictedRegion[];
@@ -7470,7 +7539,9 @@ declare namespace io.flow.v0.models {
7470
7539
  readonly 'discriminator': 'product_sellability_result_deleted';
7471
7540
  readonly 'event_id': string;
7472
7541
  readonly 'timestamp': string;
7473
- readonly 'organization': string;
7542
+ readonly 'organization'?: string;
7543
+ readonly 'merchant'?: string;
7544
+ readonly 'channel_id'?: string;
7474
7545
  readonly 'id': string;
7475
7546
  }
7476
7547
 
@@ -7478,7 +7549,9 @@ declare namespace io.flow.v0.models {
7478
7549
  readonly 'discriminator': 'product_sellability_result_upserted';
7479
7550
  readonly 'event_id': string;
7480
7551
  readonly 'timestamp': string;
7481
- readonly 'organization': string;
7552
+ readonly 'organization'?: string;
7553
+ readonly 'merchant'?: string;
7554
+ readonly 'channel_id'?: string;
7482
7555
  readonly 'product_sellability_result': io.flow.v0.models.ProductSellabilityResult;
7483
7556
  }
7484
7557
 
@@ -7708,6 +7781,12 @@ declare namespace io.flow.v0.models {
7708
7781
  readonly 'name': string;
7709
7782
  }
7710
7783
 
7784
+ interface RatecardData {
7785
+ readonly 'dhlParcelDistributionCenter'?: string;
7786
+ readonly 'glbeRatecardMetadataLaneIdentifier'?: string;
7787
+ readonly 'pickupCenter'?: string;
7788
+ }
7789
+
7711
7790
  interface RatecardDeleted {
7712
7791
  readonly 'discriminator': 'ratecard_deleted';
7713
7792
  readonly 'event_id': string;
@@ -7808,7 +7887,7 @@ declare namespace io.flow.v0.models {
7808
7887
  readonly 'glbe_shipping_method_id'?: string;
7809
7888
  readonly 'glbe_proposition_name'?: string;
7810
7889
  readonly 'channel_revenue_share_percentage'?: number;
7811
- readonly 'data'?: Record<string, string>;
7890
+ readonly 'data'?: io.flow.v0.models.RatecardData;
7812
7891
  }
7813
7892
 
7814
7893
  interface RatecardLane {
@@ -8444,12 +8523,14 @@ declare namespace io.flow.v0.models {
8444
8523
  interface SellabilityNeedsActionAttributes {
8445
8524
  readonly 'reason_code': string;
8446
8525
  readonly 'category_metafield_handles': string[];
8526
+ readonly 'category_metafield_ids': string[];
8447
8527
  readonly 'require_msds'?: boolean;
8448
8528
  }
8449
8529
 
8450
8530
  interface SellabilityReasonWithRegions {
8451
8531
  readonly 'reason': string;
8452
8532
  readonly 'regions': string[];
8533
+ readonly 'review_status'?: string;
8453
8534
  }
8454
8535
 
8455
8536
  interface SellabilityRegionResult {
@@ -9164,6 +9245,7 @@ declare namespace io.flow.v0.models {
9164
9245
  readonly 'activated_at'?: string;
9165
9246
  readonly 'status_updated_at'?: string;
9166
9247
  readonly 'shop'?: io.flow.v0.models.Shop;
9248
+ readonly 'settlement_currency'?: string;
9167
9249
  readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
9168
9250
  readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
9169
9251
  readonly 'average_order_value'?: io.flow.v0.models.Money;
@@ -9197,6 +9279,7 @@ declare namespace io.flow.v0.models {
9197
9279
  readonly 'ratecard_id'?: string;
9198
9280
  readonly 'rate_card': string;
9199
9281
  readonly 'shop'?: io.flow.v0.models.Shop;
9282
+ readonly 'settlement_currency'?: string;
9200
9283
  readonly 'last_year_xborder_gmv'?: io.flow.v0.models.Money;
9201
9284
  readonly 'last_month_xborder_gmv'?: io.flow.v0.models.Money;
9202
9285
  readonly 'average_order_value'?: io.flow.v0.models.Money;
@@ -9500,6 +9583,29 @@ declare namespace io.flow.v0.models {
9500
9583
  readonly 'available': io.flow.v0.models.SurchargeResponsiblePartyDisplay[];
9501
9584
  }
9502
9585
 
9586
+ interface TariffCodes {
9587
+ readonly 'item_number': string;
9588
+ readonly 'product_id': string;
9589
+ readonly 'hs6_code': string;
9590
+ readonly 'codes': io.flow.v0.models.HarmonizationTariffCode[];
9591
+ }
9592
+
9593
+ interface TariffCodesDeleted {
9594
+ readonly 'discriminator': 'tariff_codes_deleted';
9595
+ readonly 'event_id': string;
9596
+ readonly 'timestamp': string;
9597
+ readonly 'organization': string;
9598
+ readonly 'id': string;
9599
+ }
9600
+
9601
+ interface TariffCodesUpserted {
9602
+ readonly 'discriminator': 'tariff_codes_upserted';
9603
+ readonly 'event_id': string;
9604
+ readonly 'timestamp': string;
9605
+ readonly 'organization': string;
9606
+ readonly 'tariff_codes': io.flow.v0.models.TariffCodes;
9607
+ }
9608
+
9503
9609
  interface Tax {
9504
9610
  readonly 'name': string;
9505
9611
  readonly 'rate': number;
@@ -9653,6 +9759,8 @@ declare namespace io.flow.v0.models {
9653
9759
  readonly 'discriminator': 'test_upserted';
9654
9760
  readonly 'event_id': string;
9655
9761
  readonly 'timestamp': string;
9762
+ readonly 'organization': string;
9763
+ readonly 'channel_id': string;
9656
9764
  readonly 'test': io.flow.ben.test.internal.v0.models.Test;
9657
9765
  }
9658
9766
 
@@ -10041,7 +10149,7 @@ declare namespace io.flow.v0.models {
10041
10149
  readonly 'label_created_at': string;
10042
10150
  readonly 'carrier_id': string;
10043
10151
  readonly 'carrier_tracking_number': string;
10044
- readonly 'revenue_share_percentage': number;
10152
+ readonly 'revenue_share_percentage'?: number;
10045
10153
  readonly 'outbound'?: io.flow.v0.models.TransactionMetadataOutboundTransaction;
10046
10154
  }
10047
10155
 
@@ -10081,6 +10189,19 @@ declare namespace io.flow.v0.models {
10081
10189
  readonly 'description': string;
10082
10190
  readonly 'original'?: io.flow.v0.models.TransactionMetadataOriginalTransaction;
10083
10191
  readonly 'url'?: string;
10192
+ readonly 'recoup'?: boolean;
10193
+ }
10194
+
10195
+ interface TransactionMetadataMerchantFee {
10196
+ readonly 'discriminator': 'merchant_fee';
10197
+ readonly 'items': io.flow.v0.models.TransactionMetadataMerchantFeeItem[];
10198
+ }
10199
+
10200
+ interface TransactionMetadataMerchantFeeItem {
10201
+ readonly 'type': string;
10202
+ readonly 'amount': number;
10203
+ readonly 'local_amount'?: number;
10204
+ readonly 'description'?: string;
10084
10205
  }
10085
10206
 
10086
10207
  interface TransactionMetadataOriginalTransaction {
@@ -10520,7 +10641,7 @@ declare namespace io.flow.v0.unions {
10520
10641
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
10521
10642
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
10522
10643
  type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
10523
- 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.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.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | 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.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.TaxRegistrationUpserted | io.flow.v0.models.TaxRegistrationDeleted | 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.ProductSellabilityResultUpserted | io.flow.v0.models.ProductSellabilityResultDeleted | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted | io.flow.v0.models.TrackingLabelEventUpsertedV2);
10644
+ type Event = (io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AmruthaItemUpserted | io.flow.v0.models.AmruthaItemDeleted | 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.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderStateUpserted | io.flow.v0.models.OrderStateDeleted | 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.TariffCodesUpserted | io.flow.v0.models.TariffCodesDeleted | 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.TaxRegistrationUpserted | io.flow.v0.models.TaxRegistrationDeleted | 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.ProductSellabilityResultUpserted | io.flow.v0.models.ProductSellabilityResultDeleted | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted | io.flow.v0.models.TrackingLabelEventUpsertedV2);
10524
10645
  type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary | io.flow.v0.models.ExternalCard);
10525
10646
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
10526
10647
  type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
@@ -10555,6 +10676,7 @@ declare namespace io.flow.v0.unions {
10555
10676
  type OrderPromotion = (io.flow.v0.models.FreeShippingOrderPromotion);
10556
10677
  type OrderPromotionForm = (io.flow.v0.models.FreeShippingOrderPromotionForm);
10557
10678
  type OrderRefundSummaryForm = (io.flow.v0.models.OrderRefundSummaryFullForm | io.flow.v0.models.OrderRefundSummaryPartialForm);
10679
+ type OrderStateRejectionReason = (io.flow.v0.models.OrderStateRejectionReasonRestrictedItem | io.flow.v0.models.OrderStateRejectionReasonDomesticOrder | io.flow.v0.models.OrderStateRejectionReasonItemsEmpty);
10558
10680
  type PartnerCenterFee = (io.flow.v0.models.CommercialInvoiceFee | io.flow.v0.models.InboundCartonFee | io.flow.v0.models.OutboundCartonFee);
10559
10681
  type Payment = (io.flow.v0.models.PaymentPaypal | io.flow.v0.models.PaymentCryptopay);
10560
10682
  type PaymentCaptureOption = (io.flow.v0.models.PaymentCaptureOptionAutomaticImmediate | io.flow.v0.models.PaymentCaptureOptionManual);
@@ -10611,6 +10733,6 @@ declare namespace io.flow.v0.unions {
10611
10733
  type Token = (io.flow.v0.models.ChannelToken | io.flow.v0.models.OrganizationToken | io.flow.v0.models.OrganizationTokenV2 | io.flow.v0.models.PartnerToken);
10612
10734
  type TokenReference = (io.flow.v0.models.ChannelTokenReference | io.flow.v0.models.OrganizationTokenReference | io.flow.v0.models.OrganizationTokenV2Reference | io.flow.v0.models.PartnerTokenReference);
10613
10735
  type TransactionDetails = (io.flow.v0.models.TransactionDetailsCard);
10614
- 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);
10736
+ 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 | io.flow.v0.models.TransactionMetadataMerchantFee);
10615
10737
  type TransferReference = (io.flow.v0.models.CaptureReference | io.flow.v0.models.RefundReference | io.flow.v0.models.DisputeReference);
10616
10738
  }
package/index.d.ts CHANGED
@@ -57,6 +57,7 @@
57
57
  /// <reference path="generated/io.flow.shopify.markets.v0.shopify-markets.d.ts" />
58
58
  /// <reference path="generated/io.flow.shopify.merchant.config.v0.shopify-merchant-config.d.ts" />
59
59
  /// <reference path="generated/io.flow.stripe.v0.stripe.d.ts" />
60
+ /// <reference path="generated/io.flow.tech.onboarding.playground.v0.tech-onboarding-playground.d.ts" />
60
61
  /// <reference path="generated/io.flow.token.v0.token.d.ts" />
61
62
  /// <reference path="generated/io.flow.tracking.v0.tracking.d.ts" />
62
63
  /// <reference path="generated/io.flow.trueup.v0.trueup.d.ts" />