@flowio/types 11.24.108 → 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';
@@ -2494,6 +2479,114 @@ declare namespace io.flow.common.v0.unions {
2494
2479
  type PriceSource = io.flow.common.v0.models.PriceSourcePriceBook | io.flow.common.v0.models.PriceSourceCatalog | io.flow.common.v0.models.PriceSourceProvided;
2495
2480
  type RepeatSchedule = io.flow.common.v0.models.RepeatHourly | io.flow.common.v0.models.RepeatDaily | io.flow.common.v0.models.RepeatWeekly | io.flow.common.v0.models.RepeatMonthly;
2496
2481
  }
2482
+ declare namespace io.flow.token.v0.models {
2483
+ interface ChannelToken {
2484
+ readonly discriminator: 'channel_token';
2485
+ readonly id: string;
2486
+ readonly channel: io.flow.common.v0.models.ChannelReference;
2487
+ readonly user: io.flow.common.v0.models.UserReference;
2488
+ readonly partial: string;
2489
+ readonly cleartext?: string;
2490
+ readonly created_at: string;
2491
+ readonly description?: string;
2492
+ }
2493
+ interface ChannelTokenForm {
2494
+ readonly channel_id: string;
2495
+ readonly description?: string;
2496
+ }
2497
+ interface ChannelTokenReference {
2498
+ readonly discriminator: 'channel_token_reference';
2499
+ readonly id: string;
2500
+ readonly channel: io.flow.common.v0.models.ChannelReference;
2501
+ readonly user: io.flow.common.v0.models.UserReference;
2502
+ }
2503
+ interface Cleartext {
2504
+ readonly value: string;
2505
+ }
2506
+ interface OrganizationToken {
2507
+ readonly discriminator: 'organization_token';
2508
+ readonly id: string;
2509
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
2510
+ readonly user: io.flow.common.v0.models.UserReference;
2511
+ readonly environment: io.flow.common.v0.enums.Environment;
2512
+ readonly partial: string;
2513
+ readonly created_at: string;
2514
+ readonly description?: string;
2515
+ }
2516
+ interface OrganizationTokenForm {
2517
+ readonly environment: io.flow.common.v0.enums.Environment;
2518
+ readonly description?: string;
2519
+ }
2520
+ interface OrganizationTokenFormV2 {
2521
+ readonly organization_id: string;
2522
+ readonly description?: string;
2523
+ }
2524
+ interface OrganizationTokenReference {
2525
+ readonly discriminator: 'organization_token_reference';
2526
+ readonly id: string;
2527
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
2528
+ readonly environment: io.flow.common.v0.enums.Environment;
2529
+ readonly user: io.flow.common.v0.models.UserReference;
2530
+ }
2531
+ interface OrganizationTokenV2 {
2532
+ readonly discriminator: 'organization_token_v2';
2533
+ readonly id: string;
2534
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
2535
+ readonly user: io.flow.common.v0.models.UserReference;
2536
+ readonly partial: string;
2537
+ readonly cleartext?: string;
2538
+ readonly created_at: string;
2539
+ readonly description?: string;
2540
+ }
2541
+ interface OrganizationTokenV2Reference {
2542
+ readonly discriminator: 'organization_token_v2_reference';
2543
+ readonly id: string;
2544
+ readonly organization: io.flow.common.v0.models.OrganizationReference;
2545
+ }
2546
+ interface PartnerToken {
2547
+ readonly discriminator: 'partner_token';
2548
+ readonly id: string;
2549
+ readonly partner: io.flow.token.v0.models.TokenPartnerReference;
2550
+ readonly user: io.flow.common.v0.models.UserReference;
2551
+ readonly environment: io.flow.common.v0.enums.Environment;
2552
+ readonly partial: string;
2553
+ readonly created_at: string;
2554
+ readonly description?: string;
2555
+ }
2556
+ interface PartnerTokenForm {
2557
+ readonly environment: io.flow.common.v0.enums.Environment;
2558
+ readonly description?: string;
2559
+ }
2560
+ interface PartnerTokenReference {
2561
+ readonly discriminator: 'partner_token_reference';
2562
+ readonly id: string;
2563
+ readonly partner: io.flow.token.v0.models.TokenPartnerReference;
2564
+ readonly environment: io.flow.common.v0.enums.Environment;
2565
+ readonly user: io.flow.common.v0.models.UserReference;
2566
+ }
2567
+ interface TokenAuthenticationForm {
2568
+ readonly token: string;
2569
+ }
2570
+ interface TokenPartnerReference {
2571
+ readonly id: string;
2572
+ }
2573
+ interface TokenRbacAuthenticationForm {
2574
+ readonly token: string;
2575
+ readonly method: string;
2576
+ readonly path_pattern: string;
2577
+ readonly path: string;
2578
+ }
2579
+ interface TokenValidation {
2580
+ readonly status: string;
2581
+ }
2582
+ interface TokenValidationForm {
2583
+ readonly token: string;
2584
+ }
2585
+ }
2586
+ declare namespace io.flow.token.v0.unions {
2587
+ type Token = io.flow.token.v0.models.ChannelToken | io.flow.token.v0.models.OrganizationToken | io.flow.token.v0.models.OrganizationTokenV2 | io.flow.token.v0.models.PartnerToken;
2588
+ type TokenReference = io.flow.token.v0.models.ChannelTokenReference | io.flow.token.v0.models.OrganizationTokenReference | io.flow.token.v0.models.OrganizationTokenV2Reference | io.flow.token.v0.models.PartnerTokenReference;
2589
+ }
2497
2590
  declare namespace io.flow.error.v0.enums {
2498
2591
  type GenericErrorCode = 'generic_error' | 'client_error' | 'server_error';
2499
2592
  }
