@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.js CHANGED
@@ -359,6 +359,112 @@ T['io.flow.catalog.v0.models.adjustment_reason'] = PropTypes.exact({
359
359
  label: PropTypes.string.isRequired,
360
360
  });
361
361
 
362
+ T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
363
+ discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
364
+ organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
365
+ num_events: PropTypes.number.isRequired,
366
+ });
367
+
368
+ T['io.flow.ben.test.internal.v0.models.generate_load_single_org'] = PropTypes.exact({
369
+ discriminator: PropTypes.oneOf(['generate_load_single_org']).isRequired,
370
+ organization_id: PropTypes.string.isRequired,
371
+ num_events: PropTypes.number.isRequired,
372
+ });
373
+
374
+ T['io.flow.ben.test.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
375
+ T['io.flow.ben.test.internal.v0.models.generate_load_single_org'],
376
+ T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'],
377
+ ]);
378
+
379
+ T['io.flow.product.v0.models.product_taxonomy_data'] = PropTypes.exact({
380
+ key: PropTypes.string.isRequired,
381
+ value: PropTypes.arrayOf(PropTypes.string).isRequired,
382
+ });
383
+
384
+ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'] = PropTypes.oneOf(['channel_order_mor_invalid', 'channel_order_does_not_exist']);
385
+
386
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance_failure'] = PropTypes.exact({
387
+ id: PropTypes.string.isRequired,
388
+ organization_id: PropTypes.string.isRequired,
389
+ channel_id: PropTypes.string.isRequired,
390
+ payment_request_id: PropTypes.string.isRequired,
391
+ code: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_failure_reason_code'].isRequired,
392
+ reason: PropTypes.string.isRequired,
393
+ });
394
+
395
+ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'] = PropTypes.oneOf([
396
+ 'unsupported_origin_country',
397
+ 'unsupported_destination_country',
398
+ 'domestic_order',
399
+ 'order_contains_gift_card',
400
+ 'order_contains_restricted_goods',
401
+ 'missing_order_information',
402
+ 'missing_classification_information',
403
+ 'unsupported_payment_information',
404
+ 'unsupported_shop_currency',
405
+ 'unsupported_free_order',
406
+ 'extracting_distribution_info_failed',
407
+ 'shipping_estimation_failed',
408
+ 'payment_authorization_failed',
409
+ 'unsupported_subsidized_order',
410
+ 'unsupported_virtual_goods',
411
+ 'non_matching_currencies',
412
+ 'unsupported_order_edit',
413
+ 'order_missing',
414
+ ]);
415
+
416
+ T['io.flow.channel.internal.v0.models.order_edit_summary'] = PropTypes.exact({
417
+ edited_at: PropTypes.string.isRequired,
418
+ });
419
+
420
+ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'] = PropTypes.oneOf([
421
+ 'cx_team',
422
+ 'core_team',
423
+ 'core_team_investigate',
424
+ 'mex_team',
425
+ 'payments_team',
426
+ 'tc_team',
427
+ 'logistics_team',
428
+ ]);
429
+
430
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason'] = PropTypes.exact({
431
+ description: PropTypes.string.isRequired,
432
+ rejection_reason: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_rejection_reason'],
433
+ });
434
+
435
+ T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
436
+ 'adjustment',
437
+ 'vat_deminimis',
438
+ 'duty_deminimis',
439
+ 'duties_item_price',
440
+ 'duties_freight',
441
+ 'duties_insurance',
442
+ 'vat_item_price',
443
+ 'vat_freight',
444
+ 'vat_insurance',
445
+ 'vat_duties_item_price',
446
+ 'vat_duties_freight',
447
+ 'vat_duties_insurance',
448
+ 'item_price',
449
+ 'item_discount',
450
+ 'rounding',
451
+ 'insurance',
452
+ 'shipping',
453
+ 'shipping_discount',
454
+ 'order_discount',
455
+ 'subtotal_percent_sales_margin',
456
+ 'subtotal_vat_percent_sales_margin',
457
+ 'subtotal_duty_percent_sales_margin',
458
+ 'vat_subsidy',
459
+ 'duty_subsidy',
460
+ 'remote_area_surcharge',
461
+ 'fuel_surcharge',
462
+ 'emergency_situation_surcharge',
463
+ 'peak_surcharge',
464
+ 'duties_taxes_paid_surcharge',
465
+ 'tip',
466
+ ]);
467
+
362
468
  T['io.flow.common.v0.enums.availability_status'] = PropTypes.oneOf(['enabled', 'disabled']);
363
469
 
