@flowio/types 11.24.109 → 11.24.110

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api.d.ts CHANGED
@@ -1266,6 +1266,10 @@ declare namespace io.flow.shopify.external.v0.models {
1266
1266
  interface GraphqlMeasurement {
1267
1267
  readonly weight?: io.flow.shopify.external.v0.models.GraphqlWeight;
1268
1268
  }
1269
+ interface GraphqlMetafield {
1270
+ readonly key: string;
1271
+ readonly value: string;
1272
+ }
1269
1273
  interface GraphqlOption {
1270
1274
  readonly id: string;
1271
1275
  readonly values: string[];
@@ -1290,6 +1294,8 @@ declare namespace io.flow.shopify.external.v0.models {
1290
1294
  readonly createdAt: string;
1291
1295
  readonly updatedAt: string;
1292
1296
  readonly hasVariantsThatRequiresComponents?: boolean;
1297
+ readonly category?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
1298
+ readonly metafields?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
1293
1299
  }
1294
1300
  interface GraphqlProductImage {
1295
1301
  readonly id: string;
@@ -1310,6 +1316,10 @@ declare namespace io.flow.shopify.external.v0.models {
1310
1316
  readonly image?: io.flow.shopify.external.v0.models.GraphqlVariantImage;
1311
1317
  readonly inventoryItem: io.flow.shopify.external.v0.models.GraphqlInventoryItem;
1312
1318
  }
1319
+ interface GraphqlTaxonomyCategory {
1320
+ readonly name: string;
1321
+ readonly fullName: string;
1322
+ }
1313
1323
  interface GraphqlVariantImage {
1314
1324
  readonly id: string;
1315
1325
  }
@@ -1415,6 +1425,7 @@ declare namespace io.flow.shopify.external.v0.models {
1415
1425
  readonly created_at: string;
1416
1426
  readonly updated_at: string;
1417
1427
  readonly has_variants_that_requires_components?: boolean;
1428
+ readonly category?: io.flow.product.v0.models.ProductTaxonomyCategory;
1418
1429
  }
1419
1430
  interface ProductDelete {
1420
1431
  readonly id: number;
@@ -2084,32 +2095,6 @@ declare namespace io.flow.shopify.external.v0.models {
2084
2095
  readonly webhook: io.flow.shopify.external.v0.models.Webhook;
2085
2096
  }
2086
2097
  }
2087
- declare namespace io.flow.order.price.v0.enums {
2088
- 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';
2089
- type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
2090
- }
2091
- declare namespace io.flow.order.price.v0.models {
2092
- interface OrderPriceDetail {
2093
- readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
2094
- readonly currency: string;
2095
- readonly amount: number;
2096
- readonly label: string;
2097
- readonly base: io.flow.common.v0.models.Price;
2098
- readonly components: io.flow.order.price.v0.models.OrderPriceDetailComponent[];
2099
- readonly name?: string;
2100
- readonly rate?: number;
2101
- readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
2102
- readonly rate_label?: string;
2103
- }
2104
- interface OrderPriceDetailComponent {
2105
- readonly key: io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
2106
- readonly currency: string;
2107
- readonly amount: number;
2108
- readonly label: string;
2109
- readonly base: io.flow.common.v0.models.Price;
2110
- readonly name?: string;
2111
- }
2112
- }
2113
2098
  declare namespace io.flow.common.v0.enums {
2114
2099
  type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
2115
2100
  type AvailabilityStatus = 'enabled' | 'disabled';
@@ -2752,6 +2737,59 @@ declare namespace io.flow.price.v0.models {
2752
2737
  declare namespace io.flow.price.v0.unions {
2753
2738
  type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
2754
2739
  }
2740
+ declare namespace io.flow.channel.v0.enums {
2741
+ type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
2742
+ }
2743
+ declare namespace io.flow.channel.v0.models {
2744
+ interface Channel {
2745
+ readonly id: string;
2746
+ readonly name: string;
2747
+ readonly environment: io.flow.common.v0.enums.Environment;
2748
+ readonly organization_id_prefix?: string;
2749
+ }
2750
+ interface ChannelAuthorization {
2751
+ readonly placeholder?: string;
2752
+ }
2753
+ interface ChannelAuthorizationForm {
2754
+ readonly channel_id: string;
2755
+ }
2756
+ interface ChannelCurrency {
2757
+ readonly id: string;
2758
+ readonly currency: string;
2759
+ readonly channel: io.flow.common.v0.models.ChannelReference;
2760
+ readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
2761
+ }
2762
+ interface ChannelOrganization {
2763
+ readonly id: string;
2764
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
2765
+ readonly key: string;
2766
+ readonly channel: io.flow.common.v0.models.ChannelReference;
2767
+ readonly name: string;
2768
+ readonly slug?: string;
2769
+ readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
2770
+ readonly attributes?: Record<string, string>;
2771
+ }
2772
+ interface ChannelOrganizationAuthorization {
2773
+ readonly placeholder?: string;
2774
+ }
2775
+ interface ChannelOrganizationAuthorizationForm {
2776
+ readonly channel_id: string;
2777
+ readonly organization_id: string;
2778
+ }
2779
+ interface ChannelOrganizationForm {
2780
+ readonly key: string;
2781
+ readonly name?: string;
2782
+ readonly slug?: string;
2783
+ readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
2784
+ readonly attributes?: Record<string, string>;
2785
+ }
2786
+ interface ChannelOrganizationPutForm {
2787
+ readonly name?: string;
2788
+ readonly slug?: string;
2789
+ readonly defaults: io.flow.common.v0.models.OrganizationDefaults;
2790
+ readonly attributes?: Record<string, string>;
2791
+ }
2792
+ }
2755
2793
  declare namespace io.flow.reference.v0.enums {
2756
2794
  type PaymentMethodCapability = 'credit' | 'debit';
2757
2795
  type PaymentMethodType = 'card' | 'online' | 'offline';
@@ -2851,28 +2889,6 @@ declare namespace io.flow.reference.v0.models {
2851
2889
  readonly offset: number;
2852
2890
  }
2853
2891
  }
2854
- declare namespace io.flow.ben.test.internal.v0.models {
2855
- interface GenerateLoadMultipleOrgs {
2856
- readonly discriminator: 'generate_load_multiple_orgs';
2857
- readonly organization_ids: string[];
2858
- readonly num_events: number;
2859
- }
2860
- interface GenerateLoadSingleOrg {
2861
- readonly discriminator: 'generate_load_single_org';
2862
- readonly organization_id: string;
2863
- readonly num_events: number;
2864
- }
2865
- interface Test {
2866
- readonly id: string;
2867
- readonly name: string;
2868
- }
2869
- interface TestForm {
2870
- readonly name: string;
2871
- }
2872
- }
2873
- declare namespace io.flow.ben.test.internal.v0.unions {
2874
- type GenerateLoad = io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
2875
- }
2876
2892
  declare namespace io.flow.fulfillment.v0.enums {
2877
2893
  type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
2878
2894
  type DeliveryOptionCostDetailComponentKey = 'ratecard_base_cost' | 'ratecard_ddp_fee' | 'ratecard_fuel_surcharge' | 'ratecard_oversized_shipment_fee' | 'ratecard_rural_shipment_fee' | 'ratecard_emergency_situation_surcharge_fee' | 'ratecard_peak_surcharge_fee' | 'ratecard_duties_taxes_paid_surcharge_fee' | 'center_commercial_invoice_fee' | 'center_inbound_carton_fee' | 'center_outbound_carton_fee';
@@ -3499,6 +3515,7 @@ declare namespace io.flow.merchant.of.record.v0.enums {
3499
3515
  }
3500
3516
  declare namespace io.flow.tech.onboarding.playground.v0.enums {
3501
3517
  type AldoItemType = 'physical' | 'digital';
3518
+ type AnshItemType = 'physical' | 'digital';
3502
3519
  }
3503
3520
  declare namespace io.flow.tech.onboarding.playground.v0.models {
3504
3521
  interface AldoItem {
@@ -3516,10 +3533,31 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
3516
3533
  readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
3517
3534
  readonly added_on: string;
3518
3535
  }
3536
+ interface AnshItem {
3537
+ readonly id: string;
3538
+ readonly number: string;
3539
+ readonly amount: io.flow.common.v0.models.Price;
3540
+ readonly description?: string;
3541
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
3542
+ readonly added_on: string;
3543
+ }
3544
+ interface AnshItemForm {
3545
+ readonly number: string;
3546
+ readonly amount: io.flow.common.v0.models.Price;
3547
+ readonly description?: string;
3548
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
3549
+ readonly added_on: string;
3550
+ }
3519
3551
  interface JeanDemoItem {
3520
3552
  readonly id: string;
3521
3553
  readonly name: string;
3522
3554
  }
3555
+ interface ShawnRoundtableWorkshopRate {
3556
+ readonly origin_country: string;
3557
+ readonly destination_country: string;
3558
+ readonly weight: number;
3559
+ readonly amount: number;
3560
+ }
3523
3561
  interface TechOnboardingDescription {
3524
3562
  readonly description: string;
3525
3563
  }
@@ -3664,6 +3702,146 @@ declare namespace io.flow.organization.v0.models {
3664
3702
  readonly status: io.flow.common.v0.enums.AvailabilityStatus;
3665
3703
  }
3666
3704
  }
3705
+ declare namespace io.flow.order.price.v0.enums {
3706
+ 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';
3707
+ type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
3708
+ }
3709
+ declare namespace io.flow.order.price.v0.models {
3710
+ interface OrderPriceDetail {
3711
+ readonly key: io.flow.order.price.v0.enums.OrderPriceDetailKey;
3712
+ readonly currency: string;
3713
+ readonly amount: number;
3714
+ readonly label: string;
3715
+ readonly base: io.flow.common.v0.models.Price;
3716
+ readonly components: io.flow.order.price.v0.models.OrderPriceDetailComponent[];
3717
+ readonly name?: string;
3718
+ readonly rate?: number;
3719
+ readonly accuracy?: io.flow.price.v0.enums.PriceAccuracy;
3720
+ readonly rate_label?: string;
3721
+ }
3722
+ interface OrderPriceDetailComponent {
3723
+ readonly key: io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
3724
+ readonly currency: string;
3725
+ readonly amount: number;
3726
+ readonly label: string;
3727
+ readonly base: io.flow.common.v0.models.Price;
3728
+ readonly name?: string;
3729
+ }
3730
+ }
3731
+ declare namespace io.flow.channel.internal.v0.enums {
3732
+ type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
3733
+ type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
3734
+ type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
3735
+ type ChannelOrderAcceptanceRejectionReason = 'unsupported_origin_country' | 'unsupported_destination_country' | 'domestic_order' | 'order_contains_gift_card' | 'order_contains_restricted_goods' | 'missing_order_information' | 'missing_classification_information' | 'unsupported_payment_information' | 'unsupported_shop_currency' | 'unsupported_free_order' | 'extracting_distribution_info_failed' | 'shipping_estimation_failed' | 'payment_authorization_failed' | 'unsupported_subsidized_order' | 'unsupported_virtual_goods' | 'non_matching_currencies' | 'unsupported_order_edit' | 'order_missing';
3736
+ type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
3737
+ }
3738
+ declare namespace io.flow.channel.internal.v0.models {
3739
+ interface ChannelCurrencyForm {
3740
+ readonly currency: string;
3741
+ readonly channel_id: string;
3742
+ readonly capabilities: io.flow.channel.v0.enums.ChannelCurrencyCapability[];
3743
+ }
3744
+ interface ChannelForm {
3745
+ readonly name: string;
3746
+ readonly environment: io.flow.common.v0.enums.Environment;
3747
+ readonly organization_id_prefix?: string;
3748
+ }
3749
+ interface ChannelMembership {
3750
+ readonly id: string;
3751
+ readonly channel: io.flow.common.v0.models.ChannelReference;
3752
+ readonly user: io.flow.common.v0.unions.ExpandableUser;
3753
+ readonly role?: io.flow.common.v0.enums.Role;
3754
+ }
3755
+ interface ChannelMembershipForm {
3756
+ readonly channel_id: string;
3757
+ readonly user_id: string;
3758
+ readonly role?: io.flow.common.v0.enums.Role;
3759
+ }
3760
+ interface ChannelMembershipPutForm {
3761
+ readonly role?: io.flow.common.v0.enums.Role;
3762
+ }
3763
+ interface ChannelOrderAcceptance {
3764
+ readonly id: string;
3765
+ readonly organization_id: string;
3766
+ readonly order_number: string;
3767
+ readonly channel_id: string;
3768
+ readonly external_order_reference: string;
3769
+ readonly payment_request_id?: string;
3770
+ readonly order_edit_payment_request_ids?: string[];
3771
+ readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
3772
+ readonly reasons: io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
3773
+ readonly next_action_from?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
3774
+ readonly order_created_at?: string;
3775
+ readonly order_updated_at?: string;
3776
+ readonly order_edit_summary?: io.flow.channel.internal.v0.models.OrderEditSummary;
3777
+ }
3778
+ interface ChannelOrderAcceptanceDetails {
3779
+ readonly order_acceptance: io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
3780
+ readonly external_order: any;
3781
+ }
3782
+ interface ChannelOrderAcceptanceFailure {
3783
+ readonly id: string;
3784
+ readonly organization_id: string;
3785
+ readonly channel_id: string;
3786
+ readonly payment_request_id: string;
3787
+ readonly code: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
3788
+ readonly reason: string;
3789
+ }
3790
+ interface ChannelOrderAcceptanceForm {
3791
+ readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
3792
+ }
3793
+ interface ChannelOrderAcceptanceReason {
3794
+ readonly description: string;
3795
+ readonly rejection_reason?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
3796
+ }
3797
+ interface FlowChannelOrganization {
3798
+ readonly placeholder?: string;
3799
+ }
3800
+ interface OrderEditSummary {
3801
+ readonly edited_at: string;
3802
+ }
3803
+ }
3804
+ declare namespace io.flow.product.v0.models {
3805
+ interface Product {
3806
+ readonly organization_id: string;
3807
+ readonly number: string;
3808
+ readonly taxonomy_category?: io.flow.product.v0.models.ProductTaxonomyCategory;
3809
+ readonly taxonomy_data?: io.flow.product.v0.models.ProductTaxonomyData[];
3810
+ readonly item_numbers: string[];
3811
+ readonly updated_at: string;
3812
+ readonly deleted_at?: string;
3813
+ }
3814
+ interface ProductTaxonomyCategory {
3815
+ readonly name: string;
3816
+ readonly full_name: string;
3817
+ }
3818
+ interface ProductTaxonomyData {
3819
+ readonly key: string;
3820
+ readonly value: string[];
3821
+ }
3822
+ }
3823
+ declare namespace io.flow.ben.test.internal.v0.models {
3824
+ interface GenerateLoadMultipleOrgs {
3825
+ readonly discriminator: 'generate_load_multiple_orgs';
3826
+ readonly organization_ids: string[];
3827
+ readonly num_events: number;
3828
+ }
3829
+ interface GenerateLoadSingleOrg {
3830
+ readonly discriminator: 'generate_load_single_org';
3831
+ readonly organization_id: string;
3832
+ readonly num_events: number;
3833
+ }
3834
+ interface Test {
3835
+ readonly id: string;
3836
+ readonly name: string;
3837
+ }
3838
+ interface TestForm {
3839
+ readonly name: string;
3840
+ }
3841
+ }
3842
+ declare namespace io.flow.ben.test.internal.v0.unions {
3843
+ type GenerateLoad = io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
3844
+ }
3667
3845
  declare namespace io.flow.catalog.v0.enums {
3668
3846
  type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
3669
3847
  type AttributeIntent = 'brand' | 'color' | 'countries_of_origin' | 'product_id' | 'fulfillment_method' | 'hazardous' | 'price' | 'size' | 'sku' | 'taxability' | 'consumer_url' | 'gtin' | 'mpn' | 'facet' | 'eccn' | 'returnable' | 'searchable' | 'barcode' | 'min_days_to_ship' | 'max_days_to_ship' | 'commercial_invoice_item_number' | 'include_in_product_feeds';
@@ -4200,6 +4378,7 @@ declare namespace io.flow.v0.enums {
4200
4378
  type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
4201
4379
  type ChangeType = 'insert' | 'update' | 'delete';
4202
4380
  type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
4381
+ type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
4203
4382
  type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
4204
4383
  type ConsumerInvoiceDocumentType = 'pdf';
4205
4384
  type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
@@ -4227,7 +4406,7 @@ declare namespace io.flow.v0.enums {
4227
4406
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
4228
4407
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
4229
4408
  type Environment = 'sandbox' | 'production';
4230
- type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | 'organization_rates_published' | 'ratecard_lane_upserted' | 'ratecard_lane_deleted' | 'ratecard_upserted' | 'ratecard_deleted' | 'product_restriction_result_upserted' | 'product_restriction_result_deleted' | 'return_upserted' | 'return_deleted' | 'return_upserted_v2' | 'return_deleted_v2' | 'shopify_localization_setting_upserted' | 'shopify_localization_setting_deleted' | 'tracking_label_event_upserted';
4409
+ type EventType = 'test_upserted' | 'generate_load' | 'aldo_item_upserted' | 'aldo_item_deleted' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_shopify_order_state_upserted' | 'channel_shopify_order_state_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | 'available_promotions_upserted' | 'available_promotions_deleted' | 'available_promotions_upserted_v2' | 'available_promotions_deleted_v2' | 'allocation_deleted_v2' | 'allocation_upserted_v2' | 'currency_format_deleted' | 'currency_format_upserted' | 'experience_deleted' | 'experience_upserted' | 'experience_deleted_v2' | 'experience_upserted_v2' | 'country_status_upserted' | 'country_status_deleted' | 'experience_price_book_mapping_deleted' | 'experience_price_book_mapping_upserted' | 'experience_logistics_settings_upserted' | 'experience_logistics_settings_deleted' | 'item_margin_deleted_v2' | 'item_margin_upserted_v2' | 'item_sales_margin_deleted' | 'item_sales_margin_upserted' | 'label_format_deleted' | 'label_format_upserted' | 'order_deleted' | 'order_upserted' | 'order_deleted_v2' | 'order_upserted_v2' | 'order_identifier_deleted' | 'order_identifier_upserted' | 'order_identifier_deleted_v2' | 'order_identifier_upserted_v2' | 'order_identifier_upserted_v3' | 'order_replacement_upserted' | 'order_replacement_deleted' | 'pricing_deleted' | 'pricing_upserted' | 'order_service_change_request' | 'fraud_status_changed' | 'center_upserted' | 'center_deleted' | 'shipping_configuration_upserted' | 'shipping_configuration_deleted' | 'tier_upserted_v2' | 'tier_deleted_v2' | 'shipping_lane_upserted' | 'shipping_lane_deleted' | 'shipping_configuration_item_availability_upserted' | 'shipping_configuration_item_availability_deleted' | 'shipping_configuration_item_shipping_pricing_upserted' | 'shipping_configuration_item_shipping_pricing_deleted' | 'hs6_code_upserted' | 'hs6_code_deleted' | 'hs10_code_upserted' | 'hs10_code_deleted' | 'item_origin_upserted' | 'item_origin_deleted' | 'harmonized_landed_cost_upserted' | 'fully_harmonized_item_upserted' | 'import_completed_v2' | 'import_failed_v2' | 'label_upserted' | 'label_deleted_v2' | 'label_upserted_v2' | 'notification_upserted_v2' | 'notification_deleted_v2' | 'manifested_label_upserted' | 'manifested_label_deleted' | 'label_processing_modification_upserted' | 'label_processing_modification_deleted' | 'local_item_upserted' | 'local_item_deleted' | 'merchant_application_upserted' | 'merchant_application_deleted' | 'checkout_optin_responses_upserted' | 'checkout_optin_responses_deleted' | 'browse_optin_responses_upserted' | 'browse_optin_responses_deleted' | 'order_placed' | 'order_placed_v2' | 'ready_to_fulfill' | 'ready_to_fulfill_v2' | 'membership_upserted_v2' | 'membership_deleted_v2' | 'organization_upserted' | 'organization_deleted' | 'organization_upserted_v2' | 'organization_deleted_v2' | 'organization_default_configurations_upserted' | 'organization_default_configurations_deleted' | 'ecommerce_platform_upserted' | 'ecommerce_platform_deleted' | 'organization_onboarding_state_upserted' | 'organization_onboarding_state_deleted' | 'authorization_deleted_v2' | 'authorization_status_changed' | 'card_authorization_upserted_v2' | 'card_authorization_deleted_v2' | 'online_authorization_upserted_v2' | 'online_authorization_deleted_v2' | 'capture_upserted_v2' | 'capture_deleted' | 'card_upserted_v2' | 'card_deleted' | 'payment_upserted' | 'payment_deleted' | 'refund_upserted_v2' | 'refund_deleted_v2' | 'refund_capture_upserted_v2' | 'reversal_upserted' | 'reversal_deleted' | 'capture_identifier_upserted' | 'capture_identifier_deleted' | 'refund_identifier_upserted' | 'refund_identifier_deleted' | 'virtual_card_capture_upserted' | 'virtual_card_capture_deleted' | 'virtual_card_refund_upserted' | 'virtual_card_refund_deleted' | 'payment_request_upserted' | 'payment_request_deleted' | 'price_book_upserted' | 'price_book_deleted' | 'price_book_item_upserted' | 'price_book_item_deleted' | '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';
4231
4410
  type ExceptionType = 'open' | 'closed';
4232
4411
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
4233
4412
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -4343,6 +4522,7 @@ declare namespace io.flow.v0.enums {
4343
4522
  type Role = 'admin' | 'member';
4344
4523
  type RoundingMethod = 'up' | 'down' | 'nearest';
4345
4524
  type RoundingType = 'pattern' | 'multiple';
4525
+ type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
4346
4526
  type ScheduleExceptionStatus = 'Open' | 'Closed';
4347
4527
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
4348
4528
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
@@ -4356,6 +4536,7 @@ declare namespace io.flow.v0.enums {
4356
4536
  type StoredMethodUsageStep = 'initial' | 'subsequent';
4357
4537
  type Strategy = 'range' | 'from' | 'to';
4358
4538
  type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
4539
+ 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';
4359
4540
  type SurchargeResponsibleParty = 'organization' | 'customer';
4360
4541
  type SyncRecordFailureReason = 'inventory' | 'address' | 'promotion' | 'other';
4361
4542
  type SyncStreamType = 'submitted_order' | 'placed_order';
@@ -4375,7 +4556,7 @@ declare namespace io.flow.v0.enums {
4375
4556
  type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
4376
4557
  type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
4377
4558
  type TradeAgreementStatus = 'supported' | 'not_supported';
4378
- 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';
4559
+ type TransactionSource = 'capture' | 'refund' | 'dispute' | 'adjustment' | 'reversal' | 'shipping_label' | 'shipping_label_service' | 'shipping_label_revenue_share' | 'trueup' | 'trueup_base' | 'trueup_surcharge' | 'carrier_charge' | 'carrier_charge_revenue_share' | 'platform_fee' | 'tax' | 'duty' | 'withholding' | 'other_adjustment' | 'tax_adjustment' | 'channel' | 'channel_billed' | 'order_service' | 'virtual_card_capture' | 'virtual_card_refund' | 'failed_payout' | 'tax_refund' | 'order_fx' | 'ge_revenue_share' | 'tax_duty_delta';
4379
4560
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
4380
4561
  type TrueupSurchargeType = 'fuel' | 'remote_area' | 'oversize' | 'duties_paid' | 'emergency' | 'peak' | 'address_correction' | 'security' | 'eei_filing' | 'fixed_ddp' | 'fixed_currency_conversion' | 'prohibited_item' | 'undeliverable_shipment' | 'signature_required' | 'direct_delivery' | 'saturday_stop' | 'residential_extended_area_pickup' | 'package_level_detail';
4381
4562
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
@@ -5458,6 +5639,10 @@ declare namespace io.flow.v0.models {
5458
5639
  interface CarrierReference {
5459
5640
  readonly id: string;
5460
5641
  }
5642
+ interface CarrierRestrictions {
5643
+ readonly carrier: string;
5644
+ readonly regions: string[];
5645
+ }
5461
5646
  interface CarrierService {
5462
5647
  readonly id: string;
5463
5648
  readonly carrier: io.flow.v0.models.Carrier;
@@ -5475,20 +5660,6 @@ declare namespace io.flow.v0.models {
5475
5660
  readonly timestamp: string;
5476
5661
  readonly organization: string;
5477
5662
  }
5478
- interface CatalogItemDeleted {
5479
- readonly discriminator: 'catalog_item_deleted';
5480
- readonly event_id: string;
5481
- readonly timestamp: string;
5482
- readonly organization: string;
5483
- readonly number: string;
5484
- }
5485
- interface CatalogItemDeletedV2 {
5486
- readonly discriminator: 'catalog_item_deleted_v2';
5487
- readonly event_id: string;
5488
- readonly timestamp: string;
5489
- readonly organization: string;
5490
- readonly item: io.flow.v0.models.Item;
5491
- }
5492
5663
  interface CatalogItemDocument {
5493
5664
  readonly discriminator: 'catalog_item_document';
5494
5665
  readonly number: string;
@@ -5516,29 +5687,6 @@ declare namespace io.flow.v0.models {
5516
5687
  readonly name: string;
5517
5688
  readonly attributes: Record<string, string>;
5518
5689
  }
5519
- interface CatalogItemUpserted {
5520
- readonly discriminator: 'catalog_item_upserted';
5521
- readonly event_id: string;
5522
- readonly timestamp: string;
5523
- readonly organization: string;
5524
- readonly number: string;
5525
- readonly locale: string;
5526
- readonly name: string;
5527
- readonly currency: string;
5528
- readonly price: number;
5529
- readonly categories: string[];
5530
- readonly description?: string;
5531
- readonly attributes: Record<string, string>;
5532
- readonly dimensions: any;
5533
- readonly images: any[];
5534
- }
5535
- interface CatalogItemUpsertedV2 {
5536
- readonly discriminator: 'catalog_item_upserted_v2';
5537
- readonly event_id: string;
5538
- readonly timestamp: string;
5539
- readonly organization: string;
5540
- readonly item: io.flow.v0.models.Item;
5541
- }
5542
5690
  interface CatalogPriceBookItemDocument {
5543
5691
  readonly price_book_key: string;
5544
5692
  readonly price_book_item_key: string;
@@ -5792,6 +5940,34 @@ declare namespace io.flow.v0.models {
5792
5940
  interface ChannelReference {
5793
5941
  readonly id: string;
5794
5942
  }
5943
+ interface ChannelShopifyOrderState {
5944
+ readonly id: string;
5945
+ readonly shopify_order_summary: io.flow.v0.models.ChannelShopifyOrderSummary;
5946
+ readonly status: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
5947
+ readonly reasons?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
5948
+ }
5949
+ interface ChannelShopifyOrderStateDeleted {
5950
+ readonly discriminator: 'channel_shopify_order_state_deleted';
5951
+ readonly event_id: string;
5952
+ readonly timestamp: string;
5953
+ readonly organization: string;
5954
+ readonly id: string;
5955
+ }
5956
+ interface ChannelShopifyOrderStateReason {
5957
+ readonly code: io.flow.v0.enums.ChannelShopifyOrderStateReasonCode;
5958
+ readonly message: string;
5959
+ }
5960
+ interface ChannelShopifyOrderStateUpserted {
5961
+ readonly discriminator: 'channel_shopify_order_state_upserted';
5962
+ readonly event_id: string;
5963
+ readonly timestamp: string;
5964
+ readonly organization: string;
5965
+ readonly channel_shopify_order_state: io.flow.v0.models.ChannelShopifyOrderState;
5966
+ }
5967
+ interface ChannelShopifyOrderSummary {
5968
+ readonly order_id: number;
5969
+ readonly shop_id: number;
5970
+ }
5795
5971
  interface ChannelStatement {
5796
5972
  readonly id: string;
5797
5973
  readonly account: io.flow.v0.models.AccountReference;
@@ -6654,11 +6830,13 @@ declare namespace io.flow.v0.models {
6654
6830
  readonly q: string;
6655
6831
  readonly dimensions: io.flow.v0.models.EstimatedDimensions;
6656
6832
  readonly position: number;
6833
+ readonly block_bulk_update?: boolean;
6657
6834
  }
6658
6835
  interface DimensionEstimateForm {
6659
6836
  readonly q: string;
6660
6837
  readonly dimensions: io.flow.v0.models.EstimatedDimensions;
6661
6838
  readonly position?: number;
6839
+ readonly block_bulk_update?: boolean;
6662
6840
  }
6663
6841
  interface DimensionEstimateVersion {
6664
6842
  readonly id: string;
@@ -10669,7 +10847,6 @@ declare namespace io.flow.v0.models {
10669
10847
  readonly source: io.flow.v0.enums.DeliveryWindowComponentSource;
10670
10848
  }
10671
10849
  interface Product {
10672
- readonly id: string;
10673
10850
  readonly organization_id: string;
10674
10851
  readonly number: string;
10675
10852
  readonly taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
@@ -10678,6 +10855,20 @@ declare namespace io.flow.v0.models {
10678
10855
  readonly updated_at: string;
10679
10856
  readonly deleted_at?: string;
10680
10857
  }
10858
+ interface ProductDeleted {
10859
+ readonly discriminator: 'product_deleted';
10860
+ readonly event_id: string;
10861
+ readonly timestamp: string;
10862
+ readonly organization: string;
10863
+ readonly product: io.flow.v0.models.Product;
10864
+ }
10865
+ interface ProductInserted {
10866
+ readonly discriminator: 'product_inserted';
10867
+ readonly event_id: string;
10868
+ readonly timestamp: string;
10869
+ readonly organization: string;
10870
+ readonly product: io.flow.v0.models.Product;
10871
+ }
10681
10872
  interface ProductRestrictionResult {
10682
10873
  readonly id: string;
10683
10874
  readonly product_id: string;
@@ -10704,14 +10895,41 @@ declare namespace io.flow.v0.models {
10704
10895
  readonly organization: string;
10705
10896
  readonly product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
10706
10897
  }
10898
+ interface ProductSellability {
10899
+ readonly organization_id: string;
10900
+ readonly product_id?: string;
10901
+ readonly product_correlation_id: string;
10902
+ readonly restricted_regions: io.flow.v0.models.SellablilityRegionResult[];
10903
+ readonly in_review_regions: io.flow.v0.models.SellablilityRegionResult[];
10904
+ }
10905
+ interface ProductSellabilityForm {
10906
+ readonly organization_id: string;
10907
+ readonly product_id?: string;
10908
+ readonly product_correlation_id: string;
10909
+ readonly name: string;
10910
+ readonly price: io.flow.v0.models.ProductSellabilityPrice;
10911
+ readonly description: string;
10912
+ readonly taxonomy_category: io.flow.v0.models.ProductTaxonomyCategory;
10913
+ }
10914
+ interface ProductSellabilityPrice {
10915
+ readonly currency: string;
10916
+ readonly amount: number;
10917
+ }
10707
10918
  interface ProductTaxonomyCategory {
10708
10919
  readonly name: string;
10709
- readonly fullname: string;
10920
+ readonly full_name: string;
10710
10921
  }
10711
10922
  interface ProductTaxonomyData {
10712
10923
  readonly key: string;
10713
10924
  readonly value: string[];
10714
10925
  }
10926
+ interface ProductUpdated {
10927
+ readonly discriminator: 'product_updated';
10928
+ readonly event_id: string;
10929
+ readonly timestamp: string;
10930
+ readonly organization: string;
10931
+ readonly product: io.flow.v0.models.Product;
10932
+ }
10715
10933
  interface PromotionTrigger {
10716
10934
  readonly type: io.flow.v0.enums.PromotionTriggerType;
10717
10935
  readonly min: io.flow.v0.models.Price;
@@ -11533,6 +11751,10 @@ declare namespace io.flow.v0.models {
11533
11751
  readonly discriminator: 'select_issuer_option_action_details';
11534
11752
  readonly issuer_options: io.flow.v0.models.IssuerReference[];
11535
11753
  }
11754
+ interface SellablilityRegionResult {
11755
+ readonly type: io.flow.v0.enums.RuleEffectType;
11756
+ readonly regions: string[];
11757
+ }
11536
11758
  interface ServiceReference {
11537
11759
  readonly id: string;
11538
11760
  }
@@ -13135,7 +13357,7 @@ declare namespace io.flow.v0.unions {
13135
13357
  type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
13136
13358
  type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
13137
13359
  type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
13138
- type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.OrganizationRatesPublished | io.flow.v0.models.RatecardLaneUpserted | io.flow.v0.models.RatecardLaneDeleted | io.flow.v0.models.RatecardUpserted | io.flow.v0.models.RatecardDeleted | io.flow.v0.models.ProductRestrictionResultUpserted | io.flow.v0.models.ProductRestrictionResultDeleted | io.flow.v0.models.ReturnUpserted | io.flow.v0.models.ReturnDeleted | io.flow.v0.models.ReturnUpsertedV2 | io.flow.v0.models.ReturnDeletedV2 | io.flow.v0.models.ShopifyLocalizationSettingUpserted | io.flow.v0.models.ShopifyLocalizationSettingDeleted | io.flow.v0.models.TrackingLabelEventUpserted;
13360
+ type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.AldoItemUpserted | io.flow.v0.models.AldoItemDeleted | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelShopifyOrderStateUpserted | io.flow.v0.models.ChannelShopifyOrderStateDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.AvailablePromotionsUpserted | io.flow.v0.models.AvailablePromotionsDeleted | io.flow.v0.models.AvailablePromotionsUpsertedV2 | io.flow.v0.models.AvailablePromotionsDeletedV2 | io.flow.v0.models.AllocationDeletedV2 | io.flow.v0.models.AllocationUpsertedV2 | io.flow.v0.models.CurrencyFormatDeleted | io.flow.v0.models.CurrencyFormatUpserted | io.flow.v0.models.ExperienceDeleted | io.flow.v0.models.ExperienceUpserted | io.flow.v0.models.ExperienceDeletedV2 | io.flow.v0.models.ExperienceUpsertedV2 | io.flow.v0.models.CountryStatusUpserted | io.flow.v0.models.CountryStatusDeleted | io.flow.v0.models.ExperiencePriceBookMappingDeleted | io.flow.v0.models.ExperiencePriceBookMappingUpserted | io.flow.v0.models.ExperienceLogisticsSettingsUpserted | io.flow.v0.models.ExperienceLogisticsSettingsDeleted | io.flow.v0.models.ItemMarginDeletedV2 | io.flow.v0.models.ItemMarginUpsertedV2 | io.flow.v0.models.ItemSalesMarginDeleted | io.flow.v0.models.ItemSalesMarginUpserted | io.flow.v0.models.LabelFormatDeleted | io.flow.v0.models.LabelFormatUpserted | io.flow.v0.models.OrderDeleted | io.flow.v0.models.OrderUpserted | io.flow.v0.models.OrderDeletedV2 | io.flow.v0.models.OrderUpsertedV2 | io.flow.v0.models.OrderIdentifierDeleted | io.flow.v0.models.OrderIdentifierUpserted | io.flow.v0.models.OrderIdentifierDeletedV2 | io.flow.v0.models.OrderIdentifierUpsertedV2 | io.flow.v0.models.OrderIdentifierUpsertedV3 | io.flow.v0.models.OrderReplacementUpserted | io.flow.v0.models.OrderReplacementDeleted | io.flow.v0.models.PricingDeleted | io.flow.v0.models.PricingUpserted | io.flow.v0.models.OrderServiceChangeRequest | io.flow.v0.models.FraudStatusChanged | io.flow.v0.models.CenterUpserted | io.flow.v0.models.CenterDeleted | io.flow.v0.models.ShippingConfigurationUpserted | io.flow.v0.models.ShippingConfigurationDeleted | io.flow.v0.models.TierUpsertedV2 | io.flow.v0.models.TierDeletedV2 | io.flow.v0.models.ShippingLaneUpserted | io.flow.v0.models.ShippingLaneDeleted | io.flow.v0.models.ShippingConfigurationItemAvailabilityUpserted | io.flow.v0.models.ShippingConfigurationItemAvailabilityDeleted | io.flow.v0.models.ShippingConfigurationItemShippingPricingUpserted | io.flow.v0.models.ShippingConfigurationItemShippingPricingDeleted | io.flow.v0.models.Hs6CodeUpserted | io.flow.v0.models.Hs6CodeDeleted | io.flow.v0.models.Hs10CodeUpserted | io.flow.v0.models.Hs10CodeDeleted | io.flow.v0.models.ItemOriginUpserted | io.flow.v0.models.ItemOriginDeleted | io.flow.v0.models.HarmonizedLandedCostUpserted | io.flow.v0.models.FullyHarmonizedItemUpserted | io.flow.v0.models.ImportCompletedV2 | io.flow.v0.models.ImportFailedV2 | io.flow.v0.models.LabelUpserted | io.flow.v0.models.LabelDeletedV2 | io.flow.v0.models.LabelUpsertedV2 | io.flow.v0.models.NotificationUpsertedV2 | io.flow.v0.models.NotificationDeletedV2 | io.flow.v0.models.ManifestedLabelUpserted | io.flow.v0.models.ManifestedLabelDeleted | io.flow.v0.models.LabelProcessingModificationUpserted | io.flow.v0.models.LabelProcessingModificationDeleted | io.flow.v0.models.LocalItemUpserted | io.flow.v0.models.LocalItemDeleted | io.flow.v0.models.MerchantApplicationUpserted | io.flow.v0.models.MerchantApplicationDeleted | io.flow.v0.models.CheckoutOptinResponsesUpserted | io.flow.v0.models.CheckoutOptinResponsesDeleted | io.flow.v0.models.BrowseOptinResponsesUpserted | io.flow.v0.models.BrowseOptinResponsesDeleted | io.flow.v0.models.OrderPlaced | io.flow.v0.models.OrderPlacedV2 | io.flow.v0.models.ReadyToFulfill | io.flow.v0.models.ReadyToFulfillV2 | io.flow.v0.models.MembershipUpsertedV2 | io.flow.v0.models.MembershipDeletedV2 | io.flow.v0.models.OrganizationUpserted | io.flow.v0.models.OrganizationDeleted | io.flow.v0.models.OrganizationUpsertedV2 | io.flow.v0.models.OrganizationDeletedV2 | io.flow.v0.models.OrganizationDefaultConfigurationsUpserted | io.flow.v0.models.OrganizationDefaultConfigurationsDeleted | io.flow.v0.models.EcommercePlatformUpserted | io.flow.v0.models.EcommercePlatformDeleted | io.flow.v0.models.OrganizationOnboardingStateUpserted | io.flow.v0.models.OrganizationOnboardingStateDeleted | io.flow.v0.models.AuthorizationDeletedV2 | io.flow.v0.models.AuthorizationStatusChanged | io.flow.v0.models.CardAuthorizationUpsertedV2 | io.flow.v0.models.CardAuthorizationDeletedV2 | io.flow.v0.models.OnlineAuthorizationUpsertedV2 | io.flow.v0.models.OnlineAuthorizationDeletedV2 | io.flow.v0.models.CaptureUpsertedV2 | io.flow.v0.models.CaptureDeleted | io.flow.v0.models.CardUpsertedV2 | io.flow.v0.models.CardDeleted | io.flow.v0.models.PaymentUpserted | io.flow.v0.models.PaymentDeleted | io.flow.v0.models.RefundUpsertedV2 | io.flow.v0.models.RefundDeletedV2 | io.flow.v0.models.RefundCaptureUpsertedV2 | io.flow.v0.models.ReversalUpserted | io.flow.v0.models.ReversalDeleted | io.flow.v0.models.CaptureIdentifierUpserted | io.flow.v0.models.CaptureIdentifierDeleted | io.flow.v0.models.RefundIdentifierUpserted | io.flow.v0.models.RefundIdentifierDeleted | io.flow.v0.models.VirtualCardCaptureUpserted | io.flow.v0.models.VirtualCardCaptureDeleted | io.flow.v0.models.VirtualCardRefundUpserted | io.flow.v0.models.VirtualCardRefundDeleted | io.flow.v0.models.PaymentRequestUpserted | io.flow.v0.models.PaymentRequestDeleted | io.flow.v0.models.PriceBookUpserted | io.flow.v0.models.PriceBookDeleted | io.flow.v0.models.PriceBookItemUpserted | io.flow.v0.models.PriceBookItemDeleted | io.flow.v0.models.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;
13139
13361
  type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
13140
13362
  type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
13141
13363
  type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
@@ -13427,19 +13649,16 @@ export declare type CardVersion = io.flow.v0.models.CardVersion;
13427
13649
  export declare type Carrier = io.flow.v0.models.Carrier;
13428
13650
  export declare type CarrierChargeReason = io.flow.v0.enums.CarrierChargeReason;
13429
13651
  export declare type CarrierReference = io.flow.v0.models.CarrierReference;
13652
+ export declare type CarrierRestrictions = io.flow.v0.models.CarrierRestrictions;
13430
13653
  export declare type CarrierService = io.flow.v0.models.CarrierService;
13431
13654
  export declare type CartReference = io.flow.v0.models.CartReference;
13432
13655
  export declare type Catalog = io.flow.v0.models.Catalog;
13433
13656
  export declare type CatalogDeleted = io.flow.v0.models.CatalogDeleted;
13434
- export declare type CatalogItemDeleted = io.flow.v0.models.CatalogItemDeleted;
13435
- export declare type CatalogItemDeletedV2 = io.flow.v0.models.CatalogItemDeletedV2;
13436
13657
  export declare type CatalogItemDocument = io.flow.v0.models.CatalogItemDocument;
13437
13658
  export declare type CatalogItemDocumentImages = io.flow.v0.models.CatalogItemDocumentImages;
13438
13659
  export declare type CatalogItemExportType = io.flow.v0.models.CatalogItemExportType;
13439
13660
  export declare type CatalogItemReference = io.flow.v0.models.CatalogItemReference;
13440
13661
  export declare type CatalogItemSummary = io.flow.v0.models.CatalogItemSummary;
13441
- export declare type CatalogItemUpserted = io.flow.v0.models.CatalogItemUpserted;
13442
- export declare type CatalogItemUpsertedV2 = io.flow.v0.models.CatalogItemUpsertedV2;
13443
13662
  export declare type CatalogPriceBookItemDocument = io.flow.v0.models.CatalogPriceBookItemDocument;
13444
13663
  export declare type CatalogReference = io.flow.v0.models.CatalogReference;
13445
13664
  export declare type CatalogStatistics = io.flow.v0.models.CatalogStatistics;
@@ -13485,6 +13704,12 @@ export declare type ChannelPendingPayoutTransactionDeleted = io.flow.v0.models.C
13485
13704
  export declare type ChannelPendingPayoutTransactionUpserted = io.flow.v0.models.ChannelPendingPayoutTransactionUpserted;
13486
13705
  export declare type ChannelRate = io.flow.v0.models.ChannelRate;
13487
13706
  export declare type ChannelReference = io.flow.v0.models.ChannelReference;
13707
+ export declare type ChannelShopifyOrderState = io.flow.v0.models.ChannelShopifyOrderState;
13708
+ export declare type ChannelShopifyOrderStateDeleted = io.flow.v0.models.ChannelShopifyOrderStateDeleted;
13709
+ export declare type ChannelShopifyOrderStateReason = io.flow.v0.models.ChannelShopifyOrderStateReason;
13710
+ export declare type ChannelShopifyOrderStateReasonCode = io.flow.v0.enums.ChannelShopifyOrderStateReasonCode;
13711
+ export declare type ChannelShopifyOrderStateUpserted = io.flow.v0.models.ChannelShopifyOrderStateUpserted;
13712
+ export declare type ChannelShopifyOrderSummary = io.flow.v0.models.ChannelShopifyOrderSummary;
13488
13713
  export declare type ChannelStatement = io.flow.v0.models.ChannelStatement;
13489
13714
  export declare type ChannelStatementDeleted = io.flow.v0.models.ChannelStatementDeleted;
13490
13715
  export declare type ChannelStatementUpserted = io.flow.v0.models.ChannelStatementUpserted;
@@ -14473,12 +14698,18 @@ export declare type PricingUpserted = io.flow.v0.models.PricingUpserted;
14473
14698
  export declare type PricingVersion = io.flow.v0.models.PricingVersion;
14474
14699
  export declare type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
14475
14700
  export declare type Product = io.flow.v0.models.Product;
14701
+ export declare type ProductDeleted = io.flow.v0.models.ProductDeleted;
14702
+ export declare type ProductInserted = io.flow.v0.models.ProductInserted;
14476
14703
  export declare type ProductRestrictionResult = io.flow.v0.models.ProductRestrictionResult;
14477
14704
  export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductRestrictionResultDeleted;
14478
14705
  export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
14479
14706
  export declare type ProductRestrictionRule = io.flow.v0.enums.ProductRestrictionRule;
14707
+ export declare type ProductSellability = io.flow.v0.models.ProductSellability;
14708
+ export declare type ProductSellabilityForm = io.flow.v0.models.ProductSellabilityForm;
14709
+ export declare type ProductSellabilityPrice = io.flow.v0.models.ProductSellabilityPrice;
14480
14710
  export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
14481
14711
  export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
14712
+ export declare type ProductUpdated = io.flow.v0.models.ProductUpdated;
14482
14713
  export declare type Promotion = io.flow.v0.unions.Promotion;
14483
14714
  export declare type PromotionTrigger = io.flow.v0.models.PromotionTrigger;
14484
14715
  export declare type PromotionTriggerForm = io.flow.v0.models.PromotionTriggerForm;
@@ -14623,6 +14854,7 @@ export declare type Rounding = io.flow.v0.models.Rounding;
14623
14854
  export declare type RoundingMethod = io.flow.v0.enums.RoundingMethod;
14624
14855
  export declare type RoundingType = io.flow.v0.enums.RoundingType;
14625
14856
  export declare type RouteAudit = io.flow.v0.models.RouteAudit;
14857
+ export declare type RuleEffectType = io.flow.v0.enums.RuleEffectType;
14626
14858
  export declare type Schedule = io.flow.v0.models.Schedule;
14627
14859
  export declare type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
14628
14860
  export declare type ScheduledExport = io.flow.v0.models.ScheduledExport;
@@ -14632,6 +14864,7 @@ export declare type SdkAdyenV3AuthenticationToken = io.flow.v0.unions.SdkAdyenV3
14632
14864
  export declare type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
14633
14865
  export declare type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
14634
14866
  export declare type SelectIssuerOptionActionDetails = io.flow.v0.models.SelectIssuerOptionActionDetails;
14867
+ export declare type SellablilityRegionResult = io.flow.v0.models.SellablilityRegionResult;
14635
14868
  export declare type ServiceDescription = io.flow.v0.unions.ServiceDescription;
14636
14869
  export declare type ServiceFee = io.flow.v0.unions.ServiceFee;
14637
14870
  export declare type ServiceReference = io.flow.v0.models.ServiceReference;
@@ -14773,6 +15006,7 @@ export declare type SubcatalogSettingsForm = io.flow.v0.models.SubcatalogSetting
14773
15006
  export declare type SubcatalogStatistics = io.flow.v0.models.SubcatalogStatistics;
14774
15007
  export declare type SubcatalogUpserted = io.flow.v0.models.SubcatalogUpserted;
14775
15008
  export declare type SubcatalogVersion = io.flow.v0.models.SubcatalogVersion;
15009
+ export declare type SubstatusCode = io.flow.v0.enums.SubstatusCode;
14776
15010
  export declare type Suggestion = io.flow.v0.models.Suggestion;
14777
15011
  export declare type SummaryShippingLabelForm = io.flow.v0.models.SummaryShippingLabelForm;
14778
15012
  export declare type SummaryShippingNotificationForm = io.flow.v0.models.SummaryShippingNotificationForm;