@@ -2644,6 +2737,59 @@ declare namespace io.flow.price.v0.models {
2644
2737
  declare namespace io.flow.price.v0.unions {
2645
2738
  type Deminimis = io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem;
2646
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
+ }
2647
2793
  declare namespace io.flow.reference.v0.enums {
2648
2794
  type PaymentMethodCapability = 'credit' | 'debit';
2649
2795
  type PaymentMethodType = 'card' | 'online' | 'offline';
@@ -2743,28 +2889,6 @@ declare namespace io.flow.reference.v0.models {
2743
2889
  readonly offset: number;
2744
2890
  }
2745
2891
  }
2746
- declare namespace io.flow.ben.test.internal.v0.models {
2747
- interface GenerateLoadMultipleOrgs {
2748
- readonly discriminator: 'generate_load_multiple_orgs';
2749
- readonly organization_ids: string[];
2750
- readonly num_events: number;
2751
- }
2752
- interface GenerateLoadSingleOrg {
2753
- readonly discriminator: 'generate_load_single_org';
2754
- readonly organization_id: string;
2755
- readonly num_events: number;
2756
- }
2757
- interface Test {
2758
- readonly id: string;
2759
- readonly name: string;
2760
- }
2761
- interface TestForm {
2762
- readonly name: string;
2763
- }
2764
- }
2765
- declare namespace io.flow.ben.test.internal.v0.unions {
2766
- type GenerateLoad = io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs;
2767
- }
2768
2892
  declare namespace io.flow.fulfillment.v0.enums {
2769
2893
  type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
2770
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';
@@ -3389,6 +3513,55 @@ declare namespace io.flow.merchant.of.record.v0.enums {
3389
3513
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
3390
3514
  type FlowEntity = 'flow-usa' | 'flow-irl' | 'flow-can' | 'ge-usa';
3391
3515
  }
3516
+ declare namespace io.flow.tech.onboarding.playground.v0.enums {
3517
+ type AldoItemType = 'physical' | 'digital';
3518
+ type AnshItemType = 'physical' | 'digital';
3519
+ }
3520
+ declare namespace io.flow.tech.onboarding.playground.v0.models {
3521
+ interface AldoItem {
3522
+ readonly id: string;
3523
+ readonly number: string;
3524
+ readonly amount: io.flow.common.v0.models.Price;
3525
+ readonly description?: string;
3526
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
3527
+ readonly added_on: string;
3528
+ }
3529
+ interface AldoItemForm {
3530
+ readonly number: string;
3531
+ readonly amount: io.flow.common.v0.models.Price;
3532
+ readonly description?: string;
3533
+ readonly type: io.flow.tech.onboarding.playground.v0.enums.AldoItemType;
3534
+ readonly added_on: string;
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
+ }
3551
+ interface JeanDemoItem {
3552
+ readonly id: string;
3553
+ readonly name: string;
3554
+ }
3555
+ interface ShawnRoundtableWorkshopRate {
3556
+ readonly origin_country: string;
3557
+ readonly destination_country: string;
3558
+ readonly weight: number;
3559
+ readonly amount: number;
3560
+ }
3561
+ interface TechOnboardingDescription {
3562
+ readonly description: string;
3563
+ }
3564
+ }
3392
3565
  declare namespace io.flow.currency.v0.models {
3393
3566
  interface Rate {
3394
3567
  readonly id: string;
@@ -3529,6 +3702,146 @@ declare namespace io.flow.organization.v0.models {
3529
3702
  readonly status: io.flow.common.v0.enums.AvailabilityStatus;
3530
3703
  }
3531
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
+ }
3532
3845
  declare namespace io.flow.catalog.v0.enums {
3533
3846
  type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
3534
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';
@@ -4065,6 +4378,7 @@ declare namespace io.flow.v0.enums {
4065
4378
  type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
4066
4379
  type ChangeType = 'insert' | 'update' | 'delete';
4067
4380
  type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
4381
+ type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
4068
4382
  type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
4069
4383
  type ConsumerInvoiceDocumentType = 'pdf';
4070
4384
  type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
@@ -4092,7 +4406,7 @@ declare namespace io.flow.v0.enums {
4092
4406
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
4093
4407
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
4094
4408
  type Environment = 'sandbox' | 'production';
4095
- type EventType = 'test_upserted' | 'generate_load' | 'transaction_upserted' | 'organization_transaction_upserted' | 'organization_transaction_deleted' | 'statement_upserted' | 'statement_deleted' | 'channel_transaction_upserted' | 'channel_transaction_deleted' | 'channel_transaction_deleted_v2' | 'channel_statement_upserted' | 'channel_statement_deleted' | 'channel_payout_upserted' | 'channel_payout_deleted' | 'organization_payout_upserted' | 'organization_payout_deleted' | 'channel_pending_payout_transaction_upserted' | 'channel_pending_payout_transaction_deleted' | 'organization_pending_payout_transaction_upserted' | 'organization_pending_payout_transaction_deleted' | 'attribute_upserted' | 'attribute_deleted' | 'attribute_upserted_v2' | 'attribute_deleted_v2' | 'catalog_upserted' | 'catalog_deleted' | 'subcatalog_upserted' | 'subcatalog_deleted' | 'catalog_item_upserted' | 'catalog_item_deleted' | 'catalog_item_upserted_v2' | 'catalog_item_deleted_v2' | 'subcatalog_item_upserted' | 'subcatalog_item_deleted' | 'catalog_statistics_upserted' | 'catalog_statistics_deleted' | 'item_inserted' | 'item_updated' | 'item_deleted' | 'channel_upserted' | 'channel_deleted' | 'channel_currency_upserted' | 'channel_currency_deleted' | 'channel_organization_upserted' | 'channel_organization_deleted' | 'b2b_invoice_upserted' | 'b2b_invoice_deleted' | 'b2b_credit_memo_upserted' | 'b2b_credit_memo_deleted' | 'consumer_invoice_upserted' | 'consumer_invoice_deleted' | 'credit_memo_upserted' | 'credit_memo_deleted' | 'crossdock_shipment_upserted' | 'rate_deleted' | 'rate_upserted' | 'rate_deleted_v3' | 'rate_upserted_v3' | 'customer_upserted' | 'customer_deleted' | 'customer_address_book_contact_upserted' | 'customer_address_book_contact_deleted' | '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';
4096
4410
  type ExceptionType = 'open' | 'closed';
4097
4411
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
4098
4412
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -4208,6 +4522,7 @@ declare namespace io.flow.v0.enums {
4208
4522
  type Role = 'admin' | 'member';
4209
4523
  type RoundingMethod = 'up' | 'down' | 'nearest';
4210
4524
  type RoundingType = 'pattern' | 'multiple';
4525
+ type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
4211
4526
  type ScheduleExceptionStatus = 'Open' | 'Closed';
4212
4527
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
4213
4528
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
@@ -4221,6 +4536,7 @@ declare namespace io.flow.v0.enums {
4221
4536
  type StoredMethodUsageStep = 'initial' | 'subsequent';
4222
4537
  type Strategy = 'range' | 'from' | 'to';
4223
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';
4224
4540
  type SurchargeResponsibleParty = 'organization' | 'customer';
4225
4541
  type SyncRecordFailureReason = 'inventory' | 'address' | 'promotion' | 'other';
4226
4542
  type SyncStreamType = 'submitted_order' | 'placed_order';
@@ -4240,7 +4556,7 @@ declare namespace io.flow.v0.enums {
4240
4556
  type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
4241
4557
  type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
4242
4558
  type TradeAgreementStatus = 'supported' | 'not_supported';
4243
- 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';
4244
4560
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
4245
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';
4246
4562
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
@@ -4525,6 +4841,18 @@ declare namespace io.flow.v0.models {
4525
4841
  readonly type: 'fingerprint';
4526
4842
  readonly fingerprint_token: string;
4527
4843
  }
4844
+ interface AldoItemDeleted {
4845
+ readonly discriminator: 'aldo_item_deleted';
4846
+ readonly event_id: string;
4847
+ readonly timestamp: string;
4848
+ readonly id: string;
4849
+ }
4850
+ interface AldoItemUpserted {
4851
+ readonly discriminator: 'aldo_item_upserted';
4852
+ readonly event_id: string;
4853
+ readonly timestamp: string;
4854
+ readonly item: io.flow.tech.onboarding.playground.v0.models.AldoItem;
4855
+ }
4528
4856
  interface Allocation {
4529
4857
  readonly order: io.flow.v0.models.AllocationOrderSummary;
4530
4858
  readonly details: io.flow.v0.unions.AllocationDetail[];
@@ -5311,6 +5639,10 @@ declare namespace io.flow.v0.models {
5311
5639
  interface CarrierReference {
5312
5640
  readonly id: string;
5313
5641
  }
5642
+ interface CarrierRestrictions {
5643
+ readonly carrier: string;
5644
+ readonly regions: string[];
5645
+ }
5314
5646
  interface CarrierService {
5315
5647
  readonly id: string;
5316
5648
  readonly carrier: io.flow.v0.models.Carrier;
@@ -5328,20 +5660,6 @@ declare namespace io.flow.v0.models {
5328
5660
  readonly timestamp: string;
5329
5661
  readonly organization: string;
5330
5662
  }
5331
- interface CatalogItemDeleted {
5332
- readonly discriminator: 'catalog_item_deleted';
5333
- readonly event_id: string;
5334
- readonly timestamp: string;
5335
- readonly organization: string;
5336
- readonly number: string;
5337
- }
5338
- interface CatalogItemDeletedV2 {
5339
- readonly discriminator: 'catalog_item_deleted_v2';
5340
- readonly event_id: string;
5341
- readonly timestamp: string;
5342
- readonly organization: string;
5343
- readonly item: io.flow.v0.models.Item;
5344
- }
5345
5663
  interface CatalogItemDocument {
5346
5664
  readonly discriminator: 'catalog_item_document';
5347
5665
  readonly number: string;
@@ -5369,29 +5687,6 @@ declare namespace io.flow.v0.models {
5369
5687
  readonly name: string;
5370
5688
  readonly attributes: Record<string, string>;
5371
5689
  }
5372
- interface CatalogItemUpserted {
5373
- readonly discriminator: 'catalog_item_upserted';
5374
- readonly event_id: string;
5375
- readonly timestamp: string;
5376
- readonly organization: string;
5377
- readonly number: string;
5378
- readonly locale: string;
5379
- readonly name: string;
5380
- readonly currency: string;
5381
- readonly price: number;
5382
- readonly categories: string[];
5383
- readonly description?: string;
5384
- readonly attributes: Record<string, string>;
5385
- readonly dimensions: any;
5386
- readonly images: any[];
5387
- }
5388
- interface CatalogItemUpsertedV2 {
5389
- readonly discriminator: 'catalog_item_upserted_v2';
5390
- readonly event_id: string;
5391
- readonly timestamp: string;
5392
- readonly organization: string;
5393
- readonly item: io.flow.v0.models.Item;
5394
- }
5395
5690
  interface CatalogPriceBookItemDocument {
5396
5691
  readonly price_book_key: string;
5397
5692
  readonly price_book_item_key: string;
@@ -5645,6 +5940,34 @@ declare namespace io.flow.v0.models {
5645
5940
  interface ChannelReference {
5646
5941
  readonly id: string;
5647
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
+ }
5648
5971
  interface ChannelStatement {
5649
5972
  readonly id: string;
5650
5973
  readonly account: io.flow.v0.models.AccountReference;
@@ -6507,11 +6830,13 @@ declare namespace io.flow.v0.models {
6507
6830
  readonly q: string;
6508
6831
  readonly dimensions: io.flow.v0.models.EstimatedDimensions;
6509
6832
  readonly position: number;
6833
+ readonly block_bulk_update?: boolean;
6510
6834
  }
6511
6835
  interface DimensionEstimateForm {
6512
6836
  readonly q: string;
6513
6837
  readonly dimensions: io.flow.v0.models.EstimatedDimensions;
6514
6838
  readonly position?: number;
6839
+ readonly block_bulk_update?: boolean;
6515
6840
  }
6516
6841
  interface DimensionEstimateVersion {
6517
6842
  readonly id: string;
@@ -10521,6 +10846,29 @@ declare namespace io.flow.v0.models {
10521
10846
  readonly max_date: string;
10522
10847
  readonly source: io.flow.v0.enums.DeliveryWindowComponentSource;
10523
10848
  }
10849
+ interface Product {
10850
+ readonly organization_id: string;
10851
+ readonly number: string;
10852
+ readonly taxonomy_category?: io.flow.v0.models.ProductTaxonomyCategory;
10853
+ readonly taxonomy_data?: io.flow.v0.models.ProductTaxonomyData[];
10854
+ readonly item_numbers: string[];
10855
+ readonly updated_at: string;
10856
+ readonly deleted_at?: string;
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
+ }
10524
10872
  interface ProductRestrictionResult {
10525
10873
  readonly id: string;
10526
10874
  readonly product_id: string;
@@ -10547,6 +10895,41 @@ declare namespace io.flow.v0.models {
10547
10895
  readonly organization: string;
10548
10896
  readonly product_restriction_result: io.flow.v0.models.ProductRestrictionResult;
10549
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
+ }
10918
+ interface ProductTaxonomyCategory {
10919
+ readonly name: string;
10920
+ readonly full_name: string;
10921
+ }
10922
+ interface ProductTaxonomyData {
10923
+ readonly key: string;
10924
+ readonly value: string[];
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
+ }
10550
10933
  interface PromotionTrigger {
10551
10934
  readonly type: io.flow.v0.enums.PromotionTriggerType;
10552
10935
  readonly min: io.flow.v0.models.Price;
@@ -11368,6 +11751,10 @@ declare namespace io.flow.v0.models {
11368
11751
  readonly discriminator: 'select_issuer_option_action_details';
11369
11752
  readonly issuer_options: io.flow.v0.models.IssuerReference[];
11370
11753
  }
11754
+ interface SellablilityRegionResult {
11755
+ readonly type: io.flow.v0.enums.RuleEffectType;
11756
+ readonly regions: string[];
11757
+ }
11371
11758
  interface ServiceReference {
11372
11759
  readonly id: string;
11373
11760
  }
@@ -12970,7 +13357,7 @@ declare namespace io.flow.v0.unions {
12970
13357
  type Document = io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument;
12971
13358
  type EmailNotificationData = io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder;
12972
13359
  type Entity = io.flow.v0.models.Company | io.flow.v0.models.Individual;
12973
- type Event = io.flow.v0.models.TestUpserted | io.flow.v0.models.GenerateLoad | io.flow.v0.models.TransactionUpserted | io.flow.v0.models.OrganizationTransactionUpserted | io.flow.v0.models.OrganizationTransactionDeleted | io.flow.v0.models.StatementUpserted | io.flow.v0.models.StatementDeleted | io.flow.v0.models.ChannelTransactionUpserted | io.flow.v0.models.ChannelTransactionDeleted | io.flow.v0.models.ChannelTransactionDeletedV2 | io.flow.v0.models.ChannelStatementUpserted | io.flow.v0.models.ChannelStatementDeleted | io.flow.v0.models.ChannelPayoutUpserted | io.flow.v0.models.ChannelPayoutDeleted | io.flow.v0.models.OrganizationPayoutUpserted | io.flow.v0.models.OrganizationPayoutDeleted | io.flow.v0.models.ChannelPendingPayoutTransactionUpserted | io.flow.v0.models.ChannelPendingPayoutTransactionDeleted | io.flow.v0.models.OrganizationPendingPayoutTransactionUpserted | io.flow.v0.models.OrganizationPendingPayoutTransactionDeleted | io.flow.v0.models.AttributeUpserted | io.flow.v0.models.AttributeDeleted | io.flow.v0.models.AttributeUpsertedV2 | io.flow.v0.models.AttributeDeletedV2 | io.flow.v0.models.CatalogUpserted | io.flow.v0.models.CatalogDeleted | io.flow.v0.models.SubcatalogUpserted | io.flow.v0.models.SubcatalogDeleted | io.flow.v0.models.CatalogItemUpserted | io.flow.v0.models.CatalogItemDeleted | io.flow.v0.models.CatalogItemUpsertedV2 | io.flow.v0.models.CatalogItemDeletedV2 | io.flow.v0.models.SubcatalogItemUpserted | io.flow.v0.models.SubcatalogItemDeleted | io.flow.v0.models.CatalogStatisticsUpserted | io.flow.v0.models.CatalogStatisticsDeleted | io.flow.v0.models.ItemInserted | io.flow.v0.models.ItemUpdated | io.flow.v0.models.ItemDeleted | io.flow.v0.models.ChannelUpserted | io.flow.v0.models.ChannelDeleted | io.flow.v0.models.ChannelCurrencyUpserted | io.flow.v0.models.ChannelCurrencyDeleted | io.flow.v0.models.ChannelOrganizationUpserted | io.flow.v0.models.ChannelOrganizationDeleted | io.flow.v0.models.B2BInvoiceUpserted | io.flow.v0.models.B2BInvoiceDeleted | io.flow.v0.models.B2BCreditMemoUpserted | io.flow.v0.models.B2BCreditMemoDeleted | io.flow.v0.models.ConsumerInvoiceUpserted | io.flow.v0.models.ConsumerInvoiceDeleted | io.flow.v0.models.CreditMemoUpserted | io.flow.v0.models.CreditMemoDeleted | io.flow.v0.models.CrossdockShipmentUpserted | io.flow.v0.models.RateDeleted | io.flow.v0.models.RateUpserted | io.flow.v0.models.RateDeletedV3 | io.flow.v0.models.RateUpsertedV3 | io.flow.v0.models.CustomerUpserted | io.flow.v0.models.CustomerDeleted | io.flow.v0.models.CustomerAddressBookContactUpserted | io.flow.v0.models.CustomerAddressBookContactDeleted | io.flow.v0.models.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;
12974
13361
  type ExpandableCard = io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary;
12975
13362
  type ExpandableCenter = io.flow.v0.models.Center | io.flow.v0.models.CenterReference;
12976
13363
  type ExpandableExperience = io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference;
@@ -13108,6 +13495,8 @@ export declare type AdyenNativeActionDetails = io.flow.v0.models.AdyenNativeActi
13108
13495
  export declare type AdyenNativeData = io.flow.v0.unions.AdyenNativeData;
13109
13496
  export declare type AdyenV3ChallengeToken = io.flow.v0.models.AdyenV3ChallengeToken;
13110
13497
  export declare type AdyenV3FingerprintToken = io.flow.v0.models.AdyenV3FingerprintToken;
13498
+ export declare type AldoItemDeleted = io.flow.v0.models.AldoItemDeleted;
13499
+ export declare type AldoItemUpserted = io.flow.v0.models.AldoItemUpserted;
13111
13500
  export declare type Allocation = io.flow.v0.models.Allocation;
13112
13501
  export declare type AllocationComponent = io.flow.v0.unions.AllocationComponent;
13113
13502
  export declare type AllocationDeletedV2 = io.flow.v0.models.AllocationDeletedV2;
@@ -13260,19 +13649,16 @@ export declare type CardVersion = io.flow.v0.models.CardVersion;
13260
13649
  export declare type Carrier = io.flow.v0.models.Carrier;
13261
13650
  export declare type CarrierChargeReason = io.flow.v0.enums.CarrierChargeReason;
13262
13651
  export declare type CarrierReference = io.flow.v0.models.CarrierReference;
13652
+ export declare type CarrierRestrictions = io.flow.v0.models.CarrierRestrictions;
13263
13653
  export declare type CarrierService = io.flow.v0.models.CarrierService;
13264
13654
  export declare type CartReference = io.flow.v0.models.CartReference;
13265
13655
  export declare type Catalog = io.flow.v0.models.Catalog;
13266
13656
  export declare type CatalogDeleted = io.flow.v0.models.CatalogDeleted;
13267
- export declare type CatalogItemDeleted = io.flow.v0.models.CatalogItemDeleted;
13268
- export declare type CatalogItemDeletedV2 = io.flow.v0.models.CatalogItemDeletedV2;
13269
13657
  export declare type CatalogItemDocument = io.flow.v0.models.CatalogItemDocument;
13270
13658
  export declare type CatalogItemDocumentImages = io.flow.v0.models.CatalogItemDocumentImages;
13271
13659
  export declare type CatalogItemExportType = io.flow.v0.models.CatalogItemExportType;
13272
13660
  export declare type CatalogItemReference = io.flow.v0.models.CatalogItemReference;
13273
13661
  export declare type CatalogItemSummary = io.flow.v0.models.CatalogItemSummary;
13274
- export declare type CatalogItemUpserted = io.flow.v0.models.CatalogItemUpserted;
13275
- export declare type CatalogItemUpsertedV2 = io.flow.v0.models.CatalogItemUpsertedV2;
13276
13662
  export declare type CatalogPriceBookItemDocument = io.flow.v0.models.CatalogPriceBookItemDocument;
13277
13663
  export declare type CatalogReference = io.flow.v0.models.CatalogReference;
13278
13664
  export declare type CatalogStatistics = io.flow.v0.models.CatalogStatistics;
@@ -13318,6 +13704,12 @@ export declare type ChannelPendingPayoutTransactionDeleted = io.flow.v0.models.C
13318
13704
  export declare type ChannelPendingPayoutTransactionUpserted = io.flow.v0.models.ChannelPendingPayoutTransactionUpserted;
13319
13705
  export declare type ChannelRate = io.flow.v0.models.ChannelRate;
13320
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;
13321
13713
  export declare type ChannelStatement = io.flow.v0.models.ChannelStatement;
13322
13714
  export declare type ChannelStatementDeleted = io.flow.v0.models.ChannelStatementDeleted;
13323
13715
  export declare type ChannelStatementUpserted = io.flow.v0.models.ChannelStatementUpserted;
@@ -14305,10 +14697,19 @@ export declare type PricingSettings = io.flow.v0.models.PricingSettings;
14305
14697
  export declare type PricingUpserted = io.flow.v0.models.PricingUpserted;
14306
14698
  export declare type PricingVersion = io.flow.v0.models.PricingVersion;
14307
14699
  export declare type ProcessingEstimate = io.flow.v0.models.ProcessingEstimate;
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;
14308
14703
  export declare type ProductRestrictionResult = io.flow.v0.models.ProductRestrictionResult;
14309
14704
  export declare type ProductRestrictionResultDeleted = io.flow.v0.models.ProductRestrictionResultDeleted;
14310
14705
  export declare type ProductRestrictionResultUpserted = io.flow.v0.models.ProductRestrictionResultUpserted;
14311
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;
14710
+ export declare type ProductTaxonomyCategory = io.flow.v0.models.ProductTaxonomyCategory;
14711
+ export declare type ProductTaxonomyData = io.flow.v0.models.ProductTaxonomyData;
14712
+ export declare type ProductUpdated = io.flow.v0.models.ProductUpdated;
14312
14713
  export declare type Promotion = io.flow.v0.unions.Promotion;
14313
14714
  export declare type PromotionTrigger = io.flow.v0.models.PromotionTrigger;
14314
14715
  export declare type PromotionTriggerForm = io.flow.v0.models.PromotionTriggerForm;
@@ -14453,6 +14854,7 @@ export declare type Rounding = io.flow.v0.models.Rounding;
14453
14854
  export declare type RoundingMethod = io.flow.v0.enums.RoundingMethod;
14454
14855
  export declare type RoundingType = io.flow.v0.enums.RoundingType;
14455
14856
  export declare type RouteAudit = io.flow.v0.models.RouteAudit;
14857
+ export declare type RuleEffectType = io.flow.v0.enums.RuleEffectType;
14456
14858
  export declare type Schedule = io.flow.v0.models.Schedule;
14457
14859
  export declare type ScheduleExceptionStatus = io.flow.v0.enums.ScheduleExceptionStatus;
14458
14860
  export declare type ScheduledExport = io.flow.v0.models.ScheduledExport;
@@ -14462,6 +14864,7 @@ export declare type SdkAdyenV3AuthenticationToken = io.flow.v0.unions.SdkAdyenV3
14462
14864
  export declare type SecurityRatecardFee = io.flow.v0.models.SecurityRatecardFee;
14463
14865
  export declare type SecurityServiceFee = io.flow.v0.models.SecurityServiceFee;
14464
14866
  export declare type SelectIssuerOptionActionDetails = io.flow.v0.models.SelectIssuerOptionActionDetails;
14867
+ export declare type SellablilityRegionResult = io.flow.v0.models.SellablilityRegionResult;
14465
14868
  export declare type ServiceDescription = io.flow.v0.unions.ServiceDescription;
14466
14869
  export declare type ServiceFee = io.flow.v0.unions.ServiceFee;
14467
14870
  export declare type ServiceReference = io.flow.v0.models.ServiceReference;
@@ -14603,6 +15006,7 @@ export declare type SubcatalogSettingsForm = io.flow.v0.models.SubcatalogSetting
14603
15006
  export declare type SubcatalogStatistics = io.flow.v0.models.SubcatalogStatistics;
14604
15007
  export declare type SubcatalogUpserted = io.flow.v0.models.SubcatalogUpserted;
14605
15008
  export declare type SubcatalogVersion = io.flow.v0.models.SubcatalogVersion;
15009
+ export declare type SubstatusCode = io.flow.v0.enums.SubstatusCode;
14606
15010
  export declare type Suggestion = io.flow.v0.models.Suggestion;
14607
15011
  export declare type SummaryShippingLabelForm = io.flow.v0.models.SummaryShippingLabelForm;
14608
15012
  export declare type SummaryShippingNotificationForm = io.flow.v0.models.SummaryShippingNotificationForm;