@flowio/api-prop-types 10.16.91 → 10.16.92

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/src/api.d.ts CHANGED
@@ -1420,6 +1420,11 @@ declare namespace io.flow.shopify.external.v0.models {
1420
1420
  readonly 'weight'?: io.flow.shopify.external.v0.models.GraphqlWeight;
1421
1421
  }
1422
1422
 
1423
+ interface GraphqlMetafield {
1424
+ readonly 'key': string;
1425
+ readonly 'value': string;
1426
+ }
1427
+
1423
1428
  interface GraphqlOption {
1424
1429
  readonly 'id': string;
1425
1430
  readonly 'values': string[];
@@ -1445,6 +1450,8 @@ declare namespace io.flow.shopify.external.v0.models {
1445
1450
  readonly 'createdAt': string;
1446
1451
  readonly 'updatedAt': string;
1447
1452
  readonly 'hasVariantsThatRequiresComponents'?: boolean;
1453
+ readonly 'category'?: io.flow.shopify.external.v0.models.GraphqlTaxonomyCategory;
1454
+ readonly 'metafields'?: io.flow.shopify.external.v0.models.GraphqlMetafield[];
1448
1455
  }
1449
1456
 
1450
1457
  interface GraphqlProductImage {
@@ -1468,6 +1475,11 @@ declare namespace io.flow.shopify.external.v0.models {
1468
1475
  readonly 'inventoryItem': io.flow.shopify.external.v0.models.GraphqlInventoryItem;
1469
1476
  }
1470
1477
 
1478
+ interface GraphqlTaxonomyCategory {
1479
+ readonly 'name': string;
1480
+ readonly 'fullName': string;
1481
+ }
1482
+
1471
1483
  interface GraphqlVariantImage {
1472
1484
  readonly 'id': string;
1473
1485
  }
@@ -1585,6 +1597,7 @@ declare namespace io.flow.shopify.external.v0.models {
1585
1597
  readonly 'created_at': string;
1586
1598
  readonly 'updated_at': string;
1587
1599
  readonly 'has_variants_that_requires_components'?: boolean;
1600
+ readonly 'category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
1588
1601
  }
1589
1602
 
1590
1603
  interface ProductDelete {
@@ -2344,35 +2357,6 @@ declare namespace io.flow.shopify.external.v0.models {
2344
2357
  }
2345
2358
  }
2346
2359
 
2347
- declare namespace io.flow.order.price.v0.enums {
2348
- 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';
2349
- type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
2350
- }
2351
-
2352
- declare namespace io.flow.order.price.v0.models {
2353
- interface OrderPriceDetail {
2354
- readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
2355
- readonly 'currency': string;
2356
- readonly 'amount': number;
2357
- readonly 'label': string;
2358
- readonly 'base': io.flow.common.v0.models.Price;
2359
- readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
2360
- readonly 'name'?: string;
2361
- readonly 'rate'?: number;
2362
- readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
2363
- readonly 'rate_label'?: string;
2364
- }
2365
-
2366
- interface OrderPriceDetailComponent {
2367
- readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
2368
- readonly 'currency': string;
2369
- readonly 'amount': number;
2370
- readonly 'label': string;
2371
- readonly 'base': io.flow.common.v0.models.Price;
2372
- readonly 'name'?: string;
2373
- }
2374
- }
2375
-
2376
2360
  declare namespace io.flow.common.v0.enums {
2377
2361
  type AttributeDataType = 'boolean' | 'integer' | 'decimal' | 'string' | 'json_array';
2378
2362
  type AvailabilityStatus = 'enabled' | 'disabled';
@@ -3125,6 +3109,69 @@ declare namespace io.flow.price.v0.unions {
3125
3109
  type Deminimis = (io.flow.price.v0.models.DeminimisSimple | io.flow.price.v0.models.DeminimisPerItem);
3126
3110
  }
3127
3111
 
3112
+ declare namespace io.flow.channel.v0.enums {
3113
+ type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
3114
+ }
3115
+
3116
+ declare namespace io.flow.channel.v0.models {
3117
+ interface Channel {
3118
+ readonly 'id': string;
3119
+ readonly 'name': string;
3120
+ readonly 'environment': io.flow.common.v0.enums.Environment;
3121
+ readonly 'organization_id_prefix'?: string;
3122
+ }
3123
+
3124
+ interface ChannelAuthorization {
3125
+ readonly 'placeholder'?: string;
3126
+ }
3127
+
3128
+ interface ChannelAuthorizationForm {
3129
+ readonly 'channel_id': string;
3130
+ }
3131
+
3132
+ interface ChannelCurrency {
3133
+ readonly 'id': string;
3134
+ readonly 'currency': string;
3135
+ readonly 'channel': io.flow.common.v0.models.ChannelReference;
3136
+ readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
3137
+ }
3138
+
3139
+ interface ChannelOrganization {
3140
+ readonly 'id': string;
3141
+ readonly 'organization': io.flow.common.v0.models.OrganizationReference;
3142
+ readonly 'key': string;
3143
+ readonly 'channel': io.flow.common.v0.models.ChannelReference;
3144
+ readonly 'name': string;
3145
+ readonly 'slug'?: string;
3146
+ readonly 'defaults': io.flow.common.v0.models.OrganizationDefaults;
3147
+ readonly 'attributes'?: Record<string, string>;
3148
+ }
3149
+
3150
+ interface ChannelOrganizationAuthorization {
3151
+ readonly 'placeholder'?: string;
3152
+ }
3153
+
3154
+ interface ChannelOrganizationAuthorizationForm {
3155
+ readonly 'channel_id': string;
3156
+ readonly 'organization_id': string;
3157
+ }
3158
+
3159
+ interface ChannelOrganizationForm {
3160
+ readonly 'key': string;
3161
+ readonly 'name'?: string;
3162
+ readonly 'slug'?: string;
3163
+ readonly 'defaults': io.flow.common.v0.models.OrganizationDefaults;
3164
+ readonly 'attributes'?: Record<string, string>;
3165
+ }
3166
+
3167
+ interface ChannelOrganizationPutForm {
3168
+ readonly 'name'?: string;
3169
+ readonly 'slug'?: string;
3170
+ readonly 'defaults': io.flow.common.v0.models.OrganizationDefaults;
3171
+ readonly 'attributes'?: Record<string, string>;
3172
+ }
3173
+ }
3174
+
3128
3175
  declare namespace io.flow.reference.v0.enums {
3129
3176
  type PaymentMethodCapability = 'credit' | 'debit';
3130
3177
  type PaymentMethodType = 'card' | 'online' | 'offline';
@@ -3240,33 +3287,6 @@ declare namespace io.flow.reference.v0.models {
3240
3287
  }
3241
3288
  }
3242
3289
 
3243
- declare namespace io.flow.ben.test.internal.v0.models {
3244
- interface GenerateLoadMultipleOrgs {
3245
- readonly 'discriminator': 'generate_load_multiple_orgs';
3246
- readonly 'organization_ids': string[];
3247
- readonly 'num_events': number;
3248
- }
3249
-
3250
- interface GenerateLoadSingleOrg {
3251
- readonly 'discriminator': 'generate_load_single_org';
3252
- readonly 'organization_id': string;
3253
- readonly 'num_events': number;
3254
- }
3255
-
3256
- interface Test {
3257
- readonly 'id': string;
3258
- readonly 'name': string;
3259
- }
3260
-
3261
- interface TestForm {
3262
- readonly 'name': string;
3263
- }
3264
- }
3265
-
3266
- declare namespace io.flow.ben.test.internal.v0.unions {
3267
- type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
3268
- }
3269
-
3270
3290
  declare namespace io.flow.fulfillment.v0.enums {
3271
3291
  type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
3272
3292
  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';
@@ -3991,6 +4011,7 @@ declare namespace io.flow.merchant.of.record.v0.enums {
3991
4011
 
3992
4012
  declare namespace io.flow.tech.onboarding.playground.v0.enums {
3993
4013
  type AldoItemType = 'physical' | 'digital';
4014
+ type AnshItemType = 'physical' | 'digital';
3994
4015
  }
3995
4016
 
3996
4017
  declare namespace io.flow.tech.onboarding.playground.v0.models {
@@ -4011,11 +4032,35 @@ declare namespace io.flow.tech.onboarding.playground.v0.models {
4011
4032
  readonly 'added_on': string;
4012
4033
  }
4013
4034
 
4035
+ interface AnshItem {
4036
+ readonly 'id': string;
4037
+ readonly 'number': string;
4038
+ readonly 'amount': io.flow.common.v0.models.Price;
4039
+ readonly 'description'?: string;
4040
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
4041
+ readonly 'added_on': string;
4042
+ }
4043
+
4044
+ interface AnshItemForm {
4045
+ readonly 'number': string;
4046
+ readonly 'amount': io.flow.common.v0.models.Price;
4047
+ readonly 'description'?: string;
4048
+ readonly 'type': io.flow.tech.onboarding.playground.v0.enums.AnshItemType;
4049
+ readonly 'added_on': string;
4050
+ }
4051
+
4014
4052
  interface JeanDemoItem {
4015
4053
  readonly 'id': string;
4016
4054
  readonly 'name': string;
4017
4055
  }
4018
4056
 
4057
+ interface ShawnRoundtableWorkshopRate {
4058
+ readonly 'origin_country': string;
4059
+ readonly 'destination_country': string;
4060
+ readonly 'weight': number;
4061
+ readonly 'amount': number;
4062
+ }
4063
+
4019
4064
  interface TechOnboardingDescription {
4020
4065
  readonly 'description': string;
4021
4066
  }
@@ -4187,6 +4232,170 @@ declare namespace io.flow.organization.v0.models {
4187
4232
  }
4188
4233
  }
4189
4234
 
4235
+ declare namespace io.flow.order.price.v0.enums {
4236
+ 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';
4237
+ type OrderPriceDetailKey = 'adjustment' | 'subtotal' | 'vat' | 'duty' | 'shipping' | 'insurance' | 'discount' | 'surcharges' | 'tip';
4238
+ }
4239
+
4240
+ declare namespace io.flow.order.price.v0.models {
4241
+ interface OrderPriceDetail {
4242
+ readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailKey;
4243
+ readonly 'currency': string;
4244
+ readonly 'amount': number;
4245
+ readonly 'label': string;
4246
+ readonly 'base': io.flow.common.v0.models.Price;
4247
+ readonly 'components': io.flow.order.price.v0.models.OrderPriceDetailComponent[];
4248
+ readonly 'name'?: string;
4249
+ readonly 'rate'?: number;
4250
+ readonly 'accuracy'?: io.flow.price.v0.enums.PriceAccuracy;
4251
+ readonly 'rate_label'?: string;
4252
+ }
4253
+
4254
+ interface OrderPriceDetailComponent {
4255
+ readonly 'key': io.flow.order.price.v0.enums.OrderPriceDetailComponentKey;
4256
+ readonly 'currency': string;
4257
+ readonly 'amount': number;
4258
+ readonly 'label': string;
4259
+ readonly 'base': io.flow.common.v0.models.Price;
4260
+ readonly 'name'?: string;
4261
+ }
4262
+ }
4263
+
4264
+ declare namespace io.flow.channel.internal.v0.enums {
4265
+ type ChannelOrderAcceptanceErrorAction = 'auto_reject' | 'auto_accept';
4266
+ type ChannelOrderAcceptanceFailureReasonCode = 'channel_order_mor_invalid' | 'channel_order_does_not_exist';
4267
+ type ChannelOrderAcceptanceNextActionFrom = 'cx_team' | 'core_team' | 'core_team_investigate' | 'mex_team' | 'payments_team' | 'tc_team' | 'logistics_team';
4268
+ 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';
4269
+ type ChannelOrderAcceptanceStatus = 'accepted' | 'rejected' | 'review' | 'edit_review' | 'edit_accepted';
4270
+ }
4271
+
4272
+ declare namespace io.flow.channel.internal.v0.models {
4273
+ interface ChannelCurrencyForm {
4274
+ readonly 'currency': string;
4275
+ readonly 'channel_id': string;
4276
+ readonly 'capabilities': io.flow.channel.v0.enums.ChannelCurrencyCapability[];
4277
+ }
4278
+
4279
+ interface ChannelForm {
4280
+ readonly 'name': string;
4281
+ readonly 'environment': io.flow.common.v0.enums.Environment;
4282
+ readonly 'organization_id_prefix'?: string;
4283
+ }
4284
+
4285
+ interface ChannelMembership {
4286
+ readonly 'id': string;
4287
+ readonly 'channel': io.flow.common.v0.models.ChannelReference;
4288
+ readonly 'user': io.flow.common.v0.unions.ExpandableUser;
4289
+ readonly 'role'?: io.flow.common.v0.enums.Role;
4290
+ }
4291
+
4292
+ interface ChannelMembershipForm {
4293
+ readonly 'channel_id': string;
4294
+ readonly 'user_id': string;
4295
+ readonly 'role'?: io.flow.common.v0.enums.Role;
4296
+ }
4297
+
4298
+ interface ChannelMembershipPutForm {
4299
+ readonly 'role'?: io.flow.common.v0.enums.Role;
4300
+ }
4301
+
4302
+ interface ChannelOrderAcceptance {
4303
+ readonly 'id': string;
4304
+ readonly 'organization_id': string;
4305
+ readonly 'order_number': string;
4306
+ readonly 'channel_id': string;
4307
+ readonly 'external_order_reference': string;
4308
+ readonly 'payment_request_id'?: string;
4309
+ readonly 'order_edit_payment_request_ids'?: string[];
4310
+ readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
4311
+ readonly 'reasons': io.flow.channel.internal.v0.models.ChannelOrderAcceptanceReason[];
4312
+ readonly 'next_action_from'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceNextActionFrom;
4313
+ readonly 'order_created_at'?: string;
4314
+ readonly 'order_updated_at'?: string;
4315
+ readonly 'order_edit_summary'?: io.flow.channel.internal.v0.models.OrderEditSummary;
4316
+ }
4317
+
4318
+ interface ChannelOrderAcceptanceDetails {
4319
+ readonly 'order_acceptance': io.flow.channel.internal.v0.models.ChannelOrderAcceptance;
4320
+ readonly 'external_order': any/*object*/;
4321
+ }
4322
+
4323
+ interface ChannelOrderAcceptanceFailure {
4324
+ readonly 'id': string;
4325
+ readonly 'organization_id': string;
4326
+ readonly 'channel_id': string;
4327
+ readonly 'payment_request_id': string;
4328
+ readonly 'code': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceFailureReasonCode;
4329
+ readonly 'reason': string;
4330
+ }
4331
+
4332
+ interface ChannelOrderAcceptanceForm {
4333
+ readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
4334
+ }
4335
+
4336
+ interface ChannelOrderAcceptanceReason {
4337
+ readonly 'description': string;
4338
+ readonly 'rejection_reason'?: io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceRejectionReason;
4339
+ }
4340
+
4341
+ interface FlowChannelOrganization {
4342
+ readonly 'placeholder'?: string;
4343
+ }
4344
+
4345
+ interface OrderEditSummary {
4346
+ readonly 'edited_at': string;
4347
+ }
4348
+ }
4349
+
4350
+ declare namespace io.flow.product.v0.models {
4351
+ interface Product {
4352
+ readonly 'organization_id': string;
4353
+ readonly 'number': string;
4354
+ readonly 'taxonomy_category'?: io.flow.product.v0.models.ProductTaxonomyCategory;
4355
+ readonly 'taxonomy_data'?: io.flow.product.v0.models.ProductTaxonomyData[];
4356
+ readonly 'item_numbers': string[];
4357
+ readonly 'updated_at': string;
4358
+ readonly 'deleted_at'?: string;
4359
+ }
4360
+
4361
+ interface ProductTaxonomyCategory {
4362
+ readonly 'name': string;
4363
+ readonly 'full_name': string;
4364
+ }
4365
+
4366
+ interface ProductTaxonomyData {
4367
+ readonly 'key': string;
4368
+ readonly 'value': string[];
4369
+ }
4370
+ }
4371
+
4372
+ declare namespace io.flow.ben.test.internal.v0.models {
4373
+ interface GenerateLoadMultipleOrgs {
4374
+ readonly 'discriminator': 'generate_load_multiple_orgs';
4375
+ readonly 'organization_ids': string[];
4376
+ readonly 'num_events': number;
4377
+ }
4378
+
4379
+ interface GenerateLoadSingleOrg {
4380
+ readonly 'discriminator': 'generate_load_single_org';
4381
+ readonly 'organization_id': string;
4382
+ readonly 'num_events': number;
4383
+ }
4384
+
4385
+ interface Test {
4386
+ readonly 'id': string;
4387
+ readonly 'name': string;
4388
+ }
4389
+
4390
+ interface TestForm {
4391
+ readonly 'name': string;
4392
+ }
4393
+ }
4394
+
4395
+ declare namespace io.flow.ben.test.internal.v0.unions {
4396
+ type GenerateLoad = (io.flow.ben.test.internal.v0.models.GenerateLoadSingleOrg | io.flow.ben.test.internal.v0.models.GenerateLoadMultipleOrgs);
4397
+ }
4398
+
4190
4399
  declare namespace io.flow.catalog.v0.enums {
4191
4400
  type AdjustmentReasonKey = 'duty_deminimis' | 'vat_deminimis';
4192
4401
  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';
@@ -4814,6 +5023,7 @@ declare namespace io.flow.v0.enums {
4814
5023
  type CenterCapability = 'international' | 'domestic' | 'crossdock' | 'commercial_invoice';
4815
5024
  type ChangeType = 'insert' | 'update' | 'delete';
4816
5025
  type ChannelCurrencyCapability = 'payment_authorizations' | 'settlement_currency';
5026
+ type ChannelShopifyOrderStateReasonCode = 'placeholder_reason_code';
4817
5027
  type ConsumerInvoiceCustomerType = 'business_eu_verified' | 'business_non_verified' | 'individual';
4818
5028
  type ConsumerInvoiceDocumentType = 'pdf';
4819
5029
  type ConsumerInvoiceStatus = 'pending' | 'available' | 'invalid';
@@ -4841,7 +5051,7 @@ declare namespace io.flow.v0.enums {
4841
5051
  type EconomicTitleLocation = 'high_seas' | 'origination' | 'destination';
4842
5052
  type EntityIdentifierType = 'ioss' | 'voec' | 'zaz';
4843
5053
  type Environment = 'sandbox' | 'production';
4844
- 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';
5054
+ 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';
4845
5055
  type ExceptionType = 'open' | 'closed';
4846
5056
  type ExclusionRuleState = 'current' | 'deleting' | 'updating';
4847
5057
  type ExperienceCloneStatus = 'pending' | 'updating' | 'completed' | 'failed';
@@ -4957,6 +5167,7 @@ declare namespace io.flow.v0.enums {
4957
5167
  type Role = 'admin' | 'member';
4958
5168
  type RoundingMethod = 'up' | 'down' | 'nearest';
4959
5169
  type RoundingType = 'pattern' | 'multiple';
5170
+ type RuleEffectType = 'market' | 'dhl' | 'dhl_ecommerce' | 'ups';
4960
5171
  type ScheduleExceptionStatus = 'Open' | 'Closed';
4961
5172
  type ShipmentIntegrationType = 'direct' | 'information' | 'preadvice';
4962
5173
  type ShipmentRecipient = 'customer' | 'return' | 'crossdock';
@@ -4970,6 +5181,7 @@ declare namespace io.flow.v0.enums {
4970
5181
  type StoredMethodUsageStep = 'initial' | 'subsequent';
4971
5182
  type Strategy = 'range' | 'from' | 'to';
4972
5183
  type SubcatalogItemStatus = 'excluded' | 'included' | 'restricted';
5184
+ 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';
4973
5185
  type SurchargeResponsibleParty = 'organization' | 'customer';
4974
5186
  type SyncRecordFailureReason = 'inventory' | 'address' | 'promotion' | 'other';
4975
5187
  type SyncStreamType = 'submitted_order' | 'placed_order';
@@ -4989,7 +5201,7 @@ declare namespace io.flow.v0.enums {
4989
5201
  type TrackingStatus = 'label_created' | 'pending' | 'info_received' | 'picked_up' | 'in_transit' | 'out_for_delivery' | 'attempt_fail' | 'delivered' | 'exception' | 'returned' | 'expired';
4990
5202
  type TradeAgreementName = 'USMCA' | 'T-MEC' | 'CUSMA' | 'TCA';
4991
5203
  type TradeAgreementStatus = 'supported' | 'not_supported';
4992
- 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';
5204
+ 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';
4993
5205
  type TrueupSource = 'flow' | 'channel' | 'dhl-parcel' | 'dhl' | 'ups';
4994
5206
  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';
4995
5207
  type UnitOfLength = 'millimeter' | 'centimeter' | 'inch' | 'foot' | 'meter';
@@ -6238,6 +6450,11 @@ declare namespace io.flow.v0.models {
6238
6450
  readonly 'id': string;
6239
6451
  }
6240
6452
 
6453
+ interface CarrierRestrictions {
6454
+ readonly 'carrier': string;
6455
+ readonly 'regions': string[];
6456
+ }
6457
+
6241
6458
  interface CarrierService {
6242
6459
  readonly 'id': string;
6243
6460
  readonly 'carrier': io.flow.v0.models.Carrier;
@@ -6259,22 +6476,6 @@ declare namespace io.flow.v0.models {
6259
6476
  readonly 'organization': string;
6260
6477
  }
6261
6478
 
6262
- interface CatalogItemDeleted {
6263
- readonly 'discriminator': 'catalog_item_deleted';
6264
- readonly 'event_id': string;
6265
- readonly 'timestamp': string;
6266
- readonly 'organization': string;
6267
- readonly 'number': string;
6268
- }
6269
-
6270
- interface CatalogItemDeletedV2 {
6271
- readonly 'discriminator': 'catalog_item_deleted_v2';
6272
- readonly 'event_id': string;
6273
- readonly 'timestamp': string;
6274
- readonly 'organization': string;
6275
- readonly 'item': io.flow.v0.models.Item;
6276
- }
6277
-
6278
6479
  interface CatalogItemDocument {
6279
6480
  readonly 'discriminator': 'catalog_item_document';
6280
6481
  readonly 'number': string;
@@ -6307,31 +6508,6 @@ declare namespace io.flow.v0.models {
6307
6508
  readonly 'attributes': Record<string, string>;
6308
6509
  }
6309
6510
 
6310
- interface CatalogItemUpserted {
6311
- readonly 'discriminator': 'catalog_item_upserted';
6312
- readonly 'event_id': string;
6313
- readonly 'timestamp': string;
6314
- readonly 'organization': string;
6315
- readonly 'number': string;
6316
- readonly 'locale': string;
6317
- readonly 'name': string;
6318
- readonly 'currency': string;
6319
- readonly 'price': number;
6320
- readonly 'categories': string[];
6321
- readonly 'description'?: string;
6322
- readonly 'attributes': Record<string, string>;
6323
- readonly 'dimensions': any/*object*/;
6324
- readonly 'images': any/*object*/[];
6325
- }
6326
-
6327
- interface CatalogItemUpsertedV2 {
6328
- readonly 'discriminator': 'catalog_item_upserted_v2';
6329
- readonly 'event_id': string;
6330
- readonly 'timestamp': string;
6331
- readonly 'organization': string;
6332
- readonly 'item': io.flow.v0.models.Item;
6333
- }
6334
-
6335
6511
  interface CatalogPriceBookItemDocument {
6336
6512
  readonly 'price_book_key': string;
6337
6513
  readonly 'price_book_item_key': string;
@@ -6627,6 +6803,39 @@ declare namespace io.flow.v0.models {
6627
6803
  readonly 'id': string;
6628
6804
  }
6629
6805
 
6806
+ interface ChannelShopifyOrderState {
6807
+ readonly 'id': string;
6808
+ readonly 'shopify_order_summary': io.flow.v0.models.ChannelShopifyOrderSummary;
6809
+ readonly 'status': io.flow.channel.internal.v0.enums.ChannelOrderAcceptanceStatus;
6810
+ readonly 'reasons'?: io.flow.v0.models.ChannelShopifyOrderStateReason[];
6811
+ }
6812
+
6813
+ interface ChannelShopifyOrderStateDeleted {
6814
+ readonly 'discriminator': 'channel_shopify_order_state_deleted';
6815
+ readonly 'event_id': string;
6816
+ readonly 'timestamp': string;
6817
+ readonly 'organization': string;
6818
+ readonly 'id': string;
6819
+ }
6820
+
6821
+ interface ChannelShopifyOrderStateReason {
6822
+ readonly 'code': io.flow.v0.enums.ChannelShopifyOrderStateReasonCode;
6823
+ readonly 'message': string;
6824
+ }
6825
+
6826
+ interface ChannelShopifyOrderStateUpserted {
6827
+ readonly 'discriminator': 'channel_shopify_order_state_upserted';
6828
+ readonly 'event_id': string;
6829
+ readonly 'timestamp': string;
6830
+ readonly 'organization': string;
6831
+ readonly 'channel_shopify_order_state': io.flow.v0.models.ChannelShopifyOrderState;
6832
+ }
6833
+
6834
+ interface ChannelShopifyOrderSummary {
6835
+ readonly 'order_id': number;
6836
+ readonly 'shop_id': number;
6837
+ }
6838
+
6630
6839
  interface ChannelStatement {
6631
6840
  readonly 'id': string;
6632
6841
  readonly 'account': io.flow.v0.models.AccountReference;
@@ -7624,12 +7833,14 @@ declare namespace io.flow.v0.models {
7624
7833
  readonly 'q': string;
7625
7834
  readonly 'dimensions': io.flow.v0.models.EstimatedDimensions;
7626
7835
  readonly 'position': number;
7836
+ readonly 'block_bulk_update'?: boolean;
7627
7837
  }
7628
7838
 
7629
7839
  interface DimensionEstimateForm {
7630
7840
  readonly 'q': string;
7631
7841
  readonly 'dimensions': io.flow.v0.models.EstimatedDimensions;
7632
7842
  readonly 'position'?: number;
7843
+ readonly 'block_bulk_update'?: boolean;
7633
7844
  }
7634
7845
 
7635
7846
  interface DimensionEstimateVersion {
@@ -12302,7 +12513,6 @@ declare namespace io.flow.v0.models {
12302
12513
  }
12303
12514
 
12304
12515
  interface Product {
12305
- readonly 'id': string;
12306
12516
  readonly 'organization_id': string;
12307
12517
  readonly 'number': string;
12308
12518
  readonly 'taxonomy_category'?: io.flow.v0.models.ProductTaxonomyCategory;
@@ -12312,6 +12522,22 @@ declare namespace io.flow.v0.models {
12312
12522
  readonly 'deleted_at'?: string;
12313
12523
  }
12314
12524
 
12525
+ interface ProductDeleted {
12526
+ readonly 'discriminator': 'product_deleted';
12527
+ readonly 'event_id': string;
12528
+ readonly 'timestamp': string;
12529
+ readonly 'organization': string;
12530
+ readonly 'product': io.flow.v0.models.Product;
12531
+ }
12532
+
12533
+ interface ProductInserted {
12534
+ readonly 'discriminator': 'product_inserted';
12535
+ readonly 'event_id': string;
12536
+ readonly 'timestamp': string;
12537
+ readonly 'organization': string;
12538
+ readonly 'product': io.flow.v0.models.Product;
12539
+ }
12540
+
12315
12541
  interface ProductRestrictionResult {
12316
12542
  readonly 'id': string;
12317
12543
  readonly 'product_id': string;
@@ -12341,9 +12567,32 @@ declare namespace io.flow.v0.models {
12341
12567
  readonly 'product_restriction_result': io.flow.v0.models.ProductRestrictionResult;
12342
12568
  }
12343
12569
 
12570
+ interface ProductSellability {
12571
+ readonly 'organization_id': string;
12572
+ readonly 'product_id'?: string;
12573
+ readonly 'product_correlation_id': string;
12574
+ readonly 'restricted_regions': io.flow.v0.models.SellablilityRegionResult[];
12575
+ readonly 'in_review_regions': io.flow.v0.models.SellablilityRegionResult[];
12576
+ }
12577
+
12578
+ interface ProductSellabilityForm {
12579
+ readonly 'organization_id': string;
12580
+ readonly 'product_id'?: string;
12581
+ readonly 'product_correlation_id': string;
12582
+ readonly 'name': string;
12583
+ readonly 'price': io.flow.v0.models.ProductSellabilityPrice;
12584
+ readonly 'description': string;
12585
+ readonly 'taxonomy_category': io.flow.v0.models.ProductTaxonomyCategory;
12586
+ }
12587
+
12588
+ interface ProductSellabilityPrice {
12589
+ readonly 'currency': string;
12590
+ readonly 'amount': number;
12591
+ }
12592
+
12344
12593
  interface ProductTaxonomyCategory {
12345
12594
  readonly 'name': string;
12346
- readonly 'fullname': string;
12595
+ readonly 'full_name': string;
12347
12596
  }
12348
12597
 
12349
12598
  interface ProductTaxonomyData {
@@ -12351,6 +12600,14 @@ declare namespace io.flow.v0.models {
12351
12600
  readonly 'value': string[];
12352
12601
  }
12353
12602
 
12603
+ interface ProductUpdated {
12604
+ readonly 'discriminator': 'product_updated';
12605
+ readonly 'event_id': string;
12606
+ readonly 'timestamp': string;
12607
+ readonly 'organization': string;
12608
+ readonly 'product': io.flow.v0.models.Product;
12609
+ }
12610
+
12354
12611
  interface PromotionTrigger {
12355
12612
  readonly 'type': io.flow.v0.enums.PromotionTriggerType;
12356
12613
  readonly 'min': io.flow.v0.models.Price;
@@ -13296,6 +13553,11 @@ declare namespace io.flow.v0.models {
13296
13553
  readonly 'issuer_options': io.flow.v0.models.IssuerReference[];
13297
13554
  }
13298
13555
 
13556
+ interface SellablilityRegionResult {
13557
+ readonly 'type': io.flow.v0.enums.RuleEffectType;
13558
+ readonly 'regions': string[];
13559
+ }
13560
+
13299
13561
  interface ServiceReference {
13300
13562
  readonly 'id': string;
13301
13563
  }
@@ -15145,7 +15407,7 @@ declare namespace io.flow.v0.unions {
15145
15407
  type Document = (io.flow.v0.models.CatalogItemDocument | io.flow.v0.models.HarmonizationDocument);
15146
15408
  type EmailNotificationData = (io.flow.v0.models.EmailNotificationDataRefund | io.flow.v0.models.EmailNotificationAbandonedOrder);
15147
15409
  type Entity = (io.flow.v0.models.Company | io.flow.v0.models.Individual);
15148
- 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);
15410
+ 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);
15149
15411
  type ExpandableCard = (io.flow.v0.models.Card | io.flow.v0.models.CardReference | io.flow.v0.models.CardSummary);
15150
15412
  type ExpandableCenter = (io.flow.v0.models.Center | io.flow.v0.models.CenterReference);
15151
15413
  type ExpandableExperience = (io.flow.v0.models.Experience | io.flow.v0.models.ExperienceReference);
@@ -15262,6 +15524,7 @@ export const carrierChargeReason: PropTypes.Requireable<io.flow.v0.enums.Carrier
15262
15524
  export const centerCapability: PropTypes.Requireable<io.flow.v0.enums.CenterCapability>;
15263
15525
  export const changeType: PropTypes.Requireable<io.flow.v0.enums.ChangeType>;
15264
15526
  export const channelCurrencyCapability: PropTypes.Requireable<io.flow.v0.enums.ChannelCurrencyCapability>;
15527
+ export const channelShopifyOrderStateReasonCode: PropTypes.Requireable<io.flow.v0.enums.ChannelShopifyOrderStateReasonCode>;
15265
15528
  export const consumerInvoiceCustomerType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceCustomerType>;
15266
15529
  export const consumerInvoiceDocumentType: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceDocumentType>;
15267
15530
  export const consumerInvoiceStatus: PropTypes.Requireable<io.flow.v0.enums.ConsumerInvoiceStatus>;
@@ -15405,6 +15668,7 @@ export const reviewStatus: PropTypes.Requireable<io.flow.v0.enums.ReviewStatus>;
15405
15668
  export const role: PropTypes.Requireable<io.flow.v0.enums.Role>;
15406
15669
  export const roundingMethod: PropTypes.Requireable<io.flow.v0.enums.RoundingMethod>;
15407
15670
  export const roundingType: PropTypes.Requireable<io.flow.v0.enums.RoundingType>;
15671
+ export const ruleEffectType: PropTypes.Requireable<io.flow.v0.enums.RuleEffectType>;
15408
15672
  export const scheduleExceptionStatus: PropTypes.Requireable<io.flow.v0.enums.ScheduleExceptionStatus>;
15409
15673
  export const shipmentIntegrationType: PropTypes.Requireable<io.flow.v0.enums.ShipmentIntegrationType>;
15410
15674
  export const shipmentRecipient: PropTypes.Requireable<io.flow.v0.enums.ShipmentRecipient>;
@@ -15418,6 +15682,7 @@ export const statementAttachmentType: PropTypes.Requireable<io.flow.v0.enums.Sta
15418
15682
  export const storedMethodUsageStep: PropTypes.Requireable<io.flow.v0.enums.StoredMethodUsageStep>;
15419
15683
  export const strategy: PropTypes.Requireable<io.flow.v0.enums.Strategy>;
15420
15684
  export const subcatalogItemStatus: PropTypes.Requireable<io.flow.v0.enums.SubcatalogItemStatus>;
15685
+ export const substatusCode: PropTypes.Requireable<io.flow.v0.enums.SubstatusCode>;
15421
15686
  export const surchargeResponsibleParty: PropTypes.Requireable<io.flow.v0.enums.SurchargeResponsibleParty>;
15422
15687
  export const syncRecordFailureReason: PropTypes.Requireable<io.flow.v0.enums.SyncRecordFailureReason>;
15423
15688
  export const syncStreamType: PropTypes.Requireable<io.flow.v0.enums.SyncStreamType>;
@@ -15617,19 +15882,16 @@ export const cardUpsertedV2: PropTypes.Requireable<io.flow.v0.models.CardUpserte
15617
15882
  export const cardVersion: PropTypes.Requireable<io.flow.v0.models.CardVersion>;
15618
15883
  export const carrier: PropTypes.Requireable<io.flow.v0.models.Carrier>;
15619
15884
  export const carrierReference: PropTypes.Requireable<io.flow.v0.models.CarrierReference>;
15885
+ export const carrierRestrictions: PropTypes.Requireable<io.flow.v0.models.CarrierRestrictions>;
15620
15886
  export const carrierService: PropTypes.Requireable<io.flow.v0.models.CarrierService>;
15621
15887
  export const cartReference: PropTypes.Requireable<io.flow.v0.models.CartReference>;
15622
15888
  export const catalog: PropTypes.Requireable<io.flow.v0.models.Catalog>;
15623
15889
  export const catalogDeleted: PropTypes.Requireable<io.flow.v0.models.CatalogDeleted>;
15624
- export const catalogItemDeleted: PropTypes.Requireable<io.flow.v0.models.CatalogItemDeleted>;
15625
- export const catalogItemDeletedV2: PropTypes.Requireable<io.flow.v0.models.CatalogItemDeletedV2>;
15626
15890
  export const catalogItemDocument: PropTypes.Requireable<io.flow.v0.models.CatalogItemDocument>;
15627
15891
  export const catalogItemDocumentImages: PropTypes.Requireable<io.flow.v0.models.CatalogItemDocumentImages>;
15628
15892
  export const catalogItemExportType: PropTypes.Requireable<io.flow.v0.models.CatalogItemExportType>;
15629
15893
  export const catalogItemReference: PropTypes.Requireable<io.flow.v0.models.CatalogItemReference>;
15630
15894
  export const catalogItemSummary: PropTypes.Requireable<io.flow.v0.models.CatalogItemSummary>;
15631
- export const catalogItemUpserted: PropTypes.Requireable<io.flow.v0.models.CatalogItemUpserted>;
15632
- export const catalogItemUpsertedV2: PropTypes.Requireable<io.flow.v0.models.CatalogItemUpsertedV2>;
15633
15895
  export const catalogPriceBookItemDocument: PropTypes.Requireable<io.flow.v0.models.CatalogPriceBookItemDocument>;
15634
15896
  export const catalogReference: PropTypes.Requireable<io.flow.v0.models.CatalogReference>;
15635
15897
  export const catalogStatistics: PropTypes.Requireable<io.flow.v0.models.CatalogStatistics>;
@@ -15672,6 +15934,11 @@ export const channelPendingPayoutTransactionDeleted: PropTypes.Requireable<io.fl
15672
15934
  export const channelPendingPayoutTransactionUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelPendingPayoutTransactionUpserted>;
15673
15935
  export const channelRate: PropTypes.Requireable<io.flow.v0.models.ChannelRate>;
15674
15936
  export const channelReference: PropTypes.Requireable<io.flow.v0.models.ChannelReference>;
15937
+ export const channelShopifyOrderState: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderState>;
15938
+ export const channelShopifyOrderStateDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderStateDeleted>;
15939
+ export const channelShopifyOrderStateReason: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderStateReason>;
15940
+ export const channelShopifyOrderStateUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderStateUpserted>;
15941
+ export const channelShopifyOrderSummary: PropTypes.Requireable<io.flow.v0.models.ChannelShopifyOrderSummary>;
15675
15942
  export const channelStatement: PropTypes.Requireable<io.flow.v0.models.ChannelStatement>;
15676
15943
  export const channelStatementDeleted: PropTypes.Requireable<io.flow.v0.models.ChannelStatementDeleted>;
15677
15944
  export const channelStatementUpserted: PropTypes.Requireable<io.flow.v0.models.ChannelStatementUpserted>;
@@ -16471,11 +16738,17 @@ export const pricingUpserted: PropTypes.Requireable<io.flow.v0.models.PricingUps
16471
16738
  export const pricingVersion: PropTypes.Requireable<io.flow.v0.models.PricingVersion>;
16472
16739
  export const processingEstimate: PropTypes.Requireable<io.flow.v0.models.ProcessingEstimate>;
16473
16740
  export const product: PropTypes.Requireable<io.flow.v0.models.Product>;
16741
+ export const productDeleted: PropTypes.Requireable<io.flow.v0.models.ProductDeleted>;
16742
+ export const productInserted: PropTypes.Requireable<io.flow.v0.models.ProductInserted>;
16474
16743
  export const productRestrictionResult: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResult>;
16475
16744
  export const productRestrictionResultDeleted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultDeleted>;
16476
16745
  export const productRestrictionResultUpserted: PropTypes.Requireable<io.flow.v0.models.ProductRestrictionResultUpserted>;
16746
+ export const productSellability: PropTypes.Requireable<io.flow.v0.models.ProductSellability>;
16747
+ export const productSellabilityForm: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityForm>;
16748
+ export const productSellabilityPrice: PropTypes.Requireable<io.flow.v0.models.ProductSellabilityPrice>;
16477
16749
  export const productTaxonomyCategory: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyCategory>;
16478
16750
  export const productTaxonomyData: PropTypes.Requireable<io.flow.v0.models.ProductTaxonomyData>;
16751
+ export const productUpdated: PropTypes.Requireable<io.flow.v0.models.ProductUpdated>;
16479
16752
  export const promotionTrigger: PropTypes.Requireable<io.flow.v0.models.PromotionTrigger>;
16480
16753
  export const promotionTriggerForm: PropTypes.Requireable<io.flow.v0.models.PromotionTriggerForm>;
16481
16754
  export const promotions: PropTypes.Requireable<io.flow.v0.models.Promotions>;
@@ -16600,6 +16873,7 @@ export const scheduledPickup: PropTypes.Requireable<io.flow.v0.models.ScheduledP
16600
16873
  export const securityRatecardFee: PropTypes.Requireable<io.flow.v0.models.SecurityRatecardFee>;
16601
16874
  export const securityServiceFee: PropTypes.Requireable<io.flow.v0.models.SecurityServiceFee>;
16602
16875
  export const selectIssuerOptionActionDetails: PropTypes.Requireable<io.flow.v0.models.SelectIssuerOptionActionDetails>;
16876
+ export const sellablilityRegionResult: PropTypes.Requireable<io.flow.v0.models.SellablilityRegionResult>;
16603
16877
  export const serviceReference: PropTypes.Requireable<io.flow.v0.models.ServiceReference>;
16604
16878
  export const serviceSummary: PropTypes.Requireable<io.flow.v0.models.ServiceSummary>;
16605
16879
  export const serviceUnknown: PropTypes.Requireable<io.flow.v0.models.ServiceUnknown>;