364
470
  T['io.flow.organization.v0.models.region_setting_form'] = PropTypes.exact({
@@ -420,6 +526,16 @@ T['io.flow.permission.v0.models.permission_audit'] = PropTypes.exact({
420
526
 
421
527
  T['io.flow.common.v0.enums.role'] = PropTypes.oneOf(['admin', 'member']);
422
528
 
529
+ T['io.flow.channel.internal.v0.models.channel_membership_put_form'] = PropTypes.exact({
530
+ role: T['io.flow.common.v0.enums.role'],
531
+ });
532
+
533
+ T['io.flow.channel.internal.v0.models.channel_membership_form'] = PropTypes.exact({
534
+ channel_id: PropTypes.string.isRequired,
535
+ user_id: PropTypes.string.isRequired,
536
+ role: T['io.flow.common.v0.enums.role'],
537
+ });
538
+
423
539
  T['io.flow.organization.v0.models.membership_put_form'] = PropTypes.exact({
424
540
  role: T['io.flow.common.v0.enums.role'],
425
541
  roles: PropTypes.arrayOf(T['io.flow.permission.v0.enums.flow_role']),
@@ -474,6 +590,7 @@ T['io.flow.currency.v0.models.rate'] = PropTypes.exact({
474
590
  value: PropTypes.number.isRequired,
475
591
  });
476
592
 
593
+ T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'] = PropTypes.oneOf(['physical', 'digital']);
477
594
  T['io.flow.apple.pay.v0.enums.apple_pay_line_item_type'] = PropTypes.oneOf(['final', 'pending']);
478
595
 
479
596
  T['io.flow.fulfillment.v0.models.service_unknown'] = PropTypes.exact({
@@ -575,6 +692,20 @@ T['io.flow.common.v0.enums.goods_supply'] = PropTypes.oneOf(['export', 'intra_co
575
692
  T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce'] = PropTypes.oneOf(['cold_storage', 'hazardous', 'perishable']);
576
693
  T['io.flow.fulfillment.v0.enums.fulfillment_routing'] = PropTypes.oneOf(['fulfilled_from_center', 'fulfillment_service']);
577
694
  T['io.flow.fulfillment.v0.enums.zero_amount_indicator'] = PropTypes.oneOf(['zero', 'free']);
695
+ T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
696
+
697
+ T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
698
+ 'adjustment',
699
+ 'subtotal',
700
+ 'vat',
701
+ 'duty',
702
+ 'shipping',
703
+ 'insurance',
704
+ 'discount',
705
+ 'surcharges',
706
+ 'tip',
707
+ ]);
708
+
578
709
  T['io.flow.fulfillment.v0.enums.delivery_window_location'] = PropTypes.oneOf(['center', 'crossdock', 'customer']);
579
710
  T['io.flow.fulfillment.v0.enums.delivery_window_component_source'] = PropTypes.oneOf(['flow', 'organization', 'carrier', 'center', 'mixed']);
580
711
 
@@ -826,23 +957,6 @@ T['io.flow.fulfillment.v0.models.number_range'] = PropTypes.exact({
826
957
  max: PropTypes.number.isRequired,
827
958
  });
828
959
 
829
- T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'] = PropTypes.exact({
830
- discriminator: PropTypes.oneOf(['generate_load_multiple_orgs']).isRequired,
831
- organization_ids: PropTypes.arrayOf(PropTypes.string).isRequired,
832
- num_events: PropTypes.number.isRequired,
833
- });
834
-
835
- T['io.flow.ben.test.internal.v0.models.generate_load_single_org'] = PropTypes.exact({
836
- discriminator: PropTypes.oneOf(['generate_load_single_org']).isRequired,
837
- organization_id: PropTypes.string.isRequired,
838
- num_events: PropTypes.number.isRequired,
839
- });
840
-
841
- T['io.flow.ben.test.internal.v0.unions.generate_load'] = PropTypes.oneOfType([
842
- T['io.flow.ben.test.internal.v0.models.generate_load_single_org'],
843
- T['io.flow.ben.test.internal.v0.models.generate_load_multiple_orgs'],
844
- ]);
845
-
846
960
  T['io.flow.reference.v0.enums.province_type'] = PropTypes.oneOf([
847
961
  'area',
848
962
  'city',
@@ -942,6 +1056,14 @@ T['io.flow.reference.v0.models.carrier_service'] = PropTypes.exact({
942
1056
  name: PropTypes.string.isRequired,
943
1057
  });
944
1058
 
1059
+ T['io.flow.channel.v0.enums.channel_currency_capability'] = PropTypes.oneOf(['payment_authorizations', 'settlement_currency']);
1060
+
1061
+ T['io.flow.channel.internal.v0.models.channel_currency_form'] = PropTypes.exact({
1062
+ currency: PropTypes.string.isRequired,
1063
+ channel_id: PropTypes.string.isRequired,
1064
+ capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
1065
+ });
1066
+
945
1067
  T['io.flow.price.v0.enums.pricing_levy_setting'] = PropTypes.oneOf(['included', 'displayed', 'ignored']);
946
1068
 
947
1069
  T['io.flow.price.v0.enums.price_detail_component_key'] = PropTypes.oneOf([
@@ -1074,6 +1196,13 @@ T['io.flow.common.v0.models.channel_reference'] = PropTypes.exact({
1074
1196
  id: PropTypes.string.isRequired,
1075
1197
  });
1076
1198
 
1199
+ T['io.flow.channel.v0.models.channel_currency'] = PropTypes.exact({
1200
+ id: PropTypes.string.isRequired,
1201
+ currency: PropTypes.string.isRequired,
1202
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
1203
+ capabilities: PropTypes.arrayOf(T['io.flow.channel.v0.enums.channel_currency_capability']).isRequired,
1204
+ });
1205
+
1077
1206
  T['io.flow.common.v0.models.repeat_monthly'] = PropTypes.exact({
1078
1207
  discriminator: PropTypes.oneOf(['repeat_monthly']).isRequired,
1079
1208
  interval: PropTypes.number.isRequired,
@@ -1202,8 +1331,29 @@ T['io.flow.common.v0.models.organization_defaults'] = PropTypes.exact({
1202
1331
  timezone: PropTypes.string.isRequired,
1203
1332
  });
1204
1333
 
1334
+ T['io.flow.channel.v0.models.channel_organization_put_form'] = PropTypes.exact({
1335
+ name: PropTypes.string,
1336
+ slug: PropTypes.string,
1337
+ defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
1338
+ attributes: PropTypes.objectOf(PropTypes.string),
1339
+ });
1340
+
1341
+ T['io.flow.channel.v0.models.channel_organization_form'] = PropTypes.exact({
1342
+ key: PropTypes.string.isRequired,
1343
+ name: PropTypes.string,
1344
+ slug: PropTypes.string,
1345
+ defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
1346
+ attributes: PropTypes.objectOf(PropTypes.string),
1347
+ });
1348
+
1205
1349
  T['io.flow.common.v0.enums.environment'] = PropTypes.oneOf(['sandbox', 'production']);
1206
1350
 
1351
+ T['io.flow.channel.internal.v0.models.channel_form'] = PropTypes.exact({
1352
+ name: PropTypes.string.isRequired,
1353
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1354
+ organization_id_prefix: PropTypes.string,
1355
+ });
1356
+
1207
1357
  T['io.flow.organization.v0.models.organization_put_form'] = PropTypes.exact({
1208
1358
  name: PropTypes.string,
1209
1359
  environment: T['io.flow.common.v0.enums.environment'],
@@ -1232,6 +1382,13 @@ T['io.flow.organization.v0.models.organization_authorization'] = PropTypes.exact
1232
1382
  environment: T['io.flow.common.v0.enums.environment'].isRequired,
1233
1383
  });
1234
1384
 
1385
+ T['io.flow.channel.v0.models.channel'] = PropTypes.exact({
1386
+ id: PropTypes.string.isRequired,
1387
+ name: PropTypes.string.isRequired,
1388
+ environment: T['io.flow.common.v0.enums.environment'].isRequired,
1389
+ organization_id_prefix: PropTypes.string,
1390
+ });
1391
+
1235
1392
  T['io.flow.token.v0.models.partner_token_reference'] = PropTypes.exact({
1236
1393
  discriminator: PropTypes.oneOf(['partner_token_reference']).isRequired,
1237
1394
  id: PropTypes.string.isRequired,
@@ -1277,6 +1434,17 @@ T['io.flow.common.v0.models.organization_reference'] = PropTypes.exact({
1277
1434
  id: PropTypes.string.isRequired,
1278
1435
  });
1279
1436
 
1437
+ T['io.flow.channel.v0.models.channel_organization'] = PropTypes.exact({
1438
+ id: PropTypes.string.isRequired,
1439
+ organization: T['io.flow.common.v0.models.organization_reference'].isRequired,
1440
+ key: PropTypes.string.isRequired,
1441
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
1442
+ name: PropTypes.string.isRequired,
1443
+ slug: PropTypes.string,
1444
+ defaults: T['io.flow.common.v0.models.organization_defaults'].isRequired,
1445
+ attributes: PropTypes.objectOf(PropTypes.string),
1446
+ });
1447
+
1280
1448
  T['io.flow.token.v0.models.organization_token_v2_reference'] = PropTypes.exact({
1281
1449
  discriminator: PropTypes.oneOf(['organization_token_v2_reference']).isRequired,
1282
1450
  id: PropTypes.string.isRequired,
@@ -1792,6 +1960,13 @@ T['io.flow.permission.v0.models.permission_check'] = PropTypes.exact({
1792
1960
  routes: PropTypes.arrayOf(T['io.flow.permission.v0.models.permitted_route']).isRequired,
1793
1961
  });
1794
1962
 
1963
+ T['io.flow.channel.internal.v0.models.channel_membership'] = PropTypes.exact({
1964
+ id: PropTypes.string.isRequired,
1965
+ channel: T['io.flow.common.v0.models.channel_reference'].isRequired,
1966
+ user: T['io.flow.common.v0.unions.expandable_user'].isRequired,
1967
+ role: T['io.flow.common.v0.enums.role'],
1968
+ });
1969
+
1795
1970
  T['io.flow.organization.v0.models.membership'] = PropTypes.exact({
1796
1971
  id: PropTypes.string.isRequired,
1797
1972
  organization: T['io.flow.common.v0.unions.expandable_organization'].isRequired,
@@ -1931,53 +2106,6 @@ T['io.flow.common.v0.models.order_customer'] = PropTypes.exact({
1931
2106
  invoice: T['io.flow.common.v0.models.customer_invoice'],
1932
2107
  });
1933
2108
 
1934
- T['io.flow.order.price.v0.enums.order_price_detail_component_key'] = PropTypes.oneOf([
1935
- 'adjustment',
1936
- 'vat_deminimis',
1937
- 'duty_deminimis',
1938
- 'duties_item_price',
1939
- 'duties_freight',
1940
- 'duties_insurance',
1941
- 'vat_item_price',
1942
- 'vat_freight',
1943
- 'vat_insurance',
1944
- 'vat_duties_item_price',
1945
- 'vat_duties_freight',
1946
- 'vat_duties_insurance',
1947
- 'item_price',
1948
- 'item_discount',
1949
- 'rounding',
1950
- 'insurance',
1951
- 'shipping',
1952
- 'shipping_discount',
1953
- 'order_discount',
1954
- 'subtotal_percent_sales_margin',
1955
- 'subtotal_vat_percent_sales_margin',
1956
- 'subtotal_duty_percent_sales_margin',
1957
- 'vat_subsidy',
1958
- 'duty_subsidy',
1959
- 'remote_area_surcharge',
1960
- 'fuel_surcharge',
1961
- 'emergency_situation_surcharge',
1962
- 'peak_surcharge',
1963
- 'duties_taxes_paid_surcharge',
1964
- 'tip',
1965
- ]);
1966
-
1967
- T['io.flow.price.v0.enums.price_accuracy'] = PropTypes.oneOf(['calculated', 'estimated_from_partial_destination']);
1968
-
1969
- T['io.flow.order.price.v0.enums.order_price_detail_key'] = PropTypes.oneOf([
1970
- 'adjustment',
1971
- 'subtotal',
1972
- 'vat',
1973
- 'duty',
1974
- 'shipping',
1975
- 'insurance',
1976
- 'discount',
1977
- 'surcharges',
1978
- 'tip',
1979
- ]);
1980
-
1981
2109
  T['io.flow.shopify.external.v0.enums.topic'] = PropTypes.oneOf([
1982
2110
  'carts/create',
1983
2111
  'carts/update',
@@ -2629,6 +2757,22 @@ T['io.flow.shopify.external.v0.models.request_shopify_gift_card'] = PropTypes.ex
2629
2757
  T['io.flow.shopify.external.v0.enums.weight_unit'] = PropTypes.oneOf(['g', 'kg', 'oz', 'lb']);
2630
2758
  T['io.flow.shopify.external.v0.enums.inventory_management'] = PropTypes.oneOf(['blank', 'shopify']);
2631
2759
  T['io.flow.shopify.external.v0.enums.fulfillment_service'] = PropTypes.oneOf(['manual', 'gift_card']);
2760
+
2761
+ T['io.flow.product.v0.models.product_taxonomy_category'] = PropTypes.exact({
2762
+ name: PropTypes.string.isRequired,
2763
+ full_name: PropTypes.string.isRequired,
2764
+ });
2765
+
2766
+ T['io.flow.product.v0.models.product'] = PropTypes.exact({
2767
+ organization_id: PropTypes.string.isRequired,
2768
+ number: PropTypes.string.isRequired,
2769
+ taxonomy_category: T['io.flow.product.v0.models.product_taxonomy_category'],
2770
+ taxonomy_data: PropTypes.arrayOf(T['io.flow.product.v0.models.product_taxonomy_data']),
2771
+ item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
2772
+ updated_at: PropTypes.string.isRequired,
2773
+ deleted_at: PropTypes.string,
2774
+ });
2775
+
2632
2776
  T['io.flow.shopify.external.v0.enums.published_scope'] = PropTypes.oneOf(['global']);
2633
2777
 
2634
2778
  T['io.flow.shopify.external.v0.models.option'] = PropTypes.exact({
@@ -2798,6 +2942,7 @@ T['io.flow.shopify.external.v0.models.product'] = PropTypes.exact({
2798
2942
  created_at: PropTypes.string.isRequired,
2799
2943
  updated_at: PropTypes.string.isRequired,
2800
2944
  has_variants_that_requires_components: PropTypes.bool,
2945
+ category: T['io.flow.product.v0.models.product_taxonomy_category'],
2801
2946
  });
2802
2947
 
2803
2948
  T['io.flow.shopify.external.v0.models.response_products'] = PropTypes.exact({
@@ -2808,6 +2953,16 @@ T['io.flow.shopify.external.v0.models.response_product'] = PropTypes.exact({
2808
2953
  product: T['io.flow.shopify.external.v0.models.product'].isRequired,
2809
2954
  });
2810
2955
 
2956
+ T['io.flow.shopify.external.v0.models.graphql_metafield'] = PropTypes.exact({
2957
+ key: PropTypes.string.isRequired,
2958
+ value: PropTypes.string.isRequired,
2959
+ });
2960
+
2961
+ T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'] = PropTypes.exact({
2962
+ name: PropTypes.string.isRequired,
2963
+ fullName: PropTypes.string.isRequired,
2964
+ });
2965
+
2811
2966
  T['io.flow.shopify.external.v0.models.graphql_option'] = PropTypes.exact({
2812
2967
  id: PropTypes.string.isRequired,
2813
2968
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
@@ -2872,6 +3027,8 @@ T['io.flow.shopify.external.v0.models.graphql_product'] = PropTypes.exact({
2872
3027
  createdAt: PropTypes.string.isRequired,
2873
3028
  updatedAt: PropTypes.string.isRequired,
2874
3029
  hasVariantsThatRequiresComponents: PropTypes.bool,
3030
+ category: T['io.flow.shopify.external.v0.models.graphql_taxonomy_category'],
3031
+ metafields: PropTypes.arrayOf(T['io.flow.shopify.external.v0.models.graphql_metafield']),
2875
3032
  });
2876
3033
 
2877
3034
  T['io.flow.stripe.v0.models.stripe_event_request'] = PropTypes.exact({
@@ -5175,6 +5332,14 @@ T['io.flow.v0.models.channel_deleted'] = PropTypes.exact({
5175
5332
  id: PropTypes.string.isRequired,
5176
5333
  });
5177
5334
 
5335
+ T['io.flow.v0.models.channel_shopify_order_state_deleted'] = PropTypes.exact({
5336
+ discriminator: PropTypes.oneOf(['channel_shopify_order_state_deleted']).isRequired,
5337
+ event_id: PropTypes.string.isRequired,
5338
+ timestamp: PropTypes.string.isRequired,
5339
+ organization: PropTypes.string.isRequired,
5340
+ id: PropTypes.string.isRequired,
5341
+ });
5342
+
5178
5343
  T['io.flow.v0.models.catalog_statistics_deleted'] = PropTypes.exact({
5179
5344
  discriminator: PropTypes.oneOf(['catalog_statistics_deleted']).isRequired,
5180
5345
  event_id: PropTypes.string.isRequired,
@@ -5202,31 +5367,6 @@ T['io.flow.v0.models.subcatalog_item_upserted'] = PropTypes.exact({
5202
5367
  status: PropTypes.string.isRequired,
5203
5368
  });
5204
5369
 
5205
- T['io.flow.v0.models.catalog_item_deleted'] = PropTypes.exact({
5206
- discriminator: PropTypes.oneOf(['catalog_item_deleted']).isRequired,
5207
- event_id: PropTypes.string.isRequired,
5208
- timestamp: PropTypes.string.isRequired,
5209
- organization: PropTypes.string.isRequired,
5210
- number: PropTypes.string.isRequired,
5211
- });
5212
-
5213
- T['io.flow.v0.models.catalog_item_upserted'] = PropTypes.exact({
5214
- discriminator: PropTypes.oneOf(['catalog_item_upserted']).isRequired,
5215
- event_id: PropTypes.string.isRequired,
5216
- timestamp: PropTypes.string.isRequired,
5217
- organization: PropTypes.string.isRequired,
5218
- number: PropTypes.string.isRequired,
5219
- locale: PropTypes.string.isRequired,
5220
- name: PropTypes.string.isRequired,
5221
- currency: PropTypes.string.isRequired,
5222
- price: PropTypes.number.isRequired,
5223
- categories: PropTypes.arrayOf(PropTypes.string).isRequired,
5224
- description: PropTypes.string,
5225
- attributes: PropTypes.objectOf(PropTypes.string).isRequired,
5226
- dimensions: PropTypes.object.isRequired,
5227
- images: PropTypes.arrayOf(PropTypes.object).isRequired,
5228
- });
5229
-
5230
5370
  T['io.flow.v0.models.subcatalog_deleted'] = PropTypes.exact({
5231
5371
  discriminator: PropTypes.oneOf(['subcatalog_deleted']).isRequired,
5232
5372
  event_id: PropTypes.string.isRequired,
@@ -6146,6 +6286,26 @@ T['io.flow.v0.models.query_filter_structured'] = PropTypes.exact({
6146
6286
  values: PropTypes.arrayOf(PropTypes.string).isRequired,
6147
6287
  });
6148
6288
 
6289
+ T['io.flow.v0.models.product_sellability_price'] = PropTypes.exact({
6290
+ currency: PropTypes.string.isRequired,
6291
+ amount: PropTypes.number.isRequired,
6292
+ });
6293
+
6294
+ T['io.flow.v0.enums.rule_effect_type'] = PropTypes.oneOf(['market', 'dhl', 'dhl_ecommerce', 'ups']);
6295
+
6296
+ T['io.flow.v0.models.sellablility_region_result'] = PropTypes.exact({
6297
+ type: T['io.flow.v0.enums.rule_effect_type'].isRequired,
6298
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
6299
+ });
6300
+
6301
+ T['io.flow.v0.models.product_sellability'] = PropTypes.exact({
6302
+ organization_id: PropTypes.string.isRequired,
6303
+ product_id: PropTypes.string,
6304
+ product_correlation_id: PropTypes.string.isRequired,
6305
+ restricted_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']).isRequired,
6306
+ in_review_regions: PropTypes.arrayOf(T['io.flow.v0.models.sellablility_region_result']).isRequired,
6307
+ });
6308
+
6149
6309
  T['io.flow.v0.enums.restricted_review_status'] = PropTypes.oneOf(['in_review', 'reviewed']);
6150
6310
 
6151
6311
  T['io.flow.v0.enums.product_restriction_rule'] = PropTypes.oneOf([
@@ -6217,18 +6377,51 @@ T['io.flow.v0.models.product_taxonomy_data'] = PropTypes.exact({
6217
6377
 
6218
6378
  T['io.flow.v0.models.product_taxonomy_category'] = PropTypes.exact({
6219
6379
  name: PropTypes.string.isRequired,
6220
- fullname: PropTypes.string.isRequired,
6380
+ full_name: PropTypes.string.isRequired,
6381
+ });
6382
+
6383
+ T['io.flow.v0.models.product_sellability_form'] = PropTypes.exact({
6384
+ organization_id: PropTypes.string.isRequired,
6385
+ product_id: PropTypes.string,
6386
+ product_correlation_id: PropTypes.string.isRequired,
6387
+ name: PropTypes.string.isRequired,
6388
+ price: T['io.flow.v0.models.product_sellability_price'].isRequired,
6389
+ description: PropTypes.string.isRequired,
6390
+ taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'].isRequired,
6391
+ });
6392
+
6393
+ T['io.flow.v0.models.product'] = PropTypes.exact({
6394
+ organization_id: PropTypes.string.isRequired,
6395
+ number: PropTypes.string.isRequired,
6396
+ taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'],
6397
+ taxonomy_data: PropTypes.arrayOf(T['io.flow.v0.models.product_taxonomy_data']),
6398
+ item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
6399
+ updated_at: PropTypes.string.isRequired,
6400
+ deleted_at: PropTypes.string,
6401
+ });
6402
+
6403
+ T['io.flow.v0.models.product_updated'] = PropTypes.exact({
6404
+ discriminator: PropTypes.oneOf(['product_updated']).isRequired,
6405
+ event_id: PropTypes.string.isRequired,
6406
+ timestamp: PropTypes.string.isRequired,
6407
+ organization: PropTypes.string.isRequired,
6408
+ product: T['io.flow.v0.models.product'].isRequired,
6409
+ });
6410
+
6411
+ T['io.flow.v0.models.product_inserted'] = PropTypes.exact({
6412
+ discriminator: PropTypes.oneOf(['product_inserted']).isRequired,
6413
+ event_id: PropTypes.string.isRequired,
6414
+ timestamp: PropTypes.string.isRequired,
6415
+ organization: PropTypes.string.isRequired,
6416
+ product: T['io.flow.v0.models.product'].isRequired,
6221
6417
  });
6222
6418
 
6223
- T['io.flow.v0.models.product'] = PropTypes.exact({
6224
- id: PropTypes.string.isRequired,
6225
- organization_id: PropTypes.string.isRequired,
6226
- number: PropTypes.string.isRequired,
6227
- taxonomy_category: T['io.flow.v0.models.product_taxonomy_category'],
6228
- taxonomy_data: PropTypes.arrayOf(T['io.flow.v0.models.product_taxonomy_data']),
6229
- item_numbers: PropTypes.arrayOf(PropTypes.string).isRequired,
6230
- updated_at: PropTypes.string.isRequired,
6231
- deleted_at: PropTypes.string,
6419
+ T['io.flow.v0.models.product_deleted'] = PropTypes.exact({
6420
+ discriminator: PropTypes.oneOf(['product_deleted']).isRequired,
6421
+ event_id: PropTypes.string.isRequired,
6422
+ timestamp: PropTypes.string.isRequired,
6423
+ organization: PropTypes.string.isRequired,
6424
+ product: T['io.flow.v0.models.product'].isRequired,
6232
6425
  });
6233
6426
 
6234
6427
  T['io.flow.v0.enums.rounding_method'] = PropTypes.oneOf(['up', 'down', 'nearest']);
@@ -9241,6 +9434,9 @@ T['io.flow.v0.enums.transaction_source'] = PropTypes.oneOf([
9241
9434
  'virtual_card_refund',
9242
9435
  'failed_payout',
9243
9436
  'tax_refund',
9437
+ 'order_fx',
9438
+ 'ge_revenue_share',
9439
+ 'tax_duty_delta',
9244
9440
  ]);
9245
9441
 
9246
9442
  T['io.flow.v0.models.parent_transaction_summary'] = PropTypes.exact({
@@ -9271,6 +9467,60 @@ T['io.flow.v0.models.settlement_no_payout'] = PropTypes.exact({
9271
9467
  placeholder: PropTypes.string,
9272
9468
  });
9273
9469
 
9470
+ T['io.flow.v0.enums.channel_shopify_order_state_reason_code'] = PropTypes.oneOf(['placeholder_reason_code']);
9471
+
9472
+ T['io.flow.v0.models.channel_shopify_order_state_reason'] = PropTypes.exact({
9473
+ code: T['io.flow.v0.enums.channel_shopify_order_state_reason_code'].isRequired,
9474
+ message: PropTypes.string.isRequired,
9475
+ });
9476
+
9477
+ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'] = PropTypes.oneOf(['accepted', 'rejected', 'review', 'edit_review', 'edit_accepted']);
9478
+
9479
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance_form'] = PropTypes.exact({
9480
+ status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
9481
+ });
9482
+
9483
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance'] = PropTypes.exact({
9484
+ id: PropTypes.string.isRequired,
9485
+ organization_id: PropTypes.string.isRequired,
9486
+ order_number: PropTypes.string.isRequired,
9487
+ channel_id: PropTypes.string.isRequired,
9488
+ external_order_reference: PropTypes.string.isRequired,
9489
+ payment_request_id: PropTypes.string,
9490
+ order_edit_payment_request_ids: PropTypes.arrayOf(PropTypes.string),
9491
+ status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
9492
+ reasons: PropTypes.arrayOf(T['io.flow.channel.internal.v0.models.channel_order_acceptance_reason']).isRequired,
9493
+ next_action_from: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_next_action_from'],
9494
+ order_created_at: PropTypes.string,
9495
+ order_updated_at: PropTypes.string,
9496
+ order_edit_summary: T['io.flow.channel.internal.v0.models.order_edit_summary'],
9497
+ });
9498
+
9499
+ T['io.flow.channel.internal.v0.models.channel_order_acceptance_details'] = PropTypes.exact({
9500
+ order_acceptance: T['io.flow.channel.internal.v0.models.channel_order_acceptance'].isRequired,
9501
+ external_order: PropTypes.object.isRequired,
9502
+ });
9503
+
9504
+ T['io.flow.v0.models.channel_shopify_order_summary'] = PropTypes.exact({
9505
+ order_id: PropTypes.number.isRequired,
9506
+ shop_id: PropTypes.number.isRequired,
9507
+ });
9508
+
9509
+ T['io.flow.v0.models.channel_shopify_order_state'] = PropTypes.exact({
9510
+ id: PropTypes.string.isRequired,
9511
+ shopify_order_summary: T['io.flow.v0.models.channel_shopify_order_summary'].isRequired,
9512
+ status: T['io.flow.channel.internal.v0.enums.channel_order_acceptance_status'].isRequired,
9513
+ reasons: PropTypes.arrayOf(T['io.flow.v0.models.channel_shopify_order_state_reason']),
9514
+ });
9515
+
9516
+ T['io.flow.v0.models.channel_shopify_order_state_upserted'] = PropTypes.exact({
9517
+ discriminator: PropTypes.oneOf(['channel_shopify_order_state_upserted']).isRequired,
9518
+ event_id: PropTypes.string.isRequired,
9519
+ timestamp: PropTypes.string.isRequired,
9520
+ organization: PropTypes.string.isRequired,
9521
+ channel_shopify_order_state: T['io.flow.v0.models.channel_shopify_order_state'].isRequired,
9522
+ });
9523
+
9274
9524
  T['io.flow.v0.enums.pending_payout_transaction_reason_code'] = PropTypes.oneOf([
9275
9525
  'waiting_for_full_refund',
9276
9526
  'waiting_for_fulfillment',
@@ -9645,15 +9895,6 @@ T['io.flow.v0.models.image_form'] = PropTypes.exact({
9645
9895
  attributes: PropTypes.objectOf(PropTypes.string),
9646
9896
  });
9647
9897
 
9648
- T['io.flow.v0.models.experience_summary'] = PropTypes.exact({
9649
- id: PropTypes.string.isRequired,
9650
- key: PropTypes.string.isRequired,
9651
- name: PropTypes.string.isRequired,
9652
- country: PropTypes.string,
9653
- currency: PropTypes.string,
9654
- language: PropTypes.string,
9655
- });
9656
-
9657
9898
  T['io.flow.v0.models.image'] = PropTypes.exact({
9658
9899
  url: PropTypes.string.isRequired,
9659
9900
  tags: PropTypes.arrayOf(T['io.flow.v0.enums.image_tag']).isRequired,
@@ -9664,6 +9905,15 @@ T['io.flow.v0.models.catalog_item_document_images'] = PropTypes.exact({
9664
9905
  thumbnail: T['io.flow.v0.models.image'],
9665
9906
  });
9666
9907
 
9908
+ T['io.flow.v0.models.experience_summary'] = PropTypes.exact({
9909
+ id: PropTypes.string.isRequired,
9910
+ key: PropTypes.string.isRequired,
9911
+ name: PropTypes.string.isRequired,
9912
+ country: PropTypes.string,
9913
+ currency: PropTypes.string,
9914
+ language: PropTypes.string,
9915
+ });
9916
+
9667
9917
  T['io.flow.v0.models.catalog_item_document'] = PropTypes.exact({
9668
9918
  discriminator: PropTypes.oneOf(['catalog_item_document']).isRequired,
9669
9919
  number: PropTypes.string.isRequired,
@@ -12219,6 +12469,32 @@ T['io.flow.catalog.v0.models.item_form_overlay'] = PropTypes.exact({
12219
12469
  deleted_at: PropTypes.string,
12220
12470
  });
12221
12471
 
12472
+ T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
12473
+ key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
12474
+ currency: PropTypes.string.isRequired,
12475
+ amount: PropTypes.number.isRequired,
12476
+ label: PropTypes.string.isRequired,
12477
+ base: T['io.flow.common.v0.models.price'].isRequired,
12478
+ name: PropTypes.string,
12479
+ });
12480
+
12481
+ T['io.flow.tech.onboarding.playground.v0.models.ansh_item_form'] = PropTypes.exact({
12482
+ number: PropTypes.string.isRequired,
12483
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12484
+ description: PropTypes.string,
12485
+ type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
12486
+ added_on: PropTypes.string.isRequired,
12487
+ });
12488
+
12489
+ T['io.flow.tech.onboarding.playground.v0.models.ansh_item'] = PropTypes.exact({
12490
+ id: PropTypes.string.isRequired,
12491
+ number: PropTypes.string.isRequired,
12492
+ amount: T['io.flow.common.v0.models.price'].isRequired,
12493
+ description: PropTypes.string,
12494
+ type: T['io.flow.tech.onboarding.playground.v0.enums.ansh_item_type'].isRequired,
12495
+ added_on: PropTypes.string.isRequired,
12496
+ });
12497
+
12222
12498
  T['io.flow.tech.onboarding.playground.v0.models.aldo_item_form'] = PropTypes.exact({
12223
12499
  number: PropTypes.string.isRequired,
12224
12500
  amount: T['io.flow.common.v0.models.price'].isRequired,
@@ -12248,6 +12524,28 @@ T['io.flow.catalog.v0.unions.localized_price'] = PropTypes.oneOfType([
12248
12524
  T['io.flow.catalog.v0.models.localized_total'],
12249
12525
  ]);
12250
12526
 
12527
+ T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
12528
+ key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
12529
+ currency: PropTypes.string.isRequired,
12530
+ amount: PropTypes.number.isRequired,
12531
+ label: PropTypes.string.isRequired,
12532
+ base: T['io.flow.common.v0.models.price'].isRequired,
12533
+ components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
12534
+ name: PropTypes.string,
12535
+ rate: PropTypes.number,
12536
+ accuracy: T['io.flow.price.v0.enums.price_accuracy'],
12537
+ rate_label: PropTypes.string,
12538
+ });
12539
+
12540
+ T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
12541
+ discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
12542
+ id: PropTypes.string.isRequired,
12543
+ key: PropTypes.string,
12544
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
12545
+ prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
12546
+ total: T['io.flow.catalog.v0.models.localized_total'],
12547
+ });
12548
+
12251
12549
  T['io.flow.fulfillment.v0.models.delivery_option_summary'] = PropTypes.exact({
12252
12550
  id: PropTypes.string.isRequired,
12253
12551
  cost: T['io.flow.common.v0.models.price'].isRequired,
@@ -12402,6 +12700,37 @@ T['io.flow.fulfillment.v0.models.delivery_option'] = PropTypes.exact({
12402
12700
  ratecard_owner: T['io.flow.fulfillment.v0.enums.ratecard_owner'],
12403
12701
  });
12404
12702
 
12703
+ T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
12704
+ discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
12705
+ id: PropTypes.string.isRequired,
12706
+ key: PropTypes.string,
12707
+ center: T['io.flow.fulfillment.v0.models.center_summary'],
12708
+ fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
12709
+ ship_from_country: PropTypes.string,
12710
+ items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
12711
+ options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
12712
+ special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
12713
+ prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
12714
+ total: T['io.flow.catalog.v0.models.localized_total'],
12715
+ goods_supply: T['io.flow.common.v0.enums.goods_supply'],
12716
+ merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
12717
+ preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
12718
+ });
12719
+
12720
+ T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
12721
+ T['io.flow.fulfillment.v0.models.digital_delivery'],
12722
+ T['io.flow.fulfillment.v0.models.physical_delivery'],
12723
+ ]);
12724
+
12725
+ T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
12726
+ id: PropTypes.string.isRequired,
12727
+ destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
12728
+ deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
12729
+ selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
12730
+ delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
12731
+ delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
12732
+ });
12733
+
12405
12734
  T['io.flow.price.v0.models.price_book_item'] = PropTypes.exact({
12406
12735
  id: PropTypes.string.isRequired,
12407
12736
  key: PropTypes.string.isRequired,
@@ -12490,68 +12819,6 @@ T['io.flow.catalog.v0.models.item_version'] = PropTypes.exact({
12490
12819
  item: T['io.flow.catalog.v0.models.item'].isRequired,
12491
12820
  });
12492
12821
 
12493
- T['io.flow.order.price.v0.models.order_price_detail_component'] = PropTypes.exact({
12494
- key: T['io.flow.order.price.v0.enums.order_price_detail_component_key'].isRequired,
12495
- currency: PropTypes.string.isRequired,
12496
- amount: PropTypes.number.isRequired,
12497
- label: PropTypes.string.isRequired,
12498
- base: T['io.flow.common.v0.models.price'].isRequired,
12499
- name: PropTypes.string,
12500
- });
12501
-
12502
- T['io.flow.order.price.v0.models.order_price_detail'] = PropTypes.exact({
12503
- key: T['io.flow.order.price.v0.enums.order_price_detail_key'].isRequired,
12504
- currency: PropTypes.string.isRequired,
12505
- amount: PropTypes.number.isRequired,
12506
- label: PropTypes.string.isRequired,
12507
- base: T['io.flow.common.v0.models.price'].isRequired,
12508
- components: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail_component']).isRequired,
12509
- name: PropTypes.string,
12510
- rate: PropTypes.number,
12511
- accuracy: T['io.flow.price.v0.enums.price_accuracy'],
12512
- rate_label: PropTypes.string,
12513
- });
12514
-
12515
- T['io.flow.fulfillment.v0.models.physical_delivery'] = PropTypes.exact({
12516
- discriminator: PropTypes.oneOf(['physical_delivery']).isRequired,
12517
- id: PropTypes.string.isRequired,
12518
- key: PropTypes.string,
12519
- center: T['io.flow.fulfillment.v0.models.center_summary'],
12520
- fulfillment_routing: T['io.flow.fulfillment.v0.enums.fulfillment_routing'],
12521
- ship_from_country: PropTypes.string,
12522
- items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
12523
- options: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option']).isRequired,
12524
- special_services: PropTypes.arrayOf(T['io.flow.fulfillment.v0.enums.physical_delivery_special_serivce']),
12525
- prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
12526
- total: T['io.flow.catalog.v0.models.localized_total'],
12527
- goods_supply: T['io.flow.common.v0.enums.goods_supply'],
12528
- merchant_of_record_flow_entity: T['io.flow.merchant.of.record.v0.enums.flow_entity'],
12529
- preferred_service: T['io.flow.fulfillment.v0.models.physical_delivery_preferred_service'],
12530
- });
12531
-
12532
- T['io.flow.fulfillment.v0.models.digital_delivery'] = PropTypes.exact({
12533
- discriminator: PropTypes.oneOf(['digital_delivery']).isRequired,
12534
- id: PropTypes.string.isRequired,
12535
- key: PropTypes.string,
12536
- items: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_item']).isRequired,
12537
- prices: PropTypes.arrayOf(T['io.flow.order.price.v0.models.order_price_detail']),
12538
- total: T['io.flow.catalog.v0.models.localized_total'],
12539
- });
12540
-
12541
- T['io.flow.fulfillment.v0.unions.delivery'] = PropTypes.oneOfType([
12542
- T['io.flow.fulfillment.v0.models.digital_delivery'],
12543
- T['io.flow.fulfillment.v0.models.physical_delivery'],
12544
- ]);
12545
-
12546
- T['io.flow.fulfillment.v0.models.quote'] = PropTypes.exact({
12547
- id: PropTypes.string.isRequired,
12548
- destination: T['io.flow.fulfillment.v0.models.shipping_address'].isRequired,
12549
- deliveries: PropTypes.arrayOf(T['io.flow.fulfillment.v0.unions.delivery']).isRequired,
12550
- selections: PropTypes.arrayOf(T['io.flow.fulfillment.v0.models.delivery_option_reference']).isRequired,
12551
- delivered_duty: T['io.flow.common.v0.enums.delivered_duty'].isRequired,
12552
- delivered_duties: PropTypes.arrayOf(T['io.flow.common.v0.enums.delivered_duty']).isRequired,
12553
- });
12554
-
12555
12822
  T['io.flow.tech.onboarding.playground.v0.models.aldo_item'] = PropTypes.exact({
12556
12823
  id: PropTypes.string.isRequired,
12557
12824
  number: PropTypes.string.isRequired,
@@ -13814,6 +14081,7 @@ T['io.flow.v0.models.dimension_estimate_form'] = PropTypes.exact({
13814
14081
  q: PropTypes.string.isRequired,
13815
14082
  dimensions: T['io.flow.v0.models.estimated_dimensions'].isRequired,
13816
14083
  position: PropTypes.number,
14084
+ block_bulk_update: PropTypes.bool,
13817
14085
  });
13818
14086
 
13819
14087
  T['io.flow.v0.models.dimension_estimate'] = PropTypes.exact({
@@ -13821,6 +14089,7 @@ T['io.flow.v0.models.dimension_estimate'] = PropTypes.exact({
13821
14089
  q: PropTypes.string.isRequired,
13822
14090
  dimensions: T['io.flow.v0.models.estimated_dimensions'].isRequired,
13823
14091
  position: PropTypes.number.isRequired,
14092
+ block_bulk_update: PropTypes.bool,
13824
14093
  });
13825
14094
 
13826
14095
  T['io.flow.v0.models.dimension_estimate_version'] = PropTypes.exact({
@@ -13987,12 +14256,6 @@ T['io.flow.v0.models.item_form'] = PropTypes.exact({
13987
14256
  deleted_at: PropTypes.string,
13988
14257
  });
13989
14258
 
13990
- T['io.flow.v0.models.packaging'] = PropTypes.exact({
13991
- dimensions: T['io.flow.v0.models.dimensions'].isRequired,
13992
- name: PropTypes.string,
13993
- number: PropTypes.string,
13994
- });
13995
-
13996
14259
  T['io.flow.v0.models.item'] = PropTypes.exact({
13997
14260
  id: PropTypes.string.isRequired,
13998
14261
  number: PropTypes.string.isRequired,
@@ -14075,20 +14338,10 @@ T['io.flow.v0.models.klaviyo_order_content'] = PropTypes.exact({
14075
14338
  checkout_url: PropTypes.string.isRequired,
14076
14339
  });
14077
14340
 
14078
- T['io.flow.v0.models.catalog_item_upserted_v2'] = PropTypes.exact({
14079
- discriminator: PropTypes.oneOf(['catalog_item_upserted_v2']).isRequired,
14080
- event_id: PropTypes.string.isRequired,
14081
- timestamp: PropTypes.string.isRequired,
14082
- organization: PropTypes.string.isRequired,
14083
- item: T['io.flow.v0.models.item'].isRequired,
14084
- });
14085
-
14086
- T['io.flow.v0.models.catalog_item_deleted_v2'] = PropTypes.exact({
14087
- discriminator: PropTypes.oneOf(['catalog_item_deleted_v2']).isRequired,
14088
- event_id: PropTypes.string.isRequired,
14089
- timestamp: PropTypes.string.isRequired,
14090
- organization: PropTypes.string.isRequired,
14091
- item: T['io.flow.v0.models.item'].isRequired,
14341
+ T['io.flow.v0.models.packaging'] = PropTypes.exact({
14342
+ dimensions: T['io.flow.v0.models.dimensions'].isRequired,
14343
+ name: PropTypes.string,
14344
+ number: PropTypes.string,
14092
14345
  });
14093
14346
 
14094
14347
  T['io.flow.v0.models.option_weight_estimates'] = PropTypes.exact({
@@ -16050,10 +16303,6 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16050
16303
  T['io.flow.v0.models.catalog_deleted'],
16051
16304
  T['io.flow.v0.models.subcatalog_upserted'],
16052
16305
  T['io.flow.v0.models.subcatalog_deleted'],
16053
- T['io.flow.v0.models.catalog_item_upserted'],
16054
- T['io.flow.v0.models.catalog_item_deleted'],
16055
- T['io.flow.v0.models.catalog_item_upserted_v2'],
16056
- T['io.flow.v0.models.catalog_item_deleted_v2'],
16057
16306
  T['io.flow.v0.models.subcatalog_item_upserted'],
16058
16307
  T['io.flow.v0.models.subcatalog_item_deleted'],
16059
16308
  T['io.flow.v0.models.catalog_statistics_upserted'],
@@ -16061,6 +16310,8 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16061
16310
  T['io.flow.v0.models.item_inserted'],
16062
16311
  T['io.flow.v0.models.item_updated'],
16063
16312
  T['io.flow.v0.models.item_deleted'],
16313
+ T['io.flow.v0.models.channel_shopify_order_state_upserted'],
16314
+ T['io.flow.v0.models.channel_shopify_order_state_deleted'],
16064
16315
  T['io.flow.v0.models.channel_upserted'],
16065
16316
  T['io.flow.v0.models.channel_deleted'],
16066
16317
  T['io.flow.v0.models.channel_currency_upserted'],
@@ -16209,6 +16460,9 @@ T['io.flow.v0.unions.event'] = PropTypes.oneOfType([
16209
16460
  T['io.flow.v0.models.price_book_deleted'],
16210
16461
  T['io.flow.v0.models.price_book_item_upserted'],
16211
16462
  T['io.flow.v0.models.price_book_item_deleted'],
16463
+ T['io.flow.v0.models.product_inserted'],
16464
+ T['io.flow.v0.models.product_updated'],
16465
+ T['io.flow.v0.models.product_deleted'],
16212
16466
  T['io.flow.v0.models.organization_rates_published'],
16213
16467
  T['io.flow.v0.models.ratecard_lane_upserted'],
16214
16468
  T['io.flow.v0.models.ratecard_lane_deleted'],
@@ -16438,10 +16692,6 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16438
16692
  'catalog_deleted',
16439
16693
  'subcatalog_upserted',
16440
16694
  'subcatalog_deleted',
16441
- 'catalog_item_upserted',
16442
- 'catalog_item_deleted',
16443
- 'catalog_item_upserted_v2',
16444
- 'catalog_item_deleted_v2',
16445
16695
  'subcatalog_item_upserted',
16446
16696
  'subcatalog_item_deleted',
16447
16697
  'catalog_statistics_upserted',
@@ -16449,6 +16699,8 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16449
16699
  'item_inserted',
16450
16700
  'item_updated',
16451
16701
  'item_deleted',
16702
+ 'channel_shopify_order_state_upserted',
16703
+ 'channel_shopify_order_state_deleted',
16452
16704
  'channel_upserted',
16453
16705
  'channel_deleted',
16454
16706
  'channel_currency_upserted',
@@ -16597,6 +16849,9 @@ T['io.flow.v0.enums.event_type'] = PropTypes.oneOf([
16597
16849
  'price_book_deleted',
16598
16850
  'price_book_item_upserted',
16599
16851
  'price_book_item_deleted',
16852
+ 'product_inserted',
16853
+ 'product_updated',
16854
+ 'product_deleted',
16600
16855
  'organization_rates_published',
16601
16856
  'ratecard_lane_upserted',
16602
16857
  'ratecard_lane_deleted',
@@ -16655,6 +16910,51 @@ T['io.flow.v0.enums.schedule_exception_status'] = PropTypes.oneOf(['Open', 'Clos
16655
16910
  T['io.flow.v0.enums.shopify_grant'] = PropTypes.oneOf(['customer', 'discount', 'gift_card', 'metafield', 'order']);
16656
16911
  T['io.flow.v0.enums.sort_direction'] = PropTypes.oneOf(['ascending', 'descending']);
16657
16912
  T['io.flow.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
16913
+
16914
+ T['io.flow.v0.enums.substatus_code'] = PropTypes.oneOf([
16915
+ 'Delivered_001',
16916
+ 'Delivered_002',
16917
+ 'Delivered_003',
16918
+ 'Delivered_004',
16919
+ 'AvailableForPickup_001',
16920
+ 'Exception_001',
16921
+ 'Exception_002',
16922
+ 'Exception_003',
16923
+ 'Exception_004',
16924
+ 'Exception_005',
16925
+ 'Exception_006',
16926
+ 'Exception_007',
16927
+ 'Exception_008',
16928
+ 'Exception_009',
16929
+ 'Exception_010',
16930
+ 'Exception_011',
16931
+ 'Exception_012',
16932
+ 'Exception_013',
16933
+ 'AttemptFail_001',
16934
+ 'AttemptFail_002',
16935
+ 'AttemptFail_003',
16936
+ 'InTransit_001',
16937
+ 'InTransit_002',
16938
+ 'InTransit_003',
16939
+ 'InTransit_004',
16940
+ 'InTransit_005',
16941
+ 'InTransit_006',
16942
+ 'InTransit_007',
16943
+ 'InTransit_008',
16944
+ 'InTransit_009',
16945
+ 'InfoReceived_001',
16946
+ 'OutForDelivery_001',
16947
+ 'OutForDelivery_003',
16948
+ 'OutForDelivery_004',
16949
+ 'Pending_001',
16950
+ 'Pending_002',
16951
+ 'Pending_003',
16952
+ 'Pending_004',
16953
+ 'Pending_005',
16954
+ 'Pending_006',
16955
+ 'Expired_001',
16956
+ ]);
16957
+
16658
16958
  T['io.flow.v0.enums.taxability_type'] = PropTypes.oneOf(['tax_rule']);
16659
16959
  T['io.flow.v0.enums.taxability_value'] = PropTypes.oneOf(['exempt']);
16660
16960
  T['io.flow.v0.enums.tracking_number_type'] = PropTypes.oneOf(['flow', 'carrier']);
@@ -16690,6 +16990,11 @@ T['io.flow.v0.models.card_token_form'] = PropTypes.exact({
16690
16990
  token: PropTypes.string.isRequired,
16691
16991
  });
16692
16992
 
16993
+ T['io.flow.v0.models.carrier_restrictions'] = PropTypes.exact({
16994
+ carrier: PropTypes.string.isRequired,
16995
+ regions: PropTypes.arrayOf(PropTypes.string).isRequired,
16996
+ });
16997
+
16693
16998
  T['io.flow.v0.models.cart_reference'] = PropTypes.exact({
16694
16999
  id: PropTypes.string.isRequired,
16695
17000
  });
@@ -17621,6 +17926,24 @@ T['io.flow.token.v0.models.token_validation_form'] = PropTypes.exact({
17621
17926
  });
17622
17927
 
17623
17928
  T['io.flow.price.v0.enums.levy_strategy'] = PropTypes.oneOf(['minimum', 'average', 'maximum']);
17929
+
17930
+ T['io.flow.channel.v0.models.channel_authorization'] = PropTypes.exact({
17931
+ placeholder: PropTypes.string,
17932
+ });
17933
+
17934
+ T['io.flow.channel.v0.models.channel_authorization_form'] = PropTypes.exact({
17935
+ channel_id: PropTypes.string.isRequired,
17936
+ });
17937
+
17938
+ T['io.flow.channel.v0.models.channel_organization_authorization'] = PropTypes.exact({
17939
+ placeholder: PropTypes.string,
17940
+ });
17941
+
17942
+ T['io.flow.channel.v0.models.channel_organization_authorization_form'] = PropTypes.exact({
17943
+ channel_id: PropTypes.string.isRequired,
17944
+ organization_id: PropTypes.string.isRequired,
17945
+ });
17946
+
17624
17947
  T['io.flow.reference.v0.enums.postal_type'] = PropTypes.oneOf(['eircode', 'pin', 'postal', 'zip']);
17625
17948
 
17626
17949
  T['io.flow.reference.v0.models.country'] = PropTypes.exact({
@@ -17656,10 +17979,6 @@ T['io.flow.reference.v0.models.timezone'] = PropTypes.exact({
17656
17979
  offset: PropTypes.number.isRequired,
17657
17980
  });
17658
17981
 
17659
- T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
17660
- name: PropTypes.string.isRequired,
17661
- });
17662
-
17663
17982
  T['io.flow.fulfillment.v0.enums.strategy'] = PropTypes.oneOf(['range', 'from', 'to']);
17664
17983
 
17665
17984
  T['io.flow.fulfillment.v0.models.center_query'] = PropTypes.exact({
@@ -17696,6 +18015,13 @@ T['io.flow.tech.onboarding.playground.v0.models.jean_demo_item'] = PropTypes.exa
17696
18015
  name: PropTypes.string.isRequired,
17697
18016
  });
17698
18017
 
18018
+ T['io.flow.tech.onboarding.playground.v0.models.shawn_roundtable_workshop_rate'] = PropTypes.exact({
18019
+ origin_country: PropTypes.string.isRequired,
18020
+ destination_country: PropTypes.string.isRequired,
18021
+ weight: PropTypes.number.isRequired,
18022
+ amount: PropTypes.number.isRequired,
18023
+ });
18024
+
17699
18025
  T['io.flow.tech.onboarding.playground.v0.models.tech_onboarding_description'] = PropTypes.exact({
17700
18026
  description: PropTypes.string.isRequired,
17701
18027
  });
@@ -17710,6 +18036,16 @@ T['io.flow.organization.v0.models.organization_default_configurations_form'] = P
17710
18036
  id: PropTypes.string.isRequired,
17711
18037
  });
17712
18038
 
18039
+ T['io.flow.channel.internal.v0.enums.channel_order_acceptance_error_action'] = PropTypes.oneOf(['auto_reject', 'auto_accept']);
18040
+
18041
+ T['io.flow.channel.internal.v0.models.flow_channel_organization'] = PropTypes.exact({
18042
+ placeholder: PropTypes.string,
18043
+ });
18044
+
18045
+ T['io.flow.ben.test.internal.v0.models.test_form'] = PropTypes.exact({
18046
+ name: PropTypes.string.isRequired,
18047
+ });
18048
+
17713
18049
  T['io.flow.catalog.v0.enums.fulfillment_method_type'] = PropTypes.oneOf(['fulfillment_method']);
17714
18050
  T['io.flow.catalog.v0.enums.fulfillment_method_value'] = PropTypes.oneOf(['digital', 'physical']);
17715
18051
  T['io.flow.catalog.v0.enums.return_item_status'] = PropTypes.oneOf(['returnable', 'non-returnable']);
@@ -17952,19 +18288,16 @@ export const cardVersion = T['io.flow.v0.models.card_version'];
17952
18288
  export const carrier = T['io.flow.v0.models.carrier'];
17953
18289
  export const carrierChargeReason = T['io.flow.v0.enums.carrier_charge_reason'];
17954
18290
  export const carrierReference = T['io.flow.v0.models.carrier_reference'];
18291
+ export const carrierRestrictions = T['io.flow.v0.models.carrier_restrictions'];
17955
18292
  export const carrierService = T['io.flow.v0.models.carrier_service'];
17956
18293
  export const cartReference = T['io.flow.v0.models.cart_reference'];
17957
18294
  export const catalog = T['io.flow.v0.models.catalog'];
17958
18295
  export const catalogDeleted = T['io.flow.v0.models.catalog_deleted'];
17959
- export const catalogItemDeleted = T['io.flow.v0.models.catalog_item_deleted'];
17960
- export const catalogItemDeletedV2 = T['io.flow.v0.models.catalog_item_deleted_v2'];
17961
18296
  export const catalogItemDocument = T['io.flow.v0.models.catalog_item_document'];
17962
18297
  export const catalogItemDocumentImages = T['io.flow.v0.models.catalog_item_document_images'];
17963
18298
  export const catalogItemExportType = T['io.flow.v0.models.catalog_item_export_type'];
17964
18299
  export const catalogItemReference = T['io.flow.v0.models.catalog_item_reference'];
17965
18300
  export const catalogItemSummary = T['io.flow.v0.models.catalog_item_summary'];
17966
- export const catalogItemUpserted = T['io.flow.v0.models.catalog_item_upserted'];
17967
- export const catalogItemUpsertedV2 = T['io.flow.v0.models.catalog_item_upserted_v2'];
17968
18301
  export const catalogPriceBookItemDocument = T['io.flow.v0.models.catalog_price_book_item_document'];
17969
18302
  export const catalogReference = T['io.flow.v0.models.catalog_reference'];
17970
18303
  export const catalogStatistics = T['io.flow.v0.models.catalog_statistics'];
@@ -18010,6 +18343,12 @@ export const channelPendingPayoutTransactionDeleted = T['io.flow.v0.models.chann
18010
18343
  export const channelPendingPayoutTransactionUpserted = T['io.flow.v0.models.channel_pending_payout_transaction_upserted'];
18011
18344
  export const channelRate = T['io.flow.v0.models.channel_rate'];
18012
18345
  export const channelReference = T['io.flow.v0.models.channel_reference'];
18346
+ export const channelShopifyOrderState = T['io.flow.v0.models.channel_shopify_order_state'];
18347
+ export const channelShopifyOrderStateDeleted = T['io.flow.v0.models.channel_shopify_order_state_deleted'];
18348
+ export const channelShopifyOrderStateReason = T['io.flow.v0.models.channel_shopify_order_state_reason'];
18349
+ export const channelShopifyOrderStateReasonCode = T['io.flow.v0.enums.channel_shopify_order_state_reason_code'];
18350
+ export const channelShopifyOrderStateUpserted = T['io.flow.v0.models.channel_shopify_order_state_upserted'];
18351
+ export const channelShopifyOrderSummary = T['io.flow.v0.models.channel_shopify_order_summary'];
18013
18352
  export const channelStatement = T['io.flow.v0.models.channel_statement'];
18014
18353
  export const channelStatementDeleted = T['io.flow.v0.models.channel_statement_deleted'];
18015
18354
  export const channelStatementUpserted = T['io.flow.v0.models.channel_statement_upserted'];
@@ -18998,12 +19337,18 @@ export const pricingUpserted = T['io.flow.v0.models.pricing_upserted'];
18998
19337
  export const pricingVersion = T['io.flow.v0.models.pricing_version'];
18999
19338
  export const processingEstimate = T['io.flow.v0.models.processing_estimate'];
19000
19339
  export const product = T['io.flow.v0.models.product'];
19340
+ export const productDeleted = T['io.flow.v0.models.product_deleted'];
19341
+ export const productInserted = T['io.flow.v0.models.product_inserted'];
19001
19342
  export const productRestrictionResult = T['io.flow.v0.models.product_restriction_result'];
19002
19343
  export const productRestrictionResultDeleted = T['io.flow.v0.models.product_restriction_result_deleted'];
19003
19344
  export const productRestrictionResultUpserted = T['io.flow.v0.models.product_restriction_result_upserted'];
19004
19345
  export const productRestrictionRule = T['io.flow.v0.enums.product_restriction_rule'];
19346
+ export const productSellability = T['io.flow.v0.models.product_sellability'];
19347
+ export const productSellabilityForm = T['io.flow.v0.models.product_sellability_form'];
19348
+ export const productSellabilityPrice = T['io.flow.v0.models.product_sellability_price'];
19005
19349
  export const productTaxonomyCategory = T['io.flow.v0.models.product_taxonomy_category'];
19006
19350
  export const productTaxonomyData = T['io.flow.v0.models.product_taxonomy_data'];
19351
+ export const productUpdated = T['io.flow.v0.models.product_updated'];
19007
19352
  export const promotion = T['io.flow.v0.unions.promotion'];
19008
19353
  export const promotionTrigger = T['io.flow.v0.models.promotion_trigger'];
19009
19354
  export const promotionTriggerForm = T['io.flow.v0.models.promotion_trigger_form'];
@@ -19148,6 +19493,7 @@ export const rounding = T['io.flow.v0.models.rounding'];
19148
19493
  export const roundingMethod = T['io.flow.v0.enums.rounding_method'];
19149
19494
  export const roundingType = T['io.flow.v0.enums.rounding_type'];
19150
19495
  export const routeAudit = T['io.flow.v0.models.route_audit'];
19496
+ export const ruleEffectType = T['io.flow.v0.enums.rule_effect_type'];
19151
19497
  export const schedule = T['io.flow.v0.models.schedule'];
19152
19498
  export const scheduleExceptionStatus = T['io.flow.v0.enums.schedule_exception_status'];
19153
19499
  export const scheduledExport = T['io.flow.v0.models.scheduled_export'];
@@ -19157,6 +19503,7 @@ export const sdkAdyenV3AuthenticationToken = T['io.flow.v0.unions.sdk_adyen_v3_a
19157
19503
  export const securityRatecardFee = T['io.flow.v0.models.security_ratecard_fee'];
19158
19504
  export const securityServiceFee = T['io.flow.v0.models.security_service_fee'];
19159
19505
  export const selectIssuerOptionActionDetails = T['io.flow.v0.models.select_issuer_option_action_details'];
19506
+ export const sellablilityRegionResult = T['io.flow.v0.models.sellablility_region_result'];
19160
19507
  export const serviceDescription = T['io.flow.v0.unions.service_description'];
19161
19508
  export const serviceFee = T['io.flow.v0.unions.service_fee'];
19162
19509
  export const serviceReference = T['io.flow.v0.models.service_reference'];
@@ -19298,6 +19645,7 @@ export const subcatalogSettingsForm = T['io.flow.v0.models.subcatalog_settings_f
19298
19645
  export const subcatalogStatistics = T['io.flow.v0.models.subcatalog_statistics'];
19299
19646
  export const subcatalogUpserted = T['io.flow.v0.models.subcatalog_upserted'];
19300
19647
  export const subcatalogVersion = T['io.flow.v0.models.subcatalog_version'];
19648
+ export const substatusCode = T['io.flow.v0.enums.substatus_code'];
19301
19649
  export const suggestion = T['io.flow.v0.models.suggestion'];
19302
19650
  export const summaryShippingLabelForm = T['io.flow.v0.models.summary_shipping_label_form'];
19303
19651
  export const summaryShippingNotificationForm = T['io.flow.v0.models.summary_shipping_notification_form'];